diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..43ac7c57a447a31be5490f8eb1aff2af8dbc56a5 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2018 Adam Hyde + +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. diff --git a/app.js b/app.js deleted file mode 100644 index 06548a0321c07721e859b2ce5f29074ef69bf006..0000000000000000000000000000000000000000 --- a/app.js +++ /dev/null @@ -1,46 +0,0 @@ -var express = require('express'); -var path = require('path'); -var favicon = require('serve-favicon'); -var logger = require('morgan'); -var cookieParser = require('cookie-parser'); -var bodyParser = require('body-parser'); - -var index = require('./routes/index'); -var users = require('./routes/users'); - -var app = express(); - -// view engine setup -app.set('views', path.join(__dirname, 'views')); -app.set('view engine', 'jade'); - -// uncomment after placing your favicon in /public -//app.use(favicon(path.join(__dirname, 'public', 'favicon.ico'))); -app.use(logger('dev')); -app.use(bodyParser.json()); -app.use(bodyParser.urlencoded({ extended: false })); -app.use(cookieParser()); -app.use(express.static(path.join(__dirname, 'public'))); - -app.use('/', index); -app.use('/users', users); - -// catch 404 and forward to error handler -app.use(function(req, res, next) { - var err = new Error('Not Found'); - err.status = 404; - next(err); -}); - -// error handler -app.use(function(err, req, res, next) { - // set locals, only providing error in development - res.locals.message = err.message; - res.locals.error = req.app.get('env') === 'development' ? err : {}; - - // render the error page - res.status(err.status || 500); - res.render('error'); -}); - -module.exports = app; diff --git a/bin/paged b/bin/paged new file mode 100755 index 0000000000000000000000000000000000000000..36835f2214b3e88e9d2a0bd187a2b137c8e96f79 --- /dev/null +++ b/bin/paged @@ -0,0 +1,148 @@ +#!/usr/bin/env node +const Paged = require('pagedjs'); +const puppeteer = require('puppeteer'); +const program = require('commander'); +// const temp = require("temp").track(); +const path = require('path'); +const fs = require('fs'); +const replaceExt = require('replace-ext'); + +const express = require('express'); +const app = express(); + +const PORT = 9999; + +program + .version(require('../package.json').version) + .arguments('[inputPath]') + .option('-i, --inputs [inputs]', 'Inputs') + .option('-o, --output [output]', 'Output') + .option('-d, --debug', 'Debug') + .option('-l, --landscape', 'Landscape printing', false) + .option('-s, --page-size [size]', 'Print to Page Size [size]') + .option('-w, --width [size]', 'Print to Page Width [width] in MM') + .option('-h --height [size]', 'Print to Page Height [weight] in MM') + // .option('-m, --page-margin [margin]', 'Print with margin [margin]') + // .option('-n, --hyphenate [lang]', 'Hyphenate with language [language], defaults to "en-us"') + // .option('-hi, --hypher_ignore [str]', 'Ignore passed element selectors, such as ".class_to_ignore, h1"') + // .option('-ho, --hypher_only [str]', 'Only hyphenate passed elements selector, such as ".hyphenate, aside"') + // .option('-e, --encoding [type]', 'Set the encoding of the input html, defaults to "utf-8"') + .option('-t, --timeout [ms]', 'Set a max timeout of [ms]') + .parse(process.argv); + + +let input = program.inputs || program.args[0]; + +let dir = process.cwd(); +let relativePath = path.resolve(dir, input); +let output; +let tmpFile, tmpPath; + +// var hyphenator; +// var hyphenateOptions; + +if (!input) { + console.error("You must include an input path"); + return process.exit(1); +} + +if (['.html', '.xhtml'].indexOf(path.extname(relativePath)) === -1) { + console.error("Must pass a html or xhtml file as input"); + return process.exit(1); +} + +try { + fs.accessSync(relativePath, fs.F_OK); +} catch (e) { + console.error("Input cannot be found", e); + return process.exit(1); +} + +if (typeof(program.output) === "string") { + output = path.resolve(dir, program.output); +} else if (typeof(program.output) !== "undefined") { + output = './' + replaceExt(path.basename(input), '.pdf'); +} else { + output = "output.pdf"; +} + +console.log("output", output, program.output); + +/* +if (program.hyphenate) { + hyphenateOptions = { + ignore: program.hypher_ignore || undefined, + only: program.hypher_only || undefined, + encoding: program.encoding || undefined + } + + tmpPath = replaceExt(relativePath, ".hyphenated.html"); + + // tmpFile = temp.openSync({suffix: '.html'}); + // tmpPath = tmpFile.path; + // Create a new Hyphenator, with passed language + hyphenator = new Hyphenator(program.hyphenate); + hyphenator.process(relativePath, tmpPath, hyphenateOptions); + + console.log("Hyphenated for", typeof(program.hyphenate) === "string" ? program.hyphenate : "en-us"); + + if (program.debug && tmpPath) { + console.log("Hyphenated file at:", tmpPath); + } + +} +*/ + + +(async () => { + const browser = await puppeteer.launch({ + // headless: false, + // args: ['--no-sandbox', '--allow-file-access-from-files', '--enable-local-file-accesses'] + }); + + const page = await browser.newPage(); + + let relativePath = path.resolve(dir, input); + let dirname = path.dirname(relativePath); + let basename = path.basename(relativePath); + + app.use("/print", express.static(dirname)) + + let scriptPath = path.resolve(dir, "./node_modules/pagedjs/dist/"); + app.use("/polyfill", express.static(scriptPath)) + + let server = app.listen(PORT); + + await page.goto(`http://localhost:${PORT}/print/${basename}`); + + await page.addScriptTag({ + url: `http://localhost:${PORT}/polyfill/paged.polyfill.js` + }); + + await page.exposeFunction('onPagesRendered', async (msg, width, height, orientation) => { + console.log(msg); + console.log("Saved to", output); + let pdf = await page.pdf({ + path: output, + printBackground: true, + displayHeaderFooter: false, + width: width, + height: height, + orientation: orientation, + margin: { + top: 0, + right: 0, + bottom: 0, + left: 0, + }, + // format: 'A4' + }).catch((e) => { + console.error(e); + }) + + server.close(); + + await browser.close(); + }); + +})(); diff --git a/bin/www b/bin/www deleted file mode 100755 index 6f0463dbf3ffbea4c22cfeca18fd3c4c972a16ba..0000000000000000000000000000000000000000 --- a/bin/www +++ /dev/null @@ -1,90 +0,0 @@ -#!/usr/bin/env node - -/** - * Module dependencies. - */ - -var app = require('../app'); -var debug = require('debug')('demo:server'); -var http = require('http'); - -/** - * Get port from environment and store in Express. - */ - -var port = normalizePort(process.env.PORT || '3000'); -app.set('port', port); - -/** - * Create HTTP server. - */ - -var server = http.createServer(app); - -/** - * Listen on provided port, on all network interfaces. - */ - -server.listen(port); -server.on('error', onError); -server.on('listening', onListening); - -/** - * Normalize a port into a number, string, or false. - */ - -function normalizePort(val) { - var port = parseInt(val, 10); - - if (isNaN(port)) { - // named pipe - return val; - } - - if (port >= 0) { - // port number - return port; - } - - return false; -} - -/** - * Event listener for HTTP server "error" event. - */ - -function onError(error) { - if (error.syscall !== 'listen') { - throw error; - } - - var bind = typeof port === 'string' - ? 'Pipe ' + port - : 'Port ' + port; - - // handle specific listen errors with friendly messages - switch (error.code) { - case 'EACCES': - console.error(bind + ' requires elevated privileges'); - process.exit(1); - break; - case 'EADDRINUSE': - console.error(bind + ' is already in use'); - process.exit(1); - break; - default: - throw error; - } -} - -/** - * Event listener for HTTP server "listening" event. - */ - -function onListening() { - var addr = server.address(); - var bind = typeof addr === 'string' - ? 'pipe ' + addr - : 'port ' + addr.port; - debug('Listening on ' + bind); -} diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 0000000000000000000000000000000000000000..07d32389128779e1741ffa6e18749ec89ff7dfcd --- /dev/null +++ b/package-lock.json @@ -0,0 +1,657 @@ +{ + "name": "demo", + "version": "0.0.0", + "lockfileVersion": 1, + "requires": true, + "dependencies": { + "accepts": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.5.tgz", + "integrity": "sha1-63d99gEXI6OxTopywIBcjoZ0a9I=", + "requires": { + "mime-types": "2.1.18", + "negotiator": "0.6.1" + } + }, + "agent-base": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-4.2.0.tgz", + "integrity": "sha512-c+R/U5X+2zz2+UCrCFv6odQzJdoqI+YecuhnAJLa1zYaMc13zPfwMwZrr91Pd1DYNo/yPRbiM4WVf9whgwFsIg==", + "requires": { + "es6-promisify": "5.0.0" + } + }, + "array-flatten": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", + "integrity": "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=" + }, + "async-limiter": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.0.tgz", + "integrity": "sha512-jp/uFnooOiO+L211eZOoSyzpOITMXx1rBITauYykG3BRYPu8h0UcxsPNB04RR5vo4Tyz3+ay17tR6JVf9qzYWg==" + }, + "balanced-match": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", + "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=" + }, + "body-parser": { + "version": "1.18.2", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.18.2.tgz", + "integrity": "sha1-h2eKGdhLR9hZuDGZvVm84iKxBFQ=", + "requires": { + "bytes": "3.0.0", + "content-type": "1.0.4", + "debug": "2.6.9", + "depd": "1.1.2", + "http-errors": "1.6.3", + "iconv-lite": "0.4.19", + "on-finished": "2.3.0", + "qs": "6.5.1", + "raw-body": "2.3.2", + "type-is": "1.6.16" + } + }, + "brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "requires": { + "balanced-match": "1.0.0", + "concat-map": "0.0.1" + } + }, + "bytes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", + "integrity": "sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=" + }, + "commander": { + "version": "2.15.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.15.1.tgz", + "integrity": "sha512-VlfT9F3V0v+jr4yxPc5gg9s62/fIVWsd2Bk2iD435um1NlGMYdVCq+MjcXnhYq2icNOizHr1kK+5TI6H0Hy0ag==" + }, + "concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=" + }, + "concat-stream": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.0.tgz", + "integrity": "sha1-CqxmL9Ur54lk1VMvaUeE5wEQrPc=", + "requires": { + "inherits": "2.0.3", + "readable-stream": "2.3.6", + "typedarray": "0.0.6" + } + }, + "content-disposition": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.2.tgz", + "integrity": "sha1-DPaLud318r55YcOoUXjLhdunjLQ=" + }, + "content-type": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz", + "integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==" + }, + "cookie": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.3.1.tgz", + "integrity": "sha1-5+Ch+e9DtMi6klxcWpboBtFoc7s=" + }, + "cookie-signature": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", + "integrity": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw=" + }, + "core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=" + }, + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } + }, + "depd": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", + "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=" + }, + "destroy": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz", + "integrity": "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=" + }, + "ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=" + }, + "encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=" + }, + "es6-promise": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/es6-promise/-/es6-promise-4.2.4.tgz", + "integrity": "sha512-/NdNZVJg+uZgtm9eS3O6lrOLYmQag2DjdEXuPaHlZ6RuVqgqaVZfgYCepEIKsLqwdQArOPtC3XzRLqGGfT8KQQ==" + }, + "es6-promisify": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/es6-promisify/-/es6-promisify-5.0.0.tgz", + "integrity": "sha1-UQnWLz5W6pZ8S2NQWu8IKRyKUgM=", + "requires": { + "es6-promise": "4.2.4" + } + }, + "escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=" + }, + "etag": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "integrity": "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=" + }, + "express": { + "version": "4.16.3", + "resolved": "https://registry.npmjs.org/express/-/express-4.16.3.tgz", + "integrity": "sha1-avilAjUNsyRuzEvs9rWjTSL37VM=", + "requires": { + "accepts": "1.3.5", + "array-flatten": "1.1.1", + "body-parser": "1.18.2", + "content-disposition": "0.5.2", + "content-type": "1.0.4", + "cookie": "0.3.1", + "cookie-signature": "1.0.6", + "debug": "2.6.9", + "depd": "1.1.2", + "encodeurl": "1.0.2", + "escape-html": "1.0.3", + "etag": "1.8.1", + "finalhandler": "1.1.1", + "fresh": "0.5.2", + "merge-descriptors": "1.0.1", + "methods": "1.1.2", + "on-finished": "2.3.0", + "parseurl": "1.3.2", + "path-to-regexp": "0.1.7", + "proxy-addr": "2.0.3", + "qs": "6.5.1", + "range-parser": "1.2.0", + "safe-buffer": "5.1.1", + "send": "0.16.2", + "serve-static": "1.13.2", + "setprototypeof": "1.1.0", + "statuses": "1.4.0", + "type-is": "1.6.16", + "utils-merge": "1.0.1", + "vary": "1.1.2" + } + }, + "extract-zip": { + "version": "1.6.6", + "resolved": "https://registry.npmjs.org/extract-zip/-/extract-zip-1.6.6.tgz", + "integrity": "sha1-EpDt6NINCHK0Kf0/NRyhKOxe+Fw=", + "requires": { + "concat-stream": "1.6.0", + "debug": "2.6.9", + "mkdirp": "0.5.0", + "yauzl": "2.4.1" + } + }, + "fd-slicer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.0.1.tgz", + "integrity": "sha1-i1vL2ewyfFBBv5qwI/1nUPEXfmU=", + "requires": { + "pend": "1.2.0" + } + }, + "finalhandler": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.1.tgz", + "integrity": "sha512-Y1GUDo39ez4aHAw7MysnUD5JzYX+WaIj8I57kO3aEPT1fFRL4sr7mjei97FgnwhAyyzRYmQZaTHb2+9uZ1dPtg==", + "requires": { + "debug": "2.6.9", + "encodeurl": "1.0.2", + "escape-html": "1.0.3", + "on-finished": "2.3.0", + "parseurl": "1.3.2", + "statuses": "1.4.0", + "unpipe": "1.0.0" + } + }, + "forwarded": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.1.2.tgz", + "integrity": "sha1-mMI9qxF1ZXuMBXPozszZGw/xjIQ=" + }, + "fresh": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=" + }, + "fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=" + }, + "glob": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.2.tgz", + "integrity": "sha512-MJTUg1kjuLeQCJ+ccE4Vpa6kKVXkPYJ2mOCQyUuKLcLQsdrMCpBPUi8qVE6+YuaJkozeA9NusTAw3hLr8Xe5EQ==", + "requires": { + "fs.realpath": "1.0.0", + "inflight": "1.0.6", + "inherits": "2.0.3", + "minimatch": "3.0.4", + "once": "1.4.0", + "path-is-absolute": "1.0.1" + } + }, + "http-errors": { + "version": "1.6.3", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", + "integrity": "sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0=", + "requires": { + "depd": "1.1.2", + "inherits": "2.0.3", + "setprototypeof": "1.1.0", + "statuses": "1.4.0" + } + }, + "https-proxy-agent": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-2.2.1.tgz", + "integrity": "sha512-HPCTS1LW51bcyMYbxUIOO4HEOlQ1/1qRaFWcyxvwaqUS9TY88aoEuHUY33kuAh1YhVVaDQhLZsnPd+XNARWZlQ==", + "requires": { + "agent-base": "4.2.0", + "debug": "3.1.0" + }, + "dependencies": { + "debug": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz", + "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==", + "requires": { + "ms": "2.0.0" + } + } + } + }, + "iconv-lite": { + "version": "0.4.19", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.19.tgz", + "integrity": "sha512-oTZqweIP51xaGPI4uPa56/Pri/480R+mo7SeU+YETByQNhDG55ycFyNLIgta9vXhILrxXDmF7ZGhqZIcuN0gJQ==" + }, + "inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", + "requires": { + "once": "1.4.0", + "wrappy": "1.0.2" + } + }, + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" + }, + "ipaddr.js": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.6.0.tgz", + "integrity": "sha1-4/o1e3c9phnybpXwSdBVxyeW+Gs=" + }, + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" + }, + "media-typer": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", + "integrity": "sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=" + }, + "merge-descriptors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", + "integrity": "sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=" + }, + "methods": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", + "integrity": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=" + }, + "mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==" + }, + "mime-db": { + "version": "1.33.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.33.0.tgz", + "integrity": "sha512-BHJ/EKruNIqJf/QahvxwQZXKygOQ256myeN/Ew+THcAa5q+PjyTTMMeNQC4DZw5AwfvelsUrA6B67NKMqXDbzQ==" + }, + "mime-types": { + "version": "2.1.18", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.18.tgz", + "integrity": "sha512-lc/aahn+t4/SWV/qcmumYjymLsWfN3ELhpmVuUFjgsORruuZPVSwAQryq+HHGvO/SI2KVX26bx+En+zhM8g8hQ==", + "requires": { + "mime-db": "1.33.0" + } + }, + "minimatch": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", + "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", + "requires": { + "brace-expansion": "1.1.11" + } + }, + "minimist": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz", + "integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=" + }, + "mkdirp": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.0.tgz", + "integrity": "sha1-HXMHam35hs2TROFecfzAWkyavxI=", + "requires": { + "minimist": "0.0.8" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + }, + "negotiator": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.1.tgz", + "integrity": "sha1-KzJxhOiZIQEXeyhWP7XnECrNDKk=" + }, + "on-finished": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", + "integrity": "sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=", + "requires": { + "ee-first": "1.1.1" + } + }, + "once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "requires": { + "wrappy": "1.0.2" + } + }, + "parseurl": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.2.tgz", + "integrity": "sha1-/CidTtiZMRlGDBViUyYs3I3mW/M=" + }, + "path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=" + }, + "path-to-regexp": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", + "integrity": "sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=" + }, + "pend": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz", + "integrity": "sha1-elfrVQpng/kRUzH89GY9XI4AelA=" + }, + "process-nextick-args": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.0.tgz", + "integrity": "sha512-MtEC1TqN0EU5nephaJ4rAtThHtC86dNN9qCuEhtshvpVBkAW5ZO7BASN9REnF9eoXGcRub+pFuKEpOHE+HbEMw==" + }, + "progress": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.0.tgz", + "integrity": "sha1-ihvjZr+Pwj2yvSPxDG/pILQ4nR8=" + }, + "proxy-addr": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.3.tgz", + "integrity": "sha512-jQTChiCJteusULxjBp8+jftSQE5Obdl3k4cnmLA6WXtK6XFuWRnvVL7aCiBqaLPM8c4ph0S4tKna8XvmIwEnXQ==", + "requires": { + "forwarded": "0.1.2", + "ipaddr.js": "1.6.0" + } + }, + "proxy-from-env": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.0.0.tgz", + "integrity": "sha1-M8UDmPcOp+uW0h97gXYwpVeRx+4=" + }, + "puppeteer": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/puppeteer/-/puppeteer-1.2.0.tgz", + "integrity": "sha512-4sY/6mB7+kNPGAzPGKq65tH0VG3ohUEkXHuOReB9K/tw3m1TqifYmxnMR/uDeci/UPwyk5K1gWYh8rw0U0Zscw==", + "requires": { + "debug": "2.6.9", + "extract-zip": "1.6.6", + "https-proxy-agent": "2.2.1", + "mime": "1.6.0", + "progress": "2.0.0", + "proxy-from-env": "1.0.0", + "rimraf": "2.6.2", + "ws": "3.3.3" + } + }, + "qs": { + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.1.tgz", + "integrity": "sha512-eRzhrN1WSINYCDCbrz796z37LOe3m5tmW7RQf6oBntukAG1nmovJvhnwHHRMAfeoItc1m2Hk02WER2aQ/iqs+A==" + }, + "range-parser": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.0.tgz", + "integrity": "sha1-9JvmtIeJTdxA3MlKMi9hEJLgDV4=" + }, + "raw-body": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.3.2.tgz", + "integrity": "sha1-vNYMd9Prk83gBQKVw/N5OJvIj4k=", + "requires": { + "bytes": "3.0.0", + "http-errors": "1.6.2", + "iconv-lite": "0.4.19", + "unpipe": "1.0.0" + }, + "dependencies": { + "depd": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.1.tgz", + "integrity": "sha1-V4O04cRZ8G+lyif5kfPQbnoxA1k=" + }, + "http-errors": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.2.tgz", + "integrity": "sha1-CgAsyFcHGSp+eUbO7cERVfYOxzY=", + "requires": { + "depd": "1.1.1", + "inherits": "2.0.3", + "setprototypeof": "1.0.3", + "statuses": "1.4.0" + } + }, + "setprototypeof": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.0.3.tgz", + "integrity": "sha1-ZlZ+NwQ+608E2RvWWMDL77VbjgQ=" + } + } + }, + "readable-stream": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz", + "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==", + "requires": { + "core-util-is": "1.0.2", + "inherits": "2.0.3", + "isarray": "1.0.0", + "process-nextick-args": "2.0.0", + "safe-buffer": "5.1.1", + "string_decoder": "1.1.1", + "util-deprecate": "1.0.2" + } + }, + "replace-ext": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-1.0.0.tgz", + "integrity": "sha1-3mMSg3P8v3w8z6TeWkgMRaZ5WOs=" + }, + "rimraf": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.2.tgz", + "integrity": "sha512-lreewLK/BlghmxtfH36YYVg1i8IAce4TI7oao75I1g245+6BctqTVQiBP3YUJ9C6DQOXJmkYR9X9fCLtCOJc5w==", + "requires": { + "glob": "7.1.2" + } + }, + "safe-buffer": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.1.tgz", + "integrity": "sha512-kKvNJn6Mm93gAczWVJg7wH+wGYWNrDHdWvpUmHyEsgCtIwwo3bqPtV4tR5tuPaUhTOo/kvhVwd8XwwOllGYkbg==" + }, + "send": { + "version": "0.16.2", + "resolved": "https://registry.npmjs.org/send/-/send-0.16.2.tgz", + "integrity": "sha512-E64YFPUssFHEFBvpbbjr44NCLtI1AohxQ8ZSiJjQLskAdKuriYEP6VyGEsRDH8ScozGpkaX1BGvhanqCwkcEZw==", + "requires": { + "debug": "2.6.9", + "depd": "1.1.2", + "destroy": "1.0.4", + "encodeurl": "1.0.2", + "escape-html": "1.0.3", + "etag": "1.8.1", + "fresh": "0.5.2", + "http-errors": "1.6.3", + "mime": "1.4.1", + "ms": "2.0.0", + "on-finished": "2.3.0", + "range-parser": "1.2.0", + "statuses": "1.4.0" + }, + "dependencies": { + "mime": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.4.1.tgz", + "integrity": "sha512-KI1+qOZu5DcW6wayYHSzR/tXKCDC5Om4s1z2QJjDULzLcmf3DvzS7oluY4HCTrc+9FiKmWUgeNLg7W3uIQvxtQ==" + } + } + }, + "serve-static": { + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.13.2.tgz", + "integrity": "sha512-p/tdJrO4U387R9oMjb1oj7qSMaMfmOyd4j9hOFoxZe2baQszgHcSWjuya/CiT5kgZZKRudHNOA0pYXOl8rQ5nw==", + "requires": { + "encodeurl": "1.0.2", + "escape-html": "1.0.3", + "parseurl": "1.3.2", + "send": "0.16.2" + } + }, + "setprototypeof": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", + "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==" + }, + "statuses": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.4.0.tgz", + "integrity": "sha512-zhSCtt8v2NDrRlPQpCNtw/heZLtfUDqxBM1udqikb/Hbk52LK4nQSwr10u77iopCW5LsyHpuXS0GnEc48mLeew==" + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "requires": { + "safe-buffer": "5.1.1" + } + }, + "type-is": { + "version": "1.6.16", + "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.16.tgz", + "integrity": "sha512-HRkVv/5qY2G6I8iab9cI7v1bOIdhm94dVjQCPFElW9W+3GeDOSHmy2EBYe4VTApuzolPcmgFTN3ftVJRKR2J9Q==", + "requires": { + "media-typer": "0.3.0", + "mime-types": "2.1.18" + } + }, + "typedarray": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", + "integrity": "sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=" + }, + "ultron": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ultron/-/ultron-1.1.1.tgz", + "integrity": "sha512-UIEXBNeYmKptWH6z8ZnqTeS8fV74zG0/eRU9VGkpzz+LIJNs8W/zM/L+7ctCkRrgbNnnR0xxw4bKOr0cW0N0Og==" + }, + "unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=" + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=" + }, + "utils-merge": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", + "integrity": "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=" + }, + "vary": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", + "integrity": "sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=" + }, + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" + }, + "ws": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/ws/-/ws-3.3.3.tgz", + "integrity": "sha512-nnWLa/NwZSt4KQJu51MYlCcSQ5g7INpOrOMt4XV8j4dqTXdmlUmSHQ8/oLC069ckre0fRsgfvsKwbTdtKLCDkA==", + "requires": { + "async-limiter": "1.0.0", + "safe-buffer": "5.1.1", + "ultron": "1.1.1" + } + }, + "yauzl": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/yauzl/-/yauzl-2.4.1.tgz", + "integrity": "sha1-lSj0QtqxsihOWLQ3m7GU4i4MQAU=", + "requires": { + "fd-slicer": "1.0.1" + } + } + } +} diff --git a/package.json b/package.json index b930097e2d8747a43c96e0094bec398c8fb65cf9..14fa00a18e4b49d5146d0d819f1e254ca3400319 100644 --- a/package.json +++ b/package.json @@ -1,17 +1,21 @@ { - "name": "demo", - "version": "0.0.0", - "private": true, + "name": "pagedjs-cli", + "version": "0.0.1", + "author": "Fred Chasen", + "license": "MIT", + "homepage": "https://pagedmedia.org", + "repository": { + "type": "git", + "url": "https://gitlab.pagedmedia.org/polyfills/pagedjs-cli.git" + }, "scripts": { - "start": "node ./bin/www" + "start": "./bin/paged" }, "dependencies": { - "body-parser": "~1.17.1", - "cookie-parser": "~1.4.3", - "debug": "~2.6.3", - "express": "~4.15.2", - "jade": "~1.11.0", - "morgan": "~1.8.1", - "serve-favicon": "~2.4.2" + "commander": "^2.15.1", + "express": "^4.16.3", + "pagedjs": "0.0.1", + "puppeteer": "^1.2.0", + "replace-ext": "^1.0.0" } } diff --git a/public/stylesheets/style.css b/public/stylesheets/style.css deleted file mode 100644 index 9453385b9916ce9bc5e88d2f5d8cd8a554223590..0000000000000000000000000000000000000000 --- a/public/stylesheets/style.css +++ /dev/null @@ -1,8 +0,0 @@ -body { - padding: 50px; - font: 14px "Lucida Grande", Helvetica, Arial, sans-serif; -} - -a { - color: #00B7FF; -} diff --git a/routes/index.js b/routes/index.js deleted file mode 100644 index ecca96a56b309a315ddf6399155fd2f953031d3b..0000000000000000000000000000000000000000 --- a/routes/index.js +++ /dev/null @@ -1,9 +0,0 @@ -var express = require('express'); -var router = express.Router(); - -/* GET home page. */ -router.get('/', function(req, res, next) { - res.render('index', { title: 'Express' }); -}); - -module.exports = router; diff --git a/routes/users.js b/routes/users.js deleted file mode 100644 index 623e4302bee32ccc080d1c83ee2e55a426c9bac8..0000000000000000000000000000000000000000 --- a/routes/users.js +++ /dev/null @@ -1,9 +0,0 @@ -var express = require('express'); -var router = express.Router(); - -/* GET users listing. */ -router.get('/', function(req, res, next) { - res.send('respond with a resource'); -}); - -module.exports = router; diff --git a/test/samples/aurorae/README.md b/test/samples/aurorae/README.md new file mode 100644 index 0000000000000000000000000000000000000000..c5cba45cad84a1bb5c0635df3aa3916aeb57b6c7 --- /dev/null +++ b/test/samples/aurorae/README.md @@ -0,0 +1,62 @@ +# Aurorae + +Test of different generating PDF tools using HTML and CSS. + +* PDF reactor : [http://www.pdfreactor.com/](http://www.pdfreactor.com/) +* Prince XML : [https://www.princexml.com/](https://www.princexml.com/) + +## Book + +The book "Auroræ : their characters and spectra" by J. Rand Capron is used for comparaison. +The original (x)HTML file is part of the[Gutenberg project](http://www.gutenberg.org/), it has been transformed for the needs. + +[I'm an inline-style link](http://www.gutenberg.org/ebooks/56159?msg=welcome_stranger) +Licence : Project Gutenberg License +Title: Auroræ: Their Characters and Spectra +Release Date: December 10, 2017 [EBook #56159] +Language: English +Character set encoding: UTF-8 + +## Files + +`index.html` : the Auroræ book +Before using, you must change the path of the CSS and javascript files according to the tool tested. + +`book.css` : commun CSS for all tools (styling + footnotes + page breaks) +`fonts` and `images` folders contain the resources used in all tools + +Each tools have a specific file with : +* `layout-*.html` : CSS contain features for layout +* `script.html` : most tools accept javascript with proprietary access to layout information +* `aurorae-*.pdf` : the PDF generated + +## TODO + +* add other test-tools + * Vivliostyle + * Antennahouse + +* add table comparaison + + + +* add images, plates and figures + list of figures + +* add index + +* add cross references + +* Styling tables + * all table in chapters + * add border-bottom when table is break + * #table-appa-01 > 2 column + +* add mathematical support + Styling + +* balancing text in titles + +* clean HTML + * add span Greek + * transform sidenotes into span + +* remove all !important in CSS diff --git a/test/samples/aurorae/book.css b/test/samples/aurorae/book.css new file mode 100644 index 0000000000000000000000000000000000000000..833f8f92ed7a190e2db27ac0c78090c38deec360 --- /dev/null +++ b/test/samples/aurorae/book.css @@ -0,0 +1,786 @@ +html{ + --serif: 'spectral', serif; + --sans-serif: 'hk-grotesk', sans-serif; + --font-size: 13px; + --font-size-notes: 9px; + --line-height: 15px; + --line-height-notes: calc(15px*2/3); + --indent: 6mm; + --baseline: 15px; +} + +@page { + size: 148mm 210mm portait; +} + +@media screen { + .page { + background-image: repeating-linear-gradient(180deg, transparent 0, transparent 14px , rgba(0,255,0,0.7) var(--baseline)) ; + background-size: cover; + background-position: 0 -3px , 0 0 + } +} + +@page cover { + margin: 0; + background: url("images/cover.jpg"); + background-position: center; + background-size: 104%; + background-repeat: no-repeat; + + @top-left{ content: none; } + @top-center{ content: none; } + @top-right{ content: none; } + @bottom-left{ content: none; } +} + +@page:blank { + @top-left-corner{ content: none; } + @top-left{ content: none; } + @top-center{ content: none; } + @top-right{ content: none; } + @top-right-corner{ content: none; } + @right-top{ content: none; } + @right-middle{ content: none; } + @right-bottom{ content: none; } + @bottom-right-corner{ content: none; } + @bottom-right{ content: none; } + @bottom-center{ content: none; } + @bottom-left{ content: none; } + @bottom-left-corner{ content: none; } + @left-bottom{ content: none; } + @left-middle{ content: none; } + @left-top{ content: none; } +} + +@page:left { + margin-left:22mm; + margin-right:14mm; + margin-top: 73px; + margin-bottom: 73px; + + @top-left{ + content: counter(page); + font-weight: 400; + font-family: var(--serif); + font-size: var(--font-size); + font-weight: normal; + line-height: var(--line-height); + vertical-align: bottom; + margin-bottom: 14px; + font-variant-numeric: oldstyle-nums; + } + + @top-center{ + content: string(booktitle); + font-weight: 400; + font-family: var(--serif); + font-size: var(--font-size); + font-weight: normal; + line-height: var(--line-height); + vertical-align: bottom; + margin-bottom: 14px; + font-variant-numeric: oldstyle-nums; + font-variant: small-caps; + width: 85mm; + text-align: left; + } +} + +@page:right { + margin-left:14mm; + margin-right:22mm; + margin-top: 73px; + margin-bottom: 73px; + @top-right{ + content: counter(page); + font-weight: 400; + font-family: var(--serif); + font-size: var(--font-size); + font-weight: normal; + line-height: var(--line-height); + vertical-align: bottom; + margin-bottom: 14px; + font-variant-numeric: oldstyle-nums; + text-align: right; + } + + @top-center{ + content: element(shorter); + vertical-align: bottom; + text-align: right; + margin-bottom: 1px; + width: 85mm; + } +} + +.sidenote, .footnote { + display:none!important; +} + +.footnote::footnote-call, .footnote::footnote-marker{ + display:none!important; +} + +.part h2, #appendices h2, +section[data-type="half-title"], +section[data-type="titlepage"], +section[data-type="copyright"], +section[data-type="dedication"], +section[data-type="epigraph"], +#toc { + margin-left: 10mm /*center the page*/ +} + +.part h2, #appendices h2{ + page: part; +} + +/* running elements */ + +#cover h1 { + string-set: booktitle content(text); +} + +#cover { + page: cover; +} + +.shorter{ + position: running(shorter); + font-weight: 400; + font-family: var(--serif); + font-size: var(--font-size); + font-weight: normal; + line-height: var(--line-height); + text-align: right; + /* font-style: italic; */ + font-variant-numeric: oldstyle-nums; +} + + +/* flexbox */ +section[data-type="copyright"] #flexbox { + display: block; + position: absolute; + width: 100%; + height: 100%; + display: flex; + flex-direction: column; + align-items: center; + justify-content: center; + left:0; +} + +/* table of content */ +#toc{ + counter-reset: chaptoc apptoc; +} +.toc-part a[href]::before{ + content: target-text(attr(href), before); + +} + +.toc-part a[href]::after, +.toc-chap a[href]::before, +.toc-part-app a[href]::before, +.toc-app a[href]::before { + content: target-text(attr(href url), content); +} + +.toc-chap{ + counter-increment: chaptoc; +} +.toc-chap::before{ + content: "Chapter " counter(chaptoc); +} + +.toc-app { + counter-increment: apptoc; +} + +.toc-app::before{ + content: "Appendix " counter(apptoc); +} + + +.toc-chap a[href]::after, +.toc-app a[href]::after { + content: leader(dotted) target-counter(attr(href), page); + float:right; +} + +.toc-subchap a[href]::before{ + content: target-text(attr(href)); /* pdfreactor */ +} + +.toc-subchap a[href]::after { + content: target-counter(attr(href), page); + float:right; +} + +/* counters, page-breaks, figure */ + +a { + color: black; + text-decoration: none; +} + +body { + counter-reset: footnote numpart numchap numapp numplate; + /* + --serif: 'spectral', serif; + --sans-serif: 'hk-grotesk', sans-serif; + --font-size: 13px; + --font-size-notes: 9px; + --line-height: 15px; + --line-height-notes: 10px; + --indent: 6mm + */ +} + +p:not(.shorter), li, h4:not(.h4-appe), #appendix-e h5 { + font-family: 'spectral', serif; + font-size: 13px; + line-height: 15px; + font-weight: 400 +} + +p:not(.shorter), li { + text-indent: 6mm; + text-align: justify; + margin: 0; + orphans: 2; + widows: 2; + hyphens: auto; + hyphenate-before: 4; + hyphenate-after: 3; +} + +.greek { + font-size: 0.9em +} + + +h1, h2, h3, .h4-appe { + font-family: 'daubenton'; + font-weight: normal; + margin-top: 0; + margin-bottom: 0 +} + + + + +#cover h1 { + color:transparent; +} + +.titlechapter + p, +.shorter + p, +h2+p, +h3+p, +h4+p, +h5+p, +h6+p, +h3+div+p, +h4+div+p, +h2+span+p, +h3+span+p, +h4+span+p, +h5+span+p, +h6+span+p, +table+p, +.center+p, +.note-titre+p, +.center, +.separator + p { + text-indent: 0!important; +} + +.center+p { + margin-top: 15px; +} + +h3, h2 { + display: block; + height: 47.7mm; /* 63.5mm - 15.8mm */ + padding-top: 15.8mm; + font-size: 18px; /* 21 */ + line-height: 23px; + text-align: center; + width: 80%; + margin: 0 auto; +} + +.part h2 { + text-transform: uppercase; +} + +.part h2 { + counter-increment: numpart; +} + +.part h2:before { + content: "– Part " counter(numpart, upper-roman) " –"; +} + +.chapter .titlechapter { + counter-increment: numchap; +} + +.chapter .titlechapter:before { + content: "– " counter(numchap) " –"; +} + +.appendix .titleapp { + counter-increment: numapp; +} + +.appendix .titleapp:before { + content: "– Appendix " counter(numapp, upper-alpha) " –"; +} + +h3:before, h2:before { + display: block; + font-size: 13px; + line-height: 15px; + margin-bottom: 9px; + +} + +h4:not(.h4-appe), #appendix-e h5 { + margin-top: 0; + margin-bottom: 0; + padding-top: 7px; + padding-bottom: 8px; + margin-top: 15px; + font-style: italic; +} + +h4:not(.h4-appe) { + text-align: left; +} + +table caption { + font-family: 'spectral', serif; + font-size: 0.7em; + line-height: 15px; + font-weight: 400; + padding-top: 10px; + padding-bottom: 5px; + /* padding-top + padding-bottom : 15px;*/ + margin-top: 15px; + text-align: center; +} + +.center { + text-align: center!important; +} + +.separator{ + display:block; + height: 15px; +} + + +/* sidenote */ + +.sidenote { + font-family: 'hk-grotesk', sans-serif; + font-size: 9px; + line-height: 10px; + font-weight: 600!important; + margin-top: 3px; + /* break-inside: avoid; */ + hyphens: none!important; +} + +/* Footnotes */ + +.footnote { + float: footnote; + padding-left: 6mm; + font-size: 9px; + line-height: 10px; + text-indent: 0px!important +} + +.footnote::footnote-call, .footnote::footnote-marker { + vertical-align: inherit; + font-family: 'hk-grotesk', sans-serif; + font-weight: 600; +} + +.footnote::footnote-marker { + display: inline-block; + width: 0mm; + position: relative; + left: -6mm; +} + +.footnote::footnote-call { + content: counter(footnote); + position: relative; + top: -3px; +} + +/* frontmatter */ + +#absolute-bottom { + position: absolute; + bottom: 0; + left: 0; + width: 80% +} + +#absolute-bottom p { + font-family: 'spectral', sans-serif; + text-align: left; + font-size: 9px; + text-indent: 0; + margin-top: 15px; +} + +section[data-type="half-title"] h1 { + margin-top: 95px; + text-align: center; +} + +section[data-type="half-title"] h1 .smaller { + font-size: 0.8em!important; + display: block; + margin-top: 5px; +} + +section[data-type="titlepage"] h1 { + font-size: 40px; + text-align: center; + margin-top: 83px; + line-height: 44px; +} + +section[data-type="titlepage"] h1 .smaller { + display: block; + font-size: 0.7em!important; + line-height: 30px!important; + margin-top: 11px; +} + +section[data-type="titlepage"] #editor { + position: absolute; + bottom: 0; + left: 0; + margin-left: 5mm; + width: 100%; +} + +section[data-type="titlepage"] #author { + margin-top: 58px; + text-align: center!important; + text-indent: 0!important; + font-size: 20px!important; +} + +section[data-type="titlepage"] #author span { + display: block; + margin-bottom: 12px; + font-size: 13px!important; + display: block; +} + +section[data-type="titlepage"] #editor p { + text-align: center!important; + text-indent: 0!important; + margin-top: 15px; +} + + + +section[data-type="copyright"] p { + text-indent: 0!important; + text-align: center!important; + margin-top: 32px; + margin-bottom: 32px; +} + +section[data-type="dedication"], section[data-type="epigraph"] { + margin-top: 105px; +} + +section[data-type="epigraph"] blockquote { + margin: 0; + padding: 0; +} + +section[data-type="dedication"] p, section[data-type="epigraph"] blockquote p { + text-indent: 0!important; + font-style: italic; +} + +section[data-type="dedication"] p { + text-align: center!important; +} + +section[data-type="epigraph"] .caption { + font-style: normal; + padding-top: 10px; + padding-bottom: 20px; +} + +section[data-type="epigraph"] .caption:before { + content: "— "; + font-style: normal; +} + +/* Page break */ + +#cover { + page-break-after: always; +} + +#pre { + page-break-after: always; +} + +section[data-type="half-title"], section[data-type="titlepage"], section[data-type="epigraph"] { + page-break-before: right; + page-break-after: always; +} + +section[data-type="copyright"] { + page-break-before: always; + page-break-after: always; +} + +#toc { + page-break-before: right; + page-break-after: always; +} + +.list-plates { + page-break-before: right; + page-break-after: always; +} + +.part { + page-break-before: right; + page-break-after: always; +} + +.part h2 { + page-break-after: always; +} + +.part h3 { + page-break-before: right; +} + +.chapter, .preface, .introduction, #appendices, .appendix { + page-break-before: right; + page-break-after: always; +} + +figure { + /* break-inside: avoid; */ + page-break-inside: avoid; +} + +.dedication { + page-break-before: always; + page-break-after: always; +} + +/* table of content */ + +.toc-part, .toc-chap, .toc-subchap, .toc-app { + /* break-inside: avoid; */ +} + +#toc ul { + margin-top: 50px; + list-style: none; + padding: 0; +} + +#toc li { + text-indent: 0!important; + text-align: left!important; +} + +.toc-part a[href]::before, .toc-part a[href]::after, .toc-part-app a[href]::before { + display: block; + text-align: center; + text-transform: uppercase; +} + +.toc-part { + margin-bottom: 30px; +} + +.toc-part:first-of-type{ + margin-bottom: 0px; +} + +.toc-chap, .toc-app { + margin-bottom: 15px; + margin-top: 15px; +} + +.toc-subchap+.toc-chap { + margin-top: 30px; +} + +.toc-chap a, .toc-app a{ + display: block; +} + +.toc-subchap { + font-style: italic; + margin-left: 6mm; +} + +/* Tables */ + +td, th { + font-size: 9px; + line-height: 10px; + font-weight: normal; + text-indent: 0px!important +} + +table { + border-collapse: collapse; + margin: 0 auto; + box-decoration-break: slice; + margin-top: 15px; + margin-bottom: 15px; +} + +h5 + table { + margin-top: -15px!important; + break-inside: avoid; +} + +table{ + break-inside: avoid; +} +table:not(.table-noborder), th { + border: solid 1pt black; +} + +th, td { + padding-left: 6px; + padding-right: 6px; +} + +th { + padding-top: 6px; + padding-bottom: 6px; +} + +td { + vertical-align: top; +} + +table tr:nth-of-type(2) td, #table-appc-01 tr:nth-of-type(2) td { + padding-top: 6px; +} + +table tr:last-of-type td, #table-appc-01 tr:last-of-type td { + padding-bottom: 6px; +} + +.borders td { + border-right: thin solid black; +} + +.bt { + border-top: thin solid black; +} + +.bb { + border-bottom: thin solid black; +} + +.bl { + border-left: thin solid black; +} + +.borders .nobr { + border-right: none; +} + +.tdr { + text-align: right; +} + + + +/* Appendix */ + +.note-titre { + position: relative; + top: -90px!important; + text-align: center!important; + width: 70%; + hyphens: none!important; + margin: 0 auto; +} + +#appendix-a p { + text-indent: -6mm!important; + padding-left: 6mm; +} + +#appendix-d table { + width: 80%; + margin-left: auto; + margin-right: auto; + /* break-inside: avoid; */ +} + +#appendix-e { + counter-reset: h4appe; +} + +.h4-appe { + font-size: 0.7em; + line-height: 15px; + margin: 30px auto 15px auto; + text-align: center!important; + counter-increment: h4appe; + width: 85%; +} + +.h4-appe:before { + content: counter(h4appe, upper-roman) ". "; +} + +#appendix-e h5 { + counter-reset: table-caption; + counter-increment: h5-appe +} + +#appendix-e h5:before { + content: counter(h5-appe, decimal) ". "; +} + +#appendix-e table caption { + counter-increment: table-caption +} + +#appendix-e table { + width: 80% +} + +#appendix-e table caption:before { + content: counter(table-caption, lower-alpha) ". "; +} + + + +#appendix-e h5+table { + margin-top: 0; + padding-top: 0; +} diff --git a/test/samples/aurorae/fonts/Daubenton/LICENSE.txt b/test/samples/aurorae/fonts/Daubenton/LICENSE.txt new file mode 100755 index 0000000000000000000000000000000000000000..fd9b59c51fdbd753215f1ee103d02eb929daca77 --- /dev/null +++ b/test/samples/aurorae/fonts/Daubenton/LICENSE.txt @@ -0,0 +1,103 @@ +This Font Software is licensed under the SIL Open Font License, Version 1.1. +This license is copied below, and is also available with a FAQ at: +http://scripts.sil.org/OFL + +SIL Open Font License v1.1 +==================================================== + + +Preamble +---------- + +The goals of the Open Font License (OFL) are to stimulate worldwide +development of collaborative font projects, to support the font creation +efforts of academic and linguistic communities, and to provide a free and +open framework in which fonts may be shared and improved in partnership +with others. + +The OFL allows the licensed fonts to be used, studied, modified and +redistributed freely as long as they are not sold by themselves. The +fonts, including any derivative works, can be bundled, embedded, +redistributed and/or sold with any software provided that any reserved +names are not used by derivative works. The fonts and derivatives, +however, cannot be released under any other type of license. The +requirement for fonts to remain under this license does not apply +to any document created using the fonts or their derivatives. + + +Definitions +------------- + +`"Font Software"` refers to the set of files released by the Copyright +Holder(s) under this license and clearly marked as such. This may +include source files, build scripts and documentation. + +`"Reserved Font Name"` refers to any names specified as such after the +copyright statement(s). + +`"Original Version"` refers to the collection of Font Software components as +distributed by the Copyright Holder(s). + +`"Modified Version"` refers to any derivative made by adding to, deleting, +or substituting -- in part or in whole -- any of the components of the +Original Version, by changing formats or by porting the Font Software to a +new environment. + +`"Author"` refers to any designer, engineer, programmer, technical +writer or other person who contributed to the Font Software. + + +Permission & Conditions +------------------------ + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Font Software, to use, study, copy, merge, embed, modify, +redistribute, and sell modified and unmodified copies of the Font +Software, subject to the following conditions: + +1. Neither the Font Software nor any of its individual components, + in Original or Modified Versions, may be sold by itself. + +2. Original or Modified Versions of the Font Software may be bundled, + redistributed and/or sold with any software, provided that each copy + contains the above copyright notice and this license. These can be + included either as stand-alone text files, human-readable headers or + in the appropriate machine-readable metadata fields within text or + binary files as long as those fields can be easily viewed by the user. + +3. No Modified Version of the Font Software may use the Reserved Font + Name(s) unless explicit written permission is granted by the corresponding + Copyright Holder. This restriction only applies to the primary font name as + presented to the users. + +4. The name(s) of the Copyright Holder(s) or the Author(s) of the Font + Software shall not be used to promote, endorse or advertise any + Modified Version, except to acknowledge the contribution(s) of the + Copyright Holder(s) and the Author(s) or with their explicit written + permission. + +5. The Font Software, modified or unmodified, in part or in whole, + must be distributed entirely under this license, and must not be + distributed under any other license. The requirement for fonts to + remain under this license does not apply to any document created + using the Font Software. + + +Termination +----------- + +This license becomes null and void if any of the above conditions are +not met. + + + DISCLAIMER + + THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT + OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE + COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, + INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL + DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM + OTHER DEALINGS IN THE FONT SOFTWARE. diff --git a/test/samples/aurorae/fonts/Daubenton/README.md b/test/samples/aurorae/fonts/Daubenton/README.md new file mode 100755 index 0000000000000000000000000000000000000000..95484fcb8920dfc4270703fec4352f8f661623fb --- /dev/null +++ b/test/samples/aurorae/fonts/Daubenton/README.md @@ -0,0 +1,20 @@ +# Daubenton + + + + +Daubenton is a serif font designed by Olivier Dolbeau. Daubenton is a revival of the engraved letters of the façade of the Great Evolution Gallery of the Natural History Museum in Paris. Daubenton was the name of the first director of the Museum. + +Contribute or download it on [Velvetyne Type Foundry](http://velvetyne.fr/fonts/daubenton/). + +## License + +Daubenton is licensed under the SIL Open Font License, Version 1.1. +This license is copied below, and is also available with a FAQ at +http://scripts.sil.org/OFL + +## Repository Layout + +This font repository follows the Unified Font Repository v2.0, +a standard way to organize font project source files. Learn more at +https://github.com/raphaelbastide/Unified-Font-Repository diff --git a/test/samples/aurorae/fonts/Daubenton/daubenton-demo.html b/test/samples/aurorae/fonts/Daubenton/daubenton-demo.html new file mode 100755 index 0000000000000000000000000000000000000000..7c9da44b0b8b253c1edd0dbfbdbc9e39a2c39156 --- /dev/null +++ b/test/samples/aurorae/fonts/Daubenton/daubenton-demo.html @@ -0,0 +1,557 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> + +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> +<head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> + <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js" type="text/javascript" charset="utf-8"></script> + <script src="specimen_files/easytabs.js" type="text/javascript" charset="utf-8"></script> + <link rel="stylesheet" href="specimen_files/specimen_stylesheet.css" type="text/css" charset="utf-8" /> + <link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8" /> + + <style type="text/css"> + body{ + font-family: 'DaubentonRegular'; + } + </style> + + <title>Daubenton Regular Specimen</title> + + + <script type="text/javascript" charset="utf-8"> + $(document).ready(function() { + $('#container').easyTabs({defaultContent:1}); + }); + </script> +</head> + +<body> +<div id="container"> + <div id="header"> + Daubenton Regular </div> + <ul class="tabs"> + <li><a href="#specimen">Specimen</a></li> + <li><a href="#layout">Sample Layout</a></li> + <li><a href="#glyphs">Glyphs & Languages</a></li> + <li><a href="#installing">Installing Webfonts</a></li> + + </ul> + + <div id="main_content"> + + + <div id="specimen"> + + <div class="section"> + <div class="grid12 firstcol"> + <div class="huge">AaBb</div> + </div> + </div> + + <div class="section"> + <div class="glyph_range">A​B​C​D​E​F​G​H​I​J​K​L​M​N​O​P​Q​R​S​T​U​V​W​X​Y​Z​a​b​c​d​e​f​g​h​i​j​k​l​m​n​o​p​q​r​s​t​u​v​w​x​y​z​1​2​3​4​5​6​7​8​9​0​&​.​,​?​!​@​(​)​#​$​%​*​+​-​=​:​;</div> + </div> + <div class="section"> + <div class="grid12 firstcol"> + <table class="sample_table"> + <tr><td>10</td><td class="size10">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>11</td><td class="size11">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>12</td><td class="size12">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>13</td><td class="size13">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>14</td><td class="size14">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>16</td><td class="size16">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>18</td><td class="size18">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>20</td><td class="size20">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>24</td><td class="size24">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>30</td><td class="size30">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>36</td><td class="size36">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>48</td><td class="size48">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>60</td><td class="size60">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>72</td><td class="size72">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>90</td><td class="size90">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + </table> + + </div> + + </div> + + + + <div class="section" id="bodycomparison"> + + + <div id="xheight"> + <div class="fontbody">body</div><div class="arialbody">body</div><div class="verdanabody">body</div><div class="georgiabody">body</div></div> + <div class="fontbody" style="z-index:1"> + body<span>Daubenton Regular</span> + </div> + <div class="arialbody" style="z-index:1"> + body<span>Arial</span> + </div> + <div class="verdanabody" style="z-index:1"> + body<span>Verdana</span> + </div> + <div class="georgiabody" style="z-index:1"> + body<span>Georgia</span> + </div> + + + + </div> + + + <div class="section psample psample_row1" id=""> + + <div class="grid2 firstcol"> + <p class="size10"><span>10.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid3"> + <p class="size11"><span>11.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid3"> + <p class="size12"><span>12.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid4"> + <p class="size13"><span>13.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="white_blend"></div> + + </div> + <div class="section psample psample_row2" id=""> + <div class="grid3 firstcol"> + <p class="size14"><span>14.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid4"> + <p class="size16"><span>16.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid5"> + <p class="size18"><span>18.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + + <div class="white_blend"></div> + + </div> + + <div class="section psample psample_row3" id=""> + <div class="grid5 firstcol"> + <p class="size20"><span>20.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + <div class="grid7"> + <p class="size24"><span>24.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + + <div class="white_blend"></div> + + </div> + + <div class="section psample psample_row4" id=""> + <div class="grid12 firstcol"> + <p class="size30"><span>30.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + <div class="white_blend"></div> + + </div> + + + + <div class="section psample psample_row1 fullreverse"> + <div class="grid2 firstcol"> + <p class="size10"><span>10.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid3"> + <p class="size11"><span>11.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid3"> + <p class="size12"><span>12.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid4"> + <p class="size13"><span>13.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="black_blend"></div> + + </div> + + <div class="section psample psample_row2 fullreverse"> + <div class="grid3 firstcol"> + <p class="size14"><span>14.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid4"> + <p class="size16"><span>16.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid5"> + <p class="size18"><span>18.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="black_blend"></div> + + </div> + + <div class="section psample fullreverse psample_row3" id=""> + <div class="grid5 firstcol"> + <p class="size20"><span>20.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + <div class="grid7"> + <p class="size24"><span>24.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + + <div class="black_blend"></div> + + </div> + + <div class="section psample fullreverse psample_row4" id="" style="border-bottom: 20px #000 solid;"> + <div class="grid12 firstcol"> + <p class="size30"><span>30.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + <div class="black_blend"></div> + + </div> + + + + + </div> + + <div id="layout"> + + <div class="section"> + + <div class="grid12 firstcol"> + <h1>Lorem Ipsum Dolor</h1> + <h2>Etiam porta sem malesuada magna mollis euismod</h2> + + <p class="byline">By <a href="#link">Aenean Lacinia</a></p> + </div> + </div> + <div class="section"> + <div class="grid8 firstcol"> + <p class="large">Donec sed odio dui. Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p> + + + <h3>Pellentesque ornare sem</h3> + + <p>Maecenas sed diam eget risus varius blandit sit amet non magna. Maecenas faucibus mollis interdum. Donec ullamcorper nulla non metus auctor fringilla. Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam id dolor id nibh ultricies vehicula ut id elit. </p> + + <p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. </p> + + <p>Nulla vitae elit libero, a pharetra augue. Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Aenean lacinia bibendum nulla sed consectetur. </p> + + <p>Nullam quis risus eget urna mollis ornare vel eu leo. Nullam quis risus eget urna mollis ornare vel eu leo. Maecenas sed diam eget risus varius blandit sit amet non magna. Donec ullamcorper nulla non metus auctor fringilla. </p> + + <h3>Cras mattis consectetur</h3> + + <p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Aenean lacinia bibendum nulla sed consectetur. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Cras mattis consectetur purus sit amet fermentum. </p> + + <p>Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam quis risus eget urna mollis ornare vel eu leo. Cras mattis consectetur purus sit amet fermentum.</p> + </div> + + <div class="grid4 sidebar"> + + <div class="box reverse"> + <p class="last">Nullam quis risus eget urna mollis ornare vel eu leo. Donec ullamcorper nulla non metus auctor fringilla. Cras mattis consectetur purus sit amet fermentum. Sed posuere consectetur est at lobortis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. </p> + </div> + + <p class="caption">Maecenas sed diam eget risus varius.</p> + + <p>Vestibulum id ligula porta felis euismod semper. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Vestibulum id ligula porta felis euismod semper. Sed posuere consectetur est at lobortis. Maecenas sed diam eget risus varius blandit sit amet non magna. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p> + + + + <p>Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Aenean lacinia bibendum nulla sed consectetur. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Aenean lacinia bibendum nulla sed consectetur. Nullam quis risus eget urna mollis ornare vel eu leo. </p> + + <p>Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Donec ullamcorper nulla non metus auctor fringilla. Maecenas faucibus mollis interdum. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p> + + </div> + </div> + + </div> + + + + + + + <div id="glyphs"> + <div class="section"> + <div class="grid12 firstcol"> + + <h1>Language Support</h1> + <p>The subset of Daubenton Regular in this kit supports the following languages:<br /> + + Albanian, Danish, English, Faroese, German, Icelandic, Italian, Swedish </p> + <h1>Glyph Chart</h1> + <p>The subset of Daubenton Regular in this kit includes all the glyphs listed below. Unicode entities are included above each glyph to help you insert individual characters into your layout.</p> + <div id="glyph_chart"> + + <div><p>&#32;</p> </div> + <div><p>&#33;</p>!</div> + <div><p>&#34;</p>"</div> + <div><p>&#38;</p>&</div> + <div><p>&#39;</p>'</div> + <div><p>&#42;</p>*</div> + <div><p>&#44;</p>,</div> + <div><p>&#45;</p>-</div> + <div><p>&#46;</p>.</div> + <div><p>&#47;</p>/</div> + <div><p>&#48;</p>0</div> + <div><p>&#49;</p>1</div> + <div><p>&#50;</p>2</div> + <div><p>&#51;</p>3</div> + <div><p>&#52;</p>4</div> + <div><p>&#53;</p>5</div> + <div><p>&#54;</p>6</div> + <div><p>&#55;</p>7</div> + <div><p>&#56;</p>8</div> + <div><p>&#57;</p>9</div> + <div><p>&#58;</p>:</div> + <div><p>&#59;</p>;</div> + <div><p>&#62;</p>></div> + <div><p>&#63;</p>?</div> + <div><p>&#65;</p>A</div> + <div><p>&#66;</p>B</div> + <div><p>&#67;</p>C</div> + <div><p>&#68;</p>D</div> + <div><p>&#69;</p>E</div> + <div><p>&#70;</p>F</div> + <div><p>&#71;</p>G</div> + <div><p>&#72;</p>H</div> + <div><p>&#73;</p>I</div> + <div><p>&#74;</p>J</div> + <div><p>&#75;</p>K</div> + <div><p>&#76;</p>L</div> + <div><p>&#77;</p>M</div> + <div><p>&#78;</p>N</div> + <div><p>&#79;</p>O</div> + <div><p>&#80;</p>P</div> + <div><p>&#81;</p>Q</div> + <div><p>&#82;</p>R</div> + <div><p>&#83;</p>S</div> + <div><p>&#84;</p>T</div> + <div><p>&#85;</p>U</div> + <div><p>&#86;</p>V</div> + <div><p>&#87;</p>W</div> + <div><p>&#88;</p>X</div> + <div><p>&#89;</p>Y</div> + <div><p>&#90;</p>Z</div> + <div><p>&#92;</p>\</div> + <div><p>&#95;</p>_</div> + <div><p>&#97;</p>a</div> + <div><p>&#98;</p>b</div> + <div><p>&#99;</p>c</div> + <div><p>&#100;</p>d</div> + <div><p>&#101;</p>e</div> + <div><p>&#102;</p>f</div> + <div><p>&#103;</p>g</div> + <div><p>&#104;</p>h</div> + <div><p>&#105;</p>i</div> + <div><p>&#106;</p>j</div> + <div><p>&#107;</p>k</div> + <div><p>&#108;</p>l</div> + <div><p>&#109;</p>m</div> + <div><p>&#110;</p>n</div> + <div><p>&#111;</p>o</div> + <div><p>&#112;</p>p</div> + <div><p>&#113;</p>q</div> + <div><p>&#114;</p>r</div> + <div><p>&#115;</p>s</div> + <div><p>&#116;</p>t</div> + <div><p>&#117;</p>u</div> + <div><p>&#118;</p>v</div> + <div><p>&#119;</p>w</div> + <div><p>&#120;</p>x</div> + <div><p>&#121;</p>y</div> + <div><p>&#122;</p>z</div> + <div><p>&#160;</p> </div> + <div><p>&#168;</p>¨</div> + <div><p>&#171;</p>«</div> + <div><p>&#173;</p>­</div> + <div><p>&#187;</p>»</div> + <div><p>&#192;</p>À</div> + <div><p>&#193;</p>Á</div> + <div><p>&#194;</p>Â</div> + <div><p>&#195;</p>Ã</div> + <div><p>&#196;</p>Ä</div> + <div><p>&#197;</p>Å</div> + <div><p>&#198;</p>Æ</div> + <div><p>&#199;</p>Ç</div> + <div><p>&#200;</p>È</div> + <div><p>&#201;</p>É</div> + <div><p>&#202;</p>Ê</div> + <div><p>&#203;</p>Ë</div> + <div><p>&#204;</p>Ì</div> + <div><p>&#205;</p>Í</div> + <div><p>&#206;</p>Î</div> + <div><p>&#207;</p>Ï</div> + <div><p>&#208;</p>Ð</div> + <div><p>&#209;</p>Ñ</div> + <div><p>&#210;</p>Ò</div> + <div><p>&#211;</p>Ó</div> + <div><p>&#212;</p>Ô</div> + <div><p>&#213;</p>Õ</div> + <div><p>&#214;</p>Ö</div> + <div><p>&#216;</p>Ø</div> + <div><p>&#217;</p>Ù</div> + <div><p>&#218;</p>Ú</div> + <div><p>&#219;</p>Û</div> + <div><p>&#220;</p>Ü</div> + <div><p>&#221;</p>Ý</div> + <div><p>&#222;</p>Þ</div> + <div><p>&#223;</p>ß</div> + <div><p>&#224;</p>à</div> + <div><p>&#225;</p>á</div> + <div><p>&#226;</p>â</div> + <div><p>&#227;</p>ã</div> + <div><p>&#228;</p>ä</div> + <div><p>&#229;</p>å</div> + <div><p>&#230;</p>æ</div> + <div><p>&#231;</p>ç</div> + <div><p>&#232;</p>è</div> + <div><p>&#233;</p>é</div> + <div><p>&#234;</p>ê</div> + <div><p>&#235;</p>ë</div> + <div><p>&#236;</p>ì</div> + <div><p>&#237;</p>í</div> + <div><p>&#238;</p>î</div> + <div><p>&#239;</p>ï</div> + <div><p>&#240;</p>ð</div> + <div><p>&#241;</p>ñ</div> + <div><p>&#242;</p>ò</div> + <div><p>&#243;</p>ó</div> + <div><p>&#245;</p>õ</div> + <div><p>&#246;</p>ö</div> + <div><p>&#248;</p>ø</div> + <div><p>&#249;</p>ù</div> + <div><p>&#250;</p>ú</div> + <div><p>&#251;</p>û</div> + <div><p>&#252;</p>ü</div> + <div><p>&#253;</p>ý</div> + <div><p>&#254;</p>þ</div> + <div><p>&#255;</p>ÿ</div> + <div><p>&#338;</p>Œ</div> + <div><p>&#339;</p>œ</div> + <div><p>&#8192;</p> </div> + <div><p>&#8193;</p> </div> + <div><p>&#8194;</p> </div> + <div><p>&#8195;</p> </div> + <div><p>&#8196;</p> </div> + <div><p>&#8197;</p> </div> + <div><p>&#8198;</p> </div> + <div><p>&#8199;</p> </div> + <div><p>&#8200;</p> </div> + <div><p>&#8201;</p> </div> + <div><p>&#8202;</p> </div> + <div><p>&#8208;</p>‐</div> + <div><p>&#8209;</p>‑</div> + <div><p>&#8210;</p>‒</div> + <div><p>&#8211;</p>–</div> + <div><p>&#8212;</p>—</div> + <div><p>&#8216;</p>‘</div> + <div><p>&#8217;</p>’</div> + <div><p>&#8218;</p>‚</div> + <div><p>&#8220;</p>“</div> + <div><p>&#8221;</p>”</div> + <div><p>&#8222;</p>„</div> + <div><p>&#8226;</p>•</div> + <div><p>&#8230;</p>…</div> + <div><p>&#8239;</p> </div> + <div><p>&#8249;</p>‹</div> + <div><p>&#8250;</p>›</div> + <div><p>&#8287;</p> </div> + <div><p>&#57344;</p></div> + </div> + </div> + + + </div> + </div> + + + <div id="specs"> + + </div> + + <div id="installing"> + <div class="section"> + <div class="grid7 firstcol"> + <h1>Installing Webfonts</h1> + + <p>Webfonts are supported by all major browser platforms but not all in the same way. There are currently four different font formats that must be included in order to target all browsers. This includes TTF, WOFF, EOT and SVG.</p> + + <h2>1. Upload your webfonts</h2> + <p>You must upload your webfont kit to your website. They should be in or near the same directory as your CSS files.</p> + + <h2>2. Include the webfont stylesheet</h2> + <p>A special CSS @font-face declaration helps the various browsers select the appropriate font it needs without causing you a bunch of headaches. Learn more about this syntax by reading the <a href="http://www.fontspring.com/blog/further-hardening-of-the-bulletproof-syntax">Fontspring blog post</a> about it. The code for it is as follows:</p> + + +<code> +@font-face{ + font-family: 'MyWebFont'; + src: url('WebFont.eot'); + src: url('WebFont.eot?#iefix') format('embedded-opentype'), + url('WebFont.woff') format('woff'), + url('WebFont.ttf') format('truetype'), + url('WebFont.svg#webfont') format('svg'); +} +</code> + + <p>We've already gone ahead and generated the code for you. All you have to do is link to the stylesheet in your HTML, like this:</p> + <code><link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8" /></code> + + <h2>3. Modify your own stylesheet</h2> + <p>To take advantage of your new fonts, you must tell your stylesheet to use them. Look at the original @font-face declaration above and find the property called "font-family." The name linked there will be what you use to reference the font. Prepend that webfont name to the font stack in the "font-family" property, inside the selector you want to change. For example:</p> +<code>p { font-family: 'WebFont', Arial, sans-serif; }</code> + +<h2>4. Test</h2> +<p>Getting webfonts to work cross-browser <em>can</em> be tricky. Use the information in the sidebar to help you if you find that fonts aren't loading in a particular browser.</p> + </div> + + <div class="grid5 sidebar"> + <div class="box"> + <h2>Troubleshooting<br />Font-Face Problems</h2> + <p>Having trouble getting your webfonts to load in your new website? Here are some tips to sort out what might be the problem.</p> + + <h3>Fonts not showing in any browser</h3> + + <p>This sounds like you need to work on the plumbing. You either did not upload the fonts to the correct directory, or you did not link the fonts properly in the CSS. If you've confirmed that all this is correct and you still have a problem, take a look at your .htaccess file and see if requests are getting intercepted.</p> + + <h3>Fonts not loading in iPhone or iPad</h3> + + <p>The most common problem here is that you are serving the fonts from an IIS server. IIS refuses to serve files that have unknown MIME types. If that is the case, you must set the MIME type for SVG to "image/svg+xml" in the server settings. Follow these instructions from Microsoft if you need help.</p> + + <h3>Fonts not loading in Firefox</h3> + + <p>The primary reason for this failure? You are still using a version Firefox older than 3.5. So upgrade already! If that isn't it, then you are very likely serving fonts from a different domain. Firefox requires that all font assets be served from the same domain. Lastly it is possible that you need to add WOFF to your list of MIME types (if you are serving via IIS.)</p> + + <h3>Fonts not loading in IE</h3> + + <p>Are you looking at Internet Explorer on an actual Windows machine or are you cheating by using a service like Adobe BrowserLab? Many of these screenshot services do not render @font-face for IE. Best to test it on a real machine.</p> + + <h3>Fonts not loading in IE9</h3> + + <p>IE9, like Firefox, requires that fonts be served from the same domain as the website. Make sure that is the case.</p> + </div> + </div> + </div> + + </div> + + </div> + <div id="footer"> + <p>©2010-2011 Font Squirrel. All rights reserved.</p> + </div> +</div> +</body> +</html> diff --git a/test/samples/aurorae/fonts/Daubenton/daubentonwebfont.svg b/test/samples/aurorae/fonts/Daubenton/daubentonwebfont.svg new file mode 100755 index 0000000000000000000000000000000000000000..1c09e83b17aa2a19bd7c6a0467072297a6dc36f1 --- /dev/null +++ b/test/samples/aurorae/fonts/Daubenton/daubentonwebfont.svg @@ -0,0 +1,188 @@ +<?xml version="1.0" standalone="no"?> +<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" > +<svg xmlns="http://www.w3.org/2000/svg"> +<metadata></metadata> +<defs> +<font id="DaubentonRegular" horiz-adv-x="1837" > +<font-face units-per-em="2048" ascent="1536" descent="-512" /> +<missing-glyph horiz-adv-x="819" /> +<glyph horiz-adv-x="0" /> +<glyph horiz-adv-x="2048" /> +<glyph unicode=" " horiz-adv-x="819" /> +<glyph unicode="	" horiz-adv-x="819" /> +<glyph unicode=" " horiz-adv-x="819" /> +<glyph unicode="!" horiz-adv-x="610" d="M137 59l125 125l125 -125l-125 -125zM164 1460h182l-31 -1159h-120z" /> +<glyph unicode=""" horiz-adv-x="727" d="M18 1194q14 33 25 66q10 29 17.5 60.5t7.5 59.5q0 27 -7.5 53.5t-17.5 49.5q-10 25 -25 47h304q-35 -74 -87.5 -135.5t-99.5 -106.5q-57 -53 -117 -94zM387 1194q14 33 25 66q10 29 17 60.5t7 59.5q0 27 -7 53.5t-17 49.5q-10 25 -25 47h303q-35 -74 -87 -135.5 t-99 -106.5q-57 -53 -117 -94z" /> +<glyph unicode="&" horiz-adv-x="1679" d="M86 436q0 123 68.5 224.5t179.5 158.5l-19 17q-6 6 -13 11t-13 11q-49 47 -78 109.5t-29 134.5q0 74 32 139.5t87 114.5t130 76.5t159 27.5q96 0 184 -39q14 -6 27.5 -13t27.5 -15l43 26l-14 -45v-2l-45 -143l-10 -35q-33 74 -117 115q-59 27 -125 26q-14 0 -27.5 -1 t-25.5 -3q-92 -16 -151.5 -77.5t-59.5 -143.5q0 -88 63 -152l31 -24l205 -168l39 -31l262 -215l82 -67l74 104l235 334h43h238l-238 -238l-227 -303l422 -346h-254l-258 225q-16 -23 -31.5 -44t-36.5 -42q-68 -68 -162 -107.5t-204 -39.5q-102 0 -192.5 35t-157 94 t-105.5 139t-39 172zM248 436q0 -63 25.5 -119.5t70.5 -98.5t105.5 -66.5t130.5 -24.5t129 25.5t106 68.5l68 96q4 6 8 19l-2 2l-453 393q-84 -43 -136 -123t-52 -172z" /> +<glyph unicode="'" horiz-adv-x="440" d="M59 1194q14 33 25 66q10 29 17.5 60.5t7.5 59.5q0 27 -7.5 53.5t-17.5 49.5q-10 25 -25 47h303q-35 -74 -87 -135.5t-99 -106.5q-57 -53 -117 -94z" /> +<glyph unicode="*" horiz-adv-x="364" d="M61 1581l125 -125l125 125l-125 125zM98 1495v176h176v-176h-176zM186 1583z" /> +<glyph unicode="," horiz-adv-x="468" d="M82 166h301q-35 -74 -86 -135.5t-98 -106.5q-55 -53 -117 -94q14 33 24 66q10 29 17.5 60.5t7.5 59.5q0 27 -7 53.5t-18 49.5q-10 25 -24 47z" /> +<glyph unicode="-" horiz-adv-x="1177" d="M145 711v110h883v-110h-883z" /> +<glyph unicode="." horiz-adv-x="364" d="M61 66l125 124l125 -124l-125 -125zM186 66z" /> +<glyph unicode="/" horiz-adv-x="610" d="M10 0l420 1460h182l-440 -1460h-162z" /> +<glyph unicode="0" d="M104 729q0 154 63.5 289t173.5 236.5t256 160t314 58.5t314.5 -58.5t256 -160t173 -236.5t63.5 -289t-63.5 -290t-173 -236.5t-256 -158.5t-314.5 -58t-314 58t-256 158.5t-173.5 236.5t-63.5 290zM252 739q0 -121 52 -233.5t141.5 -199.5t209 -139t256.5 -52t257 52 t209 139t141.5 199.5t52.5 233.5t-52.5 233.5t-141.5 200t-208.5 139.5t-257.5 52q-137 0 -256.5 -52t-209 -139.5t-141.5 -200t-52 -233.5z" /> +<glyph unicode="1" horiz-adv-x="716" d="M51 1038l320 418h182l-43 -43v-1290l125 -125h-125h-156h-125l125 125v1085l-108 -170h-195z" /> +<glyph unicode="2" horiz-adv-x="1161" d="M92 -2l645 1034q14 31 15 74q0 47 -20.5 88t-56.5 71.5t-83 48t-103 17.5q-84 0 -149.5 -39t-93.5 -102l-70 227l45 -28q51 33 111.5 50t128.5 17q84 0 160.5 -24.5t136 -68.5t95.5 -105.5t36 -135.5q0 -55 -24.5 -120.5t-53.5 -112.5q-10 -16 -48 -76.5t-90 -141.5 t-110.5 -173t-107.5 -170t-84 -133.5t-39 -61.5h606l6 4l121 121v-260h-973z" /> +<glyph unicode="3" horiz-adv-x="1251" d="M92 68l105 231l73 166q-2 -68 25 -129.5t76 -107.5t115.5 -72.5t146.5 -22.5q76 0 141.5 23.5t114.5 64.5t77.5 96.5t28.5 118.5q0 61 -27.5 115.5t-74.5 95.5t-111.5 65.5t-138.5 26.5h-154l373 582h-370l-117 -117l20 252h707l-371 -582q103 -12 193 -63 q104 -59 166.5 -156.5t62.5 -214.5q0 -92 -39 -172t-105.5 -139t-156.5 -94t-190 -35q-125 0 -229.5 49t-170.5 135z" /> +<glyph unicode="4" horiz-adv-x="1245" d="M92 389l666 1067h194l-41 -41v-891h117l125 127v-379l-117 117h-125v-266l127 -125h-407l127 125v266h-666zM332 524h426v684z" /> +<glyph unicode="5" horiz-adv-x="1273" d="M92 68l105 231l73 166q0 -10 -1 -16.5t-1 -12.5q0 -63 29 -118.5t78 -96.5t115.5 -64.5t142.5 -23.5t141.5 23.5t114.5 64.5t77.5 96.5t28.5 118.5q0 86 -41 142.5t-106.5 90t-146 49t-161.5 20.5t-155 4t-121 -1q-2 0 -2 39t1 95.5t1 118v104.5v358h785l22 -252 l-117 117h-534v-203v-59.5t1 -68.5t1 -62.5v-42.5q98 4 190 -2q78 -4 164 -20.5t148 -51.5q104 -59 166.5 -156.5t62.5 -214.5q0 -92 -39 -172t-105.5 -139t-156.5 -94t-190 -35q-125 0 -229.5 49t-170.5 135z" /> +<glyph unicode="6" horiz-adv-x="1191" d="M92 535q0 188 74 354t190.5 290t261 195.5t287.5 71.5q39 0 76 -6q-109 -16 -223.5 -72.5t-215 -147t-174 -208t-100.5 -252.5q66 51 148 79.5t176 28.5q102 0 191 -34.5t156 -94t105.5 -139.5t38.5 -170q0 -78 -27.5 -146.5t-77.5 -125t-118.5 -95t-148.5 -57.5 q-29 -6 -58.5 -10t-60.5 -4q-66 0 -126 14t-114 41q-86 41 -146.5 108.5t-86.5 153.5q-6 16 -9.5 31.5t-7.5 32.5v6q0 2 -1 4t-1 4q-4 37 -6 73t-2 75zM260 430q0 -37 10 -74q14 -51 44 -94t72 -73.5t94 -48t112 -17.5q33 0 67 6q106 23 179 97.5t84 179.5v24 q0 63 -26 119.5t-71 98.5t-105.5 66.5t-127.5 24.5q-72 0 -134.5 -26.5t-109.5 -73.5q-41 -41 -64.5 -94t-23.5 -115z" /> +<glyph unicode="7" horiz-adv-x="1241" d="M92 -2l111 111l758 1212h-711l-117 -117l41 252h1024l-862 -1380l78 -78h-322z" /> +<glyph unicode="8" horiz-adv-x="1171" d="M92 436q0 125 70.5 227.5t185.5 159.5q-72 47 -112.5 120t-40.5 159q0 74 31.5 138.5t87 112.5t130 75.5t158.5 27.5t159 -27.5t130 -75.5t87 -112.5t32 -138.5q0 -90 -46 -166t-124 -123q109 -59 173 -157.5t64 -219.5q0 -92 -39 -172t-105.5 -139t-156.5 -94t-190 -35 q-102 0 -192.5 35t-157 94t-105.5 139t-39 172zM254 436q0 -63 25.5 -119.5t70.5 -98.5t105.5 -66.5t130.5 -24.5q68 0 128 24.5t105 66.5t70.5 98.5t25.5 119.5t-25.5 122.5t-69.5 106t-103.5 74t-126.5 27.5q-70 0 -130.5 -27.5t-106.5 -74t-72.5 -105.5t-26.5 -123z M344 1102q0 -47 20.5 -91t55.5 -79t82 -55.5t100 -20.5t100.5 20.5t82 55.5t55 79t20.5 91q0 45 -20.5 89t-55 79t-82 55.5t-100.5 20.5t-100 -20.5t-82 -55.5t-55.5 -79t-20.5 -89z" /> +<glyph unicode="9" horiz-adv-x="1054" d="M51 -2q125 18 252 90t230.5 183.5t171 258t73.5 314.5q-55 -45 -125.5 -69.5t-152.5 -24.5q-84 0 -159 27.5t-130 75.5t-87 111.5t-32 137.5t32 138.5t87 112.5t130 75.5t159 27.5q72 0 143 -22q92 -29 156.5 -91.5t93.5 -144.5q16 -47 24.5 -100.5t12.5 -100.5 q4 -53 2 -108q0 -188 -72 -352t-186.5 -285t-258 -189.5t-286.5 -68.5q-20 0 -38.5 1t-39.5 3zM242 1102q0 -47 20.5 -89t55 -74t82 -51.5t100.5 -19.5t100 19.5t82 51.5t55.5 74t20.5 89v16q-4 14 -6 26.5t-7 26.5q-25 68 -92 117t-153 49q-53 0 -100.5 -19.5t-82 -51 t-55 -74.5t-20.5 -90z" /> +<glyph unicode=":" horiz-adv-x="397" d="M82 66l125 124l125 -124l-125 -125zM82 764l125 -125l125 125l-125 127zM207 66zM207 764z" /> +<glyph unicode=";" horiz-adv-x="471" d="M102 166h301q-35 -74 -86 -135.5t-98 -106.5q-55 -53 -117 -94q14 33 25 66q10 29 17.5 60.5t7.5 59.5q0 27 -7.5 53.5t-17.5 49.5q-10 25 -25 47zM127 764l127 127l125 -127l-125 -125z" /> +<glyph unicode=">" horiz-adv-x="1705" /> +<glyph unicode="?" horiz-adv-x="831" d="M55 1419l45 -28q109 69 242 69q119 0 208 -46t140 -118.5t61.5 -162t-26.5 -175.5q-8 -18 -35.5 -49.5t-63.5 -70.5t-77 -84t-75 -86t-56.5 -78t-22.5 -60q0 -80 25.5 -128t73.5 -99l-156 -2q-33 55 -54.5 110.5t-21.5 127.5q0 35 50 98t112.5 134t120 137.5t71.5 109.5 q12 39 1 93t-42.5 103.5t-84 84t-119.5 34.5q-78 0 -145.5 -36.5t-100.5 -106.5l-55 180zM285 61l125 125l125 -125l-125 -124z" /> +<glyph unicode="A" horiz-adv-x="1693" d="M45 2l135 137l658 1393l655 -1393l135 -137h-405l90 90l-256 639h-441l-256 -639l91 -90h-406zM653 819h369l-184 461z" /> +<glyph unicode="B" horiz-adv-x="1343" d="M74 2l127 125v1208l-127 125h127h112h41h84l-84 -84v-1290l84 -84h-84h-41h-112h-127zM369 1335q49 57 122.5 91t159.5 34q74 0 138.5 -24.5t113.5 -67.5t77 -101.5t28 -123.5q0 -88 -49.5 -161t-129.5 -114q98 -4 183.5 -38.5t148 -92t99 -132.5t36.5 -161 q0 -88 -38.5 -165.5t-106.5 -135t-158 -91.5t-192 -34q-125 0 -229.5 48.5t-172.5 128.5q59 -47 135 -76t164 -29t167 28.5t136.5 79t91 117t33.5 142.5t-33.5 143.5t-91 117.5t-136.5 78.5t-167 28.5q-59 0 -120 -16v16v9v18q61 2 115.5 24.5t94 58.5t62 84t22.5 101 q0 55 -24.5 104.5t-67.5 85.5t-100 57.5t-123 21.5q-53 0 -100 -14.5t-88 -39.5z" /> +<glyph unicode="C" horiz-adv-x="1583" d="M74 729q0 154 63.5 289t173 236.5t257 160t315.5 58.5q127 0 242.5 -35t213.5 -97h131l21 -378q-37 80 -98.5 152.5t-140 127.5t-173 88t-196.5 33q-137 0 -257 -52t-210 -139.5t-142.5 -200t-52.5 -233.5t52.5 -233.5t142.5 -199.5t209.5 -139t257.5 -52q92 0 179 27.5 t164 73.5t140.5 106.5t106.5 126.5l-3 -322h-112q-102 -68 -222 -104.5t-253 -36.5q-168 0 -315.5 58t-257 158.5t-173 236.5t-63.5 290z" /> +<glyph unicode="D" horiz-adv-x="1705" d="M104 2l125 125v1208l-125 125h125h113h43h84l-84 -84v-30q98 59 212 93t241 34q168 0 314 -58.5t256 -160t173.5 -236.5t63.5 -289t-63.5 -290t-173.5 -236.5t-256 -158.5t-314 -58q-127 0 -241 33.5t-212 93.5v-27l84 -84h-84h-43h-113h-125zM385 201q86 -47 183.5 -74 t205.5 -27q150 0 282 50.5t230 137.5t154.5 202.5t56.5 248.5v15q-4 129 -61.5 243.5t-155.5 198.5t-228 133t-278 49q-109 0 -206 -41t-183 -88v-1048z" /> +<glyph unicode="E" horiz-adv-x="1290" d="M104 2l125 125v1208l-125 125h125h156h125h473l21 -252l-117 117h-502v-504h211l59 60v-60v-24v-41v-25v-59l-59 59h-211v-594h692l125 125l-20 -260h-672h-125h-156h-125z" /> +<glyph unicode="F" horiz-adv-x="1167" d="M104 2l125 125v1208l-125 125h125h156h125h473l21 -252l-117 117h-502v-504h211l59 60v-60v-24v-41v-25v-59l-59 59h-211v-604l125 -125h-125h-156h-125z" /> +<glyph unicode="G" horiz-adv-x="1705" d="M104 729q0 154 63.5 289t173.5 236.5t256 160t314 58.5q129 0 244 -35t213 -97h131l23 -378q-37 80 -98.5 152.5t-141.5 127.5t-174 88t-197 33q-137 0 -256.5 -52t-209 -139.5t-141.5 -200t-52 -233.5t52 -233.5t141.5 -199.5t209 -139t256.5 -52q80 0 154 22.5 t139.5 59t122.5 84t103 98.5v76l-127 125h127h153l-16 -115v-305h-135q-106 -82 -238.5 -128t-282.5 -46q-168 0 -314 58t-256 158.5t-173.5 236.5t-63.5 290z" /> +<glyph unicode="H" horiz-adv-x="1671" d="M104 2l125 125v1208l-125 125h125h156h125l-125 -125v-514h883v514l-125 125h125h155h125l-125 -125v-1208l125 -125h-125h-155h-125l125 125v604h-883v-604l125 -125h-125h-156h-125z" /> +<glyph unicode="I" horiz-adv-x="624" d="M104 2l125 125v1208l-125 125h125h156h125l-125 -125v-1208l125 -125h-125h-156h-125z" /> +<glyph unicode="J" horiz-adv-x="1378" d="M104 72l105 231l74 166v-6v-8q-2 -4 -2 -15q0 -63 28.5 -118.5t77.5 -96.5t115.5 -64.5t142.5 -23.5t141.5 23.5t114.5 64.5t78 96.5t29 118.5v895l-125 125h125h155h125l-125 -125v-925q-8 -86 -49 -160t-106 -127q-4 -6 -11.5 -11.5t-13.5 -9.5q-63 -47 -142 -72.5 t-167 -25.5q-125 0 -229.5 49t-170.5 135z" /> +<glyph unicode="K" horiz-adv-x="1417" d="M104 2l125 125v1208l-125 125h125h156h125l-125 -125v-528l455 653h43h237l-237 -237l-344 -416l866 -805h-254l-766 780v-655l125 -125h-125h-156h-125z" /> +<glyph unicode="L" horiz-adv-x="1337" d="M104 2l125 125v1208l-125 125h125h156h125l-125 -125v-1198h692l125 125l-20 -260h-672h-125h-156h-125z" /> +<glyph unicode="M" horiz-adv-x="2017" d="M104 2l113 113l148 1247l-117 98h219l537 -1063l536 1063h219l-117 -98l146 -1247l115 -113h-101h-26h-154h-125l117 117l-74 1061l-536 -1145l-537 1145l-74 -1061l117 -117h-125h-156h-24h-101z" /> +<glyph unicode="N" horiz-adv-x="1533" d="M-6 1460h229l940 -1208v1081l-127 127h127h154h127l-127 -127v-1210l127 -127h-236l-864 1085v-958l127 -127h-127h-156h-125l125 127v1137z" /> +<glyph unicode="O" horiz-adv-x="1757" d="M63 729q0 154 63.5 289t173.5 236.5t256 160t314 58.5t314.5 -58.5t256 -160t173 -236.5t63.5 -289t-63.5 -290t-173 -236.5t-256 -158.5t-314.5 -58t-314 58t-256 158.5t-173.5 236.5t-63.5 290zM211 739q0 -121 52 -233.5t141.5 -199.5t209 -139t256.5 -52t257 52 t209 139t141.5 199.5t52.5 233.5t-52.5 233.5t-141.5 200t-208.5 139.5t-257.5 52q-137 0 -256.5 -52t-209 -139.5t-141.5 -200t-52 -233.5z" /> +<glyph unicode="P" horiz-adv-x="1210" d="M72 2l127 125v1208l-127 125h127h112h41h84l-84 -84v-20q63 53 144.5 85t173.5 32q94 0 178 -34t147.5 -91.5t99 -134t35.5 -164.5t-35.5 -166t-99 -135.5t-147.5 -91t-178 -33.5q-92 0 -173 31.5t-145 84.5v-612l127 -125h-127h-153h-127zM317 1049q0 -61 26 -114.5 t70 -94.5t103 -66.5t127 -30.5h8h19q72 0 134 24t109.5 65.5t75 97t27.5 119.5q0 2 -1 3t-1 3v8v2q-4 59 -33 111.5t-75 91.5t-106.5 61.5t-129.5 22.5h-2h-2h-9h-2q-70 -2 -131 -27t-107 -65.5t-73 -95t-27 -115.5zM643 743h8h-8zM657 1352h11h-2h-9zM1014 1055q0 -2 1 -3 t1 -3q0 2 -1 3t-1 3zM1014 1063v2v-2z" /> +<glyph unicode="Q" horiz-adv-x="1826" d="M104 727q0 154 63.5 290t173.5 236.5t256 158.5t314 58t314.5 -58t256 -158.5t173 -236.5t63.5 -290q0 -109 -31.5 -208t-90 -185t-138.5 -154.5t-178 -113.5l328 -228h-414l-119 160q-41 -8 -82 -11t-82 -3q-168 0 -314 58t-256 159.5t-173.5 236.5t-63.5 289zM252 737 q0 -121 52 -233.5t141.5 -198.5t209 -138t256.5 -52h38t38 4l-141 190q39 0 83 -16.5t86 -39t77.5 -48t60.5 -45.5q92 37 169 96t132 136t86 165t31 180q0 121 -52.5 233.5t-141.5 199.5t-208.5 139.5t-257.5 52.5q-137 0 -256.5 -52.5t-209 -139.5t-141.5 -199.5 t-52 -233.5z" /> +<glyph unicode="R" horiz-adv-x="1294" d="M53 2l127 125v1208l-127 125h127h113h41h84l-84 -84v-28q59 61 142 97t181 36q88 0 167 -31t137.5 -84t92 -125t33.5 -154t-33.5 -153.5t-92 -124.5t-137.5 -84t-167 -31h-20t-21 2l2 -2l736 -692h-254l-766 825v-700l127 -125h-127h-154h-127zM313 1087q0 -57 24.5 -107 t68 -87t100.5 -58.5t123 -21.5h2h2q63 0 120.5 21.5t99.5 58.5t66.5 87t24.5 107t-24.5 107.5t-66.5 87.5t-99.5 58.5t-120.5 21.5h-2h-2q-66 0 -123 -21.5t-100.5 -58.5t-68 -87.5t-24.5 -107.5z" /> +<glyph unicode="S" horiz-adv-x="1124" d="M-6 72l180 397q0 -72 28.5 -133.5t78 -105.5t115 -68.5t139.5 -24.5q76 0 142 23.5t115.5 64.5t78 96.5t28.5 118.5t-27.5 115.5t-77 92.5t-117 65.5t-147.5 31.5q-70 6 -134 36t-114.5 77t-80 109.5t-29.5 134.5q0 74 32 139.5t87 114.5t130 76.5t159 27.5 q66 0 126 -17.5t111 -49.5l45 26l-14 -47l-55 -178q-31 68 -98.5 104.5t-143.5 36.5q-55 0 -103.5 -17.5t-84 -48t-56 -71.5t-20.5 -88t20.5 -87t56 -68.5t84 -47t103.5 -24.5q78 -8 160 -28.5t139 -57.5q102 -66 153.5 -151t51.5 -204q0 -90 -39 -169.5t-105.5 -139 t-155.5 -94.5t-192 -35q-123 0 -227.5 49t-171.5 135z" /> +<glyph unicode="T" horiz-adv-x="1318" d="M63 1208l21 252h479h37h82h37h479l21 -252l-117 117h-383v-1198l125 -125h-125h-156h-125l125 125v1198h-383z" /> +<glyph unicode="U" horiz-adv-x="1425" d="M104 1460h125h156h125l-125 -125v-573v-322q0 -63 26.5 -119.5t71.5 -97.5t106.5 -65.5t131.5 -24.5t130 24.5t106.5 65.5t73 97.5t26.5 119.5v322v573l-127 125h127h153h125l-125 -125v-864q0 -8 1 -15t1 -16q0 -90 -38.5 -170t-105.5 -139t-157 -94t-190 -35 q-102 0 -191.5 35t-156 94t-105.5 139t-39 170v23v872z" /> +<glyph unicode="V" horiz-adv-x="1685" d="M104 1460h125h146h10h125l-88 -90l422 -1034l422 1034l-88 90h125h10h145h125l-213 -213l-450 -1097l-76 -183l-76 183l-451 1097z" /> +<glyph unicode="W" horiz-adv-x="2553" d="M104 1460h125h146h10h125l-88 -90l422 -1034l459 1159l458 -1159l422 1034l-90 90h127h10h144h127l-215 -213l-451 -1097l-74 -183l-75 183l-383 931l-383 -931l-76 -183l-76 183l-451 1097z" /> +<glyph unicode="X" horiz-adv-x="1329" d="M53 2l111 111l426 682l-357 571l-92 94h35h90h64h125l-76 -78l289 -462l290 464l-77 76h125h2h61h92h35l-94 -94l-357 -571l426 -682l111 -111h-41h-84h-72h-124l77 78l-370 592l-371 -596l74 -74h-125h-66h-84h-43z" /> +<glyph unicode="Y" horiz-adv-x="1449" d="M104 1460h35h90h64h125l-76 -78l375 -471l373 473l-76 76h125h63h90h35l-92 -94l-442 -580v-239v-420l127 -125h-127h-154h-125l125 125v420v239l-442 580z" /> +<glyph unicode="Z" horiz-adv-x="1230" d="M104 2l826 1323h-709l-117 -117l21 252h473h125h291v-2v2h155l-825 -1323h606l127 125l-22 -260h-797h-154z" /> +<glyph unicode="\" horiz-adv-x="610" d="M10 1460h183l419 -1460h-161z" /> +<glyph unicode="_" horiz-adv-x="1177" d="M145 -100h883v-90h-883v90z" /> +<glyph unicode="a" horiz-adv-x="1693" d="M45 2l135 137l658 1393l655 -1393l135 -137h-405l90 90l-256 639h-441l-256 -639l91 -90h-406zM653 819h369l-184 461z" /> +<glyph unicode="b" horiz-adv-x="1343" d="M74 2l127 125v1208l-127 125h127h112h41h84l-84 -84v-1290l84 -84h-84h-41h-112h-127zM369 1335q49 57 122.5 91t159.5 34q74 0 138.5 -24.5t113.5 -67.5t77 -101.5t28 -123.5q0 -88 -49.5 -161t-129.5 -114q98 -4 183.5 -38.5t148 -92t99 -132.5t36.5 -161 q0 -88 -38.5 -165.5t-106.5 -135t-158 -91.5t-192 -34q-125 0 -229.5 48.5t-172.5 128.5q59 -47 135 -76t164 -29t167 28.5t136.5 79t91 117t33.5 142.5t-33.5 143.5t-91 117.5t-136.5 78.5t-167 28.5q-59 0 -120 -16v16v9v18q61 2 115.5 24.5t94 58.5t62 84t22.5 101 q0 55 -24.5 104.5t-67.5 85.5t-100 57.5t-123 21.5q-53 0 -100 -14.5t-88 -39.5z" /> +<glyph unicode="c" horiz-adv-x="1583" d="M74 729q0 154 63.5 289t173 236.5t257 160t315.5 58.5q127 0 242.5 -35t213.5 -97h131l21 -378q-37 80 -98.5 152.5t-140 127.5t-173 88t-196.5 33q-137 0 -257 -52t-210 -139.5t-142.5 -200t-52.5 -233.5t52.5 -233.5t142.5 -199.5t209.5 -139t257.5 -52q92 0 179 27.5 t164 73.5t140.5 106.5t106.5 126.5l-3 -322h-112q-102 -68 -222 -104.5t-253 -36.5q-168 0 -315.5 58t-257 158.5t-173 236.5t-63.5 290z" /> +<glyph unicode="d" horiz-adv-x="1705" d="M104 2l125 125v1208l-125 125h125h113h43h84l-84 -84v-30q98 59 212 93t241 34q168 0 314 -58.5t256 -160t173.5 -236.5t63.5 -289t-63.5 -290t-173.5 -236.5t-256 -158.5t-314 -58q-127 0 -241 33.5t-212 93.5v-27l84 -84h-84h-43h-113h-125zM385 201q86 -47 183.5 -74 t205.5 -27q150 0 282 50.5t230 137.5t154.5 202.5t56.5 248.5v15q-4 129 -61.5 243.5t-155.5 198.5t-228 133t-278 49q-109 0 -206 -41t-183 -88v-1048z" /> +<glyph unicode="e" horiz-adv-x="1290" d="M104 2l125 125v1208l-125 125h125h156h125h473l21 -252l-117 117h-502v-504h211l59 60v-60v-24v-41v-25v-59l-59 59h-211v-594h692l125 125l-20 -260h-672h-125h-156h-125z" /> +<glyph unicode="f" horiz-adv-x="1167" d="M104 2l125 125v1208l-125 125h125h156h125h473l21 -252l-117 117h-502v-504h211l59 60v-60v-24v-41v-25v-59l-59 59h-211v-604l125 -125h-125h-156h-125z" /> +<glyph unicode="g" horiz-adv-x="1705" d="M104 729q0 154 63.5 289t173.5 236.5t256 160t314 58.5q129 0 244 -35t213 -97h131l23 -378q-37 80 -98.5 152.5t-141.5 127.5t-174 88t-197 33q-137 0 -256.5 -52t-209 -139.5t-141.5 -200t-52 -233.5t52 -233.5t141.5 -199.5t209 -139t256.5 -52q80 0 154 22.5 t139.5 59t122.5 84t103 98.5v76l-127 125h127h153l-16 -115v-305h-135q-106 -82 -238.5 -128t-282.5 -46q-168 0 -314 58t-256 158.5t-173.5 236.5t-63.5 290z" /> +<glyph unicode="h" horiz-adv-x="1671" d="M104 2l125 125v1208l-125 125h125h156h125l-125 -125v-514h883v514l-125 125h125h155h125l-125 -125v-1208l125 -125h-125h-155h-125l125 125v604h-883v-604l125 -125h-125h-156h-125z" /> +<glyph unicode="i" horiz-adv-x="624" d="M104 2l125 125v1208l-125 125h125h156h125l-125 -125v-1208l125 -125h-125h-156h-125z" /> +<glyph unicode="j" horiz-adv-x="1378" d="M104 72l105 231l74 166v-6v-8q-2 -4 -2 -15q0 -63 28.5 -118.5t77.5 -96.5t115.5 -64.5t142.5 -23.5t141.5 23.5t114.5 64.5t78 96.5t29 118.5v895l-125 125h125h155h125l-125 -125v-925q-8 -86 -49 -160t-106 -127q-4 -6 -11.5 -11.5t-13.5 -9.5q-63 -47 -142 -72.5 t-167 -25.5q-125 0 -229.5 49t-170.5 135z" /> +<glyph unicode="k" horiz-adv-x="1417" d="M104 2l125 125v1208l-125 125h125h156h125l-125 -125v-528l455 653h43h237l-237 -237l-344 -416l866 -805h-254l-766 780v-655l125 -125h-125h-156h-125z" /> +<glyph unicode="l" horiz-adv-x="1337" d="M104 2l125 125v1208l-125 125h125h156h125l-125 -125v-1198h692l125 125l-20 -260h-672h-125h-156h-125z" /> +<glyph unicode="m" horiz-adv-x="2017" d="M104 2l113 113l148 1247l-117 98h219l537 -1063l536 1063h219l-117 -98l146 -1247l115 -113h-101h-26h-154h-125l117 117l-74 1061l-536 -1145l-537 1145l-74 -1061l117 -117h-125h-156h-24h-101z" /> +<glyph unicode="n" horiz-adv-x="1533" d="M-6 1460h229l940 -1208v1081l-127 127h127h154h127l-127 -127v-1210l127 -127h-236l-864 1085v-958l127 -127h-127h-156h-125l125 127v1137z" /> +<glyph unicode="o" horiz-adv-x="1757" d="M63 729q0 154 63.5 289t173.5 236.5t256 160t314 58.5t314.5 -58.5t256 -160t173 -236.5t63.5 -289t-63.5 -290t-173 -236.5t-256 -158.5t-314.5 -58t-314 58t-256 158.5t-173.5 236.5t-63.5 290zM211 739q0 -121 52 -233.5t141.5 -199.5t209 -139t256.5 -52t257 52 t209 139t141.5 199.5t52.5 233.5t-52.5 233.5t-141.5 200t-208.5 139.5t-257.5 52q-137 0 -256.5 -52t-209 -139.5t-141.5 -200t-52 -233.5z" /> +<glyph unicode="p" horiz-adv-x="1210" d="M72 2l127 125v1208l-127 125h127h112h41h84l-84 -84v-20q63 53 144.5 85t173.5 32q94 0 178 -34t147.5 -91.5t99 -134t35.5 -164.5t-35.5 -166t-99 -135.5t-147.5 -91t-178 -33.5q-92 0 -173 31.5t-145 84.5v-612l127 -125h-127h-153h-127zM317 1049q0 -61 26 -114.5 t70 -94.5t103 -66.5t127 -30.5h8h19q72 0 134 24t109.5 65.5t75 97t27.5 119.5q0 2 -1 3t-1 3v8v2q-4 59 -33 111.5t-75 91.5t-106.5 61.5t-129.5 22.5h-2h-2h-9h-2q-70 -2 -131 -27t-107 -65.5t-73 -95t-27 -115.5zM643 743h8h-8zM657 1352h11h-2h-9zM1014 1055q0 -2 1 -3 t1 -3q0 2 -1 3t-1 3zM1014 1063v2v-2z" /> +<glyph unicode="q" horiz-adv-x="1826" d="M104 727q0 154 63.5 290t173.5 236.5t256 158.5t314 58t314.5 -58t256 -158.5t173 -236.5t63.5 -290q0 -109 -31.5 -208t-90 -185t-138.5 -154.5t-178 -113.5l328 -228h-414l-119 160q-41 -8 -82 -11t-82 -3q-168 0 -314 58t-256 159.5t-173.5 236.5t-63.5 289zM252 737 q0 -121 52 -233.5t141.5 -198.5t209 -138t256.5 -52h38t38 4l-141 190q39 0 83 -16.5t86 -39t77.5 -48t60.5 -45.5q92 37 169 96t132 136t86 165t31 180q0 121 -52.5 233.5t-141.5 199.5t-208.5 139.5t-257.5 52.5q-137 0 -256.5 -52.5t-209 -139.5t-141.5 -199.5 t-52 -233.5z" /> +<glyph unicode="r" horiz-adv-x="1294" d="M53 2l127 125v1208l-127 125h127h113h41h84l-84 -84v-28q59 61 142 97t181 36q88 0 167 -31t137.5 -84t92 -125t33.5 -154t-33.5 -153.5t-92 -124.5t-137.5 -84t-167 -31h-20t-21 2l2 -2l736 -692h-254l-766 825v-700l127 -125h-127h-154h-127zM313 1087q0 -57 24.5 -107 t68 -87t100.5 -58.5t123 -21.5h2h2q63 0 120.5 21.5t99.5 58.5t66.5 87t24.5 107t-24.5 107.5t-66.5 87.5t-99.5 58.5t-120.5 21.5h-2h-2q-66 0 -123 -21.5t-100.5 -58.5t-68 -87.5t-24.5 -107.5z" /> +<glyph unicode="s" horiz-adv-x="1124" d="M-6 72l180 397q0 -72 28.5 -133.5t78 -105.5t115 -68.5t139.5 -24.5q76 0 142 23.5t115.5 64.5t78 96.5t28.5 118.5t-27.5 115.5t-77 92.5t-117 65.5t-147.5 31.5q-70 6 -134 36t-114.5 77t-80 109.5t-29.5 134.5q0 74 32 139.5t87 114.5t130 76.5t159 27.5 q66 0 126 -17.5t111 -49.5l45 26l-14 -47l-55 -178q-31 68 -98.5 104.5t-143.5 36.5q-55 0 -103.5 -17.5t-84 -48t-56 -71.5t-20.5 -88t20.5 -87t56 -68.5t84 -47t103.5 -24.5q78 -8 160 -28.5t139 -57.5q102 -66 153.5 -151t51.5 -204q0 -90 -39 -169.5t-105.5 -139 t-155.5 -94.5t-192 -35q-123 0 -227.5 49t-171.5 135z" /> +<glyph unicode="t" horiz-adv-x="1318" d="M63 1208l21 252h479h37h82h37h479l21 -252l-117 117h-383v-1198l125 -125h-125h-156h-125l125 125v1198h-383z" /> +<glyph unicode="u" horiz-adv-x="1425" d="M104 1460h125h156h125l-125 -125v-573v-322q0 -63 26.5 -119.5t71.5 -97.5t106.5 -65.5t131.5 -24.5t130 24.5t106.5 65.5t73 97.5t26.5 119.5v322v573l-127 125h127h153h125l-125 -125v-864q0 -8 1 -15t1 -16q0 -90 -38.5 -170t-105.5 -139t-157 -94t-190 -35 q-102 0 -191.5 35t-156 94t-105.5 139t-39 170v23v872z" /> +<glyph unicode="v" horiz-adv-x="1685" d="M104 1460h125h146h10h125l-88 -90l422 -1034l422 1034l-88 90h125h10h145h125l-213 -213l-450 -1097l-76 -183l-76 183l-451 1097z" /> +<glyph unicode="w" horiz-adv-x="2553" d="M104 1460h125h146h10h125l-88 -90l422 -1034l459 1159l458 -1159l422 1034l-90 90h127h10h144h127l-215 -213l-451 -1097l-74 -183l-75 183l-383 931l-383 -931l-76 -183l-76 183l-451 1097z" /> +<glyph unicode="x" horiz-adv-x="1329" d="M53 2l111 111l426 682l-357 571l-92 94h35h90h64h125l-76 -78l289 -462l290 464l-77 76h125h2h61h92h35l-94 -94l-357 -571l426 -682l111 -111h-41h-84h-72h-124l77 78l-370 592l-371 -596l74 -74h-125h-66h-84h-43z" /> +<glyph unicode="y" horiz-adv-x="1449" d="M104 1460h35h90h64h125l-76 -78l375 -471l373 473l-76 76h125h63h90h35l-92 -94l-442 -580v-239v-420l127 -125h-127h-154h-125l125 125v420v239l-442 580z" /> +<glyph unicode="z" horiz-adv-x="1230" d="M104 2l826 1323h-709l-117 -117l21 252h473h125h291v-2v2h155l-825 -1323h606l127 125l-22 -260h-797h-154z" /> +<glyph unicode="¨" horiz-adv-x="739" d="M61 1683l125 125l125 -125l-125 -124zM430 1683l125 125l125 -125l-125 -124z" /> +<glyph unicode="«" horiz-adv-x="978" d="M-2 758l393 424h172l-420 -424l480 -424h-191zM326 758l393 424h172l-420 -424l479 -424h-190z" /> +<glyph unicode="­" horiz-adv-x="1177" d="M145 711v110h883v-110h-883z" /> +<glyph unicode="»" horiz-adv-x="978" d="M-2 334l479 424l-420 424h172l394 -424l-435 -424h-190zM326 334l479 424l-420 424h172l393 -424l-434 -424h-190z" /> +<glyph unicode="À" horiz-adv-x="1671" d="M45 2h406l-91 90l256 639h441l256 -639l-90 -90h405l-135 137l-655 1393l-658 -1393zM653 819l185 461l184 -461h-369zM674 1776h303q-14 -16 -25 -37q-10 -16 -17 -41t-7 -51q0 -29 16.5 -54.5t38.5 -46.5q23 -23 55 -45q-80 25 -149 64q-59 35 -119.5 86t-95.5 125z " /> +<glyph unicode="Á" horiz-adv-x="1781" d="M106 2l136 137l657 1393l655 -1393l136 -137h-406l90 90l-256 639h-440l-256 -639l90 -90h-406zM715 819h368l-184 461zM735 1501q31 23 56 45q20 20 37.5 46t17.5 55q0 27 -7.5 51t-17.5 41q-10 20 -24 37h303q-35 -74 -96.5 -125.5t-120.5 -85.5q-70 -39 -148 -64z M735 1501q31 23 56 45q20 20 37.5 46t17.5 55q0 27 -7.5 51t-17.5 41q-10 20 -24 37h303q-35 -74 -96.5 -125.5t-120.5 -85.5q-70 -39 -148 -64zM735 1501q31 23 56 45q20 20 37.5 46t17.5 55q0 27 -7.5 51t-17.5 41q-10 20 -24 37h303q-35 -74 -96.5 -125.5t-120.5 -85.5 q-70 -39 -148 -64z" /> +<glyph unicode="Â" horiz-adv-x="1781" d="M106 2l136 137l657 1393l655 -1393l136 -137h-406l90 90l-256 639h-440l-256 -639l90 -90h-406zM582 1526l317 317l318 -317h-148l-170 205l-168 -205h-149zM715 819h368l-184 461z" /> +<glyph unicode="Ã" horiz-adv-x="1781" d="M106 2l136 137l657 1393l655 -1393l136 -137h-406l90 90l-256 639h-440l-256 -639l90 -90h-406zM715 819h368l-184 461z" /> +<glyph unicode="Ä" horiz-adv-x="1781" d="M106 2l136 137l657 1393l655 -1393l136 -137h-406l90 90l-256 639h-440l-256 -639l90 -90h-406zM588 1683l125 125l125 -125l-125 -124zM715 819h368l-184 461zM956 1683l125 125l125 -125l-125 -124z" /> +<glyph unicode="Å" horiz-adv-x="1781" d="M106 2l136 137l657 1393l655 -1393l136 -137h-406l90 90l-256 639h-440l-256 -639l90 -90h-406zM715 819h368l-184 461z" /> +<glyph unicode="Æ" horiz-adv-x="3072" d="M45 2l135 137l658 1393l655 -1393l135 -137h-405l90 90l-256 639h-441l-256 -639l91 -90h-406zM653 819h369l-184 461zM1374 2l125 125v1208l-125 125h125h156h125h473l20 -252l-116 117h-502v-504h211l59 60v-60v-24v-41v-25v-59l-59 59h-211v-594h692l125 125l-21 -260 h-671h-125h-156h-125z" /> +<glyph unicode="Ç" horiz-adv-x="1583" d="M59 729q0 154 63.5 290t173.5 236.5t256 159t314 58.5q129 0 244 -34t213 -98h131l23 -378q-37 80 -98.5 152.5t-141.5 127.5t-174 88t-197 33q-137 0 -257 -52t-209 -139.5t-141 -200t-52 -233.5t52 -233.5t141 -199.5t209 -139t257 -52q92 0 179.5 27.5t165 73.5 t140 106.5t105.5 126.5l-2 -322h-113q-66 -43 -138.5 -75t-153.5 -48l-228 -160l-127 -94q-25 -20 -60.5 -46t-77.5 -49.5t-86 -38.5t-83 -15l141 192l88 119l68 92q-135 29 -248.5 96.5t-197.5 162.5t-131.5 214t-47.5 252z" /> +<glyph unicode="È" horiz-adv-x="1290" d="M104 2h125h156h125h672l20 260l-125 -125h-692v594h211l59 -59v59v25v41v24v60l-59 -60h-211v504h502l117 -117l-21 252h-473h-125h-156h-125l125 -125v-1208zM367 1776h303q-14 -16 -25 -37q-10 -16 -17 -41t-7 -51q0 -29 16 -54.5t39 -46.5q23 -23 55 -45 q-80 25 -149 64q-59 35 -120 86t-95 125z" /> +<glyph unicode="É" horiz-adv-x="1290" d="M104 2l125 125v1208l-125 125h125h156h125h473l21 -252l-117 117h-502v-504h211l59 60v-60v-24v-41v-25v-59l-59 59h-211v-594h692l125 125l-20 -260h-672h-125h-156h-125zM489 1501q31 23 56 45q20 20 37.5 46t17.5 55q0 27 -7 51t-18 41q-10 20 -24 37h303 q-35 -74 -96.5 -125.5t-120.5 -85.5q-70 -39 -148 -64z" /> +<glyph unicode="Ê" horiz-adv-x="1290" d="M104 2l125 125v1208l-125 125h125h156h125h473l21 -252l-117 117h-502v-504h211l59 60v-60v-24v-41v-25v-59l-59 59h-211v-594h692l125 125l-20 -260h-672h-125h-156h-125zM274 1526l318 317l317 -317h-147l-170 205l-168 -205h-150z" /> +<glyph unicode="Ë" horiz-adv-x="1290" d="M104 2l125 125v1208l-125 125h125h156h125h473l21 -252l-117 117h-502v-504h211l59 60v-60v-24v-41v-25v-59l-59 59h-211v-594h692l125 125l-20 -260h-672h-125h-156h-125zM225 1683l125 125l125 -125l-125 -124zM594 1683l125 125l125 -125l-125 -124z" /> +<glyph unicode="Ì" horiz-adv-x="624" d="M104 2h125h156h125l-125 125v1208l125 125h-125h-156h-125l125 -125v-1208zM121 1776h303q-14 -16 -25 -37q-10 -16 -17 -41t-7 -51q0 -29 16.5 -54.5t38.5 -46.5q23 -23 55 -45q-80 25 -149 64q-59 35 -119.5 86t-95.5 125z" /> +<glyph unicode="Í" horiz-adv-x="624" d="M104 2l125 125v1208l-125 125h125h156h125l-125 -125v-1208l125 -125h-125h-156h-125zM125 1501q31 23 55 45q20 20 38 46t18 55q0 27 -7.5 51t-17.5 41q-10 20 -25 37h303q-35 -74 -96 -125.5t-121 -85.5q-70 -39 -147 -64z" /> +<glyph unicode="Î" horiz-adv-x="624" d="M-14 1526l317 317l318 -317h-148l-170 205l-168 -205h-149zM104 2l125 125v1208l-125 125h125h156h125l-125 -125v-1208l125 -125h-125h-156h-125z" /> +<glyph unicode="Ï" horiz-adv-x="624" d="M-2 1683l125 125l125 -125l-125 -124zM104 2l125 125v1208l-125 125h125h156h125l-125 -125v-1208l125 -125h-125h-156h-125zM367 1683l125 125l124 -125l-124 -124z" /> +<glyph unicode="Ð" horiz-adv-x="1705" d="M104 2l125 125v1208l-125 125h125h113h43h84l-84 -84v-30q98 59 212 93t241 34q168 0 314 -58.5t256 -160t173.5 -236.5t63.5 -289t-63.5 -290t-173.5 -236.5t-256 -158.5t-314 -58q-127 0 -241 33.5t-212 93.5v-27l84 -84h-84h-43h-113h-125zM385 201q86 -47 183.5 -74 t205.5 -27q150 0 282 50.5t230 137.5t154.5 202.5t56.5 248.5v15q-4 129 -61.5 243.5t-155.5 198.5t-228 133t-278 49q-109 0 -206 -26.5t-183 -73.5v-1077z" /> +<glyph unicode="Ñ" horiz-adv-x="1533" d="M-6 1460h229l940 -1208v1081l-127 127h127h154h127l-127 -127v-1210l127 -127h-236l-864 1085v-958l127 -127h-127h-156h-125l125 127v1137z" /> +<glyph unicode="Ò" d="M104 729q0 -154 63.5 -290t173.5 -236.5t256 -158.5t314 -58t314.5 58t256 158.5t173 236.5t63.5 290t-63.5 289t-173 236.5t-256 160t-314.5 58.5t-314 -58.5t-256 -160t-173.5 -236.5t-63.5 -289zM252 739q0 121 52 233.5t141.5 200t209 139.5t256.5 52t257 -52 t209 -139.5t141.5 -200t52.5 -233.5t-52.5 -233.5t-141.5 -199.5t-209 -139t-257 -52t-256.5 52t-209 139t-141.5 199.5t-52 233.5zM735 1776h303q-14 -16 -24 -37q-10 -16 -17.5 -41t-7.5 -51q0 -29 16.5 -54.5t38.5 -46.5q23 -23 56 -45q-80 25 -150 64q-59 35 -119.5 86 t-95.5 125z" /> +<glyph unicode="Ó" d="M104 729q0 154 63.5 289t173.5 236.5t256 160t314 58.5t314.5 -58.5t256 -160t173 -236.5t63.5 -289t-63.5 -290t-173 -236.5t-256 -158.5t-314.5 -58t-314 58t-256 158.5t-173.5 236.5t-63.5 290zM252 739q0 -121 52 -233.5t141.5 -199.5t209 -139t256.5 -52t257 52 t209 139t141.5 199.5t52.5 233.5t-52.5 233.5t-141.5 200t-208.5 139.5t-257.5 52q-137 0 -256.5 -52t-209 -139.5t-141.5 -200t-52 -233.5zM756 1501q31 23 55 45q20 20 37.5 46t17.5 55q0 27 -7 51t-17 41q-10 20 -25 37h303q-35 -74 -96 -125.5t-121 -85.5 q-70 -39 -147 -64z" /> +<glyph unicode="Ô" d="M104 729q0 154 63.5 289t173.5 236.5t256 160t314 58.5t314.5 -58.5t256 -160t173 -236.5t63.5 -289t-63.5 -290t-173 -236.5t-256 -158.5t-314.5 -58t-314 58t-256 158.5t-173.5 236.5t-63.5 290zM252 739q0 -121 52 -233.5t141.5 -199.5t209 -139t256.5 -52t257 52 t209 139t141.5 199.5t52.5 233.5t-52.5 233.5t-141.5 200t-208.5 139.5t-257.5 52q-137 0 -256.5 -52t-209 -139.5t-141.5 -200t-52 -233.5zM584 1526l317 317l318 -317h-148l-170 205l-168 -205h-149z" /> +<glyph unicode="Õ" d="M104 729q0 154 64 289q63 135 173 236t256 160t314 59t315 -59q146 -58 256 -160q110 -101 173 -236t63 -289t-63 -290t-173 -236t-256 -159q-146 -58 -315 -58q-168 0 -314 58t-256 159q-110 100 -173 236t-64 290zM252 739q0 -121 52 -233q52 -113 141 -200t209 -139 t257 -52t257 52t209 139t142 200q52 113 52 233q0 121 -52 234t-142 199q-89 87 -209 140q-120 52 -257 52t-257 -52t-209 -140q-89 -87 -141 -199q-52 -113 -52 -234z" /> +<glyph unicode="Ö" d="M104 729q0 154 63.5 289t173.5 236.5t256 160t314 58.5t314.5 -58.5t256 -160t173 -236.5t63.5 -289t-63.5 -290t-173 -236.5t-256 -158.5t-314.5 -58t-314 58t-256 158.5t-173.5 236.5t-63.5 290zM252 739q0 -121 52 -233.5t141.5 -199.5t209 -139t256.5 -52t257 52 t209 139t141.5 199.5t52.5 233.5t-52.5 233.5t-141.5 200t-208.5 139.5t-257.5 52q-137 0 -256.5 -52t-209 -139.5t-141.5 -200t-52 -233.5zM573 1683l125 125l125 -125l-125 -124zM942 1683l125 125l125 -125l-125 -124z" /> +<glyph unicode="Ø" d="M104 729q0 154 64 289q63 135 173 236t256 160t314 59t315 -59q146 -58 256 -160q110 -101 173 -236t63 -289t-63 -290t-173 -236t-256 -159q-146 -58 -315 -58q-168 0 -314 58t-256 159q-110 100 -173 236t-64 290zM252 739q0 -121 52 -233q52 -113 141 -200t209 -139 t257 -52t257 52t209 139t142 200q52 113 52 233q0 121 -52 234t-142 199q-89 87 -209 140q-120 52 -257 52t-257 -52t-209 -140q-89 -87 -141 -199q-52 -113 -52 -234z" /> +<glyph unicode="Ù" horiz-adv-x="1425" d="M104 1460l125 -125v-872v-23q0 -90 39 -170t105.5 -139t155.5 -94t192 -35q100 0 190 35t157 94t105.5 139t38.5 170q0 8 -1 15.5t-1 15.5v864l125 125h-125h-153h-127l127 -125v-573v-322q0 -63 -26.5 -119.5t-73 -97.5t-106.5 -65.5t-130 -24.5t-131.5 24.5 t-106.5 65.5t-71.5 97.5t-26.5 119.5v322v573l125 125h-125h-156h-125zM510 1776h303q-14 -16 -25 -37q-10 -16 -17 -41t-7 -51q0 -29 16.5 -54.5t38.5 -46.5q23 -23 55 -45q-80 25 -149 64q-59 35 -119.5 86t-95.5 125z" /> +<glyph unicode="Ú" horiz-adv-x="1425" d="M104 1460h125h156h125l-125 -125v-573v-322q0 -63 26.5 -119.5t71.5 -97.5t106.5 -65.5t131.5 -24.5t130 24.5t106.5 65.5t73 97.5t26.5 119.5v322v573l-127 125h127h153h125l-125 -125v-864q0 -8 1 -15t1 -16q0 -90 -38.5 -170t-105.5 -139t-157 -94t-190 -35 q-102 0 -191.5 35t-156 94t-105.5 139t-39 170v23v872zM571 1501q31 23 56 45q20 20 37.5 46t17.5 55q0 27 -7 51t-18 41q-10 20 -24 37h303q-35 -74 -96.5 -125.5t-120.5 -85.5q-70 -39 -148 -64z" /> +<glyph unicode="Û" horiz-adv-x="1425" d="M104 1460h125h156h125l-125 -125v-573v-322q0 -63 26.5 -119.5t71.5 -97.5t106.5 -65.5t131.5 -24.5t130 24.5t106.5 65.5t73 97.5t26.5 119.5v322v573l-127 125h127h153h125l-125 -125v-864q0 -8 1 -15t1 -16q0 -90 -38.5 -170t-105.5 -139t-157 -94t-190 -35 q-102 0 -191.5 35t-156 94t-105.5 139t-39 170v23v872zM397 1526l318 317l317 -317h-147l-170 205l-168 -205h-150z" /> +<glyph unicode="Ü" horiz-adv-x="1425" d="M104 1460h125h156h125l-125 -125v-573v-322q0 -63 26.5 -119.5t71.5 -97.5t106.5 -65.5t131.5 -24.5t130 24.5t106.5 65.5t73 97.5t26.5 119.5v322v573l-127 125h127h153h125l-125 -125v-864q0 -8 1 -15t1 -16q0 -90 -38.5 -170t-105.5 -139t-157 -94t-190 -35 q-102 0 -191.5 35t-156 94t-105.5 139t-39 170v23v872zM406 1683l124 125l125 -125l-125 -124zM774 1683l125 125l125 -125l-125 -124z" /> +<glyph unicode="Ý" horiz-adv-x="1449" d="M104 1460h35h90h64h125l-76 -78l375 -471l373 473l-76 76h125h63h90h35l-92 -94l-442 -580v-239v-420l127 -125h-127h-154h-125l125 125v420v239l-442 580zM571 1501q31 23 56 45q20 20 37.5 46t17.5 55q0 27 -7 51t-18 41q-10 20 -24 37h303q-35 -74 -96.5 -125.5 t-120.5 -85.5q-70 -39 -148 -64z" /> +<glyph unicode="Þ" horiz-adv-x="1705" /> +<glyph unicode="ß" horiz-adv-x="1705" /> +<glyph unicode="à" horiz-adv-x="1671" d="M45 2h406l-91 90l256 639h441l256 -639l-90 -90h405l-135 137l-655 1393l-658 -1393zM653 819l185 461l184 -461h-369zM674 1776h303q-14 -16 -25 -37q-10 -16 -17 -41t-7 -51q0 -29 16.5 -54.5t38.5 -46.5q23 -23 55 -45q-80 25 -149 64q-59 35 -119.5 86t-95.5 125z " /> +<glyph unicode="á" horiz-adv-x="1781" d="M106 2l136 137l657 1393l655 -1393l136 -137h-406l90 90l-256 639h-440l-256 -639l90 -90h-406zM715 819h368l-184 461zM735 1501q31 23 56 45q20 20 37.5 46t17.5 55q0 27 -7.5 51t-17.5 41q-10 20 -24 37h303q-35 -74 -96.5 -125.5t-120.5 -85.5q-70 -39 -148 -64z M735 1501q31 23 56 45q20 20 37.5 46t17.5 55q0 27 -7.5 51t-17.5 41q-10 20 -24 37h303q-35 -74 -96.5 -125.5t-120.5 -85.5q-70 -39 -148 -64zM735 1501q31 23 56 45q20 20 37.5 46t17.5 55q0 27 -7.5 51t-17.5 41q-10 20 -24 37h303q-35 -74 -96.5 -125.5t-120.5 -85.5 q-70 -39 -148 -64z" /> +<glyph unicode="â" horiz-adv-x="1781" d="M106 2l136 137l657 1393l655 -1393l136 -137h-406l90 90l-256 639h-440l-256 -639l90 -90h-406zM582 1526l317 317l318 -317h-148l-170 205l-168 -205h-149zM715 819h368l-184 461z" /> +<glyph unicode="ã" horiz-adv-x="1781" d="M106 2l136 137l657 1393l655 -1393l136 -137h-406l90 90l-256 639h-440l-256 -639l90 -90h-406zM715 819h368l-184 461z" /> +<glyph unicode="ä" horiz-adv-x="1781" d="M106 2l136 137l657 1393l655 -1393l136 -137h-406l90 90l-256 639h-440l-256 -639l90 -90h-406zM588 1683l125 125l125 -125l-125 -124zM715 819h368l-184 461zM956 1683l125 125l125 -125l-125 -124z" /> +<glyph unicode="å" horiz-adv-x="1781" d="M106 2l136 137l657 1393l655 -1393l136 -137h-406l90 90l-256 639h-440l-256 -639l90 -90h-406zM715 819h368l-184 461z" /> +<glyph unicode="æ" horiz-adv-x="3072" d="M45 2l135 137l658 1393l655 -1393l135 -137h-405l90 90l-256 639h-441l-256 -639l91 -90h-406zM653 819h369l-184 461zM1374 2l125 125v1208l-125 125h125h156h125h473l20 -252l-116 117h-502v-504h211l59 60v-60v-24v-41v-25v-59l-59 59h-211v-594h692l125 125l-21 -260 h-671h-125h-156h-125z" /> +<glyph unicode="ç" horiz-adv-x="1583" d="M59 729q0 154 63.5 290t173.5 236.5t256 159t314 58.5q129 0 244 -34t213 -98h131l23 -378q-37 80 -98.5 152.5t-141.5 127.5t-174 88t-197 33q-137 0 -257 -52t-209 -139.5t-141 -200t-52 -233.5t52 -233.5t141 -199.5t209 -139t257 -52q92 0 179.5 27.5t165 73.5 t140 106.5t105.5 126.5l-2 -322h-113q-66 -43 -138.5 -75t-153.5 -48l-228 -160l-127 -94q-25 -20 -60.5 -46t-77.5 -49.5t-86 -38.5t-83 -15l141 192l88 119l68 92q-135 29 -248.5 96.5t-197.5 162.5t-131.5 214t-47.5 252z" /> +<glyph unicode="è" horiz-adv-x="1290" d="M104 2h125h156h125h672l20 260l-125 -125h-692v594h211l59 -59v59v25v41v24v60l-59 -60h-211v504h502l117 -117l-21 252h-473h-125h-156h-125l125 -125v-1208zM367 1776h303q-14 -16 -25 -37q-10 -16 -17 -41t-7 -51q0 -29 16 -54.5t39 -46.5q23 -23 55 -45 q-80 25 -149 64q-59 35 -120 86t-95 125z" /> +<glyph unicode="é" horiz-adv-x="1290" d="M104 2l125 125v1208l-125 125h125h156h125h473l21 -252l-117 117h-502v-504h211l59 60v-60v-24v-41v-25v-59l-59 59h-211v-594h692l125 125l-20 -260h-672h-125h-156h-125zM489 1501q31 23 56 45q20 20 37.5 46t17.5 55q0 27 -7 51t-18 41q-10 20 -24 37h303 q-35 -74 -96.5 -125.5t-120.5 -85.5q-70 -39 -148 -64z" /> +<glyph unicode="ê" horiz-adv-x="1290" d="M104 2l125 125v1208l-125 125h125h156h125h473l21 -252l-117 117h-502v-504h211l59 60v-60v-24v-41v-25v-59l-59 59h-211v-594h692l125 125l-20 -260h-672h-125h-156h-125zM274 1526l318 317l317 -317h-147l-170 205l-168 -205h-150z" /> +<glyph unicode="ë" horiz-adv-x="1290" d="M104 2l125 125v1208l-125 125h125h156h125h473l21 -252l-117 117h-502v-504h211l59 60v-60v-24v-41v-25v-59l-59 59h-211v-594h692l125 125l-20 -260h-672h-125h-156h-125zM225 1683l125 125l125 -125l-125 -124zM594 1683l125 125l125 -125l-125 -124z" /> +<glyph unicode="ì" horiz-adv-x="624" d="M104 2h125h156h125l-125 125v1208l125 125h-125h-156h-125l125 -125v-1208zM121 1776h303q-14 -16 -25 -37q-10 -16 -17 -41t-7 -51q0 -29 16.5 -54.5t38.5 -46.5q23 -23 55 -45q-80 25 -149 64q-59 35 -119.5 86t-95.5 125z" /> +<glyph unicode="í" horiz-adv-x="624" d="M104 2l125 125v1208l-125 125h125h156h125l-125 -125v-1208l125 -125h-125h-156h-125zM125 1501q31 23 55 45q20 20 38 46t18 55q0 27 -7.5 51t-17.5 41q-10 20 -25 37h303q-35 -74 -96 -125.5t-121 -85.5q-70 -39 -147 -64z" /> +<glyph unicode="î" horiz-adv-x="624" d="M-14 1526l317 317l318 -317h-148l-170 205l-168 -205h-149zM104 2l125 125v1208l-125 125h125h156h125l-125 -125v-1208l125 -125h-125h-156h-125z" /> +<glyph unicode="ï" horiz-adv-x="624" d="M-2 1683l125 125l125 -125l-125 -124zM104 2l125 125v1208l-125 125h125h156h125l-125 -125v-1208l125 -125h-125h-156h-125zM367 1683l125 125l124 -125l-124 -124z" /> +<glyph unicode="ð" horiz-adv-x="1705" d="M104 2l125 125v1208l-125 125h125h113h43h84l-84 -84v-30q98 59 212 93t241 34q168 0 314 -58.5t256 -160t173.5 -236.5t63.5 -289t-63.5 -290t-173.5 -236.5t-256 -158.5t-314 -58q-127 0 -241 33.5t-212 93.5v-27l84 -84h-84h-43h-113h-125zM385 201q86 -47 183.5 -74 t205.5 -27q150 0 282 50.5t230 137.5t154.5 202.5t56.5 248.5v15q-4 129 -61.5 243.5t-155.5 198.5t-228 133t-278 49q-109 0 -206 -26.5t-183 -73.5v-1077z" /> +<glyph unicode="ñ" horiz-adv-x="1533" d="M-6 1460h229l940 -1208v1081l-127 127h127h154h127l-127 -127v-1210l127 -127h-236l-864 1085v-958l127 -127h-127h-156h-125l125 127v1137z" /> +<glyph unicode="ò" d="M104 729q0 -154 63.5 -290t173.5 -236.5t256 -158.5t314 -58t314.5 58t256 158.5t173 236.5t63.5 290t-63.5 289t-173 236.5t-256 160t-314.5 58.5t-314 -58.5t-256 -160t-173.5 -236.5t-63.5 -289zM252 739q0 121 52 233.5t141.5 200t209 139.5t256.5 52t257 -52 t209 -139.5t141.5 -200t52.5 -233.5t-52.5 -233.5t-141.5 -199.5t-209 -139t-257 -52t-256.5 52t-209 139t-141.5 199.5t-52 233.5zM735 1776h303q-14 -16 -24 -37q-10 -16 -17.5 -41t-7.5 -51q0 -29 16.5 -54.5t38.5 -46.5q23 -23 56 -45q-80 25 -150 64q-59 35 -119.5 86 t-95.5 125z" /> +<glyph unicode="ó" d="M104 729q0 154 63.5 289t173.5 236.5t256 160t314 58.5t314.5 -58.5t256 -160t173 -236.5t63.5 -289t-63.5 -290t-173 -236.5t-256 -158.5t-314.5 -58t-314 58t-256 158.5t-173.5 236.5t-63.5 290zM252 739q0 -121 52 -233.5t141.5 -199.5t209 -139t256.5 -52t257 52 t209 139t141.5 199.5t52.5 233.5t-52.5 233.5t-141.5 200t-208.5 139.5t-257.5 52q-137 0 -256.5 -52t-209 -139.5t-141.5 -200t-52 -233.5zM756 1501q31 23 55 45q20 20 37.5 46t17.5 55q0 27 -7 51t-17 41q-10 20 -25 37h303q-35 -74 -96 -125.5t-121 -85.5 q-70 -39 -147 -64z" /> +<glyph unicode="õ" d="M63 729q0 154 64 289q63 135 173 236t256 160t314 59t315 -59q146 -58 256 -160q110 -101 173 -236t63 -289t-63 -290t-173 -236t-256 -159q-146 -58 -315 -58q-168 0 -314 58t-256 159q-110 100 -173 236t-64 290zM211 739q0 -121 52 -233q52 -113 141 -200t209 -139 t257 -52t257 52t209 139t142 200q52 113 52 233q0 121 -52 234t-142 199q-89 87 -209 140q-120 52 -257 52t-257 -52t-209 -140q-89 -87 -141 -199q-52 -113 -52 -234z" /> +<glyph unicode="ö" d="M104 729q0 154 63.5 289t173.5 236.5t256 160t314 58.5t314.5 -58.5t256 -160t173 -236.5t63.5 -289t-63.5 -290t-173 -236.5t-256 -158.5t-314.5 -58t-314 58t-256 158.5t-173.5 236.5t-63.5 290zM252 739q0 -121 52 -233.5t141.5 -199.5t209 -139t256.5 -52t257 52 t209 139t141.5 199.5t52.5 233.5t-52.5 233.5t-141.5 200t-208.5 139.5t-257.5 52q-137 0 -256.5 -52t-209 -139.5t-141.5 -200t-52 -233.5zM573 1683l125 125l125 -125l-125 -124zM942 1683l125 125l125 -125l-125 -124z" /> +<glyph unicode="ø" d="M63 729q0 154 64 289q63 135 173 236t256 160t314 59t315 -59q146 -58 256 -160q110 -101 173 -236t63 -289t-63 -290t-173 -236t-256 -159q-146 -58 -315 -58q-168 0 -314 58t-256 159q-110 100 -173 236t-64 290zM211 739q0 -121 52 -233q52 -113 141 -200t209 -139 t257 -52t257 52t209 139t142 200q52 113 52 233q0 121 -52 234t-142 199q-89 87 -209 140q-120 52 -257 52t-257 -52t-209 -140q-89 -87 -141 -199q-52 -113 -52 -234z" /> +<glyph unicode="ù" horiz-adv-x="1425" d="M104 1460l125 -125v-872v-23q0 -90 39 -170t105.5 -139t155.5 -94t192 -35q100 0 190 35t157 94t105.5 139t38.5 170q0 8 -1 15.5t-1 15.5v864l125 125h-125h-153h-127l127 -125v-573v-322q0 -63 -26.5 -119.5t-73 -97.5t-106.5 -65.5t-130 -24.5t-131.5 24.5 t-106.5 65.5t-71.5 97.5t-26.5 119.5v322v573l125 125h-125h-156h-125zM510 1776h303q-14 -16 -25 -37q-10 -16 -17 -41t-7 -51q0 -29 16.5 -54.5t38.5 -46.5q23 -23 55 -45q-80 25 -149 64q-59 35 -119.5 86t-95.5 125z" /> +<glyph unicode="ú" horiz-adv-x="1425" d="M104 1460h125h156h125l-125 -125v-573v-322q0 -63 26.5 -119.5t71.5 -97.5t106.5 -65.5t131.5 -24.5t130 24.5t106.5 65.5t73 97.5t26.5 119.5v322v573l-127 125h127h153h125l-125 -125v-864q0 -8 1 -15t1 -16q0 -90 -38.5 -170t-105.5 -139t-157 -94t-190 -35 q-102 0 -191.5 35t-156 94t-105.5 139t-39 170v23v872zM571 1501q31 23 56 45q20 20 37.5 46t17.5 55q0 27 -7 51t-18 41q-10 20 -24 37h303q-35 -74 -96.5 -125.5t-120.5 -85.5q-70 -39 -148 -64z" /> +<glyph unicode="û" horiz-adv-x="1425" d="M104 1460h125h156h125l-125 -125v-573v-322q0 -63 26.5 -119.5t71.5 -97.5t106.5 -65.5t131.5 -24.5t130 24.5t106.5 65.5t73 97.5t26.5 119.5v322v573l-127 125h127h153h125l-125 -125v-864q0 -8 1 -15t1 -16q0 -90 -38.5 -170t-105.5 -139t-157 -94t-190 -35 q-102 0 -191.5 35t-156 94t-105.5 139t-39 170v23v872zM397 1526l318 317l317 -317h-147l-170 205l-168 -205h-150z" /> +<glyph unicode="ü" horiz-adv-x="1425" d="M104 1460h125h156h125l-125 -125v-573v-322q0 -63 26.5 -119.5t71.5 -97.5t106.5 -65.5t131.5 -24.5t130 24.5t106.5 65.5t73 97.5t26.5 119.5v322v573l-127 125h127h153h125l-125 -125v-864q0 -8 1 -15t1 -16q0 -90 -38.5 -170t-105.5 -139t-157 -94t-190 -35 q-102 0 -191.5 35t-156 94t-105.5 139t-39 170v23v872zM406 1683l124 125l125 -125l-125 -124zM774 1683l125 125l125 -125l-125 -124z" /> +<glyph unicode="ý" horiz-adv-x="1449" d="M104 1460h35h90h64h125l-76 -78l375 -471l373 473l-76 76h125h63h90h35l-92 -94l-442 -580v-239v-420l127 -125h-127h-154h-125l125 125v420v239l-442 580zM571 1501q31 23 56 45q20 20 37.5 46t17.5 55q0 27 -7 51t-18 41q-10 20 -24 37h303q-35 -74 -96.5 -125.5 t-120.5 -85.5q-70 -39 -148 -64z" /> +<glyph unicode="þ" horiz-adv-x="1343" d="M74 2l127 125v1208l-127 125h127h112h41h84l-84 -84v-1290l84 -84h-84h-41h-112h-127zM369 1335q49 57 122.5 91t159.5 34q74 0 138.5 -24.5t113.5 -67.5t77 -101.5t28 -123.5q0 -88 -49.5 -161t-129.5 -114q98 -4 183.5 -38.5t148 -92t99 -132.5t36.5 -161 q0 -88 -38.5 -165.5t-106.5 -135t-158 -91.5t-192 -34q-125 0 -229.5 48.5t-172.5 128.5q59 -47 135 -76t164 -29t167 28.5t136.5 79t91 117t33.5 142.5t-33.5 143.5t-91 117.5t-136.5 78.5t-167 28.5q-59 0 -120 -16v16v9v18q61 2 115.5 24.5t94 58.5t62 84t22.5 101 q0 55 -24.5 104.5t-67.5 85.5t-100 57.5t-123 21.5q-53 0 -100 -14.5t-88 -39.5z" /> +<glyph unicode="ÿ" horiz-adv-x="1449" d="M104 1460h35h90h64h125l-76 -78l375 -471l373 473l-76 76h125h63h90h35l-92 -94l-442 -580v-239v-420l127 -125h-127h-154h-125l125 125v420v239l-442 580zM406 1683l124 125l125 -125l-125 -124zM774 1683l125 125l125 -125l-125 -124z" /> +<glyph unicode="Œ" horiz-adv-x="3127" d="M104 729q0 154 64 289q63 135 173 236t256 160t314 59t315 -59q146 -58 256 -160q110 -101 173 -236t63 -289t-63 -290t-173 -236t-256 -159q-146 -58 -315 -58q-168 0 -314 58t-256 159q-110 100 -173 236t-64 290zM252 739q0 -121 52 -233q52 -113 141 -200t209 -139 t257 -52t257 52t209 139t142 200q52 113 52 233q0 121 -52 234t-142 199q-89 87 -209 140q-120 52 -257 52t-257 -52t-209 -140q-89 -87 -141 -199q-52 -113 -52 -234zM1452 2l125 125v1208l-125 125h125h156h125h473l20 -252l-117 117h-501v-504h211l59 60v-60v-24v-41v-25 v-59l-59 59h-211v-594h692l125 125l-21 -260h-671h-125h-156h-125z" /> +<glyph unicode="œ" horiz-adv-x="3127" d="M104 729q0 154 64 289q63 135 173 236t256 160t314 59t315 -59q146 -58 256 -160q110 -101 173 -236t63 -289t-63 -290t-173 -236t-256 -159q-146 -58 -315 -58q-168 0 -314 58t-256 159q-110 100 -173 236t-64 290zM252 739q0 -121 52 -233q52 -113 141 -200t209 -139 t257 -52t257 52t209 139t142 200q52 113 52 233q0 121 -52 234t-142 199q-89 87 -209 140q-120 52 -257 52t-257 -52t-209 -140q-89 -87 -141 -199q-52 -113 -52 -234zM1452 2l125 125v1208l-125 125h125h156h125h473l20 -252l-117 117h-501v-504h211l59 60v-60v-24v-41v-25 v-59l-59 59h-211v-594h692l125 125l-21 -260h-671h-125h-156h-125z" /> +<glyph unicode=" " horiz-adv-x="921" /> +<glyph unicode=" " horiz-adv-x="1843" /> +<glyph unicode=" " horiz-adv-x="921" /> +<glyph unicode=" " horiz-adv-x="1843" /> +<glyph unicode=" " horiz-adv-x="614" /> +<glyph unicode=" " horiz-adv-x="460" /> +<glyph unicode=" " horiz-adv-x="307" /> +<glyph unicode=" " horiz-adv-x="307" /> +<glyph unicode=" " horiz-adv-x="230" /> +<glyph unicode=" " horiz-adv-x="368" /> +<glyph unicode=" " horiz-adv-x="102" /> +<glyph unicode="‐" horiz-adv-x="1177" d="M145 711v110h883v-110h-883z" /> +<glyph unicode="‑" horiz-adv-x="1177" d="M145 711v110h883v-110h-883z" /> +<glyph unicode="‒" horiz-adv-x="1177" d="M145 711v110h883v-110h-883z" /> +<glyph unicode="–" horiz-adv-x="1177" d="M145 731v90h883v-90h-883z" /> +<glyph unicode="—" horiz-adv-x="1177" d="M145 731v90h883v-90h-883z" /> +<glyph unicode="‘" horiz-adv-x="440" d="M59 1194q35 72 85.5 134.5t99.5 107.5q55 53 118 94q-14 -33 -24 -66q-10 -29 -17.5 -61.5t-7.5 -59.5q0 -29 7.5 -54t17.5 -48q10 -25 24 -47h-303z" /> +<glyph unicode="’" horiz-adv-x="440" d="M59 1194q14 33 25 66q10 29 17.5 60.5t7.5 59.5q0 27 -7.5 53.5t-17.5 49.5q-10 25 -25 47h303q-35 -74 -87 -135.5t-99 -106.5q-57 -53 -117 -94z" /> +<glyph unicode="‚" horiz-adv-x="468" d="M82 166h301q-35 -74 -86 -135.5t-98 -106.5q-55 -53 -117 -94q14 33 24 66q10 29 17.5 60.5t7.5 59.5q0 27 -7 53.5t-18 49.5q-10 25 -24 47z" /> +<glyph unicode="“" horiz-adv-x="727" d="M18 1194q35 72 85.5 134.5t99.5 107.5q55 53 119 94q-14 -33 -25 -66q-10 -29 -17.5 -61.5t-7.5 -59.5q0 -29 7.5 -54t17.5 -48q10 -25 25 -47h-304zM387 1194q35 72 85 134.5t99 107.5q55 53 119 94q-14 -33 -24 -66q-10 -29 -17.5 -61.5t-7.5 -59.5q0 -29 7 -54t18 -48 q10 -25 24 -47h-303z" /> +<glyph unicode="”" horiz-adv-x="727" d="M18 1194q14 33 25 66q10 29 17.5 60.5t7.5 59.5q0 27 -7.5 53.5t-17.5 49.5q-10 25 -25 47h304q-35 -74 -87.5 -135.5t-99.5 -106.5q-57 -53 -117 -94zM387 1194q14 33 25 66q10 29 17 60.5t7 59.5q0 27 -7 53.5t-17 49.5q-10 25 -25 47h303q-35 -74 -87 -135.5 t-99 -106.5q-57 -53 -117 -94z" /> +<glyph unicode="„" horiz-adv-x="854" d="M82 166h301q-35 -74 -86 -135.5t-98 -106.5q-55 -53 -117 -94q14 33 24 66q10 29 17.5 60.5t7.5 59.5q0 27 -7 53.5t-18 49.5q-10 25 -24 47zM512 166h301q-35 -74 -86 -135.5t-98 -106.5q-55 -53 -117 -94q14 33 25 66q10 29 17 60.5t7 59.5q0 27 -7 53.5t-17 49.5 q-10 25 -25 47z" /> +<glyph unicode="•" horiz-adv-x="542" d="M82 774l176 176l176 -176l-176 -176zM258 774z" /> +<glyph unicode="…" horiz-adv-x="1093" d="M61 66l125 124l125 -124l-125 -125zM186 66zM426 66l125 124l125 -124l-125 -125zM551 66zM791 66l124 -125l125 125l-125 124zM915 66z" /> +<glyph unicode=" " horiz-adv-x="368" /> +<glyph unicode="‹" horiz-adv-x="686" d="M-2 758l393 424h172l-420 -424l480 -424h-191z" /> +<glyph unicode="›" horiz-adv-x="686" d="M-2 334l479 424l-420 424h172l394 -424l-435 -424h-190z" /> +<glyph unicode=" " horiz-adv-x="460" /> +<glyph unicode="" horiz-adv-x="1464" d="M0 0v1464h1464v-1464h-1464z" /> +</font> +</defs></svg> \ No newline at end of file diff --git a/test/samples/aurorae/fonts/Daubenton/daubentonwebfont.ttf b/test/samples/aurorae/fonts/Daubenton/daubentonwebfont.ttf new file mode 100755 index 0000000000000000000000000000000000000000..dcc1aafb7e08181038512c4c0072fb8f7d7bc8e0 Binary files /dev/null and b/test/samples/aurorae/fonts/Daubenton/daubentonwebfont.ttf differ diff --git a/test/samples/aurorae/fonts/Daubenton/daubentonwebfont.woff b/test/samples/aurorae/fonts/Daubenton/daubentonwebfont.woff new file mode 100755 index 0000000000000000000000000000000000000000..0f9959439ce0562be7006063c576bcc2f4967a2e Binary files /dev/null and b/test/samples/aurorae/fonts/Daubenton/daubentonwebfont.woff differ diff --git a/test/samples/aurorae/fonts/Daubenton/stylesheet.css b/test/samples/aurorae/fonts/Daubenton/stylesheet.css new file mode 100755 index 0000000000000000000000000000000000000000..379373a5703b70c5a7a4466753f5388688f13842 --- /dev/null +++ b/test/samples/aurorae/fonts/Daubenton/stylesheet.css @@ -0,0 +1,10 @@ +@font-face { + font-family: 'daubenton'; + src: url('daubentonwebfont.woff') format('woff'), + url('daubentonwebfont.ttf') format('truetype'), + url('daubentonwebfont.svg') format('svg'); + font-weight: normal; + font-style: normal; + +} + diff --git a/test/samples/aurorae/fonts/amble/amble-bold-demo.html b/test/samples/aurorae/fonts/amble/amble-bold-demo.html new file mode 100755 index 0000000000000000000000000000000000000000..d10fe25edd48801d3f193c255101d6859c8fdb99 --- /dev/null +++ b/test/samples/aurorae/fonts/amble/amble-bold-demo.html @@ -0,0 +1,620 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> + +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> +<head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> + <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js" type="text/javascript" charset="utf-8"></script> + <script type="text/javascript"> + (function($){$.fn.easyTabs=function(option){var param=jQuery.extend({fadeSpeed:"fast",defaultContent:1,activeClass:'active'},option);$(this).each(function(){var thisId="#"+this.id;if(param.defaultContent==''){param.defaultContent=1;} + if(typeof param.defaultContent=="number") + {var defaultTab=$(thisId+" .tabs li:eq("+(param.defaultContent-1)+") a").attr('href').substr(1);}else{var defaultTab=param.defaultContent;} + $(thisId+" .tabs li a").each(function(){var tabToHide=$(this).attr('href').substr(1);$("#"+tabToHide).addClass('easytabs-tab-content');});hideAll();changeContent(defaultTab);function hideAll(){$(thisId+" .easytabs-tab-content").hide();} + function changeContent(tabId){hideAll();$(thisId+" .tabs li").removeClass(param.activeClass);$(thisId+" .tabs li a[href=#"+tabId+"]").closest('li').addClass(param.activeClass);if(param.fadeSpeed!="none") + {$(thisId+" #"+tabId).fadeIn(param.fadeSpeed);}else{$(thisId+" #"+tabId).show();}} + $(thisId+" .tabs li").click(function(){var tabId=$(this).find('a').attr('href').substr(1);changeContent(tabId);return false;});});}})(jQuery); + </script> + <link rel="stylesheet" href="specimen_files/specimen_stylesheet.css" type="text/css" charset="utf-8" /> + <link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8" /> + + <style type="text/css"> + body{ + font-family: 'amblebold'; + } + </style> + + <title>Amble Bold Specimen</title> + + + <script type="text/javascript" charset="utf-8"> + $(document).ready(function() { + $('#container').easyTabs({defaultContent:1}); + }); + </script> +</head> + +<body> +<div id="container"> + <div id="header"> + Amble Bold </div> + <ul class="tabs"> + <li><a href="#specimen">Specimen</a></li> + <li><a href="#layout">Sample Layout</a></li> + <li><a href="#glyphs">Glyphs & Languages</a></li> + <li><a href="#installing">Installing Webfonts</a></li> + + </ul> + + <div id="main_content"> + + + <div id="specimen"> + + <div class="section"> + <div class="grid12 firstcol"> + <div class="huge">AaBb</div> + </div> + </div> + + <div class="section"> + <div class="glyph_range">A​B​C​D​E​F​G​H​I​J​K​L​M​N​O​P​Q​R​S​T​U​V​W​X​Y​Z​a​b​c​d​e​f​g​h​i​j​k​l​m​n​o​p​q​r​s​t​u​v​w​x​y​z​1​2​3​4​5​6​7​8​9​0​&​.​,​?​!​@​(​)​#​$​%​*​+​-​=​:​;</div> + </div> + <div class="section"> + <div class="grid12 firstcol"> + <table class="sample_table"> + <tr><td>10</td><td class="size10">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>11</td><td class="size11">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>12</td><td class="size12">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>13</td><td class="size13">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>14</td><td class="size14">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>16</td><td class="size16">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>18</td><td class="size18">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>20</td><td class="size20">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>24</td><td class="size24">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>30</td><td class="size30">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>36</td><td class="size36">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>48</td><td class="size48">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>60</td><td class="size60">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>72</td><td class="size72">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>90</td><td class="size90">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + </table> + + </div> + + </div> + + + + <div class="section" id="bodycomparison"> + + + <div id="xheight"> + <div class="fontbody">◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼body</div><div class="arialbody">body</div><div class="verdanabody">body</div><div class="georgiabody">body</div></div> + <div class="fontbody" style="z-index:1"> + body<span>Amble Bold</span> + </div> + <div class="arialbody" style="z-index:1"> + body<span>Arial</span> + </div> + <div class="verdanabody" style="z-index:1"> + body<span>Verdana</span> + </div> + <div class="georgiabody" style="z-index:1"> + body<span>Georgia</span> + </div> + + + + </div> + + + <div class="section psample psample_row1" id=""> + + <div class="grid2 firstcol"> + <p class="size10"><span>10.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid3"> + <p class="size11"><span>11.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid3"> + <p class="size12"><span>12.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid4"> + <p class="size13"><span>13.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="white_blend"></div> + + </div> + <div class="section psample psample_row2" id=""> + <div class="grid3 firstcol"> + <p class="size14"><span>14.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid4"> + <p class="size16"><span>16.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid5"> + <p class="size18"><span>18.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + + <div class="white_blend"></div> + + </div> + + <div class="section psample psample_row3" id=""> + <div class="grid5 firstcol"> + <p class="size20"><span>20.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + <div class="grid7"> + <p class="size24"><span>24.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + + <div class="white_blend"></div> + + </div> + + <div class="section psample psample_row4" id=""> + <div class="grid12 firstcol"> + <p class="size30"><span>30.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + <div class="white_blend"></div> + + </div> + + + + <div class="section psample psample_row1 fullreverse"> + <div class="grid2 firstcol"> + <p class="size10"><span>10.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid3"> + <p class="size11"><span>11.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid3"> + <p class="size12"><span>12.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid4"> + <p class="size13"><span>13.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="black_blend"></div> + + </div> + + <div class="section psample psample_row2 fullreverse"> + <div class="grid3 firstcol"> + <p class="size14"><span>14.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid4"> + <p class="size16"><span>16.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid5"> + <p class="size18"><span>18.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="black_blend"></div> + + </div> + + <div class="section psample fullreverse psample_row3" id=""> + <div class="grid5 firstcol"> + <p class="size20"><span>20.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + <div class="grid7"> + <p class="size24"><span>24.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + + <div class="black_blend"></div> + + </div> + + <div class="section psample fullreverse psample_row4" id="" style="border-bottom: 20px #000 solid;"> + <div class="grid12 firstcol"> + <p class="size30"><span>30.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + <div class="black_blend"></div> + + </div> + + + + + </div> + + <div id="layout"> + + <div class="section"> + + <div class="grid12 firstcol"> + <h1>Lorem Ipsum Dolor</h1> + <h2>Etiam porta sem malesuada magna mollis euismod</h2> + + <p class="byline">By <a href="#link">Aenean Lacinia</a></p> + </div> + </div> + <div class="section"> + <div class="grid8 firstcol"> + <p class="large">Donec sed odio dui. Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p> + + + <h3>Pellentesque ornare sem</h3> + + <p>Maecenas sed diam eget risus varius blandit sit amet non magna. Maecenas faucibus mollis interdum. Donec ullamcorper nulla non metus auctor fringilla. Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam id dolor id nibh ultricies vehicula ut id elit. </p> + + <p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. </p> + + <p>Nulla vitae elit libero, a pharetra augue. Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Aenean lacinia bibendum nulla sed consectetur. </p> + + <p>Nullam quis risus eget urna mollis ornare vel eu leo. Nullam quis risus eget urna mollis ornare vel eu leo. Maecenas sed diam eget risus varius blandit sit amet non magna. Donec ullamcorper nulla non metus auctor fringilla. </p> + + <h3>Cras mattis consectetur</h3> + + <p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Aenean lacinia bibendum nulla sed consectetur. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Cras mattis consectetur purus sit amet fermentum. </p> + + <p>Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam quis risus eget urna mollis ornare vel eu leo. Cras mattis consectetur purus sit amet fermentum.</p> + </div> + + <div class="grid4 sidebar"> + + <div class="box reverse"> + <p class="last">Nullam quis risus eget urna mollis ornare vel eu leo. Donec ullamcorper nulla non metus auctor fringilla. Cras mattis consectetur purus sit amet fermentum. Sed posuere consectetur est at lobortis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. </p> + </div> + + <p class="caption">Maecenas sed diam eget risus varius.</p> + + <p>Vestibulum id ligula porta felis euismod semper. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Vestibulum id ligula porta felis euismod semper. Sed posuere consectetur est at lobortis. Maecenas sed diam eget risus varius blandit sit amet non magna. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p> + + + + <p>Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Aenean lacinia bibendum nulla sed consectetur. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Aenean lacinia bibendum nulla sed consectetur. Nullam quis risus eget urna mollis ornare vel eu leo. </p> + + <p>Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Donec ullamcorper nulla non metus auctor fringilla. Maecenas faucibus mollis interdum. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p> + + </div> + </div> + + </div> + + + + + + + <div id="glyphs"> + <div class="section"> + <div class="grid12 firstcol"> + + <h1>Language Support</h1> + <p>The subset of Amble Bold in this kit supports the following languages:<br /> + + Albanian, Basque, Breton, Chamorro, Danish, Dutch, English, Faroese, Finnish, French, Frisian, Galician, German, Icelandic, Italian, Malagasy, Norwegian, Portuguese, Spanish, Alsatian, Aragonese, Arapaho, Arrernte, Asturian, Aymara, Bislama, Cebuano, Corsican, Fijian, French_creole, Genoese, Gilbertese, Greenlandic, Haitian_creole, Hiligaynon, Hmong, Hopi, Ibanag, Iloko_ilokano, Indonesian, Interglossa_glosa, Interlingua, Irish_gaelic, Jerriais, Lojban, Lombard, Luxembourgeois, Manx, Mohawk, Norfolk_pitcairnese, Occitan, Oromo, Pangasinan, Papiamento, Piedmontese, Potawatomi, Rhaeto-romance, Romansh, Rotokas, Sami_lule, Samoan, Sardinian, Scots_gaelic, Seychelles_creole, Shona, Sicilian, Somali, Southern_ndebele, Swahili, Swati_swazi, Tagalog_filipino_pilipino, Tetum, Tok_pisin, Uyghur_latinized, Volapuk, Walloon, Warlpiri, Xhosa, Yapese, Zulu, Latinbasic, Ubasic, Demo </p> + <h1>Glyph Chart</h1> + <p>The subset of Amble Bold in this kit includes all the glyphs listed below. Unicode entities are included above each glyph to help you insert individual characters into your layout.</p> + <div id="glyph_chart"> + + <div><p>&#13;</p> </div> + <div><p>&#32;</p> </div> + <div><p>&#33;</p>!</div> + <div><p>&#34;</p>"</div> + <div><p>&#35;</p>#</div> + <div><p>&#36;</p>$</div> + <div><p>&#37;</p>%</div> + <div><p>&#38;</p>&</div> + <div><p>&#39;</p>'</div> + <div><p>&#40;</p>(</div> + <div><p>&#41;</p>)</div> + <div><p>&#42;</p>*</div> + <div><p>&#43;</p>+</div> + <div><p>&#44;</p>,</div> + <div><p>&#45;</p>-</div> + <div><p>&#46;</p>.</div> + <div><p>&#47;</p>/</div> + <div><p>&#48;</p>0</div> + <div><p>&#49;</p>1</div> + <div><p>&#50;</p>2</div> + <div><p>&#51;</p>3</div> + <div><p>&#52;</p>4</div> + <div><p>&#53;</p>5</div> + <div><p>&#54;</p>6</div> + <div><p>&#55;</p>7</div> + <div><p>&#56;</p>8</div> + <div><p>&#57;</p>9</div> + <div><p>&#58;</p>:</div> + <div><p>&#59;</p>;</div> + <div><p>&#60;</p><</div> + <div><p>&#61;</p>=</div> + <div><p>&#62;</p>></div> + <div><p>&#63;</p>?</div> + <div><p>&#64;</p>@</div> + <div><p>&#65;</p>A</div> + <div><p>&#66;</p>B</div> + <div><p>&#67;</p>C</div> + <div><p>&#68;</p>D</div> + <div><p>&#69;</p>E</div> + <div><p>&#70;</p>F</div> + <div><p>&#71;</p>G</div> + <div><p>&#72;</p>H</div> + <div><p>&#73;</p>I</div> + <div><p>&#74;</p>J</div> + <div><p>&#75;</p>K</div> + <div><p>&#76;</p>L</div> + <div><p>&#77;</p>M</div> + <div><p>&#78;</p>N</div> + <div><p>&#79;</p>O</div> + <div><p>&#80;</p>P</div> + <div><p>&#81;</p>Q</div> + <div><p>&#82;</p>R</div> + <div><p>&#83;</p>S</div> + <div><p>&#84;</p>T</div> + <div><p>&#85;</p>U</div> + <div><p>&#86;</p>V</div> + <div><p>&#87;</p>W</div> + <div><p>&#88;</p>X</div> + <div><p>&#89;</p>Y</div> + <div><p>&#90;</p>Z</div> + <div><p>&#91;</p>[</div> + <div><p>&#92;</p>\</div> + <div><p>&#93;</p>]</div> + <div><p>&#94;</p>^</div> + <div><p>&#95;</p>_</div> + <div><p>&#96;</p>`</div> + <div><p>&#97;</p>a</div> + <div><p>&#98;</p>b</div> + <div><p>&#99;</p>c</div> + <div><p>&#100;</p>d</div> + <div><p>&#101;</p>e</div> + <div><p>&#102;</p>f</div> + <div><p>&#103;</p>g</div> + <div><p>&#104;</p>h</div> + <div><p>&#105;</p>i</div> + <div><p>&#106;</p>j</div> + <div><p>&#107;</p>k</div> + <div><p>&#108;</p>l</div> + <div><p>&#109;</p>m</div> + <div><p>&#110;</p>n</div> + <div><p>&#111;</p>o</div> + <div><p>&#112;</p>p</div> + <div><p>&#113;</p>q</div> + <div><p>&#114;</p>r</div> + <div><p>&#115;</p>s</div> + <div><p>&#116;</p>t</div> + <div><p>&#117;</p>u</div> + <div><p>&#118;</p>v</div> + <div><p>&#119;</p>w</div> + <div><p>&#120;</p>x</div> + <div><p>&#121;</p>y</div> + <div><p>&#122;</p>z</div> + <div><p>&#123;</p>{</div> + <div><p>&#124;</p>|</div> + <div><p>&#125;</p>}</div> + <div><p>&#126;</p>~</div> + <div><p>&#160;</p> </div> + <div><p>&#161;</p>¡</div> + <div><p>&#162;</p>¢</div> + <div><p>&#163;</p>£</div> + <div><p>&#164;</p>¤</div> + <div><p>&#165;</p>¥</div> + <div><p>&#166;</p>¦</div> + <div><p>&#167;</p>§</div> + <div><p>&#168;</p>¨</div> + <div><p>&#169;</p>©</div> + <div><p>&#170;</p>ª</div> + <div><p>&#171;</p>«</div> + <div><p>&#172;</p>¬</div> + <div><p>&#173;</p>­</div> + <div><p>&#174;</p>®</div> + <div><p>&#175;</p>¯</div> + <div><p>&#176;</p>°</div> + <div><p>&#177;</p>±</div> + <div><p>&#178;</p>²</div> + <div><p>&#179;</p>³</div> + <div><p>&#180;</p>´</div> + <div><p>&#181;</p>µ</div> + <div><p>&#182;</p>¶</div> + <div><p>&#183;</p>·</div> + <div><p>&#184;</p>¸</div> + <div><p>&#185;</p>¹</div> + <div><p>&#186;</p>º</div> + <div><p>&#187;</p>»</div> + <div><p>&#188;</p>¼</div> + <div><p>&#189;</p>½</div> + <div><p>&#190;</p>¾</div> + <div><p>&#191;</p>¿</div> + <div><p>&#192;</p>À</div> + <div><p>&#193;</p>Á</div> + <div><p>&#194;</p>Â</div> + <div><p>&#195;</p>Ã</div> + <div><p>&#196;</p>Ä</div> + <div><p>&#197;</p>Å</div> + <div><p>&#198;</p>Æ</div> + <div><p>&#199;</p>Ç</div> + <div><p>&#200;</p>È</div> + <div><p>&#201;</p>É</div> + <div><p>&#202;</p>Ê</div> + <div><p>&#203;</p>Ë</div> + <div><p>&#204;</p>Ì</div> + <div><p>&#205;</p>Í</div> + <div><p>&#206;</p>Î</div> + <div><p>&#207;</p>Ï</div> + <div><p>&#208;</p>Ð</div> + <div><p>&#209;</p>Ñ</div> + <div><p>&#210;</p>Ò</div> + <div><p>&#211;</p>Ó</div> + <div><p>&#212;</p>Ô</div> + <div><p>&#213;</p>Õ</div> + <div><p>&#214;</p>Ö</div> + <div><p>&#215;</p>×</div> + <div><p>&#216;</p>Ø</div> + <div><p>&#217;</p>Ù</div> + <div><p>&#218;</p>Ú</div> + <div><p>&#219;</p>Û</div> + <div><p>&#220;</p>Ü</div> + <div><p>&#221;</p>Ý</div> + <div><p>&#222;</p>Þ</div> + <div><p>&#223;</p>ß</div> + <div><p>&#224;</p>à</div> + <div><p>&#225;</p>á</div> + <div><p>&#226;</p>â</div> + <div><p>&#227;</p>ã</div> + <div><p>&#228;</p>ä</div> + <div><p>&#229;</p>å</div> + <div><p>&#230;</p>æ</div> + <div><p>&#231;</p>ç</div> + <div><p>&#232;</p>è</div> + <div><p>&#233;</p>é</div> + <div><p>&#234;</p>ê</div> + <div><p>&#235;</p>ë</div> + <div><p>&#236;</p>ì</div> + <div><p>&#237;</p>í</div> + <div><p>&#238;</p>î</div> + <div><p>&#239;</p>ï</div> + <div><p>&#240;</p>ð</div> + <div><p>&#241;</p>ñ</div> + <div><p>&#242;</p>ò</div> + <div><p>&#243;</p>ó</div> + <div><p>&#244;</p>ô</div> + <div><p>&#245;</p>õ</div> + <div><p>&#246;</p>ö</div> + <div><p>&#247;</p>÷</div> + <div><p>&#248;</p>ø</div> + <div><p>&#249;</p>ù</div> + <div><p>&#250;</p>ú</div> + <div><p>&#251;</p>û</div> + <div><p>&#252;</p>ü</div> + <div><p>&#253;</p>ý</div> + <div><p>&#254;</p>þ</div> + <div><p>&#255;</p>ÿ</div> + <div><p>&#338;</p>Œ</div> + <div><p>&#339;</p>œ</div> + <div><p>&#376;</p>Ÿ</div> + <div><p>&#710;</p>ˆ</div> + <div><p>&#732;</p>˜</div> + <div><p>&#8192;</p> </div> + <div><p>&#8193;</p> </div> + <div><p>&#8194;</p> </div> + <div><p>&#8195;</p> </div> + <div><p>&#8196;</p> </div> + <div><p>&#8197;</p> </div> + <div><p>&#8198;</p> </div> + <div><p>&#8199;</p> </div> + <div><p>&#8200;</p> </div> + <div><p>&#8201;</p> </div> + <div><p>&#8202;</p> </div> + <div><p>&#8208;</p>‐</div> + <div><p>&#8209;</p>‑</div> + <div><p>&#8210;</p>‒</div> + <div><p>&#8211;</p>–</div> + <div><p>&#8212;</p>—</div> + <div><p>&#8216;</p>‘</div> + <div><p>&#8217;</p>’</div> + <div><p>&#8218;</p>‚</div> + <div><p>&#8220;</p>“</div> + <div><p>&#8221;</p>”</div> + <div><p>&#8222;</p>„</div> + <div><p>&#8226;</p>•</div> + <div><p>&#8230;</p>…</div> + <div><p>&#8239;</p> </div> + <div><p>&#8249;</p>‹</div> + <div><p>&#8250;</p>›</div> + <div><p>&#8287;</p> </div> + <div><p>&#8364;</p>€</div> + <div><p>&#8482;</p>™</div> + <div><p>&#9724;</p>◼</div> + <div><p>&#64257;</p>fi</div> + <div><p>&#64258;</p>fl</div> + </div> + </div> + + + </div> + </div> + + + <div id="specs"> + + </div> + + <div id="installing"> + <div class="section"> + <div class="grid7 firstcol"> + <h1>Installing Webfonts</h1> + + <p>Webfonts are supported by all major browser platforms but not all in the same way. There are currently four different font formats that must be included in order to target all browsers. This includes TTF, WOFF, EOT and SVG.</p> + + <h2>1. Upload your webfonts</h2> + <p>You must upload your webfont kit to your website. They should be in or near the same directory as your CSS files.</p> + + <h2>2. Include the webfont stylesheet</h2> + <p>A special CSS @font-face declaration helps the various browsers select the appropriate font it needs without causing you a bunch of headaches. Learn more about this syntax by reading the <a href="https://www.fontspring.com/blog/further-hardening-of-the-bulletproof-syntax">Fontspring blog post</a> about it. The code for it is as follows:</p> + + +<code> +@font-face{ + font-family: 'MyWebFont'; + src: url('WebFont.eot'); + src: url('WebFont.eot?#iefix') format('embedded-opentype'), + url('WebFont.woff') format('woff'), + url('WebFont.ttf') format('truetype'), + url('WebFont.svg#webfont') format('svg'); +} +</code> + + <p>We've already gone ahead and generated the code for you. All you have to do is link to the stylesheet in your HTML, like this:</p> + <code><link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8" /></code> + + <h2>3. Modify your own stylesheet</h2> + <p>To take advantage of your new fonts, you must tell your stylesheet to use them. Look at the original @font-face declaration above and find the property called "font-family." The name linked there will be what you use to reference the font. Prepend that webfont name to the font stack in the "font-family" property, inside the selector you want to change. For example:</p> +<code>p { font-family: 'WebFont', Arial, sans-serif; }</code> + +<h2>4. Test</h2> +<p>Getting webfonts to work cross-browser <em>can</em> be tricky. Use the information in the sidebar to help you if you find that fonts aren't loading in a particular browser.</p> + </div> + + <div class="grid5 sidebar"> + <div class="box"> + <h2>Troubleshooting<br />Font-Face Problems</h2> + <p>Having trouble getting your webfonts to load in your new website? Here are some tips to sort out what might be the problem.</p> + + <h3>Fonts not showing in any browser</h3> + + <p>This sounds like you need to work on the plumbing. You either did not upload the fonts to the correct directory, or you did not link the fonts properly in the CSS. If you've confirmed that all this is correct and you still have a problem, take a look at your .htaccess file and see if requests are getting intercepted.</p> + + <h3>Fonts not loading in iPhone or iPad</h3> + + <p>The most common problem here is that you are serving the fonts from an IIS server. IIS refuses to serve files that have unknown MIME types. If that is the case, you must set the MIME type for SVG to "image/svg+xml" in the server settings. Follow these instructions from Microsoft if you need help.</p> + + <h3>Fonts not loading in Firefox</h3> + + <p>The primary reason for this failure? You are still using a version Firefox older than 3.5. So upgrade already! If that isn't it, then you are very likely serving fonts from a different domain. Firefox requires that all font assets be served from the same domain. Lastly it is possible that you need to add WOFF to your list of MIME types (if you are serving via IIS.)</p> + + <h3>Fonts not loading in IE</h3> + + <p>Are you looking at Internet Explorer on an actual Windows machine or are you cheating by using a service like Adobe BrowserLab? Many of these screenshot services do not render @font-face for IE. Best to test it on a real machine.</p> + + <h3>Fonts not loading in IE9</h3> + + <p>IE9, like Firefox, requires that fonts be served from the same domain as the website. Make sure that is the case.</p> + </div> + </div> + </div> + + </div> + + </div> + <div id="footer"> + <p>©2010-2017 Font Squirrel. All rights reserved.</p> + </div> +</div> +</body> +</html> diff --git a/test/samples/aurorae/fonts/amble/amble-bold-webfont.ttf b/test/samples/aurorae/fonts/amble/amble-bold-webfont.ttf new file mode 100755 index 0000000000000000000000000000000000000000..d5db569a5ff605f70e7ccf831cb8c02f54ea149f Binary files /dev/null and b/test/samples/aurorae/fonts/amble/amble-bold-webfont.ttf differ diff --git a/test/samples/aurorae/fonts/amble/amble-bold-webfont.woff b/test/samples/aurorae/fonts/amble/amble-bold-webfont.woff new file mode 100755 index 0000000000000000000000000000000000000000..f9b03e624b835c5d82acd90c6fb4347bdb4f5638 Binary files /dev/null and b/test/samples/aurorae/fonts/amble/amble-bold-webfont.woff differ diff --git a/test/samples/aurorae/fonts/amble/amble-bold-webfont.woff2 b/test/samples/aurorae/fonts/amble/amble-bold-webfont.woff2 new file mode 100755 index 0000000000000000000000000000000000000000..e16638e01431d1312ffae9e21859d1e5b193e7c7 Binary files /dev/null and b/test/samples/aurorae/fonts/amble/amble-bold-webfont.woff2 differ diff --git a/test/samples/aurorae/fonts/amble/amble-bolditalic-demo.html b/test/samples/aurorae/fonts/amble/amble-bolditalic-demo.html new file mode 100755 index 0000000000000000000000000000000000000000..6a2658652b5ccdc504f9f432f6ed0a5eef843fc6 --- /dev/null +++ b/test/samples/aurorae/fonts/amble/amble-bolditalic-demo.html @@ -0,0 +1,620 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> + +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> +<head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> + <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js" type="text/javascript" charset="utf-8"></script> + <script type="text/javascript"> + (function($){$.fn.easyTabs=function(option){var param=jQuery.extend({fadeSpeed:"fast",defaultContent:1,activeClass:'active'},option);$(this).each(function(){var thisId="#"+this.id;if(param.defaultContent==''){param.defaultContent=1;} + if(typeof param.defaultContent=="number") + {var defaultTab=$(thisId+" .tabs li:eq("+(param.defaultContent-1)+") a").attr('href').substr(1);}else{var defaultTab=param.defaultContent;} + $(thisId+" .tabs li a").each(function(){var tabToHide=$(this).attr('href').substr(1);$("#"+tabToHide).addClass('easytabs-tab-content');});hideAll();changeContent(defaultTab);function hideAll(){$(thisId+" .easytabs-tab-content").hide();} + function changeContent(tabId){hideAll();$(thisId+" .tabs li").removeClass(param.activeClass);$(thisId+" .tabs li a[href=#"+tabId+"]").closest('li').addClass(param.activeClass);if(param.fadeSpeed!="none") + {$(thisId+" #"+tabId).fadeIn(param.fadeSpeed);}else{$(thisId+" #"+tabId).show();}} + $(thisId+" .tabs li").click(function(){var tabId=$(this).find('a').attr('href').substr(1);changeContent(tabId);return false;});});}})(jQuery); + </script> + <link rel="stylesheet" href="specimen_files/specimen_stylesheet.css" type="text/css" charset="utf-8" /> + <link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8" /> + + <style type="text/css"> + body{ + font-family: 'amblebold_italic'; + } + </style> + + <title>Amble Bold Italic Specimen</title> + + + <script type="text/javascript" charset="utf-8"> + $(document).ready(function() { + $('#container').easyTabs({defaultContent:1}); + }); + </script> +</head> + +<body> +<div id="container"> + <div id="header"> + Amble Bold Italic </div> + <ul class="tabs"> + <li><a href="#specimen">Specimen</a></li> + <li><a href="#layout">Sample Layout</a></li> + <li><a href="#glyphs">Glyphs & Languages</a></li> + <li><a href="#installing">Installing Webfonts</a></li> + + </ul> + + <div id="main_content"> + + + <div id="specimen"> + + <div class="section"> + <div class="grid12 firstcol"> + <div class="huge">AaBb</div> + </div> + </div> + + <div class="section"> + <div class="glyph_range">A​B​C​D​E​F​G​H​I​J​K​L​M​N​O​P​Q​R​S​T​U​V​W​X​Y​Z​a​b​c​d​e​f​g​h​i​j​k​l​m​n​o​p​q​r​s​t​u​v​w​x​y​z​1​2​3​4​5​6​7​8​9​0​&​.​,​?​!​@​(​)​#​$​%​*​+​-​=​:​;</div> + </div> + <div class="section"> + <div class="grid12 firstcol"> + <table class="sample_table"> + <tr><td>10</td><td class="size10">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>11</td><td class="size11">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>12</td><td class="size12">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>13</td><td class="size13">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>14</td><td class="size14">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>16</td><td class="size16">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>18</td><td class="size18">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>20</td><td class="size20">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>24</td><td class="size24">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>30</td><td class="size30">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>36</td><td class="size36">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>48</td><td class="size48">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>60</td><td class="size60">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>72</td><td class="size72">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>90</td><td class="size90">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + </table> + + </div> + + </div> + + + + <div class="section" id="bodycomparison"> + + + <div id="xheight"> + <div class="fontbody">◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼body</div><div class="arialbody">body</div><div class="verdanabody">body</div><div class="georgiabody">body</div></div> + <div class="fontbody" style="z-index:1"> + body<span>Amble Bold Italic</span> + </div> + <div class="arialbody" style="z-index:1"> + body<span>Arial</span> + </div> + <div class="verdanabody" style="z-index:1"> + body<span>Verdana</span> + </div> + <div class="georgiabody" style="z-index:1"> + body<span>Georgia</span> + </div> + + + + </div> + + + <div class="section psample psample_row1" id=""> + + <div class="grid2 firstcol"> + <p class="size10"><span>10.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid3"> + <p class="size11"><span>11.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid3"> + <p class="size12"><span>12.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid4"> + <p class="size13"><span>13.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="white_blend"></div> + + </div> + <div class="section psample psample_row2" id=""> + <div class="grid3 firstcol"> + <p class="size14"><span>14.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid4"> + <p class="size16"><span>16.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid5"> + <p class="size18"><span>18.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + + <div class="white_blend"></div> + + </div> + + <div class="section psample psample_row3" id=""> + <div class="grid5 firstcol"> + <p class="size20"><span>20.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + <div class="grid7"> + <p class="size24"><span>24.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + + <div class="white_blend"></div> + + </div> + + <div class="section psample psample_row4" id=""> + <div class="grid12 firstcol"> + <p class="size30"><span>30.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + <div class="white_blend"></div> + + </div> + + + + <div class="section psample psample_row1 fullreverse"> + <div class="grid2 firstcol"> + <p class="size10"><span>10.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid3"> + <p class="size11"><span>11.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid3"> + <p class="size12"><span>12.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid4"> + <p class="size13"><span>13.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="black_blend"></div> + + </div> + + <div class="section psample psample_row2 fullreverse"> + <div class="grid3 firstcol"> + <p class="size14"><span>14.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid4"> + <p class="size16"><span>16.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid5"> + <p class="size18"><span>18.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="black_blend"></div> + + </div> + + <div class="section psample fullreverse psample_row3" id=""> + <div class="grid5 firstcol"> + <p class="size20"><span>20.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + <div class="grid7"> + <p class="size24"><span>24.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + + <div class="black_blend"></div> + + </div> + + <div class="section psample fullreverse psample_row4" id="" style="border-bottom: 20px #000 solid;"> + <div class="grid12 firstcol"> + <p class="size30"><span>30.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + <div class="black_blend"></div> + + </div> + + + + + </div> + + <div id="layout"> + + <div class="section"> + + <div class="grid12 firstcol"> + <h1>Lorem Ipsum Dolor</h1> + <h2>Etiam porta sem malesuada magna mollis euismod</h2> + + <p class="byline">By <a href="#link">Aenean Lacinia</a></p> + </div> + </div> + <div class="section"> + <div class="grid8 firstcol"> + <p class="large">Donec sed odio dui. Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p> + + + <h3>Pellentesque ornare sem</h3> + + <p>Maecenas sed diam eget risus varius blandit sit amet non magna. Maecenas faucibus mollis interdum. Donec ullamcorper nulla non metus auctor fringilla. Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam id dolor id nibh ultricies vehicula ut id elit. </p> + + <p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. </p> + + <p>Nulla vitae elit libero, a pharetra augue. Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Aenean lacinia bibendum nulla sed consectetur. </p> + + <p>Nullam quis risus eget urna mollis ornare vel eu leo. Nullam quis risus eget urna mollis ornare vel eu leo. Maecenas sed diam eget risus varius blandit sit amet non magna. Donec ullamcorper nulla non metus auctor fringilla. </p> + + <h3>Cras mattis consectetur</h3> + + <p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Aenean lacinia bibendum nulla sed consectetur. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Cras mattis consectetur purus sit amet fermentum. </p> + + <p>Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam quis risus eget urna mollis ornare vel eu leo. Cras mattis consectetur purus sit amet fermentum.</p> + </div> + + <div class="grid4 sidebar"> + + <div class="box reverse"> + <p class="last">Nullam quis risus eget urna mollis ornare vel eu leo. Donec ullamcorper nulla non metus auctor fringilla. Cras mattis consectetur purus sit amet fermentum. Sed posuere consectetur est at lobortis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. </p> + </div> + + <p class="caption">Maecenas sed diam eget risus varius.</p> + + <p>Vestibulum id ligula porta felis euismod semper. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Vestibulum id ligula porta felis euismod semper. Sed posuere consectetur est at lobortis. Maecenas sed diam eget risus varius blandit sit amet non magna. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p> + + + + <p>Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Aenean lacinia bibendum nulla sed consectetur. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Aenean lacinia bibendum nulla sed consectetur. Nullam quis risus eget urna mollis ornare vel eu leo. </p> + + <p>Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Donec ullamcorper nulla non metus auctor fringilla. Maecenas faucibus mollis interdum. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p> + + </div> + </div> + + </div> + + + + + + + <div id="glyphs"> + <div class="section"> + <div class="grid12 firstcol"> + + <h1>Language Support</h1> + <p>The subset of Amble Bold Italic in this kit supports the following languages:<br /> + + Albanian, Basque, Breton, Chamorro, Danish, Dutch, English, Faroese, Finnish, French, Frisian, Galician, German, Icelandic, Italian, Malagasy, Norwegian, Portuguese, Spanish, Alsatian, Aragonese, Arapaho, Arrernte, Asturian, Aymara, Bislama, Cebuano, Corsican, Fijian, French_creole, Genoese, Gilbertese, Greenlandic, Haitian_creole, Hiligaynon, Hmong, Hopi, Ibanag, Iloko_ilokano, Indonesian, Interglossa_glosa, Interlingua, Irish_gaelic, Jerriais, Lojban, Lombard, Luxembourgeois, Manx, Mohawk, Norfolk_pitcairnese, Occitan, Oromo, Pangasinan, Papiamento, Piedmontese, Potawatomi, Rhaeto-romance, Romansh, Rotokas, Sami_lule, Samoan, Sardinian, Scots_gaelic, Seychelles_creole, Shona, Sicilian, Somali, Southern_ndebele, Swahili, Swati_swazi, Tagalog_filipino_pilipino, Tetum, Tok_pisin, Uyghur_latinized, Volapuk, Walloon, Warlpiri, Xhosa, Yapese, Zulu, Latinbasic, Ubasic, Demo </p> + <h1>Glyph Chart</h1> + <p>The subset of Amble Bold Italic in this kit includes all the glyphs listed below. Unicode entities are included above each glyph to help you insert individual characters into your layout.</p> + <div id="glyph_chart"> + + <div><p>&#13;</p> </div> + <div><p>&#32;</p> </div> + <div><p>&#33;</p>!</div> + <div><p>&#34;</p>"</div> + <div><p>&#35;</p>#</div> + <div><p>&#36;</p>$</div> + <div><p>&#37;</p>%</div> + <div><p>&#38;</p>&</div> + <div><p>&#39;</p>'</div> + <div><p>&#40;</p>(</div> + <div><p>&#41;</p>)</div> + <div><p>&#42;</p>*</div> + <div><p>&#43;</p>+</div> + <div><p>&#44;</p>,</div> + <div><p>&#45;</p>-</div> + <div><p>&#46;</p>.</div> + <div><p>&#47;</p>/</div> + <div><p>&#48;</p>0</div> + <div><p>&#49;</p>1</div> + <div><p>&#50;</p>2</div> + <div><p>&#51;</p>3</div> + <div><p>&#52;</p>4</div> + <div><p>&#53;</p>5</div> + <div><p>&#54;</p>6</div> + <div><p>&#55;</p>7</div> + <div><p>&#56;</p>8</div> + <div><p>&#57;</p>9</div> + <div><p>&#58;</p>:</div> + <div><p>&#59;</p>;</div> + <div><p>&#60;</p><</div> + <div><p>&#61;</p>=</div> + <div><p>&#62;</p>></div> + <div><p>&#63;</p>?</div> + <div><p>&#64;</p>@</div> + <div><p>&#65;</p>A</div> + <div><p>&#66;</p>B</div> + <div><p>&#67;</p>C</div> + <div><p>&#68;</p>D</div> + <div><p>&#69;</p>E</div> + <div><p>&#70;</p>F</div> + <div><p>&#71;</p>G</div> + <div><p>&#72;</p>H</div> + <div><p>&#73;</p>I</div> + <div><p>&#74;</p>J</div> + <div><p>&#75;</p>K</div> + <div><p>&#76;</p>L</div> + <div><p>&#77;</p>M</div> + <div><p>&#78;</p>N</div> + <div><p>&#79;</p>O</div> + <div><p>&#80;</p>P</div> + <div><p>&#81;</p>Q</div> + <div><p>&#82;</p>R</div> + <div><p>&#83;</p>S</div> + <div><p>&#84;</p>T</div> + <div><p>&#85;</p>U</div> + <div><p>&#86;</p>V</div> + <div><p>&#87;</p>W</div> + <div><p>&#88;</p>X</div> + <div><p>&#89;</p>Y</div> + <div><p>&#90;</p>Z</div> + <div><p>&#91;</p>[</div> + <div><p>&#92;</p>\</div> + <div><p>&#93;</p>]</div> + <div><p>&#94;</p>^</div> + <div><p>&#95;</p>_</div> + <div><p>&#96;</p>`</div> + <div><p>&#97;</p>a</div> + <div><p>&#98;</p>b</div> + <div><p>&#99;</p>c</div> + <div><p>&#100;</p>d</div> + <div><p>&#101;</p>e</div> + <div><p>&#102;</p>f</div> + <div><p>&#103;</p>g</div> + <div><p>&#104;</p>h</div> + <div><p>&#105;</p>i</div> + <div><p>&#106;</p>j</div> + <div><p>&#107;</p>k</div> + <div><p>&#108;</p>l</div> + <div><p>&#109;</p>m</div> + <div><p>&#110;</p>n</div> + <div><p>&#111;</p>o</div> + <div><p>&#112;</p>p</div> + <div><p>&#113;</p>q</div> + <div><p>&#114;</p>r</div> + <div><p>&#115;</p>s</div> + <div><p>&#116;</p>t</div> + <div><p>&#117;</p>u</div> + <div><p>&#118;</p>v</div> + <div><p>&#119;</p>w</div> + <div><p>&#120;</p>x</div> + <div><p>&#121;</p>y</div> + <div><p>&#122;</p>z</div> + <div><p>&#123;</p>{</div> + <div><p>&#124;</p>|</div> + <div><p>&#125;</p>}</div> + <div><p>&#126;</p>~</div> + <div><p>&#160;</p> </div> + <div><p>&#161;</p>¡</div> + <div><p>&#162;</p>¢</div> + <div><p>&#163;</p>£</div> + <div><p>&#164;</p>¤</div> + <div><p>&#165;</p>¥</div> + <div><p>&#166;</p>¦</div> + <div><p>&#167;</p>§</div> + <div><p>&#168;</p>¨</div> + <div><p>&#169;</p>©</div> + <div><p>&#170;</p>ª</div> + <div><p>&#171;</p>«</div> + <div><p>&#172;</p>¬</div> + <div><p>&#173;</p>­</div> + <div><p>&#174;</p>®</div> + <div><p>&#175;</p>¯</div> + <div><p>&#176;</p>°</div> + <div><p>&#177;</p>±</div> + <div><p>&#178;</p>²</div> + <div><p>&#179;</p>³</div> + <div><p>&#180;</p>´</div> + <div><p>&#181;</p>µ</div> + <div><p>&#182;</p>¶</div> + <div><p>&#183;</p>·</div> + <div><p>&#184;</p>¸</div> + <div><p>&#185;</p>¹</div> + <div><p>&#186;</p>º</div> + <div><p>&#187;</p>»</div> + <div><p>&#188;</p>¼</div> + <div><p>&#189;</p>½</div> + <div><p>&#190;</p>¾</div> + <div><p>&#191;</p>¿</div> + <div><p>&#192;</p>À</div> + <div><p>&#193;</p>Á</div> + <div><p>&#194;</p>Â</div> + <div><p>&#195;</p>Ã</div> + <div><p>&#196;</p>Ä</div> + <div><p>&#197;</p>Å</div> + <div><p>&#198;</p>Æ</div> + <div><p>&#199;</p>Ç</div> + <div><p>&#200;</p>È</div> + <div><p>&#201;</p>É</div> + <div><p>&#202;</p>Ê</div> + <div><p>&#203;</p>Ë</div> + <div><p>&#204;</p>Ì</div> + <div><p>&#205;</p>Í</div> + <div><p>&#206;</p>Î</div> + <div><p>&#207;</p>Ï</div> + <div><p>&#208;</p>Ð</div> + <div><p>&#209;</p>Ñ</div> + <div><p>&#210;</p>Ò</div> + <div><p>&#211;</p>Ó</div> + <div><p>&#212;</p>Ô</div> + <div><p>&#213;</p>Õ</div> + <div><p>&#214;</p>Ö</div> + <div><p>&#215;</p>×</div> + <div><p>&#216;</p>Ø</div> + <div><p>&#217;</p>Ù</div> + <div><p>&#218;</p>Ú</div> + <div><p>&#219;</p>Û</div> + <div><p>&#220;</p>Ü</div> + <div><p>&#221;</p>Ý</div> + <div><p>&#222;</p>Þ</div> + <div><p>&#223;</p>ß</div> + <div><p>&#224;</p>à</div> + <div><p>&#225;</p>á</div> + <div><p>&#226;</p>â</div> + <div><p>&#227;</p>ã</div> + <div><p>&#228;</p>ä</div> + <div><p>&#229;</p>å</div> + <div><p>&#230;</p>æ</div> + <div><p>&#231;</p>ç</div> + <div><p>&#232;</p>è</div> + <div><p>&#233;</p>é</div> + <div><p>&#234;</p>ê</div> + <div><p>&#235;</p>ë</div> + <div><p>&#236;</p>ì</div> + <div><p>&#237;</p>í</div> + <div><p>&#238;</p>î</div> + <div><p>&#239;</p>ï</div> + <div><p>&#240;</p>ð</div> + <div><p>&#241;</p>ñ</div> + <div><p>&#242;</p>ò</div> + <div><p>&#243;</p>ó</div> + <div><p>&#244;</p>ô</div> + <div><p>&#245;</p>õ</div> + <div><p>&#246;</p>ö</div> + <div><p>&#247;</p>÷</div> + <div><p>&#248;</p>ø</div> + <div><p>&#249;</p>ù</div> + <div><p>&#250;</p>ú</div> + <div><p>&#251;</p>û</div> + <div><p>&#252;</p>ü</div> + <div><p>&#253;</p>ý</div> + <div><p>&#254;</p>þ</div> + <div><p>&#255;</p>ÿ</div> + <div><p>&#338;</p>Œ</div> + <div><p>&#339;</p>œ</div> + <div><p>&#376;</p>Ÿ</div> + <div><p>&#710;</p>ˆ</div> + <div><p>&#732;</p>˜</div> + <div><p>&#8192;</p> </div> + <div><p>&#8193;</p> </div> + <div><p>&#8194;</p> </div> + <div><p>&#8195;</p> </div> + <div><p>&#8196;</p> </div> + <div><p>&#8197;</p> </div> + <div><p>&#8198;</p> </div> + <div><p>&#8199;</p> </div> + <div><p>&#8200;</p> </div> + <div><p>&#8201;</p> </div> + <div><p>&#8202;</p> </div> + <div><p>&#8208;</p>‐</div> + <div><p>&#8209;</p>‑</div> + <div><p>&#8210;</p>‒</div> + <div><p>&#8211;</p>–</div> + <div><p>&#8212;</p>—</div> + <div><p>&#8216;</p>‘</div> + <div><p>&#8217;</p>’</div> + <div><p>&#8218;</p>‚</div> + <div><p>&#8220;</p>“</div> + <div><p>&#8221;</p>”</div> + <div><p>&#8222;</p>„</div> + <div><p>&#8226;</p>•</div> + <div><p>&#8230;</p>…</div> + <div><p>&#8239;</p> </div> + <div><p>&#8249;</p>‹</div> + <div><p>&#8250;</p>›</div> + <div><p>&#8287;</p> </div> + <div><p>&#8364;</p>€</div> + <div><p>&#8482;</p>™</div> + <div><p>&#9724;</p>◼</div> + <div><p>&#64257;</p>fi</div> + <div><p>&#64258;</p>fl</div> + </div> + </div> + + + </div> + </div> + + + <div id="specs"> + + </div> + + <div id="installing"> + <div class="section"> + <div class="grid7 firstcol"> + <h1>Installing Webfonts</h1> + + <p>Webfonts are supported by all major browser platforms but not all in the same way. There are currently four different font formats that must be included in order to target all browsers. This includes TTF, WOFF, EOT and SVG.</p> + + <h2>1. Upload your webfonts</h2> + <p>You must upload your webfont kit to your website. They should be in or near the same directory as your CSS files.</p> + + <h2>2. Include the webfont stylesheet</h2> + <p>A special CSS @font-face declaration helps the various browsers select the appropriate font it needs without causing you a bunch of headaches. Learn more about this syntax by reading the <a href="https://www.fontspring.com/blog/further-hardening-of-the-bulletproof-syntax">Fontspring blog post</a> about it. The code for it is as follows:</p> + + +<code> +@font-face{ + font-family: 'MyWebFont'; + src: url('WebFont.eot'); + src: url('WebFont.eot?#iefix') format('embedded-opentype'), + url('WebFont.woff') format('woff'), + url('WebFont.ttf') format('truetype'), + url('WebFont.svg#webfont') format('svg'); +} +</code> + + <p>We've already gone ahead and generated the code for you. All you have to do is link to the stylesheet in your HTML, like this:</p> + <code><link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8" /></code> + + <h2>3. Modify your own stylesheet</h2> + <p>To take advantage of your new fonts, you must tell your stylesheet to use them. Look at the original @font-face declaration above and find the property called "font-family." The name linked there will be what you use to reference the font. Prepend that webfont name to the font stack in the "font-family" property, inside the selector you want to change. For example:</p> +<code>p { font-family: 'WebFont', Arial, sans-serif; }</code> + +<h2>4. Test</h2> +<p>Getting webfonts to work cross-browser <em>can</em> be tricky. Use the information in the sidebar to help you if you find that fonts aren't loading in a particular browser.</p> + </div> + + <div class="grid5 sidebar"> + <div class="box"> + <h2>Troubleshooting<br />Font-Face Problems</h2> + <p>Having trouble getting your webfonts to load in your new website? Here are some tips to sort out what might be the problem.</p> + + <h3>Fonts not showing in any browser</h3> + + <p>This sounds like you need to work on the plumbing. You either did not upload the fonts to the correct directory, or you did not link the fonts properly in the CSS. If you've confirmed that all this is correct and you still have a problem, take a look at your .htaccess file and see if requests are getting intercepted.</p> + + <h3>Fonts not loading in iPhone or iPad</h3> + + <p>The most common problem here is that you are serving the fonts from an IIS server. IIS refuses to serve files that have unknown MIME types. If that is the case, you must set the MIME type for SVG to "image/svg+xml" in the server settings. Follow these instructions from Microsoft if you need help.</p> + + <h3>Fonts not loading in Firefox</h3> + + <p>The primary reason for this failure? You are still using a version Firefox older than 3.5. So upgrade already! If that isn't it, then you are very likely serving fonts from a different domain. Firefox requires that all font assets be served from the same domain. Lastly it is possible that you need to add WOFF to your list of MIME types (if you are serving via IIS.)</p> + + <h3>Fonts not loading in IE</h3> + + <p>Are you looking at Internet Explorer on an actual Windows machine or are you cheating by using a service like Adobe BrowserLab? Many of these screenshot services do not render @font-face for IE. Best to test it on a real machine.</p> + + <h3>Fonts not loading in IE9</h3> + + <p>IE9, like Firefox, requires that fonts be served from the same domain as the website. Make sure that is the case.</p> + </div> + </div> + </div> + + </div> + + </div> + <div id="footer"> + <p>©2010-2017 Font Squirrel. All rights reserved.</p> + </div> +</div> +</body> +</html> diff --git a/test/samples/aurorae/fonts/amble/amble-bolditalic-webfont.ttf b/test/samples/aurorae/fonts/amble/amble-bolditalic-webfont.ttf new file mode 100755 index 0000000000000000000000000000000000000000..08fb02037dc2275477208ba2633eaf4968c3c9d7 Binary files /dev/null and b/test/samples/aurorae/fonts/amble/amble-bolditalic-webfont.ttf differ diff --git a/test/samples/aurorae/fonts/amble/amble-bolditalic-webfont.woff b/test/samples/aurorae/fonts/amble/amble-bolditalic-webfont.woff new file mode 100755 index 0000000000000000000000000000000000000000..95dcec0ba637ad5ecce45a9269f6040e788b7634 Binary files /dev/null and b/test/samples/aurorae/fonts/amble/amble-bolditalic-webfont.woff differ diff --git a/test/samples/aurorae/fonts/amble/amble-bolditalic-webfont.woff2 b/test/samples/aurorae/fonts/amble/amble-bolditalic-webfont.woff2 new file mode 100755 index 0000000000000000000000000000000000000000..3dc7d53e6bb429f75c2b8ae453507f98ac451254 Binary files /dev/null and b/test/samples/aurorae/fonts/amble/amble-bolditalic-webfont.woff2 differ diff --git a/test/samples/aurorae/fonts/amble/amble-italic-demo.html b/test/samples/aurorae/fonts/amble/amble-italic-demo.html new file mode 100755 index 0000000000000000000000000000000000000000..ade25846bc8b3dfa103acd59fb9ed92095ecc52b --- /dev/null +++ b/test/samples/aurorae/fonts/amble/amble-italic-demo.html @@ -0,0 +1,620 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> + +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> +<head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> + <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js" type="text/javascript" charset="utf-8"></script> + <script type="text/javascript"> + (function($){$.fn.easyTabs=function(option){var param=jQuery.extend({fadeSpeed:"fast",defaultContent:1,activeClass:'active'},option);$(this).each(function(){var thisId="#"+this.id;if(param.defaultContent==''){param.defaultContent=1;} + if(typeof param.defaultContent=="number") + {var defaultTab=$(thisId+" .tabs li:eq("+(param.defaultContent-1)+") a").attr('href').substr(1);}else{var defaultTab=param.defaultContent;} + $(thisId+" .tabs li a").each(function(){var tabToHide=$(this).attr('href').substr(1);$("#"+tabToHide).addClass('easytabs-tab-content');});hideAll();changeContent(defaultTab);function hideAll(){$(thisId+" .easytabs-tab-content").hide();} + function changeContent(tabId){hideAll();$(thisId+" .tabs li").removeClass(param.activeClass);$(thisId+" .tabs li a[href=#"+tabId+"]").closest('li').addClass(param.activeClass);if(param.fadeSpeed!="none") + {$(thisId+" #"+tabId).fadeIn(param.fadeSpeed);}else{$(thisId+" #"+tabId).show();}} + $(thisId+" .tabs li").click(function(){var tabId=$(this).find('a').attr('href').substr(1);changeContent(tabId);return false;});});}})(jQuery); + </script> + <link rel="stylesheet" href="specimen_files/specimen_stylesheet.css" type="text/css" charset="utf-8" /> + <link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8" /> + + <style type="text/css"> + body{ + font-family: 'ambleitalic'; + } + </style> + + <title>Amble Italic Specimen</title> + + + <script type="text/javascript" charset="utf-8"> + $(document).ready(function() { + $('#container').easyTabs({defaultContent:1}); + }); + </script> +</head> + +<body> +<div id="container"> + <div id="header"> + Amble Italic </div> + <ul class="tabs"> + <li><a href="#specimen">Specimen</a></li> + <li><a href="#layout">Sample Layout</a></li> + <li><a href="#glyphs">Glyphs & Languages</a></li> + <li><a href="#installing">Installing Webfonts</a></li> + + </ul> + + <div id="main_content"> + + + <div id="specimen"> + + <div class="section"> + <div class="grid12 firstcol"> + <div class="huge">AaBb</div> + </div> + </div> + + <div class="section"> + <div class="glyph_range">A​B​C​D​E​F​G​H​I​J​K​L​M​N​O​P​Q​R​S​T​U​V​W​X​Y​Z​a​b​c​d​e​f​g​h​i​j​k​l​m​n​o​p​q​r​s​t​u​v​w​x​y​z​1​2​3​4​5​6​7​8​9​0​&​.​,​?​!​@​(​)​#​$​%​*​+​-​=​:​;</div> + </div> + <div class="section"> + <div class="grid12 firstcol"> + <table class="sample_table"> + <tr><td>10</td><td class="size10">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>11</td><td class="size11">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>12</td><td class="size12">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>13</td><td class="size13">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>14</td><td class="size14">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>16</td><td class="size16">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>18</td><td class="size18">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>20</td><td class="size20">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>24</td><td class="size24">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>30</td><td class="size30">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>36</td><td class="size36">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>48</td><td class="size48">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>60</td><td class="size60">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>72</td><td class="size72">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>90</td><td class="size90">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + </table> + + </div> + + </div> + + + + <div class="section" id="bodycomparison"> + + + <div id="xheight"> + <div class="fontbody">◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼body</div><div class="arialbody">body</div><div class="verdanabody">body</div><div class="georgiabody">body</div></div> + <div class="fontbody" style="z-index:1"> + body<span>Amble Italic</span> + </div> + <div class="arialbody" style="z-index:1"> + body<span>Arial</span> + </div> + <div class="verdanabody" style="z-index:1"> + body<span>Verdana</span> + </div> + <div class="georgiabody" style="z-index:1"> + body<span>Georgia</span> + </div> + + + + </div> + + + <div class="section psample psample_row1" id=""> + + <div class="grid2 firstcol"> + <p class="size10"><span>10.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid3"> + <p class="size11"><span>11.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid3"> + <p class="size12"><span>12.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid4"> + <p class="size13"><span>13.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="white_blend"></div> + + </div> + <div class="section psample psample_row2" id=""> + <div class="grid3 firstcol"> + <p class="size14"><span>14.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid4"> + <p class="size16"><span>16.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid5"> + <p class="size18"><span>18.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + + <div class="white_blend"></div> + + </div> + + <div class="section psample psample_row3" id=""> + <div class="grid5 firstcol"> + <p class="size20"><span>20.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + <div class="grid7"> + <p class="size24"><span>24.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + + <div class="white_blend"></div> + + </div> + + <div class="section psample psample_row4" id=""> + <div class="grid12 firstcol"> + <p class="size30"><span>30.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + <div class="white_blend"></div> + + </div> + + + + <div class="section psample psample_row1 fullreverse"> + <div class="grid2 firstcol"> + <p class="size10"><span>10.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid3"> + <p class="size11"><span>11.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid3"> + <p class="size12"><span>12.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid4"> + <p class="size13"><span>13.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="black_blend"></div> + + </div> + + <div class="section psample psample_row2 fullreverse"> + <div class="grid3 firstcol"> + <p class="size14"><span>14.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid4"> + <p class="size16"><span>16.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid5"> + <p class="size18"><span>18.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="black_blend"></div> + + </div> + + <div class="section psample fullreverse psample_row3" id=""> + <div class="grid5 firstcol"> + <p class="size20"><span>20.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + <div class="grid7"> + <p class="size24"><span>24.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + + <div class="black_blend"></div> + + </div> + + <div class="section psample fullreverse psample_row4" id="" style="border-bottom: 20px #000 solid;"> + <div class="grid12 firstcol"> + <p class="size30"><span>30.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + <div class="black_blend"></div> + + </div> + + + + + </div> + + <div id="layout"> + + <div class="section"> + + <div class="grid12 firstcol"> + <h1>Lorem Ipsum Dolor</h1> + <h2>Etiam porta sem malesuada magna mollis euismod</h2> + + <p class="byline">By <a href="#link">Aenean Lacinia</a></p> + </div> + </div> + <div class="section"> + <div class="grid8 firstcol"> + <p class="large">Donec sed odio dui. Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p> + + + <h3>Pellentesque ornare sem</h3> + + <p>Maecenas sed diam eget risus varius blandit sit amet non magna. Maecenas faucibus mollis interdum. Donec ullamcorper nulla non metus auctor fringilla. Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam id dolor id nibh ultricies vehicula ut id elit. </p> + + <p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. </p> + + <p>Nulla vitae elit libero, a pharetra augue. Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Aenean lacinia bibendum nulla sed consectetur. </p> + + <p>Nullam quis risus eget urna mollis ornare vel eu leo. Nullam quis risus eget urna mollis ornare vel eu leo. Maecenas sed diam eget risus varius blandit sit amet non magna. Donec ullamcorper nulla non metus auctor fringilla. </p> + + <h3>Cras mattis consectetur</h3> + + <p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Aenean lacinia bibendum nulla sed consectetur. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Cras mattis consectetur purus sit amet fermentum. </p> + + <p>Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam quis risus eget urna mollis ornare vel eu leo. Cras mattis consectetur purus sit amet fermentum.</p> + </div> + + <div class="grid4 sidebar"> + + <div class="box reverse"> + <p class="last">Nullam quis risus eget urna mollis ornare vel eu leo. Donec ullamcorper nulla non metus auctor fringilla. Cras mattis consectetur purus sit amet fermentum. Sed posuere consectetur est at lobortis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. </p> + </div> + + <p class="caption">Maecenas sed diam eget risus varius.</p> + + <p>Vestibulum id ligula porta felis euismod semper. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Vestibulum id ligula porta felis euismod semper. Sed posuere consectetur est at lobortis. Maecenas sed diam eget risus varius blandit sit amet non magna. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p> + + + + <p>Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Aenean lacinia bibendum nulla sed consectetur. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Aenean lacinia bibendum nulla sed consectetur. Nullam quis risus eget urna mollis ornare vel eu leo. </p> + + <p>Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Donec ullamcorper nulla non metus auctor fringilla. Maecenas faucibus mollis interdum. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p> + + </div> + </div> + + </div> + + + + + + + <div id="glyphs"> + <div class="section"> + <div class="grid12 firstcol"> + + <h1>Language Support</h1> + <p>The subset of Amble Italic in this kit supports the following languages:<br /> + + Albanian, Basque, Breton, Chamorro, Danish, Dutch, English, Faroese, Finnish, French, Frisian, Galician, German, Icelandic, Italian, Malagasy, Norwegian, Portuguese, Spanish, Alsatian, Aragonese, Arapaho, Arrernte, Asturian, Aymara, Bislama, Cebuano, Corsican, Fijian, French_creole, Genoese, Gilbertese, Greenlandic, Haitian_creole, Hiligaynon, Hmong, Hopi, Ibanag, Iloko_ilokano, Indonesian, Interglossa_glosa, Interlingua, Irish_gaelic, Jerriais, Lojban, Lombard, Luxembourgeois, Manx, Mohawk, Norfolk_pitcairnese, Occitan, Oromo, Pangasinan, Papiamento, Piedmontese, Potawatomi, Rhaeto-romance, Romansh, Rotokas, Sami_lule, Samoan, Sardinian, Scots_gaelic, Seychelles_creole, Shona, Sicilian, Somali, Southern_ndebele, Swahili, Swati_swazi, Tagalog_filipino_pilipino, Tetum, Tok_pisin, Uyghur_latinized, Volapuk, Walloon, Warlpiri, Xhosa, Yapese, Zulu, Latinbasic, Ubasic, Demo </p> + <h1>Glyph Chart</h1> + <p>The subset of Amble Italic in this kit includes all the glyphs listed below. Unicode entities are included above each glyph to help you insert individual characters into your layout.</p> + <div id="glyph_chart"> + + <div><p>&#13;</p> </div> + <div><p>&#32;</p> </div> + <div><p>&#33;</p>!</div> + <div><p>&#34;</p>"</div> + <div><p>&#35;</p>#</div> + <div><p>&#36;</p>$</div> + <div><p>&#37;</p>%</div> + <div><p>&#38;</p>&</div> + <div><p>&#39;</p>'</div> + <div><p>&#40;</p>(</div> + <div><p>&#41;</p>)</div> + <div><p>&#42;</p>*</div> + <div><p>&#43;</p>+</div> + <div><p>&#44;</p>,</div> + <div><p>&#45;</p>-</div> + <div><p>&#46;</p>.</div> + <div><p>&#47;</p>/</div> + <div><p>&#48;</p>0</div> + <div><p>&#49;</p>1</div> + <div><p>&#50;</p>2</div> + <div><p>&#51;</p>3</div> + <div><p>&#52;</p>4</div> + <div><p>&#53;</p>5</div> + <div><p>&#54;</p>6</div> + <div><p>&#55;</p>7</div> + <div><p>&#56;</p>8</div> + <div><p>&#57;</p>9</div> + <div><p>&#58;</p>:</div> + <div><p>&#59;</p>;</div> + <div><p>&#60;</p><</div> + <div><p>&#61;</p>=</div> + <div><p>&#62;</p>></div> + <div><p>&#63;</p>?</div> + <div><p>&#64;</p>@</div> + <div><p>&#65;</p>A</div> + <div><p>&#66;</p>B</div> + <div><p>&#67;</p>C</div> + <div><p>&#68;</p>D</div> + <div><p>&#69;</p>E</div> + <div><p>&#70;</p>F</div> + <div><p>&#71;</p>G</div> + <div><p>&#72;</p>H</div> + <div><p>&#73;</p>I</div> + <div><p>&#74;</p>J</div> + <div><p>&#75;</p>K</div> + <div><p>&#76;</p>L</div> + <div><p>&#77;</p>M</div> + <div><p>&#78;</p>N</div> + <div><p>&#79;</p>O</div> + <div><p>&#80;</p>P</div> + <div><p>&#81;</p>Q</div> + <div><p>&#82;</p>R</div> + <div><p>&#83;</p>S</div> + <div><p>&#84;</p>T</div> + <div><p>&#85;</p>U</div> + <div><p>&#86;</p>V</div> + <div><p>&#87;</p>W</div> + <div><p>&#88;</p>X</div> + <div><p>&#89;</p>Y</div> + <div><p>&#90;</p>Z</div> + <div><p>&#91;</p>[</div> + <div><p>&#92;</p>\</div> + <div><p>&#93;</p>]</div> + <div><p>&#94;</p>^</div> + <div><p>&#95;</p>_</div> + <div><p>&#96;</p>`</div> + <div><p>&#97;</p>a</div> + <div><p>&#98;</p>b</div> + <div><p>&#99;</p>c</div> + <div><p>&#100;</p>d</div> + <div><p>&#101;</p>e</div> + <div><p>&#102;</p>f</div> + <div><p>&#103;</p>g</div> + <div><p>&#104;</p>h</div> + <div><p>&#105;</p>i</div> + <div><p>&#106;</p>j</div> + <div><p>&#107;</p>k</div> + <div><p>&#108;</p>l</div> + <div><p>&#109;</p>m</div> + <div><p>&#110;</p>n</div> + <div><p>&#111;</p>o</div> + <div><p>&#112;</p>p</div> + <div><p>&#113;</p>q</div> + <div><p>&#114;</p>r</div> + <div><p>&#115;</p>s</div> + <div><p>&#116;</p>t</div> + <div><p>&#117;</p>u</div> + <div><p>&#118;</p>v</div> + <div><p>&#119;</p>w</div> + <div><p>&#120;</p>x</div> + <div><p>&#121;</p>y</div> + <div><p>&#122;</p>z</div> + <div><p>&#123;</p>{</div> + <div><p>&#124;</p>|</div> + <div><p>&#125;</p>}</div> + <div><p>&#126;</p>~</div> + <div><p>&#160;</p> </div> + <div><p>&#161;</p>¡</div> + <div><p>&#162;</p>¢</div> + <div><p>&#163;</p>£</div> + <div><p>&#164;</p>¤</div> + <div><p>&#165;</p>¥</div> + <div><p>&#166;</p>¦</div> + <div><p>&#167;</p>§</div> + <div><p>&#168;</p>¨</div> + <div><p>&#169;</p>©</div> + <div><p>&#170;</p>ª</div> + <div><p>&#171;</p>«</div> + <div><p>&#172;</p>¬</div> + <div><p>&#173;</p>­</div> + <div><p>&#174;</p>®</div> + <div><p>&#175;</p>¯</div> + <div><p>&#176;</p>°</div> + <div><p>&#177;</p>±</div> + <div><p>&#178;</p>²</div> + <div><p>&#179;</p>³</div> + <div><p>&#180;</p>´</div> + <div><p>&#181;</p>µ</div> + <div><p>&#182;</p>¶</div> + <div><p>&#183;</p>·</div> + <div><p>&#184;</p>¸</div> + <div><p>&#185;</p>¹</div> + <div><p>&#186;</p>º</div> + <div><p>&#187;</p>»</div> + <div><p>&#188;</p>¼</div> + <div><p>&#189;</p>½</div> + <div><p>&#190;</p>¾</div> + <div><p>&#191;</p>¿</div> + <div><p>&#192;</p>À</div> + <div><p>&#193;</p>Á</div> + <div><p>&#194;</p>Â</div> + <div><p>&#195;</p>Ã</div> + <div><p>&#196;</p>Ä</div> + <div><p>&#197;</p>Å</div> + <div><p>&#198;</p>Æ</div> + <div><p>&#199;</p>Ç</div> + <div><p>&#200;</p>È</div> + <div><p>&#201;</p>É</div> + <div><p>&#202;</p>Ê</div> + <div><p>&#203;</p>Ë</div> + <div><p>&#204;</p>Ì</div> + <div><p>&#205;</p>Í</div> + <div><p>&#206;</p>Î</div> + <div><p>&#207;</p>Ï</div> + <div><p>&#208;</p>Ð</div> + <div><p>&#209;</p>Ñ</div> + <div><p>&#210;</p>Ò</div> + <div><p>&#211;</p>Ó</div> + <div><p>&#212;</p>Ô</div> + <div><p>&#213;</p>Õ</div> + <div><p>&#214;</p>Ö</div> + <div><p>&#215;</p>×</div> + <div><p>&#216;</p>Ø</div> + <div><p>&#217;</p>Ù</div> + <div><p>&#218;</p>Ú</div> + <div><p>&#219;</p>Û</div> + <div><p>&#220;</p>Ü</div> + <div><p>&#221;</p>Ý</div> + <div><p>&#222;</p>Þ</div> + <div><p>&#223;</p>ß</div> + <div><p>&#224;</p>à</div> + <div><p>&#225;</p>á</div> + <div><p>&#226;</p>â</div> + <div><p>&#227;</p>ã</div> + <div><p>&#228;</p>ä</div> + <div><p>&#229;</p>å</div> + <div><p>&#230;</p>æ</div> + <div><p>&#231;</p>ç</div> + <div><p>&#232;</p>è</div> + <div><p>&#233;</p>é</div> + <div><p>&#234;</p>ê</div> + <div><p>&#235;</p>ë</div> + <div><p>&#236;</p>ì</div> + <div><p>&#237;</p>í</div> + <div><p>&#238;</p>î</div> + <div><p>&#239;</p>ï</div> + <div><p>&#240;</p>ð</div> + <div><p>&#241;</p>ñ</div> + <div><p>&#242;</p>ò</div> + <div><p>&#243;</p>ó</div> + <div><p>&#244;</p>ô</div> + <div><p>&#245;</p>õ</div> + <div><p>&#246;</p>ö</div> + <div><p>&#247;</p>÷</div> + <div><p>&#248;</p>ø</div> + <div><p>&#249;</p>ù</div> + <div><p>&#250;</p>ú</div> + <div><p>&#251;</p>û</div> + <div><p>&#252;</p>ü</div> + <div><p>&#253;</p>ý</div> + <div><p>&#254;</p>þ</div> + <div><p>&#255;</p>ÿ</div> + <div><p>&#338;</p>Œ</div> + <div><p>&#339;</p>œ</div> + <div><p>&#376;</p>Ÿ</div> + <div><p>&#710;</p>ˆ</div> + <div><p>&#732;</p>˜</div> + <div><p>&#8192;</p> </div> + <div><p>&#8193;</p> </div> + <div><p>&#8194;</p> </div> + <div><p>&#8195;</p> </div> + <div><p>&#8196;</p> </div> + <div><p>&#8197;</p> </div> + <div><p>&#8198;</p> </div> + <div><p>&#8199;</p> </div> + <div><p>&#8200;</p> </div> + <div><p>&#8201;</p> </div> + <div><p>&#8202;</p> </div> + <div><p>&#8208;</p>‐</div> + <div><p>&#8209;</p>‑</div> + <div><p>&#8210;</p>‒</div> + <div><p>&#8211;</p>–</div> + <div><p>&#8212;</p>—</div> + <div><p>&#8216;</p>‘</div> + <div><p>&#8217;</p>’</div> + <div><p>&#8218;</p>‚</div> + <div><p>&#8220;</p>“</div> + <div><p>&#8221;</p>”</div> + <div><p>&#8222;</p>„</div> + <div><p>&#8226;</p>•</div> + <div><p>&#8230;</p>…</div> + <div><p>&#8239;</p> </div> + <div><p>&#8249;</p>‹</div> + <div><p>&#8250;</p>›</div> + <div><p>&#8287;</p> </div> + <div><p>&#8364;</p>€</div> + <div><p>&#8482;</p>™</div> + <div><p>&#9724;</p>◼</div> + <div><p>&#64257;</p>fi</div> + <div><p>&#64258;</p>fl</div> + </div> + </div> + + + </div> + </div> + + + <div id="specs"> + + </div> + + <div id="installing"> + <div class="section"> + <div class="grid7 firstcol"> + <h1>Installing Webfonts</h1> + + <p>Webfonts are supported by all major browser platforms but not all in the same way. There are currently four different font formats that must be included in order to target all browsers. This includes TTF, WOFF, EOT and SVG.</p> + + <h2>1. Upload your webfonts</h2> + <p>You must upload your webfont kit to your website. They should be in or near the same directory as your CSS files.</p> + + <h2>2. Include the webfont stylesheet</h2> + <p>A special CSS @font-face declaration helps the various browsers select the appropriate font it needs without causing you a bunch of headaches. Learn more about this syntax by reading the <a href="https://www.fontspring.com/blog/further-hardening-of-the-bulletproof-syntax">Fontspring blog post</a> about it. The code for it is as follows:</p> + + +<code> +@font-face{ + font-family: 'MyWebFont'; + src: url('WebFont.eot'); + src: url('WebFont.eot?#iefix') format('embedded-opentype'), + url('WebFont.woff') format('woff'), + url('WebFont.ttf') format('truetype'), + url('WebFont.svg#webfont') format('svg'); +} +</code> + + <p>We've already gone ahead and generated the code for you. All you have to do is link to the stylesheet in your HTML, like this:</p> + <code><link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8" /></code> + + <h2>3. Modify your own stylesheet</h2> + <p>To take advantage of your new fonts, you must tell your stylesheet to use them. Look at the original @font-face declaration above and find the property called "font-family." The name linked there will be what you use to reference the font. Prepend that webfont name to the font stack in the "font-family" property, inside the selector you want to change. For example:</p> +<code>p { font-family: 'WebFont', Arial, sans-serif; }</code> + +<h2>4. Test</h2> +<p>Getting webfonts to work cross-browser <em>can</em> be tricky. Use the information in the sidebar to help you if you find that fonts aren't loading in a particular browser.</p> + </div> + + <div class="grid5 sidebar"> + <div class="box"> + <h2>Troubleshooting<br />Font-Face Problems</h2> + <p>Having trouble getting your webfonts to load in your new website? Here are some tips to sort out what might be the problem.</p> + + <h3>Fonts not showing in any browser</h3> + + <p>This sounds like you need to work on the plumbing. You either did not upload the fonts to the correct directory, or you did not link the fonts properly in the CSS. If you've confirmed that all this is correct and you still have a problem, take a look at your .htaccess file and see if requests are getting intercepted.</p> + + <h3>Fonts not loading in iPhone or iPad</h3> + + <p>The most common problem here is that you are serving the fonts from an IIS server. IIS refuses to serve files that have unknown MIME types. If that is the case, you must set the MIME type for SVG to "image/svg+xml" in the server settings. Follow these instructions from Microsoft if you need help.</p> + + <h3>Fonts not loading in Firefox</h3> + + <p>The primary reason for this failure? You are still using a version Firefox older than 3.5. So upgrade already! If that isn't it, then you are very likely serving fonts from a different domain. Firefox requires that all font assets be served from the same domain. Lastly it is possible that you need to add WOFF to your list of MIME types (if you are serving via IIS.)</p> + + <h3>Fonts not loading in IE</h3> + + <p>Are you looking at Internet Explorer on an actual Windows machine or are you cheating by using a service like Adobe BrowserLab? Many of these screenshot services do not render @font-face for IE. Best to test it on a real machine.</p> + + <h3>Fonts not loading in IE9</h3> + + <p>IE9, like Firefox, requires that fonts be served from the same domain as the website. Make sure that is the case.</p> + </div> + </div> + </div> + + </div> + + </div> + <div id="footer"> + <p>©2010-2017 Font Squirrel. All rights reserved.</p> + </div> +</div> +</body> +</html> diff --git a/test/samples/aurorae/fonts/amble/amble-italic-webfont.ttf b/test/samples/aurorae/fonts/amble/amble-italic-webfont.ttf new file mode 100755 index 0000000000000000000000000000000000000000..b495c71c9501ad9a73231fcbfa35110b7af6ac8e Binary files /dev/null and b/test/samples/aurorae/fonts/amble/amble-italic-webfont.ttf differ diff --git a/test/samples/aurorae/fonts/amble/amble-italic-webfont.woff b/test/samples/aurorae/fonts/amble/amble-italic-webfont.woff new file mode 100755 index 0000000000000000000000000000000000000000..c7785074996ef33393280cd089e8e96fa8186e73 Binary files /dev/null and b/test/samples/aurorae/fonts/amble/amble-italic-webfont.woff differ diff --git a/test/samples/aurorae/fonts/amble/amble-italic-webfont.woff2 b/test/samples/aurorae/fonts/amble/amble-italic-webfont.woff2 new file mode 100755 index 0000000000000000000000000000000000000000..5a084d7771ce67b86d2430e1ab0e092235fcf0fe Binary files /dev/null and b/test/samples/aurorae/fonts/amble/amble-italic-webfont.woff2 differ diff --git a/test/samples/aurorae/fonts/amble/amble-light-demo.html b/test/samples/aurorae/fonts/amble/amble-light-demo.html new file mode 100755 index 0000000000000000000000000000000000000000..9c7510833a99bf259ac889091383c31e5f131cd2 --- /dev/null +++ b/test/samples/aurorae/fonts/amble/amble-light-demo.html @@ -0,0 +1,620 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> + +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> +<head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> + <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js" type="text/javascript" charset="utf-8"></script> + <script type="text/javascript"> + (function($){$.fn.easyTabs=function(option){var param=jQuery.extend({fadeSpeed:"fast",defaultContent:1,activeClass:'active'},option);$(this).each(function(){var thisId="#"+this.id;if(param.defaultContent==''){param.defaultContent=1;} + if(typeof param.defaultContent=="number") + {var defaultTab=$(thisId+" .tabs li:eq("+(param.defaultContent-1)+") a").attr('href').substr(1);}else{var defaultTab=param.defaultContent;} + $(thisId+" .tabs li a").each(function(){var tabToHide=$(this).attr('href').substr(1);$("#"+tabToHide).addClass('easytabs-tab-content');});hideAll();changeContent(defaultTab);function hideAll(){$(thisId+" .easytabs-tab-content").hide();} + function changeContent(tabId){hideAll();$(thisId+" .tabs li").removeClass(param.activeClass);$(thisId+" .tabs li a[href=#"+tabId+"]").closest('li').addClass(param.activeClass);if(param.fadeSpeed!="none") + {$(thisId+" #"+tabId).fadeIn(param.fadeSpeed);}else{$(thisId+" #"+tabId).show();}} + $(thisId+" .tabs li").click(function(){var tabId=$(this).find('a').attr('href').substr(1);changeContent(tabId);return false;});});}})(jQuery); + </script> + <link rel="stylesheet" href="specimen_files/specimen_stylesheet.css" type="text/css" charset="utf-8" /> + <link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8" /> + + <style type="text/css"> + body{ + font-family: 'amblelight'; + } + </style> + + <title>Amble Light Specimen</title> + + + <script type="text/javascript" charset="utf-8"> + $(document).ready(function() { + $('#container').easyTabs({defaultContent:1}); + }); + </script> +</head> + +<body> +<div id="container"> + <div id="header"> + Amble Light </div> + <ul class="tabs"> + <li><a href="#specimen">Specimen</a></li> + <li><a href="#layout">Sample Layout</a></li> + <li><a href="#glyphs">Glyphs & Languages</a></li> + <li><a href="#installing">Installing Webfonts</a></li> + + </ul> + + <div id="main_content"> + + + <div id="specimen"> + + <div class="section"> + <div class="grid12 firstcol"> + <div class="huge">AaBb</div> + </div> + </div> + + <div class="section"> + <div class="glyph_range">A​B​C​D​E​F​G​H​I​J​K​L​M​N​O​P​Q​R​S​T​U​V​W​X​Y​Z​a​b​c​d​e​f​g​h​i​j​k​l​m​n​o​p​q​r​s​t​u​v​w​x​y​z​1​2​3​4​5​6​7​8​9​0​&​.​,​?​!​@​(​)​#​$​%​*​+​-​=​:​;</div> + </div> + <div class="section"> + <div class="grid12 firstcol"> + <table class="sample_table"> + <tr><td>10</td><td class="size10">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>11</td><td class="size11">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>12</td><td class="size12">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>13</td><td class="size13">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>14</td><td class="size14">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>16</td><td class="size16">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>18</td><td class="size18">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>20</td><td class="size20">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>24</td><td class="size24">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>30</td><td class="size30">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>36</td><td class="size36">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>48</td><td class="size48">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>60</td><td class="size60">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>72</td><td class="size72">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>90</td><td class="size90">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + </table> + + </div> + + </div> + + + + <div class="section" id="bodycomparison"> + + + <div id="xheight"> + <div class="fontbody">◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼body</div><div class="arialbody">body</div><div class="verdanabody">body</div><div class="georgiabody">body</div></div> + <div class="fontbody" style="z-index:1"> + body<span>Amble Light</span> + </div> + <div class="arialbody" style="z-index:1"> + body<span>Arial</span> + </div> + <div class="verdanabody" style="z-index:1"> + body<span>Verdana</span> + </div> + <div class="georgiabody" style="z-index:1"> + body<span>Georgia</span> + </div> + + + + </div> + + + <div class="section psample psample_row1" id=""> + + <div class="grid2 firstcol"> + <p class="size10"><span>10.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid3"> + <p class="size11"><span>11.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid3"> + <p class="size12"><span>12.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid4"> + <p class="size13"><span>13.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="white_blend"></div> + + </div> + <div class="section psample psample_row2" id=""> + <div class="grid3 firstcol"> + <p class="size14"><span>14.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid4"> + <p class="size16"><span>16.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid5"> + <p class="size18"><span>18.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + + <div class="white_blend"></div> + + </div> + + <div class="section psample psample_row3" id=""> + <div class="grid5 firstcol"> + <p class="size20"><span>20.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + <div class="grid7"> + <p class="size24"><span>24.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + + <div class="white_blend"></div> + + </div> + + <div class="section psample psample_row4" id=""> + <div class="grid12 firstcol"> + <p class="size30"><span>30.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + <div class="white_blend"></div> + + </div> + + + + <div class="section psample psample_row1 fullreverse"> + <div class="grid2 firstcol"> + <p class="size10"><span>10.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid3"> + <p class="size11"><span>11.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid3"> + <p class="size12"><span>12.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid4"> + <p class="size13"><span>13.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="black_blend"></div> + + </div> + + <div class="section psample psample_row2 fullreverse"> + <div class="grid3 firstcol"> + <p class="size14"><span>14.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid4"> + <p class="size16"><span>16.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid5"> + <p class="size18"><span>18.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="black_blend"></div> + + </div> + + <div class="section psample fullreverse psample_row3" id=""> + <div class="grid5 firstcol"> + <p class="size20"><span>20.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + <div class="grid7"> + <p class="size24"><span>24.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + + <div class="black_blend"></div> + + </div> + + <div class="section psample fullreverse psample_row4" id="" style="border-bottom: 20px #000 solid;"> + <div class="grid12 firstcol"> + <p class="size30"><span>30.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + <div class="black_blend"></div> + + </div> + + + + + </div> + + <div id="layout"> + + <div class="section"> + + <div class="grid12 firstcol"> + <h1>Lorem Ipsum Dolor</h1> + <h2>Etiam porta sem malesuada magna mollis euismod</h2> + + <p class="byline">By <a href="#link">Aenean Lacinia</a></p> + </div> + </div> + <div class="section"> + <div class="grid8 firstcol"> + <p class="large">Donec sed odio dui. Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p> + + + <h3>Pellentesque ornare sem</h3> + + <p>Maecenas sed diam eget risus varius blandit sit amet non magna. Maecenas faucibus mollis interdum. Donec ullamcorper nulla non metus auctor fringilla. Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam id dolor id nibh ultricies vehicula ut id elit. </p> + + <p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. </p> + + <p>Nulla vitae elit libero, a pharetra augue. Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Aenean lacinia bibendum nulla sed consectetur. </p> + + <p>Nullam quis risus eget urna mollis ornare vel eu leo. Nullam quis risus eget urna mollis ornare vel eu leo. Maecenas sed diam eget risus varius blandit sit amet non magna. Donec ullamcorper nulla non metus auctor fringilla. </p> + + <h3>Cras mattis consectetur</h3> + + <p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Aenean lacinia bibendum nulla sed consectetur. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Cras mattis consectetur purus sit amet fermentum. </p> + + <p>Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam quis risus eget urna mollis ornare vel eu leo. Cras mattis consectetur purus sit amet fermentum.</p> + </div> + + <div class="grid4 sidebar"> + + <div class="box reverse"> + <p class="last">Nullam quis risus eget urna mollis ornare vel eu leo. Donec ullamcorper nulla non metus auctor fringilla. Cras mattis consectetur purus sit amet fermentum. Sed posuere consectetur est at lobortis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. </p> + </div> + + <p class="caption">Maecenas sed diam eget risus varius.</p> + + <p>Vestibulum id ligula porta felis euismod semper. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Vestibulum id ligula porta felis euismod semper. Sed posuere consectetur est at lobortis. Maecenas sed diam eget risus varius blandit sit amet non magna. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p> + + + + <p>Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Aenean lacinia bibendum nulla sed consectetur. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Aenean lacinia bibendum nulla sed consectetur. Nullam quis risus eget urna mollis ornare vel eu leo. </p> + + <p>Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Donec ullamcorper nulla non metus auctor fringilla. Maecenas faucibus mollis interdum. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p> + + </div> + </div> + + </div> + + + + + + + <div id="glyphs"> + <div class="section"> + <div class="grid12 firstcol"> + + <h1>Language Support</h1> + <p>The subset of Amble Light in this kit supports the following languages:<br /> + + Albanian, Basque, Breton, Chamorro, Danish, Dutch, English, Faroese, Finnish, French, Frisian, Galician, German, Icelandic, Italian, Malagasy, Norwegian, Portuguese, Spanish, Alsatian, Aragonese, Arapaho, Arrernte, Asturian, Aymara, Bislama, Cebuano, Corsican, Fijian, French_creole, Genoese, Gilbertese, Greenlandic, Haitian_creole, Hiligaynon, Hmong, Hopi, Ibanag, Iloko_ilokano, Indonesian, Interglossa_glosa, Interlingua, Irish_gaelic, Jerriais, Lojban, Lombard, Luxembourgeois, Manx, Mohawk, Norfolk_pitcairnese, Occitan, Oromo, Pangasinan, Papiamento, Piedmontese, Potawatomi, Rhaeto-romance, Romansh, Rotokas, Sami_lule, Samoan, Sardinian, Scots_gaelic, Seychelles_creole, Shona, Sicilian, Somali, Southern_ndebele, Swahili, Swati_swazi, Tagalog_filipino_pilipino, Tetum, Tok_pisin, Uyghur_latinized, Volapuk, Walloon, Warlpiri, Xhosa, Yapese, Zulu, Latinbasic, Ubasic, Demo </p> + <h1>Glyph Chart</h1> + <p>The subset of Amble Light in this kit includes all the glyphs listed below. Unicode entities are included above each glyph to help you insert individual characters into your layout.</p> + <div id="glyph_chart"> + + <div><p>&#13;</p> </div> + <div><p>&#32;</p> </div> + <div><p>&#33;</p>!</div> + <div><p>&#34;</p>"</div> + <div><p>&#35;</p>#</div> + <div><p>&#36;</p>$</div> + <div><p>&#37;</p>%</div> + <div><p>&#38;</p>&</div> + <div><p>&#39;</p>'</div> + <div><p>&#40;</p>(</div> + <div><p>&#41;</p>)</div> + <div><p>&#42;</p>*</div> + <div><p>&#43;</p>+</div> + <div><p>&#44;</p>,</div> + <div><p>&#45;</p>-</div> + <div><p>&#46;</p>.</div> + <div><p>&#47;</p>/</div> + <div><p>&#48;</p>0</div> + <div><p>&#49;</p>1</div> + <div><p>&#50;</p>2</div> + <div><p>&#51;</p>3</div> + <div><p>&#52;</p>4</div> + <div><p>&#53;</p>5</div> + <div><p>&#54;</p>6</div> + <div><p>&#55;</p>7</div> + <div><p>&#56;</p>8</div> + <div><p>&#57;</p>9</div> + <div><p>&#58;</p>:</div> + <div><p>&#59;</p>;</div> + <div><p>&#60;</p><</div> + <div><p>&#61;</p>=</div> + <div><p>&#62;</p>></div> + <div><p>&#63;</p>?</div> + <div><p>&#64;</p>@</div> + <div><p>&#65;</p>A</div> + <div><p>&#66;</p>B</div> + <div><p>&#67;</p>C</div> + <div><p>&#68;</p>D</div> + <div><p>&#69;</p>E</div> + <div><p>&#70;</p>F</div> + <div><p>&#71;</p>G</div> + <div><p>&#72;</p>H</div> + <div><p>&#73;</p>I</div> + <div><p>&#74;</p>J</div> + <div><p>&#75;</p>K</div> + <div><p>&#76;</p>L</div> + <div><p>&#77;</p>M</div> + <div><p>&#78;</p>N</div> + <div><p>&#79;</p>O</div> + <div><p>&#80;</p>P</div> + <div><p>&#81;</p>Q</div> + <div><p>&#82;</p>R</div> + <div><p>&#83;</p>S</div> + <div><p>&#84;</p>T</div> + <div><p>&#85;</p>U</div> + <div><p>&#86;</p>V</div> + <div><p>&#87;</p>W</div> + <div><p>&#88;</p>X</div> + <div><p>&#89;</p>Y</div> + <div><p>&#90;</p>Z</div> + <div><p>&#91;</p>[</div> + <div><p>&#92;</p>\</div> + <div><p>&#93;</p>]</div> + <div><p>&#94;</p>^</div> + <div><p>&#95;</p>_</div> + <div><p>&#96;</p>`</div> + <div><p>&#97;</p>a</div> + <div><p>&#98;</p>b</div> + <div><p>&#99;</p>c</div> + <div><p>&#100;</p>d</div> + <div><p>&#101;</p>e</div> + <div><p>&#102;</p>f</div> + <div><p>&#103;</p>g</div> + <div><p>&#104;</p>h</div> + <div><p>&#105;</p>i</div> + <div><p>&#106;</p>j</div> + <div><p>&#107;</p>k</div> + <div><p>&#108;</p>l</div> + <div><p>&#109;</p>m</div> + <div><p>&#110;</p>n</div> + <div><p>&#111;</p>o</div> + <div><p>&#112;</p>p</div> + <div><p>&#113;</p>q</div> + <div><p>&#114;</p>r</div> + <div><p>&#115;</p>s</div> + <div><p>&#116;</p>t</div> + <div><p>&#117;</p>u</div> + <div><p>&#118;</p>v</div> + <div><p>&#119;</p>w</div> + <div><p>&#120;</p>x</div> + <div><p>&#121;</p>y</div> + <div><p>&#122;</p>z</div> + <div><p>&#123;</p>{</div> + <div><p>&#124;</p>|</div> + <div><p>&#125;</p>}</div> + <div><p>&#126;</p>~</div> + <div><p>&#160;</p> </div> + <div><p>&#161;</p>¡</div> + <div><p>&#162;</p>¢</div> + <div><p>&#163;</p>£</div> + <div><p>&#164;</p>¤</div> + <div><p>&#165;</p>¥</div> + <div><p>&#166;</p>¦</div> + <div><p>&#167;</p>§</div> + <div><p>&#168;</p>¨</div> + <div><p>&#169;</p>©</div> + <div><p>&#170;</p>ª</div> + <div><p>&#171;</p>«</div> + <div><p>&#172;</p>¬</div> + <div><p>&#173;</p>­</div> + <div><p>&#174;</p>®</div> + <div><p>&#175;</p>¯</div> + <div><p>&#176;</p>°</div> + <div><p>&#177;</p>±</div> + <div><p>&#178;</p>²</div> + <div><p>&#179;</p>³</div> + <div><p>&#180;</p>´</div> + <div><p>&#181;</p>µ</div> + <div><p>&#182;</p>¶</div> + <div><p>&#183;</p>·</div> + <div><p>&#184;</p>¸</div> + <div><p>&#185;</p>¹</div> + <div><p>&#186;</p>º</div> + <div><p>&#187;</p>»</div> + <div><p>&#188;</p>¼</div> + <div><p>&#189;</p>½</div> + <div><p>&#190;</p>¾</div> + <div><p>&#191;</p>¿</div> + <div><p>&#192;</p>À</div> + <div><p>&#193;</p>Á</div> + <div><p>&#194;</p>Â</div> + <div><p>&#195;</p>Ã</div> + <div><p>&#196;</p>Ä</div> + <div><p>&#197;</p>Å</div> + <div><p>&#198;</p>Æ</div> + <div><p>&#199;</p>Ç</div> + <div><p>&#200;</p>È</div> + <div><p>&#201;</p>É</div> + <div><p>&#202;</p>Ê</div> + <div><p>&#203;</p>Ë</div> + <div><p>&#204;</p>Ì</div> + <div><p>&#205;</p>Í</div> + <div><p>&#206;</p>Î</div> + <div><p>&#207;</p>Ï</div> + <div><p>&#208;</p>Ð</div> + <div><p>&#209;</p>Ñ</div> + <div><p>&#210;</p>Ò</div> + <div><p>&#211;</p>Ó</div> + <div><p>&#212;</p>Ô</div> + <div><p>&#213;</p>Õ</div> + <div><p>&#214;</p>Ö</div> + <div><p>&#215;</p>×</div> + <div><p>&#216;</p>Ø</div> + <div><p>&#217;</p>Ù</div> + <div><p>&#218;</p>Ú</div> + <div><p>&#219;</p>Û</div> + <div><p>&#220;</p>Ü</div> + <div><p>&#221;</p>Ý</div> + <div><p>&#222;</p>Þ</div> + <div><p>&#223;</p>ß</div> + <div><p>&#224;</p>à</div> + <div><p>&#225;</p>á</div> + <div><p>&#226;</p>â</div> + <div><p>&#227;</p>ã</div> + <div><p>&#228;</p>ä</div> + <div><p>&#229;</p>å</div> + <div><p>&#230;</p>æ</div> + <div><p>&#231;</p>ç</div> + <div><p>&#232;</p>è</div> + <div><p>&#233;</p>é</div> + <div><p>&#234;</p>ê</div> + <div><p>&#235;</p>ë</div> + <div><p>&#236;</p>ì</div> + <div><p>&#237;</p>í</div> + <div><p>&#238;</p>î</div> + <div><p>&#239;</p>ï</div> + <div><p>&#240;</p>ð</div> + <div><p>&#241;</p>ñ</div> + <div><p>&#242;</p>ò</div> + <div><p>&#243;</p>ó</div> + <div><p>&#244;</p>ô</div> + <div><p>&#245;</p>õ</div> + <div><p>&#246;</p>ö</div> + <div><p>&#247;</p>÷</div> + <div><p>&#248;</p>ø</div> + <div><p>&#249;</p>ù</div> + <div><p>&#250;</p>ú</div> + <div><p>&#251;</p>û</div> + <div><p>&#252;</p>ü</div> + <div><p>&#253;</p>ý</div> + <div><p>&#254;</p>þ</div> + <div><p>&#255;</p>ÿ</div> + <div><p>&#338;</p>Œ</div> + <div><p>&#339;</p>œ</div> + <div><p>&#376;</p>Ÿ</div> + <div><p>&#710;</p>ˆ</div> + <div><p>&#732;</p>˜</div> + <div><p>&#8192;</p> </div> + <div><p>&#8193;</p> </div> + <div><p>&#8194;</p> </div> + <div><p>&#8195;</p> </div> + <div><p>&#8196;</p> </div> + <div><p>&#8197;</p> </div> + <div><p>&#8198;</p> </div> + <div><p>&#8199;</p> </div> + <div><p>&#8200;</p> </div> + <div><p>&#8201;</p> </div> + <div><p>&#8202;</p> </div> + <div><p>&#8208;</p>‐</div> + <div><p>&#8209;</p>‑</div> + <div><p>&#8210;</p>‒</div> + <div><p>&#8211;</p>–</div> + <div><p>&#8212;</p>—</div> + <div><p>&#8216;</p>‘</div> + <div><p>&#8217;</p>’</div> + <div><p>&#8218;</p>‚</div> + <div><p>&#8220;</p>“</div> + <div><p>&#8221;</p>”</div> + <div><p>&#8222;</p>„</div> + <div><p>&#8226;</p>•</div> + <div><p>&#8230;</p>…</div> + <div><p>&#8239;</p> </div> + <div><p>&#8249;</p>‹</div> + <div><p>&#8250;</p>›</div> + <div><p>&#8287;</p> </div> + <div><p>&#8364;</p>€</div> + <div><p>&#8482;</p>™</div> + <div><p>&#9724;</p>◼</div> + <div><p>&#64257;</p>fi</div> + <div><p>&#64258;</p>fl</div> + </div> + </div> + + + </div> + </div> + + + <div id="specs"> + + </div> + + <div id="installing"> + <div class="section"> + <div class="grid7 firstcol"> + <h1>Installing Webfonts</h1> + + <p>Webfonts are supported by all major browser platforms but not all in the same way. There are currently four different font formats that must be included in order to target all browsers. This includes TTF, WOFF, EOT and SVG.</p> + + <h2>1. Upload your webfonts</h2> + <p>You must upload your webfont kit to your website. They should be in or near the same directory as your CSS files.</p> + + <h2>2. Include the webfont stylesheet</h2> + <p>A special CSS @font-face declaration helps the various browsers select the appropriate font it needs without causing you a bunch of headaches. Learn more about this syntax by reading the <a href="https://www.fontspring.com/blog/further-hardening-of-the-bulletproof-syntax">Fontspring blog post</a> about it. The code for it is as follows:</p> + + +<code> +@font-face{ + font-family: 'MyWebFont'; + src: url('WebFont.eot'); + src: url('WebFont.eot?#iefix') format('embedded-opentype'), + url('WebFont.woff') format('woff'), + url('WebFont.ttf') format('truetype'), + url('WebFont.svg#webfont') format('svg'); +} +</code> + + <p>We've already gone ahead and generated the code for you. All you have to do is link to the stylesheet in your HTML, like this:</p> + <code><link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8" /></code> + + <h2>3. Modify your own stylesheet</h2> + <p>To take advantage of your new fonts, you must tell your stylesheet to use them. Look at the original @font-face declaration above and find the property called "font-family." The name linked there will be what you use to reference the font. Prepend that webfont name to the font stack in the "font-family" property, inside the selector you want to change. For example:</p> +<code>p { font-family: 'WebFont', Arial, sans-serif; }</code> + +<h2>4. Test</h2> +<p>Getting webfonts to work cross-browser <em>can</em> be tricky. Use the information in the sidebar to help you if you find that fonts aren't loading in a particular browser.</p> + </div> + + <div class="grid5 sidebar"> + <div class="box"> + <h2>Troubleshooting<br />Font-Face Problems</h2> + <p>Having trouble getting your webfonts to load in your new website? Here are some tips to sort out what might be the problem.</p> + + <h3>Fonts not showing in any browser</h3> + + <p>This sounds like you need to work on the plumbing. You either did not upload the fonts to the correct directory, or you did not link the fonts properly in the CSS. If you've confirmed that all this is correct and you still have a problem, take a look at your .htaccess file and see if requests are getting intercepted.</p> + + <h3>Fonts not loading in iPhone or iPad</h3> + + <p>The most common problem here is that you are serving the fonts from an IIS server. IIS refuses to serve files that have unknown MIME types. If that is the case, you must set the MIME type for SVG to "image/svg+xml" in the server settings. Follow these instructions from Microsoft if you need help.</p> + + <h3>Fonts not loading in Firefox</h3> + + <p>The primary reason for this failure? You are still using a version Firefox older than 3.5. So upgrade already! If that isn't it, then you are very likely serving fonts from a different domain. Firefox requires that all font assets be served from the same domain. Lastly it is possible that you need to add WOFF to your list of MIME types (if you are serving via IIS.)</p> + + <h3>Fonts not loading in IE</h3> + + <p>Are you looking at Internet Explorer on an actual Windows machine or are you cheating by using a service like Adobe BrowserLab? Many of these screenshot services do not render @font-face for IE. Best to test it on a real machine.</p> + + <h3>Fonts not loading in IE9</h3> + + <p>IE9, like Firefox, requires that fonts be served from the same domain as the website. Make sure that is the case.</p> + </div> + </div> + </div> + + </div> + + </div> + <div id="footer"> + <p>©2010-2017 Font Squirrel. All rights reserved.</p> + </div> +</div> +</body> +</html> diff --git a/test/samples/aurorae/fonts/amble/amble-light-webfont.woff b/test/samples/aurorae/fonts/amble/amble-light-webfont.woff new file mode 100755 index 0000000000000000000000000000000000000000..d3039691e5027099849bb90fb0313e7ce1b6781b Binary files /dev/null and b/test/samples/aurorae/fonts/amble/amble-light-webfont.woff differ diff --git a/test/samples/aurorae/fonts/amble/amble-light-webfont.woff2 b/test/samples/aurorae/fonts/amble/amble-light-webfont.woff2 new file mode 100755 index 0000000000000000000000000000000000000000..a34bc7695a213ff918b3c95ab4e7d3886d354589 Binary files /dev/null and b/test/samples/aurorae/fonts/amble/amble-light-webfont.woff2 differ diff --git a/test/samples/aurorae/fonts/amble/amble-lightcondensed-demo.html b/test/samples/aurorae/fonts/amble/amble-lightcondensed-demo.html new file mode 100755 index 0000000000000000000000000000000000000000..0d53f5b19f3594ba40ef378dc0b8dde2cc97c9d1 --- /dev/null +++ b/test/samples/aurorae/fonts/amble/amble-lightcondensed-demo.html @@ -0,0 +1,620 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> + +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> +<head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> + <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js" type="text/javascript" charset="utf-8"></script> + <script type="text/javascript"> + (function($){$.fn.easyTabs=function(option){var param=jQuery.extend({fadeSpeed:"fast",defaultContent:1,activeClass:'active'},option);$(this).each(function(){var thisId="#"+this.id;if(param.defaultContent==''){param.defaultContent=1;} + if(typeof param.defaultContent=="number") + {var defaultTab=$(thisId+" .tabs li:eq("+(param.defaultContent-1)+") a").attr('href').substr(1);}else{var defaultTab=param.defaultContent;} + $(thisId+" .tabs li a").each(function(){var tabToHide=$(this).attr('href').substr(1);$("#"+tabToHide).addClass('easytabs-tab-content');});hideAll();changeContent(defaultTab);function hideAll(){$(thisId+" .easytabs-tab-content").hide();} + function changeContent(tabId){hideAll();$(thisId+" .tabs li").removeClass(param.activeClass);$(thisId+" .tabs li a[href=#"+tabId+"]").closest('li').addClass(param.activeClass);if(param.fadeSpeed!="none") + {$(thisId+" #"+tabId).fadeIn(param.fadeSpeed);}else{$(thisId+" #"+tabId).show();}} + $(thisId+" .tabs li").click(function(){var tabId=$(this).find('a').attr('href').substr(1);changeContent(tabId);return false;});});}})(jQuery); + </script> + <link rel="stylesheet" href="specimen_files/specimen_stylesheet.css" type="text/css" charset="utf-8" /> + <link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8" /> + + <style type="text/css"> + body{ + font-family: 'amblelight_condensed'; + } + </style> + + <title>Amble Light Condensed Specimen</title> + + + <script type="text/javascript" charset="utf-8"> + $(document).ready(function() { + $('#container').easyTabs({defaultContent:1}); + }); + </script> +</head> + +<body> +<div id="container"> + <div id="header"> + Amble Light Condensed </div> + <ul class="tabs"> + <li><a href="#specimen">Specimen</a></li> + <li><a href="#layout">Sample Layout</a></li> + <li><a href="#glyphs">Glyphs & Languages</a></li> + <li><a href="#installing">Installing Webfonts</a></li> + + </ul> + + <div id="main_content"> + + + <div id="specimen"> + + <div class="section"> + <div class="grid12 firstcol"> + <div class="huge">AaBb</div> + </div> + </div> + + <div class="section"> + <div class="glyph_range">A​B​C​D​E​F​G​H​I​J​K​L​M​N​O​P​Q​R​S​T​U​V​W​X​Y​Z​a​b​c​d​e​f​g​h​i​j​k​l​m​n​o​p​q​r​s​t​u​v​w​x​y​z​1​2​3​4​5​6​7​8​9​0​&​.​,​?​!​@​(​)​#​$​%​*​+​-​=​:​;</div> + </div> + <div class="section"> + <div class="grid12 firstcol"> + <table class="sample_table"> + <tr><td>10</td><td class="size10">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>11</td><td class="size11">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>12</td><td class="size12">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>13</td><td class="size13">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>14</td><td class="size14">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>16</td><td class="size16">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>18</td><td class="size18">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>20</td><td class="size20">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>24</td><td class="size24">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>30</td><td class="size30">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>36</td><td class="size36">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>48</td><td class="size48">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>60</td><td class="size60">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>72</td><td class="size72">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>90</td><td class="size90">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + </table> + + </div> + + </div> + + + + <div class="section" id="bodycomparison"> + + + <div id="xheight"> + <div class="fontbody">◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼body</div><div class="arialbody">body</div><div class="verdanabody">body</div><div class="georgiabody">body</div></div> + <div class="fontbody" style="z-index:1"> + body<span>Amble Light Condensed</span> + </div> + <div class="arialbody" style="z-index:1"> + body<span>Arial</span> + </div> + <div class="verdanabody" style="z-index:1"> + body<span>Verdana</span> + </div> + <div class="georgiabody" style="z-index:1"> + body<span>Georgia</span> + </div> + + + + </div> + + + <div class="section psample psample_row1" id=""> + + <div class="grid2 firstcol"> + <p class="size10"><span>10.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid3"> + <p class="size11"><span>11.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid3"> + <p class="size12"><span>12.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid4"> + <p class="size13"><span>13.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="white_blend"></div> + + </div> + <div class="section psample psample_row2" id=""> + <div class="grid3 firstcol"> + <p class="size14"><span>14.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid4"> + <p class="size16"><span>16.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid5"> + <p class="size18"><span>18.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + + <div class="white_blend"></div> + + </div> + + <div class="section psample psample_row3" id=""> + <div class="grid5 firstcol"> + <p class="size20"><span>20.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + <div class="grid7"> + <p class="size24"><span>24.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + + <div class="white_blend"></div> + + </div> + + <div class="section psample psample_row4" id=""> + <div class="grid12 firstcol"> + <p class="size30"><span>30.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + <div class="white_blend"></div> + + </div> + + + + <div class="section psample psample_row1 fullreverse"> + <div class="grid2 firstcol"> + <p class="size10"><span>10.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid3"> + <p class="size11"><span>11.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid3"> + <p class="size12"><span>12.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid4"> + <p class="size13"><span>13.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="black_blend"></div> + + </div> + + <div class="section psample psample_row2 fullreverse"> + <div class="grid3 firstcol"> + <p class="size14"><span>14.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid4"> + <p class="size16"><span>16.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid5"> + <p class="size18"><span>18.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="black_blend"></div> + + </div> + + <div class="section psample fullreverse psample_row3" id=""> + <div class="grid5 firstcol"> + <p class="size20"><span>20.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + <div class="grid7"> + <p class="size24"><span>24.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + + <div class="black_blend"></div> + + </div> + + <div class="section psample fullreverse psample_row4" id="" style="border-bottom: 20px #000 solid;"> + <div class="grid12 firstcol"> + <p class="size30"><span>30.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + <div class="black_blend"></div> + + </div> + + + + + </div> + + <div id="layout"> + + <div class="section"> + + <div class="grid12 firstcol"> + <h1>Lorem Ipsum Dolor</h1> + <h2>Etiam porta sem malesuada magna mollis euismod</h2> + + <p class="byline">By <a href="#link">Aenean Lacinia</a></p> + </div> + </div> + <div class="section"> + <div class="grid8 firstcol"> + <p class="large">Donec sed odio dui. Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p> + + + <h3>Pellentesque ornare sem</h3> + + <p>Maecenas sed diam eget risus varius blandit sit amet non magna. Maecenas faucibus mollis interdum. Donec ullamcorper nulla non metus auctor fringilla. Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam id dolor id nibh ultricies vehicula ut id elit. </p> + + <p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. </p> + + <p>Nulla vitae elit libero, a pharetra augue. Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Aenean lacinia bibendum nulla sed consectetur. </p> + + <p>Nullam quis risus eget urna mollis ornare vel eu leo. Nullam quis risus eget urna mollis ornare vel eu leo. Maecenas sed diam eget risus varius blandit sit amet non magna. Donec ullamcorper nulla non metus auctor fringilla. </p> + + <h3>Cras mattis consectetur</h3> + + <p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Aenean lacinia bibendum nulla sed consectetur. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Cras mattis consectetur purus sit amet fermentum. </p> + + <p>Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam quis risus eget urna mollis ornare vel eu leo. Cras mattis consectetur purus sit amet fermentum.</p> + </div> + + <div class="grid4 sidebar"> + + <div class="box reverse"> + <p class="last">Nullam quis risus eget urna mollis ornare vel eu leo. Donec ullamcorper nulla non metus auctor fringilla. Cras mattis consectetur purus sit amet fermentum. Sed posuere consectetur est at lobortis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. </p> + </div> + + <p class="caption">Maecenas sed diam eget risus varius.</p> + + <p>Vestibulum id ligula porta felis euismod semper. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Vestibulum id ligula porta felis euismod semper. Sed posuere consectetur est at lobortis. Maecenas sed diam eget risus varius blandit sit amet non magna. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p> + + + + <p>Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Aenean lacinia bibendum nulla sed consectetur. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Aenean lacinia bibendum nulla sed consectetur. Nullam quis risus eget urna mollis ornare vel eu leo. </p> + + <p>Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Donec ullamcorper nulla non metus auctor fringilla. Maecenas faucibus mollis interdum. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p> + + </div> + </div> + + </div> + + + + + + + <div id="glyphs"> + <div class="section"> + <div class="grid12 firstcol"> + + <h1>Language Support</h1> + <p>The subset of Amble Light Condensed in this kit supports the following languages:<br /> + + Albanian, Basque, Breton, Chamorro, Danish, Dutch, English, Faroese, Finnish, French, Frisian, Galician, German, Icelandic, Italian, Malagasy, Norwegian, Portuguese, Spanish, Alsatian, Aragonese, Arapaho, Arrernte, Asturian, Aymara, Bislama, Cebuano, Corsican, Fijian, French_creole, Genoese, Gilbertese, Greenlandic, Haitian_creole, Hiligaynon, Hmong, Hopi, Ibanag, Iloko_ilokano, Indonesian, Interglossa_glosa, Interlingua, Irish_gaelic, Jerriais, Lojban, Lombard, Luxembourgeois, Manx, Mohawk, Norfolk_pitcairnese, Occitan, Oromo, Pangasinan, Papiamento, Piedmontese, Potawatomi, Rhaeto-romance, Romansh, Rotokas, Sami_lule, Samoan, Sardinian, Scots_gaelic, Seychelles_creole, Shona, Sicilian, Somali, Southern_ndebele, Swahili, Swati_swazi, Tagalog_filipino_pilipino, Tetum, Tok_pisin, Uyghur_latinized, Volapuk, Walloon, Warlpiri, Xhosa, Yapese, Zulu, Latinbasic, Ubasic, Demo </p> + <h1>Glyph Chart</h1> + <p>The subset of Amble Light Condensed in this kit includes all the glyphs listed below. Unicode entities are included above each glyph to help you insert individual characters into your layout.</p> + <div id="glyph_chart"> + + <div><p>&#13;</p> </div> + <div><p>&#32;</p> </div> + <div><p>&#33;</p>!</div> + <div><p>&#34;</p>"</div> + <div><p>&#35;</p>#</div> + <div><p>&#36;</p>$</div> + <div><p>&#37;</p>%</div> + <div><p>&#38;</p>&</div> + <div><p>&#39;</p>'</div> + <div><p>&#40;</p>(</div> + <div><p>&#41;</p>)</div> + <div><p>&#42;</p>*</div> + <div><p>&#43;</p>+</div> + <div><p>&#44;</p>,</div> + <div><p>&#45;</p>-</div> + <div><p>&#46;</p>.</div> + <div><p>&#47;</p>/</div> + <div><p>&#48;</p>0</div> + <div><p>&#49;</p>1</div> + <div><p>&#50;</p>2</div> + <div><p>&#51;</p>3</div> + <div><p>&#52;</p>4</div> + <div><p>&#53;</p>5</div> + <div><p>&#54;</p>6</div> + <div><p>&#55;</p>7</div> + <div><p>&#56;</p>8</div> + <div><p>&#57;</p>9</div> + <div><p>&#58;</p>:</div> + <div><p>&#59;</p>;</div> + <div><p>&#60;</p><</div> + <div><p>&#61;</p>=</div> + <div><p>&#62;</p>></div> + <div><p>&#63;</p>?</div> + <div><p>&#64;</p>@</div> + <div><p>&#65;</p>A</div> + <div><p>&#66;</p>B</div> + <div><p>&#67;</p>C</div> + <div><p>&#68;</p>D</div> + <div><p>&#69;</p>E</div> + <div><p>&#70;</p>F</div> + <div><p>&#71;</p>G</div> + <div><p>&#72;</p>H</div> + <div><p>&#73;</p>I</div> + <div><p>&#74;</p>J</div> + <div><p>&#75;</p>K</div> + <div><p>&#76;</p>L</div> + <div><p>&#77;</p>M</div> + <div><p>&#78;</p>N</div> + <div><p>&#79;</p>O</div> + <div><p>&#80;</p>P</div> + <div><p>&#81;</p>Q</div> + <div><p>&#82;</p>R</div> + <div><p>&#83;</p>S</div> + <div><p>&#84;</p>T</div> + <div><p>&#85;</p>U</div> + <div><p>&#86;</p>V</div> + <div><p>&#87;</p>W</div> + <div><p>&#88;</p>X</div> + <div><p>&#89;</p>Y</div> + <div><p>&#90;</p>Z</div> + <div><p>&#91;</p>[</div> + <div><p>&#92;</p>\</div> + <div><p>&#93;</p>]</div> + <div><p>&#94;</p>^</div> + <div><p>&#95;</p>_</div> + <div><p>&#96;</p>`</div> + <div><p>&#97;</p>a</div> + <div><p>&#98;</p>b</div> + <div><p>&#99;</p>c</div> + <div><p>&#100;</p>d</div> + <div><p>&#101;</p>e</div> + <div><p>&#102;</p>f</div> + <div><p>&#103;</p>g</div> + <div><p>&#104;</p>h</div> + <div><p>&#105;</p>i</div> + <div><p>&#106;</p>j</div> + <div><p>&#107;</p>k</div> + <div><p>&#108;</p>l</div> + <div><p>&#109;</p>m</div> + <div><p>&#110;</p>n</div> + <div><p>&#111;</p>o</div> + <div><p>&#112;</p>p</div> + <div><p>&#113;</p>q</div> + <div><p>&#114;</p>r</div> + <div><p>&#115;</p>s</div> + <div><p>&#116;</p>t</div> + <div><p>&#117;</p>u</div> + <div><p>&#118;</p>v</div> + <div><p>&#119;</p>w</div> + <div><p>&#120;</p>x</div> + <div><p>&#121;</p>y</div> + <div><p>&#122;</p>z</div> + <div><p>&#123;</p>{</div> + <div><p>&#124;</p>|</div> + <div><p>&#125;</p>}</div> + <div><p>&#126;</p>~</div> + <div><p>&#160;</p> </div> + <div><p>&#161;</p>¡</div> + <div><p>&#162;</p>¢</div> + <div><p>&#163;</p>£</div> + <div><p>&#164;</p>¤</div> + <div><p>&#165;</p>¥</div> + <div><p>&#166;</p>¦</div> + <div><p>&#167;</p>§</div> + <div><p>&#168;</p>¨</div> + <div><p>&#169;</p>©</div> + <div><p>&#170;</p>ª</div> + <div><p>&#171;</p>«</div> + <div><p>&#172;</p>¬</div> + <div><p>&#173;</p>­</div> + <div><p>&#174;</p>®</div> + <div><p>&#175;</p>¯</div> + <div><p>&#176;</p>°</div> + <div><p>&#177;</p>±</div> + <div><p>&#178;</p>²</div> + <div><p>&#179;</p>³</div> + <div><p>&#180;</p>´</div> + <div><p>&#181;</p>µ</div> + <div><p>&#182;</p>¶</div> + <div><p>&#183;</p>·</div> + <div><p>&#184;</p>¸</div> + <div><p>&#185;</p>¹</div> + <div><p>&#186;</p>º</div> + <div><p>&#187;</p>»</div> + <div><p>&#188;</p>¼</div> + <div><p>&#189;</p>½</div> + <div><p>&#190;</p>¾</div> + <div><p>&#191;</p>¿</div> + <div><p>&#192;</p>À</div> + <div><p>&#193;</p>Á</div> + <div><p>&#194;</p>Â</div> + <div><p>&#195;</p>Ã</div> + <div><p>&#196;</p>Ä</div> + <div><p>&#197;</p>Å</div> + <div><p>&#198;</p>Æ</div> + <div><p>&#199;</p>Ç</div> + <div><p>&#200;</p>È</div> + <div><p>&#201;</p>É</div> + <div><p>&#202;</p>Ê</div> + <div><p>&#203;</p>Ë</div> + <div><p>&#204;</p>Ì</div> + <div><p>&#205;</p>Í</div> + <div><p>&#206;</p>Î</div> + <div><p>&#207;</p>Ï</div> + <div><p>&#208;</p>Ð</div> + <div><p>&#209;</p>Ñ</div> + <div><p>&#210;</p>Ò</div> + <div><p>&#211;</p>Ó</div> + <div><p>&#212;</p>Ô</div> + <div><p>&#213;</p>Õ</div> + <div><p>&#214;</p>Ö</div> + <div><p>&#215;</p>×</div> + <div><p>&#216;</p>Ø</div> + <div><p>&#217;</p>Ù</div> + <div><p>&#218;</p>Ú</div> + <div><p>&#219;</p>Û</div> + <div><p>&#220;</p>Ü</div> + <div><p>&#221;</p>Ý</div> + <div><p>&#222;</p>Þ</div> + <div><p>&#223;</p>ß</div> + <div><p>&#224;</p>à</div> + <div><p>&#225;</p>á</div> + <div><p>&#226;</p>â</div> + <div><p>&#227;</p>ã</div> + <div><p>&#228;</p>ä</div> + <div><p>&#229;</p>å</div> + <div><p>&#230;</p>æ</div> + <div><p>&#231;</p>ç</div> + <div><p>&#232;</p>è</div> + <div><p>&#233;</p>é</div> + <div><p>&#234;</p>ê</div> + <div><p>&#235;</p>ë</div> + <div><p>&#236;</p>ì</div> + <div><p>&#237;</p>í</div> + <div><p>&#238;</p>î</div> + <div><p>&#239;</p>ï</div> + <div><p>&#240;</p>ð</div> + <div><p>&#241;</p>ñ</div> + <div><p>&#242;</p>ò</div> + <div><p>&#243;</p>ó</div> + <div><p>&#244;</p>ô</div> + <div><p>&#245;</p>õ</div> + <div><p>&#246;</p>ö</div> + <div><p>&#247;</p>÷</div> + <div><p>&#248;</p>ø</div> + <div><p>&#249;</p>ù</div> + <div><p>&#250;</p>ú</div> + <div><p>&#251;</p>û</div> + <div><p>&#252;</p>ü</div> + <div><p>&#253;</p>ý</div> + <div><p>&#254;</p>þ</div> + <div><p>&#255;</p>ÿ</div> + <div><p>&#338;</p>Œ</div> + <div><p>&#339;</p>œ</div> + <div><p>&#376;</p>Ÿ</div> + <div><p>&#710;</p>ˆ</div> + <div><p>&#732;</p>˜</div> + <div><p>&#8192;</p> </div> + <div><p>&#8193;</p> </div> + <div><p>&#8194;</p> </div> + <div><p>&#8195;</p> </div> + <div><p>&#8196;</p> </div> + <div><p>&#8197;</p> </div> + <div><p>&#8198;</p> </div> + <div><p>&#8199;</p> </div> + <div><p>&#8200;</p> </div> + <div><p>&#8201;</p> </div> + <div><p>&#8202;</p> </div> + <div><p>&#8208;</p>‐</div> + <div><p>&#8209;</p>‑</div> + <div><p>&#8210;</p>‒</div> + <div><p>&#8211;</p>–</div> + <div><p>&#8212;</p>—</div> + <div><p>&#8216;</p>‘</div> + <div><p>&#8217;</p>’</div> + <div><p>&#8218;</p>‚</div> + <div><p>&#8220;</p>“</div> + <div><p>&#8221;</p>”</div> + <div><p>&#8222;</p>„</div> + <div><p>&#8226;</p>•</div> + <div><p>&#8230;</p>…</div> + <div><p>&#8239;</p> </div> + <div><p>&#8249;</p>‹</div> + <div><p>&#8250;</p>›</div> + <div><p>&#8287;</p> </div> + <div><p>&#8364;</p>€</div> + <div><p>&#8482;</p>™</div> + <div><p>&#9724;</p>◼</div> + <div><p>&#64257;</p>fi</div> + <div><p>&#64258;</p>fl</div> + </div> + </div> + + + </div> + </div> + + + <div id="specs"> + + </div> + + <div id="installing"> + <div class="section"> + <div class="grid7 firstcol"> + <h1>Installing Webfonts</h1> + + <p>Webfonts are supported by all major browser platforms but not all in the same way. There are currently four different font formats that must be included in order to target all browsers. This includes TTF, WOFF, EOT and SVG.</p> + + <h2>1. Upload your webfonts</h2> + <p>You must upload your webfont kit to your website. They should be in or near the same directory as your CSS files.</p> + + <h2>2. Include the webfont stylesheet</h2> + <p>A special CSS @font-face declaration helps the various browsers select the appropriate font it needs without causing you a bunch of headaches. Learn more about this syntax by reading the <a href="https://www.fontspring.com/blog/further-hardening-of-the-bulletproof-syntax">Fontspring blog post</a> about it. The code for it is as follows:</p> + + +<code> +@font-face{ + font-family: 'MyWebFont'; + src: url('WebFont.eot'); + src: url('WebFont.eot?#iefix') format('embedded-opentype'), + url('WebFont.woff') format('woff'), + url('WebFont.ttf') format('truetype'), + url('WebFont.svg#webfont') format('svg'); +} +</code> + + <p>We've already gone ahead and generated the code for you. All you have to do is link to the stylesheet in your HTML, like this:</p> + <code><link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8" /></code> + + <h2>3. Modify your own stylesheet</h2> + <p>To take advantage of your new fonts, you must tell your stylesheet to use them. Look at the original @font-face declaration above and find the property called "font-family." The name linked there will be what you use to reference the font. Prepend that webfont name to the font stack in the "font-family" property, inside the selector you want to change. For example:</p> +<code>p { font-family: 'WebFont', Arial, sans-serif; }</code> + +<h2>4. Test</h2> +<p>Getting webfonts to work cross-browser <em>can</em> be tricky. Use the information in the sidebar to help you if you find that fonts aren't loading in a particular browser.</p> + </div> + + <div class="grid5 sidebar"> + <div class="box"> + <h2>Troubleshooting<br />Font-Face Problems</h2> + <p>Having trouble getting your webfonts to load in your new website? Here are some tips to sort out what might be the problem.</p> + + <h3>Fonts not showing in any browser</h3> + + <p>This sounds like you need to work on the plumbing. You either did not upload the fonts to the correct directory, or you did not link the fonts properly in the CSS. If you've confirmed that all this is correct and you still have a problem, take a look at your .htaccess file and see if requests are getting intercepted.</p> + + <h3>Fonts not loading in iPhone or iPad</h3> + + <p>The most common problem here is that you are serving the fonts from an IIS server. IIS refuses to serve files that have unknown MIME types. If that is the case, you must set the MIME type for SVG to "image/svg+xml" in the server settings. Follow these instructions from Microsoft if you need help.</p> + + <h3>Fonts not loading in Firefox</h3> + + <p>The primary reason for this failure? You are still using a version Firefox older than 3.5. So upgrade already! If that isn't it, then you are very likely serving fonts from a different domain. Firefox requires that all font assets be served from the same domain. Lastly it is possible that you need to add WOFF to your list of MIME types (if you are serving via IIS.)</p> + + <h3>Fonts not loading in IE</h3> + + <p>Are you looking at Internet Explorer on an actual Windows machine or are you cheating by using a service like Adobe BrowserLab? Many of these screenshot services do not render @font-face for IE. Best to test it on a real machine.</p> + + <h3>Fonts not loading in IE9</h3> + + <p>IE9, like Firefox, requires that fonts be served from the same domain as the website. Make sure that is the case.</p> + </div> + </div> + </div> + + </div> + + </div> + <div id="footer"> + <p>©2010-2017 Font Squirrel. All rights reserved.</p> + </div> +</div> +</body> +</html> diff --git a/test/samples/aurorae/fonts/amble/amble-lightcondensed-webfont.ttf b/test/samples/aurorae/fonts/amble/amble-lightcondensed-webfont.ttf new file mode 100755 index 0000000000000000000000000000000000000000..a1033a38e4b8174eecc948a6fe8646e801f5f01c Binary files /dev/null and b/test/samples/aurorae/fonts/amble/amble-lightcondensed-webfont.ttf differ diff --git a/test/samples/aurorae/fonts/amble/amble-lightcondensed-webfont.woff b/test/samples/aurorae/fonts/amble/amble-lightcondensed-webfont.woff new file mode 100755 index 0000000000000000000000000000000000000000..a93f09e6686b83eb847a659b04eaefea52e90504 Binary files /dev/null and b/test/samples/aurorae/fonts/amble/amble-lightcondensed-webfont.woff differ diff --git a/test/samples/aurorae/fonts/amble/amble-lightcondensed-webfont.woff2 b/test/samples/aurorae/fonts/amble/amble-lightcondensed-webfont.woff2 new file mode 100755 index 0000000000000000000000000000000000000000..f898809c17f693152fd09a25cd777394a7cbb993 Binary files /dev/null and b/test/samples/aurorae/fonts/amble/amble-lightcondensed-webfont.woff2 differ diff --git a/test/samples/aurorae/fonts/amble/amble-lightcondenseditalic-demo.html b/test/samples/aurorae/fonts/amble/amble-lightcondenseditalic-demo.html new file mode 100755 index 0000000000000000000000000000000000000000..d79914b85d56de53b60b145ab39001f3891d3568 --- /dev/null +++ b/test/samples/aurorae/fonts/amble/amble-lightcondenseditalic-demo.html @@ -0,0 +1,620 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> + +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> +<head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> + <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js" type="text/javascript" charset="utf-8"></script> + <script type="text/javascript"> + (function($){$.fn.easyTabs=function(option){var param=jQuery.extend({fadeSpeed:"fast",defaultContent:1,activeClass:'active'},option);$(this).each(function(){var thisId="#"+this.id;if(param.defaultContent==''){param.defaultContent=1;} + if(typeof param.defaultContent=="number") + {var defaultTab=$(thisId+" .tabs li:eq("+(param.defaultContent-1)+") a").attr('href').substr(1);}else{var defaultTab=param.defaultContent;} + $(thisId+" .tabs li a").each(function(){var tabToHide=$(this).attr('href').substr(1);$("#"+tabToHide).addClass('easytabs-tab-content');});hideAll();changeContent(defaultTab);function hideAll(){$(thisId+" .easytabs-tab-content").hide();} + function changeContent(tabId){hideAll();$(thisId+" .tabs li").removeClass(param.activeClass);$(thisId+" .tabs li a[href=#"+tabId+"]").closest('li').addClass(param.activeClass);if(param.fadeSpeed!="none") + {$(thisId+" #"+tabId).fadeIn(param.fadeSpeed);}else{$(thisId+" #"+tabId).show();}} + $(thisId+" .tabs li").click(function(){var tabId=$(this).find('a').attr('href').substr(1);changeContent(tabId);return false;});});}})(jQuery); + </script> + <link rel="stylesheet" href="specimen_files/specimen_stylesheet.css" type="text/css" charset="utf-8" /> + <link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8" /> + + <style type="text/css"> + body{ + font-family: 'amblelight_condensed_italic'; + } + </style> + + <title>Amble Light Condensed Italic Specimen</title> + + + <script type="text/javascript" charset="utf-8"> + $(document).ready(function() { + $('#container').easyTabs({defaultContent:1}); + }); + </script> +</head> + +<body> +<div id="container"> + <div id="header"> + Amble Light Condensed Italic </div> + <ul class="tabs"> + <li><a href="#specimen">Specimen</a></li> + <li><a href="#layout">Sample Layout</a></li> + <li><a href="#glyphs">Glyphs & Languages</a></li> + <li><a href="#installing">Installing Webfonts</a></li> + + </ul> + + <div id="main_content"> + + + <div id="specimen"> + + <div class="section"> + <div class="grid12 firstcol"> + <div class="huge">AaBb</div> + </div> + </div> + + <div class="section"> + <div class="glyph_range">A​B​C​D​E​F​G​H​I​J​K​L​M​N​O​P​Q​R​S​T​U​V​W​X​Y​Z​a​b​c​d​e​f​g​h​i​j​k​l​m​n​o​p​q​r​s​t​u​v​w​x​y​z​1​2​3​4​5​6​7​8​9​0​&​.​,​?​!​@​(​)​#​$​%​*​+​-​=​:​;</div> + </div> + <div class="section"> + <div class="grid12 firstcol"> + <table class="sample_table"> + <tr><td>10</td><td class="size10">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>11</td><td class="size11">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>12</td><td class="size12">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>13</td><td class="size13">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>14</td><td class="size14">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>16</td><td class="size16">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>18</td><td class="size18">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>20</td><td class="size20">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>24</td><td class="size24">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>30</td><td class="size30">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>36</td><td class="size36">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>48</td><td class="size48">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>60</td><td class="size60">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>72</td><td class="size72">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>90</td><td class="size90">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + </table> + + </div> + + </div> + + + + <div class="section" id="bodycomparison"> + + + <div id="xheight"> + <div class="fontbody">◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼body</div><div class="arialbody">body</div><div class="verdanabody">body</div><div class="georgiabody">body</div></div> + <div class="fontbody" style="z-index:1"> + body<span>Amble Light Condensed Italic</span> + </div> + <div class="arialbody" style="z-index:1"> + body<span>Arial</span> + </div> + <div class="verdanabody" style="z-index:1"> + body<span>Verdana</span> + </div> + <div class="georgiabody" style="z-index:1"> + body<span>Georgia</span> + </div> + + + + </div> + + + <div class="section psample psample_row1" id=""> + + <div class="grid2 firstcol"> + <p class="size10"><span>10.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid3"> + <p class="size11"><span>11.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid3"> + <p class="size12"><span>12.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid4"> + <p class="size13"><span>13.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="white_blend"></div> + + </div> + <div class="section psample psample_row2" id=""> + <div class="grid3 firstcol"> + <p class="size14"><span>14.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid4"> + <p class="size16"><span>16.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid5"> + <p class="size18"><span>18.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + + <div class="white_blend"></div> + + </div> + + <div class="section psample psample_row3" id=""> + <div class="grid5 firstcol"> + <p class="size20"><span>20.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + <div class="grid7"> + <p class="size24"><span>24.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + + <div class="white_blend"></div> + + </div> + + <div class="section psample psample_row4" id=""> + <div class="grid12 firstcol"> + <p class="size30"><span>30.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + <div class="white_blend"></div> + + </div> + + + + <div class="section psample psample_row1 fullreverse"> + <div class="grid2 firstcol"> + <p class="size10"><span>10.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid3"> + <p class="size11"><span>11.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid3"> + <p class="size12"><span>12.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid4"> + <p class="size13"><span>13.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="black_blend"></div> + + </div> + + <div class="section psample psample_row2 fullreverse"> + <div class="grid3 firstcol"> + <p class="size14"><span>14.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid4"> + <p class="size16"><span>16.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid5"> + <p class="size18"><span>18.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="black_blend"></div> + + </div> + + <div class="section psample fullreverse psample_row3" id=""> + <div class="grid5 firstcol"> + <p class="size20"><span>20.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + <div class="grid7"> + <p class="size24"><span>24.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + + <div class="black_blend"></div> + + </div> + + <div class="section psample fullreverse psample_row4" id="" style="border-bottom: 20px #000 solid;"> + <div class="grid12 firstcol"> + <p class="size30"><span>30.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + <div class="black_blend"></div> + + </div> + + + + + </div> + + <div id="layout"> + + <div class="section"> + + <div class="grid12 firstcol"> + <h1>Lorem Ipsum Dolor</h1> + <h2>Etiam porta sem malesuada magna mollis euismod</h2> + + <p class="byline">By <a href="#link">Aenean Lacinia</a></p> + </div> + </div> + <div class="section"> + <div class="grid8 firstcol"> + <p class="large">Donec sed odio dui. Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p> + + + <h3>Pellentesque ornare sem</h3> + + <p>Maecenas sed diam eget risus varius blandit sit amet non magna. Maecenas faucibus mollis interdum. Donec ullamcorper nulla non metus auctor fringilla. Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam id dolor id nibh ultricies vehicula ut id elit. </p> + + <p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. </p> + + <p>Nulla vitae elit libero, a pharetra augue. Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Aenean lacinia bibendum nulla sed consectetur. </p> + + <p>Nullam quis risus eget urna mollis ornare vel eu leo. Nullam quis risus eget urna mollis ornare vel eu leo. Maecenas sed diam eget risus varius blandit sit amet non magna. Donec ullamcorper nulla non metus auctor fringilla. </p> + + <h3>Cras mattis consectetur</h3> + + <p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Aenean lacinia bibendum nulla sed consectetur. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Cras mattis consectetur purus sit amet fermentum. </p> + + <p>Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam quis risus eget urna mollis ornare vel eu leo. Cras mattis consectetur purus sit amet fermentum.</p> + </div> + + <div class="grid4 sidebar"> + + <div class="box reverse"> + <p class="last">Nullam quis risus eget urna mollis ornare vel eu leo. Donec ullamcorper nulla non metus auctor fringilla. Cras mattis consectetur purus sit amet fermentum. Sed posuere consectetur est at lobortis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. </p> + </div> + + <p class="caption">Maecenas sed diam eget risus varius.</p> + + <p>Vestibulum id ligula porta felis euismod semper. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Vestibulum id ligula porta felis euismod semper. Sed posuere consectetur est at lobortis. Maecenas sed diam eget risus varius blandit sit amet non magna. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p> + + + + <p>Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Aenean lacinia bibendum nulla sed consectetur. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Aenean lacinia bibendum nulla sed consectetur. Nullam quis risus eget urna mollis ornare vel eu leo. </p> + + <p>Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Donec ullamcorper nulla non metus auctor fringilla. Maecenas faucibus mollis interdum. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p> + + </div> + </div> + + </div> + + + + + + + <div id="glyphs"> + <div class="section"> + <div class="grid12 firstcol"> + + <h1>Language Support</h1> + <p>The subset of Amble Light Condensed Italic in this kit supports the following languages:<br /> + + Albanian, Basque, Breton, Chamorro, Danish, Dutch, English, Faroese, Finnish, French, Frisian, Galician, German, Icelandic, Italian, Malagasy, Norwegian, Portuguese, Spanish, Alsatian, Aragonese, Arapaho, Arrernte, Asturian, Aymara, Bislama, Cebuano, Corsican, Fijian, French_creole, Genoese, Gilbertese, Greenlandic, Haitian_creole, Hiligaynon, Hmong, Hopi, Ibanag, Iloko_ilokano, Indonesian, Interglossa_glosa, Interlingua, Irish_gaelic, Jerriais, Lojban, Lombard, Luxembourgeois, Manx, Mohawk, Norfolk_pitcairnese, Occitan, Oromo, Pangasinan, Papiamento, Piedmontese, Potawatomi, Rhaeto-romance, Romansh, Rotokas, Sami_lule, Samoan, Sardinian, Scots_gaelic, Seychelles_creole, Shona, Sicilian, Somali, Southern_ndebele, Swahili, Swati_swazi, Tagalog_filipino_pilipino, Tetum, Tok_pisin, Uyghur_latinized, Volapuk, Walloon, Warlpiri, Xhosa, Yapese, Zulu, Latinbasic, Ubasic, Demo </p> + <h1>Glyph Chart</h1> + <p>The subset of Amble Light Condensed Italic in this kit includes all the glyphs listed below. Unicode entities are included above each glyph to help you insert individual characters into your layout.</p> + <div id="glyph_chart"> + + <div><p>&#13;</p> </div> + <div><p>&#32;</p> </div> + <div><p>&#33;</p>!</div> + <div><p>&#34;</p>"</div> + <div><p>&#35;</p>#</div> + <div><p>&#36;</p>$</div> + <div><p>&#37;</p>%</div> + <div><p>&#38;</p>&</div> + <div><p>&#39;</p>'</div> + <div><p>&#40;</p>(</div> + <div><p>&#41;</p>)</div> + <div><p>&#42;</p>*</div> + <div><p>&#43;</p>+</div> + <div><p>&#44;</p>,</div> + <div><p>&#45;</p>-</div> + <div><p>&#46;</p>.</div> + <div><p>&#47;</p>/</div> + <div><p>&#48;</p>0</div> + <div><p>&#49;</p>1</div> + <div><p>&#50;</p>2</div> + <div><p>&#51;</p>3</div> + <div><p>&#52;</p>4</div> + <div><p>&#53;</p>5</div> + <div><p>&#54;</p>6</div> + <div><p>&#55;</p>7</div> + <div><p>&#56;</p>8</div> + <div><p>&#57;</p>9</div> + <div><p>&#58;</p>:</div> + <div><p>&#59;</p>;</div> + <div><p>&#60;</p><</div> + <div><p>&#61;</p>=</div> + <div><p>&#62;</p>></div> + <div><p>&#63;</p>?</div> + <div><p>&#64;</p>@</div> + <div><p>&#65;</p>A</div> + <div><p>&#66;</p>B</div> + <div><p>&#67;</p>C</div> + <div><p>&#68;</p>D</div> + <div><p>&#69;</p>E</div> + <div><p>&#70;</p>F</div> + <div><p>&#71;</p>G</div> + <div><p>&#72;</p>H</div> + <div><p>&#73;</p>I</div> + <div><p>&#74;</p>J</div> + <div><p>&#75;</p>K</div> + <div><p>&#76;</p>L</div> + <div><p>&#77;</p>M</div> + <div><p>&#78;</p>N</div> + <div><p>&#79;</p>O</div> + <div><p>&#80;</p>P</div> + <div><p>&#81;</p>Q</div> + <div><p>&#82;</p>R</div> + <div><p>&#83;</p>S</div> + <div><p>&#84;</p>T</div> + <div><p>&#85;</p>U</div> + <div><p>&#86;</p>V</div> + <div><p>&#87;</p>W</div> + <div><p>&#88;</p>X</div> + <div><p>&#89;</p>Y</div> + <div><p>&#90;</p>Z</div> + <div><p>&#91;</p>[</div> + <div><p>&#92;</p>\</div> + <div><p>&#93;</p>]</div> + <div><p>&#94;</p>^</div> + <div><p>&#95;</p>_</div> + <div><p>&#96;</p>`</div> + <div><p>&#97;</p>a</div> + <div><p>&#98;</p>b</div> + <div><p>&#99;</p>c</div> + <div><p>&#100;</p>d</div> + <div><p>&#101;</p>e</div> + <div><p>&#102;</p>f</div> + <div><p>&#103;</p>g</div> + <div><p>&#104;</p>h</div> + <div><p>&#105;</p>i</div> + <div><p>&#106;</p>j</div> + <div><p>&#107;</p>k</div> + <div><p>&#108;</p>l</div> + <div><p>&#109;</p>m</div> + <div><p>&#110;</p>n</div> + <div><p>&#111;</p>o</div> + <div><p>&#112;</p>p</div> + <div><p>&#113;</p>q</div> + <div><p>&#114;</p>r</div> + <div><p>&#115;</p>s</div> + <div><p>&#116;</p>t</div> + <div><p>&#117;</p>u</div> + <div><p>&#118;</p>v</div> + <div><p>&#119;</p>w</div> + <div><p>&#120;</p>x</div> + <div><p>&#121;</p>y</div> + <div><p>&#122;</p>z</div> + <div><p>&#123;</p>{</div> + <div><p>&#124;</p>|</div> + <div><p>&#125;</p>}</div> + <div><p>&#126;</p>~</div> + <div><p>&#160;</p> </div> + <div><p>&#161;</p>¡</div> + <div><p>&#162;</p>¢</div> + <div><p>&#163;</p>£</div> + <div><p>&#164;</p>¤</div> + <div><p>&#165;</p>¥</div> + <div><p>&#166;</p>¦</div> + <div><p>&#167;</p>§</div> + <div><p>&#168;</p>¨</div> + <div><p>&#169;</p>©</div> + <div><p>&#170;</p>ª</div> + <div><p>&#171;</p>«</div> + <div><p>&#172;</p>¬</div> + <div><p>&#173;</p>­</div> + <div><p>&#174;</p>®</div> + <div><p>&#175;</p>¯</div> + <div><p>&#176;</p>°</div> + <div><p>&#177;</p>±</div> + <div><p>&#178;</p>²</div> + <div><p>&#179;</p>³</div> + <div><p>&#180;</p>´</div> + <div><p>&#181;</p>µ</div> + <div><p>&#182;</p>¶</div> + <div><p>&#183;</p>·</div> + <div><p>&#184;</p>¸</div> + <div><p>&#185;</p>¹</div> + <div><p>&#186;</p>º</div> + <div><p>&#187;</p>»</div> + <div><p>&#188;</p>¼</div> + <div><p>&#189;</p>½</div> + <div><p>&#190;</p>¾</div> + <div><p>&#191;</p>¿</div> + <div><p>&#192;</p>À</div> + <div><p>&#193;</p>Á</div> + <div><p>&#194;</p>Â</div> + <div><p>&#195;</p>Ã</div> + <div><p>&#196;</p>Ä</div> + <div><p>&#197;</p>Å</div> + <div><p>&#198;</p>Æ</div> + <div><p>&#199;</p>Ç</div> + <div><p>&#200;</p>È</div> + <div><p>&#201;</p>É</div> + <div><p>&#202;</p>Ê</div> + <div><p>&#203;</p>Ë</div> + <div><p>&#204;</p>Ì</div> + <div><p>&#205;</p>Í</div> + <div><p>&#206;</p>Î</div> + <div><p>&#207;</p>Ï</div> + <div><p>&#208;</p>Ð</div> + <div><p>&#209;</p>Ñ</div> + <div><p>&#210;</p>Ò</div> + <div><p>&#211;</p>Ó</div> + <div><p>&#212;</p>Ô</div> + <div><p>&#213;</p>Õ</div> + <div><p>&#214;</p>Ö</div> + <div><p>&#215;</p>×</div> + <div><p>&#216;</p>Ø</div> + <div><p>&#217;</p>Ù</div> + <div><p>&#218;</p>Ú</div> + <div><p>&#219;</p>Û</div> + <div><p>&#220;</p>Ü</div> + <div><p>&#221;</p>Ý</div> + <div><p>&#222;</p>Þ</div> + <div><p>&#223;</p>ß</div> + <div><p>&#224;</p>à</div> + <div><p>&#225;</p>á</div> + <div><p>&#226;</p>â</div> + <div><p>&#227;</p>ã</div> + <div><p>&#228;</p>ä</div> + <div><p>&#229;</p>å</div> + <div><p>&#230;</p>æ</div> + <div><p>&#231;</p>ç</div> + <div><p>&#232;</p>è</div> + <div><p>&#233;</p>é</div> + <div><p>&#234;</p>ê</div> + <div><p>&#235;</p>ë</div> + <div><p>&#236;</p>ì</div> + <div><p>&#237;</p>í</div> + <div><p>&#238;</p>î</div> + <div><p>&#239;</p>ï</div> + <div><p>&#240;</p>ð</div> + <div><p>&#241;</p>ñ</div> + <div><p>&#242;</p>ò</div> + <div><p>&#243;</p>ó</div> + <div><p>&#244;</p>ô</div> + <div><p>&#245;</p>õ</div> + <div><p>&#246;</p>ö</div> + <div><p>&#247;</p>÷</div> + <div><p>&#248;</p>ø</div> + <div><p>&#249;</p>ù</div> + <div><p>&#250;</p>ú</div> + <div><p>&#251;</p>û</div> + <div><p>&#252;</p>ü</div> + <div><p>&#253;</p>ý</div> + <div><p>&#254;</p>þ</div> + <div><p>&#255;</p>ÿ</div> + <div><p>&#338;</p>Œ</div> + <div><p>&#339;</p>œ</div> + <div><p>&#376;</p>Ÿ</div> + <div><p>&#710;</p>ˆ</div> + <div><p>&#732;</p>˜</div> + <div><p>&#8192;</p> </div> + <div><p>&#8193;</p> </div> + <div><p>&#8194;</p> </div> + <div><p>&#8195;</p> </div> + <div><p>&#8196;</p> </div> + <div><p>&#8197;</p> </div> + <div><p>&#8198;</p> </div> + <div><p>&#8199;</p> </div> + <div><p>&#8200;</p> </div> + <div><p>&#8201;</p> </div> + <div><p>&#8202;</p> </div> + <div><p>&#8208;</p>‐</div> + <div><p>&#8209;</p>‑</div> + <div><p>&#8210;</p>‒</div> + <div><p>&#8211;</p>–</div> + <div><p>&#8212;</p>—</div> + <div><p>&#8216;</p>‘</div> + <div><p>&#8217;</p>’</div> + <div><p>&#8218;</p>‚</div> + <div><p>&#8220;</p>“</div> + <div><p>&#8221;</p>”</div> + <div><p>&#8222;</p>„</div> + <div><p>&#8226;</p>•</div> + <div><p>&#8230;</p>…</div> + <div><p>&#8239;</p> </div> + <div><p>&#8249;</p>‹</div> + <div><p>&#8250;</p>›</div> + <div><p>&#8287;</p> </div> + <div><p>&#8364;</p>€</div> + <div><p>&#8482;</p>™</div> + <div><p>&#9724;</p>◼</div> + <div><p>&#64257;</p>fi</div> + <div><p>&#64258;</p>fl</div> + </div> + </div> + + + </div> + </div> + + + <div id="specs"> + + </div> + + <div id="installing"> + <div class="section"> + <div class="grid7 firstcol"> + <h1>Installing Webfonts</h1> + + <p>Webfonts are supported by all major browser platforms but not all in the same way. There are currently four different font formats that must be included in order to target all browsers. This includes TTF, WOFF, EOT and SVG.</p> + + <h2>1. Upload your webfonts</h2> + <p>You must upload your webfont kit to your website. They should be in or near the same directory as your CSS files.</p> + + <h2>2. Include the webfont stylesheet</h2> + <p>A special CSS @font-face declaration helps the various browsers select the appropriate font it needs without causing you a bunch of headaches. Learn more about this syntax by reading the <a href="https://www.fontspring.com/blog/further-hardening-of-the-bulletproof-syntax">Fontspring blog post</a> about it. The code for it is as follows:</p> + + +<code> +@font-face{ + font-family: 'MyWebFont'; + src: url('WebFont.eot'); + src: url('WebFont.eot?#iefix') format('embedded-opentype'), + url('WebFont.woff') format('woff'), + url('WebFont.ttf') format('truetype'), + url('WebFont.svg#webfont') format('svg'); +} +</code> + + <p>We've already gone ahead and generated the code for you. All you have to do is link to the stylesheet in your HTML, like this:</p> + <code><link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8" /></code> + + <h2>3. Modify your own stylesheet</h2> + <p>To take advantage of your new fonts, you must tell your stylesheet to use them. Look at the original @font-face declaration above and find the property called "font-family." The name linked there will be what you use to reference the font. Prepend that webfont name to the font stack in the "font-family" property, inside the selector you want to change. For example:</p> +<code>p { font-family: 'WebFont', Arial, sans-serif; }</code> + +<h2>4. Test</h2> +<p>Getting webfonts to work cross-browser <em>can</em> be tricky. Use the information in the sidebar to help you if you find that fonts aren't loading in a particular browser.</p> + </div> + + <div class="grid5 sidebar"> + <div class="box"> + <h2>Troubleshooting<br />Font-Face Problems</h2> + <p>Having trouble getting your webfonts to load in your new website? Here are some tips to sort out what might be the problem.</p> + + <h3>Fonts not showing in any browser</h3> + + <p>This sounds like you need to work on the plumbing. You either did not upload the fonts to the correct directory, or you did not link the fonts properly in the CSS. If you've confirmed that all this is correct and you still have a problem, take a look at your .htaccess file and see if requests are getting intercepted.</p> + + <h3>Fonts not loading in iPhone or iPad</h3> + + <p>The most common problem here is that you are serving the fonts from an IIS server. IIS refuses to serve files that have unknown MIME types. If that is the case, you must set the MIME type for SVG to "image/svg+xml" in the server settings. Follow these instructions from Microsoft if you need help.</p> + + <h3>Fonts not loading in Firefox</h3> + + <p>The primary reason for this failure? You are still using a version Firefox older than 3.5. So upgrade already! If that isn't it, then you are very likely serving fonts from a different domain. Firefox requires that all font assets be served from the same domain. Lastly it is possible that you need to add WOFF to your list of MIME types (if you are serving via IIS.)</p> + + <h3>Fonts not loading in IE</h3> + + <p>Are you looking at Internet Explorer on an actual Windows machine or are you cheating by using a service like Adobe BrowserLab? Many of these screenshot services do not render @font-face for IE. Best to test it on a real machine.</p> + + <h3>Fonts not loading in IE9</h3> + + <p>IE9, like Firefox, requires that fonts be served from the same domain as the website. Make sure that is the case.</p> + </div> + </div> + </div> + + </div> + + </div> + <div id="footer"> + <p>©2010-2017 Font Squirrel. All rights reserved.</p> + </div> +</div> +</body> +</html> diff --git a/test/samples/aurorae/fonts/amble/amble-lightcondenseditalic-webfont.ttf b/test/samples/aurorae/fonts/amble/amble-lightcondenseditalic-webfont.ttf new file mode 100755 index 0000000000000000000000000000000000000000..1739c02b8bee0fbf4d7e7343404c68c38c73bbe6 Binary files /dev/null and b/test/samples/aurorae/fonts/amble/amble-lightcondenseditalic-webfont.ttf differ diff --git a/test/samples/aurorae/fonts/amble/amble-lightcondenseditalic-webfont.woff b/test/samples/aurorae/fonts/amble/amble-lightcondenseditalic-webfont.woff new file mode 100755 index 0000000000000000000000000000000000000000..e02d40d9baaefb5a69af77380466d3f89b1ee78d Binary files /dev/null and b/test/samples/aurorae/fonts/amble/amble-lightcondenseditalic-webfont.woff differ diff --git a/test/samples/aurorae/fonts/amble/amble-lightcondenseditalic-webfont.woff2 b/test/samples/aurorae/fonts/amble/amble-lightcondenseditalic-webfont.woff2 new file mode 100755 index 0000000000000000000000000000000000000000..2b490a4d39428dbc4dd860599769bdc02f4f90a9 Binary files /dev/null and b/test/samples/aurorae/fonts/amble/amble-lightcondenseditalic-webfont.woff2 differ diff --git a/test/samples/aurorae/fonts/amble/amble-lightitalic-demo.html b/test/samples/aurorae/fonts/amble/amble-lightitalic-demo.html new file mode 100755 index 0000000000000000000000000000000000000000..6f7f4ff4aefa114b6f145c9b8506f0b353ef7025 --- /dev/null +++ b/test/samples/aurorae/fonts/amble/amble-lightitalic-demo.html @@ -0,0 +1,620 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> + +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> +<head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> + <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js" type="text/javascript" charset="utf-8"></script> + <script type="text/javascript"> + (function($){$.fn.easyTabs=function(option){var param=jQuery.extend({fadeSpeed:"fast",defaultContent:1,activeClass:'active'},option);$(this).each(function(){var thisId="#"+this.id;if(param.defaultContent==''){param.defaultContent=1;} + if(typeof param.defaultContent=="number") + {var defaultTab=$(thisId+" .tabs li:eq("+(param.defaultContent-1)+") a").attr('href').substr(1);}else{var defaultTab=param.defaultContent;} + $(thisId+" .tabs li a").each(function(){var tabToHide=$(this).attr('href').substr(1);$("#"+tabToHide).addClass('easytabs-tab-content');});hideAll();changeContent(defaultTab);function hideAll(){$(thisId+" .easytabs-tab-content").hide();} + function changeContent(tabId){hideAll();$(thisId+" .tabs li").removeClass(param.activeClass);$(thisId+" .tabs li a[href=#"+tabId+"]").closest('li').addClass(param.activeClass);if(param.fadeSpeed!="none") + {$(thisId+" #"+tabId).fadeIn(param.fadeSpeed);}else{$(thisId+" #"+tabId).show();}} + $(thisId+" .tabs li").click(function(){var tabId=$(this).find('a').attr('href').substr(1);changeContent(tabId);return false;});});}})(jQuery); + </script> + <link rel="stylesheet" href="specimen_files/specimen_stylesheet.css" type="text/css" charset="utf-8" /> + <link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8" /> + + <style type="text/css"> + body{ + font-family: 'amblelight_italic'; + } + </style> + + <title>Amble Light Italic Specimen</title> + + + <script type="text/javascript" charset="utf-8"> + $(document).ready(function() { + $('#container').easyTabs({defaultContent:1}); + }); + </script> +</head> + +<body> +<div id="container"> + <div id="header"> + Amble Light Italic </div> + <ul class="tabs"> + <li><a href="#specimen">Specimen</a></li> + <li><a href="#layout">Sample Layout</a></li> + <li><a href="#glyphs">Glyphs & Languages</a></li> + <li><a href="#installing">Installing Webfonts</a></li> + + </ul> + + <div id="main_content"> + + + <div id="specimen"> + + <div class="section"> + <div class="grid12 firstcol"> + <div class="huge">AaBb</div> + </div> + </div> + + <div class="section"> + <div class="glyph_range">A​B​C​D​E​F​G​H​I​J​K​L​M​N​O​P​Q​R​S​T​U​V​W​X​Y​Z​a​b​c​d​e​f​g​h​i​j​k​l​m​n​o​p​q​r​s​t​u​v​w​x​y​z​1​2​3​4​5​6​7​8​9​0​&​.​,​?​!​@​(​)​#​$​%​*​+​-​=​:​;</div> + </div> + <div class="section"> + <div class="grid12 firstcol"> + <table class="sample_table"> + <tr><td>10</td><td class="size10">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>11</td><td class="size11">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>12</td><td class="size12">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>13</td><td class="size13">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>14</td><td class="size14">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>16</td><td class="size16">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>18</td><td class="size18">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>20</td><td class="size20">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>24</td><td class="size24">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>30</td><td class="size30">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>36</td><td class="size36">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>48</td><td class="size48">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>60</td><td class="size60">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>72</td><td class="size72">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>90</td><td class="size90">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + </table> + + </div> + + </div> + + + + <div class="section" id="bodycomparison"> + + + <div id="xheight"> + <div class="fontbody">◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼body</div><div class="arialbody">body</div><div class="verdanabody">body</div><div class="georgiabody">body</div></div> + <div class="fontbody" style="z-index:1"> + body<span>Amble Light Italic</span> + </div> + <div class="arialbody" style="z-index:1"> + body<span>Arial</span> + </div> + <div class="verdanabody" style="z-index:1"> + body<span>Verdana</span> + </div> + <div class="georgiabody" style="z-index:1"> + body<span>Georgia</span> + </div> + + + + </div> + + + <div class="section psample psample_row1" id=""> + + <div class="grid2 firstcol"> + <p class="size10"><span>10.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid3"> + <p class="size11"><span>11.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid3"> + <p class="size12"><span>12.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid4"> + <p class="size13"><span>13.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="white_blend"></div> + + </div> + <div class="section psample psample_row2" id=""> + <div class="grid3 firstcol"> + <p class="size14"><span>14.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid4"> + <p class="size16"><span>16.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid5"> + <p class="size18"><span>18.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + + <div class="white_blend"></div> + + </div> + + <div class="section psample psample_row3" id=""> + <div class="grid5 firstcol"> + <p class="size20"><span>20.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + <div class="grid7"> + <p class="size24"><span>24.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + + <div class="white_blend"></div> + + </div> + + <div class="section psample psample_row4" id=""> + <div class="grid12 firstcol"> + <p class="size30"><span>30.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + <div class="white_blend"></div> + + </div> + + + + <div class="section psample psample_row1 fullreverse"> + <div class="grid2 firstcol"> + <p class="size10"><span>10.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid3"> + <p class="size11"><span>11.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid3"> + <p class="size12"><span>12.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid4"> + <p class="size13"><span>13.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="black_blend"></div> + + </div> + + <div class="section psample psample_row2 fullreverse"> + <div class="grid3 firstcol"> + <p class="size14"><span>14.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid4"> + <p class="size16"><span>16.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid5"> + <p class="size18"><span>18.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="black_blend"></div> + + </div> + + <div class="section psample fullreverse psample_row3" id=""> + <div class="grid5 firstcol"> + <p class="size20"><span>20.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + <div class="grid7"> + <p class="size24"><span>24.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + + <div class="black_blend"></div> + + </div> + + <div class="section psample fullreverse psample_row4" id="" style="border-bottom: 20px #000 solid;"> + <div class="grid12 firstcol"> + <p class="size30"><span>30.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + <div class="black_blend"></div> + + </div> + + + + + </div> + + <div id="layout"> + + <div class="section"> + + <div class="grid12 firstcol"> + <h1>Lorem Ipsum Dolor</h1> + <h2>Etiam porta sem malesuada magna mollis euismod</h2> + + <p class="byline">By <a href="#link">Aenean Lacinia</a></p> + </div> + </div> + <div class="section"> + <div class="grid8 firstcol"> + <p class="large">Donec sed odio dui. Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p> + + + <h3>Pellentesque ornare sem</h3> + + <p>Maecenas sed diam eget risus varius blandit sit amet non magna. Maecenas faucibus mollis interdum. Donec ullamcorper nulla non metus auctor fringilla. Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam id dolor id nibh ultricies vehicula ut id elit. </p> + + <p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. </p> + + <p>Nulla vitae elit libero, a pharetra augue. Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Aenean lacinia bibendum nulla sed consectetur. </p> + + <p>Nullam quis risus eget urna mollis ornare vel eu leo. Nullam quis risus eget urna mollis ornare vel eu leo. Maecenas sed diam eget risus varius blandit sit amet non magna. Donec ullamcorper nulla non metus auctor fringilla. </p> + + <h3>Cras mattis consectetur</h3> + + <p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Aenean lacinia bibendum nulla sed consectetur. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Cras mattis consectetur purus sit amet fermentum. </p> + + <p>Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam quis risus eget urna mollis ornare vel eu leo. Cras mattis consectetur purus sit amet fermentum.</p> + </div> + + <div class="grid4 sidebar"> + + <div class="box reverse"> + <p class="last">Nullam quis risus eget urna mollis ornare vel eu leo. Donec ullamcorper nulla non metus auctor fringilla. Cras mattis consectetur purus sit amet fermentum. Sed posuere consectetur est at lobortis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. </p> + </div> + + <p class="caption">Maecenas sed diam eget risus varius.</p> + + <p>Vestibulum id ligula porta felis euismod semper. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Vestibulum id ligula porta felis euismod semper. Sed posuere consectetur est at lobortis. Maecenas sed diam eget risus varius blandit sit amet non magna. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p> + + + + <p>Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Aenean lacinia bibendum nulla sed consectetur. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Aenean lacinia bibendum nulla sed consectetur. Nullam quis risus eget urna mollis ornare vel eu leo. </p> + + <p>Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Donec ullamcorper nulla non metus auctor fringilla. Maecenas faucibus mollis interdum. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p> + + </div> + </div> + + </div> + + + + + + + <div id="glyphs"> + <div class="section"> + <div class="grid12 firstcol"> + + <h1>Language Support</h1> + <p>The subset of Amble Light Italic in this kit supports the following languages:<br /> + + Albanian, Basque, Breton, Chamorro, Danish, Dutch, English, Faroese, Finnish, French, Frisian, Galician, German, Icelandic, Italian, Malagasy, Norwegian, Portuguese, Spanish, Alsatian, Aragonese, Arapaho, Arrernte, Asturian, Aymara, Bislama, Cebuano, Corsican, Fijian, French_creole, Genoese, Gilbertese, Greenlandic, Haitian_creole, Hiligaynon, Hmong, Hopi, Ibanag, Iloko_ilokano, Indonesian, Interglossa_glosa, Interlingua, Irish_gaelic, Jerriais, Lojban, Lombard, Luxembourgeois, Manx, Mohawk, Norfolk_pitcairnese, Occitan, Oromo, Pangasinan, Papiamento, Piedmontese, Potawatomi, Rhaeto-romance, Romansh, Rotokas, Sami_lule, Samoan, Sardinian, Scots_gaelic, Seychelles_creole, Shona, Sicilian, Somali, Southern_ndebele, Swahili, Swati_swazi, Tagalog_filipino_pilipino, Tetum, Tok_pisin, Uyghur_latinized, Volapuk, Walloon, Warlpiri, Xhosa, Yapese, Zulu, Latinbasic, Ubasic, Demo </p> + <h1>Glyph Chart</h1> + <p>The subset of Amble Light Italic in this kit includes all the glyphs listed below. Unicode entities are included above each glyph to help you insert individual characters into your layout.</p> + <div id="glyph_chart"> + + <div><p>&#13;</p> </div> + <div><p>&#32;</p> </div> + <div><p>&#33;</p>!</div> + <div><p>&#34;</p>"</div> + <div><p>&#35;</p>#</div> + <div><p>&#36;</p>$</div> + <div><p>&#37;</p>%</div> + <div><p>&#38;</p>&</div> + <div><p>&#39;</p>'</div> + <div><p>&#40;</p>(</div> + <div><p>&#41;</p>)</div> + <div><p>&#42;</p>*</div> + <div><p>&#43;</p>+</div> + <div><p>&#44;</p>,</div> + <div><p>&#45;</p>-</div> + <div><p>&#46;</p>.</div> + <div><p>&#47;</p>/</div> + <div><p>&#48;</p>0</div> + <div><p>&#49;</p>1</div> + <div><p>&#50;</p>2</div> + <div><p>&#51;</p>3</div> + <div><p>&#52;</p>4</div> + <div><p>&#53;</p>5</div> + <div><p>&#54;</p>6</div> + <div><p>&#55;</p>7</div> + <div><p>&#56;</p>8</div> + <div><p>&#57;</p>9</div> + <div><p>&#58;</p>:</div> + <div><p>&#59;</p>;</div> + <div><p>&#60;</p><</div> + <div><p>&#61;</p>=</div> + <div><p>&#62;</p>></div> + <div><p>&#63;</p>?</div> + <div><p>&#64;</p>@</div> + <div><p>&#65;</p>A</div> + <div><p>&#66;</p>B</div> + <div><p>&#67;</p>C</div> + <div><p>&#68;</p>D</div> + <div><p>&#69;</p>E</div> + <div><p>&#70;</p>F</div> + <div><p>&#71;</p>G</div> + <div><p>&#72;</p>H</div> + <div><p>&#73;</p>I</div> + <div><p>&#74;</p>J</div> + <div><p>&#75;</p>K</div> + <div><p>&#76;</p>L</div> + <div><p>&#77;</p>M</div> + <div><p>&#78;</p>N</div> + <div><p>&#79;</p>O</div> + <div><p>&#80;</p>P</div> + <div><p>&#81;</p>Q</div> + <div><p>&#82;</p>R</div> + <div><p>&#83;</p>S</div> + <div><p>&#84;</p>T</div> + <div><p>&#85;</p>U</div> + <div><p>&#86;</p>V</div> + <div><p>&#87;</p>W</div> + <div><p>&#88;</p>X</div> + <div><p>&#89;</p>Y</div> + <div><p>&#90;</p>Z</div> + <div><p>&#91;</p>[</div> + <div><p>&#92;</p>\</div> + <div><p>&#93;</p>]</div> + <div><p>&#94;</p>^</div> + <div><p>&#95;</p>_</div> + <div><p>&#96;</p>`</div> + <div><p>&#97;</p>a</div> + <div><p>&#98;</p>b</div> + <div><p>&#99;</p>c</div> + <div><p>&#100;</p>d</div> + <div><p>&#101;</p>e</div> + <div><p>&#102;</p>f</div> + <div><p>&#103;</p>g</div> + <div><p>&#104;</p>h</div> + <div><p>&#105;</p>i</div> + <div><p>&#106;</p>j</div> + <div><p>&#107;</p>k</div> + <div><p>&#108;</p>l</div> + <div><p>&#109;</p>m</div> + <div><p>&#110;</p>n</div> + <div><p>&#111;</p>o</div> + <div><p>&#112;</p>p</div> + <div><p>&#113;</p>q</div> + <div><p>&#114;</p>r</div> + <div><p>&#115;</p>s</div> + <div><p>&#116;</p>t</div> + <div><p>&#117;</p>u</div> + <div><p>&#118;</p>v</div> + <div><p>&#119;</p>w</div> + <div><p>&#120;</p>x</div> + <div><p>&#121;</p>y</div> + <div><p>&#122;</p>z</div> + <div><p>&#123;</p>{</div> + <div><p>&#124;</p>|</div> + <div><p>&#125;</p>}</div> + <div><p>&#126;</p>~</div> + <div><p>&#160;</p> </div> + <div><p>&#161;</p>¡</div> + <div><p>&#162;</p>¢</div> + <div><p>&#163;</p>£</div> + <div><p>&#164;</p>¤</div> + <div><p>&#165;</p>¥</div> + <div><p>&#166;</p>¦</div> + <div><p>&#167;</p>§</div> + <div><p>&#168;</p>¨</div> + <div><p>&#169;</p>©</div> + <div><p>&#170;</p>ª</div> + <div><p>&#171;</p>«</div> + <div><p>&#172;</p>¬</div> + <div><p>&#173;</p>­</div> + <div><p>&#174;</p>®</div> + <div><p>&#175;</p>¯</div> + <div><p>&#176;</p>°</div> + <div><p>&#177;</p>±</div> + <div><p>&#178;</p>²</div> + <div><p>&#179;</p>³</div> + <div><p>&#180;</p>´</div> + <div><p>&#181;</p>µ</div> + <div><p>&#182;</p>¶</div> + <div><p>&#183;</p>·</div> + <div><p>&#184;</p>¸</div> + <div><p>&#185;</p>¹</div> + <div><p>&#186;</p>º</div> + <div><p>&#187;</p>»</div> + <div><p>&#188;</p>¼</div> + <div><p>&#189;</p>½</div> + <div><p>&#190;</p>¾</div> + <div><p>&#191;</p>¿</div> + <div><p>&#192;</p>À</div> + <div><p>&#193;</p>Á</div> + <div><p>&#194;</p>Â</div> + <div><p>&#195;</p>Ã</div> + <div><p>&#196;</p>Ä</div> + <div><p>&#197;</p>Å</div> + <div><p>&#198;</p>Æ</div> + <div><p>&#199;</p>Ç</div> + <div><p>&#200;</p>È</div> + <div><p>&#201;</p>É</div> + <div><p>&#202;</p>Ê</div> + <div><p>&#203;</p>Ë</div> + <div><p>&#204;</p>Ì</div> + <div><p>&#205;</p>Í</div> + <div><p>&#206;</p>Î</div> + <div><p>&#207;</p>Ï</div> + <div><p>&#208;</p>Ð</div> + <div><p>&#209;</p>Ñ</div> + <div><p>&#210;</p>Ò</div> + <div><p>&#211;</p>Ó</div> + <div><p>&#212;</p>Ô</div> + <div><p>&#213;</p>Õ</div> + <div><p>&#214;</p>Ö</div> + <div><p>&#215;</p>×</div> + <div><p>&#216;</p>Ø</div> + <div><p>&#217;</p>Ù</div> + <div><p>&#218;</p>Ú</div> + <div><p>&#219;</p>Û</div> + <div><p>&#220;</p>Ü</div> + <div><p>&#221;</p>Ý</div> + <div><p>&#222;</p>Þ</div> + <div><p>&#223;</p>ß</div> + <div><p>&#224;</p>à</div> + <div><p>&#225;</p>á</div> + <div><p>&#226;</p>â</div> + <div><p>&#227;</p>ã</div> + <div><p>&#228;</p>ä</div> + <div><p>&#229;</p>å</div> + <div><p>&#230;</p>æ</div> + <div><p>&#231;</p>ç</div> + <div><p>&#232;</p>è</div> + <div><p>&#233;</p>é</div> + <div><p>&#234;</p>ê</div> + <div><p>&#235;</p>ë</div> + <div><p>&#236;</p>ì</div> + <div><p>&#237;</p>í</div> + <div><p>&#238;</p>î</div> + <div><p>&#239;</p>ï</div> + <div><p>&#240;</p>ð</div> + <div><p>&#241;</p>ñ</div> + <div><p>&#242;</p>ò</div> + <div><p>&#243;</p>ó</div> + <div><p>&#244;</p>ô</div> + <div><p>&#245;</p>õ</div> + <div><p>&#246;</p>ö</div> + <div><p>&#247;</p>÷</div> + <div><p>&#248;</p>ø</div> + <div><p>&#249;</p>ù</div> + <div><p>&#250;</p>ú</div> + <div><p>&#251;</p>û</div> + <div><p>&#252;</p>ü</div> + <div><p>&#253;</p>ý</div> + <div><p>&#254;</p>þ</div> + <div><p>&#255;</p>ÿ</div> + <div><p>&#338;</p>Œ</div> + <div><p>&#339;</p>œ</div> + <div><p>&#376;</p>Ÿ</div> + <div><p>&#710;</p>ˆ</div> + <div><p>&#732;</p>˜</div> + <div><p>&#8192;</p> </div> + <div><p>&#8193;</p> </div> + <div><p>&#8194;</p> </div> + <div><p>&#8195;</p> </div> + <div><p>&#8196;</p> </div> + <div><p>&#8197;</p> </div> + <div><p>&#8198;</p> </div> + <div><p>&#8199;</p> </div> + <div><p>&#8200;</p> </div> + <div><p>&#8201;</p> </div> + <div><p>&#8202;</p> </div> + <div><p>&#8208;</p>‐</div> + <div><p>&#8209;</p>‑</div> + <div><p>&#8210;</p>‒</div> + <div><p>&#8211;</p>–</div> + <div><p>&#8212;</p>—</div> + <div><p>&#8216;</p>‘</div> + <div><p>&#8217;</p>’</div> + <div><p>&#8218;</p>‚</div> + <div><p>&#8220;</p>“</div> + <div><p>&#8221;</p>”</div> + <div><p>&#8222;</p>„</div> + <div><p>&#8226;</p>•</div> + <div><p>&#8230;</p>…</div> + <div><p>&#8239;</p> </div> + <div><p>&#8249;</p>‹</div> + <div><p>&#8250;</p>›</div> + <div><p>&#8287;</p> </div> + <div><p>&#8364;</p>€</div> + <div><p>&#8482;</p>™</div> + <div><p>&#9724;</p>◼</div> + <div><p>&#64257;</p>fi</div> + <div><p>&#64258;</p>fl</div> + </div> + </div> + + + </div> + </div> + + + <div id="specs"> + + </div> + + <div id="installing"> + <div class="section"> + <div class="grid7 firstcol"> + <h1>Installing Webfonts</h1> + + <p>Webfonts are supported by all major browser platforms but not all in the same way. There are currently four different font formats that must be included in order to target all browsers. This includes TTF, WOFF, EOT and SVG.</p> + + <h2>1. Upload your webfonts</h2> + <p>You must upload your webfont kit to your website. They should be in or near the same directory as your CSS files.</p> + + <h2>2. Include the webfont stylesheet</h2> + <p>A special CSS @font-face declaration helps the various browsers select the appropriate font it needs without causing you a bunch of headaches. Learn more about this syntax by reading the <a href="https://www.fontspring.com/blog/further-hardening-of-the-bulletproof-syntax">Fontspring blog post</a> about it. The code for it is as follows:</p> + + +<code> +@font-face{ + font-family: 'MyWebFont'; + src: url('WebFont.eot'); + src: url('WebFont.eot?#iefix') format('embedded-opentype'), + url('WebFont.woff') format('woff'), + url('WebFont.ttf') format('truetype'), + url('WebFont.svg#webfont') format('svg'); +} +</code> + + <p>We've already gone ahead and generated the code for you. All you have to do is link to the stylesheet in your HTML, like this:</p> + <code><link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8" /></code> + + <h2>3. Modify your own stylesheet</h2> + <p>To take advantage of your new fonts, you must tell your stylesheet to use them. Look at the original @font-face declaration above and find the property called "font-family." The name linked there will be what you use to reference the font. Prepend that webfont name to the font stack in the "font-family" property, inside the selector you want to change. For example:</p> +<code>p { font-family: 'WebFont', Arial, sans-serif; }</code> + +<h2>4. Test</h2> +<p>Getting webfonts to work cross-browser <em>can</em> be tricky. Use the information in the sidebar to help you if you find that fonts aren't loading in a particular browser.</p> + </div> + + <div class="grid5 sidebar"> + <div class="box"> + <h2>Troubleshooting<br />Font-Face Problems</h2> + <p>Having trouble getting your webfonts to load in your new website? Here are some tips to sort out what might be the problem.</p> + + <h3>Fonts not showing in any browser</h3> + + <p>This sounds like you need to work on the plumbing. You either did not upload the fonts to the correct directory, or you did not link the fonts properly in the CSS. If you've confirmed that all this is correct and you still have a problem, take a look at your .htaccess file and see if requests are getting intercepted.</p> + + <h3>Fonts not loading in iPhone or iPad</h3> + + <p>The most common problem here is that you are serving the fonts from an IIS server. IIS refuses to serve files that have unknown MIME types. If that is the case, you must set the MIME type for SVG to "image/svg+xml" in the server settings. Follow these instructions from Microsoft if you need help.</p> + + <h3>Fonts not loading in Firefox</h3> + + <p>The primary reason for this failure? You are still using a version Firefox older than 3.5. So upgrade already! If that isn't it, then you are very likely serving fonts from a different domain. Firefox requires that all font assets be served from the same domain. Lastly it is possible that you need to add WOFF to your list of MIME types (if you are serving via IIS.)</p> + + <h3>Fonts not loading in IE</h3> + + <p>Are you looking at Internet Explorer on an actual Windows machine or are you cheating by using a service like Adobe BrowserLab? Many of these screenshot services do not render @font-face for IE. Best to test it on a real machine.</p> + + <h3>Fonts not loading in IE9</h3> + + <p>IE9, like Firefox, requires that fonts be served from the same domain as the website. Make sure that is the case.</p> + </div> + </div> + </div> + + </div> + + </div> + <div id="footer"> + <p>©2010-2017 Font Squirrel. All rights reserved.</p> + </div> +</div> +</body> +</html> diff --git a/test/samples/aurorae/fonts/amble/amble-lightitalic-webfont.woff b/test/samples/aurorae/fonts/amble/amble-lightitalic-webfont.woff new file mode 100755 index 0000000000000000000000000000000000000000..55cc9f85f32b680ac28caccdac87b6fe47396c28 Binary files /dev/null and b/test/samples/aurorae/fonts/amble/amble-lightitalic-webfont.woff differ diff --git a/test/samples/aurorae/fonts/amble/amble-lightitalic-webfont.woff2 b/test/samples/aurorae/fonts/amble/amble-lightitalic-webfont.woff2 new file mode 100755 index 0000000000000000000000000000000000000000..af203792b08ff16d4840c64702debd857eb0751e Binary files /dev/null and b/test/samples/aurorae/fonts/amble/amble-lightitalic-webfont.woff2 differ diff --git a/test/samples/aurorae/fonts/amble/amble-regular-demo.html b/test/samples/aurorae/fonts/amble/amble-regular-demo.html new file mode 100755 index 0000000000000000000000000000000000000000..ee0fad6f5320a6ffa33e822fb4fa521262c419c4 --- /dev/null +++ b/test/samples/aurorae/fonts/amble/amble-regular-demo.html @@ -0,0 +1,620 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> + +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> +<head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> + <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js" type="text/javascript" charset="utf-8"></script> + <script type="text/javascript"> + (function($){$.fn.easyTabs=function(option){var param=jQuery.extend({fadeSpeed:"fast",defaultContent:1,activeClass:'active'},option);$(this).each(function(){var thisId="#"+this.id;if(param.defaultContent==''){param.defaultContent=1;} + if(typeof param.defaultContent=="number") + {var defaultTab=$(thisId+" .tabs li:eq("+(param.defaultContent-1)+") a").attr('href').substr(1);}else{var defaultTab=param.defaultContent;} + $(thisId+" .tabs li a").each(function(){var tabToHide=$(this).attr('href').substr(1);$("#"+tabToHide).addClass('easytabs-tab-content');});hideAll();changeContent(defaultTab);function hideAll(){$(thisId+" .easytabs-tab-content").hide();} + function changeContent(tabId){hideAll();$(thisId+" .tabs li").removeClass(param.activeClass);$(thisId+" .tabs li a[href=#"+tabId+"]").closest('li').addClass(param.activeClass);if(param.fadeSpeed!="none") + {$(thisId+" #"+tabId).fadeIn(param.fadeSpeed);}else{$(thisId+" #"+tabId).show();}} + $(thisId+" .tabs li").click(function(){var tabId=$(this).find('a').attr('href').substr(1);changeContent(tabId);return false;});});}})(jQuery); + </script> + <link rel="stylesheet" href="specimen_files/specimen_stylesheet.css" type="text/css" charset="utf-8" /> + <link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8" /> + + <style type="text/css"> + body{ + font-family: 'ambleregular'; + } + </style> + + <title>Amble Regular Specimen</title> + + + <script type="text/javascript" charset="utf-8"> + $(document).ready(function() { + $('#container').easyTabs({defaultContent:1}); + }); + </script> +</head> + +<body> +<div id="container"> + <div id="header"> + Amble Regular </div> + <ul class="tabs"> + <li><a href="#specimen">Specimen</a></li> + <li><a href="#layout">Sample Layout</a></li> + <li><a href="#glyphs">Glyphs & Languages</a></li> + <li><a href="#installing">Installing Webfonts</a></li> + + </ul> + + <div id="main_content"> + + + <div id="specimen"> + + <div class="section"> + <div class="grid12 firstcol"> + <div class="huge">AaBb</div> + </div> + </div> + + <div class="section"> + <div class="glyph_range">A​B​C​D​E​F​G​H​I​J​K​L​M​N​O​P​Q​R​S​T​U​V​W​X​Y​Z​a​b​c​d​e​f​g​h​i​j​k​l​m​n​o​p​q​r​s​t​u​v​w​x​y​z​1​2​3​4​5​6​7​8​9​0​&​.​,​?​!​@​(​)​#​$​%​*​+​-​=​:​;</div> + </div> + <div class="section"> + <div class="grid12 firstcol"> + <table class="sample_table"> + <tr><td>10</td><td class="size10">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>11</td><td class="size11">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>12</td><td class="size12">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>13</td><td class="size13">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>14</td><td class="size14">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>16</td><td class="size16">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>18</td><td class="size18">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>20</td><td class="size20">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>24</td><td class="size24">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>30</td><td class="size30">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>36</td><td class="size36">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>48</td><td class="size48">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>60</td><td class="size60">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>72</td><td class="size72">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>90</td><td class="size90">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + </table> + + </div> + + </div> + + + + <div class="section" id="bodycomparison"> + + + <div id="xheight"> + <div class="fontbody">◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼body</div><div class="arialbody">body</div><div class="verdanabody">body</div><div class="georgiabody">body</div></div> + <div class="fontbody" style="z-index:1"> + body<span>Amble Regular</span> + </div> + <div class="arialbody" style="z-index:1"> + body<span>Arial</span> + </div> + <div class="verdanabody" style="z-index:1"> + body<span>Verdana</span> + </div> + <div class="georgiabody" style="z-index:1"> + body<span>Georgia</span> + </div> + + + + </div> + + + <div class="section psample psample_row1" id=""> + + <div class="grid2 firstcol"> + <p class="size10"><span>10.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid3"> + <p class="size11"><span>11.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid3"> + <p class="size12"><span>12.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid4"> + <p class="size13"><span>13.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="white_blend"></div> + + </div> + <div class="section psample psample_row2" id=""> + <div class="grid3 firstcol"> + <p class="size14"><span>14.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid4"> + <p class="size16"><span>16.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid5"> + <p class="size18"><span>18.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + + <div class="white_blend"></div> + + </div> + + <div class="section psample psample_row3" id=""> + <div class="grid5 firstcol"> + <p class="size20"><span>20.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + <div class="grid7"> + <p class="size24"><span>24.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + + <div class="white_blend"></div> + + </div> + + <div class="section psample psample_row4" id=""> + <div class="grid12 firstcol"> + <p class="size30"><span>30.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + <div class="white_blend"></div> + + </div> + + + + <div class="section psample psample_row1 fullreverse"> + <div class="grid2 firstcol"> + <p class="size10"><span>10.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid3"> + <p class="size11"><span>11.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid3"> + <p class="size12"><span>12.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid4"> + <p class="size13"><span>13.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="black_blend"></div> + + </div> + + <div class="section psample psample_row2 fullreverse"> + <div class="grid3 firstcol"> + <p class="size14"><span>14.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid4"> + <p class="size16"><span>16.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid5"> + <p class="size18"><span>18.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="black_blend"></div> + + </div> + + <div class="section psample fullreverse psample_row3" id=""> + <div class="grid5 firstcol"> + <p class="size20"><span>20.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + <div class="grid7"> + <p class="size24"><span>24.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + + <div class="black_blend"></div> + + </div> + + <div class="section psample fullreverse psample_row4" id="" style="border-bottom: 20px #000 solid;"> + <div class="grid12 firstcol"> + <p class="size30"><span>30.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + <div class="black_blend"></div> + + </div> + + + + + </div> + + <div id="layout"> + + <div class="section"> + + <div class="grid12 firstcol"> + <h1>Lorem Ipsum Dolor</h1> + <h2>Etiam porta sem malesuada magna mollis euismod</h2> + + <p class="byline">By <a href="#link">Aenean Lacinia</a></p> + </div> + </div> + <div class="section"> + <div class="grid8 firstcol"> + <p class="large">Donec sed odio dui. Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p> + + + <h3>Pellentesque ornare sem</h3> + + <p>Maecenas sed diam eget risus varius blandit sit amet non magna. Maecenas faucibus mollis interdum. Donec ullamcorper nulla non metus auctor fringilla. Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam id dolor id nibh ultricies vehicula ut id elit. </p> + + <p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. </p> + + <p>Nulla vitae elit libero, a pharetra augue. Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Aenean lacinia bibendum nulla sed consectetur. </p> + + <p>Nullam quis risus eget urna mollis ornare vel eu leo. Nullam quis risus eget urna mollis ornare vel eu leo. Maecenas sed diam eget risus varius blandit sit amet non magna. Donec ullamcorper nulla non metus auctor fringilla. </p> + + <h3>Cras mattis consectetur</h3> + + <p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Aenean lacinia bibendum nulla sed consectetur. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Cras mattis consectetur purus sit amet fermentum. </p> + + <p>Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam quis risus eget urna mollis ornare vel eu leo. Cras mattis consectetur purus sit amet fermentum.</p> + </div> + + <div class="grid4 sidebar"> + + <div class="box reverse"> + <p class="last">Nullam quis risus eget urna mollis ornare vel eu leo. Donec ullamcorper nulla non metus auctor fringilla. Cras mattis consectetur purus sit amet fermentum. Sed posuere consectetur est at lobortis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. </p> + </div> + + <p class="caption">Maecenas sed diam eget risus varius.</p> + + <p>Vestibulum id ligula porta felis euismod semper. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Vestibulum id ligula porta felis euismod semper. Sed posuere consectetur est at lobortis. Maecenas sed diam eget risus varius blandit sit amet non magna. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p> + + + + <p>Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Aenean lacinia bibendum nulla sed consectetur. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Aenean lacinia bibendum nulla sed consectetur. Nullam quis risus eget urna mollis ornare vel eu leo. </p> + + <p>Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Donec ullamcorper nulla non metus auctor fringilla. Maecenas faucibus mollis interdum. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p> + + </div> + </div> + + </div> + + + + + + + <div id="glyphs"> + <div class="section"> + <div class="grid12 firstcol"> + + <h1>Language Support</h1> + <p>The subset of Amble Regular in this kit supports the following languages:<br /> + + Albanian, Basque, Breton, Chamorro, Danish, Dutch, English, Faroese, Finnish, French, Frisian, Galician, German, Icelandic, Italian, Malagasy, Norwegian, Portuguese, Spanish, Alsatian, Aragonese, Arapaho, Arrernte, Asturian, Aymara, Bislama, Cebuano, Corsican, Fijian, French_creole, Genoese, Gilbertese, Greenlandic, Haitian_creole, Hiligaynon, Hmong, Hopi, Ibanag, Iloko_ilokano, Indonesian, Interglossa_glosa, Interlingua, Irish_gaelic, Jerriais, Lojban, Lombard, Luxembourgeois, Manx, Mohawk, Norfolk_pitcairnese, Occitan, Oromo, Pangasinan, Papiamento, Piedmontese, Potawatomi, Rhaeto-romance, Romansh, Rotokas, Sami_lule, Samoan, Sardinian, Scots_gaelic, Seychelles_creole, Shona, Sicilian, Somali, Southern_ndebele, Swahili, Swati_swazi, Tagalog_filipino_pilipino, Tetum, Tok_pisin, Uyghur_latinized, Volapuk, Walloon, Warlpiri, Xhosa, Yapese, Zulu, Latinbasic, Ubasic, Demo </p> + <h1>Glyph Chart</h1> + <p>The subset of Amble Regular in this kit includes all the glyphs listed below. Unicode entities are included above each glyph to help you insert individual characters into your layout.</p> + <div id="glyph_chart"> + + <div><p>&#13;</p> </div> + <div><p>&#32;</p> </div> + <div><p>&#33;</p>!</div> + <div><p>&#34;</p>"</div> + <div><p>&#35;</p>#</div> + <div><p>&#36;</p>$</div> + <div><p>&#37;</p>%</div> + <div><p>&#38;</p>&</div> + <div><p>&#39;</p>'</div> + <div><p>&#40;</p>(</div> + <div><p>&#41;</p>)</div> + <div><p>&#42;</p>*</div> + <div><p>&#43;</p>+</div> + <div><p>&#44;</p>,</div> + <div><p>&#45;</p>-</div> + <div><p>&#46;</p>.</div> + <div><p>&#47;</p>/</div> + <div><p>&#48;</p>0</div> + <div><p>&#49;</p>1</div> + <div><p>&#50;</p>2</div> + <div><p>&#51;</p>3</div> + <div><p>&#52;</p>4</div> + <div><p>&#53;</p>5</div> + <div><p>&#54;</p>6</div> + <div><p>&#55;</p>7</div> + <div><p>&#56;</p>8</div> + <div><p>&#57;</p>9</div> + <div><p>&#58;</p>:</div> + <div><p>&#59;</p>;</div> + <div><p>&#60;</p><</div> + <div><p>&#61;</p>=</div> + <div><p>&#62;</p>></div> + <div><p>&#63;</p>?</div> + <div><p>&#64;</p>@</div> + <div><p>&#65;</p>A</div> + <div><p>&#66;</p>B</div> + <div><p>&#67;</p>C</div> + <div><p>&#68;</p>D</div> + <div><p>&#69;</p>E</div> + <div><p>&#70;</p>F</div> + <div><p>&#71;</p>G</div> + <div><p>&#72;</p>H</div> + <div><p>&#73;</p>I</div> + <div><p>&#74;</p>J</div> + <div><p>&#75;</p>K</div> + <div><p>&#76;</p>L</div> + <div><p>&#77;</p>M</div> + <div><p>&#78;</p>N</div> + <div><p>&#79;</p>O</div> + <div><p>&#80;</p>P</div> + <div><p>&#81;</p>Q</div> + <div><p>&#82;</p>R</div> + <div><p>&#83;</p>S</div> + <div><p>&#84;</p>T</div> + <div><p>&#85;</p>U</div> + <div><p>&#86;</p>V</div> + <div><p>&#87;</p>W</div> + <div><p>&#88;</p>X</div> + <div><p>&#89;</p>Y</div> + <div><p>&#90;</p>Z</div> + <div><p>&#91;</p>[</div> + <div><p>&#92;</p>\</div> + <div><p>&#93;</p>]</div> + <div><p>&#94;</p>^</div> + <div><p>&#95;</p>_</div> + <div><p>&#96;</p>`</div> + <div><p>&#97;</p>a</div> + <div><p>&#98;</p>b</div> + <div><p>&#99;</p>c</div> + <div><p>&#100;</p>d</div> + <div><p>&#101;</p>e</div> + <div><p>&#102;</p>f</div> + <div><p>&#103;</p>g</div> + <div><p>&#104;</p>h</div> + <div><p>&#105;</p>i</div> + <div><p>&#106;</p>j</div> + <div><p>&#107;</p>k</div> + <div><p>&#108;</p>l</div> + <div><p>&#109;</p>m</div> + <div><p>&#110;</p>n</div> + <div><p>&#111;</p>o</div> + <div><p>&#112;</p>p</div> + <div><p>&#113;</p>q</div> + <div><p>&#114;</p>r</div> + <div><p>&#115;</p>s</div> + <div><p>&#116;</p>t</div> + <div><p>&#117;</p>u</div> + <div><p>&#118;</p>v</div> + <div><p>&#119;</p>w</div> + <div><p>&#120;</p>x</div> + <div><p>&#121;</p>y</div> + <div><p>&#122;</p>z</div> + <div><p>&#123;</p>{</div> + <div><p>&#124;</p>|</div> + <div><p>&#125;</p>}</div> + <div><p>&#126;</p>~</div> + <div><p>&#160;</p> </div> + <div><p>&#161;</p>¡</div> + <div><p>&#162;</p>¢</div> + <div><p>&#163;</p>£</div> + <div><p>&#164;</p>¤</div> + <div><p>&#165;</p>¥</div> + <div><p>&#166;</p>¦</div> + <div><p>&#167;</p>§</div> + <div><p>&#168;</p>¨</div> + <div><p>&#169;</p>©</div> + <div><p>&#170;</p>ª</div> + <div><p>&#171;</p>«</div> + <div><p>&#172;</p>¬</div> + <div><p>&#173;</p>­</div> + <div><p>&#174;</p>®</div> + <div><p>&#175;</p>¯</div> + <div><p>&#176;</p>°</div> + <div><p>&#177;</p>±</div> + <div><p>&#178;</p>²</div> + <div><p>&#179;</p>³</div> + <div><p>&#180;</p>´</div> + <div><p>&#181;</p>µ</div> + <div><p>&#182;</p>¶</div> + <div><p>&#183;</p>·</div> + <div><p>&#184;</p>¸</div> + <div><p>&#185;</p>¹</div> + <div><p>&#186;</p>º</div> + <div><p>&#187;</p>»</div> + <div><p>&#188;</p>¼</div> + <div><p>&#189;</p>½</div> + <div><p>&#190;</p>¾</div> + <div><p>&#191;</p>¿</div> + <div><p>&#192;</p>À</div> + <div><p>&#193;</p>Á</div> + <div><p>&#194;</p>Â</div> + <div><p>&#195;</p>Ã</div> + <div><p>&#196;</p>Ä</div> + <div><p>&#197;</p>Å</div> + <div><p>&#198;</p>Æ</div> + <div><p>&#199;</p>Ç</div> + <div><p>&#200;</p>È</div> + <div><p>&#201;</p>É</div> + <div><p>&#202;</p>Ê</div> + <div><p>&#203;</p>Ë</div> + <div><p>&#204;</p>Ì</div> + <div><p>&#205;</p>Í</div> + <div><p>&#206;</p>Î</div> + <div><p>&#207;</p>Ï</div> + <div><p>&#208;</p>Ð</div> + <div><p>&#209;</p>Ñ</div> + <div><p>&#210;</p>Ò</div> + <div><p>&#211;</p>Ó</div> + <div><p>&#212;</p>Ô</div> + <div><p>&#213;</p>Õ</div> + <div><p>&#214;</p>Ö</div> + <div><p>&#215;</p>×</div> + <div><p>&#216;</p>Ø</div> + <div><p>&#217;</p>Ù</div> + <div><p>&#218;</p>Ú</div> + <div><p>&#219;</p>Û</div> + <div><p>&#220;</p>Ü</div> + <div><p>&#221;</p>Ý</div> + <div><p>&#222;</p>Þ</div> + <div><p>&#223;</p>ß</div> + <div><p>&#224;</p>à</div> + <div><p>&#225;</p>á</div> + <div><p>&#226;</p>â</div> + <div><p>&#227;</p>ã</div> + <div><p>&#228;</p>ä</div> + <div><p>&#229;</p>å</div> + <div><p>&#230;</p>æ</div> + <div><p>&#231;</p>ç</div> + <div><p>&#232;</p>è</div> + <div><p>&#233;</p>é</div> + <div><p>&#234;</p>ê</div> + <div><p>&#235;</p>ë</div> + <div><p>&#236;</p>ì</div> + <div><p>&#237;</p>í</div> + <div><p>&#238;</p>î</div> + <div><p>&#239;</p>ï</div> + <div><p>&#240;</p>ð</div> + <div><p>&#241;</p>ñ</div> + <div><p>&#242;</p>ò</div> + <div><p>&#243;</p>ó</div> + <div><p>&#244;</p>ô</div> + <div><p>&#245;</p>õ</div> + <div><p>&#246;</p>ö</div> + <div><p>&#247;</p>÷</div> + <div><p>&#248;</p>ø</div> + <div><p>&#249;</p>ù</div> + <div><p>&#250;</p>ú</div> + <div><p>&#251;</p>û</div> + <div><p>&#252;</p>ü</div> + <div><p>&#253;</p>ý</div> + <div><p>&#254;</p>þ</div> + <div><p>&#255;</p>ÿ</div> + <div><p>&#338;</p>Œ</div> + <div><p>&#339;</p>œ</div> + <div><p>&#376;</p>Ÿ</div> + <div><p>&#710;</p>ˆ</div> + <div><p>&#732;</p>˜</div> + <div><p>&#8192;</p> </div> + <div><p>&#8193;</p> </div> + <div><p>&#8194;</p> </div> + <div><p>&#8195;</p> </div> + <div><p>&#8196;</p> </div> + <div><p>&#8197;</p> </div> + <div><p>&#8198;</p> </div> + <div><p>&#8199;</p> </div> + <div><p>&#8200;</p> </div> + <div><p>&#8201;</p> </div> + <div><p>&#8202;</p> </div> + <div><p>&#8208;</p>‐</div> + <div><p>&#8209;</p>‑</div> + <div><p>&#8210;</p>‒</div> + <div><p>&#8211;</p>–</div> + <div><p>&#8212;</p>—</div> + <div><p>&#8216;</p>‘</div> + <div><p>&#8217;</p>’</div> + <div><p>&#8218;</p>‚</div> + <div><p>&#8220;</p>“</div> + <div><p>&#8221;</p>”</div> + <div><p>&#8222;</p>„</div> + <div><p>&#8226;</p>•</div> + <div><p>&#8230;</p>…</div> + <div><p>&#8239;</p> </div> + <div><p>&#8249;</p>‹</div> + <div><p>&#8250;</p>›</div> + <div><p>&#8287;</p> </div> + <div><p>&#8364;</p>€</div> + <div><p>&#8482;</p>™</div> + <div><p>&#9724;</p>◼</div> + <div><p>&#64257;</p>fi</div> + <div><p>&#64258;</p>fl</div> + </div> + </div> + + + </div> + </div> + + + <div id="specs"> + + </div> + + <div id="installing"> + <div class="section"> + <div class="grid7 firstcol"> + <h1>Installing Webfonts</h1> + + <p>Webfonts are supported by all major browser platforms but not all in the same way. There are currently four different font formats that must be included in order to target all browsers. This includes TTF, WOFF, EOT and SVG.</p> + + <h2>1. Upload your webfonts</h2> + <p>You must upload your webfont kit to your website. They should be in or near the same directory as your CSS files.</p> + + <h2>2. Include the webfont stylesheet</h2> + <p>A special CSS @font-face declaration helps the various browsers select the appropriate font it needs without causing you a bunch of headaches. Learn more about this syntax by reading the <a href="https://www.fontspring.com/blog/further-hardening-of-the-bulletproof-syntax">Fontspring blog post</a> about it. The code for it is as follows:</p> + + +<code> +@font-face{ + font-family: 'MyWebFont'; + src: url('WebFont.eot'); + src: url('WebFont.eot?#iefix') format('embedded-opentype'), + url('WebFont.woff') format('woff'), + url('WebFont.ttf') format('truetype'), + url('WebFont.svg#webfont') format('svg'); +} +</code> + + <p>We've already gone ahead and generated the code for you. All you have to do is link to the stylesheet in your HTML, like this:</p> + <code><link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8" /></code> + + <h2>3. Modify your own stylesheet</h2> + <p>To take advantage of your new fonts, you must tell your stylesheet to use them. Look at the original @font-face declaration above and find the property called "font-family." The name linked there will be what you use to reference the font. Prepend that webfont name to the font stack in the "font-family" property, inside the selector you want to change. For example:</p> +<code>p { font-family: 'WebFont', Arial, sans-serif; }</code> + +<h2>4. Test</h2> +<p>Getting webfonts to work cross-browser <em>can</em> be tricky. Use the information in the sidebar to help you if you find that fonts aren't loading in a particular browser.</p> + </div> + + <div class="grid5 sidebar"> + <div class="box"> + <h2>Troubleshooting<br />Font-Face Problems</h2> + <p>Having trouble getting your webfonts to load in your new website? Here are some tips to sort out what might be the problem.</p> + + <h3>Fonts not showing in any browser</h3> + + <p>This sounds like you need to work on the plumbing. You either did not upload the fonts to the correct directory, or you did not link the fonts properly in the CSS. If you've confirmed that all this is correct and you still have a problem, take a look at your .htaccess file and see if requests are getting intercepted.</p> + + <h3>Fonts not loading in iPhone or iPad</h3> + + <p>The most common problem here is that you are serving the fonts from an IIS server. IIS refuses to serve files that have unknown MIME types. If that is the case, you must set the MIME type for SVG to "image/svg+xml" in the server settings. Follow these instructions from Microsoft if you need help.</p> + + <h3>Fonts not loading in Firefox</h3> + + <p>The primary reason for this failure? You are still using a version Firefox older than 3.5. So upgrade already! If that isn't it, then you are very likely serving fonts from a different domain. Firefox requires that all font assets be served from the same domain. Lastly it is possible that you need to add WOFF to your list of MIME types (if you are serving via IIS.)</p> + + <h3>Fonts not loading in IE</h3> + + <p>Are you looking at Internet Explorer on an actual Windows machine or are you cheating by using a service like Adobe BrowserLab? Many of these screenshot services do not render @font-face for IE. Best to test it on a real machine.</p> + + <h3>Fonts not loading in IE9</h3> + + <p>IE9, like Firefox, requires that fonts be served from the same domain as the website. Make sure that is the case.</p> + </div> + </div> + </div> + + </div> + + </div> + <div id="footer"> + <p>©2010-2017 Font Squirrel. All rights reserved.</p> + </div> +</div> +</body> +</html> diff --git a/test/samples/aurorae/fonts/amble/amble-regular-webfont.woff b/test/samples/aurorae/fonts/amble/amble-regular-webfont.woff new file mode 100755 index 0000000000000000000000000000000000000000..fc64687948bb8a5229bae4fc30253c83a38a1c4d Binary files /dev/null and b/test/samples/aurorae/fonts/amble/amble-regular-webfont.woff differ diff --git a/test/samples/aurorae/fonts/amble/amble-regular-webfont.woff2 b/test/samples/aurorae/fonts/amble/amble-regular-webfont.woff2 new file mode 100755 index 0000000000000000000000000000000000000000..4e0e4b1f71ca755ffa93e30dd1aaf5da4891e287 Binary files /dev/null and b/test/samples/aurorae/fonts/amble/amble-regular-webfont.woff2 differ diff --git a/test/samples/aurorae/fonts/amble/generator_config.txt b/test/samples/aurorae/fonts/amble/generator_config.txt new file mode 100755 index 0000000000000000000000000000000000000000..81e64f6b8bfeac345f66c41d81753e05b0948c72 --- /dev/null +++ b/test/samples/aurorae/fonts/amble/generator_config.txt @@ -0,0 +1,5 @@ +# Font Squirrel Font-face Generator Configuration File +# Upload this file to the generator to recreate the settings +# you used to create these fonts. + +{"mode":"optimal","formats":["woff","woff2"],"tt_instructor":"default","fix_gasp":"xy","fix_vertical_metrics":"Y","metrics_ascent":"","metrics_descent":"","metrics_linegap":"","add_spaces":"Y","add_hyphens":"Y","fallback":"none","fallback_custom":"100","options_subset":"basic","subset_custom":"","subset_custom_range":"","subset_ot_features_list":"","css_stylesheet":"stylesheet.css","filename_suffix":"-webfont","emsquare":"2048","spacing_adjustment":"0"} \ No newline at end of file diff --git a/test/samples/aurorae/fonts/amble/specimen_files/grid_12-825-55-15.css b/test/samples/aurorae/fonts/amble/specimen_files/grid_12-825-55-15.css new file mode 100755 index 0000000000000000000000000000000000000000..3d6aef783a908415e66bb296d4e4bbb7366f0bcb --- /dev/null +++ b/test/samples/aurorae/fonts/amble/specimen_files/grid_12-825-55-15.css @@ -0,0 +1,129 @@ +/*Notes about grid: +Columns: 12 +Grid Width: 825px +Column Width: 55px +Gutter Width: 15px +-------------------------------*/ + + + +.section {margin-bottom: 18px; +} +.section:after {content: ".";display: block;height: 0;clear: both;visibility: hidden;} +.section {*zoom: 1;} + +.section .firstcolumn, +.section .firstcol {margin-left: 0;} + + +/* Border on left hand side of a column. */ +.border { + padding-left: 7px; + margin-left: 7px; + border-left: 1px solid #eee; +} + +/* Border with more whitespace, spans one column. */ +.colborder { + padding-left: 42px; + margin-left: 42px; + border-left: 1px solid #eee; +} + + + +/* The Grid Classes */ +.grid1, .grid1_2cols, .grid1_3cols, .grid1_4cols, .grid2, .grid2_3cols, .grid2_4cols, .grid3, .grid3_2cols, .grid3_4cols, .grid4, .grid4_3cols, .grid5, .grid5_2cols, .grid5_3cols, .grid5_4cols, .grid6, .grid6_4cols, .grid7, .grid7_2cols, .grid7_3cols, .grid7_4cols, .grid8, .grid8_3cols, .grid9, .grid9_2cols, .grid9_4cols, .grid10, .grid10_3cols, .grid10_4cols, .grid11, .grid11_2cols, .grid11_3cols, .grid11_4cols, .grid12 +{margin-left: 15px;float: left;display: inline; overflow: hidden;} + + +.width1, .grid1, .span-1 {width: 55px;} +.width1_2cols,.grid1_2cols {width: 20px;} +.width1_3cols,.grid1_3cols {width: 8px;} +.width1_4cols,.grid1_4cols {width: 2px;} +.input_width1 {width: 49px;} + +.width2, .grid2, .span-2 {width: 125px;} +.width2_3cols,.grid2_3cols {width: 31px;} +.width2_4cols,.grid2_4cols {width: 20px;} +.input_width2 {width: 119px;} + +.width3, .grid3, .span-3 {width: 195px;} +.width3_2cols,.grid3_2cols {width: 90px;} +.width3_4cols,.grid3_4cols {width: 37px;} +.input_width3 {width: 189px;} + +.width4, .grid4, .span-4 {width: 265px;} +.width4_3cols,.grid4_3cols {width: 78px;} +.input_width4 {width: 259px;} + +.width5, .grid5, .span-5 {width: 335px;} +.width5_2cols,.grid5_2cols {width: 160px;} +.width5_3cols,.grid5_3cols {width: 101px;} +.width5_4cols,.grid5_4cols {width: 72px;} +.input_width5 {width: 329px;} + +.width6, .grid6, .span-6 {width: 405px;} +.width6_4cols,.grid6_4cols {width: 90px;} +.input_width6 {width: 399px;} + +.width7, .grid7, .span-7 {width: 475px;} +.width7_2cols,.grid7_2cols {width: 230px;} +.width7_3cols,.grid7_3cols {width: 148px;} +.width7_4cols,.grid7_4cols {width: 107px;} +.input_width7 {width: 469px;} + +.width8, .grid8, .span-8 {width: 545px;} +.width8_3cols,.grid8_3cols {width: 171px;} +.input_width8 {width: 539px;} + +.width9, .grid9, .span-9 {width: 615px;} +.width9_2cols,.grid9_2cols {width: 300px;} +.width9_4cols,.grid9_4cols {width: 142px;} +.input_width9 {width: 609px;} + +.width10, .grid10, .span-10 {width: 685px;} +.width10_3cols,.grid10_3cols {width: 218px;} +.width10_4cols,.grid10_4cols {width: 160px;} +.input_width10 {width: 679px;} + +.width11, .grid11, .span-11 {width: 755px;} +.width11_2cols,.grid11_2cols {width: 370px;} +.width11_3cols,.grid11_3cols {width: 241px;} +.width11_4cols,.grid11_4cols {width: 177px;} +.input_width11 {width: 749px;} + +.width12, .grid12, .span-12 {width: 825px;} +.input_width12 {width: 819px;} + +/* Subdivided grid spaces */ +.emptycols_left1, .prepend-1 {padding-left: 70px;} +.emptycols_right1, .append-1 {padding-right: 70px;} +.emptycols_left2, .prepend-2 {padding-left: 140px;} +.emptycols_right2, .append-2 {padding-right: 140px;} +.emptycols_left3, .prepend-3 {padding-left: 210px;} +.emptycols_right3, .append-3 {padding-right: 210px;} +.emptycols_left4, .prepend-4 {padding-left: 280px;} +.emptycols_right4, .append-4 {padding-right: 280px;} +.emptycols_left5, .prepend-5 {padding-left: 350px;} +.emptycols_right5, .append-5 {padding-right: 350px;} +.emptycols_left6, .prepend-6 {padding-left: 420px;} +.emptycols_right6, .append-6 {padding-right: 420px;} +.emptycols_left7, .prepend-7 {padding-left: 490px;} +.emptycols_right7, .append-7 {padding-right: 490px;} +.emptycols_left8, .prepend-8 {padding-left: 560px;} +.emptycols_right8, .append-8 {padding-right: 560px;} +.emptycols_left9, .prepend-9 {padding-left: 630px;} +.emptycols_right9, .append-9 {padding-right: 630px;} +.emptycols_left10, .prepend-10 {padding-left: 700px;} +.emptycols_right10, .append-10 {padding-right: 700px;} +.emptycols_left11, .prepend-11 {padding-left: 770px;} +.emptycols_right11, .append-11 {padding-right: 770px;} +.pull-1 {margin-left: -70px;} +.push-1 {margin-right: -70px;margin-left: 18px;float: right;} +.pull-2 {margin-left: -140px;} +.push-2 {margin-right: -140px;margin-left: 18px;float: right;} +.pull-3 {margin-left: -210px;} +.push-3 {margin-right: -210px;margin-left: 18px;float: right;} +.pull-4 {margin-left: -280px;} +.push-4 {margin-right: -280px;margin-left: 18px;float: right;} \ No newline at end of file diff --git a/test/samples/aurorae/fonts/amble/specimen_files/specimen_stylesheet.css b/test/samples/aurorae/fonts/amble/specimen_files/specimen_stylesheet.css new file mode 100755 index 0000000000000000000000000000000000000000..aecc43c32ce0ee6e9e448361a7ed21808c8af690 --- /dev/null +++ b/test/samples/aurorae/fonts/amble/specimen_files/specimen_stylesheet.css @@ -0,0 +1,396 @@ +@import url('grid_12-825-55-15.css'); + +/* + CSS Reset by Eric Meyer - Released under Public Domain + http://meyerweb.com/eric/tools/css/reset/ +*/ +html, body, div, span, applet, object, iframe, +h1, h2, h3, h4, h5, h6, p, blockquote, pre, +a, abbr, acronym, address, big, cite, code, +del, dfn, em, font, img, ins, kbd, q, s, samp, +small, strike, strong, sub, sup, tt, var, +b, u, i, center, dl, dt, dd, ol, ul, li, +fieldset, form, label, legend, table, +caption, tbody, tfoot, thead, tr, th, td + {margin: 0;padding: 0;border: 0;outline: 0; + font-size: 100%;vertical-align: baseline; + background: transparent;} +body {line-height: 1;} +ol, ul {list-style: none;} +blockquote, q {quotes: none;} +blockquote:before, blockquote:after, +q:before, q:after {content: ''; content: none;} +:focus {outline: 0;} +ins {text-decoration: none;} +del {text-decoration: line-through;} +table {border-collapse: collapse;border-spacing: 0;} + + + + +body { + color: #000; + background-color: #dcdcdc; +} + +a { + text-decoration: none; + color: #1883ba; +} + +h1{ + font-size: 32px; + font-weight: normal; + font-style: normal; + margin-bottom: 18px; +} + +h2{ + font-size: 18px; +} + +#container { + width: 865px; + margin: 0px auto; +} + + +#header { + padding: 20px; + font-size: 36px; + background-color: #000; + color: #fff; +} + +#header span { + color: #666; +} +#main_content { + background-color: #fff; + padding: 60px 20px 20px; +} + + +#footer p { + margin: 0; + padding-top: 10px; + padding-bottom: 50px; + color: #333; + font: 10px Arial, sans-serif; +} + +.tabs { + width: 100%; + height: 31px; + background-color: #444; +} +.tabs li { + float: left; + margin: 0; + overflow: hidden; + background-color: #444; +} +.tabs li a { + display: block; + color: #fff; + text-decoration: none; + font: bold 11px/11px 'Arial'; + text-transform: uppercase; + padding: 10px 15px; + border-right: 1px solid #fff; +} + +.tabs li a:hover { + background-color: #00b3ff; + +} + +.tabs li.active a { + color: #000; + background-color: #fff; +} + + + +div.huge { + + font-size: 300px; + line-height: 1em; + padding: 0; + letter-spacing: -.02em; + overflow: hidden; +} +div.glyph_range { + font-size: 72px; + line-height: 1.1em; +} + +.size10{ font-size: 10px; } +.size11{ font-size: 11px; } +.size12{ font-size: 12px; } +.size13{ font-size: 13px; } +.size14{ font-size: 14px; } +.size16{ font-size: 16px; } +.size18{ font-size: 18px; } +.size20{ font-size: 20px; } +.size24{ font-size: 24px; } +.size30{ font-size: 30px; } +.size36{ font-size: 36px; } +.size48{ font-size: 48px; } +.size60{ font-size: 60px; } +.size72{ font-size: 72px; } +.size90{ font-size: 90px; } + + +.psample_row1 { height: 120px;} +.psample_row1 { height: 120px;} +.psample_row2 { height: 160px;} +.psample_row3 { height: 160px;} +.psample_row4 { height: 160px;} + +.psample { + overflow: hidden; + position: relative; +} +.psample p { + line-height: 1.3em; + display: block; + overflow: hidden; + margin: 0; +} + +.psample span { + margin-right: .5em; +} + +.white_blend { + width: 100%; + height: 61px; + background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAVkAAAA9CAYAAAAH4BojAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAO1JREFUeNrs3TsKgFAMRUE/eer+NxztxMYuEWQG3ECKwwUF58ycAKixOAGAyAKILAAiCyCyACILgMgCiCyAyAIgsgAiCyCyAIgsgMgCiCwAIgsgsgAiC4DIAogsACIL0CWuZ3UGgLrIhjMA1EV2OAOAJQtgyQLwjOzmDAAiCyCyAIgsQFtkd2cAEFkAkQVAZAHaIns4A4AlC2DJAiCyACILILIAiCzAV5H1dQGAJQsgsgCILIDIAvwisl58AViyAJYsACILILIAIgvAe2T9EhxAZAFEFgCRBeiL7HAGgLrIhjMAWLIAliwAt1OAAQDwygTBulLIlQAAAABJRU5ErkJggg==); + position: absolute; + bottom: 0; +} +.black_blend { + width: 100%; + height: 61px; + background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAVkAAAA9CAYAAAAH4BojAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAPJJREFUeNrs3TEKhTAQRVGjibr/9QoxhY2N3Ywo50A28IrLwP9g6b1PAMSYTQAgsgAiC4DIAogsgMgCILIAIgsgsgCILIDIAogsACILILIAIguAyAKILIDIAiCyACILgMgCZCnjLWYAiFGvB0BQZJsZAFyyAC5ZAO6RXc0AILIAIguAyAKkRXYzA4DIAogsACILkBbZ3QwALlkAlywAIgsgsgAiC4DIArwVWf8uAHDJAogsACILILIAv4isH74AXLIALlkARBZAZAFEFoDnyPokOIDIAogsACILkBfZZgaAuMhWMwC4ZAE+p4x3mAEgxinAAJ+XBbPWGkwAAAAAAElFTkSuQmCC); + position: absolute; + bottom: 0; +} +.fullreverse { + background: #000 !important; + color: #fff !important; + margin-left: -20px; + padding-left: 20px; + margin-right: -20px; + padding-right: 20px; + padding: 20px; + margin-bottom:0; +} + + +.sample_table td { + padding-top: 3px; + padding-bottom:5px; + padding-left: 5px; + vertical-align: middle; + line-height: 1.2em; +} + +.sample_table td:first-child { + background-color: #eee; + text-align: right; + padding-right: 5px; + padding-left: 0; + padding: 5px; + font: 11px/12px "Courier New", Courier, mono; +} + +code { + white-space: pre; + background-color: #eee; + display: block; + padding: 10px; + margin-bottom: 18px; + overflow: auto; +} + + +.bottom,.last {margin-bottom:0 !important; padding-bottom:0 !important;} + +.box { + padding: 18px; + margin-bottom: 18px; + background: #eee; +} + +.reverse,.reversed { background: #000 !important;color: #fff !important; border: none !important;} + +#bodycomparison { + position: relative; + overflow: hidden; + font-size: 72px; + height: 90px; + white-space: nowrap; +} + +#bodycomparison div{ + font-size: 72px; + line-height: 90px; + display: inline; + margin: 0 15px 0 0; + padding: 0; +} + +#bodycomparison div span{ + font: 10px Arial; + position: absolute; + left: 0; +} +#xheight { + float: none; + position: absolute; + color: #d9f3ff; + font-size: 72px; + line-height: 90px; +} + +.fontbody { + position: relative; +} +.arialbody{ + font-family: Arial; + position: relative; +} +.verdanabody{ + font-family: Verdana; + position: relative; +} +.georgiabody{ + font-family: Georgia; + position: relative; +} + +/* @group Layout page + */ + +#layout h1 { + font-size: 36px; + line-height: 42px; + font-weight: normal; + font-style: normal; +} + +#layout h2 { + font-size: 24px; + line-height: 23px; + font-weight: normal; + font-style: normal; +} + +#layout h3 { + font-size: 22px; + line-height: 1.4em; + margin-top: 1em; + font-weight: normal; + font-style: normal; +} + + +#layout p.byline { + font-size: 12px; + margin-top: 18px; + line-height: 12px; + margin-bottom: 0; +} +#layout p { + font-size: 14px; + line-height: 21px; + margin-bottom: .5em; +} + +#layout p.large{ + font-size: 18px; + line-height: 26px; +} + +#layout .sidebar p{ + font-size: 12px; + line-height: 1.4em; +} + +#layout p.caption { + font-size: 10px; + margin-top: -16px; + margin-bottom: 18px; +} + +/* @end */ + +/* @group Glyphs */ + +#glyph_chart div{ + background-color: #d9f3ff; + color: black; + float: left; + font-size: 36px; + height: 1.2em; + line-height: 1.2em; + margin-bottom: 1px; + margin-right: 1px; + text-align: center; + width: 1.2em; + position: relative; + padding: .6em .2em .2em; +} + +#glyph_chart div p { + position: absolute; + left: 0; + top: 0; + display: block; + text-align: center; + font: bold 9px Arial, sans-serif; + background-color: #3a768f; + width: 100%; + color: #fff; + padding: 2px 0; +} + + +#glyphs h1 { + font-family: Arial, sans-serif; +} +/* @end */ + +/* @group Installing */ + +#installing { + font: 13px Arial, sans-serif; +} + +#installing p, +#glyphs p{ + line-height: 1.2em; + margin-bottom: 18px; + font: 13px Arial, sans-serif; +} + + + +#installing h3{ + font-size: 15px; + margin-top: 18px; +} + +/* @end */ + +#rendering h1 { + font-family: Arial, sans-serif; +} +.render_table td { + font: 11px "Courier New", Courier, mono; + vertical-align: middle; +} + + diff --git a/test/samples/aurorae/fonts/amble/stylesheet.css b/test/samples/aurorae/fonts/amble/stylesheet.css new file mode 100755 index 0000000000000000000000000000000000000000..e5e8a28044d6b95ba7ddbac97c554d495780d170 --- /dev/null +++ b/test/samples/aurorae/fonts/amble/stylesheet.css @@ -0,0 +1,93 @@ +/*! Generated by Font Squirrel (https://www.fontsquirrel.com) on January 31, 2018 */ + + + +@font-face { + font-family: 'amble'; + src: url('amble-bold-webfont.woff2') format('woff2'), + url('amble-bold-webfont.woff') format('woff'); + font-weight: bold; + font-style: normal; + +} + + + + +@font-face { + font-family: 'amble'; + src: url('amble-bolditalic-webfont.woff2') format('woff2'), + url('amble-bolditalic-webfont.woff') format('woff'); + font-weight: bold; + font-style: italic; + +} + + + + +@font-face { + font-family: 'amble'; + src: url('amble-italic-webfont.woff2') format('woff2'), + url('amble-italic-webfont.woff') format('woff'); + font-weight: normal; + font-style: italic; + +} + +@font-face { + font-family: 'amble'; + src: url('amble-regular-webfont.woff2') format('woff2'), + url('amble-regular-webfont.woff') format('woff'); + font-weight: normal; + font-style: normal; + +} + + + + +@font-face { + font-family: 'amblelight'; + src: url('amble-light-webfont.woff2') format('woff2'), + url('amble-light-webfont.woff') format('woff'); + font-weight: normal; + font-style: normal; + +} + + + + +@font-face { + font-family: 'amblelightcondensed'; + src: url('amble-lightcondensed-webfont.woff2') format('woff2'), + url('amble-lightcondensed-webfont.woff') format('woff'); + font-weight: normal; + font-style: normal; + +} + + + + +@font-face { + font-family: 'amblelightcondensed'; + src: url('amble-lightcondenseditalic-webfont.woff2') format('woff2'), + url('amble-lightcondenseditalic-webfont.woff') format('woff'); + font-weight: normal; + font-style: italic; + +} + + + + +@font-face { + font-family: 'amblelight'; + src: url('amble-lightitalic-webfont.woff2') format('woff2'), + url('amble-lightitalic-webfont.woff') format('woff'); + font-weight: normal; + font-style: italic; + +} diff --git a/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-Bold.eot b/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-Bold.eot new file mode 100755 index 0000000000000000000000000000000000000000..c00e255279b4023caa205c245bfb856835dc04dc Binary files /dev/null and b/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-Bold.eot differ diff --git a/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-Bold.svg b/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-Bold.svg new file mode 100755 index 0000000000000000000000000000000000000000..2fa6537ccefc8f6e3de9196d9abd49ac4fbc35b0 --- /dev/null +++ b/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-Bold.svg @@ -0,0 +1,8769 @@ +<?xml version="1.0" standalone="no"?> +<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" > +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1"> +<metadata> +Created by FontForge 20161013 at Sun Mar 19 13:47:58 2017 + By ,,, +Copyright (c)2015, HK Grotesk Latin by Alfredo Marco Pradil (ammpradil@gmail.com) and HK Grotesk Cyrillic by Stefan Peev (http://www.contextbg.net/). HK Grotesk is a trademark of Alfredo Marco Pradil. +</metadata> +<defs> +<font id="HKGrotesk-Bold" horiz-adv-x="1343" > + <font-face + font-family="HK Grotesk" + font-weight="700" + font-stretch="normal" + units-per-em="2048" + panose-1="0 0 8 0 0 0 0 0 0 0" + ascent="1434" + descent="-614" + x-height="999" + cap-height="1411" + bbox="-975 -522 2738 2239" + underline-thickness="82" + underline-position="-410" + unicode-range="U+0020-FB02" + /> +<missing-glyph horiz-adv-x="1110" +d="M145 0v954h820v-954h-820zM248 102h614v750h-614v-750z" /> + <glyph glyph-name="fi" unicode="fi" horiz-adv-x="1108" +d="M176 0v795h-156v204h156q0 199 105 317t323 118q43 0 80.5 -4t68.5 -14t53 -17.5t46 -23.5t33.5 -22t30.5 -23.5t22 -18.5l-129 -187q-26 26 -45.5 41.5t-63.5 31t-98 15.5q-100 0 -142 -53t-42 -160h551v-999h-236v795h-315v-795h-242z" /> + <glyph glyph-name="fl" unicode="fl" horiz-adv-x="1139" +d="M932 -20q-38 0 -70.5 9.5t-63 32.5t-48 68t-17.5 109v970q-79 50 -160 50q-69 0 -112 -37t-43 -97v-86h162v-204h-162v-795h-242v795h-156v204h156v93q0 152 114.5 247t297.5 95q202 0 381 -158v-969q0 -39 5.5 -62.5t19 -32.5t24 -11t31.5 -2q20 0 47 6v-205 +q-94 -20 -164 -20z" /> + <glyph glyph-name="f_f_i" unicode="ffi" horiz-adv-x="1780" +d="M184 0v795h-164v204h164v72q0 111 59 195t154 126t209 42q189 0 318 -103q63 53 150.5 78t170.5 25q184 0 367 -123l-129 -187q-25 25 -45 41t-72 36t-113 20q-206 0 -206 -154v-68h593v-999h-235v795h-358v-795h-246v795h-373v-795h-244zM428 999h375v72q0 45 6 82 +q-38 40 -82.5 60t-108.5 20q-95 0 -142.5 -44t-47.5 -122v-68z" /> + <glyph glyph-name="f_f_l" unicode="ffl" horiz-adv-x="1812" +d="M1602 -20q-201 0 -201 219v970q-66 43 -164 43q-197 0 -197 -155v-58h197v-204h-197v-795h-245v795h-367v-795h-246v795h-162v204h164v93q0 88 34 155.5t92.5 107t130.5 59.5t155 20q192 0 328 -119q95 119 325 119q140 0 231 -44t158 -114v-1010q0 -67 70 -67q34 0 61 6 +v-205q-102 -20 -167 -20zM428 999h369q0 93 2 142q-75 71 -191 71q-93 0 -136.5 -38.5t-43.5 -102.5v-72z" /> + <glyph glyph-name=".notdef" horiz-adv-x="1110" +d="M145 0v954h820v-954h-820zM248 102h614v750h-614v-750z" /> + <glyph glyph-name=".null" horiz-adv-x="0" + /> + <glyph glyph-name="nonmarkingreturn" horiz-adv-x="682" + /> + <glyph glyph-name="space" unicode=" " horiz-adv-x="492" + /> + <glyph glyph-name="exclam" unicode="!" horiz-adv-x="635" +d="M225 428l-28 1006h241l-28 -1006h-185zM184 0v264h267v-264h-267z" /> + <glyph glyph-name="quotedbl" unicode=""" horiz-adv-x="958" +d="M203 866v547h205v-547h-205zM551 866v547h205v-547h-205z" /> + <glyph glyph-name="numbersign" unicode="#" horiz-adv-x="1382" +d="M221 0l90 414h-233v172h270l53 262h-241v180h278l94 406h193l-96 -437h250l92 437h192l-94 -414h234v-172h-271l-53 -262h242v-180h-279l-92 -406h-191l93 436h-250l-90 -436h-191zM539 586h249l54 262h-250z" /> + <glyph glyph-name="dollar" unicode="$" horiz-adv-x="1130" +d="M465 -246v234q-163 29 -278 131.5t-142 265.5l246 53q13 -111 93 -169t200 -58q235 0 235 192q0 43 -23.5 78t-62.5 60.5t-90 49t-107.5 46.5t-113 48t-107.5 59.5t-90 76t-62.5 102t-23.5 132.5q0 144 92.5 243t233.5 129v232h201v-227q230 -37 338 -232l-205 -121 +q-36 67 -96 101t-132 34q-76 0 -128 -42t-52 -107q0 -40 23.5 -73t62.5 -57t90 -46t107.5 -44.5t113 -48.5t107.5 -61.5t90 -79t62.5 -106.5t23.5 -139q0 -175 -115.5 -290.5t-289.5 -135.5v-230h-201z" /> + <glyph glyph-name="percent" unicode="%" horiz-adv-x="1540" +d="M262 -20l791 1474h211l-791 -1474h-211zM360 768q-63 0 -114 22.5t-82 57.5t-51.5 81t-28.5 88.5t-8 84.5t8 84.5t28 88.5t50 81t80 57.5t112 22.5q71 0 127 -30.5t89 -80.5t50 -107.5t17 -117.5q0 -59 -16.5 -116t-49 -106.5t-87.5 -79.5t-124 -30zM356 940 +q45 0 73 47.5t28 114.5q0 68 -28 114t-75 46t-74.5 -45.5t-27.5 -114.5t28 -115.5t76 -46.5zM1188 -10q-63 0 -114 23t-82 58.5t-52 82t-29 89.5t-8 85q0 54 14 109t43.5 109t87 88t134.5 34q71 0 127 -31t88.5 -81.5t49.5 -108.5t17 -119q0 -60 -16.5 -118t-49 -108 +t-87 -81t-123.5 -31zM1186 162q43 0 70.5 49.5t27.5 118.5q0 70 -28 117t-74 47q-47 0 -75 -47.5t-28 -118.5t28.5 -118.5t78.5 -47.5z" /> + <glyph glyph-name="ampersand" unicode="&" horiz-adv-x="1382" +d="M1327 78l-172 -154l-186 213q-184 -160 -426 -160q-131 0 -234.5 40t-166 121t-62.5 192q0 62 18.5 118t47.5 98.5t74.5 84.5t87.5 71t99 63q-167 167 -167 333q0 99 58 176.5t146.5 116.5t186.5 39q155 0 265 -95.5t110 -234.5q0 -118 -67.5 -206.5t-187.5 -169.5 +l200 -224q34 96 34 196l238 -24q-11 -196 -106 -358zM475 1094q0 -83 119 -221q90 54 138 106.5t48 116.5q0 60 -39 101.5t-108 41.5q-66 0 -112 -38.5t-46 -106.5zM537 184q167 0 289 117l-267 305q-58 -35 -95.5 -62.5t-75 -63t-55.5 -74t-18 -80.5q0 -69 60 -105.5 +t162 -36.5z" /> + <glyph glyph-name="quotesingle" unicode="'" horiz-adv-x="610" +d="M203 895v547h205v-547h-205z" /> + <glyph glyph-name="parenleft" unicode="(" horiz-adv-x="573" +d="M346 -125q-111 116 -178.5 354.5t-67.5 477.5q0 281 65 491t177 336h219q-268 -330 -268 -832q0 -270 62.5 -456.5t203.5 -370.5h-213z" /> + <glyph glyph-name="parenright" unicode=")" horiz-adv-x="573" +d="M14 -125q141 184 204 370.5t63 456.5q0 503 -269 832h219q113 -125 177.5 -335t64.5 -492q0 -239 -67 -477.5t-179 -354.5h-213z" /> + <glyph glyph-name="asterisk" unicode="*" horiz-adv-x="901" +d="M340 834l-158 102l158 160l-227 30l61 168l209 -82l-29 201h195l-29 -201l209 82l59 -168l-227 -30l158 -160l-158 -102l-110 208z" /> + <glyph glyph-name="plus" unicode="+" horiz-adv-x="1253" +d="M535 106v426h-457v185h457v426h184v-426h457v-185h-457v-426h-184z" /> + <glyph glyph-name="comma" unicode="," horiz-adv-x="633" +d="M119 -303l135 567h281l-254 -567h-162z" /> + <glyph glyph-name="hyphen" unicode="-" horiz-adv-x="866" +d="M141 508v184h584v-184h-584z" /> + <glyph glyph-name="period" unicode="." horiz-adv-x="647" +d="M201 0v264h245v-264h-245z" /> + <glyph glyph-name="slash" unicode="/" horiz-adv-x="934" +d="M-37 -430l780 1946h228l-781 -1946h-227z" /> + <glyph glyph-name="zero" unicode="0" horiz-adv-x="1188" +d="M604 -20q-126 0 -227 47.5t-164.5 122t-105.5 173t-59 193.5t-17 191q0 67 8.5 135t28 141t48.5 137.5t74.5 123t101.5 101t132.5 67t165.5 24.5q113 0 208.5 -42.5t161 -113.5t112 -165.5t68 -198t21.5 -211.5q0 -107 -21 -210t-66.5 -196.5t-109.5 -164t-157 -112.5 +t-203 -42zM598 219q77 0 137 44.5t94.5 118t52 157t17.5 170.5q0 89 -18 172t-53 154t-97 114t-141 43q-64 0 -116.5 -29t-88 -76.5t-59.5 -111t-34.5 -131t-10.5 -137.5q0 -89 18 -172.5t54 -155.5t99.5 -116t145.5 -44z" /> + <glyph glyph-name="one" unicode="1" horiz-adv-x="1188" +d="M555 0v1030h-373v193h232q72 0 111.5 39t39.5 112v39h240v-1413h-250z" /> + <glyph glyph-name="two" unicode="2" horiz-adv-x="1188" +d="M47 0v201q1 0 20 12t49 31.5t70.5 46.5t88 61.5t96 72t101 82.5t97.5 89q226 222 226 403q0 91 -50 148t-149 57q-66 0 -114.5 -26.5t-75.5 -72.5t-40.5 -96.5t-15.5 -109.5l-248 16q0 99 34 191.5t95 165.5t155.5 116.5t207.5 43.5q195 0 325 -119t130 -299 +q0 -268 -324 -580q-132 -127 -260 -205h653v-229h-1071z" /> + <glyph glyph-name="three" unicode="3" horiz-adv-x="1188" +d="M578 -20q-108 0 -202 29.5t-167 85.5t-115.5 146.5t-42.5 204.5l242 15q0 -116 80.5 -182t206.5 -66q117 0 197.5 58t80.5 165q0 96 -65 151.5t-179 55.5h-163v213h163q83 0 124.5 45t41.5 117q0 87 -57 133.5t-148 46.5q-97 0 -156.5 -54t-60.5 -147l-239 17 +q0 129 63 226t164.5 145.5t224.5 48.5q120 0 222 -45t166.5 -134.5t64.5 -205.5q0 -83 -32.5 -156t-90.5 -125q192 -107 199 -346q0 -87 -28 -160t-77 -124.5t-115 -87.5t-142.5 -53t-159.5 -17z" /> + <glyph glyph-name="four" unicode="4" horiz-adv-x="1188" +d="M662 0v332h-654v147l690 934h213v-850h226v-231h-226v-332h-249zM334 563h328v461z" /> + <glyph glyph-name="five" unicode="5" horiz-adv-x="1188" +d="M586 -20q-187 0 -329 123.5t-181 306.5l235 65q11 -52 31 -96.5t51.5 -84t81 -62.5t111.5 -23q111 0 185.5 83.5t74.5 190.5q0 110 -70 185t-190 75q-70 0 -136 -35.5t-104 -95.5l-229 58l137 743h786v-233h-585l-52 -265q107 56 220 56q130 0 241 -66t175.5 -179 +t64.5 -245t-70 -247.5t-190 -184.5t-258 -69z" /> + <glyph glyph-name="six" unicode="6" horiz-adv-x="1188" +d="M596 -20q-140 0 -258.5 65t-187 177t-68.5 245q0 138 76 250l424 696h290l-305 -465h31q104 0 198.5 -35.5t164 -97.5t110.5 -150.5t41 -189.5q0 -97 -39 -187.5t-106.5 -158.5t-164.5 -108.5t-206 -40.5zM598 217q109 0 187.5 75t78.5 181t-78.5 181t-187.5 75 +q-110 0 -189 -75t-79 -181t79 -181t189 -75z" /> + <glyph glyph-name="seven" unicode="7" horiz-adv-x="1188" +d="M205 0l600 1182h-713v231h1020v-129l-627 -1284h-280z" /> + <glyph glyph-name="eight" unicode="8" horiz-adv-x="1188" +d="M594 -20q-103 0 -195.5 27t-166 78.5t-117 134.5t-43.5 186q0 116 54 208.5t150 149.5q-133 112 -133 285q0 118 64.5 207.5t166 133.5t220.5 44q118 0 219.5 -44.5t166 -133.5t64.5 -205q0 -173 -133 -287q100 -59 152.5 -150t52.5 -206q0 -105 -43.5 -188.5 +t-117.5 -134.5t-166 -78t-195 -27zM598 858q91 0 148 48.5t57 133.5q0 86 -57.5 134.5t-147.5 48.5q-88 0 -146.5 -46t-58.5 -133q0 -84 56 -135t149 -51zM592 197q118 0 195 56.5t77 164.5q0 106 -75.5 165.5t-196.5 59.5q-122 0 -197.5 -59t-75.5 -164q0 -109 77.5 -166 +t195.5 -57z" /> + <glyph glyph-name="nine" unicode="9" horiz-adv-x="1188" +d="M315 0l306 465h-31q-140 0 -257.5 60.5t-187 169.5t-69.5 243q0 97 39 187.5t106.5 158.5t164.5 109t206 41q140 0 258.5 -65t187 -177.5t68.5 -245.5q0 -138 -76 -250l-424 -696h-291zM590 684q110 0 189 75t79 181t-79 181t-189 75t-188 -75t-78 -181t78 -181t188 -75z +" /> + <glyph glyph-name="colon" unicode=":" horiz-adv-x="676" +d="M205 690v264h266v-264h-266zM205 0v264h266v-264h-266z" /> + <glyph glyph-name="semicolon" unicode=";" horiz-adv-x="662" +d="M205 690v264h266v-264h-266zM109 -303l135 567h281l-254 -567h-162z" /> + <glyph glyph-name="less" unicode="<" horiz-adv-x="1237" +d="M1030 152l-985 522l985 522l103 -178l-693 -344l693 -344z" /> + <glyph glyph-name="equal" unicode="=" horiz-adv-x="1268" +d="M219 752v206h830v-206h-830zM219 385v207h830v-207h-830z" /> + <glyph glyph-name="greater" unicode=">" horiz-adv-x="1237" +d="M207 152l-103 178l693 344l-693 344l103 178l985 -522z" /> + <glyph glyph-name="question" unicode="?" horiz-adv-x="997" +d="M387 424v145q0 67 18.5 117t48 79.5t65 51.5t71 41t65 40.5t48 56.5t18.5 83q0 97 -62 145t-170 48q-229 0 -229 -240h-215q0 208 118.5 325.5t317.5 117.5q124 0 225 -44.5t164.5 -137t63.5 -218.5q0 -74 -19 -133t-48.5 -95.5t-66 -64.5t-73 -47t-66 -36.5t-48.5 -40 +t-19 -50.5v-143h-207zM360 0v264h267v-264h-267z" /> + <glyph glyph-name="at" unicode="@" horiz-adv-x="2015" +d="M999 -348q-147 0 -282.5 38.5t-247 113.5t-194.5 179t-129 242t-46 295q0 189 66.5 356.5t185 290t290.5 194t374 71.5q204 0 376 -72.5t286 -194.5t177.5 -282.5t63.5 -337.5q0 -94 -18 -183t-55.5 -169t-91.5 -139.5t-131 -94.5t-169 -35q-126 0 -197.5 62.5 +t-82.5 173.5q-126 -117 -293 -117q-109 0 -187 57t-113.5 146t-35.5 198q0 82 20.5 167.5t62 166t98 143.5t136 101.5t168.5 38.5q90 0 156.5 -36.5t103.5 -98.5l19 86h196q-15 -78 -56 -246.5t-68 -305.5t-27 -224q0 -64 19.5 -88.5t74.5 -24.5q73 0 129.5 38t88.5 101.5 +t47.5 136t15.5 150.5q0 138 -49 263.5t-138.5 222t-225.5 153.5t-298 57t-299.5 -56.5t-230.5 -154t-145 -229.5t-52 -281q0 -126 37 -234.5t102.5 -188.5t154 -137.5t194.5 -86.5t222 -29q119 0 242 39l68 -182q-147 -53 -312 -53zM897 238q76 0 140.5 40.5t104 105 +t61.5 140t22 148.5q0 194 -166 194q-77 0 -141.5 -40.5t-104.5 -104t-62 -138t-22 -147.5q0 -198 168 -198z" /> + <glyph glyph-name="A" unicode="A" +d="M12 0l566 1413h190l563 -1413h-274l-109 307h-549l-110 -307h-277zM485 524h377l-188 516z" /> + <glyph glyph-name="B" unicode="B" horiz-adv-x="1274" +d="M182 0v1413h490q67 0 129.5 -12t122 -41t103.5 -71.5t70.5 -108.5t26.5 -148q0 -91 -46 -166t-111 -110q96 -38 161.5 -138.5t65.5 -207.5q0 -127 -66 -222t-169.5 -141.5t-225.5 -46.5h-551zM436 844h260q195 0 195 174q0 80 -60 123t-155 43h-240v-340zM436 242h301 +q100 0 153.5 49t53.5 147q0 78 -60 132.5t-157 54.5h-291v-383z" /> + <glyph glyph-name="C" unicode="C" horiz-adv-x="1432" +d="M766 -20q-169 0 -302 58.5t-215 160t-124.5 231t-42.5 277.5q0 118 26 224.5t80.5 199t134 160.5t192.5 106.5t249 38.5q211 0 372 -104.5t246 -301.5l-237 -94q-74 258 -383 258q-109 0 -192.5 -37.5t-134 -103.5t-76 -150.5t-25.5 -185.5q0 -108 25.5 -196.5 +t76.5 -156.5t135 -105.5t195 -37.5q140 0 233.5 61.5t149.5 200.5l235 -96q-83 -197 -244.5 -302t-373.5 -105z" /> + <glyph glyph-name="D" unicode="D" horiz-adv-x="1409" +d="M182 0v1413h410q359 0 547 -185.5t188 -531.5q0 -332 -191 -514t-546 -182h-408zM436 233h129q121 0 211.5 25t158.5 79.5t103 147t35 222.5q0 252 -112.5 362.5t-372.5 110.5h-152v-947z" /> + <glyph glyph-name="E" unicode="E" horiz-adv-x="1245" +d="M182 0v1413h940v-233h-686v-357h639v-233h-639v-350h686v-240h-940z" /> + <glyph glyph-name="F" unicode="F" horiz-adv-x="1235" +d="M182 0v1413h1002v-233h-748v-357h660v-233h-660v-590h-254z" /> + <glyph glyph-name="G" unicode="G" horiz-adv-x="1534" +d="M766 -20q-169 0 -302 58.5t-215 160t-124.5 231t-42.5 277.5q0 118 25.5 224.5t80.5 199t134 160.5t192.5 106.5t249.5 38.5q210 0 370.5 -104.5t245.5 -301.5l-225 -94q-47 140 -150 209t-243 69q-108 0 -192 -40.5t-134.5 -110.5t-76 -157.5t-25.5 -188.5 +q0 -108 25.5 -198.5t76.5 -161.5t135.5 -110.5t194.5 -39.5q154 0 264 96.5t131 255.5h-321v205h567v-764h-201l-22 199q-58 -101 -168.5 -160t-249.5 -59z" /> + <glyph glyph-name="H" unicode="H" horiz-adv-x="1491" +d="M182 0v1413h254v-590h619v590h254v-1413h-254v590h-619v-590h-254z" /> + <glyph glyph-name="I" unicode="I" horiz-adv-x="618" +d="M182 0v1413h254v-1413h-254z" /> + <glyph glyph-name="J" unicode="J" horiz-adv-x="1139" +d="M508 -20q-140 0 -247 63.5t-164 166.5t-66 230l250 29q8 -113 64 -183.5t163 -70.5q130 0 176.5 70.5t46.5 220.5v674h-532v233h786v-903q0 -116 -26.5 -210t-81.5 -167t-149 -113t-220 -40z" /> + <glyph glyph-name="K" unicode="K" horiz-adv-x="1491" +d="M182 0v1413h254v-737l688 737h340l-565 -579l576 -834h-316l-436 664l-287 -297v-367h-254z" /> + <glyph glyph-name="L" unicode="L" horiz-adv-x="1063" +d="M182 0v1413h254v-1173h604v-240h-858z" /> + <glyph glyph-name="M" unicode="M" horiz-adv-x="1798" +d="M182 0v1413h342l375 -1005l375 1005h342v-1413h-244v1057l-350 -934h-246l-350 934v-1057h-244z" /> + <glyph glyph-name="N" unicode="N" horiz-adv-x="1454" +d="M182 0v1413h252l594 -989v989h244v-1413h-254l-592 991v-991h-244z" /> + <glyph glyph-name="O" unicode="O" horiz-adv-x="1528" +d="M764 -20q-136 0 -249.5 38.5t-192.5 106t-134 160t-80.5 199t-25.5 223.5t25.5 223.5t80.5 199t134 160t192.5 106t249.5 38.5t249.5 -38.5t192.5 -106t134 -160t80.5 -199t25.5 -223.5t-25.5 -223.5t-80.5 -199t-134 -160t-192.5 -106t-249.5 -38.5zM764 205 +q88 0 159 27t118 73t78.5 110.5t45 136.5t13.5 155q0 82 -13.5 154.5t-45 136.5t-78.5 110t-118 73t-159 27t-159 -27t-118 -73t-78.5 -110t-45 -136.5t-13.5 -154.5q0 -83 13.5 -155t45 -136.5t78.5 -110.5t118 -73t159 -27z" /> + <glyph glyph-name="P" unicode="P" horiz-adv-x="1167" +d="M182 0v1413h443q222 0 360.5 -111t138.5 -307q0 -193 -138.5 -301t-360.5 -108h-191v-586h-252zM434 823h191q128 0 187.5 43t59.5 129q0 181 -247 181h-191v-353z" /> + <glyph glyph-name="Q" unicode="Q" horiz-adv-x="1573" +d="M1346 -119l-203 203q-158 -104 -379 -104q-136 0 -249.5 38.5t-192.5 106t-134 160t-80.5 199t-25.5 223.5t25.5 223.5t80.5 199t134 160t192.5 106t249.5 38.5t249.5 -39t192.5 -106.5t134 -160.5t80.5 -199.5t25.5 -223.5q0 -136 -36 -260.5t-103 -217.5l202 -192z +M764 219q110 0 199 41l-193 176l164 150l188 -174q70 126 70 295q0 103 -25 189t-75 154t-134 106t-194 38t-194 -38t-134 -106t-75 -154t-25 -189t25 -189.5t75 -154.5t134 -106t194 -38z" /> + <glyph glyph-name="R" unicode="R" horiz-adv-x="1268" +d="M182 -2v1415h457q100 0 188 -28t155.5 -80t106.5 -131.5t39 -176.5q0 -130 -76 -227.5t-200 -140.5l393 -631h-291l-348 606h-170v-606h-254zM438 811h224q101 4 158 53t57 129q0 88 -64 140.5t-172 52.5h-203v-375z" /> + <glyph glyph-name="S" unicode="S" horiz-adv-x="1137" +d="M586 -16q-95 0 -184 26.5t-163 76.5t-126 130.5t-68 181.5l252 64q13 -126 93.5 -190t199.5 -64q110 0 171.5 51t61.5 129q0 52 -29.5 93.5t-77.5 68t-109.5 53.5t-125.5 50t-125.5 58t-109.5 76.5t-77.5 107.5t-29.5 148q0 121 61 211t160 134.5t220 44.5 +q136 0 248 -61.5t182 -186.5l-211 -129q-37 72 -97 111.5t-131 39.5q-76 0 -127 -42t-51 -109q0 -42 23.5 -76.5t63 -58.5t91 -46t108 -43.5t113 -46t108 -58.5t91 -76t63 -103.5t23.5 -136.5q0 -130 -66.5 -228.5t-177.5 -149t-247 -50.5z" /> + <glyph glyph-name="T" unicode="T" horiz-adv-x="1180" +d="M463 0v1186h-443v227h1139v-227h-442v-1186h-254z" /> + <glyph glyph-name="U" unicode="U" horiz-adv-x="1380" +d="M690 -20q-275 0 -407.5 150.5t-132.5 420.5v862h253v-833q0 -182 62.5 -268.5t224.5 -86.5q163 0 225 86.5t62 268.5v833h254v-852q0 -277 -132.5 -429t-408.5 -152z" /> + <glyph glyph-name="V" unicode="V" +d="M578 0l-566 1413h281l381 -1001l379 1001h278l-563 -1413h-190z" /> + <glyph glyph-name="W" unicode="W" horiz-adv-x="2003" +d="M449 0l-424 1413h264l301 -1040l313 958h197l313 -958l301 1040h264l-424 -1413h-245l-308 930l-307 -930h-245z" /> + <glyph glyph-name="X" unicode="X" +d="M25 0l473 707l-471 706h303l342 -545l342 545h303l-471 -706l473 -707h-303l-346 537l-342 -537h-303z" /> + <glyph glyph-name="Y" unicode="Y" horiz-adv-x="1319" +d="M528 0v551l-530 862h307l352 -618l355 618h309l-528 -862v-551h-265z" /> + <glyph glyph-name="Z" unicode="Z" horiz-adv-x="1272" +d="M59 0v176l789 1004h-744v233h1094v-184l-784 -1000h784v-229h-1139z" /> + <glyph glyph-name="bracketleft" unicode="[" horiz-adv-x="641" +d="M176 -164v1737h432v-162h-235v-1411h235v-164h-432z" /> + <glyph glyph-name="backslash" unicode="\" horiz-adv-x="934" +d="M743 -430l-780 1946h227l781 -1946h-228z" /> + <glyph glyph-name="bracketright" unicode="]" horiz-adv-x="641" +d="M33 -164v164h235v1411h-235v162h432v-1737h-432z" /> + <glyph glyph-name="asciicircum" unicode="^" horiz-adv-x="981" +d="M63 805l426 692l429 -692h-242l-187 301l-184 -301h-242z" /> + <glyph glyph-name="underscore" unicode="_" horiz-adv-x="1247" +d="M199 -184v184h850v-184h-850z" /> + <glyph glyph-name="grave" unicode="`" horiz-adv-x="532" +d="M322 1104l-308 309h260l226 -309h-178z" /> + <glyph glyph-name="a" unicode="a" horiz-adv-x="1061" +d="M418 -20q-159 0 -261 87t-102 240q0 64 20 113.5t55 82t86 54t109 30.5t128 9h260q0 97 -51 154t-146 57q-80 0 -139.5 -39.5t-95.5 -101.5l-187 135q160 219 420 219q201 0 316.5 -114t115.5 -300v-606h-201l-16 143q-112 -163 -311 -163zM453 186q104 0 180.5 70 +t79.5 164h-246q-79 0 -120.5 -35t-41.5 -86t39 -82t109 -31z" /> + <glyph glyph-name="b" unicode="b" horiz-adv-x="1176" +d="M684 -20q-84 0 -159.5 29.5t-125.5 90.5v-100h-252v1413h252v-514q98 121 281 121q102 0 185.5 -42t136.5 -114t81.5 -165.5t28.5 -198.5q0 -141 -48 -257.5t-147 -189.5t-233 -73zM623 205q121 0 182 81.5t61 213.5t-61.5 215.5t-181.5 83.5q-121 0 -183.5 -83 +t-62.5 -216q0 -132 62.5 -213.5t183.5 -81.5z" /> + <glyph glyph-name="c" unicode="c" horiz-adv-x="1004" +d="M541 -20q-118 0 -212.5 43.5t-152.5 116.5t-88.5 165t-30.5 193t30 192.5t88 166t152 119t212 44.5q152 0 264 -74.5t168 -220.5l-232 -90q-20 74 -73.5 119t-126.5 45q-49 0 -89 -17t-66.5 -46t-44.5 -68t-26 -81.5t-8 -88.5q0 -59 13 -110.5t40 -94.5t73.5 -67.5 +t107.5 -24.5q72 0 126 43.5t74 115.5l222 -84q-50 -140 -161 -218t-259 -78z" /> + <glyph glyph-name="d" unicode="d" horiz-adv-x="1171" +d="M776 1413h248v-1413h-227l-11 112q-97 -132 -290 -132q-136 0 -236 72.5t-148.5 189t-48.5 258.5q0 141 48.5 257.5t147.5 189.5t233 73q84 0 159.5 -30t124.5 -91v514zM555 201q121 0 181.5 82t60.5 217q0 134 -61 216.5t-181 82.5t-182 -83.5t-62 -215.5 +q0 -133 61.5 -216t182.5 -83z" /> + <glyph glyph-name="e" unicode="e" horiz-adv-x="1067" +d="M561 -20q-125 0 -223.5 42.5t-159 115t-92 164t-31.5 194.5q0 100 30 192t87.5 167t154 120t218.5 45q101 0 182 -31.5t132.5 -81.5t86 -117.5t48.5 -135t14 -138.5t-9 -96h-686q35 -219 250 -219q145 0 240 106l168 -147q-162 -180 -410 -180zM313 596h455 +q-12 106 -70.5 162.5t-154.5 56.5q-190 0 -230 -219z" /> + <glyph glyph-name="f" unicode="f" horiz-adv-x="688" +d="M203 0v795h-183v204h185v134q0 139 93 220t226 81q89 0 181 -41l-80 -201q-41 25 -78 25q-40 0 -66 -27t-26 -82v-109h233v-204h-233v-795h-252z" /> + <glyph glyph-name="g" unicode="g" horiz-adv-x="1049" +d="M602 156q68 -9 114 -18t103 -30.5t91 -51t57.5 -79.5t23.5 -116q0 -109 -59.5 -186t-157.5 -112.5t-225 -35.5q-217 0 -342 99.5t-125 256.5q0 23 4 43l104 94q-98 66 -98 197q0 124 93 206q-83 101 -83 230q0 159 120 263t290 104q131 0 236 -64l153 131l127 -155 +l-145 -117q43 -77 43 -174q0 -163 -118.5 -264t-287.5 -101q-101 0 -190 39q-29 -19 -29 -53q0 -13 4 -24t14 -20t20 -15t29.5 -11.5t34.5 -9t42.5 -7.5t46.5 -6t53.5 -6t56.5 -7zM520 831q-78 0 -122 -49.5t-44 -130.5q0 -79 43.5 -127.5t122.5 -48.5t121.5 48.5 +t42.5 127.5q0 81 -43 130.5t-121 49.5zM551 -281q96 0 152.5 30t56.5 83q0 18 -6 31.5t-23 24t-32.5 16.5t-50 12t-58.5 9t-74 9q-136 17 -178 27l-51 -84q10 -77 81.5 -117.5t182.5 -40.5z" /> + <glyph glyph-name="h" unicode="h" horiz-adv-x="1169" +d="M147 0v1413h248v-530q57 70 133.5 103.5t155.5 33.5q76 0 138.5 -23.5t104.5 -64t71 -94.5t42 -114t13 -124v-600h-248v569q0 50 -8 88.5t-26.5 72t-55.5 51.5t-90 18q-113 0 -171.5 -81t-58.5 -212v-506h-248z" /> + <glyph glyph-name="i" unicode="i" horiz-adv-x="532" +d="M139 1188v225h254v-225h-254zM145 0v999h242v-999h-242z" /> + <glyph glyph-name="j" unicode="j" horiz-adv-x="541" +d="M143 1188v225h258v-225h-258zM104 -438q-92 0 -174 32l62 211q55 -22 88 -22q70 0 70 94v1122h245v-1103q0 -146 -73.5 -240t-217.5 -94z" /> + <glyph glyph-name="k" unicode="k" horiz-adv-x="1118" +d="M147 0v1413h244v-829l377 415h317l-374 -387l415 -612h-288l-293 463l-154 -170v-293h-244z" /> + <glyph glyph-name="l" unicode="l" horiz-adv-x="573" +d="M348 -20q-97 0 -153 48.5t-56 170.5v1214h244v-1147q0 -67 80 -67q28 0 67 6v-205q-102 -20 -182 -20z" /> + <glyph glyph-name="m" unicode="m" horiz-adv-x="1743" +d="M145 0v999h246v-104q92 125 254 125q183 0 281 -176q56 89 143 132.5t188 43.5q74 0 136 -23.5t104.5 -63.5t72 -94t43 -114t13.5 -125v-600h-248v569q0 224 -161 224q-96 0 -152.5 -70t-56.5 -174v-549h-248v573q0 220 -158 220q-97 0 -154 -70t-57 -174v-549h-246z" /> + <glyph glyph-name="n" unicode="n" horiz-adv-x="1161" +d="M145 0v999h242v-116q57 69 136 103t159 34q94 0 166 -35.5t113.5 -96.5t62 -133.5t20.5 -154.5v-600h-241v569q0 101 -50 163.5t-141 62.5q-107 0 -166 -61t-59 -187v-547h-242z" /> + <glyph glyph-name="o" unicode="o" horiz-adv-x="1128" +d="M563 -20q-113 0 -210 42t-162.5 113t-102.5 166t-37 201q0 141 62.5 258.5t181 188.5t268.5 71t268.5 -71t181 -188.5t62.5 -258.5q0 -106 -37 -201t-102.5 -166t-162.5 -113t-210 -42zM563 190q130 0 194 88.5t64 223.5q0 86 -25 153t-84.5 110.5t-148.5 43.5 +q-130 0 -194 -86.5t-64 -220.5q0 -86 25 -154t85 -113t148 -45z" /> + <glyph glyph-name="p" unicode="p" horiz-adv-x="1171" +d="M147 -438v1437h248v-100q98 121 281 121q135 0 235 -73t148.5 -189t48.5 -258q0 -141 -48.5 -257.5t-147.5 -189.5t-232 -73q-187 0 -285 120v-538h-248zM616 205q121 0 182.5 81t61.5 214t-62 217t-182 84t-181.5 -84t-61.5 -217t61.5 -214t181.5 -81z" /> + <glyph glyph-name="q" unicode="q" horiz-adv-x="1169" +d="M776 -438v538q-96 -120 -280 -120q-136 0 -236 72.5t-148.5 189t-48.5 258.5q0 141 48.5 257.5t147.5 189.5t233 73q84 0 159.5 -30t124.5 -91v100h246v-1437h-246zM555 205q121 0 181.5 80.5t60.5 214.5t-61 216.5t-181 82.5t-182 -83.5t-62 -215.5q0 -133 61.5 -214 +t182.5 -81z" /> + <glyph glyph-name="r" unicode="r" horiz-adv-x="815" +d="M145 0v999h238v-168q31 88 106 138.5t162 50.5q112 0 183 -72l-111 -200q-51 34 -109 34q-95 0 -164 -91t-69 -269v-422h-236z" /> + <glyph glyph-name="s" unicode="s" horiz-adv-x="909" +d="M446 -20q-153 0 -267 80t-152 200l194 86q61 -164 213 -164q78 0 120 36.5t42 82.5q0 34 -27.5 56.5t-72 36.5t-98 26.5t-107 33t-98 49.5t-72 81.5t-27.5 124.5q0 101 53.5 173.5t135.5 105t182 32.5q127 0 224 -57t155 -160l-189 -103q-70 127 -198 127 +q-58 0 -93.5 -25t-35.5 -61q0 -30 28 -51.5t73 -35.5t99 -28.5t108 -37.5t99 -55.5t73 -88.5t28 -131q0 -67 -22.5 -123t-60.5 -94t-88.5 -65t-105.5 -39t-113 -12z" /> + <glyph glyph-name="t" unicode="t" horiz-adv-x="754" +d="M500 -20q-147 0 -230.5 79.5t-83.5 216.5v519h-161v204h165v248l238 174v-422h252v-204h-252v-476q0 -124 113 -124q65 0 139 36v-221q-79 -30 -180 -30z" /> + <glyph glyph-name="u" unicode="u" horiz-adv-x="1167" +d="M479 -20q-184 0 -274 130t-90 363v526h247v-534q0 -134 38 -199t143 -65q47 0 85 14.5t72.5 50.5t54 107.5t19.5 175.5v450h248v-999h-248v117q-105 -137 -295 -137z" /> + <glyph glyph-name="v" unicode="v" horiz-adv-x="999" +d="M399 0l-407 999h266l242 -684l243 684h265l-408 -999h-201z" /> + <glyph glyph-name="w" unicode="w" horiz-adv-x="1466" +d="M317 -4l-307 1003h260l170 -626l189 626h209l188 -624l172 624h260l-309 -999h-219l-197 655l-196 -659h-220z" /> + <glyph glyph-name="x" unicode="x" horiz-adv-x="1030" +d="M10 0l342 504l-342 495h297l207 -329l207 329h299l-344 -495l344 -504h-299l-207 336l-207 -336h-297z" /> + <glyph glyph-name="y" unicode="y" horiz-adv-x="1032" +d="M201 -430l184 457l-391 972h268l252 -694l256 694h268l-571 -1429h-266z" /> + <glyph glyph-name="z" unicode="z" horiz-adv-x="1004" +d="M934 999v-174l-542 -620h542v-205h-881v162l565 633h-536v204h852z" /> + <glyph glyph-name="braceleft" unicode="{" horiz-adv-x="618" +d="M408 -156q-116 0 -187 105q-37 55 -37 178v360q0 21 -9 36.5t-30 28.5t-35 19.5t-44 17.5q-9 3 -13 5v160q71 25 101 53.5t30 87.5v426q0 258 246 258h51q32 0 84 -4v-164q-61 14 -102 14q-43 0 -57.5 -7.5t-14.5 -26.5v-510q0 -77 -37.5 -126.5t-103.5 -86.5 +q65 -30 103 -75.5t38 -100.5v-361q0 -129 101 -129q30 0 73 10v-164q-13 0 -42 -2t-44 -2h-71z" /> + <glyph glyph-name="bar" unicode="|" horiz-adv-x="623" +d="M221 -512v2046h180v-2046h-180z" /> + <glyph glyph-name="braceright" unicode="}" horiz-adv-x="618" +d="M139 -156q-14 0 -43.5 2t-42.5 2v164q45 -10 74 -10q100 0 100 129v361q0 53 38 98.5t104 77.5q-67 35 -104.5 85t-37.5 128v510q0 19 -14 26.5t-57 7.5q-42 0 -103 -14v164q54 4 84 4h51q246 0 246 -258v-426q0 -59 30 -87.5t101 -53.5v-160q-3 -1 -19.5 -7.5t-21 -8.5 +t-19 -8t-19.5 -9.5t-16 -10.5t-15.5 -13l-10.5 -14t-8 -17t-2 -19v-360q0 -122 -37 -178q-67 -105 -186 -105h-72z" /> + <glyph glyph-name="asciitilde" unicode="~" horiz-adv-x="1157" +d="M735 379q-64 0 -120 16t-88 35t-66 35t-60 16q-39 0 -49 -15.5t-10 -59.5h-170q0 123 59.5 184t167.5 61q73 0 133 -15.5t91 -33.5t62.5 -33.5t55.5 -15.5q43 0 54.5 19t11.5 73h178q0 -266 -250 -266z" /> + <glyph glyph-name="uni00A0" unicode=" " horiz-adv-x="563" + /> + <glyph glyph-name="exclamdown" unicode="¡" horiz-adv-x="635" +d="M184 735v264h267v-264h-267zM197 -434l28 1005h185l28 -1005h-241z" /> + <glyph glyph-name="cent" unicode="¢" horiz-adv-x="1116" +d="M494 -205v185q-95 17 -169 66.5t-119 120t-68 154.5t-23 177q0 193 97.5 338.5t281.5 179.5v184h180v-184q125 -21 207.5 -93t140.5 -200l-217 -84q-27 95 -78.5 139.5t-140.5 44.5q-64 0 -112 -27t-76 -73.5t-42 -103t-14 -121.5q0 -66 13.5 -122.5t41.5 -103 +t76.5 -73.5t112.5 -27q90 0 140.5 45.5t78.5 138.5l203 -80q-48 -130 -130 -202.5t-204 -93.5v-185h-180z" /> + <glyph glyph-name="sterling" unicode="£" horiz-adv-x="1200" +d="M137 0v207q10 4 26.5 12t59 35t75 56t59 74t26.5 91q0 27 -5.5 59t-10.5 51l-5 19h-221v205h172q-37 94 -37 227q0 177 114.5 293.5t316.5 116.5q144 0 251 -88.5t154 -222.5l-190 -70q-31 83 -87 129.5t-128 46.5q-109 0 -167.5 -52t-58.5 -157q0 -55 10.5 -110.5 +t21.5 -83.5l11 -29h477v-205h-430q13 -59 13 -125q0 -60 -13 -110.5t-32 -79.5t-37.5 -49t-31.5 -28l-13 -7h721v-205h-1041z" /> + <glyph glyph-name="currency" unicode="¤" horiz-adv-x="1348" +d="M303 129l-129 135l107 105q-81 117 -81 261.5t81 262.5l-105 102l129 135l107 -108q118 81 262 82t262 -80l106 104l132 -129l-107 -104q82 -118 82 -264t-82 -264l107 -103l-130 -135l-108 109q-117 -82 -262.5 -82t-263.5 82zM465 426q88 -88 208 -88t206 88 +q84 87 84.5 206t-84.5 204q-86 84 -206 83.5t-206 -85.5q-83 -85 -84 -205t82 -203z" /> + <glyph glyph-name="yen" unicode="¥" horiz-adv-x="1323" +d="M557 0v195h-299v184h299v117h-299v186h213l-473 731h250l414 -670l413 670h250l-473 -733h213v-184h-299v-117h299v-184h-299v-195h-209z" /> + <glyph glyph-name="brokenbar" unicode="¦" horiz-adv-x="643" +d="M221 731v744h201v-744h-201zM221 -307v727h201v-727h-201z" /> + <glyph glyph-name="section" unicode="§" horiz-adv-x="1112" +d="M561 -18q-77 0 -147 17t-130.5 51.5t-103 92.5t-57.5 133l233 70q20 -89 73.5 -128.5t148.5 -39.5q85 0 137.5 28.5t52.5 84.5q0 37 -25.5 63.5t-67.5 40.5t-96 28.5t-110 25.5t-110 33t-96 50.5t-67.5 78.5t-25.5 116q0 114 86 207q-84 76 -84 190q0 74 33 134t88 97.5 +t124 58t144 20.5q130 0 233 -55t146 -136l-195 -113q-18 53 -68 84t-124 31q-85 0 -131.5 -37.5t-46.5 -87.5q0 -39 33 -64t85.5 -39t116.5 -26.5t128 -32.5t116.5 -50t85.5 -86t33 -134q0 -118 -80 -205q80 -74 80 -192q0 -80 -36 -141.5t-96.5 -97t-131.5 -53t-148 -17.5z +M684 571q40 14 62 43.5t22 67.5q0 31 -15.5 55t-36 39t-63 30t-72.5 23t-89 21q-23 5 -35 8q-41 -19 -61.5 -54t-20.5 -69t20.5 -59t59.5 -41.5t82.5 -28.5t100.5 -25q10 -2 15.5 -3t14.5 -3t16 -4z" /> + <glyph glyph-name="dieresis" unicode="¨" horiz-adv-x="842" +d="M141 1188v225h205v-225h-205zM496 1188v225h204v-225h-204z" /> + <glyph glyph-name="copyright" unicode="©" horiz-adv-x="1739" +d="M870 -49q-161 0 -307 60t-251 161t-167.5 241t-62.5 294q0 205 105.5 379t287 275t395.5 101q160 0 306 -60t251 -161t167.5 -240.5t62.5 -293.5t-62.5 -294t-167.5 -241t-251 -161t-306 -60zM870 139q159 0 297 77t219.5 208.5t81.5 282.5t-81.5 282t-219.5 208t-297 77 +q-120 0 -230.5 -46t-191 -122t-128.5 -181t-48 -218t48 -218t128.5 -181.5t191 -122.5t230.5 -46zM887 264q-95 0 -170 36t-122.5 97t-72 140t-24.5 168t24.5 167.5t72 140t123 97t169.5 35.5q126 0 211.5 -61t142.5 -183l-174 -74q-34 70 -74 98.5t-106 28.5 +q-102 0 -152.5 -69t-50.5 -180q0 -112 49.5 -180t151.5 -68q70 0 108.5 29.5t71.5 97.5l176 -74q-58 -125 -143.5 -185.5t-210.5 -60.5z" /> + <glyph glyph-name="ordfeminine" unicode="ª" horiz-adv-x="954" +d="M393 709q-102 0 -175 60.5t-73 158.5q0 111 77 165t202 54h194q-3 76 -39.5 113.5t-115.5 37.5q-104 0 -178 -106l-119 80q63 86 133 124t168 38q138 0 216.5 -78t78.5 -207v-426h-133l-4 84q-89 -98 -232 -98zM420 846q76 0 132.5 50.5t65.5 117.5h-184q-60 0 -94.5 -23 +t-34.5 -63q0 -33 36 -57.5t79 -24.5z" /> + <glyph glyph-name="guillemotleft" unicode="«" horiz-adv-x="954" +d="M444 156l-428 354l428 356v-211l-180 -145l180 -143v-211zM807 156l-428 354l428 356v-211l-180 -145l180 -143v-211z" /> + <glyph glyph-name="logicalnot" unicode="¬" horiz-adv-x="1300" +d="M850 291v289h-715v217h948v-506h-233z" /> + <glyph glyph-name="uni00AD" unicode="­" horiz-adv-x="1010" +d="M141 508v184h727v-184h-727z" /> + <glyph glyph-name="registered" unicode="®" horiz-adv-x="1739" +d="M870 -47q-161 0 -307 60t-251 161t-167.5 241t-62.5 294q0 205 105.5 379t287 275t395.5 101q160 0 306 -60t251 -161t167.5 -240.5t62.5 -293.5t-62.5 -294t-167.5 -241t-251 -161t-306 -60zM870 133q162 0 302 78t222.5 211t82.5 287t-82.5 286.5t-222.5 210.5t-302 78 +q-163 0 -303 -78t-222.5 -210.5t-82.5 -286.5t82.5 -287t222.5 -211t303 -78zM602 289v825h322q137 0 210.5 -67t73.5 -187q0 -87 -39.5 -144.5t-101.5 -84.5l199 -342h-211l-172 315h-97v-315h-184zM776 778h148q63 0 86.5 19t23.5 63q0 46 -22.5 63t-87.5 17h-148v-162z +" /> + <glyph glyph-name="macron" unicode="¯" horiz-adv-x="838" +d="M139 1147v143h559v-143h-559z" /> + <glyph glyph-name="degree" unicode="°" horiz-adv-x="877" +d="M438 848q-120 0 -206.5 86t-86.5 207t86.5 207t206.5 86q122 0 207.5 -86t85.5 -207t-85.5 -207t-207.5 -86zM438 1012q55 0 93 37.5t38 91.5t-38 91.5t-93 37.5q-53 0 -91 -38t-38 -91q0 -54 38 -91.5t91 -37.5z" /> + <glyph glyph-name="plusminus" unicode="±" horiz-adv-x="1331" +d="M573 106v426h-456v185h456v426h185v-426h456v-185h-456v-426h-185zM119 -184v184h1093v-184h-1093z" /> + <glyph glyph-name="acute" unicode="´" horiz-adv-x="537" +d="M33 1124l225 289h260l-307 -289h-178z" /> + <glyph glyph-name="uni00B5" unicode="µ" horiz-adv-x="1294" +d="M219 -266v1265h227v-581q0 -230 170 -230q106 0 184.5 76t78.5 178v557h227v-999h-227v98q-53 -53 -125 -87t-154 -34q-88 0 -158 31l-18 -274h-205z" /> + <glyph glyph-name="paragraph" unicode="¶" horiz-adv-x="1262" +d="M518 -246v869q-119 0 -220.5 45.5t-166.5 137.5t-65 212t65 212t166.5 137.5t220.5 45.5h170v-1659h-170zM868 -246v1659h172v-1659h-172z" /> + <glyph glyph-name="periodcentered" unicode="·" horiz-adv-x="616" +d="M307 651q-62 0 -104.5 44t-42.5 106q0 61 43 104t104 43q62 0 106 -42.5t44 -104.5t-43.5 -106t-106.5 -44z" /> + <glyph glyph-name="cedilla" unicode="¸" horiz-adv-x="561" +d="M256 -522q-63 0 -117.5 36t-79.5 93l136 57q8 -20 26 -33.5t41 -13.5q35 0 57.5 22t22.5 56q0 48 -47 79t-121 31h-70l123 193h144l-76 -98q92 -13 141 -64.5t49 -132.5q0 -96 -65.5 -160.5t-163.5 -64.5z" /> + <glyph glyph-name="ordmasculine" unicode="º" horiz-adv-x="991" +d="M496 711q-157 0 -258 105t-101 257q0 151 101 256t258 105q155 0 255.5 -105t100.5 -256q0 -152 -100 -257t-256 -105zM496 856q96 0 142 59.5t46 157.5t-46 157.5t-142 59.5q-98 0 -144.5 -59.5t-46.5 -157.5t46.5 -157.5t144.5 -59.5z" /> + <glyph glyph-name="guillemotright" unicode="»" horiz-adv-x="956" +d="M145 156v211l181 143l-181 145v211l428 -356zM508 156v211l180 143l-180 145v211l428 -356z" /> + <glyph glyph-name="questiondown" unicode="¿" horiz-adv-x="993" +d="M371 735v264h266v-264h-266zM516 -434q-124 0 -225 44t-164.5 136.5t-63.5 218.5q0 75 19 134t48.5 95.5t66 64.5t73 47t66 36.5t48.5 39.5t19 50v143h207v-145q0 -67 -18.5 -117t-48 -79t-65 -51.5t-71 -41.5t-65 -40.5t-48 -56.5t-18.5 -83q0 -96 62 -144t168 -48 +q103 0 166.5 54t64.5 154h215q-1 -125 -60.5 -220t-157.5 -143t-218 -48z" /> + <glyph glyph-name="Agrave" unicode="À" +d="M607 1516l-308 309h260l226 -309h-178zM12 0l566 1413h190l563 -1413h-274l-109 307h-549l-110 -307h-277zM485 524h377l-188 516z" /> + <glyph glyph-name="Aacute" unicode="Á" +d="M553 1536l225 289h260l-307 -289h-178zM12 0l566 1413h190l563 -1413h-274l-109 307h-549l-110 -307h-277zM485 524h377l-188 516z" /> + <glyph glyph-name="Acircumflex" unicode="Â" +d="M354 1510l316 352l317 -352h-188l-129 145l-127 -145h-189zM12 0l566 1413h190l563 -1413h-274l-109 307h-549l-110 -307h-277zM485 524h377l-188 516z" /> + <glyph glyph-name="Atilde" unicode="Ã" +d="M799 1517q-44 0 -80 15t-59 36t-42 42t-39 36t-40 15q-31 0 -48 -35.5t-17 -101.5h-140q0 137 57 211.5t156 74.5q48 0 89.5 -22t65 -48.5t50.5 -48.5t49 -22q27 0 44.5 35.5t17.5 99.5h145q0 -137 -55.5 -212t-153.5 -75zM12 0l566 1413h190l563 -1413h-274l-109 307 +h-549l-110 -307h-277zM485 524h377l-188 516z" /> + <glyph glyph-name="Adieresis" unicode="Ä" +d="M391 1600v225h205v-225h-205zM746 1600v225h204v-225h-204zM12 0l566 1413h190l563 -1413h-274l-109 307h-549l-110 -307h-277zM485 524h377l-188 516z" /> + <glyph glyph-name="Aring" unicode="Å" +d="M12 0l531 1325q-47 31 -74 82t-27 109q0 95 67.5 162t162.5 67t163 -66.5t68 -162.5q0 -59 -27 -109.5t-73 -81.5l528 -1325h-274l-109 307h-549l-110 -307h-277zM672 1415q44 0 72 29t28 74q0 42 -27 69t-73 27q-44 0 -71.5 -27t-27.5 -69q0 -45 28.5 -74t70.5 -29z +M485 524h377l-188 516z" /> + <glyph glyph-name="AE" unicode="Æ" horiz-adv-x="1858" +d="M12 0l559 1413h1186v-213h-747v-387h659v-213h-659v-381h747v-219h-981v307h-397l-111 -307h-256zM459 504h317v696h-47z" /> + <glyph glyph-name="Ccedilla" unicode="Ç" horiz-adv-x="1432" +d="M1384 387q-75 -178 -215 -281.5t-324 -121.5l-65 -84q92 -13 141 -64.5t49 -132.5q0 -96 -65.5 -160.5t-163.5 -64.5q-63 0 -117.5 36t-79.5 93l136 57q8 -20 26 -33.5t41 -13.5q35 0 57.5 22t22.5 56q0 48 -47 79t-121 31h-70l113 177q-153 11 -273.5 73.5t-195 162 +t-113 224t-38.5 265.5q0 118 26 224.5t80.5 199t134 160.5t192.5 106.5t249 38.5q211 0 372 -104.5t246 -301.5l-237 -94q-74 258 -383 258q-109 0 -192.5 -37.5t-134 -103.5t-76 -150.5t-25.5 -185.5q0 -108 25.5 -196.5t76.5 -156.5t135 -105.5t195 -37.5 +q140 0 233.5 61.5t149.5 200.5z" /> + <glyph glyph-name="Egrave" unicode="È" horiz-adv-x="1245" +d="M556 1516l-308 309h260l226 -309h-178zM182 0v1413h940v-233h-686v-357h639v-233h-639v-350h686v-240h-940z" /> + <glyph glyph-name="Eacute" unicode="É" horiz-adv-x="1245" +d="M502 1536l225 289h260l-307 -289h-178zM182 0v1413h940v-233h-686v-357h639v-233h-639v-350h686v-240h-940z" /> + <glyph glyph-name="Ecircumflex" unicode="Ê" horiz-adv-x="1245" +d="M303 1510l316 352l317 -352h-188l-129 145l-127 -145h-189zM182 0v1413h940v-233h-686v-357h639v-233h-639v-350h686v-240h-940z" /> + <glyph glyph-name="Edieresis" unicode="Ë" horiz-adv-x="1245" +d="M340 1600v225h205v-225h-205zM695 1600v225h204v-225h-204zM182 0v1413h940v-233h-686v-357h639v-233h-639v-350h686v-240h-940z" /> + <glyph glyph-name="Igrave" unicode="Ì" horiz-adv-x="618" +d="M244 1516l-308 309h260l226 -309h-178zM182 0v1413h254v-1413h-254z" /> + <glyph glyph-name="Iacute" unicode="Í" horiz-adv-x="618" +d="M190 1536l225 289h260l-307 -289h-178zM182 0v1413h254v-1413h-254z" /> + <glyph glyph-name="Icircumflex" unicode="Î" horiz-adv-x="618" +d="M-9 1510l316 352l317 -352h-188l-129 145l-127 -145h-189zM182 0v1413h254v-1413h-254z" /> + <glyph glyph-name="Idieresis" unicode="Ï" horiz-adv-x="618" +d="M28 1600v225h205v-225h-205zM383 1600v225h204v-225h-204zM182 0v1413h254v-1413h-254z" /> + <glyph glyph-name="Eth" unicode="Ð" horiz-adv-x="1430" +d="M205 0v621h-113v184h113v608h399q357 0 551.5 -186t194.5 -531q0 -331 -197 -513.5t-551 -182.5h-397zM438 219h140q121 0 217 28t168.5 85.5t111.5 152.5t39 222q0 246 -125.5 367.5t-388.5 121.5h-162v-391h381v-184h-381v-402z" /> + <glyph glyph-name="Ntilde" unicode="Ñ" horiz-adv-x="1454" +d="M854 1517q-44 0 -80 15t-59 36t-42 42t-39 36t-40 15q-31 0 -48 -35.5t-17 -101.5h-140q0 137 57 211.5t156 74.5q48 0 89.5 -22t65 -48.5t50.5 -48.5t49 -22q27 0 44.5 35.5t17.5 99.5h145q0 -137 -55.5 -212t-153.5 -75zM182 0v1413h252l594 -989v989h244v-1413h-254 +l-592 991v-991h-244z" /> + <glyph glyph-name="Ograve" unicode="Ò" horiz-adv-x="1528" +d="M699 1516l-308 309h260l226 -309h-178zM764 -20q-136 0 -249.5 38.5t-192.5 106t-134 160t-80.5 199t-25.5 223.5t25.5 223.5t80.5 199t134 160t192.5 106t249.5 38.5t249.5 -38.5t192.5 -106t134 -160t80.5 -199t25.5 -223.5t-25.5 -223.5t-80.5 -199t-134 -160 +t-192.5 -106t-249.5 -38.5zM764 205q88 0 159 27t118 73t78.5 110.5t45 136.5t13.5 155q0 82 -13.5 154.5t-45 136.5t-78.5 110t-118 73t-159 27t-159 -27t-118 -73t-78.5 -110t-45 -136.5t-13.5 -154.5q0 -83 13.5 -155t45 -136.5t78.5 -110.5t118 -73t159 -27z" /> + <glyph glyph-name="Oacute" unicode="Ó" horiz-adv-x="1528" +d="M645 1536l225 289h260l-307 -289h-178zM764 -20q-136 0 -249.5 38.5t-192.5 106t-134 160t-80.5 199t-25.5 223.5t25.5 223.5t80.5 199t134 160t192.5 106t249.5 38.5t249.5 -38.5t192.5 -106t134 -160t80.5 -199t25.5 -223.5t-25.5 -223.5t-80.5 -199t-134 -160 +t-192.5 -106t-249.5 -38.5zM764 205q88 0 159 27t118 73t78.5 110.5t45 136.5t13.5 155q0 82 -13.5 154.5t-45 136.5t-78.5 110t-118 73t-159 27t-159 -27t-118 -73t-78.5 -110t-45 -136.5t-13.5 -154.5q0 -83 13.5 -155t45 -136.5t78.5 -110.5t118 -73t159 -27z" /> + <glyph glyph-name="Ocircumflex" unicode="Ô" horiz-adv-x="1528" +d="M446 1510l316 352l317 -352h-188l-129 145l-127 -145h-189zM764 -20q-136 0 -249.5 38.5t-192.5 106t-134 160t-80.5 199t-25.5 223.5t25.5 223.5t80.5 199t134 160t192.5 106t249.5 38.5t249.5 -38.5t192.5 -106t134 -160t80.5 -199t25.5 -223.5t-25.5 -223.5 +t-80.5 -199t-134 -160t-192.5 -106t-249.5 -38.5zM764 205q88 0 159 27t118 73t78.5 110.5t45 136.5t13.5 155q0 82 -13.5 154.5t-45 136.5t-78.5 110t-118 73t-159 27t-159 -27t-118 -73t-78.5 -110t-45 -136.5t-13.5 -154.5q0 -83 13.5 -155t45 -136.5t78.5 -110.5 +t118 -73t159 -27z" /> + <glyph glyph-name="Otilde" unicode="Õ" horiz-adv-x="1528" +d="M891 1517q-44 0 -80 15t-59 36t-42 42t-39 36t-40 15q-31 0 -48 -35.5t-17 -101.5h-140q0 137 57 211.5t156 74.5q48 0 89.5 -22t65 -48.5t50.5 -48.5t49 -22q27 0 44.5 35.5t17.5 99.5h145q0 -137 -55.5 -212t-153.5 -75zM764 -20q-136 0 -249.5 38.5t-192.5 106 +t-134 160t-80.5 199t-25.5 223.5t25.5 223.5t80.5 199t134 160t192.5 106t249.5 38.5t249.5 -38.5t192.5 -106t134 -160t80.5 -199t25.5 -223.5t-25.5 -223.5t-80.5 -199t-134 -160t-192.5 -106t-249.5 -38.5zM764 205q88 0 159 27t118 73t78.5 110.5t45 136.5t13.5 155 +q0 82 -13.5 154.5t-45 136.5t-78.5 110t-118 73t-159 27t-159 -27t-118 -73t-78.5 -110t-45 -136.5t-13.5 -154.5q0 -83 13.5 -155t45 -136.5t78.5 -110.5t118 -73t159 -27z" /> + <glyph glyph-name="Odieresis" unicode="Ö" horiz-adv-x="1528" +d="M483 1600v225h205v-225h-205zM838 1600v225h204v-225h-204zM764 -20q-136 0 -249.5 38.5t-192.5 106t-134 160t-80.5 199t-25.5 223.5t25.5 223.5t80.5 199t134 160t192.5 106t249.5 38.5t249.5 -38.5t192.5 -106t134 -160t80.5 -199t25.5 -223.5t-25.5 -223.5 +t-80.5 -199t-134 -160t-192.5 -106t-249.5 -38.5zM764 205q88 0 159 27t118 73t78.5 110.5t45 136.5t13.5 155q0 82 -13.5 154.5t-45 136.5t-78.5 110t-118 73t-159 27t-159 -27t-118 -73t-78.5 -110t-45 -136.5t-13.5 -154.5q0 -83 13.5 -155t45 -136.5t78.5 -110.5 +t118 -73t159 -27z" /> + <glyph glyph-name="multiply" unicode="×" horiz-adv-x="1090" +d="M221 172l-129 129l322 324l-301 301l131 131l301 -301l323 321l129 -129l-321 -323l301 -301l-131 -131l-301 301z" /> + <glyph glyph-name="Oslash" unicode="Ø" horiz-adv-x="1528" +d="M1207 1288q118 -99 178.5 -250.5t60.5 -330.5q0 -117 -25.5 -223.5t-80.5 -199t-134 -160t-192.5 -106t-249.5 -38.5q-173 0 -312 63l-26 -43h-182l77 126q-118 99 -178.5 251t-60.5 330q0 117 25.5 223.5t80.5 199t134 160t192.5 106t249.5 38.5q172 0 311 -63l25 42 +h182zM350 707q0 -231 102 -363l500 825q-81 39 -188 39q-88 0 -159 -27t-118 -73t-78.5 -110t-45 -136.5t-13.5 -154.5zM764 205q88 0 159 27t118 73t78.5 110.5t45 136.5t13.5 155q0 231 -103 364l-501 -826q82 -40 190 -40z" /> + <glyph glyph-name="Ugrave" unicode="Ù" horiz-adv-x="1380" +d="M621 1516l-308 309h260l226 -309h-178zM690 -20q-275 0 -407.5 150.5t-132.5 420.5v862h253v-833q0 -182 62.5 -268.5t224.5 -86.5q163 0 225 86.5t62 268.5v833h254v-852q0 -277 -132.5 -429t-408.5 -152z" /> + <glyph glyph-name="Uacute" unicode="Ú" horiz-adv-x="1380" +d="M567 1536l225 289h260l-307 -289h-178zM690 -20q-275 0 -407.5 150.5t-132.5 420.5v862h253v-833q0 -182 62.5 -268.5t224.5 -86.5q163 0 225 86.5t62 268.5v833h254v-852q0 -277 -132.5 -429t-408.5 -152z" /> + <glyph glyph-name="Ucircumflex" unicode="Û" horiz-adv-x="1380" +d="M368 1510l316 352l317 -352h-188l-129 145l-127 -145h-189zM690 -20q-275 0 -407.5 150.5t-132.5 420.5v862h253v-833q0 -182 62.5 -268.5t224.5 -86.5q163 0 225 86.5t62 268.5v833h254v-852q0 -277 -132.5 -429t-408.5 -152z" /> + <glyph glyph-name="Udieresis" unicode="Ü" horiz-adv-x="1380" +d="M405 1600v225h205v-225h-205zM760 1600v225h204v-225h-204zM690 -20q-275 0 -407.5 150.5t-132.5 420.5v862h253v-833q0 -182 62.5 -268.5t224.5 -86.5q163 0 225 86.5t62 268.5v833h254v-852q0 -277 -132.5 -429t-408.5 -152z" /> + <glyph glyph-name="Yacute" unicode="Ý" horiz-adv-x="1319" +d="M538 1536l225 289h260l-307 -289h-178zM528 0v551l-530 862h307l352 -618l355 618h309l-528 -862v-551h-265z" /> + <glyph glyph-name="Thorn" unicode="Þ" horiz-adv-x="1151" +d="M182 0v1413h232v-194h256q210 0 322 -107t112 -293q0 -206 -134 -314t-356 -108h-200v-397h-232zM414 608h200q258 0 258 203q0 209 -258 209h-200v-412z" /> + <glyph glyph-name="germandbls" unicode="ß" horiz-adv-x="1186" +d="M729 -18q-98 0 -203 36l84 207q56 -22 113 -22q63 0 100 33t37 83q0 44 -30.5 85t-74 76t-86.5 73t-73.5 92t-30.5 117q0 54 22.5 94t54.5 63.5t63.5 44.5t54 50t22.5 67q0 58 -47 101t-139 43q-102 0 -154.5 -55t-52.5 -150v-1020h-242v1020q0 96 36 175.5t96.5 131 +t138.5 79.5t164 28q111 0 211 -44t165.5 -130t65.5 -195q0 -65 -24 -113.5t-58.5 -75t-68.5 -45.5t-58 -38t-24 -41q0 -25 32.5 -53.5t78.5 -60t92.5 -71.5t79 -104t32.5 -141q0 -149 -107.5 -244.5t-269.5 -95.5z" /> + <glyph glyph-name="agrave" unicode="à" horiz-adv-x="1061" +d="M439 1104l-308 309h260l226 -309h-178zM418 -20q-159 0 -261 87t-102 240q0 64 20 113.5t55 82t86 54t109 30.5t128 9h260q0 97 -51 154t-146 57q-80 0 -139.5 -39.5t-95.5 -101.5l-187 135q160 219 420 219q201 0 316.5 -114t115.5 -300v-606h-201l-16 143 +q-112 -163 -311 -163zM453 186q104 0 180.5 70t79.5 164h-246q-79 0 -120.5 -35t-41.5 -86t39 -82t109 -31z" /> + <glyph glyph-name="aacute" unicode="á" horiz-adv-x="1061" +d="M385 1124l225 289h260l-307 -289h-178zM418 -20q-159 0 -261 87t-102 240q0 64 20 113.5t55 82t86 54t109 30.5t128 9h260q0 97 -51 154t-146 57q-80 0 -139.5 -39.5t-95.5 -101.5l-187 135q160 219 420 219q201 0 316.5 -114t115.5 -300v-606h-201l-16 143 +q-112 -163 -311 -163zM453 186q104 0 180.5 70t79.5 164h-246q-79 0 -120.5 -35t-41.5 -86t39 -82t109 -31z" /> + <glyph glyph-name="acircumflex" unicode="â" horiz-adv-x="1061" +d="M186 1098l316 352l317 -352h-188l-129 145l-127 -145h-189zM418 -20q-159 0 -261 87t-102 240q0 64 20 113.5t55 82t86 54t109 30.5t128 9h260q0 97 -51 154t-146 57q-80 0 -139.5 -39.5t-95.5 -101.5l-187 135q160 219 420 219q201 0 316.5 -114t115.5 -300v-606h-201 +l-16 143q-112 -163 -311 -163zM453 186q104 0 180.5 70t79.5 164h-246q-79 0 -120.5 -35t-41.5 -86t39 -82t109 -31z" /> + <glyph glyph-name="atilde" unicode="ã" horiz-adv-x="1061" +d="M631 1105q-44 0 -80 15t-59 36t-42 42t-39 36t-40 15q-31 0 -48 -35.5t-17 -101.5h-140q0 137 57 211.5t156 74.5q48 0 89.5 -22t65 -48.5t50.5 -48.5t49 -22q27 0 44.5 35.5t17.5 99.5h145q0 -137 -55.5 -212t-153.5 -75zM418 -20q-159 0 -261 87t-102 240 +q0 64 20 113.5t55 82t86 54t109 30.5t128 9h260q0 97 -51 154t-146 57q-80 0 -139.5 -39.5t-95.5 -101.5l-187 135q160 219 420 219q201 0 316.5 -114t115.5 -300v-606h-201l-16 143q-112 -163 -311 -163zM453 186q104 0 180.5 70t79.5 164h-246q-79 0 -120.5 -35t-41.5 -86 +t39 -82t109 -31z" /> + <glyph glyph-name="adieresis" unicode="ä" horiz-adv-x="1061" +d="M223 1188v225h205v-225h-205zM578 1188v225h204v-225h-204zM418 -20q-159 0 -261 87t-102 240q0 64 20 113.5t55 82t86 54t109 30.5t128 9h260q0 97 -51 154t-146 57q-80 0 -139.5 -39.5t-95.5 -101.5l-187 135q160 219 420 219q201 0 316.5 -114t115.5 -300v-606h-201 +l-16 143q-112 -163 -311 -163zM453 186q104 0 180.5 70t79.5 164h-246q-79 0 -120.5 -35t-41.5 -86t39 -82t109 -31z" /> + <glyph glyph-name="aring" unicode="å" horiz-adv-x="1061" +d="M502 1069q-96 0 -162.5 68.5t-66.5 162.5q0 95 67 162.5t162 67.5t163.5 -67t68.5 -163q0 -97 -67.5 -164t-164.5 -67zM502 1200q45 0 73 29t28 74q0 42 -27 69t-74 27q-44 0 -71 -27t-27 -69q0 -45 28 -74t70 -29zM418 -20q-159 0 -261 87t-102 240q0 64 20 113.5t55 82 +t86 54t109 30.5t128 9h260q0 97 -51 154t-146 57q-80 0 -139.5 -39.5t-95.5 -101.5l-187 135q160 219 420 219q201 0 316.5 -114t115.5 -300v-606h-201l-16 143q-112 -163 -311 -163zM453 186q104 0 180.5 70t79.5 164h-246q-79 0 -120.5 -35t-41.5 -86t39 -82t109 -31z" /> + <glyph glyph-name="ae" unicode="æ" horiz-adv-x="1677" +d="M399 -20q-146 0 -250 86.5t-104 226.5q0 82 30.5 142t86 94.5t125.5 50.5t157 16h271q0 110 -51 161.5t-166 51.5q-74 0 -136.5 -36.5t-99.5 -90.5l-172 125q77 105 177.5 157t238.5 52q110 0 196 -43t138 -121q125 160 327 160q99 0 177.5 -29t129 -78t84 -116.5 +t47 -139.5t13.5 -153q0 -20 -2.5 -39t-5.5 -28l-2 -9h-686q14 -96 75 -150.5t166 -54.5q85 0 141.5 19.5t106.5 72.5l170 -147q-87 -92 -187.5 -132t-228.5 -40q-239 0 -350 162q-160 -170 -416 -170zM924 596h454q-28 211 -231 211q-98 0 -153.5 -57t-69.5 -154zM438 180 +q106 0 184.5 73.5t92.5 166.5h-256q-85 0 -135 -35t-50 -90q0 -57 44 -86t120 -29z" /> + <glyph glyph-name="ccedilla" unicode="ç" horiz-adv-x="1004" +d="M539 201q72 0 126 43.5t74 115.5l222 -84q-44 -125 -138.5 -201.5t-222.5 -91.5l-65 -83q92 -13 141 -64.5t49 -132.5q0 -96 -65.5 -160.5t-163.5 -64.5q-63 0 -117.5 36t-79.5 93l136 57q8 -20 26 -33.5t41 -13.5q35 0 57.5 22t22.5 56q0 48 -47 79t-121 31h-70l115 181 +q-130 18 -223 95.5t-136 184.5t-43 232q0 101 30 192.5t88 166t152 119t212 44.5q152 0 264 -74.5t168 -220.5l-232 -90q-20 74 -73.5 119t-126.5 45q-49 0 -89 -17t-66.5 -46t-44.5 -68t-26 -81.5t-8 -88.5q0 -59 13 -110.5t40 -94.5t73.5 -67.5t107.5 -24.5z" /> + <glyph glyph-name="egrave" unicode="è" horiz-adv-x="1067" +d="M461 1104l-308 309h260l226 -309h-178zM561 -20q-125 0 -223.5 42.5t-159 115t-92 164t-31.5 194.5q0 100 30 192t87.5 167t154 120t218.5 45q101 0 182 -31.5t132.5 -81.5t86 -117.5t48.5 -135t14 -138.5t-9 -96h-686q35 -219 250 -219q145 0 240 106l168 -147 +q-162 -180 -410 -180zM313 596h455q-12 106 -70.5 162.5t-154.5 56.5q-190 0 -230 -219z" /> + <glyph glyph-name="eacute" unicode="é" horiz-adv-x="1067" +d="M407 1124l225 289h260l-307 -289h-178zM561 -20q-125 0 -223.5 42.5t-159 115t-92 164t-31.5 194.5q0 100 30 192t87.5 167t154 120t218.5 45q101 0 182 -31.5t132.5 -81.5t86 -117.5t48.5 -135t14 -138.5t-9 -96h-686q35 -219 250 -219q145 0 240 106l168 -147 +q-162 -180 -410 -180zM313 596h455q-12 106 -70.5 162.5t-154.5 56.5q-190 0 -230 -219z" /> + <glyph glyph-name="ecircumflex" unicode="ê" horiz-adv-x="1067" +d="M208 1098l316 352l317 -352h-188l-129 145l-127 -145h-189zM561 -20q-125 0 -223.5 42.5t-159 115t-92 164t-31.5 194.5q0 100 30 192t87.5 167t154 120t218.5 45q101 0 182 -31.5t132.5 -81.5t86 -117.5t48.5 -135t14 -138.5t-9 -96h-686q35 -219 250 -219 +q145 0 240 106l168 -147q-162 -180 -410 -180zM313 596h455q-12 106 -70.5 162.5t-154.5 56.5q-190 0 -230 -219z" /> + <glyph glyph-name="edieresis" unicode="ë" horiz-adv-x="1067" +d="M245 1188v225h205v-225h-205zM600 1188v225h204v-225h-204zM561 -20q-125 0 -223.5 42.5t-159 115t-92 164t-31.5 194.5q0 100 30 192t87.5 167t154 120t218.5 45q101 0 182 -31.5t132.5 -81.5t86 -117.5t48.5 -135t14 -138.5t-9 -96h-686q35 -219 250 -219 +q145 0 240 106l168 -147q-162 -180 -410 -180zM313 596h455q-12 106 -70.5 162.5t-154.5 56.5q-190 0 -230 -219z" /> + <glyph glyph-name="igrave" unicode="ì" horiz-adv-x="516" +d="M193 1104l-308 309h260l226 -309h-178zM145 0v999h226v-999h-226z" /> + <glyph glyph-name="iacute" unicode="í" horiz-adv-x="516" +d="M139 1124l225 289h260l-307 -289h-178zM145 0v999h226v-999h-226z" /> + <glyph glyph-name="icircumflex" unicode="î" horiz-adv-x="516" +d="M-60 1098l316 352l317 -352h-188l-129 145l-127 -145h-189zM145 0v999h226v-999h-226z" /> + <glyph glyph-name="idieresis" unicode="ï" horiz-adv-x="516" +d="M-23 1188v225h205v-225h-205zM332 1188v225h204v-225h-204zM145 0v999h226v-999h-226z" /> + <glyph glyph-name="eth" unicode="ð" horiz-adv-x="1178" +d="M640 1397q230 -135 341 -336.5t111 -493.5q0 -277 -132.5 -430t-373.5 -153q-128 0 -231 43.5t-167.5 118.5t-98.5 169.5t-34 200.5q0 141 57 254.5t169 181.5t260 68q152 0 256 -78q-65 183 -273 288l-80 -116l-102 66l69 100q-59 21 -135 45l111 191q76 -28 145 -62 +l68 98l105 -61zM573 209q131 0 202 89t71 220q0 132 -72.5 218.5t-200.5 86.5q-130 0 -201 -88.5t-71 -218.5t71 -218.5t201 -88.5z" /> + <glyph glyph-name="ntilde" unicode="ñ" horiz-adv-x="1161" +d="M715 1105q-44 0 -80 15t-59 36t-42 42t-39 36t-40 15q-31 0 -48 -35.5t-17 -101.5h-140q0 137 57 211.5t156 74.5q48 0 89.5 -22t65 -48.5t50.5 -48.5t49 -22q27 0 44.5 35.5t17.5 99.5h145q0 -137 -55.5 -212t-153.5 -75zM145 0v999h242v-116q57 69 136 103t159 34 +q94 0 166 -35.5t113.5 -96.5t62 -133.5t20.5 -154.5v-600h-241v569q0 101 -50 163.5t-141 62.5q-107 0 -166 -61t-59 -187v-547h-242z" /> + <glyph glyph-name="ograve" unicode="ò" horiz-adv-x="1128" +d="M498 1104l-308 309h260l226 -309h-178zM563 -20q-113 0 -210 42t-162.5 113t-102.5 166t-37 201q0 141 62.5 258.5t181 188.5t268.5 71t268.5 -71t181 -188.5t62.5 -258.5q0 -106 -37 -201t-102.5 -166t-162.5 -113t-210 -42zM563 190q130 0 194 88.5t64 223.5 +q0 86 -25 153t-84.5 110.5t-148.5 43.5q-130 0 -194 -86.5t-64 -220.5q0 -86 25 -154t85 -113t148 -45z" /> + <glyph glyph-name="oacute" unicode="ó" horiz-adv-x="1128" +d="M444 1124l225 289h260l-307 -289h-178zM563 -20q-113 0 -210 42t-162.5 113t-102.5 166t-37 201q0 141 62.5 258.5t181 188.5t268.5 71t268.5 -71t181 -188.5t62.5 -258.5q0 -106 -37 -201t-102.5 -166t-162.5 -113t-210 -42zM563 190q130 0 194 88.5t64 223.5 +q0 86 -25 153t-84.5 110.5t-148.5 43.5q-130 0 -194 -86.5t-64 -220.5q0 -86 25 -154t85 -113t148 -45z" /> + <glyph glyph-name="ocircumflex" unicode="ô" horiz-adv-x="1128" +d="M245 1098l316 352l317 -352h-188l-129 145l-127 -145h-189zM563 -20q-113 0 -210 42t-162.5 113t-102.5 166t-37 201q0 141 62.5 258.5t181 188.5t268.5 71t268.5 -71t181 -188.5t62.5 -258.5q0 -106 -37 -201t-102.5 -166t-162.5 -113t-210 -42zM563 190q130 0 194 88.5 +t64 223.5q0 86 -25 153t-84.5 110.5t-148.5 43.5q-130 0 -194 -86.5t-64 -220.5q0 -86 25 -154t85 -113t148 -45z" /> + <glyph glyph-name="otilde" unicode="õ" horiz-adv-x="1128" +d="M690 1105q-44 0 -80 15t-59 36t-42 42t-39 36t-40 15q-31 0 -48 -35.5t-17 -101.5h-140q0 137 57 211.5t156 74.5q48 0 89.5 -22t65 -48.5t50.5 -48.5t49 -22q27 0 44.5 35.5t17.5 99.5h145q0 -137 -55.5 -212t-153.5 -75zM563 -20q-113 0 -210 42t-162.5 113t-102.5 166 +t-37 201q0 141 62.5 258.5t181 188.5t268.5 71t268.5 -71t181 -188.5t62.5 -258.5q0 -106 -37 -201t-102.5 -166t-162.5 -113t-210 -42zM563 190q130 0 194 88.5t64 223.5q0 86 -25 153t-84.5 110.5t-148.5 43.5q-130 0 -194 -86.5t-64 -220.5q0 -86 25 -154t85 -113 +t148 -45z" /> + <glyph glyph-name="odieresis" unicode="ö" horiz-adv-x="1128" +d="M282 1188v225h205v-225h-205zM637 1188v225h204v-225h-204zM563 -20q-113 0 -210 42t-162.5 113t-102.5 166t-37 201q0 141 62.5 258.5t181 188.5t268.5 71t268.5 -71t181 -188.5t62.5 -258.5q0 -106 -37 -201t-102.5 -166t-162.5 -113t-210 -42zM563 190q130 0 194 88.5 +t64 223.5q0 86 -25 153t-84.5 110.5t-148.5 43.5q-130 0 -194 -86.5t-64 -220.5q0 -86 25 -154t85 -113t148 -45z" /> + <glyph glyph-name="divide" unicode="÷" horiz-adv-x="1266" +d="M500 834v264h266v-264h-266zM84 537v184h1098v-184h-1098zM500 143v265h266v-265h-266z" /> + <glyph glyph-name="oslash" unicode="ø" horiz-adv-x="1128" +d="M879 917q93 -71 144.5 -180t51.5 -235q0 -106 -37 -201t-102.5 -166t-162.5 -113t-210 -42q-120 0 -223 47l-17 -28h-129l52 86q-92 72 -143.5 181.5t-51.5 235.5q0 141 62.5 258.5t181 188.5t268.5 71q117 0 222 -46l15 25h129zM305 502q0 -135 61 -219l306 505 +q-46 21 -109 21q-130 0 -194 -86.5t-64 -220.5zM563 190q130 0 194 88.5t64 223.5q0 136 -61 217l-308 -507q50 -22 111 -22z" /> + <glyph glyph-name="ugrave" unicode="ù" horiz-adv-x="1167" +d="M510 1104l-308 309h260l226 -309h-178zM479 -20q-184 0 -274 130t-90 363v526h247v-534q0 -134 38 -199t143 -65q47 0 85 14.5t72.5 50.5t54 107.5t19.5 175.5v450h248v-999h-248v117q-105 -137 -295 -137z" /> + <glyph glyph-name="uacute" unicode="ú" horiz-adv-x="1167" +d="M456 1124l225 289h260l-307 -289h-178zM479 -20q-184 0 -274 130t-90 363v526h247v-534q0 -134 38 -199t143 -65q47 0 85 14.5t72.5 50.5t54 107.5t19.5 175.5v450h248v-999h-248v117q-105 -137 -295 -137z" /> + <glyph glyph-name="ucircumflex" unicode="û" horiz-adv-x="1167" +d="M257 1098l316 352l317 -352h-188l-129 145l-127 -145h-189zM479 -20q-184 0 -274 130t-90 363v526h247v-534q0 -134 38 -199t143 -65q47 0 85 14.5t72.5 50.5t54 107.5t19.5 175.5v450h248v-999h-248v117q-105 -137 -295 -137z" /> + <glyph glyph-name="udieresis" unicode="ü" horiz-adv-x="1167" +d="M294 1188v225h205v-225h-205zM649 1188v225h204v-225h-204zM479 -20q-184 0 -274 130t-90 363v526h247v-534q0 -134 38 -199t143 -65q47 0 85 14.5t72.5 50.5t54 107.5t19.5 175.5v450h248v-999h-248v117q-105 -137 -295 -137z" /> + <glyph glyph-name="yacute" unicode="ý" horiz-adv-x="1032" +d="M397 1124l225 289h260l-307 -289h-178zM201 -430l184 457l-391 972h268l252 -694l256 694h268l-571 -1429h-266z" /> + <glyph glyph-name="thorn" unicode="þ" horiz-adv-x="1155" +d="M147 -438v1851h232v-495q110 102 276 102q104 0 188 -42t138 -114t82.5 -165.5t28.5 -198.5q0 -106 -28.5 -199.5t-82.5 -165t-138 -113.5t-188 -42q-169 0 -276 102v-520h-232zM614 190q123 0 187.5 86t64.5 224q0 137 -64.5 222t-187.5 85t-187.5 -85t-64.5 -222 +q0 -138 64.5 -224t187.5 -86z" /> + <glyph glyph-name="ydieresis" unicode="ÿ" horiz-adv-x="1032" +d="M235 1188v225h205v-225h-205zM590 1188v225h204v-225h-204zM201 -430l184 457l-391 972h268l252 -694l256 694h268l-571 -1429h-266z" /> + <glyph glyph-name="Amacron" unicode="Ā" +d="M391 1559v143h559v-143h-559zM12 0l566 1413h190l563 -1413h-274l-109 307h-549l-110 -307h-277zM485 524h377l-188 516z" /> + <glyph glyph-name="amacron" unicode="ā" horiz-adv-x="1061" +d="M223 1147v143h559v-143h-559zM418 -20q-159 0 -261 87t-102 240q0 64 20 113.5t55 82t86 54t109 30.5t128 9h260q0 97 -51 154t-146 57q-80 0 -139.5 -39.5t-95.5 -101.5l-187 135q160 219 420 219q201 0 316.5 -114t115.5 -300v-606h-201l-16 143q-112 -163 -311 -163z +M453 186q104 0 180.5 70t79.5 164h-246q-79 0 -120.5 -35t-41.5 -86t39 -82t109 -31z" /> + <glyph glyph-name="Abreve" unicode="Ă" +d="M672 1555q-316 0 -316 270h172q0 -63 40 -95t104 -32t103.5 33t39.5 94h172q0 -270 -315 -270zM12 0l566 1413h190l563 -1413h-274l-109 307h-549l-110 -307h-277zM485 524h377l-188 516z" /> + <glyph glyph-name="abreve" unicode="ă" horiz-adv-x="1061" +d="M504 1143q-316 0 -316 270h172q0 -63 40 -95t104 -32t103.5 33t39.5 94h172q0 -270 -315 -270zM418 -20q-159 0 -261 87t-102 240q0 64 20 113.5t55 82t86 54t109 30.5t128 9h260q0 97 -51 154t-146 57q-80 0 -139.5 -39.5t-95.5 -101.5l-187 135q160 219 420 219 +q201 0 316.5 -114t115.5 -300v-606h-201l-16 143q-112 -163 -311 -163zM453 186q104 0 180.5 70t79.5 164h-246q-79 0 -120.5 -35t-41.5 -86t39 -82t109 -31z" /> + <glyph glyph-name="Aogonek" unicode="Ą" +d="M1299 -244l122 -84q-81 -123 -219 -123q-98 0 -161.5 57t-63.5 148q0 45 17 87t41 70t48 49t41 30l17 10h-84l-109 307h-549l-110 -307h-277l566 1413h190l563 -1413q-14 -4 -42.5 -18.5t-68.5 -41t-69 -67.5t-29 -86q0 -88 74 -88q61 0 103 57zM485 524h377l-188 516z +" /> + <glyph glyph-name="aogonek" unicode="ą" horiz-adv-x="1061" +d="M914 -244l122 -84q-81 -123 -219 -123q-98 0 -161.5 57t-63.5 148q0 45 17 87t41 70t48 49t41 30l17 10h-11l-16 143q-112 -163 -311 -163q-159 0 -261 87t-102 240q0 64 20 113.5t55 82t86 54t109 30.5t128 9h260q0 97 -51 154t-146 57q-80 0 -139.5 -39.5t-95.5 -101.5 +l-187 135q160 219 420 219q201 0 316.5 -114t115.5 -300v-606q-14 -4 -42.5 -18.5t-68.5 -41t-69 -67.5t-29 -86q0 -88 74 -88q61 0 103 57zM453 186q104 0 180.5 70t79.5 164h-246q-79 0 -120.5 -35t-41.5 -86t39 -82t109 -31z" /> + <glyph glyph-name="Cacute" unicode="Ć" horiz-adv-x="1432" +d="M594 1536l225 289h260l-307 -289h-178zM766 -20q-169 0 -302 58.5t-215 160t-124.5 231t-42.5 277.5q0 118 26 224.5t80.5 199t134 160.5t192.5 106.5t249 38.5q211 0 372 -104.5t246 -301.5l-237 -94q-74 258 -383 258q-109 0 -192.5 -37.5t-134 -103.5t-76 -150.5 +t-25.5 -185.5q0 -108 25.5 -196.5t76.5 -156.5t135 -105.5t195 -37.5q140 0 233.5 61.5t149.5 200.5l235 -96q-83 -197 -244.5 -302t-373.5 -105z" /> + <glyph glyph-name="cacute" unicode="ć" horiz-adv-x="1004" +d="M420 1124l225 289h260l-307 -289h-178zM541 -20q-118 0 -212.5 43.5t-152.5 116.5t-88.5 165t-30.5 193t30 192.5t88 166t152 119t212 44.5q152 0 264 -74.5t168 -220.5l-232 -90q-20 74 -73.5 119t-126.5 45q-49 0 -89 -17t-66.5 -46t-44.5 -68t-26 -81.5t-8 -88.5 +q0 -59 13 -110.5t40 -94.5t73.5 -67.5t107.5 -24.5q72 0 126 43.5t74 115.5l222 -84q-50 -140 -161 -218t-259 -78z" /> + <glyph glyph-name="Cdotaccent" unicode="Ċ" horiz-adv-x="1432" +d="M584 1600v225h256v-225h-256zM766 -20q-169 0 -302 58.5t-215 160t-124.5 231t-42.5 277.5q0 118 26 224.5t80.5 199t134 160.5t192.5 106.5t249 38.5q211 0 372 -104.5t246 -301.5l-237 -94q-74 258 -383 258q-109 0 -192.5 -37.5t-134 -103.5t-76 -150.5t-25.5 -185.5 +q0 -108 25.5 -196.5t76.5 -156.5t135 -105.5t195 -37.5q140 0 233.5 61.5t149.5 200.5l235 -96q-83 -197 -244.5 -302t-373.5 -105z" /> + <glyph glyph-name="cdotaccent" unicode="ċ" horiz-adv-x="1004" +d="M410 1188v225h256v-225h-256zM541 -20q-118 0 -212.5 43.5t-152.5 116.5t-88.5 165t-30.5 193t30 192.5t88 166t152 119t212 44.5q152 0 264 -74.5t168 -220.5l-232 -90q-20 74 -73.5 119t-126.5 45q-49 0 -89 -17t-66.5 -46t-44.5 -68t-26 -81.5t-8 -88.5 +q0 -59 13 -110.5t40 -94.5t73.5 -67.5t107.5 -24.5q72 0 126 43.5t74 115.5l222 -84q-50 -140 -161 -218t-259 -78z" /> + <glyph glyph-name="Ccaron" unicode="Č" horiz-adv-x="1432" +d="M711 1491l-316 332h189l127 -135l129 135h188zM766 -20q-169 0 -302 58.5t-215 160t-124.5 231t-42.5 277.5q0 118 26 224.5t80.5 199t134 160.5t192.5 106.5t249 38.5q211 0 372 -104.5t246 -301.5l-237 -94q-74 258 -383 258q-109 0 -192.5 -37.5t-134 -103.5 +t-76 -150.5t-25.5 -185.5q0 -108 25.5 -196.5t76.5 -156.5t135 -105.5t195 -37.5q140 0 233.5 61.5t149.5 200.5l235 -96q-83 -197 -244.5 -302t-373.5 -105z" /> + <glyph glyph-name="ccaron" unicode="č" horiz-adv-x="1004" +d="M537 1079l-316 332h189l127 -135l129 135h188zM541 -20q-118 0 -212.5 43.5t-152.5 116.5t-88.5 165t-30.5 193t30 192.5t88 166t152 119t212 44.5q152 0 264 -74.5t168 -220.5l-232 -90q-20 74 -73.5 119t-126.5 45q-49 0 -89 -17t-66.5 -46t-44.5 -68t-26 -81.5 +t-8 -88.5q0 -59 13 -110.5t40 -94.5t73.5 -67.5t107.5 -24.5q72 0 126 43.5t74 115.5l222 -84q-50 -140 -161 -218t-259 -78z" /> + <glyph glyph-name="Dcaron" unicode="Ď" horiz-adv-x="1409" +d="M719 1491l-316 332h189l127 -135l129 135h188zM182 0v1413h410q359 0 547 -185.5t188 -531.5q0 -332 -191 -514t-546 -182h-408zM436 233h129q121 0 211.5 25t158.5 79.5t103 147t35 222.5q0 252 -112.5 362.5t-372.5 110.5h-152v-947z" /> + <glyph glyph-name="dcaron" unicode="ď" horiz-adv-x="1280" +d="M496 -20q-136 0 -236 72.5t-148.5 189t-48.5 258.5q0 141 48.5 257.5t147.5 189.5t233 73q84 0 159.5 -30t124.5 -91v514h248v-1413h-248v100q-96 -120 -280 -120zM1135 958l114 455h256l-227 -455h-143zM555 201q121 0 181.5 82t60.5 217q0 134 -61 216.5t-181 82.5 +t-182 -83.5t-62 -215.5q0 -133 61.5 -216t182.5 -83z" /> + <glyph glyph-name="Dcroat" unicode="Đ" horiz-adv-x="1430" +d="M205 0v621h-113v184h113v608h399q357 0 551.5 -186t194.5 -531q0 -331 -197 -513.5t-551 -182.5h-397zM438 219h140q121 0 217 28t168.5 85.5t111.5 152.5t39 222q0 246 -125.5 367.5t-388.5 121.5h-162v-391h381v-184h-381v-402z" /> + <glyph glyph-name="dcroat" unicode="đ" horiz-adv-x="1171" +d="M1155 1303v-164h-131v-1139h-227l-11 112q-97 -132 -290 -132q-136 0 -236 72.5t-148.5 189t-48.5 258.5q0 141 48.5 257.5t147.5 189.5t233 73q84 0 159.5 -30t124.5 -91v240h-256v164h256v110h248v-110h131zM555 201q121 0 181.5 82t60.5 217q0 134 -61 216.5 +t-181 82.5t-182 -83.5t-62 -215.5q0 -133 61.5 -216t182.5 -83z" /> + <glyph glyph-name="Emacron" unicode="Ē" horiz-adv-x="1245" +d="M340 1559v143h559v-143h-559zM182 0v1413h940v-233h-686v-357h639v-233h-639v-350h686v-240h-940z" /> + <glyph glyph-name="emacron" unicode="ē" horiz-adv-x="1067" +d="M245 1147v143h559v-143h-559zM561 -20q-125 0 -223.5 42.5t-159 115t-92 164t-31.5 194.5q0 100 30 192t87.5 167t154 120t218.5 45q101 0 182 -31.5t132.5 -81.5t86 -117.5t48.5 -135t14 -138.5t-9 -96h-686q35 -219 250 -219q145 0 240 106l168 -147 +q-162 -180 -410 -180zM313 596h455q-12 106 -70.5 162.5t-154.5 56.5q-190 0 -230 -219z" /> + <glyph glyph-name="Edotaccent" unicode="Ė" horiz-adv-x="1245" +d="M492 1600v225h256v-225h-256zM182 0v1413h940v-233h-686v-357h639v-233h-639v-350h686v-240h-940z" /> + <glyph glyph-name="edotaccent" unicode="ė" horiz-adv-x="1067" +d="M397 1188v225h256v-225h-256zM561 -20q-125 0 -223.5 42.5t-159 115t-92 164t-31.5 194.5q0 100 30 192t87.5 167t154 120t218.5 45q101 0 182 -31.5t132.5 -81.5t86 -117.5t48.5 -135t14 -138.5t-9 -96h-686q35 -219 250 -219q145 0 240 106l168 -147 +q-162 -180 -410 -180zM313 596h455q-12 106 -70.5 162.5t-154.5 56.5q-190 0 -230 -219z" /> + <glyph glyph-name="Eogonek" unicode="Ę" horiz-adv-x="1245" +d="M1090 -244l122 -84q-81 -123 -219 -123q-98 0 -161.5 57t-63.5 148q0 45 17 87t41 70t48 49t41 30l17 10h-750v1413h940v-233h-686v-357h639v-233h-639v-350h686v-240q-14 -4 -42.5 -18.5t-68.5 -41t-69 -67.5t-29 -86q0 -88 74 -88q61 0 103 57z" /> + <glyph glyph-name="eogonek" unicode="ę" horiz-adv-x="1067" +d="M1008 516q0 -71 -9 -96h-686q35 -219 250 -219q145 0 240 106l168 -147q-101 -111 -230 -153q-127 -77 -127 -173q0 -88 74 -88q61 0 103 57l122 -84q-81 -123 -219 -123q-98 0 -161.5 57t-63.5 148q0 99 78 179q-98 2 -179.5 31t-138.5 77.5t-97 113.5t-58.5 139 +t-18.5 155q0 100 30 192t87.5 167t154 120t218.5 45q101 0 182 -31.5t132.5 -81.5t86 -117.5t48.5 -135t14 -138.5zM313 596h455q-12 106 -70.5 162.5t-154.5 56.5q-190 0 -230 -219z" /> + <glyph glyph-name="Ecaron" unicode="Ě" horiz-adv-x="1245" +d="M619 1491l-316 332h189l127 -135l129 135h188zM182 0v1413h940v-233h-686v-357h639v-233h-639v-350h686v-240h-940z" /> + <glyph glyph-name="ecaron" unicode="ě" horiz-adv-x="1067" +d="M524 1079l-316 332h189l127 -135l129 135h188zM561 -20q-125 0 -223.5 42.5t-159 115t-92 164t-31.5 194.5q0 100 30 192t87.5 167t154 120t218.5 45q101 0 182 -31.5t132.5 -81.5t86 -117.5t48.5 -135t14 -138.5t-9 -96h-686q35 -219 250 -219q145 0 240 106l168 -147 +q-162 -180 -410 -180zM313 596h455q-12 106 -70.5 162.5t-154.5 56.5q-190 0 -230 -219z" /> + <glyph glyph-name="Gbreve" unicode="Ğ" horiz-adv-x="1534" +d="M762 1555q-316 0 -316 270h172q0 -63 40 -95t104 -32t103.5 33t39.5 94h172q0 -270 -315 -270zM766 -20q-169 0 -302 58.5t-215 160t-124.5 231t-42.5 277.5q0 118 25.5 224.5t80.5 199t134 160.5t192.5 106.5t249.5 38.5q210 0 370.5 -104.5t245.5 -301.5l-225 -94 +q-47 140 -150 209t-243 69q-108 0 -192 -40.5t-134.5 -110.5t-76 -157.5t-25.5 -188.5q0 -108 25.5 -198.5t76.5 -161.5t135.5 -110.5t194.5 -39.5q154 0 264 96.5t131 255.5h-321v205h567v-764h-201l-22 199q-58 -101 -168.5 -160t-249.5 -59z" /> + <glyph glyph-name="gbreve" unicode="ğ" horiz-adv-x="1049" +d="M508 1143q-316 0 -316 270h172q0 -63 40 -95t104 -32t103.5 33t39.5 94h172q0 -270 -315 -270zM602 156q68 -9 114 -18t103 -30.5t91 -51t57.5 -79.5t23.5 -116q0 -109 -59.5 -186t-157.5 -112.5t-225 -35.5q-217 0 -342 99.5t-125 256.5q0 23 4 43l104 94 +q-98 66 -98 197q0 124 93 206q-83 101 -83 230q0 159 120 263t290 104q131 0 236 -64l153 131l127 -155l-145 -117q43 -77 43 -174q0 -163 -118.5 -264t-287.5 -101q-101 0 -190 39q-29 -19 -29 -53q0 -13 4 -24t14 -20t20 -15t29.5 -11.5t34.5 -9t42.5 -7.5t46.5 -6 +t53.5 -6t56.5 -7zM520 831q-78 0 -122 -49.5t-44 -130.5q0 -79 43.5 -127.5t122.5 -48.5t121.5 48.5t42.5 127.5q0 81 -43 130.5t-121 49.5zM551 -281q96 0 152.5 30t56.5 83q0 18 -6 31.5t-23 24t-32.5 16.5t-50 12t-58.5 9t-74 9q-136 17 -178 27l-51 -84 +q10 -77 81.5 -117.5t182.5 -40.5z" /> + <glyph glyph-name="Gdotaccent" unicode="Ġ" horiz-adv-x="1534" +d="M633 1600v225h256v-225h-256zM766 -20q-169 0 -302 58.5t-215 160t-124.5 231t-42.5 277.5q0 118 25.5 224.5t80.5 199t134 160.5t192.5 106.5t249.5 38.5q210 0 370.5 -104.5t245.5 -301.5l-225 -94q-47 140 -150 209t-243 69q-108 0 -192 -40.5t-134.5 -110.5 +t-76 -157.5t-25.5 -188.5q0 -108 25.5 -198.5t76.5 -161.5t135.5 -110.5t194.5 -39.5q154 0 264 96.5t131 255.5h-321v205h567v-764h-201l-22 199q-58 -101 -168.5 -160t-249.5 -59z" /> + <glyph glyph-name="gdotaccent" unicode="ġ" horiz-adv-x="1049" +d="M635 1413v-225h-256v225h256zM602 156q68 -9 114 -18t103 -30.5t91 -51t57.5 -79.5t23.5 -116q0 -109 -59.5 -186t-157.5 -112.5t-225 -35.5q-217 0 -342 99.5t-125 256.5q0 23 4 43l104 94q-98 66 -98 197q0 124 93 206q-83 101 -83 230q0 159 120 263t290 104 +q131 0 236 -64l153 131l127 -155l-145 -117q43 -77 43 -174q0 -163 -118.5 -264t-287.5 -101q-101 0 -190 39q-29 -19 -29 -53q0 -13 4 -24t14 -20t20 -15t29.5 -11.5t34.5 -9t42.5 -7.5t46.5 -6t53.5 -6t56.5 -7zM520 831q-78 0 -122 -49.5t-44 -130.5q0 -79 43.5 -127.5 +t122.5 -48.5t121.5 48.5t42.5 127.5q0 81 -43 130.5t-121 49.5zM551 -281q96 0 152.5 30t56.5 83q0 18 -6 31.5t-23 24t-32.5 16.5t-50 12t-58.5 9t-74 9q-136 17 -178 27l-51 -84q10 -77 81.5 -117.5t182.5 -40.5z" /> + <glyph glyph-name="Gcommaaccent" unicode="Ģ" horiz-adv-x="1534" +d="M766 -20q-169 0 -302 58.5t-215 160t-124.5 231t-42.5 277.5q0 118 25.5 224.5t80.5 199t134 160.5t192.5 106.5t249.5 38.5q210 0 370.5 -104.5t245.5 -301.5l-225 -94q-47 140 -150 209t-243 69q-108 0 -192 -40.5t-134.5 -110.5t-76 -157.5t-25.5 -188.5 +q0 -108 25.5 -198.5t76.5 -161.5t135.5 -110.5t194.5 -39.5q154 0 264 96.5t131 255.5h-321v205h567v-764h-201l-22 199q-58 -101 -168.5 -160t-249.5 -59zM521 -459l135 353h254l-248 -353h-141z" /> + <glyph glyph-name="gcommaaccent" unicode="ģ" horiz-adv-x="1049" +d="M751 1434l-135 -315h-254l248 315h141zM602 156q68 -9 114 -18t103 -30.5t91 -51t57.5 -79.5t23.5 -116q0 -109 -59.5 -186t-157.5 -112.5t-225 -35.5q-217 0 -342 99.5t-125 256.5q0 23 4 43l104 94q-98 66 -98 197q0 124 93 206q-83 101 -83 230q0 159 120 263t290 104 +q131 0 236 -64l153 131l127 -155l-145 -117q43 -77 43 -174q0 -163 -118.5 -264t-287.5 -101q-101 0 -190 39q-29 -19 -29 -53q0 -13 4 -24t14 -20t20 -15t29.5 -11.5t34.5 -9t42.5 -7.5t46.5 -6t53.5 -6t56.5 -7zM520 831q-78 0 -122 -49.5t-44 -130.5q0 -79 43.5 -127.5 +t122.5 -48.5t121.5 48.5t42.5 127.5q0 81 -43 130.5t-121 49.5zM551 -281q96 0 152.5 30t56.5 83q0 18 -6 31.5t-23 24t-32.5 16.5t-50 12t-58.5 9t-74 9q-136 17 -178 27l-51 -84q10 -77 81.5 -117.5t182.5 -40.5z" /> + <glyph glyph-name="Hbar" unicode="Ħ" horiz-adv-x="1491" +d="M1410 1186v-143h-101v-1043h-254v590h-619v-590h-254v1043h-103v143h103v227h254v-227h619v227h254v-227h101zM1055 823v220h-619v-220h619z" /> + <glyph glyph-name="hbar" unicode="ħ" horiz-adv-x="1169" +d="M684 1020q76 0 138.5 -23.5t104.5 -64t71 -94.5t42 -114t13 -124v-600h-248v569q0 50 -8 88.5t-26.5 72t-55.5 51.5t-90 18q-113 0 -171.5 -81t-58.5 -212v-506h-248v1108h-146v164h146v141h248v-141h241v-164h-241v-225q57 70 133.5 103.5t155.5 33.5z" /> + <glyph glyph-name="Itilde" unicode="Ĩ" horiz-adv-x="618" +d="M436 1517q-44 0 -80 15t-59 36t-42 42t-39 36t-40 15q-31 0 -48 -35.5t-17 -101.5h-140q0 137 57 211.5t156 74.5q48 0 89.5 -22t65 -48.5t50.5 -48.5t49 -22q27 0 44.5 35.5t17.5 99.5h145q0 -137 -55.5 -212t-153.5 -75zM182 0v1413h254v-1413h-254z" /> + <glyph glyph-name="itilde" unicode="ĩ" horiz-adv-x="516" +d="M385 1105q-44 0 -80 15t-59 36t-42 42t-39 36t-40 15q-31 0 -48 -35.5t-17 -101.5h-140q0 137 57 211.5t156 74.5q48 0 89.5 -22t65 -48.5t50.5 -48.5t49 -22q27 0 44.5 35.5t17.5 99.5h145q0 -137 -55.5 -212t-153.5 -75zM145 0v999h226v-999h-226z" /> + <glyph glyph-name="Imacron" unicode="Ī" horiz-adv-x="618" +d="M28 1559v143h559v-143h-559zM182 0v1413h254v-1413h-254z" /> + <glyph glyph-name="imacron" unicode="ī" horiz-adv-x="516" +d="M-23 1147v143h559v-143h-559zM145 0v999h226v-999h-226z" /> + <glyph glyph-name="Iogonek" unicode="Į" horiz-adv-x="618" +d="M404 -244l122 -84q-81 -123 -219 -123q-98 0 -161.5 57t-63.5 148q0 45 17 87t41 70t48 49t41 30l17 10h-64v1413h254v-1413q-14 -4 -42.5 -18.5t-68.5 -41t-69 -67.5t-29 -86q0 -88 74 -88q61 0 103 57z" /> + <glyph glyph-name="iogonek" unicode="į" horiz-adv-x="516" +d="M385 1413v-225h-256v225h256zM339 -244l122 -84q-81 -123 -219 -123q-98 0 -161.5 57t-63.5 148q0 45 17 87t41 70t48 49t41 30l17 10h-36v999h226v-999q-14 -4 -42.5 -18.5t-68.5 -41t-69 -67.5t-29 -86q0 -88 74 -88q61 0 103 57z" /> + <glyph glyph-name="Idotaccent" unicode="İ" horiz-adv-x="618" +d="M180 1600v225h256v-225h-256zM182 0v1413h254v-1413h-254z" /> + <glyph glyph-name="dotlessi" unicode="ı" horiz-adv-x="516" +d="M145 0v999h226v-999h-226z" /> + <glyph glyph-name="IJ" unicode="IJ" horiz-adv-x="1757" +d="M182 0v1413h254v-1413h-254zM1126 -20q-140 0 -247 63.5t-164 166.5t-66 230l250 29q8 -113 64 -183.5t163 -70.5q130 0 176.5 70.5t46.5 220.5v674h-532v233h786v-903q0 -116 -26.5 -210t-81.5 -167t-149 -113t-220 -40z" /> + <glyph glyph-name="Kcommaaccent" unicode="Ķ" horiz-adv-x="1491" +d="M182 0v1413h254v-737l688 737h340l-565 -579l576 -834h-316l-436 664l-287 -297v-367h-254zM496 -459l135 353h254l-248 -353h-141z" /> + <glyph glyph-name="kcommaaccent" unicode="ķ" horiz-adv-x="1118" +d="M147 0v1413h244v-829l377 415h317l-374 -387l415 -612h-288l-293 463l-154 -170v-293h-244zM373 -459l135 353h254l-248 -353h-141z" /> + <glyph glyph-name="kgreenlandic" unicode="ĸ" horiz-adv-x="1116" +d="M145 0v999h244v-415l377 415h317l-374 -387l415 -612h-288l-293 463l-154 -170v-293h-244z" /> + <glyph glyph-name="Lacute" unicode="Ĺ" horiz-adv-x="1063" +d="M192 1536l225 289h260l-307 -289h-178zM182 0v1413h254v-1173h604v-240h-858z" /> + <glyph glyph-name="lacute" unicode="ĺ" horiz-adv-x="573" +d="M160 1536l225 289h260l-307 -289h-178zM348 -20q-97 0 -153 48.5t-56 170.5v1214h244v-1147q0 -67 80 -67q28 0 67 6v-205q-102 -20 -182 -20z" /> + <glyph glyph-name="Lcommaaccent" unicode="Ļ" horiz-adv-x="1063" +d="M182 0v1413h254v-1173h604v-240h-858zM300 -459l135 353h254l-248 -353h-141z" /> + <glyph glyph-name="lcommaaccent" unicode="ļ" horiz-adv-x="573" +d="M348 -20q-97 0 -153 48.5t-56 170.5v1214h244v-1147q0 -67 80 -67q28 0 67 6v-205q-102 -20 -182 -20zM113 -459l135 353h254l-248 -353h-141z" /> + <glyph glyph-name="Lcaron" unicode="Ľ" horiz-adv-x="1100" +d="M182 0v1413h254v-1173h604v-240h-858zM670 958l114 455h256l-227 -455h-143z" /> + <glyph glyph-name="lcaron" unicode="ľ" horiz-adv-x="666" +d="M354 -20q-102 0 -158.5 47t-56.5 172v1214h244v-1147q0 -67 86 -67q22 0 61 6v-205q-102 -20 -176 -20zM520 958l115 455h256l-227 -455h-144z" /> + <glyph glyph-name="Lslash" unicode="Ł" horiz-adv-x="1090" +d="M463 240h604v-240h-858v316l-105 -119v270l105 118v828h254v-541l239 269v-269l-239 -270v-362z" /> + <glyph glyph-name="lslash" unicode="ł" horiz-adv-x="573" +d="M463 199q28 0 67 6v-205q-102 -20 -182 -20q-97 0 -153 48.5t-56 170.5v190l-67 -75v228l67 76v795h244v-520l105 118v-229l-105 -118v-398q0 -67 80 -67z" /> + <glyph glyph-name="Nacute" unicode="Ń" horiz-adv-x="1454" +d="M608 1536l225 289h260l-307 -289h-178zM182 0v1413h252l594 -989v989h244v-1413h-254l-592 991v-991h-244z" /> + <glyph glyph-name="nacute" unicode="ń" horiz-adv-x="1161" +d="M469 1124l225 289h260l-307 -289h-178zM145 0v999h242v-116q57 69 136 103t159 34q94 0 166 -35.5t113.5 -96.5t62 -133.5t20.5 -154.5v-600h-241v569q0 101 -50 163.5t-141 62.5q-107 0 -166 -61t-59 -187v-547h-242z" /> + <glyph glyph-name="Ncommaaccent" unicode="Ņ" horiz-adv-x="1454" +d="M182 0v1413h252l594 -989v989h244v-1413h-254l-592 991v-991h-244zM486 -459l135 353h254l-248 -353h-141z" /> + <glyph glyph-name="ncommaaccent" unicode="ņ" horiz-adv-x="1161" +d="M145 0v999h242v-116q57 69 136 103t159 34q94 0 166 -35.5t113.5 -96.5t62 -133.5t20.5 -154.5v-600h-241v569q0 101 -50 163.5t-141 62.5q-107 0 -166 -61t-59 -187v-547h-242zM347 -459l135 353h254l-248 -353h-141z" /> + <glyph glyph-name="Ncaron" unicode="Ň" horiz-adv-x="1454" +d="M725 1491l-316 332h189l127 -135l129 135h188zM182 0v1413h252l594 -989v989h244v-1413h-254l-592 991v-991h-244z" /> + <glyph glyph-name="ncaron" unicode="ň" horiz-adv-x="1161" +d="M586 1079l-316 332h189l127 -135l129 135h188zM145 0v999h242v-116q57 69 136 103t159 34q94 0 166 -35.5t113.5 -96.5t62 -133.5t20.5 -154.5v-600h-241v569q0 101 -50 163.5t-141 62.5q-107 0 -166 -61t-59 -187v-547h-242z" /> + <glyph glyph-name="Eng" unicode="Ŋ" horiz-adv-x="1454" +d="M823 -369v160q125 -7 187.5 41.5t29.5 120.5l-614 1044v-997h-244v1411h252l594 -995v995h242v-1411q0 -76 -15.5 -138t-50.5 -116t-101 -84.5t-159 -30.5h-121z" /> + <glyph glyph-name="eng" unicode="ŋ" horiz-adv-x="1157" +d="M604 -369v201h76q34 0 58 11t36 25.5t18.5 40.5t7.5 43t1 46v573q0 106 -36.5 167t-127.5 61q-103 0 -178.5 -76t-75.5 -174v-549h-238v999h238v-127q54 74 132 109t161 35q93 0 164.5 -35t113.5 -94.5t63 -131.5t21 -153v-668q0 -23 -1 -40t-7 -51t-17 -59.5t-34.5 -56 +t-55.5 -50t-83 -33t-115 -13.5h-121z" /> + <glyph glyph-name="Omacron" unicode="Ō" horiz-adv-x="1528" +d="M483 1559v143h559v-143h-559zM764 -20q-136 0 -249.5 38.5t-192.5 106t-134 160t-80.5 199t-25.5 223.5t25.5 223.5t80.5 199t134 160t192.5 106t249.5 38.5t249.5 -38.5t192.5 -106t134 -160t80.5 -199t25.5 -223.5t-25.5 -223.5t-80.5 -199t-134 -160t-192.5 -106 +t-249.5 -38.5zM764 205q88 0 159 27t118 73t78.5 110.5t45 136.5t13.5 155q0 82 -13.5 154.5t-45 136.5t-78.5 110t-118 73t-159 27t-159 -27t-118 -73t-78.5 -110t-45 -136.5t-13.5 -154.5q0 -83 13.5 -155t45 -136.5t78.5 -110.5t118 -73t159 -27z" /> + <glyph glyph-name="omacron" unicode="ō" horiz-adv-x="1128" +d="M282 1147v143h559v-143h-559zM563 -20q-113 0 -210 42t-162.5 113t-102.5 166t-37 201q0 141 62.5 258.5t181 188.5t268.5 71t268.5 -71t181 -188.5t62.5 -258.5q0 -106 -37 -201t-102.5 -166t-162.5 -113t-210 -42zM563 190q130 0 194 88.5t64 223.5q0 86 -25 153 +t-84.5 110.5t-148.5 43.5q-130 0 -194 -86.5t-64 -220.5q0 -86 25 -154t85 -113t148 -45z" /> + <glyph glyph-name="Ohungarumlaut" unicode="Ő" horiz-adv-x="1528" +d="M463 1495l225 330h219l-266 -330h-178zM811 1495l225 330h260l-307 -330h-178zM764 -20q-136 0 -249.5 38.5t-192.5 106t-134 160t-80.5 199t-25.5 223.5t25.5 223.5t80.5 199t134 160t192.5 106t249.5 38.5t249.5 -38.5t192.5 -106t134 -160t80.5 -199t25.5 -223.5 +t-25.5 -223.5t-80.5 -199t-134 -160t-192.5 -106t-249.5 -38.5zM764 205q88 0 159 27t118 73t78.5 110.5t45 136.5t13.5 155q0 82 -13.5 154.5t-45 136.5t-78.5 110t-118 73t-159 27t-159 -27t-118 -73t-78.5 -110t-45 -136.5t-13.5 -154.5q0 -83 13.5 -155t45 -136.5 +t78.5 -110.5t118 -73t159 -27z" /> + <glyph glyph-name="ohungarumlaut" unicode="ő" horiz-adv-x="1128" +d="M262 1083l225 330h219l-266 -330h-178zM610 1083l225 330h260l-307 -330h-178zM563 -20q-113 0 -210 42t-162.5 113t-102.5 166t-37 201q0 141 62.5 258.5t181 188.5t268.5 71t268.5 -71t181 -188.5t62.5 -258.5q0 -106 -37 -201t-102.5 -166t-162.5 -113t-210 -42z +M563 190q130 0 194 88.5t64 223.5q0 86 -25 153t-84.5 110.5t-148.5 43.5q-130 0 -194 -86.5t-64 -220.5q0 -86 25 -154t85 -113t148 -45z" /> + <glyph glyph-name="OE" unicode="Œ" horiz-adv-x="2255" +d="M764 -20q-136 0 -249.5 38.5t-192.5 106t-134 160t-80.5 199t-25.5 223.5t25.5 223.5t80.5 199t134 160t192.5 106t249.5 38.5q276 0 428 -168v147h940v-233h-686v-357h639v-233h-639v-350h686v-240h-940v147q-154 -167 -428 -167zM764 219q110 0 194 38t134 106 +t75 154.5t25 189.5t-25 189t-75 154t-134 106t-194 38t-194 -38t-134 -106t-75 -154t-25 -189t25 -189.5t75 -154.5t134 -106t194 -38z" /> + <glyph glyph-name="oe" unicode="œ" horiz-adv-x="1829" +d="M563 -20q-114 0 -211 41t-162.5 111.5t-102 164.5t-36.5 199q0 141 61.5 257.5t180 187.5t270.5 71q114 0 209.5 -46t161.5 -124q132 170 354 170q106 0 189.5 -29.5t136.5 -78t87 -116.5t48 -139t14 -151q0 -23 -2 -43t-4 -29l-2 -8h-686q14 -88 79 -140.5t169 -52.5 +q80 0 141 25.5t115 81.5l176 -156q-179 -188 -430 -188q-123 0 -222 44.5t-159 121.5q-141 -174 -375 -174zM557 186q129 0 193.5 85t64.5 225t-61.5 223.5t-190.5 83.5t-193.5 -84.5t-64.5 -224.5q0 -141 61.5 -224.5t190.5 -83.5zM1071 596h442q-28 203 -225 203 +q-93 0 -146.5 -55t-70.5 -148z" /> + <glyph glyph-name="Racute" unicode="Ŕ" horiz-adv-x="1268" +d="M504 1536l225 289h260l-307 -289h-178zM182 -2v1415h457q100 0 188 -28t155.5 -80t106.5 -131.5t39 -176.5q0 -130 -76 -227.5t-200 -140.5l393 -631h-291l-348 606h-170v-606h-254zM438 811h224q101 4 158 53t57 129q0 88 -64 140.5t-172 52.5h-203v-375z" /> + <glyph glyph-name="racute" unicode="ŕ" horiz-adv-x="815" +d="M315 1124l225 289h260l-307 -289h-178zM145 0v999h238v-168q31 88 106 138.5t162 50.5q112 0 183 -72l-111 -200q-51 34 -109 34q-95 0 -164 -91t-69 -269v-422h-236z" /> + <glyph glyph-name="Rcommaaccent" unicode="Ŗ" horiz-adv-x="1268" +d="M182 -2v1415h457q100 0 188 -28t155.5 -80t106.5 -131.5t39 -176.5q0 -130 -76 -227.5t-200 -140.5l393 -631h-291l-348 606h-170v-606h-254zM438 811h224q101 4 158 53t57 129q0 88 -64 140.5t-172 52.5h-203v-375zM447 -459l135 353h254l-248 -353h-141z" /> + <glyph glyph-name="rcommaaccent" unicode="ŗ" horiz-adv-x="815" +d="M145 0v999h238v-168q31 88 106 138.5t162 50.5q112 0 183 -72l-111 -200q-51 34 -109 34q-95 0 -164 -91t-69 -269v-422h-236zM25 -459l135 353h254l-248 -353h-141z" /> + <glyph glyph-name="Rcaron" unicode="Ř" horiz-adv-x="1268" +d="M621 1491l-316 332h189l127 -135l129 135h188zM182 -2v1415h457q100 0 188 -28t155.5 -80t106.5 -131.5t39 -176.5q0 -130 -76 -227.5t-200 -140.5l393 -631h-291l-348 606h-170v-606h-254zM438 811h224q101 4 158 53t57 129q0 88 -64 140.5t-172 52.5h-203v-375z" /> + <glyph glyph-name="rcaron" unicode="ř" horiz-adv-x="815" +d="M432 1079l-316 332h189l127 -135l129 135h188zM145 0v999h238v-168q31 88 106 138.5t162 50.5q112 0 183 -72l-111 -200q-51 34 -109 34q-95 0 -164 -91t-69 -269v-422h-236z" /> + <glyph glyph-name="Sacute" unicode="Ś" horiz-adv-x="1137" +d="M446 1536l225 289h260l-307 -289h-178zM586 -16q-95 0 -184 26.5t-163 76.5t-126 130.5t-68 181.5l252 64q13 -126 93.5 -190t199.5 -64q110 0 171.5 51t61.5 129q0 52 -29.5 93.5t-77.5 68t-109.5 53.5t-125.5 50t-125.5 58t-109.5 76.5t-77.5 107.5t-29.5 148 +q0 121 61 211t160 134.5t220 44.5q136 0 248 -61.5t182 -186.5l-211 -129q-37 72 -97 111.5t-131 39.5q-76 0 -127 -42t-51 -109q0 -42 23.5 -76.5t63 -58.5t91 -46t108 -43.5t113 -46t108 -58.5t91 -76t63 -103.5t23.5 -136.5q0 -130 -66.5 -228.5t-177.5 -149t-247 -50.5z +" /> + <glyph glyph-name="sacute" unicode="ś" horiz-adv-x="909" +d="M311 1124l225 289h260l-307 -289h-178zM446 -20q-153 0 -267 80t-152 200l194 86q61 -164 213 -164q78 0 120 36.5t42 82.5q0 34 -27.5 56.5t-72 36.5t-98 26.5t-107 33t-98 49.5t-72 81.5t-27.5 124.5q0 101 53.5 173.5t135.5 105t182 32.5q127 0 224 -57t155 -160 +l-189 -103q-70 127 -198 127q-58 0 -93.5 -25t-35.5 -61q0 -30 28 -51.5t73 -35.5t99 -28.5t108 -37.5t99 -55.5t73 -88.5t28 -131q0 -67 -22.5 -123t-60.5 -94t-88.5 -65t-105.5 -39t-113 -12z" /> + <glyph glyph-name="Scedilla" unicode="Ş" horiz-adv-x="1137" +d="M1077 412q0 -184 -127.5 -299.5t-322.5 -127.5l-66 -85q92 -13 141 -64.5t49 -132.5q0 -96 -65.5 -160.5t-163.5 -64.5q-63 0 -117.5 36t-79.5 93l136 57q8 -20 26 -33.5t41 -13.5q35 0 57.5 22t22.5 56q0 48 -47 79t-121 31h-70l119 186q-170 25 -293 130t-151 278 +l252 64q13 -126 93.5 -190t199.5 -64q110 0 171.5 51t61.5 129q0 52 -29.5 93.5t-77.5 68t-109.5 53.5t-125.5 50t-125.5 58t-109.5 76.5t-77.5 107.5t-29.5 148q0 121 61 211t160 134.5t220 44.5q136 0 248 -61.5t182 -186.5l-211 -129q-37 72 -97 111.5t-131 39.5 +q-76 0 -127 -42t-51 -109q0 -42 23.5 -76.5t63 -58.5t91 -46t108 -43.5t113 -46t108 -58.5t91 -76t63 -103.5t23.5 -136.5z" /> + <glyph glyph-name="scedilla" unicode="ş" horiz-adv-x="909" +d="M328 741q0 -30 28 -51.5t73 -35.5t99 -28.5t108 -37.5t99 -55.5t73 -88.5t28 -131q0 -131 -77.5 -212t-198.5 -108l-72 -93q92 -13 141 -64.5t49 -132.5q0 -96 -65.5 -160.5t-163.5 -64.5q-63 0 -117.5 36t-79.5 93l136 57q8 -20 26 -33.5t41 -13.5q35 0 57.5 22t22.5 56 +q0 48 -47 79t-121 31h-70l112 176q-140 10 -243 88.5t-139 190.5l194 86q61 -164 213 -164q78 0 120 36.5t42 82.5q0 34 -27.5 56.5t-72 36.5t-98 26.5t-107 33t-98 49.5t-72 81.5t-27.5 124.5q0 101 53.5 173.5t135.5 105t182 32.5q127 0 224 -57t155 -160l-189 -103 +q-70 127 -198 127q-58 0 -93.5 -25t-35.5 -61z" /> + <glyph glyph-name="Scaron" unicode="Š" horiz-adv-x="1137" +d="M563 1491l-316 332h189l127 -135l129 135h188zM586 -16q-95 0 -184 26.5t-163 76.5t-126 130.5t-68 181.5l252 64q13 -126 93.5 -190t199.5 -64q110 0 171.5 51t61.5 129q0 52 -29.5 93.5t-77.5 68t-109.5 53.5t-125.5 50t-125.5 58t-109.5 76.5t-77.5 107.5t-29.5 148 +q0 121 61 211t160 134.5t220 44.5q136 0 248 -61.5t182 -186.5l-211 -129q-37 72 -97 111.5t-131 39.5q-76 0 -127 -42t-51 -109q0 -42 23.5 -76.5t63 -58.5t91 -46t108 -43.5t113 -46t108 -58.5t91 -76t63 -103.5t23.5 -136.5q0 -130 -66.5 -228.5t-177.5 -149t-247 -50.5z +" /> + <glyph glyph-name="scaron" unicode="š" horiz-adv-x="909" +d="M428 1079l-316 332h189l127 -135l129 135h188zM446 -20q-153 0 -267 80t-152 200l194 86q61 -164 213 -164q78 0 120 36.5t42 82.5q0 34 -27.5 56.5t-72 36.5t-98 26.5t-107 33t-98 49.5t-72 81.5t-27.5 124.5q0 101 53.5 173.5t135.5 105t182 32.5q127 0 224 -57 +t155 -160l-189 -103q-70 127 -198 127q-58 0 -93.5 -25t-35.5 -61q0 -30 28 -51.5t73 -35.5t99 -28.5t108 -37.5t99 -55.5t73 -88.5t28 -131q0 -67 -22.5 -123t-60.5 -94t-88.5 -65t-105.5 -39t-113 -12z" /> + <glyph glyph-name="uni0162" unicode="Ţ" horiz-adv-x="1180" +d="M463 0v1186h-443v227h1139v-227h-442v-1186h-254zM547 -522q-63 0 -117.5 36t-79.5 93l136 57q8 -20 26 -33.5t41 -13.5q35 0 57.5 22t22.5 56q0 48 -47 79t-121 31h-70l123 193h144l-76 -98q92 -13 141 -64.5t49 -132.5q0 -96 -65.5 -160.5t-163.5 -64.5z" /> + <glyph glyph-name="uni0163" unicode="ţ" horiz-adv-x="754" +d="M680 795h-252v-476q0 -124 113 -124q65 0 139 36v-221q-54 -20 -126 -27l-64 -83q92 -13 141 -64.5t49 -132.5q0 -96 -65.5 -160.5t-163.5 -64.5q-63 0 -117.5 36t-79.5 93l136 57q8 -20 26 -33.5t41 -13.5q35 0 57.5 22t22.5 56q0 48 -47 79t-121 31h-70l117 183 +q-109 21 -169.5 96.5t-60.5 191.5v519h-161v204h165v248l238 174v-422h252v-204z" /> + <glyph glyph-name="Tcaron" unicode="Ť" horiz-adv-x="1180" +d="M588 1491l-316 332h189l127 -135l129 135h188zM463 0v1186h-443v227h1139v-227h-442v-1186h-254z" /> + <glyph glyph-name="tcaron" unicode="ť" horiz-adv-x="760" +d="M532 1145l136 454h254l-248 -454h-142zM479 -20q-145 0 -218 81.5t-73 214.5v502h-161v221h166v248l229 174v-422h260v-221h-260v-499q0 -48 25 -65t67 -17q48 0 90 8.5t60 16.5l18 9v-221q-66 -30 -203 -30z" /> + <glyph glyph-name="Tbar" unicode="Ŧ" horiz-adv-x="1180" +d="M1159 1186h-442v-397h190v-164h-190v-625h-254v625h-191v164h191v397h-443v227h1139v-227z" /> + <glyph glyph-name="tbar" unicode="ŧ" horiz-adv-x="754" +d="M680 795h-252v-213h247v-164h-247v-99q0 -124 113 -124q65 0 139 36v-221q-79 -30 -180 -30q-147 0 -230.5 79.5t-83.5 216.5v142h-146v164h146v213h-161v204h165v248l238 174v-422h252v-204z" /> + <glyph glyph-name="Utilde" unicode="Ũ" horiz-adv-x="1380" +d="M813 1517q-44 0 -80 15t-59 36t-42 42t-39 36t-40 15q-31 0 -48 -35.5t-17 -101.5h-140q0 137 57 211.5t156 74.5q48 0 89.5 -22t65 -48.5t50.5 -48.5t49 -22q27 0 44.5 35.5t17.5 99.5h145q0 -137 -55.5 -212t-153.5 -75zM690 -20q-275 0 -407.5 150.5t-132.5 420.5v862 +h253v-833q0 -182 62.5 -268.5t224.5 -86.5q163 0 225 86.5t62 268.5v833h254v-852q0 -277 -132.5 -429t-408.5 -152z" /> + <glyph glyph-name="utilde" unicode="ũ" horiz-adv-x="1167" +d="M702 1105q-44 0 -80 15t-59 36t-42 42t-39 36t-40 15q-31 0 -48 -35.5t-17 -101.5h-140q0 137 57 211.5t156 74.5q48 0 89.5 -22t65 -48.5t50.5 -48.5t49 -22q27 0 44.5 35.5t17.5 99.5h145q0 -137 -55.5 -212t-153.5 -75zM479 -20q-184 0 -274 130t-90 363v526h247v-534 +q0 -134 38 -199t143 -65q47 0 85 14.5t72.5 50.5t54 107.5t19.5 175.5v450h248v-999h-248v117q-105 -137 -295 -137z" /> + <glyph glyph-name="Umacron" unicode="Ū" horiz-adv-x="1380" +d="M405 1559v143h559v-143h-559zM690 -20q-275 0 -407.5 150.5t-132.5 420.5v862h253v-833q0 -182 62.5 -268.5t224.5 -86.5q163 0 225 86.5t62 268.5v833h254v-852q0 -277 -132.5 -429t-408.5 -152z" /> + <glyph glyph-name="umacron" unicode="ū" horiz-adv-x="1167" +d="M294 1147v143h559v-143h-559zM479 -20q-184 0 -274 130t-90 363v526h247v-534q0 -134 38 -199t143 -65q47 0 85 14.5t72.5 50.5t54 107.5t19.5 175.5v450h248v-999h-248v117q-105 -137 -295 -137z" /> + <glyph glyph-name="Uring" unicode="Ů" horiz-adv-x="1380" +d="M684 1481q-96 0 -162.5 68.5t-66.5 162.5q0 95 67 162.5t162 67.5t163.5 -67t68.5 -163q0 -97 -67.5 -164t-164.5 -67zM684 1612q45 0 73 29t28 74q0 42 -27 69t-74 27q-44 0 -71 -27t-27 -69q0 -45 28 -74t70 -29zM690 -20q-275 0 -407.5 150.5t-132.5 420.5v862h253 +v-833q0 -182 62.5 -268.5t224.5 -86.5q163 0 225 86.5t62 268.5v833h254v-852q0 -277 -132.5 -429t-408.5 -152z" /> + <glyph glyph-name="uring" unicode="ů" horiz-adv-x="1167" +d="M573 1069q-96 0 -162.5 68.5t-66.5 162.5q0 95 67 162.5t162 67.5t163.5 -67t68.5 -163q0 -97 -67.5 -164t-164.5 -67zM573 1200q45 0 73 29t28 74q0 42 -27 69t-74 27q-44 0 -71 -27t-27 -69q0 -45 28 -74t70 -29zM479 -20q-184 0 -274 130t-90 363v526h247v-534 +q0 -134 38 -199t143 -65q47 0 85 14.5t72.5 50.5t54 107.5t19.5 175.5v450h248v-999h-248v117q-105 -137 -295 -137z" /> + <glyph glyph-name="Uhungarumlaut" unicode="Ű" horiz-adv-x="1380" +d="M385 1495l225 330h219l-266 -330h-178zM733 1495l225 330h260l-307 -330h-178zM690 -20q-275 0 -407.5 150.5t-132.5 420.5v862h253v-833q0 -182 62.5 -268.5t224.5 -86.5q163 0 225 86.5t62 268.5v833h254v-852q0 -277 -132.5 -429t-408.5 -152z" /> + <glyph glyph-name="uhungarumlaut" unicode="ű" horiz-adv-x="1167" +d="M274 1083l225 330h219l-266 -330h-178zM622 1083l225 330h260l-307 -330h-178zM479 -20q-184 0 -274 130t-90 363v526h247v-534q0 -134 38 -199t143 -65q47 0 85 14.5t72.5 50.5t54 107.5t19.5 175.5v450h248v-999h-248v117q-105 -137 -295 -137z" /> + <glyph glyph-name="Uogonek" unicode="Ų" horiz-adv-x="1380" +d="M927 18q-139 -80 -139 -180q0 -88 74 -88q61 0 103 57l122 -84q-81 -123 -219 -123q-98 0 -161.5 57t-63.5 148q0 95 74 175h-27q-275 0 -407.5 150.5t-132.5 420.5v862h253v-833q0 -182 62.5 -268.5t224.5 -86.5q163 0 225 86.5t62 268.5v833h254v-852q0 -431 -304 -543 +z" /> + <glyph glyph-name="uogonek" unicode="ų" horiz-adv-x="1167" +d="M990 -244l122 -84q-81 -123 -219 -123q-98 0 -161.5 57t-63.5 148q0 45 17 87t41 70t48 49t41 30l17 10h-58v117q-105 -137 -295 -137q-184 0 -274 130t-90 363v526h247v-534q0 -134 38 -199t143 -65q47 0 85 14.5t72.5 50.5t54 107.5t19.5 175.5v450h248v-999 +q-14 -4 -42.5 -18.5t-68.5 -41t-69 -67.5t-29 -86q0 -88 74 -88q61 0 103 57z" /> + <glyph glyph-name="Wcircumflex" unicode="Ŵ" horiz-adv-x="2003" +d="M683 1510l316 352l317 -352h-188l-129 145l-127 -145h-189zM449 0l-424 1413h264l301 -1040l313 958h197l313 -958l301 1040h264l-424 -1413h-245l-308 930l-307 -930h-245z" /> + <glyph glyph-name="wcircumflex" unicode="ŵ" horiz-adv-x="1466" +d="M417 1098l316 352l317 -352h-188l-129 145l-127 -145h-189zM317 -4l-307 1003h260l170 -626l189 626h209l188 -624l172 624h260l-309 -999h-219l-197 655l-196 -659h-220z" /> + <glyph glyph-name="Ycircumflex" unicode="Ŷ" horiz-adv-x="1319" +d="M339 1510l316 352l317 -352h-188l-129 145l-127 -145h-189zM528 0v551l-530 862h307l352 -618l355 618h309l-528 -862v-551h-265z" /> + <glyph glyph-name="ycircumflex" unicode="ŷ" horiz-adv-x="1032" +d="M198 1098l316 352l317 -352h-188l-129 145l-127 -145h-189zM201 -430l184 457l-391 972h268l252 -694l256 694h268l-571 -1429h-266z" /> + <glyph glyph-name="Ydieresis" unicode="Ÿ" horiz-adv-x="1319" +d="M376 1600v225h205v-225h-205zM731 1600v225h204v-225h-204zM528 0v551l-530 862h307l352 -618l355 618h309l-528 -862v-551h-265z" /> + <glyph glyph-name="Zacute" unicode="Ź" horiz-adv-x="1272" +d="M510 1536l225 289h260l-307 -289h-178zM59 0v176l789 1004h-744v233h1094v-184l-784 -1000h784v-229h-1139z" /> + <glyph glyph-name="zacute" unicode="ź" horiz-adv-x="1004" +d="M860 1413l-307 -289h-178l225 289h260zM934 999v-174l-542 -620h542v-205h-881v162l565 633h-536v204h852z" /> + <glyph glyph-name="Zdotaccent" unicode="Ż" horiz-adv-x="1272" +d="M500 1600v225h256v-225h-256zM59 0v176l789 1004h-744v233h1094v-184l-784 -1000h784v-229h-1139z" /> + <glyph glyph-name="zdotaccent" unicode="ż" horiz-adv-x="1004" +d="M621 1413v-225h-256v225h256zM934 999v-174l-542 -620h542v-205h-881v162l565 633h-536v204h852z" /> + <glyph glyph-name="Zcaron" unicode="Ž" horiz-adv-x="1272" +d="M627 1491l-316 332h189l127 -135l129 135h188zM59 0v176l789 1004h-744v233h1094v-184l-784 -1000h784v-229h-1139z" /> + <glyph glyph-name="zcaron" unicode="ž" horiz-adv-x="1004" +d="M809 1411l-317 -332l-316 332h189l127 -135l129 135h188zM934 999v-174l-542 -620h542v-205h-881v162l565 633h-536v204h852z" /> + <glyph glyph-name="florin" unicode="ƒ" horiz-adv-x="1028" +d="M63 -457v205q193 0 265.5 59.5t72.5 223.5v766h-178v202h178v125q0 140 87.5 232t213.5 92q69 0 126 -26t122 -81l-133 -155q-39 34 -60.5 45.5t-54.5 11.5q-40 0 -68 -29t-28 -90v-125h305v-202h-305v-766q0 -237 -138.5 -362.5t-404.5 -125.5z" /> + <glyph glyph-name="uni01C3" unicode="ǃ" horiz-adv-x="594" +d="M205 428l-29 1006h242l-29 -1006h-184zM164 0v264h266v-264h-266z" /> + <glyph glyph-name="uni01C4" unicode="DŽ" horiz-adv-x="2661" +d="M2016 1491l-316 332h189l127 -135l129 135h188zM182 0v1413h410q359 0 547 -185.5t188 -531.5q0 -332 -191 -514t-546 -182h-408zM1448 0v176l789 1004h-744v233h1094v-184l-784 -1000h784v-229h-1139zM436 233h129q121 0 211.5 25t158.5 79.5t103 147t35 222.5 +q0 252 -112.5 362.5t-372.5 110.5h-152v-947z" /> + <glyph glyph-name="uni01C5" unicode="Dž" horiz-adv-x="2419" +d="M592 1413q359 0 547 -185.5t188 -531.5q0 -332 -191 -514t-546 -182h-408v1413h410zM2224 1411l-317 -332l-316 332h189l127 -135l129 135h188zM565 233q121 0 211.5 25t158.5 79.5t103 147t35 222.5q0 252 -112.5 362.5t-372.5 110.5h-152v-947h129zM2349 999v-174 +l-542 -620h542v-205h-881v162l565 633h-536v204h852z" /> + <glyph glyph-name="uni01C6" unicode="dž" horiz-adv-x="2175" +d="M776 899v514h248v-1413h-227l-11 112q-97 -132 -290 -132q-136 0 -236 72.5t-148.5 189t-48.5 258.5q0 141 48.5 257.5t147.5 189.5t233 73q84 0 159.5 -30t124.5 -91zM1980 1411l-317 -332l-316 332h189l127 -135l129 135h188zM2105 999v-174l-542 -620h542v-205h-881 +v162l565 633h-536v204h852zM555 201q121 0 181.5 82t60.5 217q0 134 -61 216.5t-181 82.5t-182 -83.5t-62 -215.5q0 -133 61.5 -216t182.5 -83z" /> + <glyph glyph-name="uni01C7" unicode="LJ" horiz-adv-x="2237" +d="M182 0v1413h254v-1173h604v-240h-858zM1606 -20q-140 0 -247 63.5t-164 166.5t-66 230l250 29q8 -113 64 -183.5t163 -70.5q130 0 176.5 70.5t46.5 220.5v674h-532v233h786v-903q0 -116 -26.5 -210t-81.5 -167t-149 -113t-220 -40z" /> + <glyph glyph-name="uni01C8" unicode="Lj" horiz-adv-x="1616" +d="M182 0v1413h254v-1173h604v-240h-858zM1218 1188v225h258v-225h-258zM1179 -438q-92 0 -174 32l62 211q55 -22 88 -22q70 0 70 94v1122h245v-1103q0 -146 -73.5 -240t-217.5 -94z" /> + <glyph glyph-name="uni01C9" unicode="lj" horiz-adv-x="1114" +d="M348 -20q-97 0 -153 48.5t-56 170.5v1214h244v-1147q0 -67 80 -67q28 0 67 6v-205q-102 -20 -182 -20zM716 1188v225h258v-225h-258zM677 -438q-92 0 -174 32l62 211q55 -22 88 -22q70 0 70 94v1122h245v-1103q0 -146 -73.5 -240t-217.5 -94z" /> + <glyph glyph-name="uni01CA" unicode="NJ" horiz-adv-x="2593" +d="M182 0v1413h252l594 -989v989h244v-1413h-254l-592 991v-991h-244zM1962 -20q-140 0 -247 63.5t-164 166.5t-66 230l250 29q8 -113 64 -183.5t163 -70.5q130 0 176.5 70.5t46.5 220.5v674h-532v233h786v-903q0 -116 -26.5 -210t-81.5 -167t-149 -113t-220 -40z" /> + <glyph glyph-name="uni01CB" unicode="Nj" horiz-adv-x="1995" +d="M182 0v1413h252l594 -989v989h244v-1413h-254l-592 991v-991h-244zM1597 1188v225h258v-225h-258zM1558 -438q-92 0 -174 32l62 211q55 -22 88 -22q70 0 70 94v1122h245v-1103q0 -146 -73.5 -240t-217.5 -94z" /> + <glyph glyph-name="uni01CC" unicode="nj" horiz-adv-x="1702" +d="M1304 1188v225h258v-225h-258zM145 0v999h242v-116q57 69 136 103t159 34q94 0 166 -35.5t113.5 -96.5t62 -133.5t20.5 -154.5v-600h-241v569q0 101 -50 163.5t-141 62.5q-107 0 -166 -61t-59 -187v-547h-242zM1265 -438q-92 0 -174 32l62 211q55 -22 88 -22q70 0 70 94 +v1122h245v-1103q0 -146 -73.5 -240t-217.5 -94z" /> + <glyph glyph-name="uni01CD" unicode="Ǎ" +d="M670 1491l-316 332h189l127 -135l129 135h188zM12 0l566 1413h190l563 -1413h-274l-109 307h-549l-110 -307h-277zM485 524h377l-188 516z" /> + <glyph glyph-name="uni01CE" unicode="ǎ" horiz-adv-x="1061" +d="M502 1079l-316 332h189l127 -135l129 135h188zM418 -20q-159 0 -261 87t-102 240q0 64 20 113.5t55 82t86 54t109 30.5t128 9h260q0 97 -51 154t-146 57q-80 0 -139.5 -39.5t-95.5 -101.5l-187 135q160 219 420 219q201 0 316.5 -114t115.5 -300v-606h-201l-16 143 +q-112 -163 -311 -163zM453 186q104 0 180.5 70t79.5 164h-246q-79 0 -120.5 -35t-41.5 -86t39 -82t109 -31z" /> + <glyph glyph-name="uni01CF" unicode="Ǐ" horiz-adv-x="618" +d="M307 1491l-316 332h189l127 -135l129 135h188zM182 0v1413h254v-1413h-254z" /> + <glyph glyph-name="uni01D0" unicode="ǐ" horiz-adv-x="516" +d="M256 1079l-316 332h189l127 -135l129 135h188zM145 0v999h226v-999h-226z" /> + <glyph glyph-name="uni01D1" unicode="Ǒ" horiz-adv-x="1528" +d="M762 1491l-316 332h189l127 -135l129 135h188zM764 -20q-136 0 -249.5 38.5t-192.5 106t-134 160t-80.5 199t-25.5 223.5t25.5 223.5t80.5 199t134 160t192.5 106t249.5 38.5t249.5 -38.5t192.5 -106t134 -160t80.5 -199t25.5 -223.5t-25.5 -223.5t-80.5 -199t-134 -160 +t-192.5 -106t-249.5 -38.5zM764 205q88 0 159 27t118 73t78.5 110.5t45 136.5t13.5 155q0 82 -13.5 154.5t-45 136.5t-78.5 110t-118 73t-159 27t-159 -27t-118 -73t-78.5 -110t-45 -136.5t-13.5 -154.5q0 -83 13.5 -155t45 -136.5t78.5 -110.5t118 -73t159 -27z" /> + <glyph glyph-name="uni01D2" unicode="ǒ" horiz-adv-x="1128" +d="M561 1079l-316 332h189l127 -135l129 135h188zM563 -20q-113 0 -210 42t-162.5 113t-102.5 166t-37 201q0 141 62.5 258.5t181 188.5t268.5 71t268.5 -71t181 -188.5t62.5 -258.5q0 -106 -37 -201t-102.5 -166t-162.5 -113t-210 -42zM563 190q130 0 194 88.5t64 223.5 +q0 86 -25 153t-84.5 110.5t-148.5 43.5q-130 0 -194 -86.5t-64 -220.5q0 -86 25 -154t85 -113t148 -45z" /> + <glyph glyph-name="uni01D3" unicode="Ǔ" horiz-adv-x="1380" +d="M684 1491l-316 332h189l127 -135l129 135h188zM690 -20q-275 0 -407.5 150.5t-132.5 420.5v862h253v-833q0 -182 62.5 -268.5t224.5 -86.5q163 0 225 86.5t62 268.5v833h254v-852q0 -277 -132.5 -429t-408.5 -152z" /> + <glyph glyph-name="uni01D4" unicode="ǔ" horiz-adv-x="1167" +d="M573 1079l-316 332h189l127 -135l129 135h188zM479 -20q-184 0 -274 130t-90 363v526h247v-534q0 -134 38 -199t143 -65q47 0 85 14.5t72.5 50.5t54 107.5t19.5 175.5v450h248v-999h-248v117q-105 -137 -295 -137z" /> + <glyph glyph-name="uni01D5" unicode="Ǖ" horiz-adv-x="1380" +d="M405 1973v143h559v-143h-559zM405 1600v225h205v-225h-205zM760 1600v225h204v-225h-204zM690 -20q-275 0 -407.5 150.5t-132.5 420.5v862h253v-833q0 -182 62.5 -268.5t224.5 -86.5q163 0 225 86.5t62 268.5v833h254v-852q0 -277 -132.5 -429t-408.5 -152z" /> + <glyph glyph-name="uni01D6" unicode="ǖ" horiz-adv-x="1167" +d="M294 1561v143h559v-143h-559zM294 1188v225h205v-225h-205zM649 1188v225h204v-225h-204zM479 -20q-184 0 -274 130t-90 363v526h247v-534q0 -134 38 -199t143 -65q47 0 85 14.5t72.5 50.5t54 107.5t19.5 175.5v450h248v-999h-248v117q-105 -137 -295 -137z" /> + <glyph glyph-name="uni01D7" unicode="Ǘ" horiz-adv-x="1380" +d="M567 1950l225 289h260l-307 -289h-178zM405 1600v225h205v-225h-205zM760 1600v225h204v-225h-204zM690 -20q-275 0 -407.5 150.5t-132.5 420.5v862h253v-833q0 -182 62.5 -268.5t224.5 -86.5q163 0 225 86.5t62 268.5v833h254v-852q0 -277 -132.5 -429t-408.5 -152z" /> + <glyph glyph-name="uni01D8" unicode="ǘ" horiz-adv-x="1167" +d="M456 1538l225 289h260l-307 -289h-178zM294 1188v225h205v-225h-205zM649 1188v225h204v-225h-204zM479 -20q-184 0 -274 130t-90 363v526h247v-534q0 -134 38 -199t143 -65q47 0 85 14.5t72.5 50.5t54 107.5t19.5 175.5v450h248v-999h-248v117q-105 -137 -295 -137z" /> + <glyph glyph-name="uni01D9" unicode="Ǚ" horiz-adv-x="1380" +d="M684 1905l-316 332h189l127 -135l129 135h188zM405 1600v225h205v-225h-205zM760 1600v225h204v-225h-204zM690 -20q-275 0 -407.5 150.5t-132.5 420.5v862h253v-833q0 -182 62.5 -268.5t224.5 -86.5q163 0 225 86.5t62 268.5v833h254v-852q0 -277 -132.5 -429 +t-408.5 -152z" /> + <glyph glyph-name="uni01DA" unicode="ǚ" horiz-adv-x="1167" +d="M573 1493l-316 332h189l127 -135l129 135h188zM294 1188v225h205v-225h-205zM649 1188v225h204v-225h-204zM479 -20q-184 0 -274 130t-90 363v526h247v-534q0 -134 38 -199t143 -65q47 0 85 14.5t72.5 50.5t54 107.5t19.5 175.5v450h248v-999h-248v117 +q-105 -137 -295 -137z" /> + <glyph glyph-name="uni01DB" unicode="Ǜ" horiz-adv-x="1380" +d="M621 1930l-308 309h260l226 -309h-178zM405 1600v225h205v-225h-205zM760 1600v225h204v-225h-204zM690 -20q-275 0 -407.5 150.5t-132.5 420.5v862h253v-833q0 -182 62.5 -268.5t224.5 -86.5q163 0 225 86.5t62 268.5v833h254v-852q0 -277 -132.5 -429t-408.5 -152z" /> + <glyph glyph-name="uni01DC" unicode="ǜ" horiz-adv-x="1167" +d="M510 1518l-308 309h260l226 -309h-178zM294 1188v225h205v-225h-205zM649 1188v225h204v-225h-204zM479 -20q-184 0 -274 130t-90 363v526h247v-534q0 -134 38 -199t143 -65q47 0 85 14.5t72.5 50.5t54 107.5t19.5 175.5v450h248v-999h-248v117q-105 -137 -295 -137z" /> + <glyph glyph-name="uni01DD" unicode="ǝ" horiz-adv-x="1057" +d="M522 -12q-106 0 -188.5 29.5t-135 77.5t-86.5 116t-47.5 140t-13.5 153q0 20 2 39t4 28l2 9h686q-12 95 -72.5 149.5t-166.5 54.5q-86 0 -142 -19.5t-108 -72.5l-168 148q85 91 186.5 131.5t229.5 40.5q121 0 218 -41.5t157.5 -112t92.5 -161t32 -191.5t-30 -192 +t-88 -165t-152 -117.5t-212 -43.5zM522 193q96 0 151.5 57t71.5 153h-454q25 -210 231 -210z" /> + <glyph glyph-name="uni01E3" unicode="ǣ" horiz-adv-x="1688" +d="M563 1147v143h559v-143h-559zM410 -20q-147 0 -251 86.5t-104 226.5q0 82 30.5 142t86 94.5t126 50.5t157.5 16h270q0 110 -51 161.5t-166 51.5q-74 0 -136.5 -36.5t-99.5 -90.5l-172 125q77 105 178 157t238 52q111 0 196.5 -43t137.5 -121q127 160 328 160 +q123 0 213.5 -43.5t140.5 -119t73 -163t23 -190.5q0 -46 -10 -76h-686q14 -96 75 -150.5t167 -54.5q84 0 141 19.5t106 72.5l170 -147q-86 -91 -187 -131.5t-228 -40.5q-240 0 -351 162q-160 -170 -415 -170zM934 596h455q-30 211 -232 211q-98 0 -153.5 -57t-69.5 -154z +M449 180q106 0 184.5 73.5t91.5 166.5h-256q-85 0 -134.5 -35t-49.5 -90q0 -57 43.5 -86t120.5 -29z" /> + <glyph glyph-name="uni01EB" unicode="ǫ" horiz-adv-x="1128" +d="M1075 502q0 -178 -98.5 -316.5t-264.5 -185.5h7q-14 -4 -42.5 -18.5t-68.5 -41t-69 -67.5t-29 -86q0 -88 74 -88q61 0 103 57l122 -84q-81 -123 -219 -123q-98 0 -161.5 57t-63.5 148q0 42 14 81t37.5 67.5t43.5 47t42 33.5q-134 15 -238 88.5t-158.5 186t-54.5 244.5 +q0 141 62.5 258.5t181 188.5t268.5 71t268.5 -71t181 -188.5t62.5 -258.5zM563 190q130 0 194 88.5t64 223.5q0 86 -25 153t-84.5 110.5t-148.5 43.5q-130 0 -194 -86.5t-64 -220.5q0 -86 25 -154t85 -113t148 -45z" /> + <glyph glyph-name="uni01F1" unicode="DZ" horiz-adv-x="2661" +d="M182 0v1413h410q359 0 547 -185.5t188 -531.5q0 -332 -191 -514t-546 -182h-408zM1448 0v176l789 1004h-744v233h1094v-184l-784 -1000h784v-229h-1139zM436 233h129q121 0 211.5 25t158.5 79.5t103 147t35 222.5q0 252 -112.5 362.5t-372.5 110.5h-152v-947z" /> + <glyph glyph-name="uni01F2" unicode="Dz" horiz-adv-x="2419" +d="M592 1413q359 0 547 -185.5t188 -531.5q0 -332 -191 -514t-546 -182h-408v1413h410zM565 233q121 0 211.5 25t158.5 79.5t103 147t35 222.5q0 252 -112.5 362.5t-372.5 110.5h-152v-947h129zM2349 999v-174l-542 -620h542v-205h-881v162l565 633h-536v204h852z" /> + <glyph glyph-name="uni01F3" unicode="dz" horiz-adv-x="2175" +d="M776 899v514h248v-1413h-227l-11 112q-97 -132 -290 -132q-136 0 -236 72.5t-148.5 189t-48.5 258.5q0 141 48.5 257.5t147.5 189.5t233 73q84 0 159.5 -30t124.5 -91zM2105 999v-174l-542 -620h542v-205h-881v162l565 633h-536v204h852zM555 201q121 0 181.5 82 +t60.5 217q0 134 -61 216.5t-181 82.5t-182 -83.5t-62 -215.5q0 -133 61.5 -216t182.5 -83z" /> + <glyph glyph-name="Scommaaccent" unicode="Ș" horiz-adv-x="1137" +d="M586 -16q-95 0 -184 26.5t-163 76.5t-126 130.5t-68 181.5l252 64q13 -126 93.5 -190t199.5 -64q110 0 171.5 51t61.5 129q0 52 -29.5 93.5t-77.5 68t-109.5 53.5t-125.5 50t-125.5 58t-109.5 76.5t-77.5 107.5t-29.5 148q0 121 61 211t160 134.5t220 44.5 +q136 0 248 -61.5t182 -186.5l-211 -129q-37 72 -97 111.5t-131 39.5q-76 0 -127 -42t-51 -109q0 -42 23.5 -76.5t63 -58.5t91 -46t108 -43.5t113 -46t108 -58.5t91 -76t63 -103.5t23.5 -136.5q0 -130 -66.5 -228.5t-177.5 -149t-247 -50.5zM324 -459l135 353h254l-248 -353 +h-141z" /> + <glyph glyph-name="scommaaccent" unicode="ș" horiz-adv-x="909" +d="M446 -20q-153 0 -267 80t-152 200l194 86q61 -164 213 -164q78 0 120 36.5t42 82.5q0 34 -27.5 56.5t-72 36.5t-98 26.5t-107 33t-98 49.5t-72 81.5t-27.5 124.5q0 101 53.5 173.5t135.5 105t182 32.5q127 0 224 -57t155 -160l-189 -103q-70 127 -198 127 +q-58 0 -93.5 -25t-35.5 -61q0 -30 28 -51.5t73 -35.5t99 -28.5t108 -37.5t99 -55.5t73 -88.5t28 -131q0 -67 -22.5 -123t-60.5 -94t-88.5 -65t-105.5 -39t-113 -12zM251 -459l135 353h254l-248 -353h-141z" /> + <glyph glyph-name="uni021A" unicode="Ț" horiz-adv-x="1180" +d="M463 0v1186h-443v227h1139v-227h-442v-1186h-254zM349 -459l135 353h254l-248 -353h-141z" /> + <glyph glyph-name="uni021B" unicode="ț" horiz-adv-x="754" +d="M500 -20q-147 0 -230.5 79.5t-83.5 216.5v519h-161v204h165v248l238 174v-422h252v-204h-252v-476q0 -124 113 -124q65 0 139 36v-221q-79 -30 -180 -30zM253 -459l135 353h254l-248 -353h-141z" /> + <glyph glyph-name="uni0237" unicode="ȷ" horiz-adv-x="530" +d="M88 -438q-81 0 -166 32l55 201q58 -14 105 -14q39 0 53.5 23t14.5 73v1122h233v-1114q0 -143 -74.5 -233t-220.5 -90z" /> + <glyph glyph-name="uni0250" unicode="ɐ" horiz-adv-x="1096" +d="M578 -20q-202 0 -317.5 111.5t-115.5 297.5v606h191l26 -143q63 90 140 127t182 37q96 0 178.5 -38t134.5 -112.5t52 -169.5q0 -297 -410 -297h-260q0 -206 207 -206q71 0 132 40t93 97l186 -135q-78 -108 -179.5 -161.5t-239.5 -53.5zM379 575h246q79 0 126.5 35.5 +t47.5 85.5t-45 81.5t-115 31.5q-104 0 -180.5 -70t-79.5 -164z" /> + <glyph glyph-name="uni0254" unicode="ɔ" horiz-adv-x="999" +d="M465 -20q-147 0 -260.5 77.5t-171.5 212.5l231 90q20 -72 73 -111.5t128 -39.5q61 0 107 23.5t73 65t40 92t13 108.5q0 125 -57 206.5t-176 81.5q-74 0 -127.5 -40.5t-73.5 -110.5l-221 84q50 140 160.5 218.5t259.5 78.5q118 0 212 -43.5t152 -117t88.5 -165 +t30.5 -192.5q0 -80 -18.5 -154.5t-57.5 -141t-94.5 -115.5t-135.5 -78t-175 -29z" /> + <glyph glyph-name="uni0258" unicode="ɘ" horiz-adv-x="1057" +d="M504 -12q-128 0 -229.5 40.5t-186.5 131.5l168 147q52 -53 108 -72.5t142 -19.5q106 0 166.5 55t72.5 150h-686q-8 28 -8 76q0 81 13.5 153t47.5 140t86.5 116t135 77.5t188.5 29.5q118 0 212 -43.5t152 -117.5t88 -165t30 -192q0 -102 -32 -192t-92.5 -161t-157.5 -112 +t-218 -41zM291 596h454q-16 97 -71.5 154t-151.5 57q-206 0 -231 -211z" /> + <glyph glyph-name="uni0259" unicode="ə" horiz-adv-x="1057" +d="M522 -12q-106 0 -188.5 29.5t-135 77.5t-86.5 116t-47.5 140t-13.5 153q0 20 2 39t4 28l2 9h686q-12 95 -72.5 149.5t-166.5 54.5q-86 0 -142 -19.5t-108 -72.5l-168 148q85 91 186.5 131.5t229.5 40.5q121 0 218 -41.5t157.5 -112t92.5 -161t32 -191.5t-30 -192 +t-88 -165t-152 -117.5t-212 -43.5zM522 193q96 0 151.5 57t71.5 153h-454q25 -210 231 -210z" /> + <glyph glyph-name="uni0261" unicode="ɡ" horiz-adv-x="1155" +d="M1010 0q0 -205 -123.5 -321.5t-345.5 -116.5q-291 0 -445 215l187 135q32 -58 99.5 -97.5t162.5 -39.5q219 0 219 225v121q-98 -121 -281 -121q-135 0 -235 72.5t-148.5 186.5t-48.5 251q0 101 28.5 192t81.5 162.5t135.5 113.5t182.5 42q84 0 159.5 -30t125.5 -91v100 +h246v-999zM543 225q120 0 180.5 79t60.5 206t-60.5 208t-180.5 81t-182 -82t-62 -207q0 -126 62 -205.5t182 -79.5z" /> + <glyph glyph-name="circumflex" unicode="ˆ" horiz-adv-x="653" +d="M10 1098l316 352l317 -352h-188l-129 145l-127 -145h-189z" /> + <glyph glyph-name="caron" unicode="ˇ" horiz-adv-x="659" +d="M330 1079l-316 332h189l127 -135l129 135h188z" /> + <glyph glyph-name="uni02D0" unicode="ː" horiz-adv-x="561" +d="M281 522l-252 477h503zM29 0l252 477l251 -477h-503z" /> + <glyph glyph-name="uni02D1" unicode="ˑ" horiz-adv-x="561" +d="M281 211l-252 479h503z" /> + <glyph glyph-name="breve" unicode="˘" horiz-adv-x="811" +d="M406 1143q-316 0 -316 270h172q0 -63 40 -95t104 -32t103.5 33t39.5 94h172q0 -270 -315 -270z" /> + <glyph glyph-name="dotaccent" unicode="˙" horiz-adv-x="539" +d="M151 1188v225h256v-225h-256z" /> + <glyph glyph-name="ring" unicode="˚" horiz-adv-x="633" +d="M315 1069q-96 0 -162.5 68.5t-66.5 162.5q0 95 67 162.5t162 67.5t163.5 -67t68.5 -163q0 -97 -67.5 -164t-164.5 -67zM315 1200q45 0 73 29t28 74q0 42 -27 69t-74 27q-44 0 -71 -27t-27 -69q0 -45 28 -74t70 -29z" /> + <glyph glyph-name="ogonek" unicode="˛" horiz-adv-x="573" +d="M311 -451q-98 0 -161.5 57t-63.5 148q0 45 17 87t41 70t48 49t41 30l17 10h190q-14 -4 -42.5 -18.5t-68.5 -41t-69 -67.5t-29 -86q0 -88 74 -88q61 0 103 57l122 -84q-81 -123 -219 -123z" /> + <glyph glyph-name="tilde" unicode="˜" horiz-adv-x="872" +d="M598 1126q-44 0 -80 15t-59 36t-42 42t-39 36t-40 15q-31 0 -48 -35.5t-17 -101.5h-140q0 137 57 211.5t156 74.5q48 0 89.5 -22t65 -48.5t50.5 -48.5t49 -22q27 0 44.5 35.5t17.5 99.5h145q0 -137 -55.5 -212t-153.5 -75z" /> + <glyph glyph-name="hungarumlaut" unicode="˝" horiz-adv-x="883" +d="M35 1083l225 330h219l-266 -330h-178zM383 1083l225 330h260l-307 -330h-178z" /> + <glyph glyph-name="uni02F5" unicode="˵" horiz-adv-x="1049" +d="M395 670l-307 329h260l225 -329h-178zM764 670l-307 329h260l225 -329h-178z" /> + <glyph glyph-name="uni02F6" unicode="˶" horiz-adv-x="1049" +d="M106 670l226 329h260l-307 -329h-179zM475 670l225 329h261l-308 -329h-178z" /> + <glyph glyph-name="gravecomb" unicode="̀" horiz-adv-x="0" +d="M-210 1104l-308 309h260l226 -309h-178z" /> + <glyph glyph-name="acutecomb" unicode="́" horiz-adv-x="0" +d="M-504 1124l225 289h260l-307 -289h-178z" /> + <glyph glyph-name="uni0302" unicode="̂" horiz-adv-x="0" +d="M-643 1098l316 352l317 -352h-188l-129 145l-127 -145h-189z" /> + <glyph glyph-name="tildecomb" unicode="̃" horiz-adv-x="0" +d="M-309 1126q-44 0 -80 15t-59 36t-42 42t-39 36t-40 15q-31 0 -48 -35.5t-17 -101.5h-140q0 137 57 211.5t156 74.5q48 0 89.5 -22t65 -48.5t50.5 -48.5t49 -22q27 0 44.5 35.5t17.5 99.5h145q0 -137 -55.5 -212t-153.5 -75z" /> + <glyph glyph-name="uni0304" unicode="̄" horiz-adv-x="0" +d="M-699 1147v143h559v-143h-559z" /> + <glyph glyph-name="uni0306" unicode="̆" horiz-adv-x="0" +d="M-405 1143q-316 0 -316 270h172q0 -63 40 -95t104 -32t103.5 33t39.5 94h172q0 -270 -315 -270z" /> + <glyph glyph-name="uni0307" unicode="̇" horiz-adv-x="0" +d="M-398 1188v225h256v-225h-256z" /> + <glyph glyph-name="uni0308" unicode="̈" horiz-adv-x="0" +d="M-701 1188v225h205v-225h-205zM-346 1188v225h204v-225h-204z" /> + <glyph glyph-name="uni030A" unicode="̊" horiz-adv-x="0" +d="M-318 1069q-96 0 -162.5 68.5t-66.5 162.5q0 95 67 162.5t162 67.5t163.5 -67t68.5 -163q0 -97 -67.5 -164t-164.5 -67zM-318 1200q45 0 73 29t28 74q0 42 -27 69t-74 27q-44 0 -71 -27t-27 -69q0 -45 28 -74t70 -29z" /> + <glyph glyph-name="uni030B" unicode="̋" horiz-adv-x="0" +d="M-848 1083l225 330h219l-266 -330h-178zM-500 1083l225 330h260l-307 -330h-178z" /> + <glyph glyph-name="uni030C" unicode="̌" horiz-adv-x="0" +d="M-329 1079l-316 332h189l127 -135l129 135h188z" /> + <glyph glyph-name="uni030F" unicode="̏" horiz-adv-x="0" +d="M-581 1083l-308 330h260l226 -330h-178zM-213 1083l-307 330h260l225 -330h-178z" /> + <glyph glyph-name="uni0312" unicode="̒" horiz-adv-x="0" +d="M-78 1434l-135 -315h-254l248 315h141z" /> + <glyph glyph-name="uni031B" unicode="̛" horiz-adv-x="0" +d="M-418 999l135 414h254l-248 -414h-141z" /> + <glyph glyph-name="uni0326" unicode="̦" horiz-adv-x="0" +d="M-418 -459l135 353h254l-248 -353h-141z" /> + <glyph glyph-name="uni0327" unicode="̧" horiz-adv-x="0" +d="M-305 -522q-63 0 -117.5 36t-79.5 93l136 57q8 -20 26 -33.5t41 -13.5q35 0 57.5 22t22.5 56q0 48 -47 79t-121 31h-70l123 193h144l-76 -98q92 -13 141 -64.5t49 -132.5q0 -96 -65.5 -160.5t-163.5 -64.5z" /> + <glyph glyph-name="uni0328" unicode="̨" horiz-adv-x="0" +d="M-262 -451q-98 0 -161.5 57t-63.5 148q0 45 17 87t41 70t48 49t41 30l17 10h190q-14 -4 -42.5 -18.5t-68.5 -41t-69 -67.5t-29 -86q0 -88 74 -88q61 0 103 57l122 -84q-81 -123 -219 -123z" /> + <glyph glyph-name="pi" unicode="π" horiz-adv-x="1004" +d="M834 -20q-109 0 -171.5 70t-62.5 188v557h-227v-795h-205v795h-82v204h801v-204h-82v-525q0 -110 45 -110q21 0 41 14l65 -160q-51 -34 -122 -34z" /> + <glyph glyph-name="uni0400" unicode="Ѐ" horiz-adv-x="1245" +d="M556 1516l-308 309h260l226 -309h-178zM182 0v1413h940v-233h-686v-357h639v-233h-639v-350h686v-240h-940z" /> + <glyph glyph-name="uni0401" unicode="Ё" horiz-adv-x="1245" +d="M340 1600v225h205v-225h-205zM695 1600v225h204v-225h-204zM182 0v1413h940v-233h-686v-357h639v-233h-639v-350h686v-240h-940z" /> + <glyph glyph-name="uni0402" unicode="Ђ" horiz-adv-x="1610" +d="M1094 -20q-71 0 -165.5 38t-152.5 88l121 177q67 -64 156 -64q113 0 175 50.5t62 144.5q0 174 -63 258t-223 84q-182 0 -287 -119v-637h-254v1184h-443v227h1139v-227h-442v-254q142 71 287 71q274 0 407 -150.5t133 -420.5q0 -450 -450 -450z" /> + <glyph glyph-name="uni0403" unicode="Ѓ" horiz-adv-x="1065" +d="M461 1536l225 289h260l-307 -289h-178zM182 0v1411h862v-233h-608v-1178h-254z" /> + <glyph glyph-name="uni0404" unicode="Є" horiz-adv-x="1432" +d="M766 -20q-169 0 -302 58.5t-215 160t-124.5 231t-42.5 277.5q0 118 26 224.5t80.5 199t134 160.5t192.5 106.5t249 38.5q211 0 372 -104.5t246 -301.5l-237 -94q-74 258 -383 258q-185 0 -290 -101.5t-130 -269.5h567v-233h-565q28 -171 133 -270t289 -99 +q140 0 233.5 61.5t149.5 200.5l235 -96q-83 -197 -244.5 -302t-373.5 -105z" /> + <glyph glyph-name="uni0405" unicode="Ѕ" horiz-adv-x="1137" +d="M586 -16q-95 0 -184 26.5t-163 76.5t-126 130.5t-68 181.5l252 64q13 -126 93.5 -190t199.5 -64q110 0 171.5 51t61.5 129q0 52 -29.5 93.5t-77.5 68t-109.5 53.5t-125.5 50t-125.5 58t-109.5 76.5t-77.5 107.5t-29.5 148q0 121 61 211t160 134.5t220 44.5 +q136 0 248 -61.5t182 -186.5l-211 -129q-37 72 -97 111.5t-131 39.5q-76 0 -127 -42t-51 -109q0 -42 23.5 -76.5t63 -58.5t91 -46t108 -43.5t113 -46t108 -58.5t91 -76t63 -103.5t23.5 -136.5q0 -130 -66.5 -228.5t-177.5 -149t-247 -50.5z" /> + <glyph glyph-name="uni0406" unicode="І" horiz-adv-x="618" +d="M182 0v1411h254v-1411h-254z" /> + <glyph glyph-name="uni0407" unicode="Ї" horiz-adv-x="618" +d="M29 1567v194h204v-194h-204zM383 1567v194h205v-194h-205zM182 0v1411h254v-1411h-254z" /> + <glyph glyph-name="uni0408" unicode="Ј" horiz-adv-x="1139" +d="M508 -20q-140 0 -247 63.5t-164 166.5t-66 230l250 29q8 -113 64 -183.5t163 -70.5q130 0 176.5 70.5t46.5 220.5v672h-532v233h786v-901q0 -116 -26.5 -210t-81.5 -167t-149 -113t-220 -40z" /> + <glyph glyph-name="uni0409" unicode="Љ" horiz-adv-x="1935" +d="M217 -20q-64 0 -111.5 15t-99.5 46l70 186q77 -22 119 -22q28 0 47.5 71t28.5 186.5t12.5 219.5t3.5 211v518h915v-586h191q222 0 360.5 -108t138.5 -301q0 -194 -139 -305t-360 -111h-443v1178h-409v-283q0 -78 -0.5 -132t-4 -135.5t-9.5 -139t-17.5 -130t-27.5 -122.5 +t-41 -102t-56 -83t-74 -51t-94 -20zM1202 238h191q247 0 247 178q0 86 -59.5 129t-187.5 43h-191v-350z" /> + <glyph glyph-name="uni040A" unicode="Њ" horiz-adv-x="2040" +d="M182 0v1411h254v-588h619v588h254v-586h188q223 0 361.5 -108t138.5 -301q0 -194 -139 -305t-361 -111h-442v590h-619v-590h-254zM1309 238h188q248 0 248 178q0 86 -60 129t-188 43h-188v-350z" /> + <glyph glyph-name="uni040B" unicode="Ћ" horiz-adv-x="1632" +d="M463 0v1184h-443v227h1139v-227h-442v-254q142 71 287 71q274 0 407 -150.5t133 -420.5v-430h-254v401q0 90 -13 152.5t-44.5 110t-88 70t-140.5 22.5q-182 0 -287 -119v-637h-254z" /> + <glyph glyph-name="uni040C" unicode="Ќ" horiz-adv-x="1352" +d="M549 1536l225 289h260l-307 -289h-178zM182 0v1411h254v-510h150l334 510h340l-422 -577q119 0 231 -246l262 -588h-315l-166 473q-11 32 -26 61t-38 60.5t-55 50.5t-69 19h-226v-664h-254z" /> + <glyph glyph-name="uni040D" unicode="Ѝ" horiz-adv-x="1491" +d="M870 1516h-178l-307 309h260zM1014 1411h295v-1411h-254v1049v27l-578 -1076h-295v1411h254v-1018v-58z" /> + <glyph glyph-name="uni040E" unicode="Ў" horiz-adv-x="1110" +d="M541 1554q-316 0 -316 271h172q0 -63 40 -95t104 -32q65 0 104 33t39 94h172q0 -271 -315 -271zM219 0l193 457l-400 954h269l266 -676l282 676h269l-613 -1411h-266z" /> + <glyph glyph-name="uni040F" unicode="Џ" horiz-adv-x="1491" +d="M618 -307v307h-436v1411h254v-1178h619v1178h254v-1411h-437v-307h-254z" /> + <glyph glyph-name="uni0410" unicode="А" +d="M12 0l566 1411h190l563 -1411h-274l-109 307h-549l-110 -307h-277zM485 524h377l-188 514z" /> + <glyph glyph-name="uni0411" unicode="Б" horiz-adv-x="1274" +d="M182 0v1411h824v-229h-570v-338h301q230 0 343.5 -118.5t113.5 -315.5q0 -127 -66 -222t-169.5 -141.5t-225.5 -46.5h-551zM436 242h301q100 0 153.5 49t53.5 147q0 78 -60 132.5t-157 54.5h-291v-383z" /> + <glyph glyph-name="uni0412" unicode="В" horiz-adv-x="1274" +d="M182 0v1413h490q67 0 129.5 -12t122 -41t103.5 -71.5t70.5 -108.5t26.5 -148q0 -91 -46 -166t-111 -110q96 -38 161.5 -138.5t65.5 -207.5q0 -127 -66 -222t-169.5 -141.5t-225.5 -46.5h-551zM436 844h260q195 0 195 174q0 80 -60 123t-155 43h-240v-340zM436 242h301 +q100 0 153.5 49t53.5 147q0 78 -60 132.5t-157 54.5h-291v-383z" /> + <glyph glyph-name="uni0413" unicode="Г" horiz-adv-x="1065" +d="M182 0v1411h862v-233h-608v-1178h-254z" /> + <glyph glyph-name="uni0414" unicode="Д" horiz-adv-x="1477" +d="M20 -307v530h150l471 1190h190l474 -1190h151v-530h-254v307h-928v-307h-254zM444 223h582l-291 778z" /> + <glyph glyph-name="uni0415" unicode="Е" horiz-adv-x="1245" +d="M182 0v1413h940v-233h-686v-357h639v-233h-639v-350h686v-240h-940z" /> + <glyph glyph-name="uni0416" unicode="Ж" horiz-adv-x="2093" +d="M25 0l262 588q112 246 231 246l-422 577h340l334 -510h150v510h254v-510h149l334 510h340l-422 -577q119 0 231 -246l262 -588h-315l-166 473q-15 44 -36 83t-62.5 73.5t-89.5 34.5h-225v-664h-254v664h-226q-48 0 -89.5 -34.5t-62.5 -73.5t-36 -83l-166 -473h-315z" /> + <glyph glyph-name="uni0417" unicode="З" horiz-adv-x="1114" +d="M506 -20q-149 0 -272.5 54.5t-188.5 158.5l203 135q59 -121 258 -121q117 0 194.5 58t77.5 161t-75.5 159t-196.5 56h-131l-2 217h139q90 0 147.5 46.5t57.5 123.5q0 81 -57.5 127.5t-149.5 46.5q-77 0 -133 -33t-68 -94h-252q8 111 74 194t164 124t213 41q119 0 220 -44 +t165.5 -133.5t64.5 -207.5q0 -100 -42 -174t-119 -111q45 -14 84.5 -41t74 -68.5t54.5 -105t20 -139.5q0 -106 -43.5 -190t-117.5 -135.5t-166.5 -78t-196.5 -26.5z" /> + <glyph glyph-name="uni0418" unicode="И" horiz-adv-x="1454" +d="M1272 0h-244v991l-592 -991h-254v1413h244v-989l594 989h252v-1413z" /> + <glyph glyph-name="uni0419" unicode="Й" horiz-adv-x="1491" +d="M758 1554q-316 0 -316 271h172q0 -63 40 -95t104 -32q65 0 104 33t39 94h172q0 -271 -315 -271zM1014 1411h295v-1411h-254v1049v27l-578 -1076h-295v1411h254v-1018v-58z" /> + <glyph glyph-name="uni041A" unicode="К" horiz-adv-x="1352" +d="M182 0v1411h254v-510h150l334 510h340l-422 -577q119 0 231 -246l262 -588h-315l-166 473q-11 32 -26 61t-38 60.5t-55 50.5t-69 19h-226v-664h-254z" /> + <glyph glyph-name="uni041B" unicode="Л" +d="M12 0l563 1413h191l565 -1413h-280l-381 1001l-379 -1001h-279z" /> + <glyph glyph-name="uni041C" unicode="М" horiz-adv-x="1798" +d="M182 0v1413h342l375 -1005l375 1005h342v-1413h-244v1057l-350 -934h-246l-350 934v-1057h-244z" /> + <glyph glyph-name="uni041D" unicode="Н" horiz-adv-x="1491" +d="M182 0v1413h254v-590h619v590h254v-1413h-254v590h-619v-590h-254z" /> + <glyph glyph-name="uni041E" unicode="О" horiz-adv-x="1528" +d="M764 -20q-136 0 -249.5 38.5t-192.5 106t-134 160t-80.5 199t-25.5 223.5t25.5 223.5t80.5 199t134 160t192.5 106t249.5 38.5t249.5 -38.5t192.5 -106t134 -160t80.5 -199t25.5 -223.5t-25.5 -223.5t-80.5 -199t-134 -160t-192.5 -106t-249.5 -38.5zM764 205 +q88 0 159 27t118 73t78.5 110.5t45 136.5t13.5 155q0 82 -13.5 154.5t-45 136.5t-78.5 110t-118 73t-159 27t-159 -27t-118 -73t-78.5 -110t-45 -136.5t-13.5 -154.5q0 -83 13.5 -155t45 -136.5t78.5 -110.5t118 -73t159 -27z" /> + <glyph glyph-name="uni041F" unicode="П" horiz-adv-x="1491" +d="M182 0v1411h1127v-1411h-254v1178h-619v-1178h-254z" /> + <glyph glyph-name="uni0420" unicode="Р" horiz-adv-x="1167" +d="M182 0v1411h443q221 0 360 -111t139 -305q0 -193 -138.5 -301t-360.5 -108h-191v-586h-252zM434 823h191q128 0 187.5 43t59.5 129q0 179 -247 179h-191v-351z" /> + <glyph glyph-name="uni0421" unicode="С" horiz-adv-x="1432" +d="M766 -20q-169 0 -302 58.5t-215 160t-124.5 231t-42.5 277.5q0 118 26 224.5t80.5 199t134 160.5t192.5 106.5t249 38.5q211 0 372 -104.5t246 -301.5l-237 -94q-74 258 -383 258q-109 0 -192.5 -37.5t-134 -103.5t-76 -150.5t-25.5 -185.5q0 -108 25.5 -196.5 +t76.5 -156.5t135 -105.5t195 -37.5q140 0 233.5 61.5t149.5 200.5l235 -96q-83 -197 -244.5 -302t-373.5 -105z" /> + <glyph glyph-name="uni0422" unicode="Т" horiz-adv-x="1180" +d="M463 0v1184h-443v227h1139v-227h-442v-1184h-254z" /> + <glyph glyph-name="uni0423" unicode="У" horiz-adv-x="1110" +d="M219 0l193 457l-400 954h269l266 -676l282 676h269l-613 -1411h-266z" /> + <glyph glyph-name="uni0424" unicode="Ф" horiz-adv-x="1782" +d="M764 0v102q-166 0 -296.5 45t-214.5 126t-127.5 190.5t-43.5 241.5t44 242t127.5 191.5t214.5 127t296 45.5v100h254v-100q165 0 296 -45.5t214.5 -127t127.5 -191.5t44 -242t-44 -241.5t-128 -190.5t-214.5 -126t-295.5 -45v-102h-254zM764 328v757q-196 0 -305 -104 +t-109 -276t109 -274.5t305 -102.5zM1018 328q196 0 305 102.5t109 274.5t-109 276t-305 104v-757z" /> + <glyph glyph-name="uni0425" unicode="Х" +d="M25 0l473 707l-471 706h303l342 -545l342 545h303l-471 -706l473 -707h-303l-346 537l-342 -537h-303z" /> + <glyph glyph-name="uni0426" unicode="Ц" horiz-adv-x="1528" +d="M1206 -307v307h-1024v1411h254v-1178h619v1178h254v-1178h151v-540h-254z" /> + <glyph glyph-name="uni0427" unicode="Ч" horiz-adv-x="1352" +d="M915 0v481q-140 -71 -286 -71q-275 0 -408 150.5t-133 420.5v430h254v-401q0 -182 62 -268.5t225 -86.5q181 0 286 119v637h254v-1411h-254z" /> + <glyph glyph-name="uni0428" unicode="Ш" horiz-adv-x="1802" +d="M182 0v1411h254v-1178h338v1178h254v-1178h338v1178h254v-1411h-1438z" /> + <glyph glyph-name="uni0429" unicode="Щ" horiz-adv-x="1839" +d="M1518 -307v307h-1336v1411h254v-1178h338v1178h254v-1178h338v1178h254v-1178h152v-540h-254z" /> + <glyph glyph-name="uni042A" unicode="Ъ" horiz-adv-x="1405" +d="M420 0v1184h-400v227h652v-586h190q223 0 361.5 -108t138.5 -301q0 -194 -139 -305t-361 -111h-442zM672 238h190q248 0 248 178q0 86 -60 129t-188 43h-190v-350z" /> + <glyph glyph-name="uni042B" unicode="Ы" horiz-adv-x="1745" +d="M182 0v1411h252v-586h191q222 0 360.5 -108t138.5 -301q0 -194 -139 -305t-360 -111h-443zM1309 0v1411h254v-1411h-254zM434 238h191q247 0 247 178q0 86 -59.5 129t-187.5 43h-191v-350z" /> + <glyph glyph-name="uni042C" unicode="Ь" horiz-adv-x="1167" +d="M182 0v1411h252v-586h191q222 0 360.5 -108t138.5 -301q0 -194 -139 -305t-360 -111h-443zM434 238h191q247 0 247 178q0 86 -59.5 129t-187.5 43h-191v-350z" /> + <glyph glyph-name="uni042D" unicode="Э" horiz-adv-x="1432" +d="M666 -20q-212 0 -373.5 105t-245.5 302l236 96q55 -139 148.5 -200.5t234.5 -61.5q184 0 289 99t132 270h-565v233h568q-25 168 -130 269.5t-290 101.5q-309 0 -383 -258l-238 94q86 197 246.5 301.5t372.5 104.5q136 0 249 -38.5t192.5 -106.5t134 -160.5t80.5 -199 +t26 -224.5t-26 -224.5t-81.5 -199t-135 -159.5t-192.5 -105.5t-249 -38.5z" /> + <glyph glyph-name="uni042E" unicode="Ю" horiz-adv-x="2005" +d="M1241 -20q-153 0 -276.5 47.5t-205 132t-130.5 193t-64 237.5h-129v-590h-254v1411h254v-588h129q15 128 64 237t130.5 193.5t205 132.5t276.5 48q136 0 249.5 -38.5t192.5 -106t134 -160t80.5 -199t25.5 -223.5t-25.5 -223.5t-80.5 -199t-134 -160t-192.5 -106 +t-249.5 -38.5zM1241 205q88 0 159 27t118 73t78.5 110.5t45 136.5t13.5 155q0 82 -13.5 154.5t-45 136.5t-78.5 110t-118 73t-159 27t-159 -27t-118 -73t-78.5 -110t-45 -136.5t-13.5 -154.5q0 -83 13.5 -155t45 -136.5t78.5 -110.5t118 -73t159 -27z" /> + <glyph glyph-name="uni042F" unicode="Я" horiz-adv-x="1268" +d="M1086 -2h-254v606h-170l-348 -606h-291l393 631q-124 43 -200 140.5t-76 227.5q0 97 39 176.5t106.5 131.5t155.5 80t188 28h457v-1415zM830 811v375h-203q-108 0 -172 -52.5t-64 -140.5q0 -80 57 -129t158 -53h224z" /> + <glyph glyph-name="uni0430" unicode="а" horiz-adv-x="1061" +d="M418 -20q-159 0 -261 87t-102 240q0 64 20 113.5t55 82t86 54t109 30.5t128 9h260q0 97 -51 154t-146 57q-80 0 -139.5 -39.5t-95.5 -101.5l-187 135q160 219 420 219q201 0 316.5 -114t115.5 -300v-606h-201l-16 143q-112 -163 -311 -163zM453 186q104 0 180.5 70 +t79.5 164h-246q-79 0 -120.5 -35t-41.5 -86t39 -82t109 -31z" /> + <glyph glyph-name="uni0431" unicode="б" horiz-adv-x="1192" +d="M688 961q222 0 336.5 -129t114.5 -336q0 -141 -65 -258.5t-186 -187.5t-272 -70q-237 0 -379.5 141.5t-142.5 394.5v168q0 372 219 547q54 41 122 73t152.5 55t148.5 36.5t163 31.5q26 5 39 7v-240q-124 -14 -266 -51t-193 -62q-33 -16 -53 -28t-44 -36t-37.5 -54 +t-24 -78.5t-11.5 -112.5q59 86 158 137.5t221 51.5zM616 190q120 0 189 79.5t69 205.5q0 129 -62.5 202t-195.5 73q-77 0 -138 -43.5t-90.5 -105.5t-29.5 -126q0 -131 63 -208t195 -77z" /> + <glyph glyph-name="uni0432" unicode="в" horiz-adv-x="1192" +d="M629 -20q-103 0 -195 27t-165.5 78.5t-116.5 135.5t-43 189v557q0 467 522 467q118 0 214.5 -44t156 -133t59.5 -208q0 -83 -35 -157.5t-98 -127.5q184 -108 184 -354q0 -107 -37 -190.5t-103.5 -135t-153 -78t-189.5 -26.5zM629 207q112 0 171.5 56t59.5 163 +q0 217 -231 217q-51 0 -85.5 -10t-80.5 -35v219q57 41 172 41q88 0 136 45.5t48 124.5q0 83 -48.5 128.5t-137.5 45.5q-29 0 -50 -1.5t-52 -7.5t-53 -18t-46.5 -34.5t-40 -54t-25.5 -80t-10 -109.5v-471q0 -103 78 -161t195 -58z" /> + <glyph glyph-name="uni0433" unicode="г" horiz-adv-x="907" +d="M453 -20q-58 0 -113 12t-105.5 39t-88.5 65t-60.5 94t-22.5 123q0 75 28 131t73 88.5t99 55.5t108 37.5t99 28.5t73 35.5t28 51.5q0 36 -35 58t-94 22q-130 0 -198 -121l-174 95q54 96 149.5 157.5t224.5 61.5q69 0 132 -18.5t115 -54.5t83 -96t31 -136 +q0 -71 -27.5 -123.5t-72 -81.5t-98 -49.5t-107 -33.5t-98 -26.5t-72 -36.5t-27.5 -57q0 -46 42 -82.5t120 -36.5q151 0 213 164l194 -86q-38 -120 -152 -200t-267 -80z" /> + <glyph glyph-name="uni0434" unicode="д" horiz-adv-x="1155" +d="M1010 0q0 -205 -123.5 -321.5t-345.5 -116.5q-291 0 -445 215l187 135q32 -58 99.5 -97.5t162.5 -39.5q219 0 219 225v121q-98 -121 -281 -121q-135 0 -235 72.5t-148.5 186.5t-48.5 251q0 101 28.5 192t81.5 162.5t135.5 113.5t182.5 42q84 0 159.5 -30t125.5 -91v100 +h246v-999zM543 225q120 0 180.5 79t60.5 206t-60.5 208t-180.5 81t-182 -82t-62 -207q0 -126 62 -205.5t182 -79.5z" /> + <glyph glyph-name="uni0435" unicode="е" horiz-adv-x="1067" +d="M561 -20q-125 0 -223.5 42.5t-159 115t-92 164t-31.5 194.5q0 100 30 192t87.5 167t154 120t218.5 45q101 0 182 -31.5t132.5 -81.5t86 -117.5t48.5 -135t14 -138.5t-9 -96h-686q35 -219 250 -219q145 0 240 106l168 -147q-162 -180 -410 -180zM313 596h455 +q-12 106 -70.5 162.5t-154.5 56.5q-190 0 -230 -219z" /> + <glyph glyph-name="uni0436" unicode="ж" horiz-adv-x="1530" +d="M10 0l176 455q27 57 72.5 107t95.5 50l-293 387h283l234 -356h65v768h244v-768h65l234 356h282l-292 -387q50 0 95.5 -50.5t71.5 -106.5l177 -455h-289l-121 352q-37 111 -131 111h-92v-463h-244v463h-92q-94 0 -131 -111l-121 -352h-289z" /> + <glyph glyph-name="uni0437" unicode="з" horiz-adv-x="1018" +d="M426 -442q-131 0 -254.5 62.5t-181.5 178.5l211 152q18 -77 85.5 -121.5t139.5 -44.5q117 0 194.5 58t77.5 161q0 97 -47 157t-143 60h-186v215h192q164 0 164 170q0 81 -57.5 127.5t-149.5 46.5q-78 0 -138.5 -43.5t-113.5 -144.5l-235 110q71 168 188 239t297 71 +q119 0 220 -44t166 -133.5t65 -207.5q0 -193 -175 -285q116 -53 160.5 -140.5t44.5 -213.5q0 -106 -43.5 -190t-117.5 -135.5t-166.5 -78t-196.5 -26.5z" /> + <glyph glyph-name="uni0438" unicode="и" horiz-adv-x="1167" +d="M479 -20q-184 0 -274 130t-90 363v526h247v-534q0 -134 38 -199t143 -65q47 0 85 14.5t72.5 50.5t54 107.5t19.5 175.5v450h248v-999h-248v117q-105 -137 -295 -137z" /> + <glyph glyph-name="uni0439" unicode="й" horiz-adv-x="1198" +d="M606 1143q-315 0 -315 270h172q0 -63 39.5 -95t103.5 -32q65 0 104.5 33t39.5 94h172q0 -270 -316 -270zM516 -23q-95 0 -168 37t-116.5 99.5t-65 138.5t-21.5 160v587h248v-575q0 -102 35.5 -158.5t124.5 -56.5q101 0 176.5 71.5t75.5 165.5v553h248v-999h-248v117 +q-53 -69 -129 -104.5t-160 -35.5z" /> + <glyph glyph-name="uni043A" unicode="к" horiz-adv-x="1038" +d="M145 0v1411h244v-768h66l233 356h283l-293 -387q27 0 54 -16t49 -41.5t37.5 -50.5t27.5 -49l176 -455h-289l-121 352q-37 111 -131 111h-92v-463h-244z" /> + <glyph glyph-name="uni043B" unicode="л" horiz-adv-x="999" +d="M-8 0l407 999h201l408 -999h-267l-241 684l-244 -684h-264z" /> + <glyph glyph-name="uni043C" unicode="м" horiz-adv-x="1470" +d="M145 0v999h306l286 -708l281 710h307v-1001h-223v686l-277 -686h-178l-278 684v-684h-224z" /> + <glyph glyph-name="uni043D" unicode="н" horiz-adv-x="1198" +d="M145 0v999h248v-354h412v354h248v-999h-248v463h-412v-463h-248z" /> + <glyph glyph-name="uni043E" unicode="о" horiz-adv-x="1128" +d="M563 -20q-113 0 -210 42t-162.5 113t-102.5 166t-37 201q0 141 62.5 258.5t181 188.5t268.5 71t268.5 -71t181 -188.5t62.5 -258.5q0 -106 -37 -201t-102.5 -166t-162.5 -113t-210 -42zM563 190q130 0 194 88.5t64 223.5q0 86 -25 153t-84.5 110.5t-148.5 43.5 +q-130 0 -194 -86.5t-64 -220.5q0 -86 25 -154t85 -113t148 -45z" /> + <glyph glyph-name="uni043F" unicode="п" horiz-adv-x="1167" +d="M145 0v999h248v-116q109 133 289 133q76 0 138.5 -23.5t104.5 -63t71 -93t42 -113t13 -123.5v-600h-248v569q0 103 -35.5 161t-124.5 58q-100 0 -175 -73t-75 -168v-547h-248z" /> + <glyph glyph-name="uni0440" unicode="р" horiz-adv-x="1159" +d="M145 -438v1437h248v-100q100 121 287 121q99 0 181 -42.5t134.5 -114.5t81.5 -165.5t29 -197.5q0 -105 -29 -198.5t-81.5 -165.5t-134.5 -114t-181 -42q-189 0 -287 120v-538h-248zM618 205q117 0 178.5 81.5t61.5 213.5q0 133 -61.5 217t-178.5 84t-177 -84t-60 -217 +t60 -214t177 -81z" /> + <glyph glyph-name="uni0441" unicode="с" horiz-adv-x="1004" +d="M541 -20q-118 0 -212.5 43.5t-152.5 116.5t-88.5 165t-30.5 193t30 192.5t88 166t152 119t212 44.5q152 0 264 -74.5t168 -220.5l-232 -90q-20 74 -73.5 119t-126.5 45q-49 0 -89 -17t-66.5 -46t-44.5 -68t-26 -81.5t-8 -88.5q0 -59 13 -110.5t40 -94.5t73.5 -67.5 +t107.5 -24.5q72 0 126 43.5t74 115.5l222 -84q-50 -140 -161 -218t-259 -78z" /> + <glyph glyph-name="uni0442" unicode="т" horiz-adv-x="1743" +d="M145 0v999h246v-104q47 64 112.5 93.5t135.5 29.5q184 0 287 -154q57 75 144 113.5t185 38.5q76 0 138.5 -23.5t105 -63t71.5 -93t42.5 -113t13.5 -123.5v-600h-248v569q0 222 -161 222q-96 0 -152.5 -69.5t-56.5 -172.5v-549h-248v573q0 48 -7.5 85.5t-24.5 68.5 +t-49.5 47.5t-78.5 16.5q-95 0 -152 -69.5t-57 -172.5v-549h-246z" /> + <glyph glyph-name="uni0443" unicode="у" horiz-adv-x="1032" +d="M201 -430l184 457l-391 972h268l252 -694l256 694h268l-571 -1429h-266z" /> + <glyph glyph-name="uni0444" unicode="ф" horiz-adv-x="1497" +d="M627 -430v414q-34 -4 -54 -4q-151 0 -271.5 70t-185.5 187.5t-65 258.5q0 105 38.5 199.5t106 164.5t166 111t211.5 41q9 -1 27 -2t27 -2v403h243v-403q34 4 54 4q113 0 211.5 -41t166 -111t106 -164.5t38.5 -199.5q0 -141 -65 -258.5t-185.5 -187.5t-271.5 -70 +q-20 0 -54 4v-414h-243zM573 190q37 0 54 5v602q-34 4 -54 4q-130 0 -194 -86t-64 -219q0 -134 64 -220t194 -86zM924 190q130 0 194 86t64 220q0 133 -64 219t-194 86q-20 0 -54 -4v-602q17 -5 54 -5z" /> + <glyph glyph-name="uni0445" unicode="х" horiz-adv-x="1030" +d="M10 0l342 504l-342 495h297l207 -329l207 329h299l-344 -495l344 -504h-299l-207 336l-207 -336h-297z" /> + <glyph glyph-name="uni0446" unicode="ц" horiz-adv-x="1198" +d="M926 -307v284q-48 0 -92.5 39t-59.5 101q-53 -69 -129 -104.5t-160 -35.5q-95 0 -168 37t-116 99.5t-64.5 138.5t-21.5 160v587h247v-575q0 -102 35.5 -158.5t124.5 -56.5q101 0 176.5 71.5t75.5 165.5v553h248v-755q0 -69 42.5 -107.5t109.5 -38.5l-41 -405h-207z" /> + <glyph glyph-name="uni0447" unicode="ч" horiz-adv-x="1116" +d="M723 0v381q-52 -69 -128.5 -104t-160.5 -35q-95 0 -168 37t-116.5 99.5t-65 138t-21.5 159.5v323h248v-311q0 -102 35.5 -158.5t124.5 -56.5q101 0 176.5 72t75.5 166v288h248v-999h-248z" /> + <glyph glyph-name="uni0448" unicode="ш" horiz-adv-x="1772" +d="M1133 -18q-186 0 -287 153q-57 -74 -144.5 -112.5t-185.5 -38.5q-94 0 -167 35t-116.5 94.5t-65.5 132t-22 153.5v600h248v-569q0 -221 162 -221q96 0 152.5 69t56.5 173v548h248v-573q0 -48 7 -85t24.5 -68t49.5 -47.5t78 -16.5q96 0 152.5 69t56.5 173v548h246v-999 +h-246v104q-88 -122 -247 -122z" /> + <glyph glyph-name="uni0449" unicode="щ" horiz-adv-x="1772" +d="M1499 -307v284q-48 0 -92.5 39t-58.5 101q-48 -66 -113.5 -100.5t-132.5 -34.5q-184 0 -287 153q-57 -74 -144.5 -112.5t-185.5 -38.5q-94 0 -167 35t-116 94.5t-65 132t-22 153.5v600h247v-569q0 -221 162 -221q96 0 152.5 69t56.5 173v548h248v-573q0 -101 35.5 -159 +t124.5 -58q96 0 152.5 69t56.5 173v548h245v-755q0 -69 42.5 -107.5t109.5 -38.5l-41 -405h-207z" /> + <glyph glyph-name="uni044A" unicode="ъ" horiz-adv-x="1223" +d="M688 -20q-219 0 -330.5 124.5t-111.5 341.5v369h-250v184h475v-260q121 88 250 88q222 0 335 -116.5t113 -307.5q0 -186 -127.5 -304.5t-353.5 -118.5zM688 190q104 0 160.5 59t56.5 154q0 84 -58 148.5t-159 64.5t-159 -56.5t-58 -143.5v-13q0 -95 56.5 -154t160.5 -59z +" /> + <glyph glyph-name="uni044B" unicode="ы" horiz-adv-x="1487" +d="M592 -20q-219 0 -330.5 124.5t-111.5 341.5v553h225v-260q121 88 250 88q222 0 335 -116.5t113 -307.5q0 -186 -127.5 -304.5t-353.5 -118.5zM1208 0v999h226v-999h-226zM592 190q104 0 160.5 59t56.5 154q0 84 -58 148.5t-159 64.5t-159 -56.5t-58 -143.5v-13 +q0 -95 56.5 -154t160.5 -59z" /> + <glyph glyph-name="uni044C" unicode="ь" horiz-adv-x="1126" +d="M582 -20q-220 0 -331.5 124.5t-111.5 341.5v553h226v-260q119 88 249 88q223 0 336 -116.5t113 -307.5q0 -186 -127.5 -304.5t-353.5 -118.5zM582 190q104 0 160.5 59t56.5 154q0 84 -58 148.5t-159 64.5q-102 0 -159.5 -56.5t-57.5 -143.5v-13q0 -95 56 -154t161 -59z +" /> + <glyph glyph-name="uni044D" unicode="э" horiz-adv-x="999" +d="M463 -20q-149 0 -259.5 78t-160.5 218l221 84q20 -70 73.5 -110.5t127.5 -40.5q95 0 150 52.5t73 139.5h-348v183h350q-16 90 -72.5 146t-152.5 56q-75 0 -128 -39.5t-73 -111.5l-231 90q58 135 171.5 213t260.5 78q95 0 175 -29t135.5 -78t94.5 -115.5t57.5 -141 +t18.5 -154.5q0 -101 -30.5 -193t-88.5 -165t-152 -116.5t-212 -43.5z" /> + <glyph glyph-name="uni044E" unicode="ю" horiz-adv-x="1602" +d="M1026 -20q-109 0 -204 38t-162.5 103t-108.5 153.5t-47 188.5h-111v-463h-248v1413h248v-768h131q46 163 181 265t321 102q113 0 211.5 -41t166 -111t106 -164.5t38.5 -199.5q0 -141 -65 -258.5t-185.5 -187.5t-271.5 -70zM1026 190q130 0 194 86t64 220q0 133 -64 219 +t-194 86t-194 -86t-64 -219q0 -134 64 -220t194 -86z" /> + <glyph glyph-name="uni044F" unicode="я" horiz-adv-x="1075" +d="M53 0l107 291q26 57 71.5 107.5t96.5 50.5q-39 11 -64 20t-60.5 29.5t-56 45.5t-36 68t-15.5 97q0 41 10 79t38.5 77.5t72.5 68t118.5 47t170.5 18.5h424v-999h-244v401h-92q-94 0 -131 -110l-121 -291h-289zM465 582h221v202h-225q-54 0 -82.5 -30t-28.5 -68 +q0 -44 28 -74t87 -30z" /> + <glyph glyph-name="uni0450" unicode="ѐ" horiz-adv-x="1067" +d="M461 1104l-308 309h260l226 -309h-178zM561 -20q-125 0 -223.5 42.5t-159 115t-92 164t-31.5 194.5q0 100 30 192t87.5 167t154 120t218.5 45q101 0 182 -31.5t132.5 -81.5t86 -117.5t48.5 -135t14 -138.5t-9 -96h-686q35 -219 250 -219q145 0 240 106l168 -147 +q-162 -180 -410 -180zM313 596h455q-12 106 -70.5 162.5t-154.5 56.5q-190 0 -230 -219z" /> + <glyph glyph-name="uni0451" unicode="ё" horiz-adv-x="1067" +d="M245 1188v225h205v-225h-205zM600 1188v225h204v-225h-204zM561 -20q-125 0 -223.5 42.5t-159 115t-92 164t-31.5 194.5q0 100 30 192t87.5 167t154 120t218.5 45q101 0 182 -31.5t132.5 -81.5t86 -117.5t48.5 -135t14 -138.5t-9 -96h-686q35 -219 250 -219 +q145 0 240 106l168 -147q-162 -180 -410 -180zM313 596h455q-12 106 -70.5 162.5t-154.5 56.5q-190 0 -230 -219z" /> + <glyph glyph-name="uni0452" unicode="ђ" horiz-adv-x="1165" +d="M610 -438q-130 0 -250 67l107 199q61 -35 139 -35q97 0 146 71.5t49 186.5v522q0 100 -35.5 154.5t-124.5 54.5q-63 0 -117 -27t-90.5 -88t-36.5 -147v-520h-250v1128h-147v164h147v121h250v-121h238v-164h-238v-235q102 129 262 129q103 0 180.5 -37t122 -100.5 +t66 -138.5t21.5 -160v-451q0 -302 -107.5 -437.5t-331.5 -135.5z" /> + <glyph glyph-name="uni0453" unicode="ѓ" horiz-adv-x="795" +d="M319 1124l226 289h260l-307 -289h-179zM139 0v999h660v-182h-412v-817h-248z" /> + <glyph glyph-name="uni0454" unicode="є" horiz-adv-x="997" +d="M535 -20q-118 0 -212.5 43.5t-152.5 116.5t-88.5 165t-30.5 193q0 80 18.5 154.5t57.5 141t95 116t135.5 78t174.5 28.5q147 0 261 -78t172 -213l-232 -90q-19 72 -72 111.5t-129 39.5q-96 0 -152 -55.5t-73 -146.5h350v-183h-348q19 -87 74 -139.5t149 -52.5 +q74 0 128 40.5t73 110.5l221 -84q-49 -139 -159.5 -217.5t-259.5 -78.5z" /> + <glyph glyph-name="uni0455" unicode="ѕ" horiz-adv-x="901" +d="M446 -20q-153 0 -267 80t-152 200l194 86q61 -164 213 -164q78 0 120 36.5t42 82.5q0 34 -27.5 57t-72 36.5t-98 26.5t-107 33.5t-98 49.5t-72 81.5t-27.5 123.5q0 76 31 136t83 96t115 54.5t132 18.5q129 0 224.5 -61.5t149.5 -157.5l-174 -95q-66 121 -198 121 +q-59 0 -94 -22t-35 -58q0 -30 28 -51.5t73 -35.5t99 -28.5t108 -37.5t99 -55.5t73 -88.5t28 -131q0 -67 -22.5 -123t-60.5 -94t-88.5 -65t-105.5 -39t-113 -12z" /> + <glyph glyph-name="uni0456" unicode="і" horiz-adv-x="535" +d="M139 1186v225h256v-225h-256zM145 0v999h242v-999h-242z" /> + <glyph glyph-name="uni0457" unicode="ї" horiz-adv-x="516" +d="M-23 1155v195h205v-195h-205zM332 1155v195h205v-195h-205zM145 0v999h226v-999h-226z" /> + <glyph glyph-name="uni0458" unicode="ј" horiz-adv-x="543" +d="M150 1165v246h256v-246h-256zM100 -438q-37 0 -79.5 8t-66.5 16l-24 8l62 211q55 -14 100 -14q35 0 46.5 18.5t11.5 67.5v1122h245v-1103q0 -148 -73.5 -241t-221.5 -93z" /> + <glyph glyph-name="uni0459" unicode="љ" horiz-adv-x="1692" +d="M229 -20q-107 0 -217 55l66 155q29 -22 72 -22q94 0 94 444v387h784v-294h148q234 0 343 -81.5t109 -261.5q0 -182 -110 -272t-340 -90h-398v817h-288v-201q0 -241 -28 -380.5t-84 -197.5t-151 -58zM1028 211h148q86 0 135 33t49 118q0 132 -184 132h-148v-283z" /> + <glyph glyph-name="uni045A" unicode="њ" horiz-adv-x="1716" +d="M145 0v999h248v-354h412v354h248v-354h147q238 0 345.5 -71.5t107.5 -247.5q0 -178 -107 -252t-344 -74h-397v463h-412v-463h-248zM1053 211h147q44 0 73 3.5t56.5 15t41 35.5t13.5 61q0 30 -10 50.5t-24.5 31.5t-41 17t-49 7.5t-59.5 1.5h-147v-223z" /> + <glyph glyph-name="uni045B" unicode="ћ" horiz-adv-x="1169" +d="M684 1020q76 0 138.5 -23.5t104.5 -64t71 -94.5t42 -114t13 -124v-600h-248v569q0 50 -8 88.5t-26.5 72t-55.5 51.5t-90 18q-113 0 -171.5 -81t-58.5 -212v-506h-248v1108h-146v164h146v141h248v-141h241v-164h-241v-225q57 70 133.5 103.5t155.5 33.5z" /> + <glyph glyph-name="uni045C" unicode="ќ" horiz-adv-x="1032" +d="M416 1124l225 289h260l-307 -289h-178zM145 0v999h244v-356h66l233 356h283l-293 -387q27 0 54 -16t49 -41.5t37.5 -50.5t27.5 -49l176 -455h-289l-121 352q-37 111 -131 111h-92v-463h-244z" /> + <glyph glyph-name="uni045D" unicode="ѝ" horiz-adv-x="1198" +d="M541 1104l-308 309h261l225 -309h-178zM516 -23q-95 0 -168 37t-116.5 99.5t-65 138.5t-21.5 160v587h248v-575q0 -102 35.5 -158.5t124.5 -56.5q101 0 176.5 71.5t75.5 165.5v553h248v-999h-248v117q-53 -69 -129 -104.5t-160 -35.5z" /> + <glyph glyph-name="uni045E" unicode="ў" horiz-adv-x="1032" +d="M516 1143q-315 0 -315 270h172q0 -63 39.5 -95t103.5 -32q65 0 104 33t39 94h172q0 -270 -315 -270zM201 -430l184 457l-391 972h268l252 -694l256 694h268l-571 -1429h-266z" /> + <glyph glyph-name="uni045F" unicode="џ" horiz-adv-x="1198" +d="M475 -307v307h-330v999h248v-817h412v817h248v-999h-330v-307h-248z" /> + <glyph glyph-name="uni0462" unicode="Ѣ" horiz-adv-x="1233" +d="M248 0v1055h-213v233h213v123h252v-123h293v-233h-293v-230h190q223 0 361.5 -108t138.5 -301q0 -194 -139 -305t-361 -111h-442zM500 238h190q248 0 248 178q0 86 -60 129t-188 43h-190v-350z" /> + <glyph glyph-name="uni0463" unicode="ѣ" horiz-adv-x="1059" +d="M147 0v1128h-184v164h184v119h248v-119h283v-164h-283v-423h148q234 0 343 -81.5t109 -261.5q0 -182 -110 -272t-340 -90h-398zM395 211h148q86 0 135 33t49 118q0 132 -184 132h-148v-283z" /> + <glyph glyph-name="uni0464" unicode="Ѥ" horiz-adv-x="1937" +d="M1272 -20q-152 0 -276 47.5t-206 132t-131.5 193t-64.5 237.5h-158v-590h-254v1411h254v-588h158q15 129 64 238t131 194t205.5 133t275.5 48q211 0 372 -104.5t246 -301.5l-237 -94q-75 258 -383 258q-185 0 -290 -101.5t-130 -269.5h567v-233h-565q28 -171 133 -270 +t289 -99q140 0 233.5 61.5t149.5 200.5l235 -96q-83 -197 -244.5 -302t-373.5 -105z" /> + <glyph glyph-name="uni0465" unicode="ѥ" horiz-adv-x="1495" +d="M1032 -20q-104 0 -190 33.5t-143.5 92t-94 133.5t-49.5 162h-162v-401h-248v999h248v-415h162q12 88 47 164.5t92.5 137t143.5 95.5t192 35q147 0 260.5 -78t171.5 -213l-231 -90q-20 72 -73 111.5t-128 39.5q-96 0 -152.5 -56t-72.5 -146h350v-183h-348 +q18 -87 73 -139.5t150 -52.5q74 0 127.5 40.5t73.5 110.5l221 -84q-50 -140 -160.5 -218t-259.5 -78z" /> + <glyph glyph-name="uni0466" unicode="Ѧ" +d="M12 0l566 1411h190l563 -1411h-274l-109 307h-147v-307h-254v307h-148l-110 -307h-277zM485 524h377l-188 514z" /> + <glyph glyph-name="uni0467" unicode="ѧ" horiz-adv-x="975" +d="M12 0l381 999h191l379 -999h-234l-47 162h-107v-162h-172v162h-106l-49 -162h-236zM352 338h275l-138 371z" /> + <glyph glyph-name="uni0468" unicode="Ѩ" horiz-adv-x="1839" +d="M182 0v1411h254v-588h402l235 588h191l563 -1411h-275l-108 307h-148v-307h-254v307h-147l-111 -307h-276l235 590h-307v-590h-254zM981 524h377l-189 514z" /> + <glyph glyph-name="uni0469" unicode="ѩ" horiz-adv-x="1438" +d="M145 0v999h248v-415h303l160 415h191l378 -999h-233l-47 162h-107v-162h-172v162h-106l-49 -162h-236l152 401h-234v-401h-248zM815 338h275l-138 371z" /> + <glyph glyph-name="uni046A" unicode="Ѫ" horiz-adv-x="1581" +d="M27 0l200 588q18 51 49 104t81.5 97.5t101.5 44.5l-252 344v233h1136v-233l-249 -344q38 0 76 -25.5t67.5 -65.5t51 -78.5t36.5 -76.5l231 -588h-284l-166 473q-11 32 -26 61t-38 60.5t-55 50.5t-69 19h-15v-664h-254v664h-14q-37 0 -69.5 -19t-55.5 -50.5t-38 -60.5 +t-26 -61l-165 -473h-254zM778 838l244 340h-494z" /> + <glyph glyph-name="uni046B" unicode="ѫ" horiz-adv-x="1282" +d="M1094 455l176 -455h-289l-121 352q-27 84 -112 94v-446h-213v446q-43 -6 -70 -27t-43 -67l-121 -352h-289l176 455q16 34 25 50.5t29.5 47t43.5 45t50 14.5l-166 205v182h940v-182l-164 -205q27 0 50 -14.5t43.5 -45t29.5 -47t25 -50.5zM639 624l166 193h-320z" /> + <glyph glyph-name="uni046C" unicode="Ѭ" horiz-adv-x="2081" +d="M182 0v1411h254v-588h531l-260 355v233h1136v-233l-250 -344q38 0 76.5 -25.5t68 -65.5t51 -78.5t36.5 -76.5l231 -588h-284l-166 473q-11 32 -26 61t-38 60.5t-55.5 50.5t-69.5 19h-14v-664h-254v664h-14q-37 0 -69.5 -19t-55.5 -50.5t-38 -60.5t-26 -61l-166 -473h-254 +l174 510q2 6 12 35t15 45h-291v-590h-254zM1278 838l244 340h-494z" /> + <glyph glyph-name="uni046D" unicode="ѭ" horiz-adv-x="1722" +d="M1534 455l176 -455h-289l-121 352q-18 52 -44.5 74t-67.5 20v-446h-213v446q-43 0 -72.5 -29t-40.5 -65l-121 -352h-288l127 326q5 12 14 37.5t14 37.5h-215v-401h-248v999h248v-415h406l-189 233v182h940v-182l-164 -205q27 0 50 -14.5t43.5 -45t29.5 -47t25 -50.5z +M1080 624l165 193h-319z" /> + <glyph glyph-name="uni0472" unicode="Ѳ" horiz-adv-x="1528" +d="M764 -20q-136 0 -249.5 38.5t-192.5 106t-134 160t-80.5 199t-25.5 223.5t25.5 223.5t80.5 199t134 160t192.5 106t249.5 38.5t249.5 -38.5t192.5 -106t134 -160t80.5 -199t25.5 -223.5t-25.5 -223.5t-80.5 -199t-134 -160t-192.5 -106t-249.5 -38.5zM354 801h817 +q-9 87 -36.5 159t-75.5 128.5t-123 88t-172 31.5t-173 -31.5t-124 -88t-75.5 -128t-37.5 -159.5zM764 205q97 0 173 32t124 89t75.5 129.5t37.5 160.5h-820q9 -88 36.5 -160.5t76 -129.5t124.5 -89t173 -32z" /> + <glyph glyph-name="uni0473" unicode="ѳ" horiz-adv-x="1149" +d="M573 -20q-151 0 -271.5 70t-185.5 187.5t-65 258.5q0 105 38.5 199.5t106 164.5t166 111t211.5 41q114 0 212 -41t166 -111t106.5 -164.5t38.5 -199.5q0 -141 -65 -258.5t-186 -187.5t-272 -70zM324 588h497q-19 97 -80.5 155t-167.5 58t-168 -58t-81 -155zM573 190 +q105 0 167 58t81 155h-497q19 -97 81 -155t168 -58z" /> + <glyph glyph-name="uni0474" unicode="Ѵ" horiz-adv-x="1354" +d="M578 0l-566 1413h281l381 -1001l225 594q46 122 94.5 203t103 125t109.5 61.5t125 17.5v-233q-52 -14 -98 -69t-96 -181l-369 -930h-190z" /> + <glyph glyph-name="uni0475" unicode="ѵ" horiz-adv-x="999" +d="M399 0l-407 999h266l242 -684l118 334q29 81 66 141t71 94.5t82 59t82 34.5t89 21v-225q-37 -14 -57.5 -25t-47.5 -42t-47 -80l-256 -627h-201z" /> + <glyph glyph-name="uni0478" unicode="Ѹ" horiz-adv-x="2560" +d="M764 -20q-136 0 -249.5 38.5t-192.5 106t-134 160t-80.5 199t-25.5 223.5t25.5 223.5t80.5 199t134 160t192.5 106t249.5 38.5t249.5 -38.5t192.5 -106t134 -160t80.5 -199t25.5 -223.5t-25.5 -223.5t-80.5 -199t-134 -160t-192.5 -106t-249.5 -38.5zM764 205 +q88 0 159 27t118 73t78.5 110.5t45 136.5t13.5 155q0 82 -13.5 154.5t-45 136.5t-78.5 110t-118 73t-159 27t-159 -27t-118 -73t-78.5 -110t-45 -136.5t-13.5 -154.5q0 -83 13.5 -155t45 -136.5t78.5 -110.5t118 -73t159 -27zM1729 -430l184 457l-391 972h268l252 -694 +l256 694h268l-571 -1429h-266z" /> + <glyph glyph-name="uni0479" unicode="ѹ" horiz-adv-x="2113" +d="M563 -20q-113 0 -210 42t-162.5 113t-102.5 166t-37 201q0 141 62.5 258.5t181 188.5t268.5 71t268.5 -71t181 -188.5t62.5 -258.5q0 -106 -37 -201t-102.5 -166t-162.5 -113t-210 -42zM1282 -430l184 457l-391 972h268l252 -694l256 694h268l-571 -1429h-266zM563 190 +q130 0 194 88.5t64 223.5q0 86 -25 153t-84.5 110.5t-148.5 43.5q-130 0 -194 -86.5t-64 -220.5q0 -86 25 -154t85 -113t148 -45z" /> + <glyph glyph-name="uni0483" unicode="҃" horiz-adv-x="0" +d="M-975 1577v354h604v125h250v-356h-611v-123h-243z" /> + <glyph glyph-name="uni0490" unicode="Ґ" horiz-adv-x="1065" +d="M182 0v1411h609v307h253v-540h-608v-1178h-254z" /> + <glyph glyph-name="uni0491" unicode="ґ" horiz-adv-x="797" +d="M139 0v999h412v308h248v-490h-412v-817h-248z" /> + <glyph glyph-name="uni0492" unicode="Ғ" horiz-adv-x="1276" +d="M1253 1178h-608v-332h141v-213h-141v-633h-254v633h-363v213h363v565h862v-233z" /> + <glyph glyph-name="uni0493" unicode="ғ" horiz-adv-x="801" +d="M145 0v999h660v-182h-412v-817h-248z" /> + <glyph glyph-name="uni0496" unicode="Җ" horiz-adv-x="2093" +d="M1993 168h180v-406h-242v238h-178l-166 473q-15 44 -36 83t-62.5 73.5t-89.5 34.5h-225v-664h-254v664h-226q-48 0 -89.5 -34.5t-62.5 -73.5t-36 -83l-166 -473h-315l262 588q112 246 231 246l-422 577h340l334 -510h150v510h254v-510h149l334 510h340l-422 -577 +q119 0 231 -246z" /> + <glyph glyph-name="uni0497" unicode="җ" horiz-adv-x="1530" +d="M1455 168h186v-406h-242v238h-168l-121 352q-37 111 -131 111h-92v-463h-244v463h-92q-94 0 -131 -111l-121 -352h-289l176 455q27 57 72.5 107t95.5 50l-293 387h283l234 -356h65v356h244v-356h65l234 356h282l-292 -387q50 0 95.5 -50.5t71.5 -106.5z" /> + <glyph glyph-name="uni049A" unicode="Қ" horiz-adv-x="1352" +d="M1256 168h176v-406h-242v238h-174l-166 473q-11 32 -26 61t-38 60.5t-55 50.5t-69 19h-226v-664h-254v1411h254v-510h150l334 510h340l-422 -577q119 0 231 -246z" /> + <glyph glyph-name="uni049B" unicode="қ" horiz-adv-x="1038" +d="M957 168h186v-406h-242v238h-168l-121 352q-37 111 -131 111h-92v-463h-244v1411h244v-768h66l233 356h283l-293 -387q27 0 54 -16t49 -41.5t37.5 -50.5t27.5 -49z" /> + <glyph glyph-name="uni04A2" unicode="Ң" horiz-adv-x="1491" +d="M1309 168h180v-406h-242v238h-192v590h-619v-590h-254v1413h254v-590h619v590h254v-1245z" /> + <glyph glyph-name="uni04A3" unicode="ң" horiz-adv-x="1198" +d="M1053 168h225v-406h-242v238h-231v463h-412v-463h-248v999h248v-354h412v354h248v-831z" /> + <glyph glyph-name="uni04AE" unicode="Ү" horiz-adv-x="1319" +d="M528 0v551l-530 862h307l352 -618l355 618h309l-528 -862v-551h-265z" /> + <glyph glyph-name="uni04AF" unicode="ү" horiz-adv-x="1012" +d="M385 0v428l-387 571h285l223 -352l223 352h285l-387 -571v-428h-242z" /> + <glyph glyph-name="uni04B0" unicode="Ұ" horiz-adv-x="1319" +d="M793 551v-74h102v-213h-102v-264h-265v264h-391v213h391v74l-530 862h307l352 -618l355 618h309z" /> + <glyph glyph-name="uni04B1" unicode="ұ" horiz-adv-x="1079" +d="M627 428v-55h170v-213h-170v-160h-242v160h-346v213h346v55l-387 571h285l223 -352l223 352h285z" /> + <glyph glyph-name="uni04B2" unicode="Ҳ" +d="M1207 168h217v-406h-242v238h-166l-346 537l-342 -537h-303l473 707l-471 706h303l342 -545l342 545h303l-471 -706z" /> + <glyph glyph-name="uni04B3" unicode="ҳ" horiz-adv-x="1030" +d="M905 168h236v-406h-242v238h-178l-207 336l-207 -336h-297l342 504l-342 495h297l207 -329l207 329h299l-344 -495z" /> + <glyph glyph-name="uni04B6" unicode="Ҷ" horiz-adv-x="1352" +d="M1169 168h201v-406h-242v238h-213v481q-140 -71 -286 -71q-275 0 -408 150.5t-133 420.5v430h254v-401q0 -182 62 -268.5t225 -86.5q181 0 286 119v637h254v-1243z" /> + <glyph glyph-name="uni04B7" unicode="ҷ" horiz-adv-x="1116" +d="M971 168h205v-406h-242v238h-211v381q-52 -69 -128.5 -104t-160.5 -35q-95 0 -168 37t-116.5 99.5t-65 138t-21.5 159.5v323h248v-311q0 -102 35.5 -158.5t124.5 -56.5q101 0 176.5 72t75.5 166v288h248v-831z" /> + <glyph glyph-name="uni04BA" unicode="Һ" horiz-adv-x="1352" +d="M437 1413v-481q140 71 286 71q275 0 408 -150.5t133 -420.5v-430h-254v401q0 182 -62 268.5t-225 86.5q-181 0 -286 -119v-637h-254v1411h254z" /> + <glyph glyph-name="uni04BB" unicode="һ" horiz-adv-x="1169" +d="M147 0v1413h248v-530q57 70 133.5 103.5t155.5 33.5q76 0 138.5 -23.5t104.5 -64t71 -94.5t42 -114t13 -124v-600h-248v569q0 50 -8 88.5t-26.5 72t-55.5 51.5t-90 18q-113 0 -171.5 -81t-58.5 -212v-506h-248z" /> + <glyph glyph-name="uni04C0" unicode="Ӏ" horiz-adv-x="618" +d="M182 0v1411h254v-1411h-254z" /> + <glyph glyph-name="uni04CF" unicode="ӏ" horiz-adv-x="535" +d="M145 0v1411h244v-1411h-244z" /> + <glyph glyph-name="uni04D8" unicode="Ә" horiz-adv-x="1528" +d="M764 -20q-136 0 -249.5 38.5t-192.5 106t-134 160t-80.5 199t-25.5 223.5q0 51 4 94h1085q-9 87 -36.5 159t-75.5 128.5t-123 88t-172 31.5q-230 0 -336 -174l-223 123q86 130 227 203.5t332 73.5q136 0 249.5 -38.5t192.5 -106t134 -160t80.5 -199t25.5 -223.5 +t-25.5 -223.5t-80.5 -199t-134 -160t-192.5 -106t-249.5 -38.5zM764 205q97 0 173 32t124 89t75.5 129.5t37.5 160.5h-820q9 -88 36.5 -160.5t76 -129.5t124.5 -89t173 -32z" /> + <glyph glyph-name="uni04D9" unicode="ә" horiz-adv-x="1067" +d="M506 1019q125 0 223.5 -42.5t159 -115t92 -164t31.5 -194.5q0 -100 -30 -192t-87.5 -167t-154 -120t-218.5 -45q-101 0 -182 31.5t-132.5 81.5t-86 117.5t-48.5 135t-14 138.5t9 96h686q-35 219 -250 219q-145 0 -240 -106l-168 147q162 180 410 180zM754 403h-455 +q12 -106 70.5 -162.5t154.5 -56.5q190 0 230 219z" /> + <glyph glyph-name="uni04E2" unicode="Ӣ" horiz-adv-x="1454" +d="M446 1559v143h559v-143h-559zM1272 0h-244v991l-592 -991h-254v1413h244v-989l594 989h252v-1413z" /> + <glyph glyph-name="uni04E3" unicode="ӣ" horiz-adv-x="1167" +d="M294 1147v143h559v-143h-559zM479 -20q-184 0 -274 130t-90 363v526h247v-534q0 -134 38 -199t143 -65q47 0 85 14.5t72.5 50.5t54 107.5t19.5 175.5v450h248v-999h-248v117q-105 -137 -295 -137z" /> + <glyph glyph-name="uni04E8" unicode="Ө" horiz-adv-x="1528" +d="M764 -20q-136 0 -249.5 38.5t-192.5 106t-134 160t-80.5 199t-25.5 223.5t25.5 223.5t80.5 199t134 160t192.5 106t249.5 38.5t249.5 -38.5t192.5 -106t134 -160t80.5 -199t25.5 -223.5t-25.5 -223.5t-80.5 -199t-134 -160t-192.5 -106t-249.5 -38.5zM354 801h817 +q-9 87 -36.5 159t-75.5 128.5t-123 88t-172 31.5t-173 -31.5t-124 -88t-75.5 -128t-37.5 -159.5zM764 205q97 0 173 32t124 89t75.5 129.5t37.5 160.5h-820q9 -88 36.5 -160.5t76 -129.5t124.5 -89t173 -32z" /> + <glyph glyph-name="uni04E9" unicode="ө" horiz-adv-x="1149" +d="M573 -20q-151 0 -271.5 70t-185.5 187.5t-65 258.5q0 105 38.5 199.5t106 164.5t166 111t211.5 41q114 0 212 -41t166 -111t106.5 -164.5t38.5 -199.5q0 -141 -65 -258.5t-186 -187.5t-272 -70zM324 588h497q-19 97 -80.5 155t-167.5 58t-168 -58t-81 -155zM573 190 +q105 0 167 58t81 155h-497q19 -97 81 -155t168 -58z" /> + <glyph glyph-name="uni04EE" unicode="Ӯ" horiz-adv-x="1110" +d="M274 1561v143h559v-143h-559zM219 0l193 457l-400 954h269l266 -676l282 676h269l-613 -1411h-266z" /> + <glyph glyph-name="uni04EF" unicode="ӯ" horiz-adv-x="1032" +d="M235 1147v143h559v-143h-559zM201 -430l184 457l-391 972h268l252 -694l256 694h268l-571 -1429h-266z" /> + <glyph glyph-name="Wgrave" unicode="Ẁ" horiz-adv-x="2003" +d="M936 1516l-308 309h260l226 -309h-178zM449 0l-424 1413h264l301 -1040l313 958h197l313 -958l301 1040h264l-424 -1413h-245l-308 930l-307 -930h-245z" /> + <glyph glyph-name="wgrave" unicode="ẁ" horiz-adv-x="1466" +d="M670 1104l-308 309h260l226 -309h-178zM317 -4l-307 1003h260l170 -626l189 626h209l188 -624l172 624h260l-309 -999h-219l-197 655l-196 -659h-220z" /> + <glyph glyph-name="Wacute" unicode="Ẃ" horiz-adv-x="2003" +d="M882 1536l225 289h260l-307 -289h-178zM449 0l-424 1413h264l301 -1040l313 958h197l313 -958l301 1040h264l-424 -1413h-245l-308 930l-307 -930h-245z" /> + <glyph glyph-name="wacute" unicode="ẃ" horiz-adv-x="1466" +d="M616 1124l225 289h260l-307 -289h-178zM317 -4l-307 1003h260l170 -626l189 626h209l188 -624l172 624h260l-309 -999h-219l-197 655l-196 -659h-220z" /> + <glyph glyph-name="Wdieresis" unicode="Ẅ" horiz-adv-x="2003" +d="M720 1600v225h205v-225h-205zM1075 1600v225h204v-225h-204zM449 0l-424 1413h264l301 -1040l313 958h197l313 -958l301 1040h264l-424 -1413h-245l-308 930l-307 -930h-245z" /> + <glyph glyph-name="wdieresis" unicode="ẅ" horiz-adv-x="1466" +d="M454 1188v225h205v-225h-205zM809 1188v225h204v-225h-204zM317 -4l-307 1003h260l170 -626l189 626h209l188 -624l172 624h260l-309 -999h-219l-197 655l-196 -659h-220z" /> + <glyph glyph-name="uni1EA4" unicode="Ấ" +d="M553 1948l225 289h260l-307 -289h-178zM354 1510l316 352l317 -352h-188l-129 145l-127 -145h-189zM12 0l566 1413h190l563 -1413h-274l-109 307h-549l-110 -307h-277zM485 524h377l-188 516z" /> + <glyph glyph-name="uni1EA5" unicode="ấ" horiz-adv-x="1061" +d="M385 1536l225 289h260l-307 -289h-178zM186 1098l316 352l317 -352h-188l-129 145l-127 -145h-189zM418 -20q-159 0 -261 87t-102 240q0 64 20 113.5t55 82t86 54t109 30.5t128 9h260q0 97 -51 154t-146 57q-80 0 -139.5 -39.5t-95.5 -101.5l-187 135q160 219 420 219 +q201 0 316.5 -114t115.5 -300v-606h-201l-16 143q-112 -163 -311 -163zM453 186q104 0 180.5 70t79.5 164h-246q-79 0 -120.5 -35t-41.5 -86t39 -82t109 -31z" /> + <glyph glyph-name="uni1EA6" unicode="Ầ" +d="M607 1928l-308 309h260l226 -309h-178zM354 1510l316 352l317 -352h-188l-129 145l-127 -145h-189zM12 0l566 1413h190l563 -1413h-274l-109 307h-549l-110 -307h-277zM485 524h377l-188 516z" /> + <glyph glyph-name="uni1EA7" unicode="ầ" horiz-adv-x="1061" +d="M439 1516l-308 309h260l226 -309h-178zM186 1098l316 352l317 -352h-188l-129 145l-127 -145h-189zM418 -20q-159 0 -261 87t-102 240q0 64 20 113.5t55 82t86 54t109 30.5t128 9h260q0 97 -51 154t-146 57q-80 0 -139.5 -39.5t-95.5 -101.5l-187 135q160 219 420 219 +q201 0 316.5 -114t115.5 -300v-606h-201l-16 143q-112 -163 -311 -163zM453 186q104 0 180.5 70t79.5 164h-246q-79 0 -120.5 -35t-41.5 -86t39 -82t109 -31z" /> + <glyph glyph-name="uni1EAA" unicode="Ẫ" +d="M799 1929q-44 0 -80 15t-59 36t-42 42t-39 36t-40 15q-31 0 -48 -35.5t-17 -101.5h-140q0 137 57 211.5t156 74.5q48 0 89.5 -22t65 -48.5t50.5 -48.5t49 -22q27 0 44.5 35.5t17.5 99.5h145q0 -137 -55.5 -212t-153.5 -75zM354 1510l316 352l317 -352h-188l-129 145 +l-127 -145h-189zM12 0l566 1413h190l563 -1413h-274l-109 307h-549l-110 -307h-277zM485 524h377l-188 516z" /> + <glyph glyph-name="uni1EAB" unicode="ẫ" horiz-adv-x="1061" +d="M631 1517q-44 0 -80 15t-59 36t-42 42t-39 36t-40 15q-31 0 -48 -35.5t-17 -101.5h-140q0 137 57 211.5t156 74.5q48 0 89.5 -22t65 -48.5t50.5 -48.5t49 -22q27 0 44.5 35.5t17.5 99.5h145q0 -137 -55.5 -212t-153.5 -75zM186 1098l316 352l317 -352h-188l-129 145 +l-127 -145h-189zM418 -20q-159 0 -261 87t-102 240q0 64 20 113.5t55 82t86 54t109 30.5t128 9h260q0 97 -51 154t-146 57q-80 0 -139.5 -39.5t-95.5 -101.5l-187 135q160 219 420 219q201 0 316.5 -114t115.5 -300v-606h-201l-16 143q-112 -163 -311 -163zM453 186 +q104 0 180.5 70t79.5 164h-246q-79 0 -120.5 -35t-41.5 -86t39 -82t109 -31z" /> + <glyph glyph-name="uni1EAE" unicode="Ắ" +d="M553 1950l225 289h260l-307 -289h-178zM672 1555q-316 0 -316 270h172q0 -63 40 -95t104 -32t103.5 33t39.5 94h172q0 -270 -315 -270zM12 0l566 1413h190l563 -1413h-274l-109 307h-549l-110 -307h-277zM485 524h377l-188 516z" /> + <glyph glyph-name="uni1EAF" unicode="ắ" horiz-adv-x="1061" +d="M385 1538l225 289h260l-307 -289h-178zM504 1143q-316 0 -316 270h172q0 -63 40 -95t104 -32t103.5 33t39.5 94h172q0 -270 -315 -270zM418 -20q-159 0 -261 87t-102 240q0 64 20 113.5t55 82t86 54t109 30.5t128 9h260q0 97 -51 154t-146 57q-80 0 -139.5 -39.5 +t-95.5 -101.5l-187 135q160 219 420 219q201 0 316.5 -114t115.5 -300v-606h-201l-16 143q-112 -163 -311 -163zM453 186q104 0 180.5 70t79.5 164h-246q-79 0 -120.5 -35t-41.5 -86t39 -82t109 -31z" /> + <glyph glyph-name="uni1EB0" unicode="Ằ" +d="M607 1930l-308 309h260l226 -309h-178zM672 1555q-316 0 -316 270h172q0 -63 40 -95t104 -32t103.5 33t39.5 94h172q0 -270 -315 -270zM12 0l566 1413h190l563 -1413h-274l-109 307h-549l-110 -307h-277zM485 524h377l-188 516z" /> + <glyph glyph-name="uni1EB1" unicode="ằ" horiz-adv-x="1061" +d="M439 1518l-308 309h260l226 -309h-178zM504 1143q-316 0 -316 270h172q0 -63 40 -95t104 -32t103.5 33t39.5 94h172q0 -270 -315 -270zM418 -20q-159 0 -261 87t-102 240q0 64 20 113.5t55 82t86 54t109 30.5t128 9h260q0 97 -51 154t-146 57q-80 0 -139.5 -39.5 +t-95.5 -101.5l-187 135q160 219 420 219q201 0 316.5 -114t115.5 -300v-606h-201l-16 143q-112 -163 -311 -163zM453 186q104 0 180.5 70t79.5 164h-246q-79 0 -120.5 -35t-41.5 -86t39 -82t109 -31z" /> + <glyph glyph-name="uni1EB4" unicode="Ẵ" +d="M799 1931q-44 0 -80 15t-59 36t-42 42t-39 36t-40 15q-31 0 -48 -35.5t-17 -101.5h-140q0 137 57 211.5t156 74.5q48 0 89.5 -22t65 -48.5t50.5 -48.5t49 -22q27 0 44.5 35.5t17.5 99.5h145q0 -137 -55.5 -212t-153.5 -75zM672 1555q-316 0 -316 270h172q0 -63 40 -95 +t104 -32t103.5 33t39.5 94h172q0 -270 -315 -270zM12 0l566 1413h190l563 -1413h-274l-109 307h-549l-110 -307h-277zM485 524h377l-188 516z" /> + <glyph glyph-name="uni1EB5" unicode="ẵ" horiz-adv-x="1061" +d="M631 1519q-44 0 -80 15t-59 36t-42 42t-39 36t-40 15q-31 0 -48 -35.5t-17 -101.5h-140q0 137 57 211.5t156 74.5q48 0 89.5 -22t65 -48.5t50.5 -48.5t49 -22q27 0 44.5 35.5t17.5 99.5h145q0 -137 -55.5 -212t-153.5 -75zM504 1143q-316 0 -316 270h172q0 -63 40 -95 +t104 -32t103.5 33t39.5 94h172q0 -270 -315 -270zM418 -20q-159 0 -261 87t-102 240q0 64 20 113.5t55 82t86 54t109 30.5t128 9h260q0 97 -51 154t-146 57q-80 0 -139.5 -39.5t-95.5 -101.5l-187 135q160 219 420 219q201 0 316.5 -114t115.5 -300v-606h-201l-16 143 +q-112 -163 -311 -163zM453 186q104 0 180.5 70t79.5 164h-246q-79 0 -120.5 -35t-41.5 -86t39 -82t109 -31z" /> + <glyph glyph-name="uni1EBC" unicode="Ẽ" horiz-adv-x="1245" +d="M748 1517q-44 0 -80 15t-59 36t-42 42t-39 36t-40 15q-31 0 -48 -35.5t-17 -101.5h-140q0 137 57 211.5t156 74.5q48 0 89.5 -22t65 -48.5t50.5 -48.5t49 -22q27 0 44.5 35.5t17.5 99.5h145q0 -137 -55.5 -212t-153.5 -75zM182 0v1413h940v-233h-686v-357h639v-233h-639 +v-350h686v-240h-940z" /> + <glyph glyph-name="uni1EBD" unicode="ẽ" horiz-adv-x="1067" +d="M653 1105q-44 0 -80 15t-59 36t-42 42t-39 36t-40 15q-31 0 -48 -35.5t-17 -101.5h-140q0 137 57 211.5t156 74.5q48 0 89.5 -22t65 -48.5t50.5 -48.5t49 -22q27 0 44.5 35.5t17.5 99.5h145q0 -137 -55.5 -212t-153.5 -75zM561 -20q-125 0 -223.5 42.5t-159 115t-92 164 +t-31.5 194.5q0 100 30 192t87.5 167t154 120t218.5 45q101 0 182 -31.5t132.5 -81.5t86 -117.5t48.5 -135t14 -138.5t-9 -96h-686q35 -219 250 -219q145 0 240 106l168 -147q-162 -180 -410 -180zM313 596h455q-12 106 -70.5 162.5t-154.5 56.5q-190 0 -230 -219z" /> + <glyph glyph-name="uni1EBE" unicode="Ế" horiz-adv-x="1245" +d="M502 1948l225 289h260l-307 -289h-178zM303 1510l316 352l317 -352h-188l-129 145l-127 -145h-189zM182 0v1413h940v-233h-686v-357h639v-233h-639v-350h686v-240h-940z" /> + <glyph glyph-name="uni1EBF" unicode="ế" horiz-adv-x="1067" +d="M407 1536l225 289h260l-307 -289h-178zM208 1098l316 352l317 -352h-188l-129 145l-127 -145h-189zM561 -20q-125 0 -223.5 42.5t-159 115t-92 164t-31.5 194.5q0 100 30 192t87.5 167t154 120t218.5 45q101 0 182 -31.5t132.5 -81.5t86 -117.5t48.5 -135t14 -138.5 +t-9 -96h-686q35 -219 250 -219q145 0 240 106l168 -147q-162 -180 -410 -180zM313 596h455q-12 106 -70.5 162.5t-154.5 56.5q-190 0 -230 -219z" /> + <glyph glyph-name="uni1EC0" unicode="Ề" horiz-adv-x="1245" +d="M556 1928l-308 309h260l226 -309h-178zM303 1510l316 352l317 -352h-188l-129 145l-127 -145h-189zM182 0v1413h940v-233h-686v-357h639v-233h-639v-350h686v-240h-940z" /> + <glyph glyph-name="uni1EC1" unicode="ề" horiz-adv-x="1067" +d="M461 1516l-308 309h260l226 -309h-178zM208 1098l316 352l317 -352h-188l-129 145l-127 -145h-189zM561 -20q-125 0 -223.5 42.5t-159 115t-92 164t-31.5 194.5q0 100 30 192t87.5 167t154 120t218.5 45q101 0 182 -31.5t132.5 -81.5t86 -117.5t48.5 -135t14 -138.5 +t-9 -96h-686q35 -219 250 -219q145 0 240 106l168 -147q-162 -180 -410 -180zM313 596h455q-12 106 -70.5 162.5t-154.5 56.5q-190 0 -230 -219z" /> + <glyph glyph-name="uni1EC4" unicode="Ễ" horiz-adv-x="1245" +d="M748 1929q-44 0 -80 15t-59 36t-42 42t-39 36t-40 15q-31 0 -48 -35.5t-17 -101.5h-140q0 137 57 211.5t156 74.5q48 0 89.5 -22t65 -48.5t50.5 -48.5t49 -22q27 0 44.5 35.5t17.5 99.5h145q0 -137 -55.5 -212t-153.5 -75zM303 1510l316 352l317 -352h-188l-129 145 +l-127 -145h-189zM182 0v1413h940v-233h-686v-357h639v-233h-639v-350h686v-240h-940z" /> + <glyph glyph-name="uni1EC5" unicode="ễ" horiz-adv-x="1067" +d="M653 1517q-44 0 -80 15t-59 36t-42 42t-39 36t-40 15q-31 0 -48 -35.5t-17 -101.5h-140q0 137 57 211.5t156 74.5q48 0 89.5 -22t65 -48.5t50.5 -48.5t49 -22q27 0 44.5 35.5t17.5 99.5h145q0 -137 -55.5 -212t-153.5 -75zM208 1098l316 352l317 -352h-188l-129 145 +l-127 -145h-189zM561 -20q-125 0 -223.5 42.5t-159 115t-92 164t-31.5 194.5q0 100 30 192t87.5 167t154 120t218.5 45q101 0 182 -31.5t132.5 -81.5t86 -117.5t48.5 -135t14 -138.5t-9 -96h-686q35 -219 250 -219q145 0 240 106l168 -147q-162 -180 -410 -180zM313 596h455 +q-12 106 -70.5 162.5t-154.5 56.5q-190 0 -230 -219z" /> + <glyph glyph-name="uni1ED0" unicode="Ố" horiz-adv-x="1528" +d="M645 1948l225 289h260l-307 -289h-178zM446 1510l316 352l317 -352h-188l-129 145l-127 -145h-189zM764 -20q-136 0 -249.5 38.5t-192.5 106t-134 160t-80.5 199t-25.5 223.5t25.5 223.5t80.5 199t134 160t192.5 106t249.5 38.5t249.5 -38.5t192.5 -106t134 -160 +t80.5 -199t25.5 -223.5t-25.5 -223.5t-80.5 -199t-134 -160t-192.5 -106t-249.5 -38.5zM764 205q88 0 159 27t118 73t78.5 110.5t45 136.5t13.5 155q0 82 -13.5 154.5t-45 136.5t-78.5 110t-118 73t-159 27t-159 -27t-118 -73t-78.5 -110t-45 -136.5t-13.5 -154.5 +q0 -83 13.5 -155t45 -136.5t78.5 -110.5t118 -73t159 -27z" /> + <glyph glyph-name="uni1ED1" unicode="ố" horiz-adv-x="1128" +d="M444 1536l225 289h260l-307 -289h-178zM245 1098l316 352l317 -352h-188l-129 145l-127 -145h-189zM563 -20q-113 0 -210 42t-162.5 113t-102.5 166t-37 201q0 141 62.5 258.5t181 188.5t268.5 71t268.5 -71t181 -188.5t62.5 -258.5q0 -106 -37 -201t-102.5 -166 +t-162.5 -113t-210 -42zM563 190q130 0 194 88.5t64 223.5q0 86 -25 153t-84.5 110.5t-148.5 43.5q-130 0 -194 -86.5t-64 -220.5q0 -86 25 -154t85 -113t148 -45z" /> + <glyph glyph-name="uni1ED2" unicode="Ồ" horiz-adv-x="1528" +d="M699 1928l-308 309h260l226 -309h-178zM446 1510l316 352l317 -352h-188l-129 145l-127 -145h-189zM764 -20q-136 0 -249.5 38.5t-192.5 106t-134 160t-80.5 199t-25.5 223.5t25.5 223.5t80.5 199t134 160t192.5 106t249.5 38.5t249.5 -38.5t192.5 -106t134 -160 +t80.5 -199t25.5 -223.5t-25.5 -223.5t-80.5 -199t-134 -160t-192.5 -106t-249.5 -38.5zM764 205q88 0 159 27t118 73t78.5 110.5t45 136.5t13.5 155q0 82 -13.5 154.5t-45 136.5t-78.5 110t-118 73t-159 27t-159 -27t-118 -73t-78.5 -110t-45 -136.5t-13.5 -154.5 +q0 -83 13.5 -155t45 -136.5t78.5 -110.5t118 -73t159 -27z" /> + <glyph glyph-name="uni1ED3" unicode="ồ" horiz-adv-x="1128" +d="M498 1516l-308 309h260l226 -309h-178zM245 1098l316 352l317 -352h-188l-129 145l-127 -145h-189zM563 -20q-113 0 -210 42t-162.5 113t-102.5 166t-37 201q0 141 62.5 258.5t181 188.5t268.5 71t268.5 -71t181 -188.5t62.5 -258.5q0 -106 -37 -201t-102.5 -166 +t-162.5 -113t-210 -42zM563 190q130 0 194 88.5t64 223.5q0 86 -25 153t-84.5 110.5t-148.5 43.5q-130 0 -194 -86.5t-64 -220.5q0 -86 25 -154t85 -113t148 -45z" /> + <glyph glyph-name="uni1ED6" unicode="Ỗ" horiz-adv-x="1528" +d="M891 1929q-44 0 -80 15t-59 36t-42 42t-39 36t-40 15q-31 0 -48 -35.5t-17 -101.5h-140q0 137 57 211.5t156 74.5q48 0 89.5 -22t65 -48.5t50.5 -48.5t49 -22q27 0 44.5 35.5t17.5 99.5h145q0 -137 -55.5 -212t-153.5 -75zM446 1510l316 352l317 -352h-188l-129 145 +l-127 -145h-189zM764 -20q-136 0 -249.5 38.5t-192.5 106t-134 160t-80.5 199t-25.5 223.5t25.5 223.5t80.5 199t134 160t192.5 106t249.5 38.5t249.5 -38.5t192.5 -106t134 -160t80.5 -199t25.5 -223.5t-25.5 -223.5t-80.5 -199t-134 -160t-192.5 -106t-249.5 -38.5z +M764 205q88 0 159 27t118 73t78.5 110.5t45 136.5t13.5 155q0 82 -13.5 154.5t-45 136.5t-78.5 110t-118 73t-159 27t-159 -27t-118 -73t-78.5 -110t-45 -136.5t-13.5 -154.5q0 -83 13.5 -155t45 -136.5t78.5 -110.5t118 -73t159 -27z" /> + <glyph glyph-name="uni1ED7" unicode="ỗ" horiz-adv-x="1128" +d="M690 1517q-44 0 -80 15t-59 36t-42 42t-39 36t-40 15q-31 0 -48 -35.5t-17 -101.5h-140q0 137 57 211.5t156 74.5q48 0 89.5 -22t65 -48.5t50.5 -48.5t49 -22q27 0 44.5 35.5t17.5 99.5h145q0 -137 -55.5 -212t-153.5 -75zM245 1098l316 352l317 -352h-188l-129 145 +l-127 -145h-189zM563 -20q-113 0 -210 42t-162.5 113t-102.5 166t-37 201q0 141 62.5 258.5t181 188.5t268.5 71t268.5 -71t181 -188.5t62.5 -258.5q0 -106 -37 -201t-102.5 -166t-162.5 -113t-210 -42zM563 190q130 0 194 88.5t64 223.5q0 86 -25 153t-84.5 110.5 +t-148.5 43.5q-130 0 -194 -86.5t-64 -220.5q0 -86 25 -154t85 -113t148 -45z" /> + <glyph glyph-name="Ygrave" unicode="Ỳ" horiz-adv-x="1319" +d="M592 1516l-308 309h260l226 -309h-178zM528 0v551l-530 862h307l352 -618l355 618h309l-528 -862v-551h-265z" /> + <glyph glyph-name="ygrave" unicode="ỳ" horiz-adv-x="1032" +d="M451 1104l-308 309h260l226 -309h-178zM201 -430l184 457l-391 972h268l252 -694l256 694h268l-571 -1429h-266z" /> + <glyph glyph-name="uni1EF8" unicode="Ỹ" horiz-adv-x="1319" +d="M784 1517q-44 0 -80 15t-59 36t-42 42t-39 36t-40 15q-31 0 -48 -35.5t-17 -101.5h-140q0 137 57 211.5t156 74.5q48 0 89.5 -22t65 -48.5t50.5 -48.5t49 -22q27 0 44.5 35.5t17.5 99.5h145q0 -137 -55.5 -212t-153.5 -75zM528 0v551l-530 862h307l352 -618l355 618h309 +l-528 -862v-551h-265z" /> + <glyph glyph-name="uni1EF9" unicode="ỹ" horiz-adv-x="1032" +d="M643 1105q-44 0 -80 15t-59 36t-42 42t-39 36t-40 15q-31 0 -48 -35.5t-17 -101.5h-140q0 137 57 211.5t156 74.5q48 0 89.5 -22t65 -48.5t50.5 -48.5t49 -22q27 0 44.5 35.5t17.5 99.5h145q0 -137 -55.5 -212t-153.5 -75zM201 -430l184 457l-391 972h268l252 -694 +l256 694h268l-571 -1429h-266z" /> + <glyph glyph-name="endash" unicode="–" horiz-adv-x="1051" +d="M141 508v184h768v-184h-768z" /> + <glyph glyph-name="emdash" unicode="—" horiz-adv-x="2048" +d="M0 508v184h2048v-184h-2048z" /> + <glyph glyph-name="uni2015" unicode="―" horiz-adv-x="1542" +d="M141 508v184h1260v-184h-1260z" /> + <glyph glyph-name="quoteleft" unicode="‘" horiz-adv-x="573" +d="M307 856l-252 557h277l137 -557h-162z" /> + <glyph glyph-name="quoteright" unicode="’" horiz-adv-x="573" +d="M104 856l138 557h276l-252 -557h-162z" /> + <glyph glyph-name="quotesinglbase" unicode="‚" horiz-adv-x="553" +d="M106 -225l134 489h254l-246 -489h-142z" /> + <glyph glyph-name="quotedblleft" unicode="“" horiz-adv-x="963" +d="M307 856l-252 557h277l137 -557h-162zM696 856l-252 557h277l137 -557h-162z" /> + <glyph glyph-name="quotedblright" unicode="”" horiz-adv-x="963" +d="M104 856l138 557h276l-252 -557h-162zM494 856l137 557h276l-252 -557h-161z" /> + <glyph glyph-name="quotedblbase" unicode="„" horiz-adv-x="901" +d="M106 -225l134 489h254l-246 -489h-142zM455 -225l133 489h254l-246 -489h-141z" /> + <glyph glyph-name="dagger" unicode="†" horiz-adv-x="778" +d="M279 -205v1014h-222v221h222v383h221v-383h221v-221h-221v-1014h-221z" /> + <glyph glyph-name="daggerdbl" unicode="‡" horiz-adv-x="893" +d="M336 -205v383h-221v221h221v410h-221v221h221v383h221v-383h221v-221h-221v-410h221v-221h-221v-383h-221z" /> + <glyph glyph-name="bullet" unicode="•" horiz-adv-x="758" +d="M379 244q-98 0 -168 69.5t-70 167.5t70 168t168 70t167.5 -70t69.5 -168t-69.5 -167.5t-167.5 -69.5z" /> + <glyph glyph-name="uni2023" unicode="‣" horiz-adv-x="915" +d="M205 143v779l665 -390z" /> + <glyph glyph-name="twodotenleader" unicode="‥" horiz-adv-x="1061" +d="M201 0v264h245v-264h-245zM614 0v264h246v-264h-246z" /> + <glyph glyph-name="ellipsis" unicode="…" horiz-adv-x="1475" +d="M201 0v264h245v-264h-245zM614 0v264h246v-264h-246zM1028 0v264h246v-264h-246z" /> + <glyph glyph-name="perthousand" unicode="‰" horiz-adv-x="2179" +d="M262 -20l791 1474h211l-791 -1474h-211zM360 768q-63 0 -114 22.5t-82 57.5t-51.5 81t-28.5 88.5t-8 84.5t8 84.5t28 88.5t50 81t80 57.5t112 22.5q71 0 127 -30.5t89 -80.5t50 -107.5t17 -117.5q0 -59 -16.5 -116t-49 -106.5t-87.5 -79.5t-124 -30zM356 940 +q45 0 73 47.5t28 114.5q0 68 -28 114t-75 46t-74.5 -45.5t-27.5 -114.5t28 -115.5t76 -46.5zM1188 -10q-63 0 -114 23t-82 58.5t-52 82t-29 89.5t-8 85q0 54 14 109t43.5 109t87 88t134.5 34q71 0 127 -31t88.5 -81.5t49.5 -108.5t17 -119q0 -60 -16.5 -118t-49 -108 +t-87 -81t-123.5 -31zM1827 -10q-63 0 -114 23t-82 58.5t-52 82t-29 89.5t-8 85q0 54 14 109t43.5 109t87 88t134.5 34q70 0 126 -31t89 -81.5t50 -109t17 -118.5t-16.5 -118t-49 -108t-87 -81t-123.5 -31zM1186 162q43 0 70.5 49.5t27.5 118.5q0 70 -28 117t-74 47 +q-47 0 -75 -47.5t-28 -118.5t28.5 -118.5t78.5 -47.5zM1823 162q44 0 72 49t28 119t-28 117t-74 47q-48 0 -75.5 -47t-27.5 -119q0 -71 28 -118.5t77 -47.5z" /> + <glyph glyph-name="uni2031" unicode="‱" horiz-adv-x="2814" +d="M262 -20l791 1474h211l-791 -1474h-211zM360 768q-63 0 -114 22.5t-82 57.5t-51.5 81t-28.5 88.5t-8 84.5t8 84.5t28 88.5t50 81t80 57.5t112 22.5q71 0 127 -30.5t89 -80.5t50 -107.5t17 -117.5q0 -59 -16.5 -116t-49 -106.5t-87.5 -79.5t-124 -30zM356 940 +q45 0 73 47.5t28 114.5q0 68 -28 114t-75 46t-74.5 -45.5t-27.5 -114.5t28 -115.5t76 -46.5zM1188 -10q-63 0 -114 23t-82 58.5t-52 82t-29 89.5t-8 85q0 54 14 109t43.5 109t87 88t134.5 34q71 0 127 -31t88.5 -81.5t49.5 -108.5t17 -119q0 -60 -16.5 -118t-49 -108 +t-87 -81t-123.5 -31zM1827 -10q-63 0 -114 23t-82 58.5t-52 82t-29 89.5t-8 85q0 54 14 109t43.5 109t87 88t134.5 34q70 0 126 -31t89 -81.5t50 -109t17 -118.5t-16.5 -118t-49 -108t-87 -81t-123.5 -31zM2462 -10q-63 0 -114 23t-82 58.5t-52 82t-29 89.5t-8 85 +q0 54 13.5 109t43.5 109t87.5 88t134.5 34q70 0 126 -31t89 -81.5t50 -109t17 -118.5t-16.5 -118t-49 -108t-87 -81t-123.5 -31zM1186 162q43 0 70.5 49.5t27.5 118.5q0 70 -28 117t-74 47q-47 0 -75 -47.5t-28 -118.5t28.5 -118.5t78.5 -47.5zM1823 162q44 0 72 49t28 119 +t-28 117t-74 47q-48 0 -75.5 -47t-27.5 -119q0 -71 28 -118.5t77 -47.5zM2458 162q44 0 72 49t28 119t-28 117t-74 47q-48 0 -75.5 -47t-27.5 -119q0 -71 28 -118.5t77 -47.5z" /> + <glyph glyph-name="guilsinglleft" unicode="‹" horiz-adv-x="592" +d="M444 156l-428 354l428 356v-211l-180 -145l180 -143v-211z" /> + <glyph glyph-name="guilsinglright" unicode="›" horiz-adv-x="594" +d="M145 156v211l181 143l-181 145v211l428 -356z" /> + <glyph glyph-name="fraction" unicode="⁄" horiz-adv-x="860" +d="M-82 0l791 1413h233l-790 -1413h-234z" /> + <glyph glyph-name="Euro" unicode="€" horiz-adv-x="1266" +d="M788 -20q-207 0 -338 129t-180 344h-174l78 180h72q-2 26 -2 74q0 14 1 44t1 42h-150l78 186h98q25 101 68.5 183t106 144t149 96t190.5 34q246 0 396 -205l-156 -123q-82 109 -240 109q-223 0 -309 -238h531l-78 -182h-486q-4 -54 -4 -74q0 -32 4 -82h564l-78 -180h-453 +q82 -262 311 -262q151 0 234 112l147 -145q-148 -186 -381 -186z" /> + <glyph glyph-name="uni20B1" unicode="₱" horiz-adv-x="1352" +d="M1284 1055v-109h-93q-18 -171 -153.5 -265.5t-342.5 -94.5h-191v-586h-252v946h-119v109h119v358h443q204 0 339 -94.5t156 -263.5h94zM504 1176v-121h430q-37 121 -239 121h-191zM695 823q212 0 241 123h-432v-123h191z" /> + <glyph glyph-name="uni20B3" unicode="₳" +d="M1209 307l122 -307h-274l-109 307h-549l-110 -307h-277l123 307h-102v156h164l82 203h-246v155h308l237 592h190l236 -592h307v-155h-245l81 -203h164v-156h-102zM672 1102l-98 -281h199zM449 463h452l-73 203h-308z" /> + <glyph glyph-name="uni20B4" unicode="₴" horiz-adv-x="1257" +d="M901 463l252 -64q-16 -101 -68 -181.5t-126 -130.5t-163 -76.5t-184 -26.5q-136 0 -246.5 50t-177.5 149t-67 231q0 44 8.5 84t21.5 72t36 61.5t44 51t55 44t58 36.5t64.5 32t64 27.5t65.5 25.5l10.5 4.5t9.5 3.5t11 4h-323v139h540q15 27 15 60q0 65 -50.5 107 +t-125.5 42q-70 0 -129.5 -39.5t-96.5 -111.5l-211 129q70 125 182 186.5t248 61.5q121 0 220 -44.5t160 -134.5t61 -211q0 -52 -13 -95.5t-27.5 -73.5t-51.5 -58t-56.5 -42.5t-73.5 -34t-71.5 -24.5t-78.5 -22q-19 -5 -28 -8h371v-139h-624q-27 -46 -27 -107 +q0 -108 59 -164.5t170 -56.5q118 0 199 62t94 182z" /> + <glyph glyph-name="uni20B8" unicode="₸" horiz-adv-x="1376" +d="M119 1186v227h1138v-227h-1138zM561 0v854h-442v227h1138v-227h-442v-854h-254z" /> + <glyph glyph-name="uni20BD" unicode="₽" horiz-adv-x="1354" +d="M317 0v262h-178v197h178v147h-178v217h178v590h443q222 0 361 -111t139 -307q0 -191 -137 -290t-363 -99h-191v-147h334v-197h-334v-262h-252zM569 823h191q128 0 188 43t60 129q0 181 -248 181h-191v-353z" /> + <glyph glyph-name="uni2116" unicode="№" horiz-adv-x="2376" +d="M182 0v1413h252l594 -989v989h244v-1413h-254l-592 991v-991h-244zM1872 332q-186 0 -303.5 125t-117.5 304q0 178 117.5 302t303.5 124t303.5 -124t117.5 -302q0 -179 -117.5 -304t-303.5 -125zM1872 504q107 0 159.5 73t52.5 184q0 110 -52.5 181.5t-159.5 71.5 +t-159.5 -71.5t-52.5 -181.5q0 -71 20.5 -127t70 -93t121.5 -37zM1452 0v184h827v-184h-827z" /> + <glyph glyph-name="trademark" unicode="™" horiz-adv-x="1405" +d="M279 877v397h-146v139h442v-139h-145v-397h-151zM662 877v536h149l115 -315l114 315h148v-536h-152v266l-61 -185h-96l-66 189v-270h-151z" /> + <glyph glyph-name="uni2126" unicode="Ω" horiz-adv-x="1673" +d="M143 0v203h273q-123 98 -196 238.5t-73 279.5q0 129 49 256t132 213q97 100 234 158.5t274 58.5q136 0 273 -59.5t234 -159.5q83 -86 132 -213.5t49 -259.5q0 -144 -67 -284t-181 -236h252v-195h-580v188q166 25 264.5 167.5t98.5 357.5q0 99 -30.5 187.5t-82.5 141.5 +q-69 74 -167 117t-195 43q-96 0 -194 -43.5t-169 -116.5q-52 -53 -82.5 -141.5t-30.5 -187.5q0 -217 98.5 -359.5t264.5 -165.5v-188h-580z" /> + <glyph glyph-name="arrowleft" unicode="←" horiz-adv-x="2228" +d="M1053 72l-1010 567l1010 557l112 -197l-575 -262h1558v-205h-1548l565 -264z" /> + <glyph glyph-name="arrowright" unicode="→" horiz-adv-x="2228" +d="M1176 72l-113 196l565 264h-1548v205h1558l-575 262l113 197l1009 -557z" /> + <glyph glyph-name="partialdiff" unicode="∂" horiz-adv-x="1282" +d="M561 -12q-216 0 -339.5 128.5t-123.5 334.5q0 159 76.5 288t198 198t258.5 69q153 0 282 -91q0 166 -77 251t-201 85q-173 0 -238 -157l-178 55q54 134 169 207.5t269 73.5q129 0 226.5 -51.5t155.5 -143t87 -210t29 -261.5q0 -228 -69.5 -402.5t-205 -274t-319.5 -99.5z +M575 197q62 0 121.5 24t108 67t78.5 111t30 148q0 118 -63 189t-188 71q-82 0 -148.5 -32t-106.5 -83.5t-61.5 -113t-21.5 -125.5q0 -124 72.5 -190t178.5 -66z" /> + <glyph glyph-name="uni2206" unicode="∆" horiz-adv-x="1288" +d="M45 0l598 1491l600 -1491h-1198zM344 205h600l-301 788z" /> + <glyph glyph-name="product" unicode="∏" +d="M236 0v1208h-82v205h1036v-205h-82v-1208h-205v1208h-463v-1208h-204z" /> + <glyph glyph-name="summation" unicode="∑" horiz-adv-x="1268" +d="M80 0v106l567 601l-567 600v106h1081v-205h-719l496 -501l-496 -502h719v-205h-1081z" /> + <glyph glyph-name="minus" unicode="−" horiz-adv-x="1528" +d="M215 537v184h1098v-184h-1098z" /> + <glyph glyph-name="radical" unicode="√" horiz-adv-x="1184" +d="M492 -242l-281 783h-158v204h305l146 -460l442 1142l191 -71z" /> + <glyph glyph-name="infinity" unicode="∞" horiz-adv-x="1880" +d="M535 354q-184 0 -291 105.5t-107 275.5t107 275.5t291 105.5q107 0 214.5 -55.5t190.5 -159.5q84 104 191.5 159.5t214.5 55.5q184 0 290.5 -105.5t106.5 -275.5t-106.5 -275.5t-290.5 -105.5q-107 0 -215 55.5t-191 159.5q-84 -104 -191.5 -159.5t-213.5 -55.5zM565 551 +q64 0 138.5 48t127.5 136q-54 90 -128 137.5t-138 47.5q-98 0 -154.5 -48.5t-56.5 -136.5t56.5 -136t154.5 -48zM1315 551q98 0 154.5 48t56.5 136t-56.5 136.5t-154.5 48.5q-64 0 -138.5 -48.5t-127.5 -136.5q54 -90 128 -137t138 -47z" /> + <glyph glyph-name="integral" unicode="∫" horiz-adv-x="899" +d="M41 -457v205q169 0 238 61t69 211v1117q0 134 87.5 222.5t213.5 88.5q125 0 223 -86l-131 -156q-43 37 -92 37q-40 0 -68 -27.5t-28 -87.5v-1114q0 -226 -138 -348.5t-374 -122.5z" /> + <glyph glyph-name="approxequal" unicode="≈" horiz-adv-x="1165" +d="M739 735q-64 0 -120 16t-88 35.5t-66 35.5t-59 16q-39 0 -49.5 -16t-10.5 -60h-170q0 124 59.5 185t167.5 61q73 0 133 -15.5t91 -34t62.5 -34t55.5 -15.5q43 0 54.5 19t11.5 73h178q0 -266 -250 -266zM739 387q-64 0 -120 16t-88 35t-66 35t-59 16q-39 0 -49.5 -15.5 +t-10.5 -59.5h-170q0 124 59.5 184.5t167.5 60.5q73 0 133 -15.5t91 -33.5t62.5 -33.5t55.5 -15.5q43 0 54.5 19t11.5 73h178q0 -266 -250 -266z" /> + <glyph glyph-name="notequal" unicode="≠" horiz-adv-x="1163" +d="M90 0l227 406h-145v186h246l86 160h-332v186h432l264 475h209l-264 -475h168v-186h-268l-86 -160h354v-186h-455l-227 -406h-209z" /> + <glyph glyph-name="lessequal" unicode="≤" horiz-adv-x="1317" +d="M1087 154l-985 548l985 549l103 -178l-690 -371l690 -370zM72 -184v184h1124v-184h-1124z" /> + <glyph glyph-name="greaterequal" unicode="≥" horiz-adv-x="1315" +d="M227 154l-102 178l690 370l-690 371l102 178l985 -549zM119 -184v184h1124v-184h-1124z" /> + <glyph glyph-name="lozenge" unicode="◊" horiz-adv-x="1098" +d="M446 0l-385 717l385 717h205l385 -717l-385 -717h-205zM549 227l246 490l-246 489l-246 -489z" /> + <glyph glyph-name="uniF8FF" unicode="" horiz-adv-x="1712" +d="M856 -61q-158 0 -301 61t-247 165t-165 247t-61 301t61 301t165 247t247 165t301 61t301 -61t247 -165t165 -247t61 -301t-61 -301t-165 -247t-247 -165t-301 -61zM856 10q191 0 353 94t256 256t94 353q0 143 -55.5 273t-149.5 224t-224.5 149.5t-273.5 55.5t-273 -55.5 +t-224 -149.5t-149.5 -224t-55.5 -273t55.5 -273.5t149.5 -224.5t224 -149.5t273 -55.5zM453 410q-15 0 -25 9.5t-10 24.5v537q0 15 10.5 26t24.5 11q15 0 25.5 -11t10.5 -26v-537q0 -15 -10.5 -24.5t-25.5 -9.5zM856 410q-15 0 -25 9.5t-10 24.5v537q0 15 10 26t25 11 +t25 -11t10 -26v-537q0 -15 -9.5 -24.5t-25.5 -9.5zM1257 410q-15 0 -22 10l-270 268q-9 10 -9 25q0 16 9 24l270 269q9 12 22 12q14 0 25.5 -11.5t11.5 -25.5t-10 -25l-244 -243l244 -244q10 -10 10 -25q0 -13 -11.5 -23.5t-25.5 -10.5zM588 678q-16 0 -25.5 9.5t-9.5 25.5 +q0 15 9.5 25t25.5 10h133q15 0 26 -10t11 -25t-11 -25t-26 -10h-133z" /> + <glyph glyph-name="c.001" horiz-adv-x="1004" +d="M541 -20q-118 0 -212.5 43.5t-152.5 116.5t-88.5 165t-30.5 193t30 192.5t88 166t152 119t212 44.5q146 0 260 -79.5t172 -215.5l-232 -90q-20 74 -73.5 119t-126.5 45q-49 0 -89 -17t-66.5 -46t-44.5 -68t-26 -81.5t-8 -88.5q0 -59 13 -110.5t40 -94.5t73.5 -67.5 +t107.5 -24.5q72 0 126 43.5t74 115.5l222 -84q-50 -140 -161 -218t-259 -78z" /> + <glyph glyph-name="g.ss01" horiz-adv-x="1155" +d="M1010 0q0 -205 -123.5 -321.5t-345.5 -116.5q-291 0 -445 215l187 135q32 -58 99.5 -97.5t162.5 -39.5q219 0 219 225v121q-98 -121 -281 -121q-135 0 -235 72.5t-148.5 186.5t-48.5 251q0 101 28.5 192t81.5 162.5t135.5 113.5t182.5 42q84 0 159.5 -30t125.5 -91v100 +h246v-999zM543 225q120 0 180.5 79t60.5 206t-60.5 208t-180.5 81t-182 -82t-62 -207q0 -126 62 -205.5t182 -79.5z" /> + <glyph glyph-name="g.ss04" horiz-adv-x="1071" +d="M653 172q51 0 97.5 -7.5t95.5 -28t85 -52.5t58.5 -85t22.5 -122q0 -156 -115 -246t-342 -90q-138 0 -249.5 33t-185 108.5t-73.5 184.5q0 52 16 92l137 54q-132 83 -132 223q0 139 123 215q-60 90 -60 202q0 161 117 264t291 103q129 0 232 -61l153 131l125 -156 +l-146 -117q41 -79 41 -172q0 -162 -116.5 -262t-288.5 -100q-115 0 -209 47q-35 -25 -35 -72t37 -66.5t110 -19.5h211zM543 827q-79 0 -123.5 -50.5t-44.5 -127.5q0 -76 44.5 -124t123.5 -48q78 0 122 48t44 124q0 77 -44.5 127.5t-121.5 50.5zM553 -262q111 0 168 27t57 94 +q0 35 -15 57t-47 33t-68 14.5t-93 3.5h-193l-88 -82q0 -15 5 -28q15 -63 78 -91t196 -28z" /> + <glyph glyph-name="gbreve.ss01" horiz-adv-x="1155" +d="M528 1143q-316 0 -316 270h172q0 -63 40 -95t104 -32t103.5 33t39.5 94h172q0 -270 -315 -270zM1010 0q0 -205 -123.5 -321.5t-345.5 -116.5q-291 0 -445 215l187 135q32 -58 99.5 -97.5t162.5 -39.5q219 0 219 225v121q-98 -121 -281 -121q-135 0 -235 72.5 +t-148.5 186.5t-48.5 251q0 101 28.5 192t81.5 162.5t135.5 113.5t182.5 42q84 0 159.5 -30t125.5 -91v100h246v-999zM543 225q120 0 180.5 79t60.5 206t-60.5 208t-180.5 81t-182 -82t-62 -207q0 -126 62 -205.5t182 -79.5z" /> + <glyph glyph-name="gbreve.ss04" horiz-adv-x="1071" +d="M537 1143q-316 0 -316 270h172q0 -63 40 -95t104 -32t103.5 33t39.5 94h172q0 -270 -315 -270zM653 172q51 0 97.5 -7.5t95.5 -28t85 -52.5t58.5 -85t22.5 -122q0 -156 -115 -246t-342 -90q-138 0 -249.5 33t-185 108.5t-73.5 184.5q0 52 16 92l137 54q-132 83 -132 223 +q0 139 123 215q-60 90 -60 202q0 161 117 264t291 103q129 0 232 -61l153 131l125 -156l-146 -117q41 -79 41 -172q0 -162 -116.5 -262t-288.5 -100q-115 0 -209 47q-35 -25 -35 -72t37 -66.5t110 -19.5h211zM543 827q-79 0 -123.5 -50.5t-44.5 -127.5q0 -76 44.5 -124 +t123.5 -48q78 0 122 48t44 124q0 77 -44.5 127.5t-121.5 50.5zM553 -262q111 0 168 27t57 94q0 35 -15 57t-47 33t-68 14.5t-93 3.5h-193l-88 -82q0 -15 5 -28q15 -63 78 -91t196 -28z" /> + <glyph glyph-name="gcommaaccent.ss01" horiz-adv-x="1155" +d="M769 1409l-135 -315h-254l248 315h141zM1010 0q0 -205 -123.5 -321.5t-345.5 -116.5q-291 0 -445 215l187 135q32 -58 99.5 -97.5t162.5 -39.5q219 0 219 225v121q-98 -121 -281 -121q-135 0 -235 72.5t-148.5 186.5t-48.5 251q0 101 28.5 192t81.5 162.5t135.5 113.5 +t182.5 42q84 0 159.5 -30t125.5 -91v100h246v-999zM543 225q120 0 180.5 79t60.5 206t-60.5 208t-180.5 81t-182 -82t-62 -207q0 -126 62 -205.5t182 -79.5z" /> + <glyph glyph-name="gcommaaccent.ss04" horiz-adv-x="1071" +d="M750 1434l-135 -315h-254l248 315h141zM653 172q51 0 97.5 -7.5t95.5 -28t85 -52.5t58.5 -85t22.5 -122q0 -156 -115 -246t-342 -90q-138 0 -249.5 33t-185 108.5t-73.5 184.5q0 52 16 92l137 54q-132 83 -132 223q0 139 123 215q-60 90 -60 202q0 161 117 264t291 103 +q129 0 232 -61l153 131l125 -156l-146 -117q41 -79 41 -172q0 -162 -116.5 -262t-288.5 -100q-115 0 -209 47q-35 -25 -35 -72t37 -66.5t110 -19.5h211zM543 827q-79 0 -123.5 -50.5t-44.5 -127.5q0 -76 44.5 -124t123.5 -48q78 0 122 48t44 124q0 77 -44.5 127.5 +t-121.5 50.5zM553 -262q111 0 168 27t57 94q0 35 -15 57t-47 33t-68 14.5t-93 3.5h-193l-88 -82q0 -15 5 -28q15 -63 78 -91t196 -28z" /> + <glyph glyph-name="gdotaccent.ss01" horiz-adv-x="1155" +d="M399 1188v225h256v-225h-256zM1010 0q0 -205 -123.5 -321.5t-345.5 -116.5q-291 0 -445 215l187 135q32 -58 99.5 -97.5t162.5 -39.5q219 0 219 225v121q-98 -121 -281 -121q-135 0 -235 72.5t-148.5 186.5t-48.5 251q0 101 28.5 192t81.5 162.5t135.5 113.5t182.5 42 +q84 0 159.5 -30t125.5 -91v100h246v-999zM543 225q120 0 180.5 79t60.5 206t-60.5 208t-180.5 81t-182 -82t-62 -207q0 -126 62 -205.5t182 -79.5z" /> + <glyph glyph-name="gdotaccent.ss04" horiz-adv-x="1071" +d="M664 1413v-225h-256v225h256zM653 172q51 0 97.5 -7.5t95.5 -28t85 -52.5t58.5 -85t22.5 -122q0 -156 -115 -246t-342 -90q-138 0 -249.5 33t-185 108.5t-73.5 184.5q0 52 16 92l137 54q-132 83 -132 223q0 139 123 215q-60 90 -60 202q0 161 117 264t291 103 +q129 0 232 -61l153 131l125 -156l-146 -117q41 -79 41 -172q0 -162 -116.5 -262t-288.5 -100q-115 0 -209 47q-35 -25 -35 -72t37 -66.5t110 -19.5h211zM543 827q-79 0 -123.5 -50.5t-44.5 -127.5q0 -76 44.5 -124t123.5 -48q78 0 122 48t44 124q0 77 -44.5 127.5 +t-121.5 50.5zM553 -262q111 0 168 27t57 94q0 35 -15 57t-47 33t-68 14.5t-93 3.5h-193l-88 -82q0 -15 5 -28q15 -63 78 -91t196 -28z" /> + <glyph glyph-name="i.loclTRK" horiz-adv-x="516" +d="M129 1188v225h256v-225h-256zM145 0v999h226v-999h-226z" /> + <glyph glyph-name="f_t" horiz-adv-x="1348" +d="M1094 -20q-147 0 -230.5 79.5t-83.5 216.5v519h-325v-795h-252v795h-183v202h185v136q0 139 93 220t226 81q89 0 181 -41l-80 -201q-41 25 -78 25q-40 0 -66 -27t-26 -82v-109h329v248l230 174v-422h260v-204h-260v-476q0 -124 121 -124q65 0 139 36v-221 +q-79 -30 -180 -30z" /> + <glyph glyph-name="uni0414.loclRUS" horiz-adv-x="1470" +d="M20 -307v530h183q129 289 129 670v518h917v-1188h164v-530h-254v307h-885v-305zM473 223h522v955h-409v-283q0 -196 -24.5 -359t-88.5 -313z" /> + <glyph glyph-name="uni0414.loclSRB" horiz-adv-x="1470" +d="M20 -307v530h183q129 289 129 670v518h917v-1188h164v-530h-254v307h-885v-305zM473 223h522v955h-409v-283q0 -196 -24.5 -359t-88.5 -313z" /> + <glyph glyph-name="uni041B.loclRUS" horiz-adv-x="1393" +d="M215 -20q-103 0 -203 61l78 217q42 -29 72 -29q84 0 112 202q19 141 19 539v36v38v367h917v-1411h-254v1178h-409v-238q0 -358 -16 -506q-33 -316 -165 -410q-63 -44 -151 -44z" /> + <glyph glyph-name="uni041B.loclSRB" horiz-adv-x="1393" +d="M215 -20q-103 0 -203 61l78 217q42 -29 72 -29q84 0 112 202q19 141 19 539v36v38v367h917v-1411h-254v1178h-409v-238q0 -358 -16 -506q-33 -316 -165 -410q-63 -44 -151 -44z" /> + <glyph glyph-name="uni042E.loclRUS" horiz-adv-x="2005" +d="M1241 -20q-153 0 -276.5 47.5t-205 132t-130.5 193t-64 237.5h-129v-590h-254v1411h254v-588h129q15 128 64 237t130.5 193.5t205 132.5t276.5 48q136 0 249.5 -38.5t192.5 -106t134 -160t80.5 -199t25.5 -223.5t-25.5 -223.5t-80.5 -199t-134 -160t-192.5 -106 +t-249.5 -38.5zM1241 205q88 0 159 27t118 73t78.5 110.5t45 136.5t13.5 155q0 82 -13.5 154.5t-45 136.5t-78.5 110t-118 73t-159 27t-159 -27t-118 -73t-78.5 -110t-45 -136.5t-13.5 -154.5q0 -83 13.5 -155t45 -136.5t78.5 -110.5t118 -73t159 -27z" /> + <glyph glyph-name="uni0431.loclSRB" horiz-adv-x="1149" +d="M563 -16q-225 0 -371.5 141.5t-146.5 355.5q0 66 16 129t52 128t104 122.5t162 97.5q-91 35 -151 97.5t-60 152.5q0 101 77.5 163.5t213.5 62.5q174 0 356 -93l-76 -229q-48 47 -122 80t-130 33q-69 0 -69 -56q0 -83 198 -143q242 -72 358 -200.5t116 -323.5 +q0 -227 -150.5 -372.5t-376.5 -145.5zM567 190q60 0 107.5 22.5t75 55.5t45.5 76t24 79t6 69q0 68 -28 123t-80.5 93t-82 53.5t-76.5 35.5q-3 2 -5 2.5t-4 1.5q-121 -22 -180.5 -113.5t-59.5 -202.5q0 -54 15 -104.5t44.5 -94t81 -70t117.5 -26.5z" /> + <glyph glyph-name="uni0432.loclRUS" horiz-adv-x="1083" +d="M139 0v999h441q76 0 133 -6.5t111 -25t88.5 -50t55.5 -84t21 -124.5q0 -60 -33.5 -114.5t-99.5 -76.5q164 -35 164 -231q0 -67 -20.5 -117t-57 -82.5t-93 -52t-121.5 -27.5t-150 -8h-439zM387 612h238q123 0 123 80q0 76 -125 76h-236v-156zM387 227h231q78 0 114 19.5 +t36 64.5q0 46 -36 66t-114 20h-231v-170z" /> + <glyph glyph-name="uni0432.loclSRB" horiz-adv-x="1083" +d="M139 0v999h441q76 0 133 -6.5t111 -25t88.5 -50t55.5 -84t21 -124.5q0 -60 -33.5 -114.5t-99.5 -76.5q164 -35 164 -231q0 -67 -20.5 -117t-57 -82.5t-93 -52t-121.5 -27.5t-150 -8h-439zM387 612h238q123 0 123 80q0 76 -125 76h-236v-156zM387 227h231q78 0 114 19.5 +t36 64.5q0 46 -36 66t-114 20h-231v-170z" /> + <glyph glyph-name="uni0433.loclRUS" horiz-adv-x="795" +d="M139 0v999h660v-182h-412v-817h-248z" /> + <glyph glyph-name="uni0433.loclSRB" horiz-adv-x="795" +d="M139 0v999h660v-182h-412v-817h-248z" /> + <glyph glyph-name="uni0434.loclRUS" horiz-adv-x="1243" +d="M-4 -307v489h149q36 39 59.5 92t33 117.5t12 110.5t2.5 110v387h805v-817h147v-489h-248v307h-712v-307h-248zM393 182h416v635h-309v-201q0 -65 -2.5 -111.5t-12 -111.5t-33 -118.5t-59.5 -92.5z" /> + <glyph glyph-name="uni0434.loclSRB" horiz-adv-x="1243" +d="M-4 -307v489h149q36 39 59.5 92t33 117.5t12 110.5t2.5 110v387h805v-817h147v-489h-248v307h-712v-307h-248zM393 182h416v635h-309v-201q0 -65 -2.5 -111.5t-12 -111.5t-33 -118.5t-59.5 -92.5z" /> + <glyph glyph-name="uni0436.loclRUS" horiz-adv-x="1530" +d="M10 0l176 455q27 57 72.5 107t95.5 50l-293 387h283l234 -356h65v356h244v-356h65l234 356h282l-292 -387q50 0 95.5 -50.5t71.5 -106.5l177 -455h-289l-121 352q-37 111 -131 111h-92v-463h-244v463h-92q-94 0 -131 -111l-121 -352h-289z" /> + <glyph glyph-name="uni0436.loclSRB" horiz-adv-x="1530" +d="M10 0l176 455q27 57 72.5 107t95.5 50l-293 387h283l234 -356h65v356h244v-356h65l234 356h282l-292 -387q50 0 95.5 -50.5t71.5 -106.5l177 -455h-289l-121 352q-37 111 -131 111h-92v-463h-244v463h-92q-94 0 -131 -111l-121 -352h-289z" /> + <glyph glyph-name="uni0437.loclRUS" horiz-adv-x="1026" +d="M465 -20q-131 0 -254.5 62.5t-181.5 178.5l211 152q18 -77 85.5 -121.5t139.5 -44.5q122 0 176.5 19t54.5 77q0 45 -10 64.5t-45.5 29t-114.5 9.5h-104v215h110q86 0 115 19.5t29 68.5q0 43 -44.5 57t-142.5 14q-145 0 -231 -139l-235 123q57 82 116 134.5t121 76 +t111 30.5t116 7q94 0 167 -13t135 -43.5t95.5 -88t33.5 -138.5q0 -82 -41 -127.5t-134 -75.5q99 -21 152 -76.5t53 -162.5q0 -89 -36.5 -151t-105 -95t-151 -47t-190.5 -14z" /> + <glyph glyph-name="uni0437.loclSRB" horiz-adv-x="1026" +d="M465 -20q-131 0 -254.5 62.5t-181.5 178.5l211 152q18 -77 85.5 -121.5t139.5 -44.5q122 0 176.5 19t54.5 77q0 45 -10 64.5t-45.5 29t-114.5 9.5h-104v215h110q86 0 115 19.5t29 68.5q0 43 -44.5 57t-142.5 14q-145 0 -231 -139l-235 123q57 82 116 134.5t121 76 +t111 30.5t116 7q94 0 167 -13t135 -43.5t95.5 -88t33.5 -138.5q0 -82 -41 -127.5t-134 -75.5q99 -21 152 -76.5t53 -162.5q0 -89 -36.5 -151t-105 -95t-151 -47t-190.5 -14z" /> + <glyph glyph-name="uni0438.loclRUS" horiz-adv-x="1198" +d="M145 0v999h248v-528q0 -57 -10 -125h10l391 653h269v-999h-248v528q0 57 10 125h-10l-391 -653h-269z" /> + <glyph glyph-name="uni0438.loclSRB" horiz-adv-x="1198" +d="M145 0v999h248v-528q0 -57 -10 -125h10l391 653h269v-999h-248v528q0 57 10 125h-10l-391 -653h-269z" /> + <glyph glyph-name="uni0439.loclRUS" horiz-adv-x="1198" +d="M606 1143q-315 0 -315 270h172q0 -63 39.5 -95t103.5 -32q65 0 104.5 33t39.5 94h172q0 -270 -316 -270zM145 0v999h248v-528q0 -57 -10 -125h10l391 653h269v-999h-248v528q0 57 10 125h-10l-391 -653h-269z" /> + <glyph glyph-name="uni0439.loclSRB" horiz-adv-x="1198" +d="M606 1143q-315 0 -315 270h172q0 -63 39.5 -95t103.5 -32q65 0 104.5 33t39.5 94h172q0 -270 -316 -270zM145 0v999h248v-528q0 -57 -10 -125h10l391 653h269v-999h-248v528q0 57 10 125h-10l-391 -653h-269z" /> + <glyph glyph-name="uni045D.loclRUS" horiz-adv-x="1198" +d="M512 1124l-307 310h260l225 -310h-178zM145 0v999h248v-528q0 -57 -10 -125h10l391 653h269v-999h-248v528q0 57 10 125h-10l-391 -653h-269z" /> + <glyph glyph-name="uni045D.loclSRB" horiz-adv-x="1198" +d="M512 1124l-307 310h260l225 -310h-178zM145 0v999h248v-528q0 -57 -10 -125h10l391 653h269v-999h-248v528q0 57 10 125h-10l-391 -653h-269z" /> + <glyph glyph-name="uni043A.loclRUS" horiz-adv-x="1038" +d="M145 0v999h244v-356h66l233 356h283l-293 -387q27 0 54 -16t49 -41.5t37.5 -50.5t27.5 -49l176 -455h-289l-121 352q-37 111 -131 111h-92v-463h-244z" /> + <glyph glyph-name="uni043A.loclSRB" horiz-adv-x="1038" +d="M145 0v999h244v-356h66l233 356h283l-293 -387q27 0 54 -16t49 -41.5t37.5 -50.5t27.5 -49l176 -455h-289l-121 352q-37 111 -131 111h-92v-463h-244z" /> + <glyph glyph-name="uni043B.loclRUS" horiz-adv-x="1141" +d="M197 -20q-109 0 -217 55l65 155q41 -18 68 -18q69 0 88 113q11 65 10 276v51v387h784v-999h-247v817h-289v-323q0 -271 -62 -392.5t-200 -121.5z" /> + <glyph glyph-name="uni043B.loclSRB" horiz-adv-x="1141" +d="M197 -20q-109 0 -217 55l65 155q41 -18 68 -18q69 0 88 113q11 65 10 276v51v387h784v-999h-247v817h-289v-323q0 -271 -62 -392.5t-200 -121.5z" /> + <glyph glyph-name="uni043F.loclRUS" horiz-adv-x="1198" +d="M145 0v999h908v-999h-248v817h-412v-817h-248z" /> + <glyph glyph-name="uni043F.loclSRB" horiz-adv-x="1198" +d="M145 0v999h908v-999h-248v817h-412v-817h-248z" /> + <glyph glyph-name="uni0442.loclRUS" horiz-adv-x="899" +d="M326 0v817h-330v182h907v-182h-330v-817h-247z" /> + <glyph glyph-name="uni0442.loclSRB" horiz-adv-x="899" +d="M326 0v817h-330v182h907v-182h-330v-817h-247z" /> + <glyph glyph-name="uni0446.loclRUS" horiz-adv-x="1253" +d="M989 -307v307h-844v999h248v-817h412v817h248v-817h184v-489h-248z" /> + <glyph glyph-name="uni0446.loclSRB" horiz-adv-x="1253" +d="M989 -307v307h-844v999h248v-817h412v817h248v-817h184v-489h-248z" /> + <glyph glyph-name="uni0448.loclRUS" horiz-adv-x="1692" +d="M145 0v999h248v-817h328v817h248v-817h329v817h248v-999h-1401z" /> + <glyph glyph-name="uni0448.loclSRB" horiz-adv-x="1692" +d="M145 0v999h248v-817h328v817h248v-817h329v817h248v-999h-1401z" /> + <glyph glyph-name="uni0449.loclRUS" horiz-adv-x="1747" +d="M1483 -307v307h-1338v999h248v-817h328v817h248v-817h329v817h248v-817h185v-489h-248z" /> + <glyph glyph-name="uni0449.loclSRB" horiz-adv-x="1747" +d="M1483 -307v307h-1338v999h248v-817h328v817h248v-817h329v817h248v-817h185v-489h-248z" /> + <glyph glyph-name="uni044C.loclRUS" horiz-adv-x="1057" +d="M145 0v999h248v-294h148q234 0 343 -81.5t109 -261.5q0 -182 -110 -272t-340 -90h-398zM393 211h148q86 0 135 33t49 118q0 132 -184 132h-148v-283z" /> + <glyph glyph-name="uni044A.loclRUS" horiz-adv-x="1217" +d="M305 0v817h-309v182h557v-294h147q234 0 343.5 -81.5t109.5 -261.5q0 -182 -110 -272t-341 -90h-397zM553 211h147q87 0 136 33t49 118q0 132 -185 132h-147v-283z" /> + <glyph glyph-name="uni044B.loclRUS" horiz-adv-x="1462" +d="M145 0v999h248v-294h148q234 0 343 -81.5t109 -261.5q0 -182 -110 -272t-340 -90h-398zM1092 0v999h225v-999h-225zM393 211h148q86 0 135 33t49 118q0 132 -184 132h-148v-283z" /> + <glyph glyph-name="uni044E.loclRUS" horiz-adv-x="1602" +d="M1026 -20q-109 0 -204 38t-162.5 103t-108.5 153.5t-47 188.5h-111v-463h-248v999h248v-354h131q46 163 181 265t321 102q113 0 211.5 -41t166 -111t106 -164.5t38.5 -199.5q0 -141 -65 -258.5t-185.5 -187.5t-271.5 -70zM1026 190q130 0 194 86t64 220q0 133 -64 219 +t-194 86t-194 -86t-64 -219q0 -134 64 -220t194 -86z" /> + <glyph glyph-name="strokecy" horiz-adv-x="1036" +d="M139 264v213h758v-213h-758z" /> + <hkern u1=" " u2="&" k="82" /> + <hkern u1="!" u2="ß" k="25" /> + <hkern u1=""" u2="ï" k="-33" /> + <hkern u1=""" u2="î" k="-33" /> + <hkern u1=""" u2="ì" k="-33" /> + <hkern u1="&" u2="v" k="37" /> + <hkern u1="&" u2="V" k="117" /> + <hkern u1="&" u2=" " k="82" /> + <hkern u1="'" u2="ï" k="-33" /> + <hkern u1="'" u2="î" k="-33" /> + <hkern u1="'" u2="ì" k="-33" /> + <hkern u1="(" u2="ƒ" k="-115" /> + <hkern u1="(" u2="ï" k="-37" /> + <hkern u1="(" u2="î" k="-25" /> + <hkern u1="(" u2="ì" k="-78" /> + <hkern u1="(" u2="ß" k="31" /> + <hkern u1="(" u2="x" k="12" /> + <hkern u1="(" u2="v" k="47" /> + <hkern u1="(" u2="g" k="29" /> + <hkern u1="(" u2="X" k="-16" /> + <hkern u1="(" u2="V" k="-29" /> + <hkern u1="(" u2="−" k="82" /> + <hkern u1="(" u2="+" k="115" /> + <hkern u1=")" u2="Ł" k="-16" /> + <hkern u1="*" u2="ƒ" k="61" /> + <hkern u1="*" u2="Ł" k="12" /> + <hkern u1="*" u2="ï" k="-49" /> + <hkern u1="*" u2="î" k="-66" /> + <hkern u1="*" u2="ì" k="-25" /> + <hkern u1="*" u2="x" k="-12" /> + <hkern u1="*" u2="v" k="-45" /> + <hkern u1="*" u2="X" k="12" /> + <hkern u1="*" u2="V" k="-41" /> + <hkern u1="+" u2="X" k="51" /> + <hkern u1="+" u2="V" k="94" /> + <hkern u1="+" u2=")" k="115" /> + <hkern u1="," u2="j" k="-25" /> + <hkern u1="," u2="g" k="33" /> + <hkern u1="." u2="g" k="33" /> + <hkern u1="/" u2="ƒ" k="123" /> + <hkern u1="/" u2="ž" k="66" /> + <hkern u1="/" u2="š" k="74" /> + <hkern u1="/" u2="ł" k="25" /> + <hkern u1="/" u2="Ł" k="31" /> + <hkern u1="/" u2="ö" k="221" /> + <hkern u1="/" u2="ò" k="203" /> + <hkern u1="/" u2="ð" k="221" /> + <hkern u1="/" u2="ï" k="-86" /> + <hkern u1="/" u2="î" k="-61" /> + <hkern u1="/" u2="í" k="8" /> + <hkern u1="/" u2="ì" k="-143" /> + <hkern u1="/" u2="ë" k="184" /> + <hkern u1="/" u2="è" k="184" /> + <hkern u1="/" u2="å" k="188" /> + <hkern u1="/" u2="ä" k="139" /> + <hkern u1="/" u2="ã" k="156" /> + <hkern u1="/" u2="â" k="184" /> + <hkern u1="/" u2="à" k="152" /> + <hkern u1="/" u2="ß" k="74" /> + <hkern u1="/" u2="x" k="41" /> + <hkern u1="/" u2="v" k="33" /> + <hkern u1="/" u2="X" k="-20" /> + <hkern u1="/" u2="V" k="-41" /> + <hkern u1="/" u2="/" k="115" /> + <hkern u1=";" u2="j" k="-25" /> + <hkern u1="<" u2="Ł" k="-12" /> + <hkern u1="<" u2="v" k="-37" /> + <hkern u1="<" u2="X" k="-12" /> + <hkern u1="<" u2="V" k="-12" /> + <hkern u1="=" u2="v" k="-12" /> + <hkern u1="=" u2="X" k="33" /> + <hkern u1="=" u2="V" k="57" /> + <hkern u1=">" u2="ł" k="-12" /> + <hkern u1=">" u2="x" k="12" /> + <hkern u1=">" u2="v" k="12" /> + <hkern u1=">" u2="X" k="102" /> + <hkern u1=">" u2="V" k="78" /> + <hkern u1="?" u2="Ł" k="12" /> + <hkern u1="?" u2="v" k="-16" /> + <hkern u1="?" u2="X" k="12" /> + <hkern u1="@" u2="ł" k="12" /> + <hkern u1="@" u2="Ł" k="-2" /> + <hkern u1="@" u2="î" k="-12" /> + <hkern u1="@" u2="ß" k="25" /> + <hkern u1="@" u2="x" k="2" /> + <hkern u1="@" u2="v" k="-12" /> + <hkern u1="@" u2="X" k="72" /> + <hkern u1="@" u2="V" k="66" /> + <hkern u1="B" u2="™" k="33" /> + <hkern u1="B" u2="•" k="8" /> + <hkern u1="B" u2="‡" k="-6" /> + <hkern u1="B" u2="†" k="-6" /> + <hkern u1="B" u2="Ł" k="-12" /> + <hkern u1="B" u2="ï" k="-6" /> + <hkern u1="B" u2="î" k="-6" /> + <hkern u1="B" u2="ß" k="31" /> + <hkern u1="B" u2="¿" k="45" /> + <hkern u1="B" u2="º" k="8" /> + <hkern u1="B" u2="·" k="6" /> + <hkern u1="B" u2="ª" k="12" /> + <hkern u1="B" u2="¡" k="12" /> + <hkern u1="B" u2="~" k="-6" /> + <hkern u1="B" u2="{" k="25" /> + <hkern u1="B" u2="v" k="4" /> + <hkern u1="B" u2="_" k="8" /> + <hkern u1="B" u2="\" k="70" /> + <hkern u1="B" u2="X" k="6" /> + <hkern u1="B" u2="V" k="12" /> + <hkern u1="B" u2=">" k="-27" /> + <hkern u1="B" u2="=" k="-6" /> + <hkern u1="B" u2="/" k="25" /> + <hkern u1="B" u2="+" k="4" /> + <hkern u1="B" u2="&" k="41" /> + <hkern u1="C" u2="î" k="-18" /> + <hkern u1="D" u2="ï" k="-6" /> + <hkern u1="D" u2="î" k="-6" /> + <hkern u1="E" u2="ï" k="-18" /> + <hkern u1="E" u2="î" k="-25" /> + <hkern u1="E" u2="ì" k="-27" /> + <hkern u1="F" u2="™" k="-23" /> + <hkern u1="F" u2="•" k="33" /> + <hkern u1="F" u2="‡" k="-41" /> + <hkern u1="F" u2="†" k="-41" /> + <hkern u1="F" u2="ƒ" k="131" /> + <hkern u1="F" u2="÷" k="6" /> + <hkern u1="F" u2="ï" k="-72" /> + <hkern u1="F" u2="î" k="-57" /> + <hkern u1="F" u2="í" k="16" /> + <hkern u1="F" u2="ì" k="-78" /> + <hkern u1="F" u2="ã" k="66" /> + <hkern u1="F" u2="ß" k="47" /> + <hkern u1="F" u2="×" k="12" /> + <hkern u1="F" u2="¿" k="156" /> + <hkern u1="F" u2="·" k="12" /> + <hkern u1="F" u2="¶" k="-16" /> + <hkern u1="F" u2="ª" k="12" /> + <hkern u1="F" u2="§" k="-16" /> + <hkern u1="F" u2="¦" k="-16" /> + <hkern u1="F" u2="¡" k="25" /> + <hkern u1="F" u2="~" k="41" /> + <hkern u1="F" u2="|" k="-41" /> + <hkern u1="F" u2="{" k="16" /> + <hkern u1="F" u2="x" k="31" /> + <hkern u1="F" u2="v" k="35" /> + <hkern u1="F" u2="_" k="156" /> + <hkern u1="F" u2="^" k="-8" /> + <hkern u1="F" u2="\" k="-49" /> + <hkern u1="F" u2="X" k="-18" /> + <hkern u1="F" u2="V" k="-18" /> + <hkern u1="F" u2="@" k="20" /> + <hkern u1="F" u2="?" k="-20" /> + <hkern u1="F" u2=">" k="-33" /> + <hkern u1="F" u2="=" k="12" /> + <hkern u1="F" u2="<" k="12" /> + <hkern u1="F" u2="/" k="143" /> + <hkern u1="F" u2="+" k="29" /> + <hkern u1="F" u2="*" k="-12" /> + <hkern u1="F" u2=")" k="-25" /> + <hkern u1="F" u2="&" k="70" /> + <hkern u1="G" u2="î" k="-4" /> + <hkern u1="H" u2="ï" k="-25" /> + <hkern u1="H" u2="î" k="-12" /> + <hkern u1="H" u2="ì" k="-25" /> + <hkern u1="I" u2="ï" k="-25" /> + <hkern u1="I" u2="î" k="-12" /> + <hkern u1="I" u2="ì" k="-25" /> + <hkern u1="J" u2="ï" k="-12" /> + <hkern u1="J" u2="î" k="-16" /> + <hkern u1="J" u2="ì" k="-12" /> + <hkern u1="K" u2="ï" k="-74" /> + <hkern u1="K" u2="î" k="-31" /> + <hkern u1="K" u2="ì" k="-37" /> + <hkern u1="M" u2="ï" k="-25" /> + <hkern u1="M" u2="î" k="-12" /> + <hkern u1="M" u2="ì" k="-25" /> + <hkern u1="N" u2="ï" k="-25" /> + <hkern u1="N" u2="î" k="-12" /> + <hkern u1="N" u2="ì" k="-25" /> + <hkern u1="O" u2="ï" k="-6" /> + <hkern u1="O" u2="î" k="-6" /> + <hkern u1="P" u2="™" k="12" /> + <hkern u1="P" u2="•" k="29" /> + <hkern u1="P" u2="‡" k="-41" /> + <hkern u1="P" u2="†" k="-41" /> + <hkern u1="P" u2="ƒ" k="111" /> + <hkern u1="P" u2="š" k="25" /> + <hkern u1="P" u2="ł" k="4" /> + <hkern u1="P" u2="ü" k="41" /> + <hkern u1="P" u2="û" k="41" /> + <hkern u1="P" u2="ú" k="41" /> + <hkern u1="P" u2="ù" k="41" /> + <hkern u1="P" u2="÷" k="8" /> + <hkern u1="P" u2="ï" k="-72" /> + <hkern u1="P" u2="î" k="-63" /> + <hkern u1="P" u2="ì" k="-12" /> + <hkern u1="P" u2="ß" k="43" /> + <hkern u1="P" u2="×" k="-8" /> + <hkern u1="P" u2="¿" k="176" /> + <hkern u1="P" u2="·" k="29" /> + <hkern u1="P" u2="¶" k="-29" /> + <hkern u1="P" u2="§" k="-8" /> + <hkern u1="P" u2="~" k="41" /> + <hkern u1="P" u2="{" k="41" /> + <hkern u1="P" u2="v" k="-6" /> + <hkern u1="P" u2="_" k="172" /> + <hkern u1="P" u2="\" k="25" /> + <hkern u1="P" u2="X" k="29" /> + <hkern u1="P" u2="V" k="6" /> + <hkern u1="P" u2="@" k="4" /> + <hkern u1="P" u2="?" k="-41" /> + <hkern u1="P" u2=">" k="-41" /> + <hkern u1="P" u2="<" k="25" /> + <hkern u1="P" u2="/" k="156" /> + <hkern u1="P" u2="+" k="49" /> + <hkern u1="P" u2="*" k="-20" /> + <hkern u1="P" u2=")" k="12" /> + <hkern u1="P" u2="&" k="70" /> + <hkern u1="Q" u2="™" k="41" /> + <hkern u1="Q" u2="‡" k="-12" /> + <hkern u1="Q" u2="†" k="-12" /> + <hkern u1="Q" u2="ƒ" k="16" /> + <hkern u1="Q" u2="Ł" k="-4" /> + <hkern u1="Q" u2="÷" k="-12" /> + <hkern u1="Q" u2="î" k="-6" /> + <hkern u1="Q" u2="ß" k="27" /> + <hkern u1="Q" u2="×" k="-12" /> + <hkern u1="Q" u2="¡" k="12" /> + <hkern u1="Q" u2="~" k="-12" /> + <hkern u1="Q" u2="x" k="-12" /> + <hkern u1="Q" u2="^" k="-12" /> + <hkern u1="Q" u2="\" k="90" /> + <hkern u1="Q" u2="X" k="43" /> + <hkern u1="Q" u2="V" k="57" /> + <hkern u1="Q" u2=">" k="-29" /> + <hkern u1="Q" u2="=" k="-12" /> + <hkern u1="Q" u2="<" k="-20" /> + <hkern u1="Q" u2="+" k="-12" /> + <hkern u1="Q" u2=")" k="45" /> + <hkern u1="Q" u2="&" k="25" /> + <hkern u1="Q" u2="!" k="12" /> + <hkern u1="R" u2="ï" k="-18" /> + <hkern u1="R" u2="î" k="-33" /> + <hkern u1="S" u2="ï" k="-8" /> + <hkern u1="S" u2="î" k="-8" /> + <hkern u1="T" u2="ž" k="49" /> + <hkern u1="T" u2="š" k="33" /> + <hkern u1="T" u2="ÿ" k="102" /> + <hkern u1="T" u2="ü" k="113" /> + <hkern u1="T" u2="û" k="133" /> + <hkern u1="T" u2="ï" k="-98" /> + <hkern u1="T" u2="î" k="-61" /> + <hkern u1="T" u2="í" k="59" /> + <hkern u1="T" u2="ì" k="-82" /> + <hkern u1="T" u2="å" k="121" /> + <hkern u1="T" u2="ä" k="74" /> + <hkern u1="T" u2="ã" k="92" /> + <hkern u1="T" u2="â" k="100" /> + <hkern u1="T" u2="à" k="88" /> + <hkern u1="U" u2="ï" k="-12" /> + <hkern u1="U" u2="î" k="-16" /> + <hkern u1="U" u2="ì" k="-12" /> + <hkern u1="V" u2="™" k="-25" /> + <hkern u1="V" u2="•" k="94" /> + <hkern u1="V" u2="‡" k="-20" /> + <hkern u1="V" u2="†" k="-29" /> + <hkern u1="V" u2="ƒ" k="147" /> + <hkern u1="V" u2="ł" k="25" /> + <hkern u1="V" u2="÷" k="57" /> + <hkern u1="V" u2="ï" k="-100" /> + <hkern u1="V" u2="î" k="-33" /> + <hkern u1="V" u2="í" k="25" /> + <hkern u1="V" u2="ì" k="-66" /> + <hkern u1="V" u2="è" k="119" /> + <hkern u1="V" u2="ã" k="94" /> + <hkern u1="V" u2="ß" k="68" /> + <hkern u1="V" u2="×" k="20" /> + <hkern u1="V" u2="¿" k="172" /> + <hkern u1="V" u2="º" k="6" /> + <hkern u1="V" u2="·" k="74" /> + <hkern u1="V" u2="ª" k="25" /> + <hkern u1="V" u2="§" k="12" /> + <hkern u1="V" u2="¦" k="-29" /> + <hkern u1="V" u2="¡" k="78" /> + <hkern u1="V" u2="~" k="94" /> + <hkern u1="V" u2="|" k="-29" /> + <hkern u1="V" u2="{" k="61" /> + <hkern u1="V" u2="x" k="23" /> + <hkern u1="V" u2="v" k="41" /> + <hkern u1="V" u2="_" k="139" /> + <hkern u1="V" u2="^" k="12" /> + <hkern u1="V" u2="\" k="-41" /> + <hkern u1="V" u2="X" k="-20" /> + <hkern u1="V" u2="V" k="-20" /> + <hkern u1="V" u2="@" k="66" /> + <hkern u1="V" u2="?" k="-8" /> + <hkern u1="V" u2="=" k="57" /> + <hkern u1="V" u2="<" k="78" /> + <hkern u1="V" u2="/" k="172" /> + <hkern u1="V" u2="+" k="94" /> + <hkern u1="V" u2="*" k="-41" /> + <hkern u1="V" u2=")" k="-29" /> + <hkern u1="V" u2="&" k="74" /> + <hkern u1="W" u2="ï" k="-102" /> + <hkern u1="W" u2="î" k="-45" /> + <hkern u1="W" u2="í" k="18" /> + <hkern u1="W" u2="ì" k="-70" /> + <hkern u1="X" u2="•" k="86" /> + <hkern u1="X" u2="ł" k="12" /> + <hkern u1="X" u2="÷" k="45" /> + <hkern u1="X" u2="ï" k="-39" /> + <hkern u1="X" u2="î" k="-20" /> + <hkern u1="X" u2="ì" k="-57" /> + <hkern u1="X" u2="ß" k="25" /> + <hkern u1="X" u2="×" k="33" /> + <hkern u1="X" u2="º" k="37" /> + <hkern u1="X" u2="·" k="74" /> + <hkern u1="X" u2="¶" k="12" /> + <hkern u1="X" u2="ª" k="37" /> + <hkern u1="X" u2="¦" k="-20" /> + <hkern u1="X" u2="¡" k="12" /> + <hkern u1="X" u2="~" k="53" /> + <hkern u1="X" u2="|" k="-29" /> + <hkern u1="X" u2="{" k="61" /> + <hkern u1="X" u2="x" k="-23" /> + <hkern u1="X" u2="v" k="68" /> + <hkern u1="X" u2="_" k="-37" /> + <hkern u1="X" u2="^" k="25" /> + <hkern u1="X" u2="\" k="-20" /> + <hkern u1="X" u2="V" k="-20" /> + <hkern u1="X" u2="@" k="63" /> + <hkern u1="X" u2="?" k="12" /> + <hkern u1="X" u2="=" k="33" /> + <hkern u1="X" u2="<" k="66" /> + <hkern u1="X" u2="/" k="-20" /> + <hkern u1="X" u2="+" k="51" /> + <hkern u1="X" u2="*" k="12" /> + <hkern u1="X" u2=")" k="-16" /> + <hkern u1="X" u2="&" k="57" /> + <hkern u1="Y" u2="š" k="80" /> + <hkern u1="Y" u2="ö" k="141" /> + <hkern u1="Y" u2="õ" k="199" /> + <hkern u1="Y" u2="ò" k="166" /> + <hkern u1="Y" u2="ð" k="190" /> + <hkern u1="Y" u2="ï" k="-57" /> + <hkern u1="Y" u2="î" k="-8" /> + <hkern u1="Y" u2="í" k="86" /> + <hkern u1="Y" u2="ì" k="-82" /> + <hkern u1="Y" u2="ë" k="172" /> + <hkern u1="Y" u2="è" k="172" /> + <hkern u1="Y" u2="ä" k="121" /> + <hkern u1="Y" u2="â" k="139" /> + <hkern u1="Y" u2="à" k="152" /> + <hkern u1="Z" u2="ï" k="-41" /> + <hkern u1="Z" u2="î" k="-41" /> + <hkern u1="Z" u2="ì" k="-49" /> + <hkern u1="[" u2="ï" k="-61" /> + <hkern u1="[" u2="î" k="-25" /> + <hkern u1="[" u2="ì" k="-106" /> + <hkern u1="\" u2="Ł" k="12" /> + <hkern u1="\" u2="x" k="-20" /> + <hkern u1="\" u2="v" k="57" /> + <hkern u1="\" u2="X" k="-20" /> + <hkern u1="\" u2="V" k="172" /> + <hkern u1="^" u2="v" k="-25" /> + <hkern u1="^" u2="X" k="25" /> + <hkern u1="^" u2="V" k="12" /> + <hkern u1="_" u2="ƒ" k="-135" /> + <hkern u1="_" u2="ł" k="25" /> + <hkern u1="_" u2="x" k="-49" /> + <hkern u1="_" u2="v" k="82" /> + <hkern u1="_" u2="X" k="-37" /> + <hkern u1="_" u2="V" k="139" /> + <hkern u1="f" u2="ï" k="-84" /> + <hkern u1="f" u2="î" k="-78" /> + <hkern u1="f" u2="ì" k="-98" /> + <hkern u1="f" u2="j" k="-33" /> + <hkern u1="f" u2="i" k="-12" /> + <hkern u1="i" u2="ï" k="-12" /> + <hkern u1="i" u2="î" k="-12" /> + <hkern u1="i" u2="ì" k="-12" /> + <hkern u1="l" u2="ï" k="-6" /> + <hkern u1="l" u2="î" k="-6" /> + <hkern u1="q" u2="™" k="61" /> + <hkern u1="v" u2="™" k="12" /> + <hkern u1="v" u2="‡" k="-61" /> + <hkern u1="v" u2="†" k="-61" /> + <hkern u1="v" u2="ƒ" k="25" /> + <hkern u1="v" u2="ł" k="-4" /> + <hkern u1="v" u2="÷" k="12" /> + <hkern u1="v" u2="×" k="-25" /> + <hkern u1="v" u2="¿" k="66" /> + <hkern u1="v" u2="º" k="-18" /> + <hkern u1="v" u2="¶" k="-53" /> + <hkern u1="v" u2="§" k="-25" /> + <hkern u1="v" u2="¦" k="-41" /> + <hkern u1="v" u2="¡" k="12" /> + <hkern u1="v" u2="|" k="-25" /> + <hkern u1="v" u2="x" k="-8" /> + <hkern u1="v" u2="v" k="-4" /> + <hkern u1="v" u2="_" k="82" /> + <hkern u1="v" u2="^" k="-25" /> + <hkern u1="v" u2="\" k="41" /> + <hkern u1="v" u2="@" k="-8" /> + <hkern u1="v" u2="?" k="-41" /> + <hkern u1="v" u2=">" k="-37" /> + <hkern u1="v" u2="=" k="-12" /> + <hkern u1="v" u2="<" k="12" /> + <hkern u1="v" u2="/" k="66" /> + <hkern u1="v" u2="*" k="-45" /> + <hkern u1="v" u2=")" k="47" /> + <hkern u1="v" u2="&" k="37" /> + <hkern u1="x" u2="™" k="20" /> + <hkern u1="x" u2="•" k="12" /> + <hkern u1="x" u2="‡" k="-33" /> + <hkern u1="x" u2="†" k="-33" /> + <hkern u1="x" u2="÷" k="12" /> + <hkern u1="x" u2="¿" k="-12" /> + <hkern u1="x" u2="·" k="20" /> + <hkern u1="x" u2="¶" k="-12" /> + <hkern u1="x" u2="ª" k="12" /> + <hkern u1="x" u2="¦" k="-12" /> + <hkern u1="x" u2="¡" k="-8" /> + <hkern u1="x" u2="~" k="12" /> + <hkern u1="x" u2="|" k="-29" /> + <hkern u1="x" u2="x" k="-4" /> + <hkern u1="x" u2="v" k="-8" /> + <hkern u1="x" u2="_" k="-49" /> + <hkern u1="x" u2="\" k="90" /> + <hkern u1="x" u2="@" k="-4" /> + <hkern u1="x" u2="?" k="-25" /> + <hkern u1="x" u2="<" k="12" /> + <hkern u1="x" u2="/" k="-41" /> + <hkern u1="x" u2="*" k="-12" /> + <hkern u1="x" u2=")" k="12" /> + <hkern u1="x" u2="&" k="33" /> + <hkern u1="{" u2="ï" k="-61" /> + <hkern u1="{" u2="î" k="-25" /> + <hkern u1="{" u2="ì" k="-106" /> + <hkern u1="{" u2="æ" k="10" /> + <hkern u1="{" u2="å" k="10" /> + <hkern u1="{" u2="ä" k="10" /> + <hkern u1="{" u2="ã" k="10" /> + <hkern u1="{" u2="â" k="10" /> + <hkern u1="{" u2="á" k="10" /> + <hkern u1="{" u2="à" k="10" /> + <hkern u1="{" u2="a" k="10" /> + <hkern u1="|" u2="x" k="-29" /> + <hkern u1="|" u2="v" k="-25" /> + <hkern u1="|" u2="X" k="-29" /> + <hkern u1="|" u2="V" k="-29" /> + <hkern u1="}" u2="Ł" k="-8" /> + <hkern u1="}" u2="X" k="8" /> + <hkern u1="}" u2="V" k="8" /> + <hkern u1="~" u2="x" k="12" /> + <hkern u1="~" u2="X" k="53" /> + <hkern u1="~" u2="V" k="94" /> + <hkern u1="¡" u2="ß" k="12" /> + <hkern u1="¡" u2="x" k="-8" /> + <hkern u1="¡" u2="v" k="12" /> + <hkern u1="¡" u2="X" k="12" /> + <hkern u1="¡" u2="V" k="78" /> + <hkern u1="¦" u2="x" k="-12" /> + <hkern u1="¦" u2="v" k="-41" /> + <hkern u1="¦" u2="X" k="-20" /> + <hkern u1="¦" u2="V" k="-29" /> + <hkern u1="§" u2="V" k="12" /> + <hkern u1="·" u2="x" k="20" /> + <hkern u1="·" u2="X" k="74" /> + <hkern u1="·" u2="V" k="74" /> + <hkern u1="¿" u2="ƒ" k="-74" /> + <hkern u1="¿" u2="ł" k="25" /> + <hkern u1="¿" u2="Ł" k="12" /> + <hkern u1="¿" u2="ß" k="37" /> + <hkern u1="¿" u2="v" k="80" /> + <hkern u1="¿" u2="V" k="190" /> + <hkern u1="¿" u2="9" k="37" /> + <hkern u1="Æ" u2="ï" k="-18" /> + <hkern u1="Æ" u2="î" k="-25" /> + <hkern u1="Æ" u2="ì" k="-27" /> + <hkern u1="Ç" u2="î" k="-18" /> + <hkern u1="È" u2="ï" k="-18" /> + <hkern u1="È" u2="î" k="-25" /> + <hkern u1="È" u2="ì" k="-27" /> + <hkern u1="É" u2="ï" k="-18" /> + <hkern u1="É" u2="î" k="-25" /> + <hkern u1="É" u2="ì" k="-27" /> + <hkern u1="Ê" u2="ï" k="-18" /> + <hkern u1="Ê" u2="î" k="-25" /> + <hkern u1="Ê" u2="ì" k="-27" /> + <hkern u1="Ë" u2="ï" k="-18" /> + <hkern u1="Ë" u2="î" k="-25" /> + <hkern u1="Ë" u2="ì" k="-27" /> + <hkern u1="Ì" u2="ï" k="-25" /> + <hkern u1="Ì" u2="î" k="-12" /> + <hkern u1="Ì" u2="ì" k="-25" /> + <hkern u1="Í" u2="ï" k="-25" /> + <hkern u1="Í" u2="î" k="-12" /> + <hkern u1="Í" u2="ì" k="-25" /> + <hkern u1="Í" u2="Ï" k="-41" /> + <hkern u1="Í" u2="Ì" k="-74" /> + <hkern u1="Î" u2="ï" k="-25" /> + <hkern u1="Î" u2="î" k="-12" /> + <hkern u1="Î" u2="ì" k="-25" /> + <hkern u1="Î" u2="Ï" k="-33" /> + <hkern u1="Î" u2="Î" k="-49" /> + <hkern u1="Î" u2="Ì" k="-25" /> + <hkern u1="Ï" u2="ï" k="-25" /> + <hkern u1="Ï" u2="î" k="-12" /> + <hkern u1="Ï" u2="ì" k="-25" /> + <hkern u1="Ï" u2="Ï" k="-16" /> + <hkern u1="Ï" u2="Î" k="-29" /> + <hkern u1="Ï" u2="Ì" k="-33" /> + <hkern u1="Ð" u2="ï" k="-6" /> + <hkern u1="Ð" u2="î" k="-6" /> + <hkern u1="Ñ" u2="ï" k="-25" /> + <hkern u1="Ñ" u2="î" k="-12" /> + <hkern u1="Ñ" u2="ì" k="-25" /> + <hkern u1="Ò" u2="ï" k="-6" /> + <hkern u1="Ò" u2="î" k="-6" /> + <hkern u1="Ó" u2="ï" k="-6" /> + <hkern u1="Ó" u2="î" k="-6" /> + <hkern u1="Ô" u2="ï" k="-6" /> + <hkern u1="Ô" u2="î" k="-6" /> + <hkern u1="Õ" u2="ï" k="-6" /> + <hkern u1="Õ" u2="î" k="-6" /> + <hkern u1="Ö" u2="ï" k="-6" /> + <hkern u1="Ö" u2="î" k="-6" /> + <hkern u1="×" u2="v" k="-25" /> + <hkern u1="×" u2="X" k="33" /> + <hkern u1="×" u2="V" k="20" /> + <hkern u1="Ø" u2="ï" k="-12" /> + <hkern u1="Ø" u2="î" k="-12" /> + <hkern u1="Ù" u2="ï" k="-12" /> + <hkern u1="Ù" u2="î" k="-16" /> + <hkern u1="Ù" u2="ì" k="-12" /> + <hkern u1="Ú" u2="ï" k="-12" /> + <hkern u1="Ú" u2="î" k="-16" /> + <hkern u1="Ú" u2="ì" k="-12" /> + <hkern u1="Û" u2="ï" k="-12" /> + <hkern u1="Û" u2="î" k="-16" /> + <hkern u1="Û" u2="ì" k="-12" /> + <hkern u1="Ü" u2="ï" k="-12" /> + <hkern u1="Ü" u2="î" k="-16" /> + <hkern u1="Ü" u2="ì" k="-12" /> + <hkern u1="Ý" u2="š" k="80" /> + <hkern u1="Ý" u2="ö" k="141" /> + <hkern u1="Ý" u2="õ" k="199" /> + <hkern u1="Ý" u2="ò" k="166" /> + <hkern u1="Ý" u2="ð" k="190" /> + <hkern u1="Ý" u2="ï" k="-57" /> + <hkern u1="Ý" u2="î" k="-8" /> + <hkern u1="Ý" u2="í" k="37" /> + <hkern u1="Ý" u2="ì" k="-82" /> + <hkern u1="Ý" u2="ë" k="172" /> + <hkern u1="Ý" u2="è" k="172" /> + <hkern u1="Ý" u2="ä" k="121" /> + <hkern u1="Ý" u2="â" k="139" /> + <hkern u1="Ý" u2="à" k="152" /> + <hkern u1="Þ" u2="™" k="74" /> + <hkern u1="Þ" u2="•" k="-12" /> + <hkern u1="Þ" u2="‡" k="-20" /> + <hkern u1="Þ" u2="†" k="-20" /> + <hkern u1="Þ" u2="ƒ" k="94" /> + <hkern u1="Þ" u2="ł" k="-29" /> + <hkern u1="Þ" u2="Ł" k="-12" /> + <hkern u1="Þ" u2="÷" k="-12" /> + <hkern u1="Þ" u2="ß" k="25" /> + <hkern u1="Þ" u2="×" k="-12" /> + <hkern u1="Þ" u2="¿" k="90" /> + <hkern u1="Þ" u2="·" k="-8" /> + <hkern u1="Þ" u2="~" k="-20" /> + <hkern u1="Þ" u2="x" k="-8" /> + <hkern u1="Þ" u2="v" k="-8" /> + <hkern u1="Þ" u2="_" k="86" /> + <hkern u1="Þ" u2="^" k="-12" /> + <hkern u1="Þ" u2="\" k="106" /> + <hkern u1="Þ" u2="X" k="66" /> + <hkern u1="Þ" u2="V" k="37" /> + <hkern u1="Þ" u2="@" k="-4" /> + <hkern u1="Þ" u2="?" k="-8" /> + <hkern u1="Þ" u2=">" k="-20" /> + <hkern u1="Þ" u2="=" k="-12" /> + <hkern u1="Þ" u2="<" k="-12" /> + <hkern u1="Þ" u2="/" k="119" /> + <hkern u1="Þ" u2="+" k="-12" /> + <hkern u1="Þ" u2=")" k="33" /> + <hkern u1="Þ" u2="&" k="33" /> + <hkern u1="ß" u2="™" k="37" /> + <hkern u1="ß" u2="‡" k="-12" /> + <hkern u1="ß" u2="ƒ" k="12" /> + <hkern u1="ß" u2="ł" k="-10" /> + <hkern u1="ß" u2="÷" k="-12" /> + <hkern u1="ß" u2="ï" k="-6" /> + <hkern u1="ß" u2="î" k="-6" /> + <hkern u1="ß" u2="ß" k="12" /> + <hkern u1="ß" u2="º" k="20" /> + <hkern u1="ß" u2="ª" k="41" /> + <hkern u1="ß" u2="v" k="12" /> + <hkern u1="ß" u2="_" k="-25" /> + <hkern u1="ß" u2="\" k="57" /> + <hkern u1="ß" u2=">" k="-61" /> + <hkern u1="ß" u2="=" k="-12" /> + <hkern u1="ß" u2="/" k="-8" /> + <hkern u1="ß" u2=")" k="-16" /> + <hkern u1="ß" u2="&" k="12" /> + <hkern u1="é" u2="\" k="131" /> + <hkern u1="ë" u2="\" k="131" /> + <hkern u1="ì" u2="™" k="37" /> + <hkern u1="ì" u2="\" k="53" /> + <hkern u1="í" u2="™" k="-49" /> + <hkern u1="í" u2="”" k="-98" /> + <hkern u1="í" u2="“" k="-49" /> + <hkern u1="í" u2="’" k="-98" /> + <hkern u1="í" u2="‘" k="-49" /> + <hkern u1="í" u2="š" k="-6" /> + <hkern u1="í" u2="ï" k="-125" /> + <hkern u1="í" u2="î" k="-82" /> + <hkern u1="í" u2="ì" k="-127" /> + <hkern u1="í" u2="}" k="-106" /> + <hkern u1="í" u2="|" k="-37" /> + <hkern u1="í" u2="i" k="-12" /> + <hkern u1="í" u2="]" k="-106" /> + <hkern u1="í" u2="\" k="-119" /> + <hkern u1="í" u2="?" k="-12" /> + <hkern u1="í" u2="*" k="-12" /> + <hkern u1="í" u2=")" k="-74" /> + <hkern u1="í" u2="'" k="-33" /> + <hkern u1="í" u2=""" k="-33" /> + <hkern u1="í" u2="!" k="-12" /> + <hkern u1="î" u2="™" k="-25" /> + <hkern u1="î" u2="†" k="-74" /> + <hkern u1="î" u2="”" k="-74" /> + <hkern u1="î" u2="“" k="-90" /> + <hkern u1="î" u2="’" k="-74" /> + <hkern u1="î" u2="‘" k="-90" /> + <hkern u1="î" u2="š" k="-6" /> + <hkern u1="î" u2="ï" k="-133" /> + <hkern u1="î" u2="î" k="-82" /> + <hkern u1="î" u2="ì" k="-37" /> + <hkern u1="î" u2="}" k="-25" /> + <hkern u1="î" u2="|" k="-25" /> + <hkern u1="î" u2="j" k="-12" /> + <hkern u1="î" u2="i" k="-18" /> + <hkern u1="î" u2="]" k="-25" /> + <hkern u1="î" u2="\" k="-53" /> + <hkern u1="î" u2="?" k="-94" /> + <hkern u1="î" u2="*" k="-74" /> + <hkern u1="î" u2=")" k="-25" /> + <hkern u1="î" u2="'" k="-33" /> + <hkern u1="î" u2="&" k="12" /> + <hkern u1="î" u2=""" k="-33" /> + <hkern u1="î" u2="!" k="-12" /> + <hkern u1="ï" u2="™" k="-49" /> + <hkern u1="ï" u2="†" k="-49" /> + <hkern u1="ï" u2="”" k="-86" /> + <hkern u1="ï" u2="“" k="-82" /> + <hkern u1="ï" u2="’" k="-86" /> + <hkern u1="ï" u2="‘" k="-82" /> + <hkern u1="ï" u2="š" k="-6" /> + <hkern u1="ï" u2="ï" k="-139" /> + <hkern u1="ï" u2="î" k="-119" /> + <hkern u1="ï" u2="ì" k="-127" /> + <hkern u1="ï" u2="ã" k="-12" /> + <hkern u1="ï" u2="}" k="-61" /> + <hkern u1="ï" u2="|" k="-25" /> + <hkern u1="ï" u2="j" k="-25" /> + <hkern u1="ï" u2="i" k="-25" /> + <hkern u1="ï" u2="]" k="-61" /> + <hkern u1="ï" u2="\" k="-70" /> + <hkern u1="ï" u2="?" k="-86" /> + <hkern u1="ï" u2="*" k="-70" /> + <hkern u1="ï" u2=")" k="-37" /> + <hkern u1="ï" u2="'" k="-33" /> + <hkern u1="ï" u2="&" k="12" /> + <hkern u1="ï" u2=""" k="-33" /> + <hkern u1="ï" u2="!" k="-12" /> + <hkern u1="ð" u2="”" k="57" /> + <hkern u1="ð" u2="“" k="57" /> + <hkern u1="ð" u2="’" k="57" /> + <hkern u1="ð" u2="‘" k="57" /> + <hkern u1="ð" u2="\" k="106" /> + <hkern u1="ó" u2="\" k="180" /> + <hkern u1="õ" u2="\" k="180" /> + <hkern u1="ö" u2="\" k="186" /> + <hkern u1="÷" u2="x" k="12" /> + <hkern u1="÷" u2="v" k="12" /> + <hkern u1="÷" u2="X" k="45" /> + <hkern u1="÷" u2="V" k="57" /> + <hkern u1="ł" u2="‡" k="-53" /> + <hkern u1="ł" u2="†" k="-37" /> + <hkern u1="ł" u2="ƒ" k="12" /> + <hkern u1="ł" u2="ł" k="-8" /> + <hkern u1="ł" u2="¿" k="12" /> + <hkern u1="ł" u2="º" k="-12" /> + <hkern u1="ł" u2="·" k="-8" /> + <hkern u1="ł" u2="¶" k="-16" /> + <hkern u1="ł" u2="x" k="-47" /> + <hkern u1="ł" u2="v" k="-37" /> + <hkern u1="ł" u2="@" k="-25" /> + <hkern u1="ł" u2="?" k="-12" /> + <hkern u1="ł" u2=">" k="-49" /> + <hkern u1="ł" u2="=" k="-25" /> + <hkern u1="ł" u2="/" k="-8" /> + <hkern u1="ł" u2="*" k="-25" /> + <hkern u1="ł" u2="&" k="25" /> + <hkern u1="Œ" u2="ï" k="-18" /> + <hkern u1="Œ" u2="î" k="-25" /> + <hkern u1="Œ" u2="ì" k="-27" /> + <hkern u1="Š" u2="ï" k="-8" /> + <hkern u1="Š" u2="î" k="-8" /> + <hkern u1="š" u2="\" k="86" /> + <hkern u1="Ÿ" u2="š" k="80" /> + <hkern u1="Ÿ" u2="ö" k="141" /> + <hkern u1="Ÿ" u2="õ" k="199" /> + <hkern u1="Ÿ" u2="ò" k="166" /> + <hkern u1="Ÿ" u2="ð" k="190" /> + <hkern u1="Ÿ" u2="ï" k="-57" /> + <hkern u1="Ÿ" u2="î" k="-8" /> + <hkern u1="Ÿ" u2="í" k="37" /> + <hkern u1="Ÿ" u2="ì" k="-82" /> + <hkern u1="Ÿ" u2="ë" k="172" /> + <hkern u1="Ÿ" u2="è" k="172" /> + <hkern u1="Ÿ" u2="ä" k="121" /> + <hkern u1="Ÿ" u2="â" k="139" /> + <hkern u1="Ÿ" u2="à" k="152" /> + <hkern u1="Ž" u2="ï" k="-41" /> + <hkern u1="Ž" u2="î" k="-41" /> + <hkern u1="Ž" u2="ì" k="-49" /> + <hkern u1="ž" u2="\" k="53" /> + <hkern u1="ƒ" u2="™" k="-25" /> + <hkern u1="ƒ" u2="‡" k="-16" /> + <hkern u1="ƒ" u2="†" k="-16" /> + <hkern u1="ƒ" u2="ƒ" k="160" /> + <hkern u1="ƒ" u2="÷" k="49" /> + <hkern u1="ƒ" u2="ï" k="-86" /> + <hkern u1="ƒ" u2="î" k="-61" /> + <hkern u1="ƒ" u2="ì" k="-86" /> + <hkern u1="ƒ" u2="×" k="-12" /> + <hkern u1="ƒ" u2="º" k="-12" /> + <hkern u1="ƒ" u2="¶" k="-16" /> + <hkern u1="ƒ" u2="ª" k="-12" /> + <hkern u1="ƒ" u2="¦" k="-25" /> + <hkern u1="ƒ" u2="~" k="53" /> + <hkern u1="ƒ" u2="x" k="8" /> + <hkern u1="ƒ" u2="v" k="8" /> + <hkern u1="ƒ" u2="_" k="57" /> + <hkern u1="ƒ" u2="\" k="-82" /> + <hkern u1="ƒ" u2="@" k="16" /> + <hkern u1="ƒ" u2="?" k="-25" /> + <hkern u1="ƒ" u2=">" k="-82" /> + <hkern u1="ƒ" u2="=" k="20" /> + <hkern u1="ƒ" u2="<" k="66" /> + <hkern u1="ƒ" u2="/" k="131" /> + <hkern u1="ƒ" u2="+" k="66" /> + <hkern u1="ƒ" u2="*" k="-61" /> + <hkern u1="ƒ" u2=")" k="-20" /> + <hkern u1="ƒ" u2="&" k="53" /> + <hkern u1="‘" u2="ð" k="88" /> + <hkern u1="‘" u2="ï" k="-86" /> + <hkern u1="‘" u2="î" k="-74" /> + <hkern u1="‘" u2="ì" k="-82" /> + <hkern u1="’" u2="ð" k="160" /> + <hkern u1="’" u2="ï" k="-25" /> + <hkern u1="’" u2="î" k="-33" /> + <hkern u1="’" u2="ì" k="-25" /> + <hkern u1="‚" u2="g" k="-20" /> + <hkern u1="“" u2="ð" k="88" /> + <hkern u1="“" u2="ï" k="-86" /> + <hkern u1="“" u2="î" k="-74" /> + <hkern u1="“" u2="ì" k="-82" /> + <hkern u1="”" u2="ð" k="160" /> + <hkern u1="”" u2="ï" k="-25" /> + <hkern u1="”" u2="î" k="-33" /> + <hkern u1="”" u2="ì" k="-25" /> + <hkern u1="„" u2="g" k="-20" /> + <hkern u1="†" u2="x" k="-33" /> + <hkern u1="†" u2="v" k="-61" /> + <hkern u1="†" u2="V" k="-29" /> + <hkern u1="‡" u2="ł" k="-12" /> + <hkern u1="‡" u2="Ł" k="-25" /> + <hkern u1="‡" u2="x" k="-33" /> + <hkern u1="‡" u2="v" k="-61" /> + <hkern u1="‡" u2="V" k="-20" /> + <hkern u1="•" u2="x" k="12" /> + <hkern u1="•" u2="X" k="86" /> + <hkern u1="•" u2="V" k="94" /> + <hkern u1="…" u2="g" k="33" /> + <hkern u1="−" u2=")" k="82" /> + <hkern g1="bracketleft,braceleft" + g2="hyphen,endash,emdash" + k="16" /> + <hkern g1="bracketleft,braceleft" + g2="minus" + k="33" /> + <hkern g1="bracketleft,braceleft" + g2="plus" + k="33" /> + <hkern g1="exclam" + g2="guilsinglright" + k="12" /> + <hkern g1="guilsinglleft" + g2="exclam" + k="12" /> + <hkern g1="hyphen,endash,emdash" + g2="bracketright,braceright" + k="16" /> + <hkern g1="hyphen,endash,emdash" + g2="parenright" + k="82" /> + <hkern g1="hyphen,endash,emdash" + g2="space" + k="102" /> + <hkern g1="parenleft" + g2="hyphen,endash,emdash" + k="82" /> + <hkern g1="questiondown" + g2="quoteleft,quotedblleft" + k="25" /> + <hkern g1="questiondown" + g2="quotesinglbase,quotedblbase" + k="-33" /> + <hkern g1="quoteright,quotedblright" + g2="comma,period,ellipsis" + k="57" /> + <hkern g1="quoteright,quotedblright" + g2="question" + k="-16" /> + <hkern g1="quoteright,quotedblright" + g2="questiondown" + k="49" /> + <hkern g1="minus" + g2="bracketright,braceright" + k="33" /> + <hkern g1="plus" + g2="bracketright,braceright" + k="33" /> + <hkern g1="space" + g2="hyphen,endash,emdash" + k="102" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="70" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="Eth" + k="12" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="J" + k="-8" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="Oslash" + k="53" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="S,Scaron,uni0405" + k="8" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="133" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="43" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="V,uni0423,uni0474" + k="125" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="86" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="X,uni0416,uni0425,uni046A" + k="37" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="Y,Yacute,Ydieresis,uni040E" + k="164" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="Z,Zcaron" + k="-18" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="10" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="ampersand" + k="53" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="asciicircum" + k="90" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="asciitilde" + k="41" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="asterisk" + k="176" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="at" + k="86" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="backslash" + k="156" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="braceleft" + k="16" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="bracketright,braceright" + k="12" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="bullet" + k="74" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="20" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="colon,semicolon" + k="12" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="copyright,registered" + k="70" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="dagger" + k="74" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="daggerdbl" + k="12" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="divide" + k="33" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="equal" + k="25" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="exclam" + k="25" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="exclamdown" + k="12" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="f,fi,fl,f_f_i,f_f_l" + k="25" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="germandbls" + k="4" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="greater" + k="-25" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="guilsinglleft" + k="66" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="guilsinglright" + k="12" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="hyphen,endash,emdash" + k="66" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="less" + k="41" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="m,n,p,r,ntilde" + k="4" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="multiply" + k="12" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="ordfeminine" + k="164" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="ordmasculine" + k="147" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="oslash" + k="10" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="paragraph" + k="78" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="parenleft" + k="8" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="parenright" + k="25" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="periodcentered" + k="66" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="plus" + k="49" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="question" + k="111" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="questiondown" + k="-49" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="quotedbl,quotesingle" + k="131" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="quoteleft,quotedblleft" + k="225" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="quoteright,quotedblright" + k="225" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="quotesinglbase,quotedblbase" + k="-8" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="section" + k="12" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="slash" + k="-41" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="t" + k="45" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="trademark" + k="225" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="39" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="underscore" + k="-61" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="86" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="w" + k="61" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="82" /> + <hkern g1="B,uni0411,uni0412,uni0417,uni0432" + g2="J" + k="-37" /> + <hkern g1="B,uni0411,uni0412,uni0417,uni0432" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="-6" /> + <hkern g1="B,uni0411,uni0412,uni0417,uni0432" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="12" /> + <hkern g1="B,uni0411,uni0412,uni0417,uni0432" + g2="Y,Yacute,Ydieresis,uni040E" + k="29" /> + <hkern g1="B,uni0411,uni0412,uni0417,uni0432" + g2="Z,Zcaron" + k="-12" /> + <hkern g1="B,uni0411,uni0412,uni0417,uni0432" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="2" /> + <hkern g1="B,uni0411,uni0412,uni0417,uni0432" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="-10" /> + <hkern g1="B,uni0411,uni0412,uni0417,uni0432" + g2="f,fi,fl,f_f_i,f_f_l" + k="4" /> + <hkern g1="B,uni0411,uni0412,uni0417,uni0432" + g2="guilsinglleft" + k="20" /> + <hkern g1="B,uni0411,uni0412,uni0417,uni0432" + g2="m,n,p,r,ntilde" + k="4" /> + <hkern g1="B,uni0411,uni0412,uni0417,uni0432" + g2="oslash" + k="-2" /> + <hkern g1="B,uni0411,uni0412,uni0417,uni0432" + g2="quoteright,quotedblright" + k="25" /> + <hkern g1="B,uni0411,uni0412,uni0417,uni0432" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="16" /> + <hkern g1="B,uni0411,uni0412,uni0417,uni0432" + g2="w" + k="4" /> + <hkern g1="B,uni0411,uni0412,uni0417,uni0432" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="4" /> + <hkern g1="B,uni0411,uni0412,uni0417,uni0432" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="35" /> + <hkern g1="B,uni0411,uni0412,uni0417,uni0432" + g2="comma,period,ellipsis" + k="12" /> + <hkern g1="B,uni0411,uni0412,uni0417,uni0432" + g2="s,scaron,uni0455" + k="4" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="14" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="Oslash" + k="10" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="16" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="12" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="V,uni0423,uni0474" + k="33" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="37" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="X,uni0416,uni0425,uni046A" + k="55" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="Y,Yacute,Ydieresis,uni040E" + k="63" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="29" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="ampersand" + k="37" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="asciicircum" + k="8" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="at" + k="25" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="backslash" + k="70" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="braceleft" + k="16" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="bracketright,braceright" + k="29" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="35" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="copyright,registered" + k="4" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="f,fi,fl,f_f_i,f_f_l" + k="14" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="germandbls" + k="41" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="greater" + k="-8" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="guilsinglleft" + k="45" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="guilsinglright" + k="12" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="hyphen,endash,emdash" + k="12" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="m,n,p,r,ntilde" + k="18" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="ordfeminine" + k="29" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="ordmasculine" + k="4" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="oslash" + k="25" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="parenright" + k="37" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="plus" + k="12" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="questiondown" + k="66" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="quoteleft,quotedblleft" + k="12" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="quoteright,quotedblright" + k="12" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="quotesinglbase,quotedblbase" + k="37" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="section" + k="16" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="slash" + k="70" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="t" + k="16" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="trademark" + k="20" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="41" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="underscore" + k="33" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="20" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="w" + k="20" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="25" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="59" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="comma,period,ellipsis" + k="45" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="s,scaron,uni0455" + k="8" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="b,h,k,l,thorn" + k="20" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="florin" + k="82" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="x,uni0445,uni04B3" + k="14" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="z,zcaron" + k="8" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="S,Scaron,uni0405" + k="4" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="39" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="V,uni0423,uni0474" + k="51" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="47" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="X,uni0416,uni0425,uni046A" + k="80" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="Y,Yacute,Ydieresis,uni040E" + k="98" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="Z,Zcaron" + k="20" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="ampersand" + k="66" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="asciicircum" + k="-20" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="asciitilde" + k="-20" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="asterisk" + k="4" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="backslash" + k="90" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="bracketright,braceright" + k="53" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="-6" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="copyright,registered" + k="-8" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="dagger" + k="-12" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="daggerdbl" + k="-12" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="divide" + k="-12" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="equal" + k="-12" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="exclam" + k="12" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="exclamdown" + k="12" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="f,fi,fl,f_f_i,f_f_l" + k="-23" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="germandbls" + k="31" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="greater" + k="-20" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="guilsinglleft" + k="16" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="guilsinglright" + k="20" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="less" + k="-12" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="multiply" + k="-12" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="ordfeminine" + k="20" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="parenright" + k="53" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="periodcentered" + k="-12" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="plus" + k="-12" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="questiondown" + k="78" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="quoteleft,quotedblleft" + k="29" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="quoteright,quotedblright" + k="33" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="quotesinglbase,quotedblbase" + k="102" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="slash" + k="90" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="t" + k="-45" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="trademark" + k="66" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="underscore" + k="82" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="70" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="comma,period,ellipsis" + k="74" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="b,h,k,l,thorn" + k="6" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="florin" + k="98" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="z,zcaron" + k="-6" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="Lslash" + k="-8" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="bracketleft" + k="4" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="lslash" + k="-10" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="4" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="J" + k="33" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="Oslash" + k="4" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="-25" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="V,uni0423,uni0474" + k="-6" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-6" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="X,uni0416,uni0425,uni046A" + k="-6" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="Y,Yacute,Ydieresis,uni040E" + k="-12" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="Z,Zcaron" + k="-25" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="12" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="ampersand" + k="25" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="at" + k="20" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="braceleft" + k="37" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="bracketright,braceright" + k="-12" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="23" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="dagger" + k="-12" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="daggerdbl" + k="-12" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="f,fi,fl,f_f_i,f_f_l" + k="4" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="germandbls" + k="23" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="greater" + k="-33" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="guilsinglleft" + k="41" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="guilsinglright" + k="8" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="hyphen,endash,emdash" + k="4" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="m,n,p,r,ntilde" + k="12" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="ordfeminine" + k="20" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="ordmasculine" + k="20" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="oslash" + k="23" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="parenright" + k="-8" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="plus" + k="12" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="quoteright,quotedblright" + k="4" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="18" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="25" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="w" + k="18" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="25" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="s,scaron,uni0455" + k="4" /> + <hkern g1="F" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="10" /> + <hkern g1="F" + g2="Eth" + k="-4" /> + <hkern g1="F" + g2="J" + k="76" /> + <hkern g1="F" + g2="Oslash" + k="6" /> + <hkern g1="F" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="-74" /> + <hkern g1="F" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="4" /> + <hkern g1="F" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-18" /> + <hkern g1="F" + g2="Y,Yacute,Ydieresis,uni040E" + k="-18" /> + <hkern g1="F" + g2="Z,Zcaron" + k="-33" /> + <hkern g1="F" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="72" /> + <hkern g1="F" + g2="bracketright,braceright" + k="-25" /> + <hkern g1="F" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="66" /> + <hkern g1="F" + g2="colon,semicolon" + k="12" /> + <hkern g1="F" + g2="f,fi,fl,f_f_i,f_f_l" + k="8" /> + <hkern g1="F" + g2="guilsinglleft" + k="41" /> + <hkern g1="F" + g2="guilsinglright" + k="20" /> + <hkern g1="F" + g2="hyphen,endash,emdash" + k="33" /> + <hkern g1="F" + g2="m,n,p,r,ntilde" + k="70" /> + <hkern g1="F" + g2="oslash" + k="76" /> + <hkern g1="F" + g2="quotedbl,quotesingle" + k="-41" /> + <hkern g1="F" + g2="quoteleft,quotedblleft" + k="-29" /> + <hkern g1="F" + g2="quoteright,quotedblright" + k="-12" /> + <hkern g1="F" + g2="quotesinglbase,quotedblbase" + k="139" /> + <hkern g1="F" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="80" /> + <hkern g1="F" + g2="w" + k="35" /> + <hkern g1="F" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="55" /> + <hkern g1="F" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="111" /> + <hkern g1="F" + g2="comma,period,ellipsis" + k="217" /> + <hkern g1="F" + g2="s,scaron,uni0455" + k="31" /> + <hkern g1="F" + g2="b,h,k,l,thorn" + k="-4" /> + <hkern g1="F" + g2="z,zcaron" + k="33" /> + <hkern g1="F" + g2="i,igrave,iacute,icircumflex,idieresis,uni0469" + k="4" /> + <hkern g1="F" + g2="j" + k="10" /> + <hkern g1="G" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="23" /> + <hkern g1="G" + g2="V,uni0423,uni0474" + k="37" /> + <hkern g1="G" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="33" /> + <hkern g1="G" + g2="X,uni0416,uni0425,uni046A" + k="6" /> + <hkern g1="G" + g2="Y,Yacute,Ydieresis,uni040E" + k="68" /> + <hkern g1="G" + g2="ampersand" + k="37" /> + <hkern g1="G" + g2="asciitilde" + k="-4" /> + <hkern g1="G" + g2="backslash" + k="78" /> + <hkern g1="G" + g2="braceleft" + k="8" /> + <hkern g1="G" + g2="bracketright,braceright" + k="12" /> + <hkern g1="G" + g2="exclamdown" + k="12" /> + <hkern g1="G" + g2="germandbls" + k="12" /> + <hkern g1="G" + g2="greater" + k="-29" /> + <hkern g1="G" + g2="guilsinglleft" + k="29" /> + <hkern g1="G" + g2="guilsinglright" + k="12" /> + <hkern g1="G" + g2="ordmasculine" + k="12" /> + <hkern g1="G" + g2="parenright" + k="12" /> + <hkern g1="G" + g2="question" + k="12" /> + <hkern g1="G" + g2="questiondown" + k="-16" /> + <hkern g1="G" + g2="quoteleft,quotedblleft" + k="12" /> + <hkern g1="G" + g2="quoteright,quotedblright" + k="16" /> + <hkern g1="G" + g2="slash" + k="-4" /> + <hkern g1="G" + g2="t" + k="-20" /> + <hkern g1="G" + g2="trademark" + k="33" /> + <hkern g1="G" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="4" /> + <hkern g1="G" + g2="underscore" + k="-20" /> + <hkern g1="G" + g2="s,scaron,uni0455" + k="-12" /> + <hkern g1="G" + g2="x,uni0445,uni04B3" + k="-6" /> + <hkern g1="G" + g2="lslash" + k="-16" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="4" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="ampersand" + k="12" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="at" + k="8" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="braceleft" + k="25" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="bullet" + k="8" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="6" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="germandbls" + k="18" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="greater" + k="-8" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="guilsinglleft" + k="8" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="ordfeminine" + k="25" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="ordmasculine" + k="12" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="oslash" + k="12" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="questiondown" + k="25" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="6" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="w" + k="6" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="lslash" + k="12" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="J" + k="6" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="-6" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="X,uni0416,uni0425,uni046A" + k="6" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="6" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="ampersand" + k="29" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="asciitilde" + k="4" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="at" + k="16" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="backslash" + k="12" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="braceleft" + k="41" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="bracketright,braceright" + k="12" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="bullet" + k="41" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="10" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="colon,semicolon" + k="10" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="divide" + k="4" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="equal" + k="6" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="exclamdown" + k="33" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="germandbls" + k="33" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="guilsinglleft" + k="33" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="guilsinglright" + k="12" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="hyphen,endash,emdash" + k="4" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="less" + k="4" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="m,n,p,r,ntilde" + k="10" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="ordfeminine" + k="12" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="ordmasculine" + k="12" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="oslash" + k="10" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="parenright" + k="12" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="periodcentered" + k="20" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="plus" + k="4" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="questiondown" + k="78" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="quotesinglbase,quotedblbase" + k="82" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="slash" + k="78" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="trademark" + k="12" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="12" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="underscore" + k="37" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="55" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="comma,period,ellipsis" + k="70" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="s,scaron,uni0455" + k="6" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="florin" + k="102" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="lslash" + k="12" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="106" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="Eth" + k="37" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="J" + k="29" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="Oslash" + k="66" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="S,Scaron,uni0405" + k="27" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="-6" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="14" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="V,uni0423,uni0474" + k="12" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="12" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="Z,Zcaron" + k="-12" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="43" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="ampersand" + k="82" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="asciicircum" + k="41" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="asciitilde" + k="135" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="asterisk" + k="8" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="at" + k="94" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="backslash" + k="-25" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="braceleft" + k="94" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="bracketright,braceright" + k="-4" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="bullet" + k="90" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="84" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="colon,semicolon" + k="20" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="copyright,registered" + k="119" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="divide" + k="61" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="equal" + k="66" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="f,fi,fl,f_f_i,f_f_l" + k="47" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="germandbls" + k="53" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="greater" + k="-37" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="guilsinglleft" + k="127" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="guilsinglright" + k="63" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="hyphen,endash,emdash" + k="150" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="less" + k="127" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="m,n,p,r,ntilde" + k="25" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="multiply" + k="20" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="ordfeminine" + k="82" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="ordmasculine" + k="74" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="oslash" + k="45" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="paragraph" + k="49" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="parenleft" + k="25" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="parenright" + k="-4" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="periodcentered" + k="82" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="plus" + k="70" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="question" + k="29" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="questiondown" + k="-45" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="quoteleft,quotedblleft" + k="37" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="quoteright,quotedblright" + k="12" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="section" + k="25" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="slash" + k="-29" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="t" + k="92" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="trademark" + k="-12" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="113" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="underscore" + k="-53" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="129" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="w" + k="104" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="141" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="8" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="s,scaron,uni0455" + k="20" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="florin" + k="41" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="x,uni0445,uni04B3" + k="8" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="lslash" + k="12" /> + <hkern g1="L,Lslash" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="47" /> + <hkern g1="L,Lslash" + g2="J" + k="-35" /> + <hkern g1="L,Lslash" + g2="Oslash" + k="29" /> + <hkern g1="L,Lslash" + g2="S,Scaron,uni0405" + k="-6" /> + <hkern g1="L,Lslash" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="143" /> + <hkern g1="L,Lslash" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="20" /> + <hkern g1="L,Lslash" + g2="V,uni0423,uni0474" + k="135" /> + <hkern g1="L,Lslash" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="96" /> + <hkern g1="L,Lslash" + g2="Y,Yacute,Ydieresis,uni040E" + k="145" /> + <hkern g1="L,Lslash" + g2="Z,Zcaron" + k="-37" /> + <hkern g1="L,Lslash" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="-12" /> + <hkern g1="L,Lslash" + g2="ampersand" + k="33" /> + <hkern g1="L,Lslash" + g2="asciicircum" + k="78" /> + <hkern g1="L,Lslash" + g2="asciitilde" + k="41" /> + <hkern g1="L,Lslash" + g2="asterisk" + k="143" /> + <hkern g1="L,Lslash" + g2="at" + k="23" /> + <hkern g1="L,Lslash" + g2="backslash" + k="180" /> + <hkern g1="L,Lslash" + g2="braceleft" + k="25" /> + <hkern g1="L,Lslash" + g2="bracketright,braceright" + k="-8" /> + <hkern g1="L,Lslash" + g2="bullet" + k="29" /> + <hkern g1="L,Lslash" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="-2" /> + <hkern g1="L,Lslash" + g2="copyright,registered" + k="29" /> + <hkern g1="L,Lslash" + g2="dagger" + k="25" /> + <hkern g1="L,Lslash" + g2="divide" + k="-4" /> + <hkern g1="L,Lslash" + g2="equal" + k="4" /> + <hkern g1="L,Lslash" + g2="f,fi,fl,f_f_i,f_f_l" + k="20" /> + <hkern g1="L,Lslash" + g2="germandbls" + k="4" /> + <hkern g1="L,Lslash" + g2="greater" + k="-37" /> + <hkern g1="L,Lslash" + g2="guilsinglleft" + k="41" /> + <hkern g1="L,Lslash" + g2="hyphen,endash,emdash" + k="45" /> + <hkern g1="L,Lslash" + g2="less" + k="45" /> + <hkern g1="L,Lslash" + g2="multiply" + k="-12" /> + <hkern g1="L,Lslash" + g2="ordfeminine" + k="115" /> + <hkern g1="L,Lslash" + g2="ordmasculine" + k="115" /> + <hkern g1="L,Lslash" + g2="oslash" + k="4" /> + <hkern g1="L,Lslash" + g2="paragraph" + k="90" /> + <hkern g1="L,Lslash" + g2="parenright" + k="-8" /> + <hkern g1="L,Lslash" + g2="periodcentered" + k="25" /> + <hkern g1="L,Lslash" + g2="plus" + k="29" /> + <hkern g1="L,Lslash" + g2="question" + k="111" /> + <hkern g1="L,Lslash" + g2="questiondown" + k="-49" /> + <hkern g1="L,Lslash" + g2="quotedbl,quotesingle" + k="139" /> + <hkern g1="L,Lslash" + g2="quoteleft,quotedblleft" + k="168" /> + <hkern g1="L,Lslash" + g2="quoteright,quotedblright" + k="147" /> + <hkern g1="L,Lslash" + g2="quotesinglbase,quotedblbase" + k="-66" /> + <hkern g1="L,Lslash" + g2="slash" + k="-70" /> + <hkern g1="L,Lslash" + g2="t" + k="49" /> + <hkern g1="L,Lslash" + g2="trademark" + k="238" /> + <hkern g1="L,Lslash" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="29" /> + <hkern g1="L,Lslash" + g2="underscore" + k="-74" /> + <hkern g1="L,Lslash" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="94" /> + <hkern g1="L,Lslash" + g2="w" + k="76" /> + <hkern g1="L,Lslash" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="98" /> + <hkern g1="L,Lslash" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="-16" /> + <hkern g1="L,Lslash" + g2="comma,period,ellipsis" + k="-20" /> + <hkern g1="L,Lslash" + g2="s,scaron,uni0455" + k="-18" /> + <hkern g1="L,Lslash" + g2="z,zcaron" + k="-18" /> + <hkern g1="L,Lslash" + g2="j" + k="-12" /> + <hkern g1="L,Lslash" + g2="bar" + k="-16" /> + <hkern g1="L,Lslash" + g2="brokenbar" + k="-16" /> + <hkern g1="Oslash" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="29" /> + <hkern g1="Oslash" + g2="V,uni0423,uni0474" + k="47" /> + <hkern g1="Oslash" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="49" /> + <hkern g1="Oslash" + g2="X,uni0416,uni0425,uni046A" + k="61" /> + <hkern g1="Oslash" + g2="Y,Yacute,Ydieresis,uni040E" + k="96" /> + <hkern g1="Oslash" + g2="Z,Zcaron" + k="14" /> + <hkern g1="Oslash" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="4" /> + <hkern g1="Oslash" + g2="ampersand" + k="25" /> + <hkern g1="Oslash" + g2="backslash" + k="70" /> + <hkern g1="Oslash" + g2="bracketright,braceright" + k="53" /> + <hkern g1="Oslash" + g2="dagger" + k="-12" /> + <hkern g1="Oslash" + g2="daggerdbl" + k="-12" /> + <hkern g1="Oslash" + g2="equal" + k="-12" /> + <hkern g1="Oslash" + g2="f,fi,fl,f_f_i,f_f_l" + k="-12" /> + <hkern g1="Oslash" + g2="germandbls" + k="43" /> + <hkern g1="Oslash" + g2="guilsinglright" + k="12" /> + <hkern g1="Oslash" + g2="ordfeminine" + k="8" /> + <hkern g1="Oslash" + g2="parenright" + k="53" /> + <hkern g1="Oslash" + g2="questiondown" + k="90" /> + <hkern g1="Oslash" + g2="quotesinglbase,quotedblbase" + k="74" /> + <hkern g1="Oslash" + g2="slash" + k="90" /> + <hkern g1="Oslash" + g2="trademark" + k="25" /> + <hkern g1="Oslash" + g2="underscore" + k="82" /> + <hkern g1="Oslash" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="63" /> + <hkern g1="Oslash" + g2="comma,period,ellipsis" + k="74" /> + <hkern g1="Oslash" + g2="florin" + k="70" /> + <hkern g1="Oslash" + g2="lslash" + k="-4" /> + <hkern g1="P,uni0420" + g2="Eth" + k="-8" /> + <hkern g1="P,uni0420" + g2="J" + k="131" /> + <hkern g1="P,uni0420" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="-2" /> + <hkern g1="P,uni0420" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="10" /> + <hkern g1="P,uni0420" + g2="Y,Yacute,Ydieresis,uni040E" + k="29" /> + <hkern g1="P,uni0420" + g2="Z,Zcaron" + k="8" /> + <hkern g1="P,uni0420" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="37" /> + <hkern g1="P,uni0420" + g2="bracketright,braceright" + k="12" /> + <hkern g1="P,uni0420" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="63" /> + <hkern g1="P,uni0420" + g2="f,fi,fl,f_f_i,f_f_l" + k="-16" /> + <hkern g1="P,uni0420" + g2="guilsinglleft" + k="49" /> + <hkern g1="P,uni0420" + g2="guilsinglright" + k="-8" /> + <hkern g1="P,uni0420" + g2="hyphen,endash,emdash" + k="20" /> + <hkern g1="P,uni0420" + g2="m,n,p,r,ntilde" + k="25" /> + <hkern g1="P,uni0420" + g2="oslash" + k="66" /> + <hkern g1="P,uni0420" + g2="quotedbl,quotesingle" + k="-20" /> + <hkern g1="P,uni0420" + g2="quoteleft,quotedblleft" + k="-12" /> + <hkern g1="P,uni0420" + g2="quoteright,quotedblright" + k="-8" /> + <hkern g1="P,uni0420" + g2="quotesinglbase,quotedblbase" + k="139" /> + <hkern g1="P,uni0420" + g2="t" + k="-20" /> + <hkern g1="P,uni0420" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="41" /> + <hkern g1="P,uni0420" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-8" /> + <hkern g1="P,uni0420" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="117" /> + <hkern g1="P,uni0420" + g2="comma,period,ellipsis" + k="283" /> + <hkern g1="P,uni0420" + g2="s,scaron,uni0455" + k="33" /> + <hkern g1="P,uni0420" + g2="b,h,k,l,thorn" + k="14" /> + <hkern g1="P,uni0420" + g2="z,zcaron" + k="8" /> + <hkern g1="P,uni0420" + g2="j" + k="4" /> + <hkern g1="P,uni0420" + g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Ntilde,Thorn,IJ,uni01C4,uni01C7,uni01CA,uni01F1" + k="6" /> + <hkern g1="Q" + g2="Eth" + k="-4" /> + <hkern g1="Q" + g2="J" + k="-4" /> + <hkern g1="Q" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="35" /> + <hkern g1="Q" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="47" /> + <hkern g1="Q" + g2="Y,Yacute,Ydieresis,uni040E" + k="94" /> + <hkern g1="Q" + g2="Z,Zcaron" + k="-6" /> + <hkern g1="Q" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="-8" /> + <hkern g1="Q" + g2="bracketright,braceright" + k="45" /> + <hkern g1="Q" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="-6" /> + <hkern g1="Q" + g2="f,fi,fl,f_f_i,f_f_l" + k="-12" /> + <hkern g1="Q" + g2="guilsinglleft" + k="12" /> + <hkern g1="Q" + g2="guilsinglright" + k="25" /> + <hkern g1="Q" + g2="quoteleft,quotedblleft" + k="25" /> + <hkern g1="Q" + g2="quoteright,quotedblright" + k="33" /> + <hkern g1="Q" + g2="t" + k="-18" /> + <hkern g1="Q" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="6" /> + <hkern g1="Q" + g2="w" + k="4" /> + <hkern g1="Q" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="4" /> + <hkern g1="Q" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="12" /> + <hkern g1="Q" + g2="comma,period,ellipsis" + k="45" /> + <hkern g1="Q" + g2="z,zcaron" + k="-6" /> + <hkern g1="Q" + g2="j" + k="-25" /> + <hkern g1="R" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="10" /> + <hkern g1="R" + g2="J" + k="25" /> + <hkern g1="R" + g2="Oslash" + k="4" /> + <hkern g1="R" + g2="V,uni0423,uni0474" + k="10" /> + <hkern g1="R" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="16" /> + <hkern g1="R" + g2="Y,Yacute,Ydieresis,uni040E" + k="20" /> + <hkern g1="R" + g2="Z,Zcaron" + k="-6" /> + <hkern g1="R" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="16" /> + <hkern g1="R" + g2="ampersand" + k="29" /> + <hkern g1="R" + g2="asciicircum" + k="-8" /> + <hkern g1="R" + g2="asciitilde" + k="8" /> + <hkern g1="R" + g2="asterisk" + k="-8" /> + <hkern g1="R" + g2="at" + k="18" /> + <hkern g1="R" + g2="backslash" + k="47" /> + <hkern g1="R" + g2="braceleft" + k="20" /> + <hkern g1="R" + g2="bracketright,braceright" + k="-8" /> + <hkern g1="R" + g2="bullet" + k="29" /> + <hkern g1="R" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="29" /> + <hkern g1="R" + g2="dagger" + k="-33" /> + <hkern g1="R" + g2="daggerdbl" + k="-33" /> + <hkern g1="R" + g2="divide" + k="12" /> + <hkern g1="R" + g2="f,fi,fl,f_f_i,f_f_l" + k="-6" /> + <hkern g1="R" + g2="germandbls" + k="12" /> + <hkern g1="R" + g2="greater" + k="-45" /> + <hkern g1="R" + g2="guilsinglleft" + k="37" /> + <hkern g1="R" + g2="hyphen,endash,emdash" + k="29" /> + <hkern g1="R" + g2="less" + k="4" /> + <hkern g1="R" + g2="m,n,p,r,ntilde" + k="4" /> + <hkern g1="R" + g2="multiply" + k="-12" /> + <hkern g1="R" + g2="ordfeminine" + k="16" /> + <hkern g1="R" + g2="oslash" + k="37" /> + <hkern g1="R" + g2="parenright" + k="-4" /> + <hkern g1="R" + g2="periodcentered" + k="4" /> + <hkern g1="R" + g2="plus" + k="20" /> + <hkern g1="R" + g2="quoteleft,quotedblleft" + k="-8" /> + <hkern g1="R" + g2="t" + k="-18" /> + <hkern g1="R" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="23" /> + <hkern g1="R" + g2="underscore" + k="-29" /> + <hkern g1="R" + g2="w" + k="8" /> + <hkern g1="R" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="4" /> + <hkern g1="R" + g2="comma,period,ellipsis" + k="29" /> + <hkern g1="R" + g2="s,scaron,uni0455" + k="4" /> + <hkern g1="R" + g2="florin" + k="41" /> + <hkern g1="R" + g2="x,uni0445,uni04B3" + k="-8" /> + <hkern g1="R" + g2="lslash" + k="10" /> + <hkern g1="S,Scaron,uni0405" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="4" /> + <hkern g1="S,Scaron,uni0405" + g2="J" + k="-8" /> + <hkern g1="S,Scaron,uni0405" + g2="Oslash" + k="4" /> + <hkern g1="S,Scaron,uni0405" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="4" /> + <hkern g1="S,Scaron,uni0405" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="4" /> + <hkern g1="S,Scaron,uni0405" + g2="V,uni0423,uni0474" + k="6" /> + <hkern g1="S,Scaron,uni0405" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="6" /> + <hkern g1="S,Scaron,uni0405" + g2="X,uni0416,uni0425,uni046A" + k="25" /> + <hkern g1="S,Scaron,uni0405" + g2="Y,Yacute,Ydieresis,uni040E" + k="39" /> + <hkern g1="S,Scaron,uni0405" + g2="Z,Zcaron" + k="-12" /> + <hkern g1="S,Scaron,uni0405" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="4" /> + <hkern g1="S,Scaron,uni0405" + g2="ampersand" + k="25" /> + <hkern g1="S,Scaron,uni0405" + g2="asciicircum" + k="4" /> + <hkern g1="S,Scaron,uni0405" + g2="backslash" + k="45" /> + <hkern g1="S,Scaron,uni0405" + g2="braceleft" + k="16" /> + <hkern g1="S,Scaron,uni0405" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="8" /> + <hkern g1="S,Scaron,uni0405" + g2="colon,semicolon" + k="12" /> + <hkern g1="S,Scaron,uni0405" + g2="daggerdbl" + k="-12" /> + <hkern g1="S,Scaron,uni0405" + g2="exclamdown" + k="12" /> + <hkern g1="S,Scaron,uni0405" + g2="f,fi,fl,f_f_i,f_f_l" + k="12" /> + <hkern g1="S,Scaron,uni0405" + g2="germandbls" + k="43" /> + <hkern g1="S,Scaron,uni0405" + g2="greater" + k="-20" /> + <hkern g1="S,Scaron,uni0405" + g2="guilsinglleft" + k="4" /> + <hkern g1="S,Scaron,uni0405" + g2="guilsinglright" + k="4" /> + <hkern g1="S,Scaron,uni0405" + g2="hyphen,endash,emdash" + k="4" /> + <hkern g1="S,Scaron,uni0405" + g2="m,n,p,r,ntilde" + k="31" /> + <hkern g1="S,Scaron,uni0405" + g2="multiply" + k="4" /> + <hkern g1="S,Scaron,uni0405" + g2="ordfeminine" + k="33" /> + <hkern g1="S,Scaron,uni0405" + g2="ordmasculine" + k="20" /> + <hkern g1="S,Scaron,uni0405" + g2="oslash" + k="8" /> + <hkern g1="S,Scaron,uni0405" + g2="parenright" + k="12" /> + <hkern g1="S,Scaron,uni0405" + g2="questiondown" + k="25" /> + <hkern g1="S,Scaron,uni0405" + g2="quoteleft,quotedblleft" + k="12" /> + <hkern g1="S,Scaron,uni0405" + g2="quotesinglbase,quotedblbase" + k="25" /> + <hkern g1="S,Scaron,uni0405" + g2="slash" + k="37" /> + <hkern g1="S,Scaron,uni0405" + g2="t" + k="-10" /> + <hkern g1="S,Scaron,uni0405" + g2="trademark" + k="25" /> + <hkern g1="S,Scaron,uni0405" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="27" /> + <hkern g1="S,Scaron,uni0405" + g2="underscore" + k="8" /> + <hkern g1="S,Scaron,uni0405" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="41" /> + <hkern g1="S,Scaron,uni0405" + g2="w" + k="29" /> + <hkern g1="S,Scaron,uni0405" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="45" /> + <hkern g1="S,Scaron,uni0405" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="29" /> + <hkern g1="S,Scaron,uni0405" + g2="comma,period,ellipsis" + k="12" /> + <hkern g1="S,Scaron,uni0405" + g2="b,h,k,l,thorn" + k="10" /> + <hkern g1="S,Scaron,uni0405" + g2="florin" + k="90" /> + <hkern g1="S,Scaron,uni0405" + g2="x,uni0445,uni04B3" + k="12" /> + <hkern g1="S,Scaron,uni0405" + g2="z,zcaron" + k="4" /> + <hkern g1="S,Scaron,uni0405" + g2="Lslash" + k="-4" /> + <hkern g1="S,Scaron,uni0405" + g2="lslash" + k="-6" /> + <hkern g1="S,Scaron,uni0405" + g2="i,igrave,iacute,icircumflex,idieresis,uni0469" + k="4" /> + <hkern g1="S,Scaron,uni0405" + g2="j" + k="4" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="39" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="J" + k="164" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="Oslash" + k="29" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="-41" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="-6" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="V,uni0423,uni0474" + k="-41" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-41" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="X,uni0416,uni0425,uni046A" + k="-6" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="Y,Yacute,Ydieresis,uni040E" + k="-41" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="Z,Zcaron" + k="-25" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="174" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="ampersand" + k="74" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="asciitilde" + k="131" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="asterisk" + k="-41" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="at" + k="51" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="backslash" + k="-57" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="braceleft" + k="74" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="bracketright,braceright" + k="-16" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="bullet" + k="168" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="195" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="colon,semicolon" + k="104" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="copyright,registered" + k="20" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="dagger" + k="-53" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="daggerdbl" + k="-45" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="divide" + k="86" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="equal" + k="61" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="exclamdown" + k="49" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="f,fi,fl,f_f_i,f_f_l" + k="33" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="germandbls" + k="66" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="greater" + k="-16" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="guilsinglleft" + k="233" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="guilsinglright" + k="127" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="hyphen,endash,emdash" + k="135" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="less" + k="106" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="m,n,p,r,ntilde" + k="147" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="multiply" + k="45" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="oslash" + k="166" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="paragraph" + k="-33" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="parenright" + k="-16" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="periodcentered" + k="102" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="plus" + k="115" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="question" + k="-29" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="questiondown" + k="160" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="quotedbl,quotesingle" + k="-49" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="quoteleft,quotedblleft" + k="-61" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="quoteright,quotedblright" + k="-61" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="quotesinglbase,quotedblbase" + k="188" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="section" + k="-16" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="slash" + k="180" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="t" + k="45" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="trademark" + k="-49" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="170" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="underscore" + k="94" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="119" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="w" + k="123" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="119" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="133" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="comma,period,ellipsis" + k="229" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="s,scaron,uni0455" + k="143" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="b,h,k,l,thorn" + k="-6" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="florin" + k="188" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="x,uni0445,uni04B3" + k="98" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="z,zcaron" + k="74" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="lslash" + k="41" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="i,igrave,iacute,icircumflex,idieresis,uni0469" + k="16" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="j" + k="8" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="bar" + k="-29" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="brokenbar" + k="-41" /> + <hkern g1="Thorn" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="-4" /> + <hkern g1="Thorn" + g2="Eth" + k="-12" /> + <hkern g1="Thorn" + g2="J" + k="23" /> + <hkern g1="Thorn" + g2="Oslash" + k="-4" /> + <hkern g1="Thorn" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="47" /> + <hkern g1="Thorn" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="37" /> + <hkern g1="Thorn" + g2="Y,Yacute,Ydieresis,uni040E" + k="78" /> + <hkern g1="Thorn" + g2="Z,Zcaron" + k="14" /> + <hkern g1="Thorn" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="-14" /> + <hkern g1="Thorn" + g2="bracketright,braceright" + k="33" /> + <hkern g1="Thorn" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="-14" /> + <hkern g1="Thorn" + g2="f,fi,fl,f_f_i,f_f_l" + k="-29" /> + <hkern g1="Thorn" + g2="oslash" + k="4" /> + <hkern g1="Thorn" + g2="quoteleft,quotedblleft" + k="25" /> + <hkern g1="Thorn" + g2="quotesinglbase,quotedblbase" + k="82" /> + <hkern g1="Thorn" + g2="t" + k="-33" /> + <hkern g1="Thorn" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="6" /> + <hkern g1="Thorn" + g2="w" + k="-8" /> + <hkern g1="Thorn" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-8" /> + <hkern g1="Thorn" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="94" /> + <hkern g1="Thorn" + g2="comma,period,ellipsis" + k="74" /> + <hkern g1="Thorn" + g2="s,scaron,uni0455" + k="-8" /> + <hkern g1="Thorn" + g2="z,zcaron" + k="-16" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="51" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="J" + k="131" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="Oslash" + k="51" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="S,Scaron,uni0405" + k="10" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="-41" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-20" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="Y,Yacute,Ydieresis,uni040E" + k="-20" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="125" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="bracketright,braceright" + k="-29" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="131" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="colon,semicolon" + k="106" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="copyright,registered" + k="57" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="f,fi,fl,f_f_i,f_f_l" + k="6" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="guilsinglleft" + k="135" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="guilsinglright" + k="70" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="hyphen,endash,emdash" + k="131" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="m,n,p,r,ntilde" + k="98" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="oslash" + k="131" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="quotedbl,quotesingle" + k="-29" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="quoteleft,quotedblleft" + k="-20" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="quoteright,quotedblright" + k="-16" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="quotesinglbase,quotedblbase" + k="213" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="t" + k="16" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="90" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="w" + k="33" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="35" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="125" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="comma,period,ellipsis" + k="242" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="s,scaron,uni0455" + k="90" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="z,zcaron" + k="35" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="47" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="Eth" + k="6" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="J" + k="115" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="Oslash" + k="53" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="S,Scaron,uni0405" + k="6" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="-41" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="V,uni0423,uni0474" + k="-20" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-20" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="X,uni0416,uni0425,uni046A" + k="-20" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="Y,Yacute,Ydieresis,uni040E" + k="-20" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="Z,Zcaron" + k="-6" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="61" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="ampersand" + k="49" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="asciitilde" + k="41" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="asterisk" + k="-20" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="at" + k="41" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="backslash" + k="-41" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="braceleft" + k="49" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="bracketright,braceright" + k="-16" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="bullet" + k="49" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="78" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="colon,semicolon" + k="33" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="copyright,registered" + k="25" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="dagger" + k="-25" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="daggerdbl" + k="-12" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="divide" + k="47" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="equal" + k="20" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="exclamdown" + k="45" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="f,fi,fl,f_f_i,f_f_l" + k="6" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="germandbls" + k="61" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="greater" + k="-25" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="guilsinglleft" + k="98" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="guilsinglright" + k="20" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="hyphen,endash,emdash" + k="57" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="less" + k="41" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="m,n,p,r,ntilde" + k="61" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="multiply" + k="12" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="oslash" + k="86" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="parenright" + k="-16" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="periodcentered" + k="49" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="plus" + k="61" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="questiondown" + k="147" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="quotedbl,quotesingle" + k="-16" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="quoteleft,quotedblleft" + k="-29" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="quoteright,quotedblright" + k="-29" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="quotesinglbase,quotedblbase" + k="176" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="slash" + k="147" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="t" + k="4" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="trademark" + k="-41" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="68" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="underscore" + k="98" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="16" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="w" + k="20" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="35" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="86" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="comma,period,ellipsis" + k="180" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="s,scaron,uni0455" + k="41" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="florin" + k="123" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="x,uni0445,uni04B3" + k="6" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="z,zcaron" + k="10" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="lslash" + k="12" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="bar" + k="-29" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="brokenbar" + k="-29" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="72" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="J" + k="57" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="Oslash" + k="61" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="S,Scaron,uni0405" + k="25" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="-6" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="6" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-20" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="Y,Yacute,Ydieresis,uni040E" + k="-20" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="Z,Zcaron" + k="-8" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="25" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="bracketright,braceright" + k="-16" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="76" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="colon,semicolon" + k="25" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="copyright,registered" + k="98" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="f,fi,fl,f_f_i,f_f_l" + k="12" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="guilsinglleft" + k="164" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="guilsinglright" + k="61" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="hyphen,endash,emdash" + k="131" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="m,n,p,r,ntilde" + k="6" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="oslash" + k="45" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="quotedbl,quotesingle" + k="-8" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="quoteleft,quotedblleft" + k="-8" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="quoteright,quotedblright" + k="-8" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="t" + k="37" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="57" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="w" + k="63" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="68" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="37" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="comma,period,ellipsis" + k="12" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="s,scaron,uni0455" + k="25" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="z,zcaron" + k="-4" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="98" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="Eth" + k="25" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="J" + k="184" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="Oslash" + k="88" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="S,Scaron,uni0405" + k="39" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="-41" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="V,uni0423,uni0474" + k="-20" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-20" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="X,uni0416,uni0425,uni046A" + k="-20" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="Y,Yacute,Ydieresis,uni040E" + k="-20" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="Z,Zcaron" + k="-4" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="164" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="ampersand" + k="139" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="asciicircum" + k="25" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="asciitilde" + k="135" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="asterisk" + k="12" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="at" + k="106" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="backslash" + k="-33" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="braceleft" + k="66" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="bracketright,braceright" + k="-16" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="bullet" + k="180" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="203" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="colon,semicolon" + k="154" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="copyright,registered" + k="82" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="divide" + k="115" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="equal" + k="74" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="exclamdown" + k="98" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="f,fi,fl,f_f_i,f_f_l" + k="57" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="germandbls" + k="100" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="guilsinglleft" + k="238" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="guilsinglright" + k="111" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="hyphen,endash,emdash" + k="188" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="less" + k="147" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="m,n,p,r,ntilde" + k="135" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="multiply" + k="61" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="ordfeminine" + k="25" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="ordmasculine" + k="25" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="oslash" + k="184" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="parenright" + k="-16" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="periodcentered" + k="135" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="plus" + k="127" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="questiondown" + k="205" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="quotedbl,quotesingle" + k="-8" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="quoteleft,quotedblleft" + k="-16" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="quoteright,quotedblright" + k="-16" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="quotesinglbase,quotedblbase" + k="242" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="slash" + k="217" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="t" + k="51" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="trademark" + k="-25" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="141" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="underscore" + k="160" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="100" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="w" + k="109" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="92" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="164" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="comma,period,ellipsis" + k="266" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="s,scaron,uni0455" + k="145" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="b,h,k,l,thorn" + k="6" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="florin" + k="184" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="x,uni0445,uni04B3" + k="74" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="z,zcaron" + k="90" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="Lslash" + k="25" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="lslash" + k="25" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="i,igrave,iacute,icircumflex,idieresis,uni0469" + k="16" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="j" + k="4" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="bar" + k="-20" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="brokenbar" + k="-20" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="41" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="Oslash" + k="23" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="-37" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="X,uni0416,uni0425,uni046A" + k="-8" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="Y,Yacute,Ydieresis,uni040E" + k="-4" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="ampersand" + k="25" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="asciitilde" + k="12" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="at" + k="12" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="bullet" + k="33" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="16" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="copyright,registered" + k="12" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="dagger" + k="-12" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="daggerdbl" + k="-12" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="divide" + k="12" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="f,fi,fl,f_f_i,f_f_l" + k="-18" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="germandbls" + k="4" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="guilsinglleft" + k="57" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="hyphen,endash,emdash" + k="61" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="less" + k="18" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="multiply" + k="-12" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="oslash" + k="12" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="periodcentered" + k="33" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="plus" + k="14" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="question" + k="-4" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="questiondown" + k="-12" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="trademark" + k="-12" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="16" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="underscore" + k="-33" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="6" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="w" + k="10" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="16" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="florin" + k="16" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="bar" + k="-12" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="brokenbar" + k="-12" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="6" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="ampersand" + k="45" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="asterisk" + k="41" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="at" + k="20" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="backslash" + k="123" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="bracketright,braceright" + k="12" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="bullet" + k="6" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="4" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="colon,semicolon" + k="6" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="dagger" + k="12" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="daggerdbl" + k="12" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="exclam" + k="25" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="ordfeminine" + k="33" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="ordmasculine" + k="25" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="paragraph" + k="12" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="parenright" + k="12" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="question" + k="25" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="quotedbl,quotesingle" + k="25" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="quoteleft,quotedblleft" + k="70" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="quoteright,quotedblright" + k="41" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="t" + k="6" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="trademark" + k="113" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="14" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="underscore" + k="-37" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="18" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="w" + k="12" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="27" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="ampersand" + k="45" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="asterisk" + k="57" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="backslash" + k="193" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="bracketright,braceright" + k="66" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="colon,semicolon" + k="16" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="dagger" + k="12" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="daggerdbl" + k="-12" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="exclam" + k="25" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="ordfeminine" + k="47" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="ordmasculine" + k="25" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="parenright" + k="66" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="question" + k="57" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="quotedbl,quotesingle" + k="53" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="quoteleft,quotedblleft" + k="82" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="quoteright,quotedblright" + k="82" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="t" + k="4" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="trademark" + k="152" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="4" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="underscore" + k="53" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="31" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="w" + k="27" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="47" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="asciitilde" + k="-12" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="comma,period,ellipsis" + k="37" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="exclamdown" + k="25" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="florin" + k="49" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="germandbls" + k="4" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="guilsinglright" + k="12" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="lslash" + k="-16" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="questiondown" + k="49" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="quotesinglbase,quotedblbase" + k="33" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="slash" + k="74" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="x,uni0445,uni04B3" + k="39" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="z,zcaron" + k="4" /> + <hkern g1="c,ccedilla,uni0441" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="4" /> + <hkern g1="c,ccedilla,uni0441" + g2="ampersand" + k="41" /> + <hkern g1="c,ccedilla,uni0441" + g2="asterisk" + k="33" /> + <hkern g1="c,ccedilla,uni0441" + g2="at" + k="4" /> + <hkern g1="c,ccedilla,uni0441" + g2="backslash" + k="156" /> + <hkern g1="c,ccedilla,uni0441" + g2="bracketright,braceright" + k="25" /> + <hkern g1="c,ccedilla,uni0441" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="10" /> + <hkern g1="c,ccedilla,uni0441" + g2="ordfeminine" + k="27" /> + <hkern g1="c,ccedilla,uni0441" + g2="ordmasculine" + k="20" /> + <hkern g1="c,ccedilla,uni0441" + g2="parenright" + k="37" /> + <hkern g1="c,ccedilla,uni0441" + g2="question" + k="12" /> + <hkern g1="c,ccedilla,uni0441" + g2="quotedbl,quotesingle" + k="37" /> + <hkern g1="c,ccedilla,uni0441" + g2="quoteleft,quotedblleft" + k="57" /> + <hkern g1="c,ccedilla,uni0441" + g2="quoteright,quotedblright" + k="49" /> + <hkern g1="c,ccedilla,uni0441" + g2="trademark" + k="111" /> + <hkern g1="c,ccedilla,uni0441" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="16" /> + <hkern g1="c,ccedilla,uni0441" + g2="underscore" + k="8" /> + <hkern g1="c,ccedilla,uni0441" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="23" /> + <hkern g1="c,ccedilla,uni0441" + g2="w" + k="23" /> + <hkern g1="c,ccedilla,uni0441" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="23" /> + <hkern g1="c,ccedilla,uni0441" + g2="comma,period,ellipsis" + k="12" /> + <hkern g1="c,ccedilla,uni0441" + g2="questiondown" + k="20" /> + <hkern g1="c,ccedilla,uni0441" + g2="quotesinglbase,quotedblbase" + k="14" /> + <hkern g1="c,ccedilla,uni0441" + g2="slash" + k="37" /> + <hkern g1="c,ccedilla,uni0441" + g2="x,uni0445,uni04B3" + k="16" /> + <hkern g1="c,ccedilla,uni0441" + g2="hyphen,endash,emdash" + k="6" /> + <hkern g1="c,ccedilla,uni0441" + g2="oslash" + k="10" /> + <hkern g1="d,l,fl" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="6" /> + <hkern g1="d,l,fl" + g2="ampersand" + k="25" /> + <hkern g1="d,l,fl" + g2="backslash" + k="12" /> + <hkern g1="d,l,fl" + g2="dagger" + k="-12" /> + <hkern g1="d,l,fl" + g2="daggerdbl" + k="-12" /> + <hkern g1="d,l,fl" + g2="ordfeminine" + k="25" /> + <hkern g1="d,l,fl" + g2="ordmasculine" + k="12" /> + <hkern g1="d,l,fl" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="4" /> + <hkern g1="d,l,fl" + g2="comma,period,ellipsis" + k="12" /> + <hkern g1="d,l,fl" + g2="exclamdown" + k="12" /> + <hkern g1="d,l,fl" + g2="germandbls" + k="4" /> + <hkern g1="d,l,fl" + g2="questiondown" + k="12" /> + <hkern g1="d,l,fl" + g2="guilsinglleft" + k="12" /> + <hkern g1="d,l,fl" + g2="periodcentered" + k="12" /> + <hkern g1="d,l,fl" + g2="plus" + k="25" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="ampersand" + k="37" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="asterisk" + k="41" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="backslash" + k="156" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="bracketright,braceright" + k="33" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="ordfeminine" + k="37" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="ordmasculine" + k="25" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="paragraph" + k="12" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="parenright" + k="45" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="question" + k="45" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="quotedbl,quotesingle" + k="33" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="quoteleft,quotedblleft" + k="70" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="quoteright,quotedblright" + k="82" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="trademark" + k="156" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="12" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="underscore" + k="8" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="20" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="w" + k="16" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="14" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="comma,period,ellipsis" + k="25" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="exclamdown" + k="12" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="germandbls" + k="4" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="lslash" + k="-8" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="questiondown" + k="41" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="quotesinglbase,quotedblbase" + k="20" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="slash" + k="18" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="x,uni0445,uni04B3" + k="16" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="divide" + k="-12" /> + <hkern g1="f" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="12" /> + <hkern g1="f" + g2="asterisk" + k="-82" /> + <hkern g1="f" + g2="at" + k="-18" /> + <hkern g1="f" + g2="backslash" + k="-74" /> + <hkern g1="f" + g2="bracketright,braceright" + k="-45" /> + <hkern g1="f" + g2="bullet" + k="8" /> + <hkern g1="f" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="23" /> + <hkern g1="f" + g2="colon,semicolon" + k="-25" /> + <hkern g1="f" + g2="dagger" + k="-106" /> + <hkern g1="f" + g2="daggerdbl" + k="-98" /> + <hkern g1="f" + g2="exclam" + k="-37" /> + <hkern g1="f" + g2="ordfeminine" + k="-12" /> + <hkern g1="f" + g2="ordmasculine" + k="-25" /> + <hkern g1="f" + g2="paragraph" + k="-86" /> + <hkern g1="f" + g2="parenright" + k="-49" /> + <hkern g1="f" + g2="question" + k="-66" /> + <hkern g1="f" + g2="quotedbl,quotesingle" + k="-102" /> + <hkern g1="f" + g2="quoteleft,quotedblleft" + k="-94" /> + <hkern g1="f" + g2="quoteright,quotedblright" + k="-78" /> + <hkern g1="f" + g2="t" + k="-43" /> + <hkern g1="f" + g2="trademark" + k="-66" /> + <hkern g1="f" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="4" /> + <hkern g1="f" + g2="underscore" + k="66" /> + <hkern g1="f" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="-27" /> + <hkern g1="f" + g2="w" + k="-27" /> + <hkern g1="f" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-49" /> + <hkern g1="f" + g2="asciitilde" + k="8" /> + <hkern g1="f" + g2="comma,period,ellipsis" + k="127" /> + <hkern g1="f" + g2="exclamdown" + k="-12" /> + <hkern g1="f" + g2="guilsinglright" + k="-25" /> + <hkern g1="f" + g2="lslash" + k="-8" /> + <hkern g1="f" + g2="questiondown" + k="70" /> + <hkern g1="f" + g2="quotesinglbase,quotedblbase" + k="106" /> + <hkern g1="f" + g2="slash" + k="25" /> + <hkern g1="f" + g2="x,uni0445,uni04B3" + k="-33" /> + <hkern g1="f" + g2="z,zcaron" + k="-45" /> + <hkern g1="f" + g2="hyphen,endash,emdash" + k="16" /> + <hkern g1="f" + g2="oslash" + k="23" /> + <hkern g1="f" + g2="guilsinglleft" + k="20" /> + <hkern g1="f" + g2="periodcentered" + k="-12" /> + <hkern g1="f" + g2="plus" + k="8" /> + <hkern g1="f" + g2="asciicircum" + k="-53" /> + <hkern g1="f" + g2="bar" + k="-61" /> + <hkern g1="f" + g2="brokenbar" + k="-82" /> + <hkern g1="f" + g2="copyright,registered" + k="-20" /> + <hkern g1="f" + g2="f,fi,fl,f_f_i,f_f_l" + k="-2" /> + <hkern g1="f" + g2="greater" + k="-86" /> + <hkern g1="f" + g2="j" + k="-20" /> + <hkern g1="f" + g2="multiply" + k="-41" /> + <hkern g1="f" + g2="s,scaron,uni0455" + k="-12" /> + <hkern g1="f" + g2="section" + k="-53" /> + <hkern g1="g" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="10" /> + <hkern g1="g" + g2="ampersand" + k="41" /> + <hkern g1="g" + g2="backslash" + k="106" /> + <hkern g1="g" + g2="bracketright,braceright" + k="25" /> + <hkern g1="g" + g2="exclam" + k="12" /> + <hkern g1="g" + g2="ordfeminine" + k="35" /> + <hkern g1="g" + g2="ordmasculine" + k="6" /> + <hkern g1="g" + g2="parenright" + k="25" /> + <hkern g1="g" + g2="question" + k="12" /> + <hkern g1="g" + g2="quoteleft,quotedblleft" + k="12" /> + <hkern g1="g" + g2="quoteright,quotedblright" + k="37" /> + <hkern g1="g" + g2="trademark" + k="61" /> + <hkern g1="g" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="10" /> + <hkern g1="g" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="6" /> + <hkern g1="g" + g2="w" + k="10" /> + <hkern g1="g" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="10" /> + <hkern g1="g" + g2="comma,period,ellipsis" + k="12" /> + <hkern g1="g" + g2="germandbls" + k="12" /> + <hkern g1="g" + g2="hyphen,endash,emdash" + k="6" /> + <hkern g1="g" + g2="guilsinglleft" + k="25" /> + <hkern g1="g" + g2="divide" + k="4" /> + <hkern g1="germandbls" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="-6" /> + <hkern g1="germandbls" + g2="bracketright,braceright" + k="-16" /> + <hkern g1="germandbls" + g2="quoteleft,quotedblleft" + k="12" /> + <hkern g1="germandbls" + g2="t" + k="6" /> + <hkern g1="germandbls" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="16" /> + <hkern g1="germandbls" + g2="w" + k="12" /> + <hkern g1="germandbls" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="4" /> + <hkern g1="germandbls" + g2="oslash" + k="-6" /> + <hkern g1="germandbls" + g2="s,scaron,uni0455" + k="-6" /> + <hkern g1="h,m,n,ntilde,uni04BB" + g2="ampersand" + k="25" /> + <hkern g1="h,m,n,ntilde,uni04BB" + g2="asterisk" + k="8" /> + <hkern g1="h,m,n,ntilde,uni04BB" + g2="at" + k="16" /> + <hkern g1="h,m,n,ntilde,uni04BB" + g2="backslash" + k="139" /> + <hkern g1="h,m,n,ntilde,uni04BB" + g2="colon,semicolon" + k="6" /> + <hkern g1="h,m,n,ntilde,uni04BB" + g2="dagger" + k="18" /> + <hkern g1="h,m,n,ntilde,uni04BB" + g2="ordfeminine" + k="33" /> + <hkern g1="h,m,n,ntilde,uni04BB" + g2="ordmasculine" + k="25" /> + <hkern g1="h,m,n,ntilde,uni04BB" + g2="question" + k="37" /> + <hkern g1="h,m,n,ntilde,uni04BB" + g2="quotedbl,quotesingle" + k="12" /> + <hkern g1="h,m,n,ntilde,uni04BB" + g2="quoteleft,quotedblleft" + k="57" /> + <hkern g1="h,m,n,ntilde,uni04BB" + g2="quoteright,quotedblright" + k="90" /> + <hkern g1="h,m,n,ntilde,uni04BB" + g2="trademark" + k="143" /> + <hkern g1="h,m,n,ntilde,uni04BB" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="8" /> + <hkern g1="h,m,n,ntilde,uni04BB" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="18" /> + <hkern g1="h,m,n,ntilde,uni04BB" + g2="w" + k="6" /> + <hkern g1="h,m,n,ntilde,uni04BB" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="18" /> + <hkern g1="h,m,n,ntilde,uni04BB" + g2="exclamdown" + k="6" /> + <hkern g1="h,m,n,ntilde,uni04BB" + g2="germandbls" + k="8" /> + <hkern g1="h,m,n,ntilde,uni04BB" + g2="periodcentered" + k="6" /> + <hkern g1="h,m,n,ntilde,uni04BB" + g2="copyright,registered" + k="4" /> + <hkern g1="h,m,n,ntilde,uni04BB" + g2="equal" + k="4" /> + <hkern g1="i,q,igrave,iacute,icircumflex,idieresis,fi,f_f_i" + g2="ampersand" + k="25" /> + <hkern g1="i,q,igrave,iacute,icircumflex,idieresis,fi,f_f_i" + g2="backslash" + k="61" /> + <hkern g1="i,q,igrave,iacute,icircumflex,idieresis,fi,f_f_i" + g2="question" + k="12" /> + <hkern g1="i,q,igrave,iacute,icircumflex,idieresis,fi,f_f_i" + g2="trademark" + k="12" /> + <hkern g1="i,q,igrave,iacute,icircumflex,idieresis,fi,f_f_i" + g2="exclamdown" + k="12" /> + <hkern g1="i,q,igrave,iacute,icircumflex,idieresis,fi,f_f_i" + g2="quotesinglbase,quotedblbase" + k="12" /> + <hkern g1="i,q,igrave,iacute,icircumflex,idieresis,fi,f_f_i" + g2="guilsinglleft" + k="12" /> + <hkern g1="j" + g2="ampersand" + k="25" /> + <hkern g1="j" + g2="at" + k="4" /> + <hkern g1="j" + g2="backslash" + k="12" /> + <hkern g1="j" + g2="dagger" + k="-25" /> + <hkern g1="j" + g2="daggerdbl" + k="-41" /> + <hkern g1="j" + g2="ordfeminine" + k="12" /> + <hkern g1="j" + g2="quoteright,quotedblright" + k="-12" /> + <hkern g1="j" + g2="asciitilde" + k="12" /> + <hkern g1="j" + g2="comma,period,ellipsis" + k="12" /> + <hkern g1="j" + g2="germandbls" + k="10" /> + <hkern g1="j" + g2="guilsinglleft" + k="12" /> + <hkern g1="j" + g2="periodcentered" + k="12" /> + <hkern g1="j" + g2="f,fi,fl,f_f_i,f_f_l" + k="-6" /> + <hkern g1="j" + g2="greater" + k="-25" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="25" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="ampersand" + k="41" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="asterisk" + k="8" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="at" + k="10" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="backslash" + k="70" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="bracketright,braceright" + k="25" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="bullet" + k="29" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="45" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="colon,semicolon" + k="23" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="dagger" + k="-33" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="daggerdbl" + k="-33" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="paragraph" + k="-25" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="parenright" + k="25" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="quoteleft,quotedblleft" + k="-12" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="quoteright,quotedblright" + k="8" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="trademark" + k="66" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="10" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="underscore" + k="-74" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="37" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="asciitilde" + k="16" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="comma,period,ellipsis" + k="12" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="exclamdown" + k="-8" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="guilsinglright" + k="-12" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="questiondown" + k="-37" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="quotesinglbase,quotedblbase" + k="-29" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="slash" + k="-41" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="z,zcaron" + k="-4" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="hyphen,endash,emdash" + k="61" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="oslash" + k="25" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="guilsinglleft" + k="74" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="periodcentered" + k="12" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="plus" + k="33" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="divide" + k="20" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="asciicircum" + k="12" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="brokenbar" + k="-25" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="copyright,registered" + k="12" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="f,fi,fl,f_f_i,f_f_l" + k="-6" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="greater" + k="-94" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="multiply" + k="-16" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="braceleft" + k="8" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="less" + k="53" /> + <hkern g1="lslash" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="-20" /> + <hkern g1="lslash" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="-2" /> + <hkern g1="lslash" + g2="colon,semicolon" + k="-12" /> + <hkern g1="lslash" + g2="quotedbl,quotesingle" + k="-25" /> + <hkern g1="lslash" + g2="t" + k="-41" /> + <hkern g1="lslash" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="-6" /> + <hkern g1="lslash" + g2="w" + k="-33" /> + <hkern g1="lslash" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-41" /> + <hkern g1="lslash" + g2="comma,period,ellipsis" + k="49" /> + <hkern g1="lslash" + g2="quotesinglbase,quotedblbase" + k="49" /> + <hkern g1="lslash" + g2="z,zcaron" + k="-41" /> + <hkern g1="lslash" + g2="hyphen,endash,emdash" + k="-12" /> + <hkern g1="lslash" + g2="oslash" + k="-4" /> + <hkern g1="lslash" + g2="guilsinglleft" + k="-4" /> + <hkern g1="lslash" + g2="copyright,registered" + k="-16" /> + <hkern g1="lslash" + g2="f,fi,fl,f_f_i,f_f_l" + k="-51" /> + <hkern g1="lslash" + g2="s,scaron,uni0455" + k="-20" /> + <hkern g1="oslash" + g2="ampersand" + k="33" /> + <hkern g1="oslash" + g2="backslash" + k="156" /> + <hkern g1="oslash" + g2="bracketright,braceright" + k="33" /> + <hkern g1="oslash" + g2="parenright" + k="45" /> + <hkern g1="oslash" + g2="quotedbl,quotesingle" + k="16" /> + <hkern g1="oslash" + g2="quoteleft,quotedblleft" + k="53" /> + <hkern g1="oslash" + g2="quoteright,quotedblright" + k="41" /> + <hkern g1="oslash" + g2="trademark" + k="25" /> + <hkern g1="oslash" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="6" /> + <hkern g1="oslash" + g2="underscore" + k="53" /> + <hkern g1="oslash" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="27" /> + <hkern g1="oslash" + g2="w" + k="27" /> + <hkern g1="oslash" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="33" /> + <hkern g1="oslash" + g2="comma,period,ellipsis" + k="37" /> + <hkern g1="oslash" + g2="exclamdown" + k="12" /> + <hkern g1="oslash" + g2="germandbls" + k="12" /> + <hkern g1="oslash" + g2="guilsinglright" + k="12" /> + <hkern g1="oslash" + g2="lslash" + k="-4" /> + <hkern g1="oslash" + g2="questiondown" + k="37" /> + <hkern g1="oslash" + g2="quotesinglbase,quotedblbase" + k="45" /> + <hkern g1="oslash" + g2="slash" + k="37" /> + <hkern g1="oslash" + g2="x,uni0445,uni04B3" + k="23" /> + <hkern g1="oslash" + g2="greater" + k="-12" /> + <hkern g1="r" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="-12" /> + <hkern g1="r" + g2="ampersand" + k="37" /> + <hkern g1="r" + g2="asterisk" + k="-82" /> + <hkern g1="r" + g2="at" + k="-53" /> + <hkern g1="r" + g2="backslash" + k="45" /> + <hkern g1="r" + g2="bracketright,braceright" + k="-16" /> + <hkern g1="r" + g2="bullet" + k="-12" /> + <hkern g1="r" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="45" /> + <hkern g1="r" + g2="colon,semicolon" + k="-37" /> + <hkern g1="r" + g2="dagger" + k="-74" /> + <hkern g1="r" + g2="daggerdbl" + k="-74" /> + <hkern g1="r" + g2="exclam" + k="-37" /> + <hkern g1="r" + g2="ordmasculine" + k="-25" /> + <hkern g1="r" + g2="paragraph" + k="-94" /> + <hkern g1="r" + g2="parenright" + k="25" /> + <hkern g1="r" + g2="question" + k="-41" /> + <hkern g1="r" + g2="quotedbl,quotesingle" + k="-74" /> + <hkern g1="r" + g2="quoteleft,quotedblleft" + k="-12" /> + <hkern g1="r" + g2="quoteright,quotedblright" + k="-37" /> + <hkern g1="r" + g2="t" + k="-45" /> + <hkern g1="r" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="-4" /> + <hkern g1="r" + g2="underscore" + k="45" /> + <hkern g1="r" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="-37" /> + <hkern g1="r" + g2="w" + k="-33" /> + <hkern g1="r" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-49" /> + <hkern g1="r" + g2="comma,period,ellipsis" + k="160" /> + <hkern g1="r" + g2="exclamdown" + k="-29" /> + <hkern g1="r" + g2="florin" + k="12" /> + <hkern g1="r" + g2="guilsinglright" + k="-49" /> + <hkern g1="r" + g2="questiondown" + k="33" /> + <hkern g1="r" + g2="quotesinglbase,quotedblbase" + k="49" /> + <hkern g1="r" + g2="slash" + k="25" /> + <hkern g1="r" + g2="x,uni0445,uni04B3" + k="-49" /> + <hkern g1="r" + g2="z,zcaron" + k="-33" /> + <hkern g1="r" + g2="oslash" + k="4" /> + <hkern g1="r" + g2="periodcentered" + k="-12" /> + <hkern g1="r" + g2="plus" + k="-12" /> + <hkern g1="r" + g2="divide" + k="-37" /> + <hkern g1="r" + g2="asciicircum" + k="-49" /> + <hkern g1="r" + g2="bar" + k="-61" /> + <hkern g1="r" + g2="brokenbar" + k="-37" /> + <hkern g1="r" + g2="copyright,registered" + k="-61" /> + <hkern g1="r" + g2="f,fi,fl,f_f_i,f_f_l" + k="-45" /> + <hkern g1="r" + g2="greater" + k="-61" /> + <hkern g1="r" + g2="j" + k="-6" /> + <hkern g1="r" + g2="multiply" + k="-25" /> + <hkern g1="r" + g2="s,scaron,uni0455" + k="29" /> + <hkern g1="r" + g2="section" + k="-37" /> + <hkern g1="r" + g2="equal" + k="-37" /> + <hkern g1="r" + g2="less" + k="-12" /> + <hkern g1="r" + g2="b,h,k,l,thorn" + k="-6" /> + <hkern g1="r" + g2="i,igrave,iacute,icircumflex,idieresis,uni0469" + k="-6" /> + <hkern g1="r" + g2="m,n,p,r,ntilde" + k="-6" /> + <hkern g1="s,scaron,uni0455" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="8" /> + <hkern g1="s,scaron,uni0455" + g2="ampersand" + k="25" /> + <hkern g1="s,scaron,uni0455" + g2="asterisk" + k="20" /> + <hkern g1="s,scaron,uni0455" + g2="backslash" + k="123" /> + <hkern g1="s,scaron,uni0455" + g2="bracketright,braceright" + k="12" /> + <hkern g1="s,scaron,uni0455" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="4" /> + <hkern g1="s,scaron,uni0455" + g2="ordfeminine" + k="41" /> + <hkern g1="s,scaron,uni0455" + g2="ordmasculine" + k="29" /> + <hkern g1="s,scaron,uni0455" + g2="parenright" + k="31" /> + <hkern g1="s,scaron,uni0455" + g2="question" + k="12" /> + <hkern g1="s,scaron,uni0455" + g2="quotedbl,quotesingle" + k="8" /> + <hkern g1="s,scaron,uni0455" + g2="quoteleft,quotedblleft" + k="33" /> + <hkern g1="s,scaron,uni0455" + g2="quoteright,quotedblright" + k="20" /> + <hkern g1="s,scaron,uni0455" + g2="trademark" + k="106" /> + <hkern g1="s,scaron,uni0455" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="8" /> + <hkern g1="s,scaron,uni0455" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="16" /> + <hkern g1="s,scaron,uni0455" + g2="w" + k="16" /> + <hkern g1="s,scaron,uni0455" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="16" /> + <hkern g1="s,scaron,uni0455" + g2="florin" + k="25" /> + <hkern g1="s,scaron,uni0455" + g2="germandbls" + k="10" /> + <hkern g1="s,scaron,uni0455" + g2="quotesinglbase,quotedblbase" + k="-6" /> + <hkern g1="s,scaron,uni0455" + g2="slash" + k="-8" /> + <hkern g1="s,scaron,uni0455" + g2="x,uni0445,uni04B3" + k="10" /> + <hkern g1="s,scaron,uni0455" + g2="z,zcaron" + k="-6" /> + <hkern g1="s,scaron,uni0455" + g2="oslash" + k="4" /> + <hkern g1="s,scaron,uni0455" + g2="guilsinglleft" + k="25" /> + <hkern g1="s,scaron,uni0455" + g2="periodcentered" + k="12" /> + <hkern g1="s,scaron,uni0455" + g2="greater" + k="-8" /> + <hkern g1="t" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="-12" /> + <hkern g1="t" + g2="asterisk" + k="-37" /> + <hkern g1="t" + g2="backslash" + k="12" /> + <hkern g1="t" + g2="bracketright,braceright" + k="-8" /> + <hkern g1="t" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="4" /> + <hkern g1="t" + g2="colon,semicolon" + k="-12" /> + <hkern g1="t" + g2="paragraph" + k="-25" /> + <hkern g1="t" + g2="parenright" + k="-8" /> + <hkern g1="t" + g2="question" + k="-29" /> + <hkern g1="t" + g2="quotedbl,quotesingle" + k="-12" /> + <hkern g1="t" + g2="quoteleft,quotedblleft" + k="8" /> + <hkern g1="t" + g2="quoteright,quotedblright" + k="20" /> + <hkern g1="t" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="-12" /> + <hkern g1="t" + g2="underscore" + k="-61" /> + <hkern g1="t" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="-8" /> + <hkern g1="t" + g2="w" + k="-8" /> + <hkern g1="t" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-29" /> + <hkern g1="t" + g2="exclamdown" + k="-12" /> + <hkern g1="t" + g2="guilsinglright" + k="-8" /> + <hkern g1="t" + g2="questiondown" + k="-12" /> + <hkern g1="t" + g2="quotesinglbase,quotedblbase" + k="-8" /> + <hkern g1="t" + g2="slash" + k="-53" /> + <hkern g1="t" + g2="x,uni0445,uni04B3" + k="-53" /> + <hkern g1="t" + g2="z,zcaron" + k="-47" /> + <hkern g1="t" + g2="asciicircum" + k="-12" /> + <hkern g1="t" + g2="copyright,registered" + k="-12" /> + <hkern g1="t" + g2="greater" + k="-49" /> + <hkern g1="t" + g2="j" + k="-12" /> + <hkern g1="t" + g2="s,scaron,uni0455" + k="-29" /> + <hkern g1="t" + g2="b,h,k,l,thorn" + k="43" /> + <hkern g1="t" + g2="i,igrave,iacute,icircumflex,idieresis,uni0469" + k="-6" /> + <hkern g1="t" + g2="m,n,p,r,ntilde" + k="8" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="ampersand" + k="25" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="at" + k="10" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="backslash" + k="66" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="bracketright,braceright" + k="6" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="4" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="ordfeminine" + k="29" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="ordmasculine" + k="25" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="parenright" + k="18" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="quoteleft,quotedblleft" + k="20" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="quoteright,quotedblright" + k="12" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="trademark" + k="53" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="4" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="germandbls" + k="10" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="oslash" + k="4" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="guilsinglleft" + k="12" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="f,fi,fl,f_f_i,f_f_l" + k="-6" /> + <hkern g1="v,wcircumflex,ycircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="4" /> + <hkern g1="v,wcircumflex,ycircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="bracketright,braceright" + k="25" /> + <hkern g1="v,wcircumflex,ycircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="31" /> + <hkern g1="v,wcircumflex,ycircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="colon,semicolon" + k="12" /> + <hkern g1="v,wcircumflex,ycircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="quotedbl,quotesingle" + k="-33" /> + <hkern g1="v,wcircumflex,ycircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="t" + k="-37" /> + <hkern g1="v,wcircumflex,ycircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="w" + k="-4" /> + <hkern g1="v,wcircumflex,ycircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-8" /> + <hkern g1="v,wcircumflex,ycircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="comma,period,ellipsis" + k="160" /> + <hkern g1="v,wcircumflex,ycircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="guilsinglright" + k="-16" /> + <hkern g1="v,wcircumflex,ycircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="quotesinglbase,quotedblbase" + k="106" /> + <hkern g1="v,wcircumflex,ycircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="z,zcaron" + k="-8" /> + <hkern g1="v,wcircumflex,ycircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="hyphen,endash,emdash" + k="29" /> + <hkern g1="v,wcircumflex,ycircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="oslash" + k="20" /> + <hkern g1="v,wcircumflex,ycircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="guilsinglleft" + k="25" /> + <hkern g1="v,wcircumflex,ycircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="copyright,registered" + k="-12" /> + <hkern g1="v,wcircumflex,ycircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="f,fi,fl,f_f_i,f_f_l" + k="-43" /> + <hkern g1="w" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="4" /> + <hkern g1="w" + g2="ampersand" + k="45" /> + <hkern g1="w" + g2="asterisk" + k="-12" /> + <hkern g1="w" + g2="at" + k="-18" /> + <hkern g1="w" + g2="backslash" + k="53" /> + <hkern g1="w" + g2="bracketright,braceright" + k="41" /> + <hkern g1="w" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="27" /> + <hkern g1="w" + g2="dagger" + k="-61" /> + <hkern g1="w" + g2="daggerdbl" + k="-70" /> + <hkern g1="w" + g2="ordmasculine" + k="-18" /> + <hkern g1="w" + g2="paragraph" + k="-25" /> + <hkern g1="w" + g2="parenright" + k="53" /> + <hkern g1="w" + g2="question" + k="-25" /> + <hkern g1="w" + g2="quotedbl,quotesingle" + k="-33" /> + <hkern g1="w" + g2="quoteleft,quotedblleft" + k="-12" /> + <hkern g1="w" + g2="quoteright,quotedblright" + k="-12" /> + <hkern g1="w" + g2="t" + k="-37" /> + <hkern g1="w" + g2="trademark" + k="12" /> + <hkern g1="w" + g2="underscore" + k="82" /> + <hkern g1="w" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="-4" /> + <hkern g1="w" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-4" /> + <hkern g1="w" + g2="comma,period,ellipsis" + k="94" /> + <hkern g1="w" + g2="exclamdown" + k="12" /> + <hkern g1="w" + g2="florin" + k="25" /> + <hkern g1="w" + g2="germandbls" + k="6" /> + <hkern g1="w" + g2="questiondown" + k="66" /> + <hkern g1="w" + g2="quotesinglbase,quotedblbase" + k="94" /> + <hkern g1="w" + g2="slash" + k="53" /> + <hkern g1="w" + g2="x,uni0445,uni04B3" + k="-4" /> + <hkern g1="w" + g2="z,zcaron" + k="-10" /> + <hkern g1="w" + g2="hyphen,endash,emdash" + k="16" /> + <hkern g1="w" + g2="oslash" + k="27" /> + <hkern g1="w" + g2="guilsinglleft" + k="27" /> + <hkern g1="w" + g2="plus" + k="6" /> + <hkern g1="w" + g2="divide" + k="12" /> + <hkern g1="w" + g2="asciicircum" + k="-25" /> + <hkern g1="w" + g2="bar" + k="-29" /> + <hkern g1="w" + g2="brokenbar" + k="-29" /> + <hkern g1="w" + g2="copyright,registered" + k="-8" /> + <hkern g1="w" + g2="f,fi,fl,f_f_i,f_f_l" + k="-37" /> + <hkern g1="w" + g2="greater" + k="-25" /> + <hkern g1="w" + g2="multiply" + k="-12" /> + <hkern g1="w" + g2="less" + k="12" /> + <hkern g1="x,uni0445,uni04B3" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="6" /> + <hkern g1="x,uni0445,uni04B3" + g2="bracketright,braceright" + k="12" /> + <hkern g1="x,uni0445,uni04B3" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="39" /> + <hkern g1="x,uni0445,uni04B3" + g2="colon,semicolon" + k="12" /> + <hkern g1="x,uni0445,uni04B3" + g2="quotedbl,quotesingle" + k="-8" /> + <hkern g1="x,uni0445,uni04B3" + g2="quoteright,quotedblright" + k="12" /> + <hkern g1="x,uni0445,uni04B3" + g2="t" + k="-16" /> + <hkern g1="x,uni0445,uni04B3" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="10" /> + <hkern g1="x,uni0445,uni04B3" + g2="w" + k="-4" /> + <hkern g1="x,uni0445,uni04B3" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-4" /> + <hkern g1="x,uni0445,uni04B3" + g2="quotesinglbase,quotedblbase" + k="-20" /> + <hkern g1="x,uni0445,uni04B3" + g2="z,zcaron" + k="-29" /> + <hkern g1="x,uni0445,uni04B3" + g2="hyphen,endash,emdash" + k="51" /> + <hkern g1="x,uni0445,uni04B3" + g2="oslash" + k="29" /> + <hkern g1="x,uni0445,uni04B3" + g2="guilsinglleft" + k="33" /> + <hkern g1="x,uni0445,uni04B3" + g2="copyright,registered" + k="12" /> + <hkern g1="x,uni0445,uni04B3" + g2="f,fi,fl,f_f_i,f_f_l" + k="-25" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="31" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="ampersand" + k="41" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="asterisk" + k="-25" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="at" + k="-8" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="backslash" + k="61" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="bracketright,braceright" + k="49" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="47" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="colon,semicolon" + k="18" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="dagger" + k="-53" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="daggerdbl" + k="-53" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="paragraph" + k="-25" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="parenright" + k="49" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="question" + k="-20" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="quotedbl,quotesingle" + k="-20" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="t" + k="-29" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="10" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="underscore" + k="102" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="-4" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-4" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="comma,period,ellipsis" + k="201" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="exclamdown" + k="12" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="florin" + k="37" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="germandbls" + k="6" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="lslash" + k="6" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="questiondown" + k="86" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="quotesinglbase,quotedblbase" + k="131" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="slash" + k="70" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="hyphen,endash,emdash" + k="53" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="oslash" + k="43" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="guilsinglleft" + k="33" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="periodcentered" + k="12" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="divide" + k="12" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="asciicircum" + k="-12" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="bar" + k="-25" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="brokenbar" + k="-33" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="copyright,registered" + k="-12" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="f,fi,fl,f_f_i,f_f_l" + k="-33" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="greater" + k="-37" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="multiply" + k="-25" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="s,scaron,uni0455" + k="14" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="section" + k="-12" /> + <hkern g1="z,zcaron" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="-12" /> + <hkern g1="z,zcaron" + g2="ampersand" + k="25" /> + <hkern g1="z,zcaron" + g2="asterisk" + k="-12" /> + <hkern g1="z,zcaron" + g2="backslash" + k="84" /> + <hkern g1="z,zcaron" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="6" /> + <hkern g1="z,zcaron" + g2="dagger" + k="-33" /> + <hkern g1="z,zcaron" + g2="daggerdbl" + k="-33" /> + <hkern g1="z,zcaron" + g2="paragraph" + k="-12" /> + <hkern g1="z,zcaron" + g2="t" + k="-31" /> + <hkern g1="z,zcaron" + g2="trademark" + k="12" /> + <hkern g1="z,zcaron" + g2="underscore" + k="-20" /> + <hkern g1="z,zcaron" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="-6" /> + <hkern g1="z,zcaron" + g2="w" + k="-6" /> + <hkern g1="z,zcaron" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-6" /> + <hkern g1="z,zcaron" + g2="lslash" + k="-8" /> + <hkern g1="z,zcaron" + g2="questiondown" + k="-12" /> + <hkern g1="z,zcaron" + g2="quotesinglbase,quotedblbase" + k="-12" /> + <hkern g1="z,zcaron" + g2="slash" + k="-25" /> + <hkern g1="z,zcaron" + g2="x,uni0445,uni04B3" + k="-16" /> + <hkern g1="z,zcaron" + g2="z,zcaron" + k="-6" /> + <hkern g1="z,zcaron" + g2="guilsinglleft" + k="14" /> + <hkern g1="z,zcaron" + g2="plus" + k="-12" /> + <hkern g1="z,zcaron" + g2="bar" + k="-25" /> + <hkern g1="z,zcaron" + g2="brokenbar" + k="-12" /> + <hkern g1="z,zcaron" + g2="f,fi,fl,f_f_i,f_f_l" + k="-37" /> + <hkern g1="z,zcaron" + g2="greater" + k="-25" /> + <hkern g1="ampersand" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="18" /> + <hkern g1="ampersand" + g2="J" + k="-12" /> + <hkern g1="ampersand" + g2="Oslash" + k="12" /> + <hkern g1="ampersand" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="143" /> + <hkern g1="ampersand" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="20" /> + <hkern g1="ampersand" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="78" /> + <hkern g1="ampersand" + g2="Y,Yacute,Ydieresis,uni040E" + k="190" /> + <hkern g1="ampersand" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="6" /> + <hkern g1="ampersand" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="37" /> + <hkern g1="asciicircum" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="-20" /> + <hkern g1="asciicircum" + g2="Y,Yacute,Ydieresis,uni040E" + k="25" /> + <hkern g1="asciicircum" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-12" /> + <hkern g1="asciicircum" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="90" /> + <hkern g1="asciicircum" + g2="Eth" + k="-12" /> + <hkern g1="asciicircum" + g2="f,fi,fl,f_f_i,f_f_l" + k="-37" /> + <hkern g1="asciicircum" + g2="w" + k="-25" /> + <hkern g1="asciitilde" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="-20" /> + <hkern g1="asciitilde" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="131" /> + <hkern g1="asciitilde" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="4" /> + <hkern g1="asciitilde" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="41" /> + <hkern g1="asciitilde" + g2="Y,Yacute,Ydieresis,uni040E" + k="135" /> + <hkern g1="asciitilde" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="41" /> + <hkern g1="asciitilde" + g2="Z,Zcaron" + k="12" /> + <hkern g1="asciitilde" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="-12" /> + <hkern g1="asciitilde" + g2="j" + k="12" /> + <hkern g1="asciitilde" + g2="z,zcaron" + k="6" /> + <hkern g1="at" + g2="J" + k="45" /> + <hkern g1="at" + g2="Oslash" + k="6" /> + <hkern g1="at" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="51" /> + <hkern g1="at" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="12" /> + <hkern g1="at" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="41" /> + <hkern g1="at" + g2="Y,Yacute,Ydieresis,uni040E" + k="106" /> + <hkern g1="at" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="6" /> + <hkern g1="at" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-6" /> + <hkern g1="at" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="98" /> + <hkern g1="at" + g2="Eth" + k="-8" /> + <hkern g1="at" + g2="f,fi,fl,f_f_i,f_f_l" + k="-12" /> + <hkern g1="at" + g2="w" + k="-12" /> + <hkern g1="at" + g2="Z,Zcaron" + k="29" /> + <hkern g1="at" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="25" /> + <hkern g1="at" + g2="z,zcaron" + k="-4" /> + <hkern g1="at" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="12" /> + <hkern g1="at" + g2="m,n,p,r,ntilde" + k="18" /> + <hkern g1="at" + g2="oslash" + k="18" /> + <hkern g1="at" + g2="s,scaron,uni0455" + k="6" /> + <hkern g1="bar" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="-29" /> + <hkern g1="bar" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-29" /> + <hkern g1="bar" + g2="Y,Yacute,Ydieresis,uni040E" + k="-20" /> + <hkern g1="bar" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-25" /> + <hkern g1="bar" + g2="w" + k="-29" /> + <hkern g1="bar" + g2="Z,Zcaron" + k="-12" /> + <hkern g1="bar" + g2="j" + k="-37" /> + <hkern g1="bar" + g2="z,zcaron" + k="-20" /> + <hkern g1="brokenbar" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="-41" /> + <hkern g1="brokenbar" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-29" /> + <hkern g1="brokenbar" + g2="Y,Yacute,Ydieresis,uni040E" + k="-20" /> + <hkern g1="brokenbar" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-33" /> + <hkern g1="brokenbar" + g2="w" + k="-29" /> + <hkern g1="brokenbar" + g2="Z,Zcaron" + k="-12" /> + <hkern g1="brokenbar" + g2="z,zcaron" + k="-12" /> + <hkern g1="copyright,registered" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="-8" /> + <hkern g1="copyright,registered" + g2="J" + k="12" /> + <hkern g1="copyright,registered" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="20" /> + <hkern g1="copyright,registered" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="25" /> + <hkern g1="copyright,registered" + g2="Y,Yacute,Ydieresis,uni040E" + k="82" /> + <hkern g1="copyright,registered" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="70" /> + <hkern g1="copyright,registered" + g2="Eth" + k="-8" /> + <hkern g1="copyright,registered" + g2="f,fi,fl,f_f_i,f_f_l" + k="-12" /> + <hkern g1="copyright,registered" + g2="w" + k="-8" /> + <hkern g1="copyright,registered" + g2="Z,Zcaron" + k="12" /> + <hkern g1="copyright,registered" + g2="z,zcaron" + k="4" /> + <hkern g1="copyright,registered" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="16" /> + <hkern g1="copyright,registered" + g2="Lslash" + k="-8" /> + <hkern g1="copyright,registered" + g2="V,uni0423,uni0474" + k="57" /> + <hkern g1="copyright,registered" + g2="X,uni0416,uni0425,uni046A" + k="98" /> + <hkern g1="copyright,registered" + g2="germandbls" + k="12" /> + <hkern g1="copyright,registered" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="-12" /> + <hkern g1="copyright,registered" + g2="x,uni0445,uni04B3" + k="12" /> + <hkern g1="dagger" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="-12" /> + <hkern g1="dagger" + g2="J" + k="37" /> + <hkern g1="dagger" + g2="Oslash" + k="-12" /> + <hkern g1="dagger" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="-37" /> + <hkern g1="dagger" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-25" /> + <hkern g1="dagger" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-53" /> + <hkern g1="dagger" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="74" /> + <hkern g1="dagger" + g2="f,fi,fl,f_f_i,f_f_l" + k="-37" /> + <hkern g1="dagger" + g2="w" + k="-70" /> + <hkern g1="dagger" + g2="Z,Zcaron" + k="-12" /> + <hkern g1="dagger" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="12" /> + <hkern g1="dagger" + g2="j" + k="-25" /> + <hkern g1="dagger" + g2="z,zcaron" + k="-25" /> + <hkern g1="dagger" + g2="S,Scaron,uni0405" + k="-12" /> + <hkern g1="dagger" + g2="b,h,k,l,thorn" + k="-12" /> + <hkern g1="daggerdbl" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="-12" /> + <hkern g1="daggerdbl" + g2="J" + k="-12" /> + <hkern g1="daggerdbl" + g2="Oslash" + k="-12" /> + <hkern g1="daggerdbl" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="-37" /> + <hkern g1="daggerdbl" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-12" /> + <hkern g1="daggerdbl" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-53" /> + <hkern g1="daggerdbl" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="12" /> + <hkern g1="daggerdbl" + g2="f,fi,fl,f_f_i,f_f_l" + k="-25" /> + <hkern g1="daggerdbl" + g2="w" + k="-70" /> + <hkern g1="daggerdbl" + g2="Z,Zcaron" + k="-12" /> + <hkern g1="daggerdbl" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="-12" /> + <hkern g1="daggerdbl" + g2="z,zcaron" + k="-25" /> + <hkern g1="daggerdbl" + g2="b,h,k,l,thorn" + k="-12" /> + <hkern g1="divide" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="-12" /> + <hkern g1="divide" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="86" /> + <hkern g1="divide" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="4" /> + <hkern g1="divide" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="47" /> + <hkern g1="divide" + g2="Y,Yacute,Ydieresis,uni040E" + k="115" /> + <hkern g1="divide" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="12" /> + <hkern g1="divide" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="33" /> + <hkern g1="divide" + g2="w" + k="12" /> + <hkern g1="divide" + g2="Z,Zcaron" + k="12" /> + <hkern g1="equal" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="-12" /> + <hkern g1="equal" + g2="Oslash" + k="-12" /> + <hkern g1="equal" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="61" /> + <hkern g1="equal" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="6" /> + <hkern g1="equal" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="20" /> + <hkern g1="equal" + g2="Y,Yacute,Ydieresis,uni040E" + k="74" /> + <hkern g1="equal" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="25" /> + <hkern g1="florin" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="57" /> + <hkern g1="florin" + g2="w" + k="8" /> + <hkern g1="florin" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="111" /> + <hkern g1="florin" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="98" /> + <hkern g1="florin" + g2="m,n,p,r,ntilde" + k="57" /> + <hkern g1="florin" + g2="oslash" + k="102" /> + <hkern g1="florin" + g2="s,scaron,uni0455" + k="37" /> + <hkern g1="florin" + g2="bracketright,braceright" + k="-53" /> + <hkern g1="florin" + g2="colon,semicolon" + k="29" /> + <hkern g1="florin" + g2="comma,period,ellipsis" + k="188" /> + <hkern g1="florin" + g2="guilsinglleft" + k="66" /> + <hkern g1="florin" + g2="hyphen,endash,emdash" + k="25" /> + <hkern g1="florin" + g2="quotedbl,quotesingle" + k="-82" /> + <hkern g1="florin" + g2="quoteleft,quotedblleft" + k="-70" /> + <hkern g1="florin" + g2="quoteright,quotedblright" + k="-82" /> + <hkern g1="florin" + g2="quotesinglbase,quotedblbase" + k="160" /> + <hkern g1="florin" + g2="t" + k="-12" /> + <hkern g1="greater" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="-12" /> + <hkern g1="greater" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="119" /> + <hkern g1="greater" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="4" /> + <hkern g1="greater" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="53" /> + <hkern g1="greater" + g2="Y,Yacute,Ydieresis,uni040E" + k="147" /> + <hkern g1="greater" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="47" /> + <hkern g1="greater" + g2="w" + k="12" /> + <hkern g1="greater" + g2="Z,Zcaron" + k="25" /> + <hkern g1="greater" + g2="S,Scaron,uni0405" + k="6" /> + <hkern g1="less" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="-20" /> + <hkern g1="less" + g2="Oslash" + k="-25" /> + <hkern g1="less" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="8" /> + <hkern g1="less" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-25" /> + <hkern g1="less" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-37" /> + <hkern g1="less" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="-25" /> + <hkern g1="less" + g2="Eth" + k="-12" /> + <hkern g1="less" + g2="w" + k="-25" /> + <hkern g1="less" + g2="Z,Zcaron" + k="-45" /> + <hkern g1="less" + g2="z,zcaron" + k="-25" /> + <hkern g1="less" + g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Ntilde,Thorn,IJ,uni01C4,uni01C7,uni01CA,uni01F1" + k="-8" /> + <hkern g1="multiply" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="-12" /> + <hkern g1="multiply" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="45" /> + <hkern g1="multiply" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="12" /> + <hkern g1="multiply" + g2="Y,Yacute,Ydieresis,uni040E" + k="61" /> + <hkern g1="multiply" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="12" /> + <hkern g1="multiply" + g2="w" + k="-12" /> + <hkern g1="multiply" + g2="Z,Zcaron" + k="-12" /> + <hkern g1="paragraph" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="-25" /> + <hkern g1="plus" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="-12" /> + <hkern g1="plus" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="115" /> + <hkern g1="plus" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="4" /> + <hkern g1="plus" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="61" /> + <hkern g1="plus" + g2="Y,Yacute,Ydieresis,uni040E" + k="127" /> + <hkern g1="plus" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="49" /> + <hkern g1="plus" + g2="Eth" + k="12" /> + <hkern g1="plus" + g2="w" + k="6" /> + <hkern g1="plus" + g2="Z,Zcaron" + k="23" /> + <hkern g1="plus" + g2="b,h,k,l,thorn" + k="25" /> + <hkern g1="section" + g2="Oslash" + k="6" /> + <hkern g1="section" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="12" /> + <hkern g1="section" + g2="Y,Yacute,Ydieresis,uni040E" + k="12" /> + <hkern g1="section" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="12" /> + <hkern g1="trademark" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="-25" /> + <hkern g1="asterisk" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="176" /> + <hkern g1="asterisk" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="4" /> + <hkern g1="asterisk" + g2="J" + k="102" /> + <hkern g1="asterisk" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="-41" /> + <hkern g1="asterisk" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-20" /> + <hkern g1="asterisk" + g2="Y,Yacute,Ydieresis,uni040E" + k="12" /> + <hkern g1="asterisk" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="25" /> + <hkern g1="asterisk" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="57" /> + <hkern g1="asterisk" + g2="f,fi,fl,f_f_i,f_f_l" + k="-49" /> + <hkern g1="asterisk" + g2="oslash" + k="25" /> + <hkern g1="asterisk" + g2="s,scaron,uni0455" + k="8" /> + <hkern g1="asterisk" + g2="w" + k="-12" /> + <hkern g1="asterisk" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-25" /> + <hkern g1="backslash" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="-25" /> + <hkern g1="backslash" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="90" /> + <hkern g1="backslash" + g2="J" + k="12" /> + <hkern g1="backslash" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="127" /> + <hkern g1="backslash" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="147" /> + <hkern g1="backslash" + g2="Y,Yacute,Ydieresis,uni040E" + k="176" /> + <hkern g1="backslash" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="-8" /> + <hkern g1="backslash" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="49" /> + <hkern g1="backslash" + g2="oslash" + k="25" /> + <hkern g1="backslash" + g2="w" + k="45" /> + <hkern g1="backslash" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="63" /> + <hkern g1="backslash" + g2="Eth" + k="25" /> + <hkern g1="backslash" + g2="Oslash" + k="66" /> + <hkern g1="backslash" + g2="S,Scaron,uni0405" + k="29" /> + <hkern g1="backslash" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="78" /> + <hkern g1="backslash" + g2="Z,Zcaron" + k="-12" /> + <hkern g1="backslash" + g2="t" + k="12" /> + <hkern g1="backslash" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="25" /> + <hkern g1="backslash" + g2="z,zcaron" + k="-12" /> + <hkern g1="braceright" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="8" /> + <hkern g1="braceright" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="16" /> + <hkern g1="braceright" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="8" /> + <hkern g1="braceright" + g2="Y,Yacute,Ydieresis,uni040E" + k="33" /> + <hkern g1="braceright" + g2="Z,Zcaron" + k="16" /> + <hkern g1="bracketleft,braceleft" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="12" /> + <hkern g1="bracketleft,braceleft" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="53" /> + <hkern g1="bracketleft,braceleft" + g2="J" + k="25" /> + <hkern g1="bracketleft,braceleft" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="-16" /> + <hkern g1="bracketleft,braceleft" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-16" /> + <hkern g1="bracketleft,braceleft" + g2="Y,Yacute,Ydieresis,uni040E" + k="-33" /> + <hkern g1="bracketleft,braceleft" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="6" /> + <hkern g1="bracketleft,braceleft" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="57" /> + <hkern g1="bracketleft,braceleft" + g2="f,fi,fl,f_f_i,f_f_l" + k="45" /> + <hkern g1="bracketleft,braceleft" + g2="oslash" + k="33" /> + <hkern g1="bracketleft,braceleft" + g2="s,scaron,uni0455" + k="25" /> + <hkern g1="bracketleft,braceleft" + g2="w" + k="41" /> + <hkern g1="bracketleft,braceleft" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="37" /> + <hkern g1="bracketleft,braceleft" + g2="Oslash" + k="53" /> + <hkern g1="bracketleft,braceleft" + g2="S,Scaron,uni0405" + k="12" /> + <hkern g1="bracketleft,braceleft" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="12" /> + <hkern g1="bracketleft,braceleft" + g2="t" + k="25" /> + <hkern g1="bracketleft,braceleft" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="25" /> + <hkern g1="bracketleft,braceleft" + g2="V,uni0423,uni0474" + k="-29" /> + <hkern g1="bracketleft,braceleft" + g2="X,uni0416,uni0425,uni046A" + k="-16" /> + <hkern g1="bracketleft,braceleft" + g2="florin" + k="-123" /> + <hkern g1="bracketleft,braceleft" + g2="germandbls" + k="25" /> + <hkern g1="bracketleft,braceleft" + g2="j" + k="-139" /> + <hkern g1="bracketleft,braceleft" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="25" /> + <hkern g1="bracketleft,braceleft" + g2="x,uni0445,uni04B3" + k="12" /> + <hkern g1="bullet" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="74" /> + <hkern g1="bullet" + g2="J" + k="8" /> + <hkern g1="bullet" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="168" /> + <hkern g1="bullet" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="57" /> + <hkern g1="bullet" + g2="Y,Yacute,Ydieresis,uni040E" + k="180" /> + <hkern g1="bullet" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="8" /> + <hkern g1="bullet" + g2="Z,Zcaron" + k="29" /> + <hkern g1="bullet" + g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Ntilde,Thorn,IJ,uni01C4,uni01C7,uni01CA,uni01F1" + k="8" /> + <hkern g1="colon,semicolon" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="12" /> + <hkern g1="colon,semicolon" + g2="J" + k="12" /> + <hkern g1="colon,semicolon" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="104" /> + <hkern g1="colon,semicolon" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="33" /> + <hkern g1="colon,semicolon" + g2="Y,Yacute,Ydieresis,uni040E" + k="154" /> + <hkern g1="colon,semicolon" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="16" /> + <hkern g1="colon,semicolon" + g2="f,fi,fl,f_f_i,f_f_l" + k="-12" /> + <hkern g1="colon,semicolon" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="12" /> + <hkern g1="colon,semicolon" + g2="S,Scaron,uni0405" + k="12" /> + <hkern g1="colon,semicolon" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="10" /> + <hkern g1="colon,semicolon" + g2="V,uni0423,uni0474" + k="106" /> + <hkern g1="colon,semicolon" + g2="X,uni0416,uni0425,uni046A" + k="25" /> + <hkern g1="colon,semicolon" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="12" /> + <hkern g1="colon,semicolon" + g2="x,uni0445,uni04B3" + k="12" /> + <hkern g1="comma,period,ellipsis" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="74" /> + <hkern g1="comma,period,ellipsis" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="229" /> + <hkern g1="comma,period,ellipsis" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="180" /> + <hkern g1="comma,period,ellipsis" + g2="Y,Yacute,Ydieresis,uni040E" + k="266" /> + <hkern g1="comma,period,ellipsis" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="12" /> + <hkern g1="comma,period,ellipsis" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="37" /> + <hkern g1="comma,period,ellipsis" + g2="f,fi,fl,f_f_i,f_f_l" + k="25" /> + <hkern g1="comma,period,ellipsis" + g2="oslash" + k="12" /> + <hkern g1="comma,period,ellipsis" + g2="w" + k="94" /> + <hkern g1="comma,period,ellipsis" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="172" /> + <hkern g1="comma,period,ellipsis" + g2="Eth" + k="25" /> + <hkern g1="comma,period,ellipsis" + g2="Oslash" + k="66" /> + <hkern g1="comma,period,ellipsis" + g2="S,Scaron,uni0405" + k="20" /> + <hkern g1="comma,period,ellipsis" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="70" /> + <hkern g1="comma,period,ellipsis" + g2="t" + k="53" /> + <hkern g1="comma,period,ellipsis" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="8" /> + <hkern g1="comma,period,ellipsis" + g2="V,uni0423,uni0474" + k="242" /> + <hkern g1="comma,period,ellipsis" + g2="X,uni0416,uni0425,uni046A" + k="12" /> + <hkern g1="comma,period,ellipsis" + g2="germandbls" + k="12" /> + <hkern g1="comma,period,ellipsis" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="160" /> + <hkern g1="comma,period,ellipsis" + g2="Lslash" + k="12" /> + <hkern g1="comma,period,ellipsis" + g2="b,h,k,l,thorn" + k="12" /> + <hkern g1="comma,period,ellipsis" + g2="lslash" + k="49" /> + <hkern g1="exclam" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="25" /> + <hkern g1="exclam" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="12" /> + <hkern g1="exclam" + g2="J" + k="12" /> + <hkern g1="exclam" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="25" /> + <hkern g1="exclam" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="25" /> + <hkern g1="exclam" + g2="S,Scaron,uni0405" + k="12" /> + <hkern g1="exclamdown" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="12" /> + <hkern g1="exclamdown" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="12" /> + <hkern g1="exclamdown" + g2="J" + k="12" /> + <hkern g1="exclamdown" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="127" /> + <hkern g1="exclamdown" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="45" /> + <hkern g1="exclamdown" + g2="Y,Yacute,Ydieresis,uni040E" + k="145" /> + <hkern g1="exclamdown" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="25" /> + <hkern g1="exclamdown" + g2="oslash" + k="12" /> + <hkern g1="exclamdown" + g2="w" + k="12" /> + <hkern g1="exclamdown" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="12" /> + <hkern g1="exclamdown" + g2="S,Scaron,uni0405" + k="12" /> + <hkern g1="exclamdown" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="33" /> + <hkern g1="exclamdown" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="6" /> + <hkern g1="exclamdown" + g2="j" + k="-74" /> + <hkern g1="exclamdown" + g2="i,igrave,iacute,icircumflex,idieresis,uni0469" + k="12" /> + <hkern g1="guilsinglleft" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="12" /> + <hkern g1="guilsinglleft" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="20" /> + <hkern g1="guilsinglleft" + g2="J" + k="-20" /> + <hkern g1="guilsinglleft" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="127" /> + <hkern g1="guilsinglleft" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="20" /> + <hkern g1="guilsinglleft" + g2="Y,Yacute,Ydieresis,uni040E" + k="111" /> + <hkern g1="guilsinglleft" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="12" /> + <hkern g1="guilsinglleft" + g2="f,fi,fl,f_f_i,f_f_l" + k="-33" /> + <hkern g1="guilsinglleft" + g2="oslash" + k="12" /> + <hkern g1="guilsinglleft" + g2="Oslash" + k="12" /> + <hkern g1="guilsinglleft" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="12" /> + <hkern g1="guilsinglleft" + g2="t" + k="-8" /> + <hkern g1="guilsinglleft" + g2="V,uni0423,uni0474" + k="70" /> + <hkern g1="guilsinglleft" + g2="X,uni0416,uni0425,uni046A" + k="61" /> + <hkern g1="guilsinglleft" + g2="florin" + k="25" /> + <hkern g1="guilsinglleft" + g2="germandbls" + k="12" /> + <hkern g1="guilsinglleft" + g2="j" + k="6" /> + <hkern g1="guilsinglleft" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="-16" /> + <hkern g1="guilsinglleft" + g2="lslash" + k="12" /> + <hkern g1="guilsinglright" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="74" /> + <hkern g1="guilsinglright" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="16" /> + <hkern g1="guilsinglright" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="233" /> + <hkern g1="guilsinglright" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="98" /> + <hkern g1="guilsinglright" + g2="Y,Yacute,Ydieresis,uni040E" + k="238" /> + <hkern g1="guilsinglright" + g2="w" + k="20" /> + <hkern g1="guilsinglright" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="12" /> + <hkern g1="guilsinglright" + g2="S,Scaron,uni0405" + k="12" /> + <hkern g1="guilsinglright" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="33" /> + <hkern g1="guilsinglright" + g2="Z,Zcaron" + k="43" /> + <hkern g1="guilsinglright" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="12" /> + <hkern g1="guilsinglright" + g2="z,zcaron" + k="6" /> + <hkern g1="guilsinglright" + g2="V,uni0423,uni0474" + k="135" /> + <hkern g1="guilsinglright" + g2="X,uni0416,uni0425,uni046A" + k="164" /> + <hkern g1="guilsinglright" + g2="florin" + k="86" /> + <hkern g1="guilsinglright" + g2="germandbls" + k="18" /> + <hkern g1="guilsinglright" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="33" /> + <hkern g1="guilsinglright" + g2="x,uni0445,uni04B3" + k="33" /> + <hkern g1="guilsinglright" + g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Ntilde,Thorn,IJ,uni01C4,uni01C7,uni01CA,uni01F1" + k="8" /> + <hkern g1="guilsinglright" + g2="b,h,k,l,thorn" + k="12" /> + <hkern g1="guilsinglright" + g2="lslash" + k="-16" /> + <hkern g1="hyphen,endash,emdash" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="66" /> + <hkern g1="hyphen,endash,emdash" + g2="J" + k="12" /> + <hkern g1="hyphen,endash,emdash" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="135" /> + <hkern g1="hyphen,endash,emdash" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="57" /> + <hkern g1="hyphen,endash,emdash" + g2="Y,Yacute,Ydieresis,uni040E" + k="188" /> + <hkern g1="hyphen,endash,emdash" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="25" /> + <hkern g1="hyphen,endash,emdash" + g2="w" + k="16" /> + <hkern g1="hyphen,endash,emdash" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="53" /> + <hkern g1="hyphen,endash,emdash" + g2="S,Scaron,uni0405" + k="8" /> + <hkern g1="hyphen,endash,emdash" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="4" /> + <hkern g1="hyphen,endash,emdash" + g2="Z,Zcaron" + k="61" /> + <hkern g1="hyphen,endash,emdash" + g2="t" + k="8" /> + <hkern g1="hyphen,endash,emdash" + g2="z,zcaron" + k="4" /> + <hkern g1="hyphen,endash,emdash" + g2="V,uni0423,uni0474" + k="131" /> + <hkern g1="hyphen,endash,emdash" + g2="X,uni0416,uni0425,uni046A" + k="119" /> + <hkern g1="hyphen,endash,emdash" + g2="j" + k="8" /> + <hkern g1="hyphen,endash,emdash" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="29" /> + <hkern g1="hyphen,endash,emdash" + g2="x,uni0445,uni04B3" + k="51" /> + <hkern g1="hyphen,endash,emdash" + g2="Lslash" + k="-78" /> + <hkern g1="hyphen,endash,emdash" + g2="lslash" + k="-57" /> + <hkern g1="parenleft" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="25" /> + <hkern g1="parenleft" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="53" /> + <hkern g1="parenleft" + g2="J" + k="31" /> + <hkern g1="parenleft" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="-16" /> + <hkern g1="parenleft" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-16" /> + <hkern g1="parenleft" + g2="Y,Yacute,Ydieresis,uni040E" + k="-16" /> + <hkern g1="parenleft" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="4" /> + <hkern g1="parenleft" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="66" /> + <hkern g1="parenleft" + g2="f,fi,fl,f_f_i,f_f_l" + k="33" /> + <hkern g1="parenleft" + g2="oslash" + k="45" /> + <hkern g1="parenleft" + g2="s,scaron,uni0455" + k="31" /> + <hkern g1="parenleft" + g2="w" + k="53" /> + <hkern g1="parenleft" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="49" /> + <hkern g1="parenleft" + g2="Oslash" + k="53" /> + <hkern g1="parenleft" + g2="S,Scaron,uni0405" + k="18" /> + <hkern g1="parenleft" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="12" /> + <hkern g1="parenleft" + g2="t" + k="25" /> + <hkern g1="parenleft" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="37" /> + <hkern g1="parenleft" + g2="z,zcaron" + k="6" /> + <hkern g1="parenleft" + g2="j" + k="-139" /> + <hkern g1="periodcentered" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="66" /> + <hkern g1="periodcentered" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="-12" /> + <hkern g1="periodcentered" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="102" /> + <hkern g1="periodcentered" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="49" /> + <hkern g1="periodcentered" + g2="Y,Yacute,Ydieresis,uni040E" + k="135" /> + <hkern g1="periodcentered" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="12" /> + <hkern g1="periodcentered" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="20" /> + <hkern g1="periodcentered" + g2="Z,Zcaron" + k="16" /> + <hkern g1="question" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="74" /> + <hkern g1="question" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="4" /> + <hkern g1="question" + g2="J" + k="25" /> + <hkern g1="question" + g2="Y,Yacute,Ydieresis,uni040E" + k="12" /> + <hkern g1="question" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="53" /> + <hkern g1="questiondown" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="-29" /> + <hkern g1="questiondown" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="94" /> + <hkern g1="questiondown" + g2="J" + k="25" /> + <hkern g1="questiondown" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="246" /> + <hkern g1="questiondown" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="147" /> + <hkern g1="questiondown" + g2="Y,Yacute,Ydieresis,uni040E" + k="240" /> + <hkern g1="questiondown" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="53" /> + <hkern g1="questiondown" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="66" /> + <hkern g1="questiondown" + g2="f,fi,fl,f_f_i,f_f_l" + k="39" /> + <hkern g1="questiondown" + g2="oslash" + k="25" /> + <hkern g1="questiondown" + g2="s,scaron,uni0455" + k="25" /> + <hkern g1="questiondown" + g2="w" + k="74" /> + <hkern g1="questiondown" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="45" /> + <hkern g1="questiondown" + g2="Eth" + k="49" /> + <hkern g1="questiondown" + g2="Oslash" + k="49" /> + <hkern g1="questiondown" + g2="S,Scaron,uni0405" + k="57" /> + <hkern g1="questiondown" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="86" /> + <hkern g1="questiondown" + g2="Z,Zcaron" + k="-12" /> + <hkern g1="questiondown" + g2="t" + k="57" /> + <hkern g1="questiondown" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="57" /> + <hkern g1="questiondown" + g2="j" + k="-106" /> + <hkern g1="questiondown" + g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Ntilde,Thorn,IJ,uni01C4,uni01C7,uni01CA,uni01F1" + k="6" /> + <hkern g1="questiondown" + g2="b,h,k,l,thorn" + k="8" /> + <hkern g1="questiondown" + g2="m,n,p,r,ntilde" + k="8" /> + <hkern g1="quotedbl,quotesingle" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="147" /> + <hkern g1="quotedbl,quotesingle" + g2="J" + k="33" /> + <hkern g1="quotedbl,quotesingle" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="-49" /> + <hkern g1="quotedbl,quotesingle" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-16" /> + <hkern g1="quotedbl,quotesingle" + g2="Y,Yacute,Ydieresis,uni040E" + k="-8" /> + <hkern g1="quotedbl,quotesingle" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="33" /> + <hkern g1="quotedbl,quotesingle" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="53" /> + <hkern g1="quotedbl,quotesingle" + g2="f,fi,fl,f_f_i,f_f_l" + k="-66" /> + <hkern g1="quotedbl,quotesingle" + g2="oslash" + k="53" /> + <hkern g1="quotedbl,quotesingle" + g2="w" + k="-33" /> + <hkern g1="quotedbl,quotesingle" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-20" /> + <hkern g1="quotedbl,quotesingle" + g2="V,uni0423,uni0474" + k="-29" /> + <hkern g1="quotedbl,quotesingle" + g2="X,uni0416,uni0425,uni046A" + k="-8" /> + <hkern g1="quotedbl,quotesingle" + g2="germandbls" + k="12" /> + <hkern g1="quotedbl,quotesingle" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="-33" /> + <hkern g1="quotedbl,quotesingle" + g2="x,uni0445,uni04B3" + k="-8" /> + <hkern g1="quoteleft,quotedblleft" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="225" /> + <hkern g1="quoteleft,quotedblleft" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="33" /> + <hkern g1="quoteleft,quotedblleft" + g2="J" + k="188" /> + <hkern g1="quoteleft,quotedblleft" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="-61" /> + <hkern g1="quoteleft,quotedblleft" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-29" /> + <hkern g1="quoteleft,quotedblleft" + g2="Y,Yacute,Ydieresis,uni040E" + k="-16" /> + <hkern g1="quoteleft,quotedblleft" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="61" /> + <hkern g1="quoteleft,quotedblleft" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="76" /> + <hkern g1="quoteleft,quotedblleft" + g2="f,fi,fl,f_f_i,f_f_l" + k="-4" /> + <hkern g1="quoteleft,quotedblleft" + g2="oslash" + k="53" /> + <hkern g1="quoteleft,quotedblleft" + g2="s,scaron,uni0455" + k="20" /> + <hkern g1="quoteleft,quotedblleft" + g2="w" + k="-12" /> + <hkern g1="quoteleft,quotedblleft" + g2="Oslash" + k="25" /> + <hkern g1="quoteleft,quotedblleft" + g2="t" + k="-18" /> + <hkern g1="quoteleft,quotedblleft" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="14" /> + <hkern g1="quoteleft,quotedblleft" + g2="z,zcaron" + k="-6" /> + <hkern g1="quoteleft,quotedblleft" + g2="V,uni0423,uni0474" + k="-16" /> + <hkern g1="quoteleft,quotedblleft" + g2="X,uni0416,uni0425,uni046A" + k="-8" /> + <hkern g1="quoteleft,quotedblleft" + g2="florin" + k="86" /> + <hkern g1="quoteleft,quotedblleft" + g2="j" + k="-6" /> + <hkern g1="quoteleft,quotedblleft" + g2="i,igrave,iacute,icircumflex,idieresis,uni0469" + k="-6" /> + <hkern g1="quoteleft,quotedblleft" + g2="m,n,p,r,ntilde" + k="53" /> + <hkern g1="quoteright,quotedblright" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="225" /> + <hkern g1="quoteright,quotedblright" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="33" /> + <hkern g1="quoteright,quotedblright" + g2="J" + k="111" /> + <hkern g1="quoteright,quotedblright" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="-61" /> + <hkern g1="quoteright,quotedblright" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-29" /> + <hkern g1="quoteright,quotedblright" + g2="Y,Yacute,Ydieresis,uni040E" + k="-16" /> + <hkern g1="quoteright,quotedblright" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="70" /> + <hkern g1="quoteright,quotedblright" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="147" /> + <hkern g1="quoteright,quotedblright" + g2="f,fi,fl,f_f_i,f_f_l" + k="-12" /> + <hkern g1="quoteright,quotedblright" + g2="oslash" + k="115" /> + <hkern g1="quoteright,quotedblright" + g2="s,scaron,uni0455" + k="113" /> + <hkern g1="quoteright,quotedblright" + g2="w" + k="-12" /> + <hkern g1="quoteright,quotedblright" + g2="Eth" + k="25" /> + <hkern g1="quoteright,quotedblright" + g2="Oslash" + k="25" /> + <hkern g1="quoteright,quotedblright" + g2="S,Scaron,uni0405" + k="6" /> + <hkern g1="quoteright,quotedblright" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="6" /> + <hkern g1="quoteright,quotedblright" + g2="V,uni0423,uni0474" + k="-16" /> + <hkern g1="quoteright,quotedblright" + g2="X,uni0416,uni0425,uni046A" + k="-8" /> + <hkern g1="quoteright,quotedblright" + g2="florin" + k="74" /> + <hkern g1="quoteright,quotedblright" + g2="germandbls" + k="25" /> + <hkern g1="quoteright,quotedblright" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="-12" /> + <hkern g1="quoteright,quotedblright" + g2="Lslash" + k="37" /> + <hkern g1="quoteright,quotedblright" + g2="lslash" + k="25" /> + <hkern g1="quoteright,quotedblright" + g2="m,n,p,r,ntilde" + k="57" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="-37" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="109" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="J" + k="12" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="188" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="176" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="Y,Yacute,Ydieresis,uni040E" + k="250" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="33" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="f,fi,fl,f_f_i,f_f_l" + k="37" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="oslash" + k="12" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="s,scaron,uni0455" + k="6" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="w" + k="94" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="102" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="Eth" + k="37" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="Oslash" + k="45" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="S,Scaron,uni0405" + k="33" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="100" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="Z,Zcaron" + k="-6" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="t" + k="98" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="18" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="z,zcaron" + k="-12" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="V,uni0423,uni0474" + k="213" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="florin" + k="-53" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="germandbls" + k="12" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="j" + k="-57" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="106" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="x,uni0445,uni04B3" + k="-20" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Ntilde,Thorn,IJ,uni01C4,uni01C7,uni01CA,uni01F1" + k="12" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="lslash" + k="25" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="i,igrave,iacute,icircumflex,idieresis,uni0469" + k="12" /> + <hkern g1="slash" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="168" /> + <hkern g1="slash" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="90" /> + <hkern g1="slash" + g2="J" + k="197" /> + <hkern g1="slash" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="-57" /> + <hkern g1="slash" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-41" /> + <hkern g1="slash" + g2="Y,Yacute,Ydieresis,uni040E" + k="-33" /> + <hkern g1="slash" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="193" /> + <hkern g1="slash" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="74" /> + <hkern g1="slash" + g2="f,fi,fl,f_f_i,f_f_l" + k="39" /> + <hkern g1="slash" + g2="oslash" + k="176" /> + <hkern g1="slash" + g2="s,scaron,uni0455" + k="188" /> + <hkern g1="slash" + g2="w" + k="53" /> + <hkern g1="slash" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="33" /> + <hkern g1="slash" + g2="Eth" + k="31" /> + <hkern g1="slash" + g2="Oslash" + k="90" /> + <hkern g1="slash" + g2="S,Scaron,uni0405" + k="45" /> + <hkern g1="slash" + g2="t" + k="12" /> + <hkern g1="slash" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="68" /> + <hkern g1="slash" + g2="z,zcaron" + k="86" /> + <hkern g1="slash" + g2="m,n,p,r,ntilde" + k="98" /> + <hkern g1="underscore" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="-61" /> + <hkern g1="underscore" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="82" /> + <hkern g1="underscore" + g2="J" + k="37" /> + <hkern g1="underscore" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="94" /> + <hkern g1="underscore" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="98" /> + <hkern g1="underscore" + g2="Y,Yacute,Ydieresis,uni040E" + k="160" /> + <hkern g1="underscore" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="53" /> + <hkern g1="underscore" + g2="f,fi,fl,f_f_i,f_f_l" + k="20" /> + <hkern g1="underscore" + g2="oslash" + k="45" /> + <hkern g1="underscore" + g2="w" + k="82" /> + <hkern g1="underscore" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="70" /> + <hkern g1="underscore" + g2="Eth" + k="12" /> + <hkern g1="underscore" + g2="Oslash" + k="61" /> + <hkern g1="underscore" + g2="S,Scaron,uni0405" + k="45" /> + <hkern g1="underscore" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="37" /> + <hkern g1="underscore" + g2="Z,Zcaron" + k="-33" /> + <hkern g1="underscore" + g2="t" + k="74" /> + <hkern g1="underscore" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="37" /> + <hkern g1="underscore" + g2="z,zcaron" + k="-12" /> + <hkern g1="underscore" + g2="j" + k="-139" /> + <hkern g1="ordmasculine" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="25" /> + </font> +</defs></svg> diff --git a/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-Bold.ttf b/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-Bold.ttf new file mode 100755 index 0000000000000000000000000000000000000000..14e95f028a54fccf6c8897282d151eadf0792c5d Binary files /dev/null and b/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-Bold.ttf differ diff --git a/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-Bold.woff b/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-Bold.woff new file mode 100755 index 0000000000000000000000000000000000000000..3a9ef4654d3c78462d633c683408adc12ee2689c Binary files /dev/null and b/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-Bold.woff differ diff --git a/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-Bold.woff2 b/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-Bold.woff2 new file mode 100755 index 0000000000000000000000000000000000000000..8727462b27b5feab747e9b1eae7ba38f6faa327f Binary files /dev/null and b/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-Bold.woff2 differ diff --git a/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-BoldItalic.eot b/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-BoldItalic.eot new file mode 100755 index 0000000000000000000000000000000000000000..85dd8922b5e3e5b7963a9e5f892dc96fd956afe2 Binary files /dev/null and b/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-BoldItalic.eot differ diff --git a/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-BoldItalic.svg b/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-BoldItalic.svg new file mode 100755 index 0000000000000000000000000000000000000000..aec60275562986622f83035fe7876224bd22cbea --- /dev/null +++ b/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-BoldItalic.svg @@ -0,0 +1,8339 @@ +<?xml version="1.0" standalone="no"?> +<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" > +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1"> +<metadata> +Created by FontForge 20161013 at Sun Mar 19 13:47:48 2017 + By ,,, +Copyright (c)2015, HK Grotesk Latin by Alfredo Marco Pradil (ammpradil@gmail.com) and HK Grotesk Cyrillic by Stefan Peev (http://www.contextbg.net/). HK Grotesk is a trademark of Alfredo Marco Pradil. +</metadata> +<defs> +<font id="HKGrotesk-BoldItalic" horiz-adv-x="1167" > + <font-face + font-family="HK Grotesk" + font-weight="700" + font-style="italic" + font-stretch="normal" + units-per-em="2048" + panose-1="0 0 8 0 0 0 0 0 0 0" + ascent="1434" + descent="-614" + x-height="999" + cap-height="1413" + bbox="-727 -522 2798 2239" + underline-thickness="82" + underline-position="-410" + slope="-13" + unicode-range="U+0020-FB02" + /> +<missing-glyph horiz-adv-x="1257" +d="M104 0l220 954h819l-219 -954h-820zM229 102h615l174 750h-615z" /> + <glyph glyph-name="fi" unicode="fi" horiz-adv-x="1106" +d="M61 0l183 795h-156l47 204l160 11q45 198 171 311t341 113q51 0 95 -7.5t71.5 -16.5t55 -26.5t39 -27.5t30.5 -29l22 -22l-159 -172q-20 24 -36.5 38.5t-54.5 27.5t-90 13q-199 0 -250 -223l553 10l-229 -999h-236l183 795h-316l-182 -795h-242z" /> + <glyph glyph-name="fl" unicode="fl" horiz-adv-x="1139" +d="M825 -20q-40 0 -72 11t-59.5 37t-33.5 70t6 111l229 967q-59 43 -143 43q-73 0 -130 -41.5t-71 -102.5l-19 -76h162l-47 -204h-162l-182 -795h-242l183 795h-156l47 204h156l24 103q35 151 165.5 241.5t310.5 90.5q201 0 350 -166l-219 -971q-4 -18 -6.5 -32t-2 -24 +t0.5 -17.5t4.5 -12t6 -7.5t9 -4t10 -1h12h11.5q23 0 55 8l-35 -209q-92 -18 -162 -18z" /> + <glyph glyph-name="f_f_i" unicode="ffi" horiz-adv-x="1778" +d="M70 0l182 795h-164l47 204h164l20 82q26 111 102 192.5t176 121t212 39.5q87 0 166 -27t131 -76q144 103 342 103q183 0 346 -129l-160 -175q-16 16 -27.5 26t-36.5 25t-60.5 23t-79.5 8q-103 0 -171.5 -45.5t-82.5 -109.5l-15 -58h594l-229 -999h-236l183 795h-359 +l-182 -795h-246l182 795h-372l-183 -795h-243zM543 999h375l20 82q8 45 25 76q-31 28 -67 41.5t-95 13.5q-98 0 -164 -45.5t-80 -109.5z" /> + <glyph glyph-name="f_f_l" unicode="ffl" horiz-adv-x="1812" +d="M1495 -20q-32 0 -59.5 6.5t-53 22.5t-39.5 42.5t-19 65.5t9 92l230 967q-54 36 -156 36q-83 0 -151.5 -38.5t-84.5 -106.5l-16 -68h176l-47 -204h-176l-182 -795h-246l182 795h-366l-183 -795h-245l182 795h-162l47 204h164l25 103q20 88 67.5 154t114 104t141.5 56 +t160 18q84 0 158 -25.5t125 -73.5q145 99 376 99q70 0 130.5 -16.5t101.5 -43.5t67 -52.5t45 -53.5l-229 -1012q-6 -17 -2.5 -28t5 -17t11 -8.5t15.5 -3t18 -0.5q26 0 68 8l-35 -209q-99 -18 -166 -18zM543 999l372 11q24 101 39 149q-1 1 -12 9t-22 14t-30 14t-45.5 12 +t-58.5 4q-97 0 -155.5 -43t-73.5 -108z" /> + <glyph glyph-name=".notdef" horiz-adv-x="1257" +d="M104 0l220 954h819l-219 -954h-820zM229 102h615l174 750h-615z" /> + <glyph glyph-name=".null" horiz-adv-x="0" + /> + <glyph glyph-name="nonmarkingreturn" horiz-adv-x="682" + /> + <glyph glyph-name="space" unicode=" " horiz-adv-x="553" + /> + <glyph glyph-name="exclam" unicode="!" horiz-adv-x="635" +d="M209 428l203 1006h241l-260 -1006h-184zM70 0l59 264h266l-59 -264h-266z" /> + <glyph glyph-name="quotedbl" unicode=""" horiz-adv-x="958" +d="M287 866l127 547h204l-126 -547h-205zM635 866l127 547h205l-127 -547h-205z" /> + <glyph glyph-name="numbersign" unicode="#" horiz-adv-x="1382" +d="M104 0l187 414h-234l41 172h269l114 262h-241l43 180h276l189 406h194l-197 -437h246l195 437h194l-190 -414h233l-41 -172h-268l-115 -262h242l-43 -180h-276l-187 -406h-192l192 436h-248l-190 -436h-193zM559 586h248l115 262h-248z" /> + <glyph glyph-name="dollar" unicode="$" horiz-adv-x="1114" +d="M291 -246l61 236q-155 29 -249.5 135.5t-82.5 269.5l250 33q-11 -111 52 -164t180 -53q118 0 195.5 54t103.5 161q10 45 -10.5 82t-62.5 62t-97 51.5t-113 51.5t-111 61.5t-90.5 81t-51.5 110.5t5 151q31 136 142 229t260 124l59 229h201l-60 -229q105 -18 179.5 -78.5 +t107.5 -161.5l-223 -100q-39 124 -188 124q-82 0 -149.5 -48.5t-84.5 -123.5q-10 -42 11.5 -76.5t64 -58t97.5 -49.5t113 -50.5t110.5 -62t89 -84.5t50 -116t-7.5 -158q-37 -166 -175 -275.5t-316 -129.5l-59 -228h-201z" /> + <glyph glyph-name="percent" unicode="%" horiz-adv-x="1540" +d="M139 -20l1131 1474h217l-1131 -1474h-217zM436 768q-66 0 -113 23.5t-71.5 60.5t-35 86t-9 95t11.5 91q12 50 36 99t63.5 99.5t101.5 82t137 31.5q59 0 103.5 -21.5t70.5 -57t39 -82.5t12.5 -97t-12.5 -101q-13 -55 -40.5 -107.5t-68.5 -98.5t-100 -74.5t-125 -28.5z +M444 940q50 0 94.5 54.5t61.5 129.5q14 59 -1 98.5t-56 39.5q-52 0 -95.5 -52t-62.5 -131q-13 -60 1.5 -99.5t57.5 -39.5zM1083 -10q-65 0 -112 24t-71 62t-35 87t-9 95.5t12 91.5q10 39 26 79t45.5 84t66 77.5t89.5 55.5t113 22q59 0 104 -21.5t70.5 -57.5t38 -83.5 +t11.5 -98t-13 -102.5q-13 -56 -41 -109.5t-69 -100.5t-100 -76t-126 -29zM1096 162q48 0 92 56t61 134q15 58 0 100t-55 42q-53 0 -97 -54t-63 -135q-14 -62 1 -102.5t61 -40.5z" /> + <glyph glyph-name="ampersand" unicode="&" horiz-adv-x="1378" +d="M1257 662q-51 -190 -183 -353l153 -231l-203 -154l-135 210q-218 -157 -457 -157q-133 0 -230 43t-141.5 129.5t-17.5 202.5q14 60 45.5 115t70 96t93.5 82t103.5 70t113.5 63q-128 171 -88 342q22 93 95 165.5t166 108.5t187 36q161 0 251.5 -102.5t56.5 -250.5 +q-26 -113 -111.5 -198.5t-221.5 -164.5l141 -212q61 99 85 205zM604 1071q-15 -69 60 -194q112 60 177 115.5t81 125.5q11 51 -16 86t-91 35q-71 0 -132 -45.5t-79 -122.5zM449 184q173 0 327 123l-187 290q-141 -75 -221 -142t-100 -152q-13 -60 35.5 -89.5t145.5 -29.5z +" /> + <glyph glyph-name="quotesingle" unicode="'" horiz-adv-x="610" +d="M295 895l125 547h205l-125 -547h-205z" /> + <glyph glyph-name="parenleft" unicode="(" horiz-adv-x="573" +d="M209 -117q-85 117 -99 364t44 482q63 275 173.5 482t250.5 331l225 -16q-179 -171 -294 -379.5t-175 -466.5q-41 -179 -44.5 -320t25.5 -256.5t95 -236.5z" /> + <glyph glyph-name="parenright" unicode=")" horiz-adv-x="573" +d="M-131 -117q123 124 205.5 239t148.5 264.5t109 338.5q115 492 -74 817l207 -16q55 -83 81.5 -199.5t20.5 -282t-51 -360.5q-53 -231 -173 -466.5t-257 -350.5z" /> + <glyph glyph-name="asterisk" unicode="*" horiz-adv-x="901" +d="M422 834l-139 102l192 160l-219 30l98 168l193 -82l18 201h195l-76 -201l225 82l23 -168l-236 -30l123 -160l-176 -102l-63 208z" /> + <glyph glyph-name="plus" unicode="+" horiz-adv-x="1253" +d="M535 106v426h-457v185h457v426h184v-426h457v-185h-457v-426h-184z" /> + <glyph glyph-name="comma" unicode="," horiz-adv-x="633" +d="M-14 -225l213 489h284l-333 -489h-164z" /> + <glyph glyph-name="hyphen" unicode="-" horiz-adv-x="866" +d="M150 532l40 185h584l-41 -185h-583z" /> + <glyph glyph-name="period" unicode="." horiz-adv-x="647" +d="M86 0l59 264h246l-59 -264h-246z" /> + <glyph glyph-name="slash" unicode="/" horiz-adv-x="934" +d="M-254 -430l1229 1946h233l-1231 -1946h-231z" /> + <glyph glyph-name="zero" unicode="0" horiz-adv-x="1188" +d="M496 -20q-93 0 -167 25.5t-122.5 68.5t-82.5 103t-49.5 126.5t-19.5 141t3.5 145t23.5 139.5q22 93 59 185t99 188t138.5 168.5t184 119t228.5 46.5q115 0 202 -43.5t138 -117t76 -170.5t23 -204.5t-28 -218.5q-25 -104 -68 -203t-108 -190t-143.5 -159.5t-178.5 -109 +t-208 -40.5zM518 219q64 0 124.5 31t108 82t88 118t68 138t43.5 143q15 67 20 130.5t-4 124.5t-32 106t-67.5 72.5t-106.5 27.5q-82 0 -156 -45t-128.5 -119.5t-93 -162t-60.5 -181.5q-16 -67 -20.5 -130.5t4 -125t32 -107.5t70 -74t110.5 -28z" /> + <glyph glyph-name="one" unicode="1" horiz-adv-x="1188" +d="M444 0l238 1030h-313l43 193h166q71 0 125.5 44t70.5 117l6 29h240l-326 -1413h-250z" /> + <glyph glyph-name="two" unicode="2" horiz-adv-x="1188" +d="M-61 0l43 207l40 22q39 22 102.5 59.5t139 85.5t165 112t163.5 126q282 206 330 410q18 81 -16 131.5t-128 50.5q-55 0 -103.5 -19t-84 -50t-65 -73t-48.5 -84.5t-31 -88.5l-239 37q23 99 76.5 189.5t129.5 161.5t177.5 113t212.5 42q200 0 304.5 -125.5t59.5 -315.5 +q-17 -74 -60.5 -152t-109 -152.5t-130 -137t-146.5 -131.5q-171 -120 -307 -195l649 6l-53 -229h-1071z" /> + <glyph glyph-name="three" unicode="3" horiz-adv-x="1188" +d="M475 -20q-108 0 -197 30.5t-151 90.5t-84 149t4 207l240 -6q-25 -114 36 -176t179 -62q125 0 225 64t125 174q22 92 -36 139t-177 47h-152l54 225h137q89 0 152.5 50.5t82.5 138.5q17 69 -28.5 108t-132.5 39q-97 0 -174.5 -59t-100.5 -152l-231 37q29 129 112 223.5 +t192 140.5t230 46q91 0 168 -28t130 -80.5t74 -128.5t-1 -173q-18 -74 -66 -145t-120 -123q85 -51 113.5 -144.5t4.5 -212.5q-24 -103 -84 -184.5t-142.5 -132t-180 -76.5t-201.5 -26z" /> + <glyph glyph-name="four" unicode="4" horiz-adv-x="1188" +d="M565 0l76 332h-653l32 147l906 934h215l-197 -850h225l-53 -231h-225l-76 -332h-250zM369 563h325l109 461z" /> + <glyph glyph-name="five" unicode="5" horiz-adv-x="1188" +d="M477 -20q-126 0 -224 60.5t-148 160.5t-48 219l242 45q-1 -52 8 -95t31 -81t64 -59t102 -21q116 0 215.5 90t126.5 207q22 100 -28 168.5t-165 68.5q-73 0 -150.5 -39.5t-129.5 -101.5l-219 68l307 743h788l-53 -233h-586l-116 -258q103 49 223 49q133 0 230.5 -69 +t137 -187t7.5 -256q-30 -126 -123 -236.5t-224.5 -176.5t-267.5 -66z" /> + <glyph glyph-name="six" unicode="6" horiz-adv-x="1188" +d="M487 -20q-143 0 -248.5 68t-149 185t-11.5 256q28 129 125 238l585 686h295l-421 -465h24q142 0 248.5 -63.5t152 -177.5t13.5 -254q-22 -93 -80 -179t-138.5 -151t-184 -104t-210.5 -39zM518 217q114 0 215 82t127 197q23 96 -35 164.5t-163 68.5q-116 0 -217.5 -81.5 +t-127.5 -196.5q-23 -97 36 -165.5t165 -68.5z" /> + <glyph glyph-name="seven" unicode="7" horiz-adv-x="1188" +d="M82 0l872 1182h-710l53 231h1020l-29 -129l-921 -1284h-285z" /> + <glyph glyph-name="eight" unicode="8" horiz-adv-x="1188" +d="M485 -20q-105 0 -192.5 28t-151 84.5t-87 141t0.5 198.5q25 106 98.5 195t186.5 149q-106 106 -66 295q27 113 109.5 197t190 125t223.5 41q90 0 166.5 -27.5t129.5 -80t73.5 -128t-1.5 -172.5q-17 -76 -68 -148t-128 -126q85 -55 117 -149t4 -216q-23 -102 -83.5 -181.5 +t-144 -128t-179.5 -73t-198 -24.5zM668 858q95 0 168.5 53t93.5 140q16 72 -28 111.5t-130 39.5q-90 0 -165 -51t-95 -133q-17 -74 25 -117t131 -43zM512 207q122 0 218.5 64.5t121.5 177.5q22 93 -38 143.5t-175 50.5q-128 0 -222 -63.5t-120 -176.5q-22 -94 40.5 -145 +t174.5 -51z" /> + <glyph glyph-name="nine" unicode="9" horiz-adv-x="1188" +d="M199 0l422 465h-25q-106 0 -194.5 37t-143.5 103t-77.5 157t3.5 199q29 124 118 232t221 174.5t274 66.5q143 0 248.5 -68t149 -185.5t11.5 -256.5q-33 -134 -125 -238l-585 -686h-297zM621 684q116 0 218 82t128 197q22 97 -36.5 165t-164.5 68q-114 0 -216 -82 +t-128 -196q-23 -97 36 -165.5t163 -68.5z" /> + <glyph glyph-name="colon" unicode=":" horiz-adv-x="676" +d="M248 690l61 264h266l-61 -264h-266zM90 0l60 264h266l-60 -264h-266z" /> + <glyph glyph-name="semicolon" unicode=";" horiz-adv-x="659" +d="M272 690l62 264h266l-61 -264h-267zM0 -225l213 489h285l-334 -489h-164z" /> + <glyph glyph-name="less" unicode="<" horiz-adv-x="1237" +d="M1030 152l-985 522l985 522l103 -178l-693 -344l693 -344z" /> + <glyph glyph-name="equal" unicode="=" horiz-adv-x="1268" +d="M219 752v206h830v-206h-830zM219 385v207h830v-207h-830z" /> + <glyph glyph-name="greater" unicode=">" horiz-adv-x="1237" +d="M207 152l-103 178l693 344l-693 344l103 178l985 -522z" /> + <glyph glyph-name="question" unicode="?" horiz-adv-x="997" +d="M369 424l37 156q15 67 45 117t66 79t77 52t81 43t75 42.5t61.5 60t38.5 87.5q21 87 -27 128.5t-151 41.5q-123 0 -198.5 -65.5t-102.5 -184.5l-209 20q46 207 186 320t336 113q94 0 171 -27.5t130 -81t72 -132t-4 -181.5q-23 -99 -74.5 -169t-109.5 -105.5t-114.5 -61 +t-98 -54t-50.5 -65.5l-31 -133h-206zM246 0l59 264h266l-59 -264h-266z" /> + <glyph glyph-name="at" unicode="@" horiz-adv-x="2009" +d="M813 -348q-187 0 -339 62.5t-249 178t-132 280.5t13 370q43 184 146 347.5t247 283t330 189t385 69.5q119 0 223 -25t184.5 -71t143.5 -110t103 -143t60.5 -169t18.5 -189.5t-26 -202.5q-21 -91 -58.5 -176.5t-91.5 -162.5t-120 -134.5t-149 -91t-173 -33.5 +q-129 0 -189 66.5t-42 173.5q-144 -121 -314 -121q-85 0 -145 35t-87.5 93.5t-34.5 135t15 160.5q23 98 79 201t134.5 191.5t183.5 145t214 56.5q93 0 152.5 -41t82.5 -105l43 97l197 -11q-31 -75 -112.5 -245.5t-141 -310t-80.5 -232.5q-13 -54 -1.5 -72t60.5 -18 +q76 0 144 40t117 106t84 143t53 159q23 89 19 173.5t-25.5 159t-69.5 137.5t-112.5 108t-155.5 70.5t-199 25.5q-164 0 -317 -58.5t-271 -159t-202.5 -236.5t-120.5 -289q-36 -156 -9 -277.5t104 -205.5t193 -127.5t259 -43.5q116 0 256 43l38 -190q-146 -49 -315 -49z +M819 238q79 0 155 42.5t133.5 110t99 147t59.5 156.5q19 86 -6 129t-107 43q-64 0 -126.5 -28t-113.5 -74t-93.5 -104.5t-71.5 -121.5t-43 -124q-19 -87 7.5 -131.5t106.5 -44.5z" /> + <glyph glyph-name="A" unicode="A" horiz-adv-x="1343" +d="M-104 0l890 1413h191l237 -1413h-270l-39 307h-549l-180 -307h-280zM494 524h376l-67 516z" /> + <glyph glyph-name="B" unicode="B" horiz-adv-x="1274" +d="M68 0l325 1413h484q67 0 127 -13.5t114 -43.5t87.5 -77t46.5 -114t-9 -155q-21 -84 -82 -155.5t-137 -109.5q85 -34 128 -138.5t15 -219.5q-27 -120 -112 -210t-196.5 -133.5t-233.5 -43.5h-557zM516 844h254q85 0 153.5 46t92.5 150q16 72 -32.5 108t-143.5 36h-246z +M377 242h295q100 0 169 55.5t95 163.5q16 69 -31 116.5t-143 47.5h-297z" /> + <glyph glyph-name="C" unicode="C" horiz-adv-x="1432" +d="M659 -20q-115 0 -208.5 27.5t-157.5 78t-107 119.5t-61 152.5t-15.5 177t25.5 194.5q33 144 103 269.5t172.5 224.5t246 156t310.5 57q217 0 360.5 -110t173.5 -306l-252 -74q-7 135 -91 201.5t-222 66.5q-111 0 -207 -42t-164 -115.5t-115 -165t-71 -197.5 +q-26 -100 -19.5 -186.5t39.5 -150.5t107 -100t182 -36q144 0 256.5 66t200.5 207l213 -117q-127 -195 -308 -296t-391 -101z" /> + <glyph glyph-name="D" unicode="D" horiz-adv-x="1409" +d="M68 0l325 1413h404q359 0 506 -192t65 -547q-75 -323 -304 -498.5t-583 -175.5h-413zM375 233h123q514 0 628 496q56 244 -29 347.5t-345 103.5h-158z" /> + <glyph glyph-name="E" unicode="E" horiz-adv-x="1245" +d="M68 0l325 1413h940l-53 -233h-686l-84 -357h639l-53 -233h-639l-80 -350h686l-55 -240h-940z" /> + <glyph glyph-name="F" unicode="F" horiz-adv-x="1235" +d="M68 0l325 1413h1002l-54 -233h-747l-84 -357h659l-53 -233h-659l-135 -590h-254z" /> + <glyph glyph-name="G" unicode="G" horiz-adv-x="1534" +d="M659 -20q-115 0 -208.5 27.5t-157.5 78t-107 119.5t-61 152.5t-15.5 177t25.5 194.5q26 114 75 217.5t123 193.5t166.5 155.5t212.5 103t255 37.5q213 0 352 -109t180 -307l-239 -74q-29 268 -320 268q-111 0 -207 -42t-165 -115t-117 -165t-72 -198 +q-19 -82 -20.5 -153.5t16.5 -133.5t56.5 -106t103 -69t151.5 -25q157 0 294.5 100.5t197.5 261.5l-324 -10l47 205h567l-176 -764h-200l24 188q-79 -99 -199 -153.5t-258 -54.5z" /> + <glyph glyph-name="H" unicode="H" horiz-adv-x="1491" +d="M68 0l325 1413h254l-137 -590h618l138 590h254l-326 -1413h-254l135 590h-618l-135 -590h-254z" /> + <glyph glyph-name="I" unicode="I" horiz-adv-x="618" +d="M68 0l325 1413h254l-325 -1413h-254z" /> + <glyph glyph-name="J" unicode="J" horiz-adv-x="1139" +d="M401 -20q-107 0 -188.5 38.5t-127.5 103.5t-62.5 149.5t-2.5 179.5l250 8q-18 -113 19.5 -178.5t140.5 -65.5q135 0 202.5 75t102.5 226l154 664h-533l54 233h786l-211 -913q-27 -117 -73.5 -209t-116.5 -163t-170 -109.5t-224 -38.5z" /> + <glyph glyph-name="K" unicode="K" horiz-adv-x="1491" +d="M68 0l325 1413h254l-172 -737l858 737h344l-700 -579l379 -834h-309l-281 664l-358 -297l-86 -367h-254z" /> + <glyph glyph-name="L" unicode="L" horiz-adv-x="1063" +d="M68 0l325 1413h254l-270 -1173h604l-55 -240h-858z" /> + <glyph glyph-name="M" unicode="M" horiz-adv-x="1798" +d="M68 0l325 1413h340l141 -1005l609 1005h344l-326 -1413h-244l246 1057l-567 -934h-246l-133 934l-246 -1057h-243z" /> + <glyph glyph-name="N" unicode="N" horiz-adv-x="1454" +d="M68 0l325 1413h250l365 -989l231 989h244l-326 -1413h-252l-362 991l-232 -991h-243z" /> + <glyph glyph-name="O" unicode="O" horiz-adv-x="1528" +d="M657 -20q-116 0 -209 28t-157 78.5t-106.5 119.5t-60.5 152.5t-15 177t26 193.5q33 143 102.5 268t172 224t246.5 156t311 57q116 0 209 -28t156.5 -78.5t106 -119.5t60.5 -153t15.5 -177.5t-25.5 -193.5q-33 -143 -102.5 -268t-172 -223.5t-246.5 -155.5t-311 -57z +M682 205q113 0 207.5 42t160.5 116.5t111 166t70 199.5q18 79 21 147.5t-13 130.5t-51 106t-98 69.5t-150 25.5q-112 0 -206 -42t-160 -116t-111 -165.5t-70 -200.5q-18 -79 -21 -147.5t12.5 -130.5t51 -106t98 -69.5t148.5 -25.5z" /> + <glyph glyph-name="P" unicode="P" +d="M68 0l325 1413h436q145 0 247 -51.5t145.5 -152t11.5 -236.5q-42 -184 -200.5 -285.5t-381.5 -101.5h-196l-136 -586h-251zM508 823h184q255 0 299 195q19 78 -30 118t-175 40h-196z" /> + <glyph glyph-name="Q" unicode="Q" horiz-adv-x="1573" +d="M1206 -119l-155 197q-171 -98 -394 -98q-116 0 -209 28t-157 78.5t-106.5 119.5t-60.5 152.5t-15 177t26 193.5q33 143 102.5 268t172 224t246.5 156t311 57q116 0 209 -28t156.5 -79t106 -120t60.5 -153.5t15.5 -178t-25.5 -193.5q-30 -129 -93.5 -250t-152.5 -213 +l160 -184zM686 219q108 0 219 45l-149 172l194 150l152 -164q103 131 143 307q18 78 19.5 146t-17 127t-56.5 101.5t-102.5 66.5t-150.5 24q-113 0 -209 -40t-164.5 -111t-115 -161.5t-70.5 -197.5q-18 -78 -19.5 -146t16.5 -127t56 -101.5t102.5 -66.5t151.5 -24z" /> + <glyph glyph-name="R" unicode="R" horiz-adv-x="1268" +d="M66 -2l327 1415h451q99 0 182 -29.5t138.5 -86t77 -138t-2.5 -184.5q-29 -122 -125 -215t-229 -135l241 -627h-274l-209 606h-182l-142 -606h-253zM510 811h217q103 5 176 60.5t92 144.5q19 79 -30.5 124.5t-157.5 45.5h-211z" /> + <glyph glyph-name="S" unicode="S" horiz-adv-x="1137" +d="M522 -16q-102 0 -191.5 28t-158 80t-108 134t-39.5 184l260 43q0 -115 73 -174.5t193 -59.5q115 0 184.5 54t69.5 149q0 47 -18.5 86.5t-50.5 67.5t-73 52.5t-86 47t-90.5 46.5t-86.5 54t-73 66.5t-50.5 88t-18.5 113.5q0 174 132.5 282t332.5 108q158 0 279 -68.5 +t161 -189.5l-219 -105q-19 67 -82 107.5t-141 40.5q-83 0 -143 -44.5t-60 -117.5q0 -48 30 -88.5t78.5 -70.5t107 -60.5t116.5 -67t106.5 -80.5t78.5 -110t30 -148q0 -132 -74 -235t-197 -158t-272 -55z" /> + <glyph glyph-name="T" unicode="T" horiz-adv-x="1180" +d="M348 0l273 1186h-443l53 227h1139l-53 -227h-443l-272 -1186h-254z" /> + <glyph glyph-name="U" unicode="U" horiz-adv-x="1380" +d="M584 -20q-142 0 -239.5 42t-145 118.5t-58 183.5t22.5 237l196 852h254l-194 -844q-26 -114 -22 -190.5t56 -115t160 -38.5q86 0 151 24.5t109.5 73.5t73.5 113.5t49 153.5l191 823h254l-199 -862q-132 -571 -659 -571z" /> + <glyph glyph-name="V" unicode="V" horiz-adv-x="1343" +d="M465 0l-240 1413h277l147 -1001l613 1001h282l-889 -1413h-190z" /> + <glyph glyph-name="W" unicode="W" horiz-adv-x="2003" +d="M336 0l-98 1413h260l59 -1040l537 958h196l90 -958l543 1040h268l-749 -1413h-246l-92 930l-522 -930h-246z" /> + <glyph glyph-name="X" unicode="X" horiz-adv-x="1343" +d="M-94 0l639 707l-305 706h299l213 -545l471 545h307l-637 -706l307 -707h-297l-219 537l-469 -537h-309z" /> + <glyph glyph-name="Y" unicode="Y" horiz-adv-x="1395" +d="M457 0l129 551l-377 862h295l254 -635l551 635h303l-772 -862l-129 -551h-254z" /> + <glyph glyph-name="Z" unicode="Z" horiz-adv-x="1272" +d="M-55 0l37 176l1019 1004h-739l53 233h1094l-41 -184l-1014 -1000h783l-54 -229h-1138z" /> + <glyph glyph-name="bracketleft" unicode="[" horiz-adv-x="641" +d="M23 -164l401 1737h432l-37 -162h-235l-326 -1411h236l-39 -164h-432z" /> + <glyph glyph-name="backslash" unicode="\" horiz-adv-x="934" +d="M530 -430l-329 1946h221l332 -1946h-224z" /> + <glyph glyph-name="bracketright" unicode="]" horiz-adv-x="641" +d="M-121 -164l39 164h236l325 1411h-235l37 162h432l-402 -1737h-432z" /> + <glyph glyph-name="asciicircum" unicode="^" horiz-adv-x="981" +d="M131 805l584 692l270 -692h-235l-115 301l-256 -301h-248z" /> + <glyph glyph-name="underscore" unicode="_" horiz-adv-x="1247" +d="M41 -184l43 184h850l-43 -184h-850z" /> + <glyph glyph-name="grave" unicode="`" horiz-adv-x="532" +d="M461 1104l-236 309h236l153 -309h-153z" /> + <glyph glyph-name="a" unicode="a" horiz-adv-x="1171" +d="M891 999h248l-230 -999h-227l13 100q-119 -120 -306 -120q-84 0 -150 28.5t-106 78.5t-63 118.5t-21.5 148.5t19.5 168q23 100 71 189.5t115 158.5t156.5 109.5t187.5 40.5q86 0 157 -33t107 -96zM801 522q17 80 10 141.5t-51.5 98.5t-122.5 37q-125 0 -212 -90.5 +t-118 -231.5q-29 -123 11 -197.5t155 -74.5q127 0 211.5 87t116.5 230z" /> + <glyph glyph-name="b" unicode="b" horiz-adv-x="1176" +d="M578 -20q-86 0 -157.5 33t-107.5 96l-28 -109h-252l325 1411h252l-121 -504q120 113 297 113q84 0 150 -28.5t106.5 -79t63.5 -119t21.5 -148.5t-19.5 -168q-23 -100 -71 -189t-115 -158t-156.5 -109.5t-187.5 -40.5zM541 205q127 0 212.5 88.5t116.5 228.5 +q30 123 -10 200t-155 77q-126 0 -213 -90t-119 -232q-29 -122 12 -197t156 -75z" /> + <glyph glyph-name="c" unicode="c" horiz-adv-x="1004" +d="M434 -20q-81 0 -147 21t-111.5 58t-76 87.5t-43.5 111t-12 126.5t17 136q23 96 72.5 183t121.5 158t173.5 113t216.5 42q150 0 248 -82t125 -219l-244 -70q-3 70 -44 105.5t-112 35.5q-124 0 -206.5 -89t-112.5 -222q-15 -52 -12 -100t18.5 -85t55 -59t98.5 -22 +q77 0 144 45t104 117l202 -105q-80 -138 -204.5 -212t-270.5 -74z" /> + <glyph glyph-name="d" unicode="d" horiz-adv-x="1171" +d="M987 1413h248l-326 -1413h-227l13 100q-119 -120 -306 -120q-84 0 -150 28.5t-106 78.5t-63 118.5t-21.5 148.5t19.5 168q23 100 71 189.5t115 158.5t156.5 109.5t187.5 40.5q86 0 157 -33t107 -96zM801 522q17 80 10 141.5t-51.5 98.5t-122.5 37q-125 0 -212 -90.5 +t-118 -231.5q-29 -123 11 -197.5t155 -74.5q127 0 211.5 87t116.5 230z" /> + <glyph glyph-name="e" unicode="e" horiz-adv-x="1067" +d="M451 -12q-84 0 -152 20t-115.5 55.5t-80 84.5t-47 108t-14 124.5t16.5 135.5q22 96 71.5 183.5t121.5 158t173 112.5t216 42q109 0 187.5 -31.5t120.5 -83t60.5 -122.5t15 -145.5t-23.5 -156.5q-10 -39 -20 -63h-690q-9 -94 36.5 -144.5t147.5 -50.5q87 0 151 23t128 77 +l141 -163q-104 -89 -211.5 -126.5t-232.5 -37.5zM334 586h459q12 117 -28 169t-144 52q-101 0 -174 -61.5t-113 -159.5z" /> + <glyph glyph-name="f" unicode="f" horiz-adv-x="688" +d="M88 0l182 795h-182l47 202h184l35 146q34 143 128.5 217t246.5 74q84 0 176 -45l-121 -187q-35 23 -75 23t-69.5 -28t-41.5 -79l-29 -119h234l-47 -204h-234l-182 -795h-252z" /> + <glyph glyph-name="g" unicode="g" +d="M901 -10q-46 -204 -191 -316t-362 -112q-292 0 -403 223l207 117q18 -56 74.5 -91.5t148.5 -35.5q110 0 185 60t102 175l26 103q-116 -113 -297 -113q-84 0 -150 28.5t-106 78t-63 117t-21.5 145.5t19.5 163q22 96 69 183.5t113.5 155.5t156 108.5t187.5 40.5 +q86 0 157 -33t107 -96l29 108h246zM477 225q125 0 209 85.5t117 221.5q27 118 -13 192.5t-155 74.5q-125 0 -212 -89t-116 -223q-28 -116 13 -189t157 -73z" /> + <glyph glyph-name="h" unicode="h" horiz-adv-x="1165" +d="M31 0l325 1413h248l-125 -522q131 125 309 125q78 0 137 -24.5t93 -65.5t51.5 -96t17 -115.5t-15.5 -124.5l-135 -590h-248l133 580q14 62 14.5 108t-27 73t-85.5 27q-104 0 -202 -78t-120 -173l-122 -537h-248z" /> + <glyph glyph-name="i" unicode="i" horiz-adv-x="532" +d="M299 1188l51 225h256l-51 -225h-256zM31 0l229 999h242l-230 -999h-241z" /> + <glyph glyph-name="j" unicode="j" horiz-adv-x="543" +d="M303 1167l57 246h256l-57 -246h-256zM-98 -438q-89 0 -174 37l96 202q42 -18 78 -18q39 0 67 28t39 76l256 1112h246l-256 -1114q-34 -145 -124 -234t-228 -89z" /> + <glyph glyph-name="k" unicode="k" horiz-adv-x="1118" +d="M33 0l325 1413h244l-194 -829l473 415h321l-465 -387l271 -612h-283l-184 463l-195 -170l-70 -293h-243z" /> + <glyph glyph-name="l" unicode="l" horiz-adv-x="573" +d="M248 -20q-229 0 -176 229l278 1204h244l-268 -1157q-8 -34 6.5 -45.5t54.5 -11.5q12 0 70 8l-35 -209q-99 -18 -174 -18z" /> + <glyph glyph-name="m" unicode="m" horiz-adv-x="1743" +d="M31 0l229 999h246l-25 -96q110 115 264 115q188 0 256 -154q149 152 361 152q77 0 136.5 -24t93 -65.5t53 -96t17.5 -115.5t-15 -125l-136 -590h-247l133 580q13 62 13 109t-28 74.5t-86 27.5q-99 0 -177.5 -74t-102.5 -178l-123 -539h-248l135 584q13 61 13 107 +t-27.5 73t-85.5 27q-99 0 -178 -74t-103 -178l-123 -539h-245z" /> + <glyph glyph-name="n" unicode="n" +d="M31 0l229 999h248l-29 -108q131 125 309 125q78 0 137 -24.5t93 -65.5t51.5 -96t17 -115.5t-15.5 -124.5l-135 -590h-248l133 580q14 62 14.5 108t-27 73t-85.5 27q-104 0 -202 -78t-120 -173l-122 -537h-248z" /> + <glyph glyph-name="o" unicode="o" horiz-adv-x="1128" +d="M457 -20q-93 0 -169.5 27.5t-127.5 77t-83.5 117t-36 147.5t14.5 169q32 135 119 247t217 179.5t277 67.5q154 0 258.5 -73.5t140.5 -195.5t2 -270q-49 -208 -219.5 -350.5t-392.5 -142.5zM479 190q135 0 224 92.5t122 235.5q15 57 11.5 108.5t-21.5 90t-61.5 61.5 +t-108.5 23q-135 0 -224 -92.5t-122 -235.5q-15 -57 -11.5 -108t21.5 -90t61.5 -62t108.5 -23z" /> + <glyph glyph-name="p" unicode="p" horiz-adv-x="1171" +d="M-70 -438l332 1437h242l-19 -92q118 113 297 113q105 0 180.5 -44t112.5 -118.5t46.5 -173t-17.5 -207.5q-32 -135 -104 -246t-184 -181t-243 -70q-86 0 -157 33.5t-107 95.5l-131 -547h-248zM535 205q127 0 212 87.5t117 229.5q30 124 -10 201.5t-156 77.5 +q-125 0 -210.5 -90.5t-118.5 -233.5q-29 -123 11 -197.5t155 -74.5z" /> + <glyph glyph-name="q" unicode="q" horiz-adv-x="1169" +d="M559 -438l127 530q-117 -112 -297 -112q-84 0 -150 28.5t-106 78.5t-63 118.5t-21.5 148.5t19.5 168q23 100 71 189.5t115 158.5t156.5 109.5t187.5 40.5q86 0 157 -33t107 -96l35 108h240l-332 -1437h-246zM473 205q127 0 211.5 87t116.5 230q17 80 10 141.5t-51.5 98.5 +t-122.5 37q-125 0 -212 -90.5t-118 -231.5q-29 -123 11 -197.5t155 -74.5z" /> + <glyph glyph-name="r" unicode="r" horiz-adv-x="815" +d="M31 0l229 999h232l-31 -157q28 48 63 83.5t71.5 53.5t69 26.5t64.5 8.5q56 0 111.5 -19t91.5 -53l-146 -186q-55 32 -118 32q-99 0 -179.5 -86.5t-117.5 -248.5l-105 -453h-235z" /> + <glyph glyph-name="s" unicode="s" horiz-adv-x="907" +d="M373 -20q-166 0 -273 86t-118 204l204 66q10 -63 56 -108.5t133 -45.5q84 0 135 43t51 97q0 33 -23 55.5t-59.5 36.5t-81 26.5t-89 30t-81 43t-59.5 70.5t-23 106q0 146 115 235t285 89q134 0 235 -58t135 -163l-202 -82q-16 54 -61 85t-115 31q-68 0 -110 -29t-42 -73 +q0 -31 23 -54t60 -37.5t81.5 -28.5t89 -34t81.5 -47.5t60 -74.5t23 -109q0 -154 -124.5 -257t-305.5 -103z" /> + <glyph glyph-name="t" unicode="t" horiz-adv-x="760" +d="M395 -20q-151 0 -219.5 83.5t-36.5 223.5l117 508h-162l47 204h166l55 248l271 174l-96 -422h260l-47 -204h-261l-112 -486q-16 -66 7.5 -90t74.5 -24q73 0 155 41l-41 -230q-71 -26 -178 -26z" /> + <glyph glyph-name="u" unicode="u" +d="M377 -23q-78 0 -136.5 25.5t-92.5 68.5t-51 100.5t-16.5 120.5t15.5 130l133 577h248l-135 -585q-14 -62 -13 -107.5t33.5 -71.5t100.5 -26q49 0 93 14t88 47t79 96t55 152l111 481h248l-230 -999h-241l22 109q-131 -132 -311 -132z" /> + <glyph glyph-name="v" unicode="v" horiz-adv-x="999" +d="M287 0l-178 999h262l82 -684l403 684h268l-637 -999h-200z" /> + <glyph glyph-name="w" unicode="w" horiz-adv-x="1466" +d="M203 -4l-76 1003h258l23 -626l333 626h211l41 -624l320 624h262l-539 -999h-221l-43 655l-350 -659h-219z" /> + <glyph glyph-name="x" unicode="x" horiz-adv-x="1030" +d="M-109 0l461 504l-223 495h291l129 -329l285 329h305l-463 -495l225 -504h-293l-127 336l-286 -336h-304z" /> + <glyph glyph-name="y" unicode="y" horiz-adv-x="1032" +d="M-16 -430l292 457l-165 972h264l90 -694l418 694h272l-901 -1429h-270z" /> + <glyph glyph-name="z" unicode="z" horiz-adv-x="1004" +d="M1049 999l-37 -174l-684 -620h538l-47 -205h-880l34 162l708 633h-531l47 204h852z" /> + <glyph glyph-name="braceleft" unicode="{" horiz-adv-x="618" +d="M262 -156q-118 0 -158 123q-33 43 -4 170l84 361q0 11 2 18.5t-3 16t-7 13.5t-10.5 11t-14 9.5t-16 8.5t-17.5 8t-18 7.5t-18 7.5l24 160q77 24 117.5 56t55.5 91l98 426q28 126 97.5 187t197.5 61h51q30 0 84 -4l-25 -162q-48 12 -92 12q-85 0 -96 -45l-117 -510 +q-18 -77 -64.5 -125t-125.5 -88q54 -25 83 -73t17 -103l-84 -360q-15 -54 -2 -86.5t64 -32.5q29 0 81 12l-24 -166q-13 0 -43.5 -2t-44.5 -2h-72z" /> + <glyph glyph-name="bar" unicode="|" horiz-adv-x="623" +d="M-12 -512l473 2046h180l-473 -2046h-180z" /> + <glyph glyph-name="braceright" unicode="}" horiz-adv-x="618" +d="M-6 -156q-15 0 -43 2t-41 2l24 162q33 -8 66 -8q59 0 95.5 39.5t49.5 99.5l82 361q28 107 183 176q-125 72 -93 213l119 510q3 18 -4.5 21t-48.5 3q-43 0 -113 -16l25 166q54 4 84 4h51q127 0 173.5 -70.5t17.5 -197.5l-99 -426q-13 -59 8.5 -84.5t85.5 -50.5l-24 -160 +q-96 -34 -127 -59q-30 -24 -37 -54l-82 -360q-27 -120 -74 -187q-90 -86 -206 -86h-72z" /> + <glyph glyph-name="asciitilde" unicode="~" horiz-adv-x="1157" +d="M735 379q-64 0 -120 16t-88 35t-66 35t-60 16q-39 0 -49 -15.5t-10 -59.5h-170q0 123 59.5 184t167.5 61q73 0 133 -15.5t91 -33.5t62.5 -33.5t55.5 -15.5q43 0 54.5 19t11.5 73h178q0 -266 -250 -266z" /> + <glyph glyph-name="uni00A0" unicode=" " horiz-adv-x="563" + /> + <glyph glyph-name="exclamdown" unicode="¡" horiz-adv-x="635" +d="M240 735l59 264h266l-59 -264h-266zM-18 -434l260 1005h184l-203 -1005h-241z" /> + <glyph glyph-name="cent" unicode="¢" horiz-adv-x="1116" +d="M330 -205l51 187q-91 17 -154.5 68t-92 123.5t-34 162t18.5 184.5q28 119 89.5 221t165 178t232.5 99l49 182h181l-50 -186q120 -21 187 -96.5t96 -204.5l-227 -64q-4 94 -43 134t-125 40q-87 0 -158.5 -51t-114.5 -127t-65 -170q-16 -59 -14 -113.5t17 -96.5t56 -67.5 +t103 -25.5q94 0 159.5 50t114.5 145l184 -101q-78 -129 -173 -198t-224 -91l-47 -182h-182z" /> + <glyph glyph-name="sterling" unicode="£" horiz-adv-x="1200" +d="M23 0l45 197q162 74 242.5 171.5t80.5 241.5h-225l47 195h178q-27 166 28 313t181 237.5t291 90.5q150 0 248.5 -94t115.5 -228l-198 -49q-12 79 -63.5 122.5t-123.5 43.5q-104 0 -177.5 -67t-99.5 -166.5t-3 -202.5h483l-47 -195h-436q0 -86 -21 -168t-67 -149.5 +t-109 -91.5l717 4l-47 -205h-1040z" /> + <glyph glyph-name="currency" unicode="¤" horiz-adv-x="1176" +d="M135 129l-102 135l137 113q-55 115 -23 261.5t140 262.5l-82 94l155 135l82 -102q139 80 281 76t240 -86l135 110l104 -129l-135 -112q55 -117 24 -264.5t-141 -264.5l84 -94l-157 -135l-84 102q-137 -80 -279 -75t-242 88zM401 412q91 -79 203.5 -67t212.5 99 +q92 83 105 204.5t-72 205.5q-89 75 -201.5 63t-212.5 -98q-91 -80 -104 -203t69 -204z" /> + <glyph glyph-name="yen" unicode="¥" horiz-adv-x="1319" +d="M440 0l45 195h-299l41 184h299l29 117h-299l43 186h215l-305 731h246l256 -670l571 670h254l-641 -733h209l-41 -184h-299l-29 -117h299l-41 -184h-299l-45 -195h-209z" /> + <glyph glyph-name="brokenbar" unicode="¦" horiz-adv-x="643" +d="M274 731l172 744h201l-172 -744h-201zM35 -307l168 727h200l-167 -727h-201z" /> + <glyph glyph-name="section" unicode="§" horiz-adv-x="1106" +d="M455 -18q-79 0 -147.5 18.5t-122 55t-83.5 96t-28 135.5l243 49q-1 -88 40 -123t132 -35q92 0 157 35t79 100q8 35 -12 59.5t-59 38t-90 27t-104 25t-102 33.5t-84 52.5t-49 81.5t2 120q26 102 133 200q-68 68 -38 197q22 91 92 158t160.5 98t189.5 31q132 0 224.5 -59 +t119.5 -142l-213 -92q-12 104 -158 104q-90 0 -151 -44.5t-74 -102.5q-8 -36 19.5 -59.5t77.5 -36.5t111 -25t120 -32.5t105 -51.5t65.5 -89t1.5 -138q-27 -109 -127 -199q65 -68 35 -199q-18 -76 -66.5 -133.5t-114.5 -89.5t-137.5 -47.5t-146.5 -15.5zM688 573 +q105 34 127 132q-2 18 2 30.5t-8.5 25t-18 20.5t-26 17t-33 14t-39 12t-44 10.5t-47.5 10.5q-11 2 -17 3.5t-15.5 3.5t-17.5 4q-51 -20 -84 -60.5t-43 -82.5q-4 -19 0 -34.5t19.5 -28t30 -21t45 -17t50 -13t59.5 -13t60 -13.5z" /> + <glyph glyph-name="dieresis" unicode="¨" horiz-adv-x="842" +d="M401 1188l51 225h205l-51 -225h-205zM755 1188l52 225h204l-51 -225h-205z" /> + <glyph glyph-name="copyright" unicode="©" horiz-adv-x="1778" +d="M938 -49q-161 0 -307 60t-251 161t-167.5 241t-62.5 294q0 205 105.5 379t287 275t395.5 101q160 0 305.5 -60t250.5 -161t167.5 -240.5t62.5 -293.5t-62.5 -294t-167.5 -241t-250.5 -161t-305.5 -60zM938 139q159 0 297 77t219.5 208.5t81.5 282.5t-81.5 282t-219.5 208 +t-297 77q-160 0 -298 -77t-219 -208t-81 -282t81 -282.5t219 -208.5t298 -77zM954 264q-95 0 -170 36t-122.5 97t-72 140t-24.5 168t24.5 167.5t72 140t123 97t169.5 35.5q126 0 212 -61t143 -183l-174 -74q-34 70 -74.5 98.5t-106.5 28.5q-101 0 -151.5 -69t-50.5 -180 +q0 -112 49.5 -180t150.5 -68q71 0 109.5 29.5t71.5 97.5l176 -74q-58 -124 -144 -185t-211 -61z" /> + <glyph glyph-name="ordfeminine" unicode="ª" horiz-adv-x="807" +d="M381 709q-107 0 -168.5 67t-36.5 174q16 69 63 114.5t110 64t145 18.5l202 10q15 75 -10 108t-100 33q-108 0 -211 -116l-107 98q82 85 157 119.5t171 34.5q141 0 205 -82.5t35 -212.5l-97 -416h-133l19 76q-103 -90 -244 -90zM414 846q79 0 152.5 55t99.5 123l-181 -10 +q-60 0 -104.5 -30t-54.5 -79q-7 -24 21.5 -41.5t66.5 -17.5z" /> + <glyph glyph-name="guillemotleft" unicode="«" horiz-adv-x="954" +d="M367 156l-349 354l508 356l-45 -211l-215 -145l146 -143zM729 156l-348 354l508 356l-45 -211l-215 -145l145 -143z" /> + <glyph glyph-name="logicalnot" unicode="¬" horiz-adv-x="1300" +d="M850 291v289h-715v217h948v-506h-233z" /> + <glyph glyph-name="uni00AD" unicode="­" horiz-adv-x="1010" +d="M143 508l43 184h727l-43 -184h-727z" /> + <glyph glyph-name="registered" unicode="®" horiz-adv-x="1778" +d="M938 -47q-161 0 -307 60t-251 161t-167.5 241t-62.5 294q0 205 105.5 379t287 275t395.5 101q160 0 305.5 -60t250.5 -161t167.5 -240.5t62.5 -293.5t-62.5 -294t-167.5 -241t-250.5 -161t-305.5 -60zM938 133q162 0 302 78t222 211t82 287t-82 286.5t-222 210.5t-302 78 +q-163 0 -303.5 -78t-222.5 -210.5t-82 -286.5t82 -287t222.5 -211t303.5 -78zM670 289v825h321q137 0 211 -67t74 -187q0 -86 -39.5 -144t-101.5 -85l198 -342h-211l-172 315h-96v-315h-184zM844 778h147q63 0 87 19t24 63q0 46 -23 63t-88 17h-147v-162z" /> + <glyph glyph-name="macron" unicode="¯" horiz-adv-x="838" +d="M289 1147l33 143h559l-33 -143h-559z" /> + <glyph glyph-name="degree" unicode="°" horiz-adv-x="805" +d="M401 848q-120 0 -206 86t-86 207t86 207t206 86q121 0 207 -86t86 -207t-86 -207t-207 -86zM401 1012q55 0 93 37.5t38 91.5t-38 91.5t-93 37.5q-53 0 -91 -38t-38 -91q0 -54 38 -91.5t91 -37.5z" /> + <glyph glyph-name="plusminus" unicode="±" horiz-adv-x="1331" +d="M573 106v426h-456v185h456v426h185v-426h456v-185h-456v-426h-185zM119 -184v184h1093v-184h-1093z" /> + <glyph glyph-name="acute" unicode="´" horiz-adv-x="537" +d="M227 1124l293 289h264l-373 -289h-184z" /> + <glyph glyph-name="uni00B5" unicode="µ" horiz-adv-x="1294" +d="M43 -266l291 1265h227l-135 -591q-14 -64 -15 -112.5t29 -78t92 -29.5q110 0 211.5 81t124.5 184l125 546h228l-230 -999h-227l24 90q-60 -51 -138 -82t-158 -31q-84 0 -156 35l-88 -278h-205z" /> + <glyph glyph-name="paragraph" unicode="¶" horiz-adv-x="1262" +d="M346 -246l207 869q-88 0 -164 28.5t-128.5 82t-72.5 131t2 175.5q27 115 110.5 201.5t193.5 129t229 42.5h176l-383 -1659h-170zM696 -246l383 1659h172l-383 -1659h-172z" /> + <glyph glyph-name="periodcentered" unicode="·" horiz-adv-x="616" +d="M354 651q-67 0 -101.5 50.5t-19.5 121.5q13 53 60.5 89t103.5 36q67 0 103.5 -49.5t19.5 -120.5q-12 -52 -60 -89.5t-106 -37.5z" /> + <glyph glyph-name="cedilla" unicode="¸" horiz-adv-x="551" +d="M25 -522q-66 0 -115 40t-62 99l142 37q5 -37 47 -37q41 0 73.5 28.5t43.5 71.5q9 39 -28 63.5t-108 24.5h-77l159 193h150l-109 -100q90 -13 129 -71t19 -146q-20 -87 -95.5 -145t-168.5 -58z" /> + <glyph glyph-name="ordmasculine" unicode="º" horiz-adv-x="844" +d="M483 711q-162 0 -240.5 112t-41.5 273q33 141 152.5 239.5t271.5 98.5q160 0 238.5 -111.5t41.5 -271.5q-33 -143 -152 -241.5t-270 -98.5zM492 856q101 0 166 66.5t90 173.5q21 87 -9.5 140.5t-122.5 53.5q-102 0 -167.5 -66t-90.5 -173q-20 -89 10.5 -142t123.5 -53z +" /> + <glyph glyph-name="guillemotright" unicode="»" horiz-adv-x="956" +d="M68 156l45 211l215 143l-144 145l43 211l348 -356zM430 156l45 211l215 143l-143 145l43 211l348 -356z" /> + <glyph glyph-name="questiondown" unicode="¿" horiz-adv-x="993" +d="M426 735l59 264h267l-60 -264h-266zM313 -434q-94 0 -171 27.5t-130 80.5t-71.5 132t4.5 182q19 83 59 146.5t86 98t96.5 63t92.5 46t73 43t39 57.5l31 133h207l-37 -155q-15 -67 -45 -117t-66.5 -79.5t-77 -52.5t-81 -42.5t-75 -42.5t-61.5 -60t-39 -87 +q-20 -87 27.5 -128.5t149.5 -41.5q107 0 189 59t105 160l211 -21q-30 -125 -109 -217.5t-184 -138t-223 -45.5z" /> + <glyph glyph-name="Agrave" unicode="À" horiz-adv-x="1343" +d="M844 1516l-236 309h236l153 -309h-153zM-104 0l890 1413h191l237 -1413h-270l-39 307h-549l-180 -307h-280zM494 524h376l-67 516z" /> + <glyph glyph-name="Aacute" unicode="Á" horiz-adv-x="1343" +d="M791 1536l293 289h264l-373 -289h-184zM-104 0l890 1413h191l237 -1413h-270l-39 307h-549l-180 -307h-280zM494 524h376l-67 516z" /> + <glyph glyph-name="Acircumflex" unicode="Â" horiz-adv-x="1343" +d="M586 1510l396 352l237 -352h-182l-94 145l-162 -145h-195zM-104 0l890 1413h191l237 -1413h-270l-39 307h-549l-180 -307h-280zM494 524h376l-67 516z" /> + <glyph glyph-name="Atilde" unicode="Ã" horiz-adv-x="1343" +d="M1047 1517q-46 0 -77.5 15t-47 36t-27 42t-24.5 36t-31 15q-35 0 -66 -39t-46 -98h-154q30 142 98 214t164 72q50 0 84.5 -22t48.5 -48.5t31 -48.5t37 -22q32 0 62.5 38t45.5 97h162q-32 -143 -99 -215t-161 -72zM-104 0l890 1413h191l237 -1413h-270l-39 307h-549 +l-180 -307h-280zM494 524h376l-67 516z" /> + <glyph glyph-name="Adieresis" unicode="Ä" horiz-adv-x="1343" +d="M647 1600l51 225h205l-51 -225h-205zM1001 1600l52 225h204l-51 -225h-205zM-104 0l890 1413h191l237 -1413h-270l-39 307h-549l-180 -307h-280zM494 524h376l-67 516z" /> + <glyph glyph-name="Aring" unicode="Å" horiz-adv-x="1343" +d="M995 1319l219 -1319h-264l-39 307h-555l-180 -307h-280l843 1331q-40 31 -56 89t-1 118q23 90 98.5 148.5t163.5 58.5q100 0 157 -74t32 -178q-29 -113 -138 -174zM885 1403q56 0 95.5 43t39.5 96q0 40 -25 62t-67 22q-60 0 -95.5 -41.5t-37.5 -91.5q-1 -40 24 -65 +t66 -25zM494 524h383l-69 525z" /> + <glyph glyph-name="AE" unicode="Æ" horiz-adv-x="1858" +d="M-104 0l884 1413h1188l-49 -213h-748l-90 -387h660l-49 -213h-660l-88 -381h748l-50 -219h-980l69 307h-395l-180 -307h-260zM461 504h315l162 696h-45z" /> + <glyph glyph-name="Ccedilla" unicode="Ç" horiz-adv-x="1432" +d="M688 221q144 0 256.5 66t200.5 207l213 -117q-117 -179 -279.5 -279t-351.5 -115l-92 -85q90 -13 129 -71t19 -146q-20 -87 -95.5 -145t-168.5 -58q-66 0 -115 40t-62 99l142 37q5 -37 47 -37q41 0 73.5 28.5t43.5 71.5q9 39 -28 63.5t-108 24.5h-77l147 178 +q-100 9 -181 42t-136.5 84.5t-92 119.5t-51.5 148t-11.5 168.5t25.5 183.5q33 144 103 269.5t172.5 224.5t246 156t310.5 57q217 0 360.5 -110t173.5 -306l-252 -74q-7 135 -91 201.5t-222 66.5q-111 0 -207 -42t-164 -115.5t-115 -165t-71 -197.5q-26 -100 -19.5 -186.5 +t39.5 -150.5t107 -100t182 -36z" /> + <glyph glyph-name="Egrave" unicode="È" horiz-adv-x="1245" +d="M792 1516l-236 309h236l153 -309h-153zM68 0l325 1413h940l-53 -233h-686l-84 -357h639l-53 -233h-639l-80 -350h686l-55 -240h-940z" /> + <glyph glyph-name="Eacute" unicode="É" horiz-adv-x="1245" +d="M739 1536l293 289h264l-373 -289h-184zM68 0l325 1413h940l-53 -233h-686l-84 -357h639l-53 -233h-639l-80 -350h686l-55 -240h-940z" /> + <glyph glyph-name="Ecircumflex" unicode="Ê" horiz-adv-x="1245" +d="M534 1510l396 352l237 -352h-182l-94 145l-162 -145h-195zM68 0l325 1413h940l-53 -233h-686l-84 -357h639l-53 -233h-639l-80 -350h686l-55 -240h-940z" /> + <glyph glyph-name="Edieresis" unicode="Ë" horiz-adv-x="1245" +d="M595 1600l51 225h205l-51 -225h-205zM949 1600l52 225h204l-51 -225h-205zM68 0l325 1413h940l-53 -233h-686l-84 -357h639l-53 -233h-639l-80 -350h686l-55 -240h-940z" /> + <glyph glyph-name="Igrave" unicode="Ì" horiz-adv-x="618" +d="M481 1516l-236 309h236l153 -309h-153zM68 0l325 1413h254l-325 -1413h-254z" /> + <glyph glyph-name="Iacute" unicode="Í" horiz-adv-x="618" +d="M428 1536l293 289h264l-373 -289h-184zM68 0l325 1413h254l-325 -1413h-254z" /> + <glyph glyph-name="Icircumflex" unicode="Î" horiz-adv-x="618" +d="M223 1510l396 352l237 -352h-182l-94 145l-162 -145h-195zM68 0l325 1413h254l-325 -1413h-254z" /> + <glyph glyph-name="Idieresis" unicode="Ï" horiz-adv-x="618" +d="M284 1600l51 225h205l-51 -225h-205zM638 1600l52 225h204l-51 -225h-205zM68 0l325 1413h254l-325 -1413h-254z" /> + <glyph glyph-name="Eth" unicode="Ð" horiz-adv-x="1430" +d="M90 0l143 621h-112l41 184h112l142 608h393q357 0 510 -192.5t72 -546.5q-76 -322 -310 -498t-587 -176h-404zM373 219h133q249 0 425.5 126.5t235.5 383.5q55 237 -40.5 352t-358.5 115h-170l-90 -391h381l-41 -184h-381z" /> + <glyph glyph-name="Ntilde" unicode="Ñ" horiz-adv-x="1454" +d="M1102 1517q-46 0 -77.5 15t-47 36t-27 42t-24.5 36t-31 15q-35 0 -66 -39t-46 -98h-154q30 142 98 214t164 72q50 0 84.5 -22t48.5 -48.5t31 -48.5t37 -22q32 0 62.5 38t45.5 97h162q-32 -143 -99 -215t-161 -72zM68 0l325 1413h250l365 -989l231 989h244l-326 -1413 +h-252l-362 991l-232 -991h-243z" /> + <glyph glyph-name="Ograve" unicode="Ò" horiz-adv-x="1528" +d="M936 1516l-236 309h236l153 -309h-153zM657 -20q-116 0 -209 28t-157 78.5t-106.5 119.5t-60.5 152.5t-15 177t26 193.5q33 143 102.5 268t172 224t246.5 156t311 57q116 0 209 -28t156.5 -78.5t106 -119.5t60.5 -153t15.5 -177.5t-25.5 -193.5q-33 -143 -102.5 -268 +t-172 -223.5t-246.5 -155.5t-311 -57zM682 205q113 0 207.5 42t160.5 116.5t111 166t70 199.5q18 79 21 147.5t-13 130.5t-51 106t-98 69.5t-150 25.5q-112 0 -206 -42t-160 -116t-111 -165.5t-70 -200.5q-18 -79 -21 -147.5t12.5 -130.5t51 -106t98 -69.5t148.5 -25.5z" /> + <glyph glyph-name="Oacute" unicode="Ó" horiz-adv-x="1528" +d="M883 1536l293 289h264l-373 -289h-184zM657 -20q-116 0 -209 28t-157 78.5t-106.5 119.5t-60.5 152.5t-15 177t26 193.5q33 143 102.5 268t172 224t246.5 156t311 57q116 0 209 -28t156.5 -78.5t106 -119.5t60.5 -153t15.5 -177.5t-25.5 -193.5q-33 -143 -102.5 -268 +t-172 -223.5t-246.5 -155.5t-311 -57zM682 205q113 0 207.5 42t160.5 116.5t111 166t70 199.5q18 79 21 147.5t-13 130.5t-51 106t-98 69.5t-150 25.5q-112 0 -206 -42t-160 -116t-111 -165.5t-70 -200.5q-18 -79 -21 -147.5t12.5 -130.5t51 -106t98 -69.5t148.5 -25.5z" /> + <glyph glyph-name="Ocircumflex" unicode="Ô" horiz-adv-x="1528" +d="M678 1510l396 352l237 -352h-182l-94 145l-162 -145h-195zM657 -20q-116 0 -209 28t-157 78.5t-106.5 119.5t-60.5 152.5t-15 177t26 193.5q33 143 102.5 268t172 224t246.5 156t311 57q116 0 209 -28t156.5 -78.5t106 -119.5t60.5 -153t15.5 -177.5t-25.5 -193.5 +q-33 -143 -102.5 -268t-172 -223.5t-246.5 -155.5t-311 -57zM682 205q113 0 207.5 42t160.5 116.5t111 166t70 199.5q18 79 21 147.5t-13 130.5t-51 106t-98 69.5t-150 25.5q-112 0 -206 -42t-160 -116t-111 -165.5t-70 -200.5q-18 -79 -21 -147.5t12.5 -130.5t51 -106 +t98 -69.5t148.5 -25.5z" /> + <glyph glyph-name="Otilde" unicode="Õ" horiz-adv-x="1528" +d="M1139 1517q-46 0 -77.5 15t-47 36t-27 42t-24.5 36t-31 15q-35 0 -66 -39t-46 -98h-154q30 142 98 214t164 72q50 0 84.5 -22t48.5 -48.5t31 -48.5t37 -22q32 0 62.5 38t45.5 97h162q-32 -143 -99 -215t-161 -72zM657 -20q-116 0 -209 28t-157 78.5t-106.5 119.5 +t-60.5 152.5t-15 177t26 193.5q33 143 102.5 268t172 224t246.5 156t311 57q116 0 209 -28t156.5 -78.5t106 -119.5t60.5 -153t15.5 -177.5t-25.5 -193.5q-33 -143 -102.5 -268t-172 -223.5t-246.5 -155.5t-311 -57zM682 205q113 0 207.5 42t160.5 116.5t111 166t70 199.5 +q18 79 21 147.5t-13 130.5t-51 106t-98 69.5t-150 25.5q-112 0 -206 -42t-160 -116t-111 -165.5t-70 -200.5q-18 -79 -21 -147.5t12.5 -130.5t51 -106t98 -69.5t148.5 -25.5z" /> + <glyph glyph-name="Odieresis" unicode="Ö" horiz-adv-x="1528" +d="M739 1600l51 225h205l-51 -225h-205zM1093 1600l52 225h204l-51 -225h-205zM657 -20q-116 0 -209 28t-157 78.5t-106.5 119.5t-60.5 152.5t-15 177t26 193.5q33 143 102.5 268t172 224t246.5 156t311 57q116 0 209 -28t156.5 -78.5t106 -119.5t60.5 -153t15.5 -177.5 +t-25.5 -193.5q-33 -143 -102.5 -268t-172 -223.5t-246.5 -155.5t-311 -57zM682 205q113 0 207.5 42t160.5 116.5t111 166t70 199.5q18 79 21 147.5t-13 130.5t-51 106t-98 69.5t-150 25.5q-112 0 -206 -42t-160 -116t-111 -165.5t-70 -200.5q-18 -79 -21 -147.5t12.5 -130.5 +t51 -106t98 -69.5t148.5 -25.5z" /> + <glyph glyph-name="multiply" unicode="×" horiz-adv-x="1090" +d="M221 172l-129 129l322 324l-301 301l131 131l301 -301l323 321l129 -129l-321 -323l301 -301l-131 -131l-301 301z" /> + <glyph glyph-name="Oslash" unicode="Ø" horiz-adv-x="1528" +d="M1384 1281q96 -102 122 -262.5t-17 -334.5q-33 -143 -102.5 -268t-172 -223.5t-246.5 -155.5t-311 -57q-178 0 -304 66l-39 -46h-189l113 134q-95 103 -120.5 262t17.5 333q33 143 102.5 268t172 224t246.5 156t311 57q179 0 304 -67l38 46h186zM393 684 +q-51 -219 17 -344l699 834q-68 34 -169 34q-112 0 -206 -42t-160 -116t-111 -165.5t-70 -200.5zM1231 729q52 221 -18 346l-699 -836q68 -34 168 -34q113 0 207.5 42t160.5 116.5t111 166t70 199.5z" /> + <glyph glyph-name="Ugrave" unicode="Ù" horiz-adv-x="1380" +d="M858 1516l-236 309h236l153 -309h-153zM584 -20q-142 0 -239.5 42t-145 118.5t-58 183.5t22.5 237l196 852h254l-194 -844q-26 -114 -22 -190.5t56 -115t160 -38.5q86 0 151 24.5t109.5 73.5t73.5 113.5t49 153.5l191 823h254l-199 -862q-132 -571 -659 -571z" /> + <glyph glyph-name="Uacute" unicode="Ú" horiz-adv-x="1380" +d="M805 1536l293 289h264l-373 -289h-184zM584 -20q-142 0 -239.5 42t-145 118.5t-58 183.5t22.5 237l196 852h254l-194 -844q-26 -114 -22 -190.5t56 -115t160 -38.5q86 0 151 24.5t109.5 73.5t73.5 113.5t49 153.5l191 823h254l-199 -862q-132 -571 -659 -571z" /> + <glyph glyph-name="Ucircumflex" unicode="Û" horiz-adv-x="1380" +d="M600 1510l396 352l237 -352h-182l-94 145l-162 -145h-195zM584 -20q-142 0 -239.5 42t-145 118.5t-58 183.5t22.5 237l196 852h254l-194 -844q-26 -114 -22 -190.5t56 -115t160 -38.5q86 0 151 24.5t109.5 73.5t73.5 113.5t49 153.5l191 823h254l-199 -862 +q-132 -571 -659 -571z" /> + <glyph glyph-name="Udieresis" unicode="Ü" horiz-adv-x="1380" +d="M661 1600l51 225h205l-51 -225h-205zM1015 1600l52 225h204l-51 -225h-205zM584 -20q-142 0 -239.5 42t-145 118.5t-58 183.5t22.5 237l196 852h254l-194 -844q-26 -114 -22 -190.5t56 -115t160 -38.5q86 0 151 24.5t109.5 73.5t73.5 113.5t49 153.5l191 823h254 +l-199 -862q-132 -571 -659 -571z" /> + <glyph glyph-name="Yacute" unicode="Ý" horiz-adv-x="1395" +d="M817 1536l293 289h264l-373 -289h-184zM457 0l129 551l-377 862h295l254 -635l551 635h303l-772 -862l-129 -551h-254z" /> + <glyph glyph-name="Thorn" unicode="Þ" horiz-adv-x="1147" +d="M68 0l325 1413h232l-45 -194h249q211 0 300 -114t45 -308q-46 -198 -200 -299t-376 -101h-209l-90 -397h-231zM438 608h195q263 0 317 226q21 92 -29 139t-180 47h-206z" /> + <glyph glyph-name="germandbls" unicode="ß" horiz-adv-x="1186" +d="M623 -18q-94 0 -203 41l121 198q42 -18 100 -18q68 0 119 40t63 99q7 30 -2.5 58.5t-30 51.5t-46 50t-50.5 53.5t-43.5 62t-24.5 74.5t5 92q12 51 43 89t68.5 61t74 44.5t66 52.5t39.5 73q10 48 -24.5 84.5t-121.5 36.5q-105 0 -176 -59.5t-94 -155.5l-232 -1010h-241 +l237 1030q30 127 111.5 220.5t185.5 138.5t217 45q85 0 160 -28t128 -77.5t75 -124.5t2 -162q-14 -61 -49 -107.5t-75 -72t-79 -45.5t-68 -41.5t-34 -46.5q-5 -22 21.5 -48.5t65.5 -54.5t76 -73.5t53.5 -105t-1.5 -148.5q-32 -140 -156 -228.5t-280 -88.5z" /> + <glyph glyph-name="agrave" unicode="à" horiz-adv-x="1171" +d="M814 1104h-153l-236 309h236zM891 999h248l-230 -999h-227l13 100q-119 -120 -306 -120q-84 0 -150 28.5t-106 78.5t-63 118.5t-21.5 148.5t19.5 168q23 100 71 189.5t115 158.5t156.5 109.5t187.5 40.5q86 0 157 -33t107 -96zM801 522q17 80 10 141.5t-51.5 98.5 +t-122.5 37q-125 0 -212 -90.5t-118 -231.5q-29 -123 11 -197.5t155 -74.5q127 0 211.5 87t116.5 230z" /> + <glyph glyph-name="aacute" unicode="á" horiz-adv-x="1171" +d="M1165 1413l-373 -289h-184l293 289h264zM862 891l29 108h248l-230 -999h-227l13 100q-119 -120 -306 -120q-84 0 -150 28.5t-106 78.5t-63 118.5t-21.5 148.5t19.5 168q23 100 71 189.5t115 158.5t156.5 109.5t187.5 40.5q86 0 157 -33t107 -96zM801 522q17 80 10 141.5 +t-51.5 98.5t-122.5 37q-125 0 -212 -90.5t-118 -231.5q-29 -123 11 -197.5t155 -74.5q127 0 211.5 87t116.5 230z" /> + <glyph glyph-name="acircumflex" unicode="â" horiz-adv-x="1171" +d="M760 1243l-162 -145h-195l396 352l237 -352h-182zM891 999h248l-230 -999h-227l13 100q-119 -120 -306 -120q-84 0 -150 28.5t-106 78.5t-63 118.5t-21.5 148.5t19.5 168q23 100 71 189.5t115 158.5t156.5 109.5t187.5 40.5q86 0 157 -33t107 -96zM801 522 +q17 80 10 141.5t-51.5 98.5t-122.5 37q-125 0 -212 -90.5t-118 -231.5q-29 -123 11 -197.5t155 -74.5q127 0 211.5 87t116.5 230z" /> + <glyph glyph-name="atilde" unicode="ã" horiz-adv-x="1171" +d="M657 1249q-35 0 -66 -39t-46 -98h-154q30 142 98 214t164 72q50 0 84.5 -22t48.5 -48.5t31 -48.5t37 -22q32 0 62.5 38t45.5 97h162q-32 -143 -99 -215t-161 -72q-46 0 -77.5 15t-47 36t-27 42t-24.5 36t-31 15zM891 999h248l-230 -999h-227l13 100q-119 -120 -306 -120 +q-84 0 -150 28.5t-106 78.5t-63 118.5t-21.5 148.5t19.5 168q23 100 71 189.5t115 158.5t156.5 109.5t187.5 40.5q86 0 157 -33t107 -96zM801 522q17 80 10 141.5t-51.5 98.5t-122.5 37q-125 0 -212 -90.5t-118 -231.5q-29 -123 11 -197.5t155 -74.5q127 0 211.5 87 +t116.5 230z" /> + <glyph glyph-name="adieresis" unicode="ä" horiz-adv-x="1171" +d="M720 1413l-51 -225h-205l51 225h205zM1074 1413l-51 -225h-205l52 225h204zM891 999h248l-230 -999h-227l13 100q-119 -120 -306 -120q-84 0 -150 28.5t-106 78.5t-63 118.5t-21.5 148.5t19.5 168q23 100 71 189.5t115 158.5t156.5 109.5t187.5 40.5q86 0 157 -33 +t107 -96zM801 522q17 80 10 141.5t-51.5 98.5t-122.5 37q-125 0 -212 -90.5t-118 -231.5q-29 -123 11 -197.5t155 -74.5q127 0 211.5 87t116.5 230z" /> + <glyph glyph-name="aring" unicode="å" horiz-adv-x="1171" +d="M731 1069q-103 0 -158 76.5t-29 177.5q22 87 97.5 147t165.5 60q102 0 158 -76t30 -176q-23 -89 -99 -149t-165 -60zM788 1405q-55 0 -87 -37.5t-32 -87.5q0 -39 21.5 -59.5t58.5 -20.5q54 0 87.5 39.5t33.5 87.5q0 37 -22 57.5t-60 20.5zM891 999h248l-230 -999h-227 +l13 100q-119 -120 -306 -120q-84 0 -150 28.5t-106 78.5t-63 118.5t-21.5 148.5t19.5 168q23 100 71 189.5t115 158.5t156.5 109.5t187.5 40.5q86 0 157 -33t107 -96zM801 522q17 80 10 141.5t-51.5 98.5t-122.5 37q-125 0 -212 -90.5t-118 -231.5q-29 -123 11 -197.5 +t155 -74.5q127 0 211.5 87t116.5 230z" /> + <glyph glyph-name="ae" unicode="æ" horiz-adv-x="1677" +d="M293 -20q-151 0 -238 93.5t-53 241.5q18 78 59.5 133t103.5 86.5t134 45.5t162 16h278q25 117 -10 165t-147 48q-77 0 -150 -40.5t-125 -96.5l-147 143q99 103 208.5 152t243.5 49q112 0 189.5 -45t111.5 -119q162 160 359 160q103 0 178 -32.5t114.5 -85t57 -124 +t13.5 -145t-23 -152.5q-11 -41 -23 -53h-690q-15 -205 186 -205q86 0 150.5 23t126.5 77l143 -163q-106 -90 -212.5 -127t-231.5 -37q-128 0 -206.5 44.5t-111.5 119.5q-191 -172 -450 -172zM944 596h461q9 110 -31.5 160.5t-142.5 50.5q-101 0 -174.5 -59.5t-112.5 -151.5z +M352 180q109 0 210 76t136 164h-252q-85 -1 -147.5 -44t-77.5 -104q-10 -47 24.5 -69.5t106.5 -22.5z" /> + <glyph glyph-name="ccedilla" unicode="ç" horiz-adv-x="1004" +d="M459 209q77 0 144 45t104 117l202 -105q-73 -127 -184.5 -200t-243.5 -84l-92 -84q90 -13 129 -71t19 -146q-20 -87 -95.5 -145t-168.5 -58q-66 0 -115 40t-62 99l142 37q5 -37 47 -37q41 0 73.5 28.5t43.5 71.5q9 39 -28 63.5t-108 24.5h-77l151 183q-94 17 -160.5 68 +t-97 122.5t-38 160.5t16.5 181q23 96 72.5 183t121.5 158t173.5 113t216.5 42q150 0 248 -82t125 -219l-244 -70q-3 70 -44 105.5t-112 35.5q-124 0 -206.5 -89t-112.5 -222q-15 -52 -12 -100t18.5 -85t55 -59t98.5 -22z" /> + <glyph glyph-name="egrave" unicode="è" horiz-adv-x="1067" +d="M602 1104l-236 309h236l153 -309h-153zM451 -12q-84 0 -152 20t-115.5 55.5t-80 84.5t-47 108t-14 124.5t16.5 135.5q22 96 71.5 183.5t121.5 158t173 112.5t216 42q109 0 187.5 -31.5t120.5 -83t60.5 -122.5t15 -145.5t-23.5 -156.5q-10 -39 -20 -63h-690 +q-9 -94 36.5 -144.5t147.5 -50.5q87 0 151 23t128 77l141 -163q-104 -89 -211.5 -126.5t-232.5 -37.5zM334 586h459q12 117 -28 169t-144 52q-101 0 -174 -61.5t-113 -159.5z" /> + <glyph glyph-name="eacute" unicode="é" horiz-adv-x="1067" +d="M549 1124l293 289h264l-373 -289h-184zM451 -12q-84 0 -152 20t-115.5 55.5t-80 84.5t-47 108t-14 124.5t16.5 135.5q22 96 71.5 183.5t121.5 158t173 112.5t216 42q109 0 187.5 -31.5t120.5 -83t60.5 -122.5t15 -145.5t-23.5 -156.5q-10 -39 -20 -63h-690 +q-9 -94 36.5 -144.5t147.5 -50.5q87 0 151 23t128 77l141 -163q-104 -89 -211.5 -126.5t-232.5 -37.5zM334 586h459q12 117 -28 169t-144 52q-101 0 -174 -61.5t-113 -159.5z" /> + <glyph glyph-name="ecircumflex" unicode="ê" horiz-adv-x="1067" +d="M344 1098l396 352l237 -352h-182l-94 145l-162 -145h-195zM451 -12q-84 0 -152 20t-115.5 55.5t-80 84.5t-47 108t-14 124.5t16.5 135.5q22 96 71.5 183.5t121.5 158t173 112.5t216 42q109 0 187.5 -31.5t120.5 -83t60.5 -122.5t15 -145.5t-23.5 -156.5q-10 -39 -20 -63 +h-690q-9 -94 36.5 -144.5t147.5 -50.5q87 0 151 23t128 77l141 -163q-104 -89 -211.5 -126.5t-232.5 -37.5zM334 586h459q12 117 -28 169t-144 52q-101 0 -174 -61.5t-113 -159.5z" /> + <glyph glyph-name="edieresis" unicode="ë" horiz-adv-x="1067" +d="M405 1188l51 225h205l-51 -225h-205zM759 1188l52 225h204l-51 -225h-205zM451 -12q-84 0 -152 20t-115.5 55.5t-80 84.5t-47 108t-14 124.5t16.5 135.5q22 96 71.5 183.5t121.5 158t173 112.5t216 42q109 0 187.5 -31.5t120.5 -83t60.5 -122.5t15 -145.5t-23.5 -156.5 +q-10 -39 -20 -63h-690q-9 -94 36.5 -144.5t147.5 -50.5q87 0 151 23t128 77l141 -163q-104 -89 -211.5 -126.5t-232.5 -37.5zM334 586h459q12 117 -28 169t-144 52q-101 0 -174 -61.5t-113 -159.5z" /> + <glyph glyph-name="igrave" unicode="ì" horiz-adv-x="516" +d="M334 1104l-236 309h236l153 -309h-153zM31 0l229 999h225l-229 -999h-225z" /> + <glyph glyph-name="iacute" unicode="í" horiz-adv-x="516" +d="M281 1124l293 289h264l-373 -289h-184zM31 0l229 999h225l-229 -999h-225z" /> + <glyph glyph-name="icircumflex" unicode="î" horiz-adv-x="516" +d="M76 1098l396 352l237 -352h-182l-94 145l-162 -145h-195zM31 0l229 999h225l-229 -999h-225z" /> + <glyph glyph-name="idieresis" unicode="ï" horiz-adv-x="516" +d="M137 1188l51 225h205l-51 -225h-205zM491 1188l52 225h204l-51 -225h-205zM31 0l229 999h225l-229 -999h-225z" /> + <glyph glyph-name="eth" unicode="ð" horiz-adv-x="1178" +d="M843 1391q199 -138 263 -340.5t-4 -505.5q-61 -269 -223.5 -415t-399.5 -146q-87 0 -159 21t-122.5 58.5t-85 89t-50 113.5t-15.5 131t16 142q23 100 75.5 187.5t127 153t173.5 103t208 37.5q161 0 259 -100q-10 203 -206 315l-110 -121l-92 66l96 105q-36 14 -123 44 +l143 182q67 -27 132 -62l94 103l94 -61zM856 541q28 122 -22 202t-172 80q-135 0 -232.5 -95t-130.5 -234q-15 -77 -4.5 -140.5t62.5 -104t137 -40.5q135 0 232 96t130 236z" /> + <glyph glyph-name="ntilde" unicode="ñ" +d="M866 1105q-46 0 -77.5 15t-47 36t-27 42t-24.5 36t-31 15q-35 0 -66 -39t-46 -98h-154q30 142 98 214t164 72q50 0 84.5 -22t48.5 -48.5t31 -48.5t37 -22q32 0 62.5 38t45.5 97h162q-32 -143 -99 -215t-161 -72zM31 0l229 999h248l-29 -108q131 125 309 125 +q78 0 137 -24.5t93 -65.5t51.5 -96t17 -115.5t-15.5 -124.5l-135 -590h-248l133 580q14 62 14.5 108t-27 73t-85.5 27q-104 0 -202 -78t-120 -173l-122 -537h-248z" /> + <glyph glyph-name="ograve" unicode="ò" horiz-adv-x="1128" +d="M639 1104l-236 309h236l153 -309h-153zM457 -20q-93 0 -169.5 27.5t-127.5 77t-83.5 117t-36 147.5t14.5 169q32 135 119 247t217 179.5t277 67.5q154 0 258.5 -73.5t140.5 -195.5t2 -270q-49 -208 -219.5 -350.5t-392.5 -142.5zM479 190q135 0 224 92.5t122 235.5 +q15 57 11.5 108.5t-21.5 90t-61.5 61.5t-108.5 23q-135 0 -224 -92.5t-122 -235.5q-15 -57 -11.5 -108t21.5 -90t61.5 -62t108.5 -23z" /> + <glyph glyph-name="oacute" unicode="ó" horiz-adv-x="1128" +d="M586 1124l293 289h264l-373 -289h-184zM457 -20q-93 0 -169.5 27.5t-127.5 77t-83.5 117t-36 147.5t14.5 169q32 135 119 247t217 179.5t277 67.5q154 0 258.5 -73.5t140.5 -195.5t2 -270q-49 -208 -219.5 -350.5t-392.5 -142.5zM479 190q135 0 224 92.5t122 235.5 +q15 57 11.5 108.5t-21.5 90t-61.5 61.5t-108.5 23q-135 0 -224 -92.5t-122 -235.5q-15 -57 -11.5 -108t21.5 -90t61.5 -62t108.5 -23z" /> + <glyph glyph-name="ocircumflex" unicode="ô" horiz-adv-x="1128" +d="M381 1098l396 352l237 -352h-182l-94 145l-162 -145h-195zM457 -20q-93 0 -169.5 27.5t-127.5 77t-83.5 117t-36 147.5t14.5 169q32 135 119 247t217 179.5t277 67.5q154 0 258.5 -73.5t140.5 -195.5t2 -270q-49 -208 -219.5 -350.5t-392.5 -142.5zM479 190 +q135 0 224 92.5t122 235.5q15 57 11.5 108.5t-21.5 90t-61.5 61.5t-108.5 23q-135 0 -224 -92.5t-122 -235.5q-15 -57 -11.5 -108t21.5 -90t61.5 -62t108.5 -23z" /> + <glyph glyph-name="otilde" unicode="õ" horiz-adv-x="1128" +d="M842 1105q-46 0 -77.5 15t-47 36t-27 42t-24.5 36t-31 15q-35 0 -66 -39t-46 -98h-154q30 142 98 214t164 72q50 0 84.5 -22t48.5 -48.5t31 -48.5t37 -22q32 0 62.5 38t45.5 97h162q-32 -143 -99 -215t-161 -72zM457 -20q-93 0 -169.5 27.5t-127.5 77t-83.5 117 +t-36 147.5t14.5 169q32 135 119 247t217 179.5t277 67.5q154 0 258.5 -73.5t140.5 -195.5t2 -270q-49 -208 -219.5 -350.5t-392.5 -142.5zM479 190q135 0 224 92.5t122 235.5q15 57 11.5 108.5t-21.5 90t-61.5 61.5t-108.5 23q-135 0 -224 -92.5t-122 -235.5 +q-15 -57 -11.5 -108t21.5 -90t61.5 -62t108.5 -23z" /> + <glyph glyph-name="odieresis" unicode="ö" horiz-adv-x="1128" +d="M442 1188l51 225h205l-51 -225h-205zM796 1188l52 225h204l-51 -225h-205zM457 -20q-93 0 -169.5 27.5t-127.5 77t-83.5 117t-36 147.5t14.5 169q32 135 119 247t217 179.5t277 67.5q154 0 258.5 -73.5t140.5 -195.5t2 -270q-49 -208 -219.5 -350.5t-392.5 -142.5z +M479 190q135 0 224 92.5t122 235.5q15 57 11.5 108.5t-21.5 90t-61.5 61.5t-108.5 23q-135 0 -224 -92.5t-122 -235.5q-15 -57 -11.5 -108t21.5 -90t61.5 -62t108.5 -23z" /> + <glyph glyph-name="divide" unicode="÷" horiz-adv-x="1266" +d="M500 834v264h266v-264h-266zM84 537v184h1098v-184h-1098zM500 143v265h266v-265h-266z" /> + <glyph glyph-name="oslash" unicode="ø" horiz-adv-x="1128" +d="M968 905q78 -74 104.5 -187t-3.5 -245q-49 -208 -219.5 -350.5t-392.5 -142.5q-126 0 -220 50l-26 -31h-134l77 91q-77 74 -102.5 185.5t3.5 242.5q32 135 119 247t217 179.5t277 67.5q124 0 217 -48l30 35h132zM299 473q-28 -125 10 -197l427 510q-37 15 -91 15 +q-135 0 -224 -92.5t-122 -235.5zM825 518q30 126 -12 201l-428 -512q39 -17 94 -17q135 0 224 92.5t122 235.5z" /> + <glyph glyph-name="ugrave" unicode="ù" +d="M651 1104l-236 309h236l153 -309h-153zM377 -23q-78 0 -136.5 25.5t-92.5 68.5t-51 100.5t-16.5 120.5t15.5 130l133 577h248l-135 -585q-14 -62 -13 -107.5t33.5 -71.5t100.5 -26q49 0 93 14t88 47t79 96t55 152l111 481h248l-230 -999h-241l22 109q-131 -132 -311 -132 +z" /> + <glyph glyph-name="uacute" unicode="ú" +d="M598 1124l293 289h264l-373 -289h-184zM377 -23q-78 0 -136.5 25.5t-92.5 68.5t-51 100.5t-16.5 120.5t15.5 130l133 577h248l-135 -585q-14 -62 -13 -107.5t33.5 -71.5t100.5 -26q49 0 93 14t88 47t79 96t55 152l111 481h248l-230 -999h-241l22 109q-131 -132 -311 -132 +z" /> + <glyph glyph-name="ucircumflex" unicode="û" +d="M393 1098l396 352l237 -352h-182l-94 145l-162 -145h-195zM377 -23q-78 0 -136.5 25.5t-92.5 68.5t-51 100.5t-16.5 120.5t15.5 130l133 577h248l-135 -585q-14 -62 -13 -107.5t33.5 -71.5t100.5 -26q49 0 93 14t88 47t79 96t55 152l111 481h248l-230 -999h-241l22 109 +q-131 -132 -311 -132z" /> + <glyph glyph-name="udieresis" unicode="ü" +d="M454 1188l51 225h205l-51 -225h-205zM808 1188l52 225h204l-51 -225h-205zM377 -23q-78 0 -136.5 25.5t-92.5 68.5t-51 100.5t-16.5 120.5t15.5 130l133 577h248l-135 -585q-14 -62 -13 -107.5t33.5 -71.5t100.5 -26q49 0 93 14t88 47t79 96t55 152l111 481h248 +l-230 -999h-241l22 109q-131 -132 -311 -132z" /> + <glyph glyph-name="yacute" unicode="ý" horiz-adv-x="1032" +d="M539 1124l293 289h264l-373 -289h-184zM-16 -430l292 457l-165 972h264l90 -694l418 694h272l-901 -1429h-270z" /> + <glyph glyph-name="thorn" unicode="þ" horiz-adv-x="1155" +d="M-70 -438l428 1851h232l-117 -487q121 94 289 94q85 0 152 -28.5t107.5 -79t64 -119t21.5 -148.5t-20 -168q-24 -101 -72 -190t-115.5 -158t-158.5 -109t-192 -40q-167 0 -260 110l-127 -528h-232zM530 190q128 0 216.5 92t123.5 240q31 128 -11.5 206.5t-160.5 78.5 +q-127 0 -216.5 -92t-123.5 -238q-31 -129 11.5 -208t160.5 -79z" /> + <glyph glyph-name="ydieresis" unicode="ÿ" horiz-adv-x="1032" +d="M395 1188l51 225h205l-51 -225h-205zM749 1188l52 225h204l-51 -225h-205zM-16 -430l292 457l-165 972h264l90 -694l418 694h272l-901 -1429h-270z" /> + <glyph glyph-name="Amacron" unicode="Ā" horiz-adv-x="1343" +d="M637 1559l33 143h559l-33 -143h-559zM-104 0l890 1413h191l237 -1413h-270l-39 307h-549l-180 -307h-280zM494 524h376l-67 516z" /> + <glyph glyph-name="amacron" unicode="ā" horiz-adv-x="1171" +d="M1046 1290l-33 -143h-559l33 143h559zM891 999h248l-230 -999h-227l13 100q-119 -120 -306 -120q-84 0 -150 28.5t-106 78.5t-63 118.5t-21.5 148.5t19.5 168q23 100 71 189.5t115 158.5t156.5 109.5t187.5 40.5q86 0 157 -33t107 -96zM801 522q17 80 10 141.5 +t-51.5 98.5t-122.5 37q-125 0 -212 -90.5t-118 -231.5q-29 -123 11 -197.5t155 -74.5q127 0 211.5 87t116.5 230z" /> + <glyph glyph-name="Abreve" unicode="Ă" horiz-adv-x="1343" +d="M930 1555q-164 0 -229 71.5t-35 198.5h168q-26 -127 102 -127q68 0 121.5 36t67.5 91h168q-32 -142 -120 -206t-243 -64zM-104 0l890 1413h191l237 -1413h-270l-39 307h-549l-180 -307h-280zM494 524h376l-67 516z" /> + <glyph glyph-name="abreve" unicode="ă" horiz-adv-x="1171" +d="M747 1143q-164 0 -229 71.5t-35 198.5h168q-26 -127 102 -127q68 0 121.5 36t67.5 91h168q-32 -142 -120 -206t-243 -64zM891 999h248l-230 -999h-227l13 100q-119 -120 -306 -120q-84 0 -150 28.5t-106 78.5t-63 118.5t-21.5 148.5t19.5 168q23 100 71 189.5t115 158.5 +t156.5 109.5t187.5 40.5q86 0 157 -33t107 -96zM801 522q17 80 10 141.5t-51.5 98.5t-122.5 37q-125 0 -212 -90.5t-118 -231.5q-29 -123 11 -197.5t155 -74.5q127 0 211.5 87t116.5 230z" /> + <glyph glyph-name="Aogonek" unicode="Ą" horiz-adv-x="1343" +d="M1124 -236l107 -102q-100 -113 -236 -113q-102 0 -155.5 64t-30.5 164q10 45 37.5 85.5t63 68.5t58.5 43.5t44 25.5h-68l-39 307h-549l-180 -307h-280l890 1413h191l237 -1413h-93l100 -4q-10 -3 -33 -12.5t-61 -31t-72.5 -47t-64 -63.5t-38.5 -78t4 -52.5t41 -12.5 +q66 0 127 65zM494 524h376l-67 516z" /> + <glyph glyph-name="aogonek" unicode="ą" horiz-adv-x="1061" +d="M1139 999l-230 -999h-173l100 -4q-10 -3 -33 -12.5t-61 -31t-72.5 -47t-64 -63.5t-38.5 -78t4 -52.5t41 -12.5q66 0 127 65l107 -102q-100 -113 -236 -113q-102 0 -155.5 64t-30.5 164q10 42 35 80.5t54.5 64t57 45t45.5 28.5l19 9l47 -2l13 98q-119 -120 -306 -120 +q-84 0 -150 28.5t-106 78.5t-63 118.5t-21.5 148.5t19.5 168q23 100 71 189.5t115 158.5t156.5 109.5t187.5 40.5q86 0 157 -33t107 -96l29 108h248zM801 522q17 80 10 141.5t-51.5 98.5t-122.5 37q-125 0 -212 -90.5t-118 -231.5q-29 -123 11 -197.5t155 -74.5 +q127 0 211.5 87t116.5 230z" /> + <glyph glyph-name="Cacute" unicode="Ć" horiz-adv-x="1432" +d="M832 1536l293 289h264l-373 -289h-184zM659 -20q-115 0 -208.5 27.5t-157.5 78t-107 119.5t-61 152.5t-15.5 177t25.5 194.5q33 144 103 269.5t172.5 224.5t246 156t310.5 57q217 0 360.5 -110t173.5 -306l-252 -74q-7 135 -91 201.5t-222 66.5q-111 0 -207 -42 +t-164 -115.5t-115 -165t-71 -197.5q-26 -100 -19.5 -186.5t39.5 -150.5t107 -100t182 -36q144 0 256.5 66t200.5 207l213 -117q-127 -195 -308 -296t-391 -101z" /> + <glyph glyph-name="cacute" unicode="ć" horiz-adv-x="1004" +d="M561 1124l293 289h264l-373 -289h-184zM434 -20q-81 0 -147 21t-111.5 58t-76 87.5t-43.5 111t-12 126.5t17 136q23 96 72.5 183t121.5 158t173.5 113t216.5 42q150 0 248 -82t125 -219l-244 -70q-3 70 -44 105.5t-112 35.5q-124 0 -206.5 -89t-112.5 -222 +q-15 -52 -12 -100t18.5 -85t55 -59t98.5 -22q77 0 144 45t104 117l202 -105q-80 -138 -204.5 -212t-270.5 -74z" /> + <glyph glyph-name="Cdotaccent" unicode="Ċ" horiz-adv-x="1432" +d="M840 1600l51 225h256l-51 -225h-256zM659 -20q-115 0 -208.5 27.5t-157.5 78t-107 119.5t-61 152.5t-15.5 177t25.5 194.5q33 144 103 269.5t172.5 224.5t246 156t310.5 57q217 0 360.5 -110t173.5 -306l-252 -74q-7 135 -91 201.5t-222 66.5q-111 0 -207 -42 +t-164 -115.5t-115 -165t-71 -197.5q-26 -100 -19.5 -186.5t39.5 -150.5t107 -100t182 -36q144 0 256.5 66t200.5 207l213 -117q-127 -195 -308 -296t-391 -101z" /> + <glyph glyph-name="cdotaccent" unicode="ċ" horiz-adv-x="1004" +d="M569 1188l51 225h256l-51 -225h-256zM434 -20q-81 0 -147 21t-111.5 58t-76 87.5t-43.5 111t-12 126.5t17 136q23 96 72.5 183t121.5 158t173.5 113t216.5 42q150 0 248 -82t125 -219l-244 -70q-3 70 -44 105.5t-112 35.5q-124 0 -206.5 -89t-112.5 -222 +q-15 -52 -12 -100t18.5 -85t55 -59t98.5 -22q77 0 144 45t104 117l202 -105q-80 -138 -204.5 -212t-270.5 -74z" /> + <glyph glyph-name="Ccaron" unicode="Č" horiz-adv-x="1432" +d="M947 1491l-242 332h185l92 -135l164 135h192zM659 -20q-115 0 -208.5 27.5t-157.5 78t-107 119.5t-61 152.5t-15.5 177t25.5 194.5q33 144 103 269.5t172.5 224.5t246 156t310.5 57q217 0 360.5 -110t173.5 -306l-252 -74q-7 135 -91 201.5t-222 66.5q-111 0 -207 -42 +t-164 -115.5t-115 -165t-71 -197.5q-26 -100 -19.5 -186.5t39.5 -150.5t107 -100t182 -36q144 0 256.5 66t200.5 207l213 -117q-127 -195 -308 -296t-391 -101z" /> + <glyph glyph-name="ccaron" unicode="č" horiz-adv-x="1004" +d="M676 1079l-242 332h185l92 -135l164 135h192zM434 -20q-81 0 -147 21t-111.5 58t-76 87.5t-43.5 111t-12 126.5t17 136q23 96 72.5 183t121.5 158t173.5 113t216.5 42q150 0 248 -82t125 -219l-244 -70q-3 70 -44 105.5t-112 35.5q-124 0 -206.5 -89t-112.5 -222 +q-15 -52 -12 -100t18.5 -85t55 -59t98.5 -22q77 0 144 45t104 117l202 -105q-80 -138 -204.5 -212t-270.5 -74z" /> + <glyph glyph-name="Dcaron" unicode="Ď" horiz-adv-x="1409" +d="M955 1491l-242 332h185l92 -135l164 135h192zM68 0l325 1413h404q359 0 506 -192t65 -547q-75 -323 -304 -498.5t-583 -175.5h-413zM375 233h123q514 0 628 496q56 244 -29 347.5t-345 103.5h-158z" /> + <glyph glyph-name="dcaron" unicode="ď" horiz-adv-x="1382" +d="M389 -20q-84 0 -150 28.5t-106 78.5t-63 118.5t-21.5 148.5t19.5 168q23 100 71 189.5t115 158.5t156.5 109.5t187.5 40.5q86 0 157 -33t107 -96l125 522h248l-326 -1413h-247l24 92q-117 -112 -297 -112zM1239 958l219 455h260l-332 -455h-147zM473 205q127 0 211.5 87 +t116.5 230q17 80 10 141.5t-51.5 98.5t-122.5 37q-125 0 -212 -90.5t-118 -231.5q-29 -123 11 -197.5t155 -74.5z" /> + <glyph glyph-name="Dcroat" unicode="Đ" horiz-adv-x="1430" +d="M90 0l143 621h-112l41 184h112l142 608h393q357 0 510 -192.5t72 -546.5q-76 -322 -310 -498t-587 -176h-404zM373 219h133q249 0 425.5 126.5t235.5 383.5q55 237 -40.5 352t-358.5 115h-170l-90 -391h381l-41 -184h-381z" /> + <glyph glyph-name="dcroat" unicode="đ" horiz-adv-x="1171" +d="M1340 1303l-37 -164h-131l-263 -1139h-227l13 100q-119 -120 -306 -120q-84 0 -150 28.5t-106 78.5t-63 118.5t-21.5 148.5t19.5 168q23 100 71 189.5t115 158.5t156.5 109.5t187.5 40.5q86 0 157 -33t107 -96l59 248h-253l37 164h256l26 110h248l-25 -110h130zM801 522 +q17 80 10 141.5t-51.5 98.5t-122.5 37q-125 0 -212 -90.5t-118 -231.5q-29 -123 11 -197.5t155 -74.5q127 0 211.5 87t116.5 230z" /> + <glyph glyph-name="Emacron" unicode="Ē" horiz-adv-x="1245" +d="M585 1559l33 143h559l-33 -143h-559zM68 0l325 1413h940l-53 -233h-686l-84 -357h639l-53 -233h-639l-80 -350h686l-55 -240h-940z" /> + <glyph glyph-name="emacron" unicode="ē" horiz-adv-x="1067" +d="M395 1147l33 143h559l-33 -143h-559zM451 -12q-84 0 -152 20t-115.5 55.5t-80 84.5t-47 108t-14 124.5t16.5 135.5q22 96 71.5 183.5t121.5 158t173 112.5t216 42q109 0 187.5 -31.5t120.5 -83t60.5 -122.5t15 -145.5t-23.5 -156.5q-10 -39 -20 -63h-690 +q-9 -94 36.5 -144.5t147.5 -50.5q87 0 151 23t128 77l141 -163q-104 -89 -211.5 -126.5t-232.5 -37.5zM334 586h459q12 117 -28 169t-144 52q-101 0 -174 -61.5t-113 -159.5z" /> + <glyph glyph-name="Edotaccent" unicode="Ė" horiz-adv-x="1245" +d="M747 1600l51 225h256l-51 -225h-256zM68 0l325 1413h940l-53 -233h-686l-84 -357h639l-53 -233h-639l-80 -350h686l-55 -240h-940z" /> + <glyph glyph-name="edotaccent" unicode="ė" horiz-adv-x="1067" +d="M557 1188l51 225h256l-51 -225h-256zM451 -12q-84 0 -152 20t-115.5 55.5t-80 84.5t-47 108t-14 124.5t16.5 135.5q22 96 71.5 183.5t121.5 158t173 112.5t216 42q109 0 187.5 -31.5t120.5 -83t60.5 -122.5t15 -145.5t-23.5 -156.5q-10 -39 -20 -63h-690 +q-9 -94 36.5 -144.5t147.5 -50.5q87 0 151 23t128 77l141 -163q-104 -89 -211.5 -126.5t-232.5 -37.5zM334 586h459q12 117 -28 169t-144 52q-101 0 -174 -61.5t-113 -159.5z" /> + <glyph glyph-name="Eogonek" unicode="Ę" horiz-adv-x="1245" +d="M1280 1180h-686l-84 -357h639l-53 -233h-639l-80 -350h686l-55 -240h-96l100 -4q-10 -3 -33 -12.5t-61 -31t-72.5 -47t-64 -63.5t-38.5 -78t4 -52.5t41 -12.5q66 0 127 65l107 -102q-100 -113 -236 -113q-102 0 -155.5 64t-30.5 164q10 45 37.5 85.5t63 68.5t58.5 43.5 +t44 25.5h-735l325 1413h940z" /> + <glyph glyph-name="eogonek" unicode="ę" horiz-adv-x="1067" +d="M641 1012q109 0 187.5 -31.5t120.5 -83t60.5 -122.5t15 -145.5t-23.5 -156.5q-10 -39 -20 -63h-690q-9 -94 36.5 -144.5t147.5 -50.5q87 0 151 23t128 77l141 -163q-109 -93 -228 -132q-32 -15 -61.5 -33.5t-62.5 -45t-57 -60.5t-32 -70q-9 -40 4 -52.5t41 -12.5 +q66 0 127 65l107 -102q-100 -113 -236 -113q-102 0 -155.5 64t-30.5 164q22 91 113 165q-94 4 -167 34t-117.5 79.5t-70.5 115t-26 141t16 157.5q22 96 71.5 183.5t121.5 158t173 112.5t216 42zM793 586q12 117 -28 169t-144 52q-101 0 -174 -61.5t-113 -159.5h459z" /> + <glyph glyph-name="Ecaron" unicode="Ě" horiz-adv-x="1245" +d="M854 1491l-242 332h185l92 -135l164 135h192zM68 0l325 1413h940l-53 -233h-686l-84 -357h639l-53 -233h-639l-80 -350h686l-55 -240h-940z" /> + <glyph glyph-name="ecaron" unicode="ě" horiz-adv-x="1067" +d="M664 1079l-242 332h185l92 -135l164 135h192zM451 -12q-84 0 -152 20t-115.5 55.5t-80 84.5t-47 108t-14 124.5t16.5 135.5q22 96 71.5 183.5t121.5 158t173 112.5t216 42q109 0 187.5 -31.5t120.5 -83t60.5 -122.5t15 -145.5t-23.5 -156.5q-10 -39 -20 -63h-690 +q-9 -94 36.5 -144.5t147.5 -50.5q87 0 151 23t128 77l141 -163q-104 -89 -211.5 -126.5t-232.5 -37.5zM334 586h459q12 117 -28 169t-144 52q-101 0 -174 -61.5t-113 -159.5z" /> + <glyph glyph-name="Gbreve" unicode="Ğ" horiz-adv-x="1534" +d="M1020 1555q-164 0 -229 71.5t-35 198.5h168q-26 -127 102 -127q68 0 121.5 36t67.5 91h168q-32 -142 -120 -206t-243 -64zM659 -20q-115 0 -208.5 27.5t-157.5 78t-107 119.5t-61 152.5t-15.5 177t25.5 194.5q26 114 75 217.5t123 193.5t166.5 155.5t212.5 103t255 37.5 +q213 0 352 -109t180 -307l-239 -74q-29 268 -320 268q-111 0 -207 -42t-165 -115t-117 -165t-72 -198q-19 -82 -20.5 -153.5t16.5 -133.5t56.5 -106t103 -69t151.5 -25q157 0 294.5 100.5t197.5 261.5l-324 -10l47 205h567l-176 -764h-200l24 188q-79 -99 -199 -153.5 +t-258 -54.5z" /> + <glyph glyph-name="gbreve" unicode="ğ" +d="M700 1143q-164 0 -229 71.5t-35 198.5h168q-26 -127 102 -127q68 0 121.5 36t67.5 91h168q-32 -142 -120 -206t-243 -64zM901 -10q-46 -204 -191 -316t-362 -112q-292 0 -403 223l207 117q18 -56 74.5 -91.5t148.5 -35.5q110 0 185 60t102 175l26 103 +q-116 -113 -297 -113q-84 0 -150 28.5t-106 78t-63 117t-21.5 145.5t19.5 163q22 96 69 183.5t113.5 155.5t156 108.5t187.5 40.5q86 0 157 -33t107 -96l29 108h246zM477 225q125 0 209 85.5t117 221.5q27 118 -13 192.5t-155 74.5q-125 0 -212 -89t-116 -223 +q-28 -116 13 -189t157 -73z" /> + <glyph glyph-name="Gdotaccent" unicode="Ġ" horiz-adv-x="1534" +d="M889 1600l51 225h256l-51 -225h-256zM659 -20q-115 0 -208.5 27.5t-157.5 78t-107 119.5t-61 152.5t-15.5 177t25.5 194.5q26 114 75 217.5t123 193.5t166.5 155.5t212.5 103t255 37.5q213 0 352 -109t180 -307l-239 -74q-29 268 -320 268q-111 0 -207 -42t-165 -115 +t-117 -165t-72 -198q-19 -82 -20.5 -153.5t16.5 -133.5t56.5 -106t103 -69t151.5 -25q157 0 294.5 100.5t197.5 261.5l-324 -10l47 205h567l-176 -764h-200l24 188q-79 -99 -199 -153.5t-258 -54.5z" /> + <glyph glyph-name="gdotaccent" unicode="ġ" +d="M569 1188l51 225h256l-51 -225h-256zM901 -10q-46 -204 -191 -316t-362 -112q-292 0 -403 223l207 117q18 -56 74.5 -91.5t148.5 -35.5q110 0 185 60t102 175l26 103q-116 -113 -297 -113q-84 0 -150 28.5t-106 78t-63 117t-21.5 145.5t19.5 163q22 96 69 183.5 +t113.5 155.5t156 108.5t187.5 40.5q86 0 157 -33t107 -96l29 108h246zM477 225q125 0 209 85.5t117 221.5q27 118 -13 192.5t-155 74.5q-125 0 -212 -89t-116 -223q-28 -116 13 -189t157 -73z" /> + <glyph glyph-name="Gcommaaccent" unicode="Ģ" horiz-adv-x="1534" +d="M659 -20q-115 0 -208.5 27.5t-157.5 78t-107 119.5t-61 152.5t-15.5 177t25.5 194.5q26 114 75 217.5t123 193.5t166.5 155.5t212.5 103t255 37.5q213 0 352 -109t180 -307l-239 -74q-29 268 -320 268q-111 0 -207 -42t-165 -115t-117 -165t-72 -198 +q-19 -82 -20.5 -153.5t16.5 -133.5t56.5 -106t103 -69t151.5 -25q157 0 294.5 100.5t197.5 261.5l-324 -10l47 205h567l-176 -764h-200l24 188q-79 -99 -199 -153.5t-258 -54.5zM297 -459l217 353h258l-330 -353h-145z" /> + <glyph glyph-name="gcommaaccent" unicode="ģ" horiz-adv-x="1040" +d="M974 1434l-217 -315h-258l330 315h145zM901 -10q-46 -204 -191 -316t-362 -112q-292 0 -403 223l207 117q18 -56 74.5 -91.5t148.5 -35.5q110 0 185 60t102 175l26 103q-116 -113 -297 -113q-84 0 -150 28.5t-106 78t-63 117t-21.5 145.5t19.5 163q22 96 69 183.5 +t113.5 155.5t156 108.5t187.5 40.5q86 0 157 -33t107 -96l29 108h246zM477 225q125 0 209 85.5t117 221.5q27 118 -13 192.5t-155 74.5q-125 0 -212 -89t-116 -223q-28 -116 13 -189t157 -73z" /> + <glyph glyph-name="Hbar" unicode="Ħ" horiz-adv-x="1491" +d="M1569 1186l-33 -143h-101l-241 -1043h-254l135 590h-618l-135 -590h-254l240 1043h-103l33 143h103l52 227h254l-53 -227h619l53 227h254l-52 -227h101zM1128 823l51 220h-618l-51 -220h618z" /> + <glyph glyph-name="hbar" unicode="ħ" horiz-adv-x="1165" +d="M788 1016q78 0 137 -24.5t93 -65.5t51.5 -96t17 -115.5t-15.5 -124.5l-135 -590h-248l133 580q14 62 14.5 108t-27 73t-85.5 27q-104 0 -202 -78t-120 -173l-122 -537h-248l255 1108h-145l37 164h146l32 141h248l-34 -141h243l-37 -164h-245l-52 -217q131 125 309 125z +" /> + <glyph glyph-name="Itilde" unicode="Ĩ" horiz-adv-x="618" +d="M684 1517q-46 0 -77.5 15t-47 36t-27 42t-24.5 36t-31 15q-35 0 -66 -39t-46 -98h-154q30 142 98 214t164 72q50 0 84.5 -22t48.5 -48.5t31 -48.5t37 -22q32 0 62.5 38t45.5 97h162q-32 -143 -99 -215t-161 -72zM68 0l325 1413h254l-325 -1413h-254z" /> + <glyph glyph-name="itilde" unicode="ĩ" horiz-adv-x="516" +d="M537 1105q-46 0 -77.5 15t-47 36t-27 42t-24.5 36t-31 15q-35 0 -66 -39t-46 -98h-154q30 142 98 214t164 72q50 0 84.5 -22t48.5 -48.5t31 -48.5t37 -22q32 0 62.5 38t45.5 97h162q-32 -143 -99 -215t-161 -72zM31 0l229 999h225l-229 -999h-225z" /> + <glyph glyph-name="Imacron" unicode="Ī" horiz-adv-x="618" +d="M274 1559l33 143h559l-33 -143h-559zM68 0l325 1413h254l-325 -1413h-254z" /> + <glyph glyph-name="imacron" unicode="ī" horiz-adv-x="516" +d="M127 1147l33 143h559l-33 -143h-559zM31 0l229 999h225l-229 -999h-225z" /> + <glyph glyph-name="Iogonek" unicode="Į" horiz-adv-x="618" +d="M102 -301q66 0 127 65l107 -102q-100 -113 -236 -113q-102 0 -155.5 64t-30.5 164q10 45 37.5 85.5t63 68.5t58.5 43.5t44 25.5h-49l325 1413h254l-325 -1413h-96l100 -4q-10 -3 -33 -12.5t-61 -31t-72.5 -47t-64 -63.5t-38.5 -78t4 -52.5t41 -12.5z" /> + <glyph glyph-name="iogonek" unicode="į" horiz-adv-x="516" +d="M340 1413h256l-51 -225h-256zM485 999l-229 -999h-96l100 -4q-10 -3 -33 -12.5t-61 -31t-72.5 -47t-64 -63.5t-38.5 -78t4 -52.5t41 -12.5q66 0 127 65l107 -102q-100 -113 -236 -113q-102 0 -155.5 64t-30.5 164q10 45 37.5 85.5t63 68.5t58.5 43.5t44 25.5h-20l229 999 +h225z" /> + <glyph glyph-name="Idotaccent" unicode="İ" horiz-adv-x="618" +d="M436 1600l51 225h256l-51 -225h-256zM68 0l325 1413h254l-325 -1413h-254z" /> + <glyph glyph-name="dotlessi" unicode="ı" horiz-adv-x="516" +d="M31 0l229 999h225l-229 -999h-225z" /> + <glyph glyph-name="IJ" unicode="IJ" horiz-adv-x="1757" +d="M68 0l325 1413h254l-325 -1413h-254zM1019 -20q-107 0 -188.5 38.5t-127.5 103.5t-62.5 149.5t-2.5 179.5l250 8q-18 -113 19.5 -178.5t140.5 -65.5q135 0 202.5 75t102.5 226l154 664h-533l54 233h786l-211 -913q-27 -117 -73.5 -209t-116.5 -163t-170 -109.5 +t-224 -38.5z" /> + <glyph glyph-name="Kcommaaccent" unicode="Ķ" horiz-adv-x="1491" +d="M68 0l325 1413h254l-172 -737l858 737h344l-700 -579l379 -834h-309l-281 664l-358 -297l-86 -367h-254zM273 -459l217 353h258l-330 -353h-145z" /> + <glyph glyph-name="kcommaaccent" unicode="ķ" horiz-adv-x="1118" +d="M33 0l325 1413h244l-194 -829l473 415h321l-465 -387l271 -612h-283l-184 463l-195 -170l-70 -293h-243zM150 -459l217 353h258l-330 -353h-145z" /> + <glyph glyph-name="kgreenlandic" unicode="ĸ" horiz-adv-x="1116" +d="M31 0l229 999h244l-98 -415l473 415h321l-465 -387l271 -612h-283l-184 463l-195 -170l-70 -293h-243z" /> + <glyph glyph-name="Lacute" unicode="Ĺ" horiz-adv-x="1063" +d="M430 1536l293 289h264l-373 -289h-184zM68 0l325 1413h254l-270 -1173h604l-55 -240h-858z" /> + <glyph glyph-name="lacute" unicode="ĺ" horiz-adv-x="573" +d="M397 1536l293 289h264l-373 -289h-184zM248 -20q-229 0 -176 229l278 1204h244l-268 -1157q-8 -34 6.5 -45.5t54.5 -11.5q12 0 70 8l-35 -209q-99 -18 -174 -18z" /> + <glyph glyph-name="Lcommaaccent" unicode="Ļ" horiz-adv-x="1063" +d="M68 0l325 1413h254l-270 -1173h604l-55 -240h-858zM76 -459l217 353h258l-330 -353h-145z" /> + <glyph glyph-name="lcommaaccent" unicode="ļ" horiz-adv-x="573" +d="M248 -20q-229 0 -176 229l278 1204h244l-268 -1157q-8 -34 6.5 -45.5t54.5 -11.5q12 0 70 8l-35 -209q-99 -18 -174 -18zM-110 -459l217 353h258l-330 -353h-145z" /> + <glyph glyph-name="Lcaron" unicode="Ľ" horiz-adv-x="1063" +d="M68 0l325 1413h254l-270 -1173h604l-55 -240h-858zM774 958l219 455h260l-331 -455h-148z" /> + <glyph glyph-name="lcaron" unicode="ľ" horiz-adv-x="768" +d="M248 -20q-229 0 -176 229l278 1204h244l-268 -1157q-8 -34 6.5 -45.5t54.5 -11.5q12 0 70 8l-35 -209q-99 -18 -174 -18zM625 958l219 455h260l-332 -455h-147z" /> + <glyph glyph-name="Lslash" unicode="Ł" horiz-adv-x="1087" +d="M402 240h604l-55 -240h-858l97 423l-200 -132l69 260l189 125l170 737h254l-124 -541l265 175l-70 -259l-253 -167z" /> + <glyph glyph-name="lslash" unicode="ł" horiz-adv-x="573" +d="M417 649l-91 -393q-8 -34 6.5 -45.5t54.5 -11.5q12 0 70 8l-35 -209q-99 -18 -174 -18q-229 0 -176 229l56 242l-126 -86l41 224l139 95l168 729h244l-123 -530l177 121l-41 -225z" /> + <glyph glyph-name="Nacute" unicode="Ń" horiz-adv-x="1454" +d="M846 1536l293 289h264l-373 -289h-184zM68 0l325 1413h250l365 -989l231 989h244l-326 -1413h-252l-362 991l-232 -991h-243z" /> + <glyph glyph-name="nacute" unicode="ń" +d="M610 1124l293 289h264l-373 -289h-184zM31 0l229 999h248l-29 -108q131 125 309 125q78 0 137 -24.5t93 -65.5t51.5 -96t17 -115.5t-15.5 -124.5l-135 -590h-248l133 580q14 62 14.5 108t-27 73t-85.5 27q-104 0 -202 -78t-120 -173l-122 -537h-248z" /> + <glyph glyph-name="Ncommaaccent" unicode="Ņ" horiz-adv-x="1454" +d="M68 0l325 1413h250l365 -989l231 989h244l-326 -1413h-252l-362 991l-232 -991h-243zM262 -459l217 353h258l-330 -353h-145z" /> + <glyph glyph-name="ncommaaccent" unicode="ņ" +d="M31 0l229 999h248l-29 -108q131 125 309 125q78 0 137 -24.5t93 -65.5t51.5 -96t17 -115.5t-15.5 -124.5l-135 -590h-248l133 580q14 62 14.5 108t-27 73t-85.5 27q-104 0 -202 -78t-120 -173l-122 -537h-248zM123 -459l217 353h258l-330 -353h-145z" /> + <glyph glyph-name="Ncaron" unicode="Ň" horiz-adv-x="1454" +d="M961 1491l-242 332h185l92 -135l164 135h192zM68 0l325 1413h250l365 -989l231 989h244l-326 -1413h-252l-362 991l-232 -991h-243z" /> + <glyph glyph-name="ncaron" unicode="ň" +d="M725 1079l-242 332h185l92 -135l164 135h192zM31 0l229 999h248l-29 -108q131 125 309 125q78 0 137 -24.5t93 -65.5t51.5 -96t17 -115.5t-15.5 -124.5l-135 -590h-248l133 580q14 62 14.5 108t-27 73t-85.5 27q-104 0 -202 -78t-120 -173l-122 -537h-248z" /> + <glyph glyph-name="Eng" unicode="Ŋ" horiz-adv-x="1454" +d="M623 -369l30 160q123 -7 203 46.5t66 125.5l-379 1034l-232 -997h-243l325 1411h250l363 -995l233 995h242l-330 -1421q-17 -77 -45 -137t-74 -112.5t-117.5 -81t-164.5 -28.5h-127z" /> + <glyph glyph-name="eng" unicode="ŋ" horiz-adv-x="1157" +d="M403 -369l48 201h69q42 0 73.5 16.5t50 46t27.5 55t17 58.5l131 574q13 64 14.5 112t-26.5 76.5t-88 28.5q-107 0 -205.5 -80.5t-122.5 -179.5l-123 -539h-237l229 999h238l-31 -118q130 135 315 135q77 0 135 -24t91.5 -65t50 -95.5t16 -115t-15.5 -124.5l-154 -668 +q-5 -24 -9.5 -40t-17.5 -49.5t-29 -57.5t-45.5 -53.5t-65.5 -48t-90 -31.5t-118 -13h-127z" /> + <glyph glyph-name="Omacron" unicode="Ō" horiz-adv-x="1528" +d="M729 1559l33 143h559l-33 -143h-559zM657 -20q-116 0 -209 28t-157 78.5t-106.5 119.5t-60.5 152.5t-15 177t26 193.5q33 143 102.5 268t172 224t246.5 156t311 57q116 0 209 -28t156.5 -78.5t106 -119.5t60.5 -153t15.5 -177.5t-25.5 -193.5q-33 -143 -102.5 -268 +t-172 -223.5t-246.5 -155.5t-311 -57zM682 205q113 0 207.5 42t160.5 116.5t111 166t70 199.5q18 79 21 147.5t-13 130.5t-51 106t-98 69.5t-150 25.5q-112 0 -206 -42t-160 -116t-111 -165.5t-70 -200.5q-18 -79 -21 -147.5t12.5 -130.5t51 -106t98 -69.5t148.5 -25.5z" /> + <glyph glyph-name="omacron" unicode="ō" horiz-adv-x="1128" +d="M432 1147l33 143h559l-33 -143h-559zM457 -20q-93 0 -169.5 27.5t-127.5 77t-83.5 117t-36 147.5t14.5 169q32 135 119 247t217 179.5t277 67.5q154 0 258.5 -73.5t140.5 -195.5t2 -270q-49 -208 -219.5 -350.5t-392.5 -142.5zM479 190q135 0 224 92.5t122 235.5 +q15 57 11.5 108.5t-21.5 90t-61.5 61.5t-108.5 23q-135 0 -224 -92.5t-122 -235.5q-15 -57 -11.5 -108t21.5 -90t61.5 -62t108.5 -23z" /> + <glyph glyph-name="Ohungarumlaut" unicode="Ő" horiz-adv-x="1528" +d="M692 1495l301 330h223l-342 -330h-182zM1040 1495l301 330h264l-383 -330h-182zM657 -20q-116 0 -209 28t-157 78.5t-106.5 119.5t-60.5 152.5t-15 177t26 193.5q33 143 102.5 268t172 224t246.5 156t311 57q116 0 209 -28t156.5 -78.5t106 -119.5t60.5 -153t15.5 -177.5 +t-25.5 -193.5q-33 -143 -102.5 -268t-172 -223.5t-246.5 -155.5t-311 -57zM682 205q113 0 207.5 42t160.5 116.5t111 166t70 199.5q18 79 21 147.5t-13 130.5t-51 106t-98 69.5t-150 25.5q-112 0 -206 -42t-160 -116t-111 -165.5t-70 -200.5q-18 -79 -21 -147.5t12.5 -130.5 +t51 -106t98 -69.5t148.5 -25.5z" /> + <glyph glyph-name="ohungarumlaut" unicode="ő" horiz-adv-x="1128" +d="M395 1083l301 330h223l-342 -330h-182zM743 1083l301 330h264l-383 -330h-182zM457 -20q-93 0 -169.5 27.5t-127.5 77t-83.5 117t-36 147.5t14.5 169q32 135 119 247t217 179.5t277 67.5q154 0 258.5 -73.5t140.5 -195.5t2 -270q-49 -208 -219.5 -350.5t-392.5 -142.5z +M479 190q135 0 224 92.5t122 235.5q15 57 11.5 108.5t-21.5 90t-61.5 61.5t-108.5 23q-135 0 -224 -92.5t-122 -235.5q-15 -57 -11.5 -108t21.5 -90t61.5 -62t108.5 -23z" /> + <glyph glyph-name="OE" unicode="Œ" horiz-adv-x="2255" +d="M657 -20q-116 0 -209 28t-157 78.5t-106.5 119.5t-60.5 152.5t-15 177t26 193.5q33 143 102.5 268t172 224t246.5 156t311 57q278 0 395 -177l41 156h940l-53 -233h-686l-84 -357h639l-54 -233h-639l-80 -350h687l-56 -240h-940l37 139q-184 -159 -457 -159zM686 219 +q112 0 208 40t164.5 111t115.5 161.5t71 197.5q18 78 19.5 146t-17 127t-56.5 101.5t-102.5 66.5t-150.5 24q-113 0 -209 -40t-164.5 -111t-115 -161.5t-70.5 -197.5q-18 -78 -19.5 -146t16.5 -127t56 -101.5t102.5 -66.5t151.5 -24z" /> + <glyph glyph-name="oe" unicode="œ" horiz-adv-x="1829" +d="M457 -20q-93 0 -170 28t-128 77t-83 117t-35.5 147.5t14.5 168.5q48 207 219 350.5t394 143.5q117 0 203 -47.5t135 -122.5q167 170 387 170q96 0 170.5 -29.5t118 -80t68.5 -119t24 -146.5t-17 -162q-8 -39 -22 -67h-688q-7 -87 43 -135t151 -48q83 0 151.5 28.5 +t137.5 86.5l147 -172q-212 -180 -463 -180q-125 0 -215 46.5t-133 119.5q-177 -174 -409 -174zM471 186q137 0 225 92t123 240q31 131 -9 208t-163 77q-137 0 -225 -92t-123 -240q-31 -131 9 -208t163 -77zM1092 586h448q8 114 -31.5 163.5t-138.5 49.5q-97 0 -168.5 -60 +t-109.5 -153z" /> + <glyph glyph-name="Racute" unicode="Ŕ" horiz-adv-x="1268" +d="M742 1536l293 289h264l-373 -289h-184zM66 -2l327 1415h451q99 0 182 -29.5t138.5 -86t77 -138t-2.5 -184.5q-29 -122 -125 -215t-229 -135l241 -627h-274l-209 606h-182l-142 -606h-253zM510 811h217q103 5 176 60.5t92 144.5q19 79 -30.5 124.5t-157.5 45.5h-211z" /> + <glyph glyph-name="racute" unicode="ŕ" horiz-adv-x="815" +d="M457 1124l293 289h264l-373 -289h-184zM31 0l229 999h232l-31 -157q28 48 63 83.5t71.5 53.5t69 26.5t64.5 8.5q56 0 111.5 -19t91.5 -53l-146 -186q-55 32 -118 32q-99 0 -179.5 -86.5t-117.5 -248.5l-105 -453h-235z" /> + <glyph glyph-name="Rcommaaccent" unicode="Ŗ" horiz-adv-x="1268" +d="M66 -2l327 1415h451q99 0 182 -29.5t138.5 -86t77 -138t-2.5 -184.5q-29 -122 -125 -215t-229 -135l241 -627h-274l-209 606h-182l-142 -606h-253zM510 811h217q103 5 176 60.5t92 144.5q19 79 -30.5 124.5t-157.5 45.5h-211zM223 -459l217 353h258l-330 -353h-145z" /> + <glyph glyph-name="rcommaaccent" unicode="ŗ" horiz-adv-x="815" +d="M31 0l229 999h232l-31 -157q28 48 63 83.5t71.5 53.5t69 26.5t64.5 8.5q56 0 111.5 -19t91.5 -53l-146 -186q-55 32 -118 32q-99 0 -179.5 -86.5t-117.5 -248.5l-105 -453h-235zM-198 -459l217 353h258l-330 -353h-145z" /> + <glyph glyph-name="Rcaron" unicode="Ř" horiz-adv-x="1268" +d="M857 1491l-242 332h185l92 -135l164 135h192zM66 -2l327 1415h451q99 0 182 -29.5t138.5 -86t77 -138t-2.5 -184.5q-29 -122 -125 -215t-229 -135l241 -627h-274l-209 606h-182l-142 -606h-253zM510 811h217q103 5 176 60.5t92 144.5q19 79 -30.5 124.5t-157.5 45.5h-211 +z" /> + <glyph glyph-name="rcaron" unicode="ř" horiz-adv-x="815" +d="M572 1079l-242 332h185l92 -135l164 135h192zM31 0l229 999h232l-31 -157q28 48 63 83.5t71.5 53.5t69 26.5t64.5 8.5q56 0 111.5 -19t91.5 -53l-146 -186q-55 32 -118 32q-99 0 -179.5 -86.5t-117.5 -248.5l-105 -453h-235z" /> + <glyph glyph-name="Sacute" unicode="Ś" horiz-adv-x="1137" +d="M684 1536l293 289h264l-373 -289h-184zM522 -16q-102 0 -191.5 28t-158 80t-108 134t-39.5 184l260 43q0 -115 73 -174.5t193 -59.5q115 0 184.5 54t69.5 149q0 47 -18.5 86.5t-50.5 67.5t-73 52.5t-86 47t-90.5 46.5t-86.5 54t-73 66.5t-50.5 88t-18.5 113.5 +q0 174 132.5 282t332.5 108q158 0 279 -68.5t161 -189.5l-219 -105q-19 67 -82 107.5t-141 40.5q-83 0 -143 -44.5t-60 -117.5q0 -48 30 -88.5t78.5 -70.5t107 -60.5t116.5 -67t106.5 -80.5t78.5 -110t30 -148q0 -132 -74 -235t-197 -158t-272 -55z" /> + <glyph glyph-name="sacute" unicode="ś" horiz-adv-x="907" +d="M459 1124l293 289h264l-373 -289h-184zM373 -20q-166 0 -273 86t-118 204l204 66q10 -63 56 -108.5t133 -45.5q84 0 135 43t51 97q0 33 -23 55.5t-59.5 36.5t-81 26.5t-89 30t-81 43t-59.5 70.5t-23 106q0 146 115 235t285 89q134 0 235 -58t135 -163l-202 -82 +q-16 54 -61 85t-115 31q-68 0 -110 -29t-42 -73q0 -31 23 -54t60 -37.5t81.5 -28.5t89 -34t81.5 -47.5t60 -74.5t23 -109q0 -154 -124.5 -257t-305.5 -103z" /> + <glyph glyph-name="Scedilla" unicode="Ş" horiz-adv-x="1137" +d="M518 1057q0 -48 30 -88.5t78.5 -70.5t107 -60.5t116.5 -67t106.5 -80.5t78.5 -110t30 -148q0 -132 -74 -235t-197 -158t-272 -55h-12l-94 -86q90 -13 129 -71t19 -146q-20 -87 -95.5 -145t-168.5 -58q-66 0 -115 40t-62 99l142 37q5 -37 47 -37q41 0 73.5 28.5t43.5 71.5 +q9 39 -28 63.5t-108 24.5h-77l159 193h7q-160 34 -258.5 140.5t-98.5 271.5l260 43q0 -115 73 -174.5t193 -59.5q115 0 184.5 54t69.5 149q0 47 -18.5 86.5t-50.5 67.5t-73 52.5t-86 47t-90.5 46.5t-86.5 54t-73 66.5t-50.5 88t-18.5 113.5q0 174 132.5 282t332.5 108 +q158 0 279 -68.5t161 -189.5l-219 -105q-19 67 -82 107.5t-141 40.5q-83 0 -143 -44.5t-60 -117.5z" /> + <glyph glyph-name="scedilla" unicode="ş" horiz-adv-x="907" +d="M385 725q0 -31 23 -54t60 -37.5t81.5 -28.5t89 -34t81.5 -47.5t60 -74.5t23 -109q0 -138 -102 -236.5t-259 -119.5l-94 -86q90 -13 129 -71t19 -146q-20 -87 -95.5 -145t-168.5 -58q-66 0 -115 40t-62 99l142 37q5 -37 47 -37q41 0 73.5 28.5t43.5 71.5q9 39 -28 63.5 +t-108 24.5h-77l149 180q-136 20 -221 101t-94 184l204 66q10 -63 56 -108.5t133 -45.5q84 0 135 43t51 97q0 33 -23 55.5t-59.5 36.5t-81 26.5t-89 30t-81 43t-59.5 70.5t-23 106q0 146 115 235t285 89q134 0 235 -58t135 -163l-202 -82q-16 54 -61 85t-115 31 +q-68 0 -110 -29t-42 -73z" /> + <glyph glyph-name="Scaron" unicode="Š" horiz-adv-x="1137" +d="M799 1491l-242 332h185l92 -135l164 135h192zM522 -16q-102 0 -191.5 28t-158 80t-108 134t-39.5 184l260 43q0 -115 73 -174.5t193 -59.5q115 0 184.5 54t69.5 149q0 47 -18.5 86.5t-50.5 67.5t-73 52.5t-86 47t-90.5 46.5t-86.5 54t-73 66.5t-50.5 88t-18.5 113.5 +q0 174 132.5 282t332.5 108q158 0 279 -68.5t161 -189.5l-219 -105q-19 67 -82 107.5t-141 40.5q-83 0 -143 -44.5t-60 -117.5q0 -48 30 -88.5t78.5 -70.5t107 -60.5t116.5 -67t106.5 -80.5t78.5 -110t30 -148q0 -132 -74 -235t-197 -158t-272 -55z" /> + <glyph glyph-name="scaron" unicode="š" horiz-adv-x="907" +d="M574 1079l-242 332h185l92 -135l164 135h192zM373 -20q-166 0 -273 86t-118 204l204 66q10 -63 56 -108.5t133 -45.5q84 0 135 43t51 97q0 33 -23 55.5t-59.5 36.5t-81 26.5t-89 30t-81 43t-59.5 70.5t-23 106q0 146 115 235t285 89q134 0 235 -58t135 -163l-202 -82 +q-16 54 -61 85t-115 31q-68 0 -110 -29t-42 -73q0 -31 23 -54t60 -37.5t81.5 -28.5t89 -34t81.5 -47.5t60 -74.5t23 -109q0 -154 -124.5 -257t-305.5 -103z" /> + <glyph glyph-name="uni0162" unicode="Ţ" horiz-adv-x="1180" +d="M348 0l273 1186h-443l53 227h1139l-53 -227h-443l-272 -1186h-254zM324 -522q-66 0 -115 40t-62 99l142 37q5 -37 47 -37q41 0 73.5 28.5t43.5 71.5q9 39 -28 63.5t-108 24.5h-77l159 193h150l-109 -100q90 -13 129 -71t19 -146q-20 -87 -95.5 -145t-168.5 -58z" /> + <glyph glyph-name="uni0163" unicode="ţ" horiz-adv-x="760" +d="M489 795l-112 -486q-16 -66 7.5 -90t74.5 -24q73 0 155 41l-41 -230q-53 -19 -136 -24l-91 -84q90 -13 129 -71t19 -146q-20 -87 -95.5 -145t-168.5 -58q-66 0 -115 40t-62 99l142 37q5 -37 47 -37q41 0 73.5 28.5t43.5 71.5q9 39 -28 63.5t-108 24.5h-77l153 186 +q-102 25 -144.5 103t-15.5 193l117 508h-162l47 204h166l55 248l271 174l-96 -422h260l-47 -204h-261z" /> + <glyph glyph-name="Tcaron" unicode="Ť" horiz-adv-x="1180" +d="M824 1491l-242 332h185l92 -135l164 135h192zM348 0l273 1186h-443l53 227h1139l-53 -227h-443l-272 -1186h-254z" /> + <glyph glyph-name="tcaron" unicode="ť" horiz-adv-x="760" +d="M680 1145l240 454h258l-353 -454h-145zM373 -20q-76 0 -130 24.5t-80 66t-33.5 97.5t9.5 119l113 491h-162l51 221h166l55 248l271 174l-96 -422h260l-52 -221h-260l-116 -510q-2 -17 -4 -29t4 -20t9.5 -12.5t14.5 -6.5t18 -2.5t19 -0.5q52 0 98.5 10.5t67.5 20.5l20 10 +l-45 -218q-8 -4 -22.5 -11t-66 -18t-109.5 -11z" /> + <glyph glyph-name="Tbar" unicode="Ŧ" horiz-adv-x="1180" +d="M1317 1186h-443l-91 -397h190l-37 -164h-191l-143 -625h-254l144 625h-191l37 164h192l91 397h-443l53 227h1139z" /> + <glyph glyph-name="tbar" unicode="ŧ" horiz-adv-x="760" +d="M750 795h-261l-49 -213h256l-37 -164h-257l-25 -109q-16 -66 7.5 -90t74.5 -24q73 0 155 41l-41 -230q-71 -26 -178 -26q-151 0 -219.5 83.5t-36.5 223.5l30 131h-145l37 164h146l49 213h-162l47 204h166l55 248l271 174l-96 -422h260z" /> + <glyph glyph-name="Utilde" unicode="Ũ" horiz-adv-x="1380" +d="M1061 1517q-46 0 -77.5 15t-47 36t-27 42t-24.5 36t-31 15q-35 0 -66 -39t-46 -98h-154q30 142 98 214t164 72q50 0 84.5 -22t48.5 -48.5t31 -48.5t37 -22q32 0 62.5 38t45.5 97h162q-32 -143 -99 -215t-161 -72zM584 -20q-142 0 -239.5 42t-145 118.5t-58 183.5 +t22.5 237l196 852h254l-194 -844q-26 -114 -22 -190.5t56 -115t160 -38.5q86 0 151 24.5t109.5 73.5t73.5 113.5t49 153.5l191 823h254l-199 -862q-132 -571 -659 -571z" /> + <glyph glyph-name="utilde" unicode="ũ" +d="M854 1105q-46 0 -77.5 15t-47 36t-27 42t-24.5 36t-31 15q-35 0 -66 -39t-46 -98h-154q30 142 98 214t164 72q50 0 84.5 -22t48.5 -48.5t31 -48.5t37 -22q32 0 62.5 38t45.5 97h162q-32 -143 -99 -215t-161 -72zM377 -23q-78 0 -136.5 25.5t-92.5 68.5t-51 100.5 +t-16.5 120.5t15.5 130l133 577h248l-135 -585q-14 -62 -13 -107.5t33.5 -71.5t100.5 -26q49 0 93 14t88 47t79 96t55 152l111 481h248l-230 -999h-241l22 109q-131 -132 -311 -132z" /> + <glyph glyph-name="Umacron" unicode="Ū" horiz-adv-x="1380" +d="M651 1559l33 143h559l-33 -143h-559zM584 -20q-142 0 -239.5 42t-145 118.5t-58 183.5t22.5 237l196 852h254l-194 -844q-26 -114 -22 -190.5t56 -115t160 -38.5q86 0 151 24.5t109.5 73.5t73.5 113.5t49 153.5l191 823h254l-199 -862q-132 -571 -659 -571z" /> + <glyph glyph-name="umacron" unicode="ū" +d="M444 1147l33 143h559l-33 -143h-559zM377 -23q-78 0 -136.5 25.5t-92.5 68.5t-51 100.5t-16.5 120.5t15.5 130l133 577h248l-135 -585q-14 -62 -13 -107.5t33.5 -71.5t100.5 -26q49 0 93 14t88 47t79 96t55 152l111 481h248l-230 -999h-241l22 109q-131 -132 -311 -132z +" /> + <glyph glyph-name="Uring" unicode="Ů" horiz-adv-x="1380" +d="M928 1481q-103 0 -158 76.5t-29 177.5q22 87 97.5 147t165.5 60q102 0 158 -76t30 -176q-23 -89 -99 -149t-165 -60zM946 1612q54 0 87.5 39.5t33.5 87.5q0 37 -22 57.5t-60 20.5q-55 0 -87 -37.5t-32 -87.5q0 -39 21.5 -59.5t58.5 -20.5zM584 -20q-142 0 -239.5 42 +t-145 118.5t-58 183.5t22.5 237l196 852h254l-194 -844q-26 -114 -22 -190.5t56 -115t160 -38.5q86 0 151 24.5t109.5 73.5t73.5 113.5t49 153.5l191 823h254l-199 -862q-132 -571 -659 -571z" /> + <glyph glyph-name="uring" unicode="ů" +d="M721 1069q-103 0 -158 76.5t-29 177.5q22 87 97.5 147t165.5 60q102 0 158 -76t30 -176q-23 -89 -99 -149t-165 -60zM739 1200q54 0 87.5 39.5t33.5 87.5q0 37 -22 57.5t-60 20.5q-55 0 -87 -37.5t-32 -87.5q0 -39 21.5 -59.5t58.5 -20.5zM377 -23q-78 0 -136.5 25.5 +t-92.5 68.5t-51 100.5t-16.5 120.5t15.5 130l133 577h248l-135 -585q-14 -62 -13 -107.5t33.5 -71.5t100.5 -26q49 0 93 14t88 47t79 96t55 152l111 481h248l-230 -999h-241l22 109q-131 -132 -311 -132z" /> + <glyph glyph-name="Uhungarumlaut" unicode="Ű" horiz-adv-x="1380" +d="M614 1495l301 330h223l-342 -330h-182zM962 1495l301 330h264l-383 -330h-182zM584 -20q-142 0 -239.5 42t-145 118.5t-58 183.5t22.5 237l196 852h254l-194 -844q-26 -114 -22 -190.5t56 -115t160 -38.5q86 0 151 24.5t109.5 73.5t73.5 113.5t49 153.5l191 823h254 +l-199 -862q-132 -571 -659 -571z" /> + <glyph glyph-name="uhungarumlaut" unicode="ű" +d="M407 1083l301 330h223l-342 -330h-182zM755 1083l301 330h264l-383 -330h-182zM377 -23q-78 0 -136.5 25.5t-92.5 68.5t-51 100.5t-16.5 120.5t15.5 130l133 577h248l-135 -585q-14 -62 -13 -107.5t33.5 -71.5t100.5 -26q49 0 93 14t88 47t79 96t55 152l111 481h248 +l-230 -999h-241l22 109q-131 -132 -311 -132z" /> + <glyph glyph-name="Uogonek" unicode="Ų" horiz-adv-x="1380" +d="M1188 1413h254l-199 -862q-97 -421 -412 -532q-176 -90 -203 -204q-9 -40 4 -52.5t41 -12.5q66 0 127 65l107 -102q-100 -113 -236 -113q-102 0 -155.5 64t-30.5 164q19 83 98 152q-141 0 -238.5 42t-145 118.5t-58 183.5t22.5 237l196 852h254l-194 -844 +q-26 -114 -22 -190.5t56 -115t160 -38.5q86 0 151 24.5t109.5 73.5t73.5 113.5t49 153.5z" /> + <glyph glyph-name="uogonek" unicode="ų" +d="M687 -301q66 0 127 65l107 -102q-100 -113 -236 -113q-102 0 -155.5 64t-30.5 164q10 45 37.5 85.5t63 68.5t58.5 43.5t44 25.5h-36l22 109q-131 -132 -311 -132q-78 0 -136.5 25.5t-92.5 68.5t-51 100.5t-16.5 120.5t15.5 130l133 577h248l-135 -585q-14 -62 -13 -107.5 +t33.5 -71.5t100.5 -26q49 0 93 14t88 47t79 96t55 152l111 481h248l-230 -999h-96l100 -4q-10 -3 -33 -12.5t-61 -31t-72.5 -47t-64 -63.5t-38.5 -78t4 -52.5t41 -12.5z" /> + <glyph glyph-name="Wcircumflex" unicode="Ŵ" horiz-adv-x="2003" +d="M915 1510l396 352l237 -352h-182l-94 145l-162 -145h-195zM336 0l-98 1413h260l59 -1040l537 958h196l90 -958l543 1040h268l-749 -1413h-246l-92 930l-522 -930h-246z" /> + <glyph glyph-name="wcircumflex" unicode="ŵ" horiz-adv-x="1466" +d="M553 1098l396 352l237 -352h-182l-94 145l-162 -145h-195zM203 -4l-76 1003h258l23 -626l333 626h211l41 -624l320 624h262l-539 -999h-221l-43 655l-350 -659h-219z" /> + <glyph glyph-name="Ycircumflex" unicode="Ŷ" horiz-adv-x="1395" +d="M612 1510l396 352l237 -352h-182l-94 145l-162 -145h-195zM457 0l129 551l-377 862h295l254 -635l551 635h303l-772 -862l-129 -551h-254z" /> + <glyph glyph-name="ycircumflex" unicode="ŷ" horiz-adv-x="1032" +d="M334 1098l396 352l237 -352h-182l-94 145l-162 -145h-195zM-16 -430l292 457l-165 972h264l90 -694l418 694h272l-901 -1429h-270z" /> + <glyph glyph-name="Ydieresis" unicode="Ÿ" horiz-adv-x="1395" +d="M673 1600l51 225h205l-51 -225h-205zM1027 1600l52 225h204l-51 -225h-205zM457 0l129 551l-377 862h295l254 -635l551 635h303l-772 -862l-129 -551h-254z" /> + <glyph glyph-name="Zacute" unicode="Ź" horiz-adv-x="1272" +d="M748 1536l293 289h264l-373 -289h-184zM-55 0l37 176l1019 1004h-739l53 233h1094l-41 -184l-1014 -1000h783l-54 -229h-1138z" /> + <glyph glyph-name="zacute" unicode="ź" horiz-adv-x="1004" +d="M1073 1413l-373 -289h-184l293 289h264zM150 795l47 204h852l-37 -174l-684 -620h538l-47 -205h-880l34 162l708 633h-531z" /> + <glyph glyph-name="Zdotaccent" unicode="Ż" horiz-adv-x="1272" +d="M756 1600l51 225h256l-51 -225h-256zM-55 0l37 176l1019 1004h-739l53 233h1094l-41 -184l-1014 -1000h783l-54 -229h-1138z" /> + <glyph glyph-name="zdotaccent" unicode="ż" horiz-adv-x="1004" +d="M831 1413l-51 -225h-256l51 225h256zM1049 999l-37 -174l-684 -620h538l-47 -205h-880l34 162l708 633h-531l47 204h852z" /> + <glyph glyph-name="Zcaron" unicode="Ž" horiz-adv-x="1272" +d="M863 1491l-242 332h185l92 -135l164 135h192zM-55 0l37 176l1019 1004h-739l53 233h1094l-41 -184l-1014 -1000h783l-54 -229h-1138z" /> + <glyph glyph-name="zcaron" unicode="ž" horiz-adv-x="1004" +d="M1022 1411l-391 -332l-242 332h185l92 -135l164 135h192zM1049 999l-37 -174l-684 -620h538l-47 -205h-880l34 162l708 633h-531l47 204h852z" /> + <glyph glyph-name="florin" unicode="ƒ" horiz-adv-x="1028" +d="M-152 -457l35 205q192 0 283 64t129 229l174 756h-178l47 202h178l33 136q32 138 135 225.5t225 87.5q71 0 122.5 -27.5t109.5 -85.5l-158 -141q-30 31 -48 40t-48 9q-44 0 -84.5 -33.5t-54.5 -95.5l-27 -115h305l-47 -202h-305l-178 -777q-54 -235 -217.5 -356 +t-430.5 -121z" /> + <glyph glyph-name="uni01C3" unicode="ǃ" horiz-adv-x="520" +d="M152 428l202 1006h242l-260 -1006h-184zM12 0l60 264h266l-59 -264h-267z" /> + <glyph glyph-name="uni01C4" unicode="DŽ" horiz-adv-x="2661" +d="M2252 1491l-242 332h185l92 -135l164 135h192zM68 0l325 1413h404q359 0 506 -192t65 -547q-75 -323 -304 -498.5t-583 -175.5h-413zM1334 0l37 176l1019 1004h-739l53 233h1094l-41 -184l-1014 -1000h783l-54 -229h-1138zM375 233h123q514 0 628 496q56 244 -29 347.5 +t-345 103.5h-158z" /> + <glyph glyph-name="uni01C5" unicode="Dž" horiz-adv-x="2419" +d="M797 1413q359 0 506 -192t65 -547q-75 -323 -304 -498.5t-583 -175.5h-413l325 1413h404zM2437 1411l-391 -332l-242 332h185l92 -135l164 135h192zM1126 729q56 244 -29 347.5t-345 103.5h-158l-219 -947h123q514 0 628 496zM2464 999l-37 -174l-684 -620h538l-47 -205 +h-880l34 162l708 633h-531l47 204h852z" /> + <glyph glyph-name="uni01C6" unicode="dž" horiz-adv-x="2175" +d="M987 1413h248l-326 -1413h-227l13 100q-119 -120 -306 -120q-84 0 -150 28.5t-106 78.5t-63 118.5t-21.5 148.5t19.5 168q23 100 71 189.5t115 158.5t156.5 109.5t187.5 40.5q86 0 157 -33t107 -96zM2193 1411l-391 -332l-242 332h185l92 -135l164 135h192zM2220 999 +l-37 -174l-684 -620h538l-47 -205h-880l34 162l708 633h-531l47 204h852zM801 522q17 80 10 141.5t-51.5 98.5t-122.5 37q-125 0 -212 -90.5t-118 -231.5q-29 -123 11 -197.5t155 -74.5q127 0 211.5 87t116.5 230z" /> + <glyph glyph-name="uni01C7" unicode="LJ" horiz-adv-x="2237" +d="M68 0l325 1413h254l-270 -1173h604l-55 -240h-858zM1499 -20q-107 0 -188.5 38.5t-127.5 103.5t-62.5 149.5t-2.5 179.5l250 8q-18 -113 19.5 -178.5t140.5 -65.5q135 0 202.5 75t102.5 226l154 664h-533l54 233h786l-211 -913q-27 -117 -73.5 -209t-116.5 -163 +t-170 -109.5t-224 -38.5z" /> + <glyph glyph-name="uni01C8" unicode="Lj" horiz-adv-x="1618" +d="M68 0l325 1413h254l-270 -1173h604l-55 -240h-858zM1378 1167l57 246h256l-57 -246h-256zM977 -438q-89 0 -174 37l96 202q42 -18 78 -18q39 0 67 28t39 76l256 1112h246l-256 -1114q-34 -145 -124 -234t-228 -89z" /> + <glyph glyph-name="uni01C9" unicode="lj" horiz-adv-x="1116" +d="M248 -20q-229 0 -176 229l278 1204h244l-268 -1157q-8 -34 6.5 -45.5t54.5 -11.5q12 0 70 8l-35 -209q-99 -18 -174 -18zM876 1167l57 246h256l-57 -246h-256zM475 -438q-89 0 -174 37l96 202q42 -18 78 -18q39 0 67 28t39 76l256 1112h246l-256 -1114 +q-34 -145 -124 -234t-228 -89z" /> + <glyph glyph-name="uni01CA" unicode="NJ" horiz-adv-x="2593" +d="M68 0l325 1413h250l365 -989l231 989h244l-326 -1413h-252l-362 991l-232 -991h-243zM1855 -20q-107 0 -188.5 38.5t-127.5 103.5t-62.5 149.5t-2.5 179.5l250 8q-18 -113 19.5 -178.5t140.5 -65.5q135 0 202.5 75t102.5 226l154 664h-533l54 233h786l-211 -913 +q-27 -117 -73.5 -209t-116.5 -163t-170 -109.5t-224 -38.5z" /> + <glyph glyph-name="uni01CB" unicode="Nj" horiz-adv-x="1997" +d="M68 0l325 1413h250l365 -989l231 989h244l-326 -1413h-252l-362 991l-232 -991h-243zM1757 1167l57 246h256l-57 -246h-256zM1356 -438q-89 0 -174 37l96 202q42 -18 78 -18q39 0 67 28t39 76l256 1112h246l-256 -1114q-34 -145 -124 -234t-228 -89z" /> + <glyph glyph-name="uni01CC" unicode="nj" horiz-adv-x="1710" +d="M1470 1167l57 246h256l-57 -246h-256zM31 0l229 999h248l-29 -108q131 125 309 125q78 0 137 -24.5t93 -65.5t51.5 -96t17 -115.5t-15.5 -124.5l-135 -590h-248l133 580q14 62 14.5 108t-27 73t-85.5 27q-104 0 -202 -78t-120 -173l-122 -537h-248zM1069 -438 +q-89 0 -174 37l96 202q42 -18 78 -18q39 0 67 28t39 76l256 1112h246l-256 -1114q-34 -145 -124 -234t-228 -89z" /> + <glyph glyph-name="uni01CD" unicode="Ǎ" horiz-adv-x="1343" +d="M906 1491l-242 332h185l92 -135l164 135h192zM-104 0l890 1413h191l237 -1413h-270l-39 307h-549l-180 -307h-280zM494 524h376l-67 516z" /> + <glyph glyph-name="uni01CE" unicode="ǎ" horiz-adv-x="1171" +d="M1114 1411l-391 -332l-242 332h185l92 -135l164 135h192zM891 999h248l-230 -999h-227l13 100q-119 -120 -306 -120q-84 0 -150 28.5t-106 78.5t-63 118.5t-21.5 148.5t19.5 168q23 100 71 189.5t115 158.5t156.5 109.5t187.5 40.5q86 0 157 -33t107 -96zM801 522 +q17 80 10 141.5t-51.5 98.5t-122.5 37q-125 0 -212 -90.5t-118 -231.5q-29 -123 11 -197.5t155 -74.5q127 0 211.5 87t116.5 230z" /> + <glyph glyph-name="uni01CF" unicode="Ǐ" horiz-adv-x="618" +d="M543 1491l-242 332h185l92 -135l164 135h192zM68 0l325 1413h254l-325 -1413h-254z" /> + <glyph glyph-name="uni01D0" unicode="ǐ" horiz-adv-x="516" +d="M396 1079l-242 332h185l92 -135l164 135h192zM31 0l229 999h225l-229 -999h-225z" /> + <glyph glyph-name="uni01D1" unicode="Ǒ" horiz-adv-x="1528" +d="M998 1491l-242 332h185l92 -135l164 135h192zM657 -20q-116 0 -209 28t-157 78.5t-106.5 119.5t-60.5 152.5t-15 177t26 193.5q33 143 102.5 268t172 224t246.5 156t311 57q116 0 209 -28t156.5 -78.5t106 -119.5t60.5 -153t15.5 -177.5t-25.5 -193.5 +q-33 -143 -102.5 -268t-172 -223.5t-246.5 -155.5t-311 -57zM682 205q113 0 207.5 42t160.5 116.5t111 166t70 199.5q18 79 21 147.5t-13 130.5t-51 106t-98 69.5t-150 25.5q-112 0 -206 -42t-160 -116t-111 -165.5t-70 -200.5q-18 -79 -21 -147.5t12.5 -130.5t51 -106 +t98 -69.5t148.5 -25.5z" /> + <glyph glyph-name="uni01D2" unicode="ǒ" horiz-adv-x="1128" +d="M701 1079l-242 332h185l92 -135l164 135h192zM457 -20q-93 0 -169.5 27.5t-127.5 77t-83.5 117t-36 147.5t14.5 169q32 135 119 247t217 179.5t277 67.5q154 0 258.5 -73.5t140.5 -195.5t2 -270q-49 -208 -219.5 -350.5t-392.5 -142.5zM479 190q135 0 224 92.5t122 235.5 +q15 57 11.5 108.5t-21.5 90t-61.5 61.5t-108.5 23q-135 0 -224 -92.5t-122 -235.5q-15 -57 -11.5 -108t21.5 -90t61.5 -62t108.5 -23z" /> + <glyph glyph-name="uni01D3" unicode="Ǔ" horiz-adv-x="1380" +d="M920 1491l-242 332h185l92 -135l164 135h192zM584 -20q-142 0 -239.5 42t-145 118.5t-58 183.5t22.5 237l196 852h254l-194 -844q-26 -114 -22 -190.5t56 -115t160 -38.5q86 0 151 24.5t109.5 73.5t73.5 113.5t49 153.5l191 823h254l-199 -862q-132 -571 -659 -571z" /> + <glyph glyph-name="uni01D4" unicode="ǔ" +d="M713 1079l-242 332h185l92 -135l164 135h192zM377 -23q-78 0 -136.5 25.5t-92.5 68.5t-51 100.5t-16.5 120.5t15.5 130l133 577h248l-135 -585q-14 -62 -13 -107.5t33.5 -71.5t100.5 -26q49 0 93 14t88 47t79 96t55 152l111 481h248l-230 -999h-241l22 109 +q-131 -132 -311 -132z" /> + <glyph glyph-name="uni01D5" unicode="Ǖ" horiz-adv-x="1380" +d="M747 1973l33 143h559l-33 -143h-559zM661 1600l51 225h205l-51 -225h-205zM1015 1600l52 225h204l-51 -225h-205zM584 -20q-142 0 -239.5 42t-145 118.5t-58 183.5t22.5 237l196 852h254l-194 -844q-26 -114 -22 -190.5t56 -115t160 -38.5q86 0 151 24.5t109.5 73.5 +t73.5 113.5t49 153.5l191 823h254l-199 -862q-132 -571 -659 -571z" /> + <glyph glyph-name="uni01D6" unicode="ǖ" +d="M540 1561l33 143h559l-33 -143h-559zM454 1188l51 225h205l-51 -225h-205zM808 1188l52 225h204l-51 -225h-205zM377 -23q-78 0 -136.5 25.5t-92.5 68.5t-51 100.5t-16.5 120.5t15.5 130l133 577h248l-135 -585q-14 -62 -13 -107.5t33.5 -71.5t100.5 -26q49 0 93 14 +t88 47t79 96t55 152l111 481h248l-230 -999h-241l22 109q-131 -132 -311 -132z" /> + <glyph glyph-name="uni01D7" unicode="Ǘ" horiz-adv-x="1380" +d="M901 1950l293 289h264l-373 -289h-184zM661 1600l51 225h205l-51 -225h-205zM1015 1600l52 225h204l-51 -225h-205zM584 -20q-142 0 -239.5 42t-145 118.5t-58 183.5t22.5 237l196 852h254l-194 -844q-26 -114 -22 -190.5t56 -115t160 -38.5q86 0 151 24.5t109.5 73.5 +t73.5 113.5t49 153.5l191 823h254l-199 -862q-132 -571 -659 -571z" /> + <glyph glyph-name="uni01D8" unicode="ǘ" +d="M694 1538l293 289h264l-373 -289h-184zM454 1188l51 225h205l-51 -225h-205zM808 1188l52 225h204l-51 -225h-205zM377 -23q-78 0 -136.5 25.5t-92.5 68.5t-51 100.5t-16.5 120.5t15.5 130l133 577h248l-135 -585q-14 -62 -13 -107.5t33.5 -71.5t100.5 -26q49 0 93 14 +t88 47t79 96t55 152l111 481h248l-230 -999h-241l22 109q-131 -132 -311 -132z" /> + <glyph glyph-name="uni01D9" unicode="Ǚ" horiz-adv-x="1380" +d="M1016 1905l-242 332h185l92 -135l164 135h192zM661 1600l51 225h205l-51 -225h-205zM1015 1600l52 225h204l-51 -225h-205zM584 -20q-142 0 -239.5 42t-145 118.5t-58 183.5t22.5 237l196 852h254l-194 -844q-26 -114 -22 -190.5t56 -115t160 -38.5q86 0 151 24.5 +t109.5 73.5t73.5 113.5t49 153.5l191 823h254l-199 -862q-132 -571 -659 -571z" /> + <glyph glyph-name="uni01DA" unicode="ǚ" +d="M809 1493l-242 332h185l92 -135l164 135h192zM454 1188l51 225h205l-51 -225h-205zM808 1188l52 225h204l-51 -225h-205zM377 -23q-78 0 -136.5 25.5t-92.5 68.5t-51 100.5t-16.5 120.5t15.5 130l133 577h248l-135 -585q-14 -62 -13 -107.5t33.5 -71.5t100.5 -26 +q49 0 93 14t88 47t79 96t55 152l111 481h248l-230 -999h-241l22 109q-131 -132 -311 -132z" /> + <glyph glyph-name="uni01DB" unicode="Ǜ" horiz-adv-x="1380" +d="M954 1930l-236 309h236l153 -309h-153zM661 1600l51 225h205l-51 -225h-205zM1015 1600l52 225h204l-51 -225h-205zM584 -20q-142 0 -239.5 42t-145 118.5t-58 183.5t22.5 237l196 852h254l-194 -844q-26 -114 -22 -190.5t56 -115t160 -38.5q86 0 151 24.5t109.5 73.5 +t73.5 113.5t49 153.5l191 823h254l-199 -862q-132 -571 -659 -571z" /> + <glyph glyph-name="uni01DC" unicode="ǜ" +d="M747 1518l-236 309h236l153 -309h-153zM454 1188l51 225h205l-51 -225h-205zM808 1188l52 225h204l-51 -225h-205zM377 -23q-78 0 -136.5 25.5t-92.5 68.5t-51 100.5t-16.5 120.5t15.5 130l133 577h248l-135 -585q-14 -62 -13 -107.5t33.5 -71.5t100.5 -26q49 0 93 14 +t88 47t79 96t55 152l111 481h248l-230 -999h-241l22 109q-131 -132 -311 -132z" /> + <glyph glyph-name="uni01DD" unicode="ǝ" horiz-adv-x="1057" +d="M418 -12q-108 0 -186 30.5t-120 81t-61 121t-16 145.5t22 160l21 64h690q19 194 -184 194q-87 0 -151 -22.5t-128 -77.5l-141 164q104 89 211.5 126.5t232.5 37.5q100 0 178 -28t125.5 -77.5t76 -116.5t28.5 -144.5t-17 -162.5q-22 -96 -71 -183t-121 -157.5t-173 -112.5 +t-216 -42zM438 193q101 0 174 61.5t113 159.5l-459 -21q-12 -103 28.5 -151.5t143.5 -48.5z" /> + <glyph glyph-name="uni01E3" unicode="ǣ" horiz-adv-x="1694" +d="M719 1147l33 143h559l-33 -143h-559zM326 -20q-172 0 -257 93.5t-51 241.5q64 281 459 281h279q26 114 -10.5 163.5t-131.5 49.5q-162 0 -290 -137l-148 143q189 201 445 201q231 0 309 -164q84 83 171.5 121.5t201.5 38.5q64 0 116 -12.5t88 -31.5t62.5 -52t41.5 -62.5 +t23 -74.5t10.5 -77t-1 -81.5t-6.5 -76t-9 -71.5q-3 -19 -22 -53h-691q-7 -110 41 -157.5t154 -47.5q155 0 268 100l144 -163q-194 -164 -437 -164q-250 0 -325 164q-88 -80 -202 -126t-232 -46zM961 596h460q10 105 -29.5 158t-138.5 53q-199 0 -292 -211zM356 180 +q123 0 222.5 75.5t136.5 164.5h-252q-88 0 -151.5 -45.5t-73.5 -102.5q-9 -46 24 -69t94 -23z" /> + <glyph glyph-name="uni01EB" unicode="ǫ" horiz-adv-x="1128" +d="M668 1012q154 0 258.5 -73.5t140.5 -195.5t2 -270q-40 -172 -168 -303.5t-303 -173.5h10q-10 -3 -33 -12.5t-61 -31t-72.5 -47t-64 -63.5t-38.5 -78t4 -52.5t41 -12.5q66 0 127 65l107 -102q-100 -113 -236 -113q-102 0 -155.5 64t-30.5 164q28 122 177 209 +q-192 30 -278 179t-40 353q32 135 119 247t217 179.5t277 67.5zM825 518q15 57 11.5 108.5t-21.5 90t-61.5 61.5t-108.5 23q-135 0 -224 -92.5t-122 -235.5q-15 -57 -11.5 -108t21.5 -90t61.5 -62t108.5 -23q135 0 224 92.5t122 235.5z" /> + <glyph glyph-name="uni01F1" unicode="DZ" horiz-adv-x="2661" +d="M68 0l325 1413h404q359 0 506 -192t65 -547q-75 -323 -304 -498.5t-583 -175.5h-413zM1334 0l37 176l1019 1004h-739l53 233h1094l-41 -184l-1014 -1000h783l-54 -229h-1138zM375 233h123q514 0 628 496q56 244 -29 347.5t-345 103.5h-158z" /> + <glyph glyph-name="uni01F2" unicode="Dz" horiz-adv-x="2419" +d="M797 1413q359 0 506 -192t65 -547q-75 -323 -304 -498.5t-583 -175.5h-413l325 1413h404zM1126 729q56 244 -29 347.5t-345 103.5h-158l-219 -947h123q514 0 628 496zM2464 999l-37 -174l-684 -620h538l-47 -205h-880l34 162l708 633h-531l47 204h852z" /> + <glyph glyph-name="uni01F3" unicode="dz" horiz-adv-x="2175" +d="M987 1413h248l-326 -1413h-227l13 100q-119 -120 -306 -120q-84 0 -150 28.5t-106 78.5t-63 118.5t-21.5 148.5t19.5 168q23 100 71 189.5t115 158.5t156.5 109.5t187.5 40.5q86 0 157 -33t107 -96zM2220 999l-37 -174l-684 -620h538l-47 -205h-880l34 162l708 633h-531 +l47 204h852zM801 522q17 80 10 141.5t-51.5 98.5t-122.5 37q-125 0 -212 -90.5t-118 -231.5q-29 -123 11 -197.5t155 -74.5q127 0 211.5 87t116.5 230z" /> + <glyph glyph-name="Scommaaccent" unicode="Ș" horiz-adv-x="1137" +d="M522 -16q-102 0 -191.5 28t-158 80t-108 134t-39.5 184l260 43q0 -115 73 -174.5t193 -59.5q115 0 184.5 54t69.5 149q0 47 -18.5 86.5t-50.5 67.5t-73 52.5t-86 47t-90.5 46.5t-86.5 54t-73 66.5t-50.5 88t-18.5 113.5q0 174 132.5 282t332.5 108q158 0 279 -68.5 +t161 -189.5l-219 -105q-19 67 -82 107.5t-141 40.5q-83 0 -143 -44.5t-60 -117.5q0 -48 30 -88.5t78.5 -70.5t107 -60.5t116.5 -67t106.5 -80.5t78.5 -110t30 -148q0 -132 -74 -235t-197 -158t-272 -55zM101 -459l217 353h258l-330 -353h-145z" /> + <glyph glyph-name="scommaaccent" unicode="ș" horiz-adv-x="907" +d="M373 -20q-166 0 -273 86t-118 204l204 66q10 -63 56 -108.5t133 -45.5q84 0 135 43t51 97q0 33 -23 55.5t-59.5 36.5t-81 26.5t-89 30t-81 43t-59.5 70.5t-23 106q0 146 115 235t285 89q134 0 235 -58t135 -163l-202 -82q-16 54 -61 85t-115 31q-68 0 -110 -29t-42 -73 +q0 -31 23 -54t60 -37.5t81.5 -28.5t89 -34t81.5 -47.5t60 -74.5t23 -109q0 -154 -124.5 -257t-305.5 -103zM33 -459l217 353h258l-330 -353h-145z" /> + <glyph glyph-name="uni021A" unicode="Ț" horiz-adv-x="1180" +d="M348 0l273 1186h-443l53 227h1139l-53 -227h-443l-272 -1186h-254zM125 -459l217 353h258l-330 -353h-145z" /> + <glyph glyph-name="uni021B" unicode="ț" horiz-adv-x="760" +d="M395 -20q-151 0 -219.5 83.5t-36.5 223.5l117 508h-162l47 204h166l55 248l271 174l-96 -422h260l-47 -204h-261l-112 -486q-16 -66 7.5 -90t74.5 -24q73 0 155 41l-41 -230q-71 -26 -178 -26zM31 -459l217 353h258l-330 -353h-145z" /> + <glyph glyph-name="uni0237" unicode="ȷ" horiz-adv-x="530" +d="M-115 -438q-80 0 -166 37l88 194q46 -12 97 -12q80 0 104 106l256 1112h234l-260 -1124q-32 -142 -122.5 -227.5t-230.5 -85.5z" /> + <glyph glyph-name="uni0250" unicode="ɐ" horiz-adv-x="1096" +d="M471 -20q-205 0 -298.5 116.5t-49.5 302.5l137 596h189l-7 -135q81 89 163.5 122.5t185.5 33.5q74 0 136.5 -24t104.5 -68.5t59 -108t-1 -141.5q-19 -79 -62.5 -134t-108 -85t-136 -43t-160.5 -13l-271 -10q-22 -98 13 -147t137 -49q74 0 149 44.5t119 102.5l158 -154 +q-101 -105 -211.5 -155.5t-245.5 -50.5zM393 565l242 10q80 0 140 42.5t75 101.5q9 40 -26 65t-101 25q-107 0 -206 -74.5t-124 -169.5z" /> + <glyph glyph-name="uni0254" unicode="ɔ" horiz-adv-x="999" +d="M358 -20q-150 0 -249 82t-125 219l243 69q3 -70 44.5 -105.5t113.5 -35.5q123 0 205.5 89.5t111.5 221.5q15 52 12.5 100t-18 85t-54 59t-97.5 22q-78 0 -145 -44.5t-105 -116.5l-201 104q81 138 205.5 212.5t269.5 74.5q97 0 172.5 -29.5t120 -81t71 -120.5t25.5 -147.5 +t-18 -162.5q-22 -96 -71 -183t-120.5 -157.5t-173 -112.5t-217.5 -42z" /> + <glyph glyph-name="uni0258" unicode="ɘ" horiz-adv-x="1057" +d="M399 -12q-131 0 -224.5 43.5t-160.5 136.5l191 131q38 -52 88 -68t135 -16q110 0 188 59t113 156h-684q0 37 10 88q18 78 47 146t77 133.5t109 112t148 74.5t191 28q81 0 147.5 -21t111.5 -58.5t75 -88t42.5 -111.5t11 -127t-17.5 -135q-23 -97 -73.5 -183t-124.5 -153.5 +t-178 -107t-222 -39.5zM311 586l461 20q10 201 -166 201q-110 0 -184.5 -58t-110.5 -163z" /> + <glyph glyph-name="uni0259" unicode="ə" horiz-adv-x="1057" +d="M418 -12q-108 0 -186 30.5t-120 81t-61 121t-16 145.5t22 160l21 64h690q19 194 -184 194q-87 0 -151 -22.5t-128 -77.5l-141 164q104 89 211.5 126.5t232.5 37.5q100 0 178 -28t125.5 -77.5t76 -116.5t28.5 -144.5t-17 -162.5q-22 -96 -71 -183t-121 -157.5t-173 -112.5 +t-216 -42zM438 193q101 0 174 61.5t113 159.5l-459 -21q-12 -103 28.5 -151.5t143.5 -48.5z" /> + <glyph glyph-name="uni0261" unicode="ɡ" +d="M901 -10q-46 -204 -191 -316t-362 -112q-292 0 -403 223l207 117q18 -56 74.5 -91.5t148.5 -35.5q110 0 185 60t102 175l26 103q-116 -113 -297 -113q-84 0 -150 28.5t-106 78t-63 117t-21.5 145.5t19.5 163q22 96 69 183.5t113.5 155.5t156 108.5t187.5 40.5 +q86 0 157 -33t107 -96l29 108h246zM477 225q125 0 209 85.5t117 221.5q27 118 -13 192.5t-155 74.5q-125 0 -212 -89t-116 -223q-28 -116 13 -189t157 -73z" /> + <glyph glyph-name="circumflex" unicode="ˆ" horiz-adv-x="653" +d="M145 1098l396 352l237 -352h-182l-94 145l-162 -145h-195z" /> + <glyph glyph-name="caron" unicode="ˇ" horiz-adv-x="659" +d="M469 1079l-242 332h185l92 -135l164 135h192z" /> + <glyph glyph-name="uni02D0" unicode="ː" horiz-adv-x="561" +d="M281 522l-252 477h503zM29 0l252 477l251 -477h-503z" /> + <glyph glyph-name="uni02D1" unicode="ˑ" horiz-adv-x="561" +d="M281 211l-252 479h503z" /> + <glyph glyph-name="breve" unicode="˘" horiz-adv-x="811" +d="M567 1143q-164 0 -229 71.5t-35 198.5h168q-26 -127 102 -127q68 0 121.5 36t67.5 91h168q-32 -142 -120 -206t-243 -64z" /> + <glyph glyph-name="dotaccent" unicode="˙" horiz-adv-x="516" +d="M291 1188l51 225h256l-51 -225h-256z" /> + <glyph glyph-name="ring" unicode="˚" horiz-adv-x="633" +d="M463 1069q-103 0 -158 76.5t-29 177.5q22 87 97.5 147t165.5 60q102 0 158 -76t30 -176q-23 -89 -99 -149t-165 -60zM481 1200q54 0 87.5 39.5t33.5 87.5q0 37 -22 57.5t-60 20.5q-55 0 -87 -37.5t-32 -87.5q0 -39 21.5 -59.5t58.5 -20.5z" /> + <glyph glyph-name="ogonek" unicode="˛" horiz-adv-x="573" +d="M153 -451q-102 0 -155.5 64t-30.5 164q10 42 35 80.5t54.5 64t57 45t46.5 28.5l18 9l201 -8q-10 -3 -33 -12.5t-61 -31t-72.5 -47t-64 -63.5t-38.5 -78t4 -52.5t41 -12.5q66 0 127 65l107 -102q-100 -113 -236 -113z" /> + <glyph glyph-name="tilde" unicode="˜" horiz-adv-x="1004" +d="M813 1126q-46 0 -77.5 15t-47 36t-27 42t-24.5 36t-31 15q-35 0 -66 -39t-46 -98h-154q30 142 98 214t164 72q50 0 84.5 -22t48.5 -48.5t31 -48.5t37 -22q32 0 62.5 38t45.5 97h162q-32 -143 -99 -215t-161 -72z" /> + <glyph glyph-name="hungarumlaut" unicode="˝" horiz-adv-x="883" +d="M168 1083l301 330h223l-342 -330h-182zM516 1083l301 330h264l-383 -330h-182z" /> + <glyph glyph-name="uni02F5" unicode="˵" horiz-adv-x="1049" +d="M395 670l-307 329h260l225 -329h-178zM764 670l-307 329h260l225 -329h-178z" /> + <glyph glyph-name="uni02F6" unicode="˶" horiz-adv-x="1049" +d="M106 670l226 329h260l-307 -329h-179zM475 670l225 329h261l-308 -329h-178z" /> + <glyph glyph-name="gravecomb" unicode="̀" horiz-adv-x="0" +d="M-49 1104l-236 309h236l153 -309h-153z" /> + <glyph glyph-name="acutecomb" unicode="́" horiz-adv-x="0" +d="M-363 1124l293 289h264l-373 -289h-184z" /> + <glyph glyph-name="uni0302" unicode="̂" horiz-adv-x="0" +d="M-508 1098l396 352l237 -352h-182l-94 145l-162 -145h-195z" /> + <glyph glyph-name="tildecomb" unicode="̃" horiz-adv-x="0" +d="M-113 1126q-46 0 -77.5 15t-47 36t-27 42t-24.5 36t-31 15q-35 0 -66 -39t-46 -98h-154q30 142 98 214t164 72q50 0 84.5 -22t48.5 -48.5t31 -48.5t37 -22q32 0 62.5 38t45.5 97h162q-32 -143 -99 -215t-161 -72z" /> + <glyph glyph-name="uni0304" unicode="̄" horiz-adv-x="0" +d="M-549 1147l33 143h559l-33 -143h-559z" /> + <glyph glyph-name="uni0306" unicode="̆" horiz-adv-x="0" +d="M-244 1143q-164 0 -229 71.5t-35 198.5h168q-26 -127 102 -127q68 0 121.5 36t67.5 91h168q-32 -142 -120 -206t-243 -64z" /> + <glyph glyph-name="uni0307" unicode="̇" horiz-adv-x="0" +d="M-225 1188l51 225h256l-51 -225h-256z" /> + <glyph glyph-name="uni0308" unicode="̈" horiz-adv-x="0" +d="M-541 1188l51 225h205l-51 -225h-205zM-187 1188l52 225h204l-51 -225h-205z" /> + <glyph glyph-name="uni030A" unicode="̊" horiz-adv-x="0" +d="M-170 1069q-103 0 -158 76.5t-29 177.5q22 87 97.5 147t165.5 60q102 0 158 -76t30 -176q-23 -89 -99 -149t-165 -60zM-152 1200q54 0 87.5 39.5t33.5 87.5q0 37 -22 57.5t-60 20.5q-55 0 -87 -37.5t-32 -87.5q0 -39 21.5 -59.5t58.5 -20.5z" /> + <glyph glyph-name="uni030B" unicode="̋" horiz-adv-x="0" +d="M-715 1083l301 330h223l-342 -330h-182zM-367 1083l301 330h264l-383 -330h-182z" /> + <glyph glyph-name="uni030C" unicode="̌" horiz-adv-x="0" +d="M-190 1079l-242 332h185l92 -135l164 135h192z" /> + <glyph glyph-name="uni030F" unicode="̏" horiz-adv-x="0" +d="M-444 1083l-232 330h256l150 -330h-174zM-76 1083l-231 330h256l149 -330h-174z" /> + <glyph glyph-name="uni0312" unicode="̒" horiz-adv-x="0" +d="M145 1434l-217 -315h-258l330 315h145z" /> + <glyph glyph-name="uni031B" unicode="̛" horiz-adv-x="0" +d="M-306 999l232 414h258l-342 -414h-148z" /> + <glyph glyph-name="uni0326" unicode="̦" horiz-adv-x="0" +d="M-641 -459l217 353h258l-330 -353h-145z" /> + <glyph glyph-name="uni0327" unicode="̧" horiz-adv-x="0" +d="M-526 -522q-66 0 -115 40t-62 99l142 37q5 -37 47 -37q41 0 73.5 28.5t43.5 71.5q9 39 -28 63.5t-108 24.5h-77l159 193h150l-109 -100q90 -13 129 -71t19 -146q-20 -87 -95.5 -145t-168.5 -58z" /> + <glyph glyph-name="uni0328" unicode="̨" horiz-adv-x="0" +d="M-469 -451q-102 0 -155.5 64t-30.5 164q10 42 35 80.5t54.5 64t57 45t46.5 28.5l18 9l201 -8q-10 -3 -33 -12.5t-61 -31t-72.5 -47t-64 -63.5t-38.5 -78t4 -52.5t41 -12.5q66 0 127 65l107 -102q-100 -113 -236 -113z" /> + <glyph glyph-name="pi" unicode="π" horiz-adv-x="1004" +d="M727 -20q-113 0 -162.5 74.5t-21.5 193.5l125 547h-228l-182 -795h-205l183 795h-82l47 204h800l-47 -204h-82l-122 -535q-11 -44 -11 -67.5t4.5 -28t14.5 -4.5q20 0 53 22l37 -174q-50 -28 -121 -28z" /> + <glyph glyph-name="uni0483" unicode="҃" horiz-adv-x="0" +d="M-727 1577l82 354h604l28 125h250l-82 -356h-610l-29 -123h-243z" /> + <glyph glyph-name="Wgrave" unicode="Ẁ" horiz-adv-x="2003" +d="M1173 1516l-236 309h236l153 -309h-153zM336 0l-98 1413h260l59 -1040l537 958h196l90 -958l543 1040h268l-749 -1413h-246l-92 930l-522 -930h-246z" /> + <glyph glyph-name="wgrave" unicode="ẁ" horiz-adv-x="1466" +d="M811 1104l-236 309h236l153 -309h-153zM203 -4l-76 1003h258l23 -626l333 626h211l41 -624l320 624h262l-539 -999h-221l-43 655l-350 -659h-219z" /> + <glyph glyph-name="Wacute" unicode="Ẃ" horiz-adv-x="2003" +d="M1120 1536l293 289h264l-373 -289h-184zM336 0l-98 1413h260l59 -1040l537 958h196l90 -958l543 1040h268l-749 -1413h-246l-92 930l-522 -930h-246z" /> + <glyph glyph-name="wacute" unicode="ẃ" horiz-adv-x="1466" +d="M758 1124l293 289h264l-373 -289h-184zM203 -4l-76 1003h258l23 -626l333 626h211l41 -624l320 624h262l-539 -999h-221l-43 655l-350 -659h-219z" /> + <glyph glyph-name="Wdieresis" unicode="Ẅ" horiz-adv-x="2003" +d="M976 1600l51 225h205l-51 -225h-205zM1330 1600l52 225h204l-51 -225h-205zM336 0l-98 1413h260l59 -1040l537 958h196l90 -958l543 1040h268l-749 -1413h-246l-92 930l-522 -930h-246z" /> + <glyph glyph-name="wdieresis" unicode="ẅ" horiz-adv-x="1466" +d="M614 1188l51 225h205l-51 -225h-205zM968 1188l52 225h204l-51 -225h-205zM203 -4l-76 1003h258l23 -626l333 626h211l41 -624l320 624h262l-539 -999h-221l-43 655l-350 -659h-219z" /> + <glyph glyph-name="uni1EA4" unicode="Ấ" horiz-adv-x="1343" +d="M888 1948l293 289h264l-373 -289h-184zM586 1510l396 352l237 -352h-182l-94 145l-162 -145h-195zM-104 0l890 1413h191l237 -1413h-270l-39 307h-549l-180 -307h-280zM494 524h376l-67 516z" /> + <glyph glyph-name="uni1EA5" unicode="ấ" horiz-adv-x="1171" +d="M1262 1825l-373 -289h-184l293 289h264zM760 1243l-162 -145h-195l396 352l237 -352h-182zM862 891l29 108h248l-230 -999h-227l13 100q-119 -120 -306 -120q-84 0 -150 28.5t-106 78.5t-63 118.5t-21.5 148.5t19.5 168q23 100 71 189.5t115 158.5t156.5 109.5 +t187.5 40.5q86 0 157 -33t107 -96zM801 522q17 80 10 141.5t-51.5 98.5t-122.5 37q-125 0 -212 -90.5t-118 -231.5q-29 -123 11 -197.5t155 -74.5q127 0 211.5 87t116.5 230z" /> + <glyph glyph-name="uni1EA6" unicode="Ầ" horiz-adv-x="1343" +d="M941 1928l-236 309h236l153 -309h-153zM586 1510l396 352l237 -352h-182l-94 145l-162 -145h-195zM-104 0l890 1413h191l237 -1413h-270l-39 307h-549l-180 -307h-280zM494 524h376l-67 516z" /> + <glyph glyph-name="uni1EA7" unicode="ầ" horiz-adv-x="1171" +d="M911 1516h-153l-236 309h236zM760 1243l-162 -145h-195l396 352l237 -352h-182zM891 999h248l-230 -999h-227l13 100q-119 -120 -306 -120q-84 0 -150 28.5t-106 78.5t-63 118.5t-21.5 148.5t19.5 168q23 100 71 189.5t115 158.5t156.5 109.5t187.5 40.5q86 0 157 -33 +t107 -96zM801 522q17 80 10 141.5t-51.5 98.5t-122.5 37q-125 0 -212 -90.5t-118 -231.5q-29 -123 11 -197.5t155 -74.5q127 0 211.5 87t116.5 230z" /> + <glyph glyph-name="uni1EAA" unicode="Ẫ" horiz-adv-x="1343" +d="M1144 1929q-46 0 -77.5 15t-47 36t-27 42t-24.5 36t-31 15q-35 0 -66 -39t-46 -98h-154q30 142 98 214t164 72q50 0 84.5 -22t48.5 -48.5t31 -48.5t37 -22q32 0 62.5 38t45.5 97h162q-32 -143 -99 -215t-161 -72zM586 1510l396 352l237 -352h-182l-94 145l-162 -145h-195 +zM-104 0l890 1413h191l237 -1413h-270l-39 307h-549l-180 -307h-280zM494 524h376l-67 516z" /> + <glyph glyph-name="uni1EAB" unicode="ẫ" horiz-adv-x="1171" +d="M754 1661q-35 0 -66 -39t-46 -98h-154q30 142 98 214t164 72q50 0 84.5 -22t48.5 -48.5t31 -48.5t37 -22q32 0 62.5 38t45.5 97h162q-32 -143 -99 -215t-161 -72q-46 0 -77.5 15t-47 36t-27 42t-24.5 36t-31 15zM760 1243l-162 -145h-195l396 352l237 -352h-182zM862 891 +l29 108h248l-230 -999h-227l13 100q-119 -120 -306 -120q-84 0 -150 28.5t-106 78.5t-63 118.5t-21.5 148.5t19.5 168q23 100 71 189.5t115 158.5t156.5 109.5t187.5 40.5q86 0 157 -33t107 -96zM801 522q17 80 10 141.5t-51.5 98.5t-122.5 37q-125 0 -212 -90.5 +t-118 -231.5q-29 -123 11 -197.5t155 -74.5q127 0 211.5 87t116.5 230z" /> + <glyph glyph-name="uni1EAE" unicode="Ắ" horiz-adv-x="1343" +d="M887 1950l293 289h264l-373 -289h-184zM930 1555q-164 0 -229 71.5t-35 198.5h168q-26 -127 102 -127q68 0 121.5 36t67.5 91h168q-32 -142 -120 -206t-243 -64zM-104 0l890 1413h191l237 -1413h-270l-39 307h-549l-180 -307h-280zM494 524h376l-67 516z" /> + <glyph glyph-name="uni1EAF" unicode="ắ" horiz-adv-x="1171" +d="M1261 1827l-373 -289h-184l293 289h264zM747 1143q-164 0 -229 71.5t-35 198.5h168q-26 -127 102 -127q68 0 121.5 36t67.5 91h168q-32 -142 -120 -206t-243 -64zM862 891l29 108h248l-230 -999h-227l13 100q-119 -120 -306 -120q-84 0 -150 28.5t-106 78.5t-63 118.5 +t-21.5 148.5t19.5 168q23 100 71 189.5t115 158.5t156.5 109.5t187.5 40.5q86 0 157 -33t107 -96zM801 522q17 80 10 141.5t-51.5 98.5t-122.5 37q-125 0 -212 -90.5t-118 -231.5q-29 -123 11 -197.5t155 -74.5q127 0 211.5 87t116.5 230z" /> + <glyph glyph-name="uni1EB0" unicode="Ằ" horiz-adv-x="1343" +d="M940 1930l-236 309h236l153 -309h-153zM930 1555q-164 0 -229 71.5t-35 198.5h168q-26 -127 102 -127q68 0 121.5 36t67.5 91h168q-32 -142 -120 -206t-243 -64zM-104 0l890 1413h191l237 -1413h-270l-39 307h-549l-180 -307h-280zM494 524h376l-67 516z" /> + <glyph glyph-name="uni1EB1" unicode="ằ" horiz-adv-x="1171" +d="M910 1518h-153l-236 309h236zM747 1143q-164 0 -229 71.5t-35 198.5h168q-26 -127 102 -127q68 0 121.5 36t67.5 91h168q-32 -142 -120 -206t-243 -64zM891 999h248l-230 -999h-227l13 100q-119 -120 -306 -120q-84 0 -150 28.5t-106 78.5t-63 118.5t-21.5 148.5 +t19.5 168q23 100 71 189.5t115 158.5t156.5 109.5t187.5 40.5q86 0 157 -33t107 -96zM801 522q17 80 10 141.5t-51.5 98.5t-122.5 37q-125 0 -212 -90.5t-118 -231.5q-29 -123 11 -197.5t155 -74.5q127 0 211.5 87t116.5 230z" /> + <glyph glyph-name="uni1EB4" unicode="Ẵ" horiz-adv-x="1343" +d="M1143 1931q-46 0 -77.5 15t-47 36t-27 42t-24.5 36t-31 15q-35 0 -66 -39t-46 -98h-154q30 142 98 214t164 72q50 0 84.5 -22t48.5 -48.5t31 -48.5t37 -22q32 0 62.5 38t45.5 97h162q-32 -143 -99 -215t-161 -72zM930 1555q-164 0 -229 71.5t-35 198.5h168 +q-26 -127 102 -127q68 0 121.5 36t67.5 91h168q-32 -142 -120 -206t-243 -64zM-104 0l890 1413h191l237 -1413h-270l-39 307h-549l-180 -307h-280zM494 524h376l-67 516z" /> + <glyph glyph-name="uni1EB5" unicode="ẵ" horiz-adv-x="1171" +d="M753 1663q-35 0 -66 -39t-46 -98h-154q30 142 98 214t164 72q50 0 84.5 -22t48.5 -48.5t31 -48.5t37 -22q32 0 62.5 38t45.5 97h162q-32 -143 -99 -215t-161 -72q-46 0 -77.5 15t-47 36t-27 42t-24.5 36t-31 15zM747 1143q-164 0 -229 71.5t-35 198.5h168 +q-26 -127 102 -127q68 0 121.5 36t67.5 91h168q-32 -142 -120 -206t-243 -64zM862 891l29 108h248l-230 -999h-227l13 100q-119 -120 -306 -120q-84 0 -150 28.5t-106 78.5t-63 118.5t-21.5 148.5t19.5 168q23 100 71 189.5t115 158.5t156.5 109.5t187.5 40.5q86 0 157 -33 +t107 -96zM801 522q17 80 10 141.5t-51.5 98.5t-122.5 37q-125 0 -212 -90.5t-118 -231.5q-29 -123 11 -197.5t155 -74.5q127 0 211.5 87t116.5 230z" /> + <glyph glyph-name="uni1EBC" unicode="Ẽ" horiz-adv-x="1245" +d="M995 1517q-46 0 -77.5 15t-47 36t-27 42t-24.5 36t-31 15q-35 0 -66 -39t-46 -98h-154q30 142 98 214t164 72q50 0 84.5 -22t48.5 -48.5t31 -48.5t37 -22q32 0 62.5 38t45.5 97h162q-32 -143 -99 -215t-161 -72zM68 0l325 1413h940l-53 -233h-686l-84 -357h639l-53 -233 +h-639l-80 -350h686l-55 -240h-940z" /> + <glyph glyph-name="uni1EBD" unicode="ẽ" horiz-adv-x="1067" +d="M805 1105q-46 0 -77.5 15t-47 36t-27 42t-24.5 36t-31 15q-35 0 -66 -39t-46 -98h-154q30 142 98 214t164 72q50 0 84.5 -22t48.5 -48.5t31 -48.5t37 -22q32 0 62.5 38t45.5 97h162q-32 -143 -99 -215t-161 -72zM451 -12q-84 0 -152 20t-115.5 55.5t-80 84.5t-47 108 +t-14 124.5t16.5 135.5q22 96 71.5 183.5t121.5 158t173 112.5t216 42q109 0 187.5 -31.5t120.5 -83t60.5 -122.5t15 -145.5t-23.5 -156.5q-10 -39 -20 -63h-690q-9 -94 36.5 -144.5t147.5 -50.5q87 0 151 23t128 77l141 -163q-104 -89 -211.5 -126.5t-232.5 -37.5zM334 586 +h459q12 117 -28 169t-144 52q-101 0 -174 -61.5t-113 -159.5z" /> + <glyph glyph-name="uni1EBE" unicode="Ế" horiz-adv-x="1245" +d="M836 1948l293 289h264l-373 -289h-184zM534 1510l396 352l237 -352h-182l-94 145l-162 -145h-195zM68 0l325 1413h940l-53 -233h-686l-84 -357h639l-53 -233h-639l-80 -350h686l-55 -240h-940z" /> + <glyph glyph-name="uni1EBF" unicode="ế" horiz-adv-x="1067" +d="M646 1536l293 289h264l-373 -289h-184zM344 1098l396 352l237 -352h-182l-94 145l-162 -145h-195zM451 -12q-84 0 -152 20t-115.5 55.5t-80 84.5t-47 108t-14 124.5t16.5 135.5q22 96 71.5 183.5t121.5 158t173 112.5t216 42q109 0 187.5 -31.5t120.5 -83t60.5 -122.5 +t15 -145.5t-23.5 -156.5q-10 -39 -20 -63h-690q-9 -94 36.5 -144.5t147.5 -50.5q87 0 151 23t128 77l141 -163q-104 -89 -211.5 -126.5t-232.5 -37.5zM334 586h459q12 117 -28 169t-144 52q-101 0 -174 -61.5t-113 -159.5z" /> + <glyph glyph-name="uni1EC0" unicode="Ề" horiz-adv-x="1245" +d="M889 1928l-236 309h236l153 -309h-153zM534 1510l396 352l237 -352h-182l-94 145l-162 -145h-195zM68 0l325 1413h940l-53 -233h-686l-84 -357h639l-53 -233h-639l-80 -350h686l-55 -240h-940z" /> + <glyph glyph-name="uni1EC1" unicode="ề" horiz-adv-x="1067" +d="M699 1516l-236 309h236l153 -309h-153zM344 1098l396 352l237 -352h-182l-94 145l-162 -145h-195zM451 -12q-84 0 -152 20t-115.5 55.5t-80 84.5t-47 108t-14 124.5t16.5 135.5q22 96 71.5 183.5t121.5 158t173 112.5t216 42q109 0 187.5 -31.5t120.5 -83t60.5 -122.5 +t15 -145.5t-23.5 -156.5q-10 -39 -20 -63h-690q-9 -94 36.5 -144.5t147.5 -50.5q87 0 151 23t128 77l141 -163q-104 -89 -211.5 -126.5t-232.5 -37.5zM334 586h459q12 117 -28 169t-144 52q-101 0 -174 -61.5t-113 -159.5z" /> + <glyph glyph-name="uni1EC4" unicode="Ễ" horiz-adv-x="1245" +d="M1092 1929q-46 0 -77.5 15t-47 36t-27 42t-24.5 36t-31 15q-35 0 -66 -39t-46 -98h-154q30 142 98 214t164 72q50 0 84.5 -22t48.5 -48.5t31 -48.5t37 -22q32 0 62.5 38t45.5 97h162q-32 -143 -99 -215t-161 -72zM534 1510l396 352l237 -352h-182l-94 145l-162 -145h-195 +zM68 0l325 1413h940l-53 -233h-686l-84 -357h639l-53 -233h-639l-80 -350h686l-55 -240h-940z" /> + <glyph glyph-name="uni1EC5" unicode="ễ" horiz-adv-x="1067" +d="M902 1517q-46 0 -77.5 15t-47 36t-27 42t-24.5 36t-31 15q-35 0 -66 -39t-46 -98h-154q30 142 98 214t164 72q50 0 84.5 -22t48.5 -48.5t31 -48.5t37 -22q32 0 62.5 38t45.5 97h162q-32 -143 -99 -215t-161 -72zM344 1098l396 352l237 -352h-182l-94 145l-162 -145h-195z +M451 -12q-84 0 -152 20t-115.5 55.5t-80 84.5t-47 108t-14 124.5t16.5 135.5q22 96 71.5 183.5t121.5 158t173 112.5t216 42q109 0 187.5 -31.5t120.5 -83t60.5 -122.5t15 -145.5t-23.5 -156.5q-10 -39 -20 -63h-690q-9 -94 36.5 -144.5t147.5 -50.5q87 0 151 23t128 77 +l141 -163q-104 -89 -211.5 -126.5t-232.5 -37.5zM334 586h459q12 117 -28 169t-144 52q-101 0 -174 -61.5t-113 -159.5z" /> + <glyph glyph-name="uni1ED0" unicode="Ố" horiz-adv-x="1528" +d="M980 1948l293 289h264l-373 -289h-184zM678 1510l396 352l237 -352h-182l-94 145l-162 -145h-195zM657 -20q-116 0 -209 28t-157 78.5t-106.5 119.5t-60.5 152.5t-15 177t26 193.5q33 143 102.5 268t172 224t246.5 156t311 57q116 0 209 -28t156.5 -78.5t106 -119.5 +t60.5 -153t15.5 -177.5t-25.5 -193.5q-33 -143 -102.5 -268t-172 -223.5t-246.5 -155.5t-311 -57zM682 205q113 0 207.5 42t160.5 116.5t111 166t70 199.5q18 79 21 147.5t-13 130.5t-51 106t-98 69.5t-150 25.5q-112 0 -206 -42t-160 -116t-111 -165.5t-70 -200.5 +q-18 -79 -21 -147.5t12.5 -130.5t51 -106t98 -69.5t148.5 -25.5z" /> + <glyph glyph-name="uni1ED1" unicode="ố" horiz-adv-x="1128" +d="M683 1536l293 289h264l-373 -289h-184zM381 1098l396 352l237 -352h-182l-94 145l-162 -145h-195zM457 -20q-93 0 -169.5 27.5t-127.5 77t-83.5 117t-36 147.5t14.5 169q32 135 119 247t217 179.5t277 67.5q154 0 258.5 -73.5t140.5 -195.5t2 -270 +q-49 -208 -219.5 -350.5t-392.5 -142.5zM479 190q135 0 224 92.5t122 235.5q15 57 11.5 108.5t-21.5 90t-61.5 61.5t-108.5 23q-135 0 -224 -92.5t-122 -235.5q-15 -57 -11.5 -108t21.5 -90t61.5 -62t108.5 -23z" /> + <glyph glyph-name="uni1ED2" unicode="Ồ" horiz-adv-x="1528" +d="M1033 1928l-236 309h236l153 -309h-153zM678 1510l396 352l237 -352h-182l-94 145l-162 -145h-195zM657 -20q-116 0 -209 28t-157 78.5t-106.5 119.5t-60.5 152.5t-15 177t26 193.5q33 143 102.5 268t172 224t246.5 156t311 57q116 0 209 -28t156.5 -78.5t106 -119.5 +t60.5 -153t15.5 -177.5t-25.5 -193.5q-33 -143 -102.5 -268t-172 -223.5t-246.5 -155.5t-311 -57zM682 205q113 0 207.5 42t160.5 116.5t111 166t70 199.5q18 79 21 147.5t-13 130.5t-51 106t-98 69.5t-150 25.5q-112 0 -206 -42t-160 -116t-111 -165.5t-70 -200.5 +q-18 -79 -21 -147.5t12.5 -130.5t51 -106t98 -69.5t148.5 -25.5z" /> + <glyph glyph-name="uni1ED3" unicode="ồ" horiz-adv-x="1128" +d="M736 1516l-236 309h236l153 -309h-153zM381 1098l396 352l237 -352h-182l-94 145l-162 -145h-195zM457 -20q-93 0 -169.5 27.5t-127.5 77t-83.5 117t-36 147.5t14.5 169q32 135 119 247t217 179.5t277 67.5q154 0 258.5 -73.5t140.5 -195.5t2 -270 +q-49 -208 -219.5 -350.5t-392.5 -142.5zM479 190q135 0 224 92.5t122 235.5q15 57 11.5 108.5t-21.5 90t-61.5 61.5t-108.5 23q-135 0 -224 -92.5t-122 -235.5q-15 -57 -11.5 -108t21.5 -90t61.5 -62t108.5 -23z" /> + <glyph glyph-name="uni1ED6" unicode="Ỗ" horiz-adv-x="1528" +d="M1236 1929q-46 0 -77.5 15t-47 36t-27 42t-24.5 36t-31 15q-35 0 -66 -39t-46 -98h-154q30 142 98 214t164 72q50 0 84.5 -22t48.5 -48.5t31 -48.5t37 -22q32 0 62.5 38t45.5 97h162q-32 -143 -99 -215t-161 -72zM678 1510l396 352l237 -352h-182l-94 145l-162 -145h-195 +zM657 -20q-116 0 -209 28t-157 78.5t-106.5 119.5t-60.5 152.5t-15 177t26 193.5q33 143 102.5 268t172 224t246.5 156t311 57q116 0 209 -28t156.5 -78.5t106 -119.5t60.5 -153t15.5 -177.5t-25.5 -193.5q-33 -143 -102.5 -268t-172 -223.5t-246.5 -155.5t-311 -57z +M682 205q113 0 207.5 42t160.5 116.5t111 166t70 199.5q18 79 21 147.5t-13 130.5t-51 106t-98 69.5t-150 25.5q-112 0 -206 -42t-160 -116t-111 -165.5t-70 -200.5q-18 -79 -21 -147.5t12.5 -130.5t51 -106t98 -69.5t148.5 -25.5z" /> + <glyph glyph-name="uni1ED7" unicode="ỗ" horiz-adv-x="1128" +d="M939 1517q-46 0 -77.5 15t-47 36t-27 42t-24.5 36t-31 15q-35 0 -66 -39t-46 -98h-154q30 142 98 214t164 72q50 0 84.5 -22t48.5 -48.5t31 -48.5t37 -22q32 0 62.5 38t45.5 97h162q-32 -143 -99 -215t-161 -72zM381 1098l396 352l237 -352h-182l-94 145l-162 -145h-195z +M457 -20q-93 0 -169.5 27.5t-127.5 77t-83.5 117t-36 147.5t14.5 169q32 135 119 247t217 179.5t277 67.5q154 0 258.5 -73.5t140.5 -195.5t2 -270q-49 -208 -219.5 -350.5t-392.5 -142.5zM479 190q135 0 224 92.5t122 235.5q15 57 11.5 108.5t-21.5 90t-61.5 61.5 +t-108.5 23q-135 0 -224 -92.5t-122 -235.5q-15 -57 -11.5 -108t21.5 -90t61.5 -62t108.5 -23z" /> + <glyph glyph-name="Ygrave" unicode="Ỳ" horiz-adv-x="1395" +d="M870 1516l-236 309h236l153 -309h-153zM457 0l129 551l-377 862h295l254 -635l551 635h303l-772 -862l-129 -551h-254z" /> + <glyph glyph-name="ygrave" unicode="ỳ" horiz-adv-x="1032" +d="M592 1104l-236 309h236l153 -309h-153zM-16 -430l292 457l-165 972h264l90 -694l418 694h272l-901 -1429h-270z" /> + <glyph glyph-name="uni1EF8" unicode="Ỹ" horiz-adv-x="1395" +d="M1073 1517q-46 0 -77.5 15t-47 36t-27 42t-24.5 36t-31 15q-35 0 -66 -39t-46 -98h-154q30 142 98 214t164 72q50 0 84.5 -22t48.5 -48.5t31 -48.5t37 -22q32 0 62.5 38t45.5 97h162q-32 -143 -99 -215t-161 -72zM457 0l129 551l-377 862h295l254 -635l551 635h303 +l-772 -862l-129 -551h-254z" /> + <glyph glyph-name="uni1EF9" unicode="ỹ" horiz-adv-x="1032" +d="M795 1105q-46 0 -77.5 15t-47 36t-27 42t-24.5 36t-31 15q-35 0 -66 -39t-46 -98h-154q30 142 98 214t164 72q50 0 84.5 -22t48.5 -48.5t31 -48.5t37 -22q32 0 62.5 38t45.5 97h162q-32 -143 -99 -215t-161 -72zM-16 -430l292 457l-165 972h264l90 -694l418 694h272 +l-901 -1429h-270z" /> + <glyph glyph-name="endash" unicode="–" horiz-adv-x="1051" +d="M143 508l43 184h768l-43 -184h-768z" /> + <glyph glyph-name="emdash" unicode="—" horiz-adv-x="1706" +d="M143 508l43 184h1424l-43 -184h-1424z" /> + <glyph glyph-name="uni2015" unicode="―" horiz-adv-x="1542" +d="M143 508l43 184h1260l-43 -184h-1260z" /> + <glyph glyph-name="quoteleft" unicode="‘" horiz-adv-x="573" +d="M391 856l-123 557h273l8 -557h-158z" /> + <glyph glyph-name="quoteright" unicode="’" horiz-adv-x="573" +d="M184 856l267 557h280l-381 -557h-166z" /> + <glyph glyph-name="quotesinglbase" unicode="‚" horiz-adv-x="553" +d="M-61 -225l245 489h258l-360 -489h-143z" /> + <glyph glyph-name="quotedblleft" unicode="“" horiz-adv-x="963" +d="M391 856l-123 557h273l8 -557h-158zM780 856l-123 557h273l8 -557h-158z" /> + <glyph glyph-name="quotedblright" unicode="”" horiz-adv-x="963" +d="M184 856l267 557h280l-381 -557h-166zM573 856l267 557h280l-381 -557h-166z" /> + <glyph glyph-name="quotedblbase" unicode="„" horiz-adv-x="897" +d="M-61 -225l245 489h258l-360 -489h-143zM287 -225l245 489h259l-361 -489h-143z" /> + <glyph glyph-name="dagger" unicode="†" horiz-adv-x="778" +d="M117 -205l233 1014h-221l51 221h221l88 383h222l-88 -383h221l-51 -221h-222l-233 -1014h-221z" /> + <glyph glyph-name="daggerdbl" unicode="‡" horiz-adv-x="893" +d="M174 -205l88 383h-221l51 221h221l95 410h-222l52 221h221l88 383h221l-88 -383h221l-51 -221h-221l-94 -410h221l-51 -221h-222l-88 -383h-221z" /> + <glyph glyph-name="bullet" unicode="•" horiz-adv-x="758" +d="M332 244q-103 0 -159 76t-32 184q22 89 102.5 152t172.5 63q104 0 159.5 -76t30.5 -184q-19 -89 -99.5 -152t-174.5 -63z" /> + <glyph glyph-name="uni2023" unicode="‣" horiz-adv-x="915" +d="M125 143l176 779l578 -390z" /> + <glyph glyph-name="twodotenleader" unicode="‥" horiz-adv-x="1061" +d="M86 0l59 264h246l-59 -264h-246zM500 0l59 264h246l-60 -264h-245z" /> + <glyph glyph-name="ellipsis" unicode="…" horiz-adv-x="1475" +d="M86 0l59 264h246l-59 -264h-246zM500 0l59 264h246l-60 -264h-245zM913 0l60 264h246l-60 -264h-246z" /> + <glyph glyph-name="perthousand" unicode="‰" horiz-adv-x="2179" +d="M139 -20l1131 1474h217l-1131 -1474h-217zM436 768q-66 0 -113 23.5t-71.5 60.5t-35 86t-9 95t11.5 91q12 50 36 99t63.5 99.5t101.5 82t137 31.5q59 0 103.5 -21.5t70.5 -57t39 -82.5t12.5 -97t-12.5 -101q-13 -55 -40.5 -107.5t-68.5 -98.5t-100 -74.5t-125 -28.5z +M444 940q50 0 94.5 54.5t61.5 129.5q14 59 -1 98.5t-56 39.5q-52 0 -95.5 -52t-62.5 -131q-13 -60 1.5 -99.5t57.5 -39.5zM1083 -10q-65 0 -112 24t-71 62t-35 87t-9 95.5t12 91.5q10 39 26 79t45.5 84t66 77.5t89.5 55.5t113 22q59 0 104 -21.5t70.5 -57.5t38 -83.5 +t11.5 -98t-13 -102.5q-13 -56 -41 -109.5t-69 -100.5t-100 -76t-126 -29zM1722 -10q-65 0 -112 24t-71 62t-35 87t-9 95.5t12 91.5q10 39 26 79t45.5 84t66 77.5t89.5 55.5t113 22q59 0 103.5 -21.5t70 -57.5t38.5 -83.5t12 -98t-13 -102.5q-13 -56 -41 -109.5t-69 -100.5 +t-100 -76t-126 -29zM1096 162q48 0 92 56t61 134q15 58 0 100t-55 42q-53 0 -97 -54t-63 -135q-14 -62 1 -102.5t61 -40.5zM1733 162q49 0 93.5 56t61.5 134q15 58 0 100t-55 42q-54 0 -97.5 -53.5t-62.5 -135.5q-14 -62 0.5 -102.5t59.5 -40.5z" /> + <glyph glyph-name="uni2031" unicode="‱" horiz-adv-x="2814" +d="M139 -20l1131 1474h217l-1131 -1474h-217zM436 768q-66 0 -113 23.5t-71.5 60.5t-35 86t-9 95t11.5 91q12 50 36 99t63.5 99.5t101.5 82t137 31.5q59 0 103.5 -21.5t70.5 -57t39 -82.5t12.5 -97t-12.5 -101q-13 -55 -40.5 -107.5t-68.5 -98.5t-100 -74.5t-125 -28.5z +M444 940q50 0 94.5 54.5t61.5 129.5q14 59 -1 98.5t-56 39.5q-52 0 -95.5 -52t-62.5 -131q-13 -60 1.5 -99.5t57.5 -39.5zM1083 -10q-65 0 -112 24t-71 62t-35 87t-9 95.5t12 91.5q10 39 26 79t45.5 84t66 77.5t89.5 55.5t113 22q59 0 104 -21.5t70.5 -57.5t38 -83.5 +t11.5 -98t-13 -102.5q-13 -56 -41 -109.5t-69 -100.5t-100 -76t-126 -29zM1722 -10q-65 0 -112 24t-71 62t-35 87t-9 95.5t12 91.5q10 39 26 79t45.5 84t66 77.5t89.5 55.5t113 22q59 0 103.5 -21.5t70 -57.5t38.5 -83.5t12 -98t-13 -102.5q-13 -56 -41 -109.5t-69 -100.5 +t-100 -76t-126 -29zM2357 -10q-55 0 -97 16.5t-67 45.5t-40.5 65t-20 77t-2 80t11.5 76q10 39 26 79t45.5 84t66 77.5t89.5 55.5t113 22q59 0 103.5 -21.5t70 -57.5t38.5 -83.5t12 -98t-13 -102.5q-13 -56 -41 -109.5t-69 -100.5t-100 -76t-126 -29zM1096 162q48 0 92 56 +t61 134q15 58 0 100t-55 42q-53 0 -97 -54t-63 -135q-14 -62 1 -102.5t61 -40.5zM1733 162q49 0 93.5 56t61.5 134q15 58 0 100t-55 42q-54 0 -97.5 -53.5t-62.5 -135.5q-14 -62 0.5 -102.5t59.5 -40.5zM2367 162q50 0 94.5 56t61.5 134q15 58 0 100t-55 42 +q-54 0 -97.5 -53.5t-62.5 -135.5q-15 -59 0 -101t59 -42z" /> + <glyph glyph-name="guilsinglleft" unicode="‹" horiz-adv-x="592" +d="M367 156l-349 354l508 356l-45 -211l-215 -145l146 -143z" /> + <glyph glyph-name="guilsinglright" unicode="›" horiz-adv-x="594" +d="M68 156l45 211l215 143l-144 145l43 211l348 -356z" /> + <glyph glyph-name="fraction" unicode="⁄" horiz-adv-x="860" +d="M-82 0l791 1413h233l-790 -1413h-234z" /> + <glyph glyph-name="Euro" unicode="€" horiz-adv-x="1245" +d="M662 -20q-108 0 -190.5 37.5t-131.5 104t-73 152.5t-23 189l-181 -10l119 180l76 10q1 9 18 86q5 17 19 74l-154 -10l121 186l100 10q100 209 253 328t354 119q124 0 215 -56t141 -157l-174 -107q-52 101 -207 101q-229 0 -377 -248l533 10l-119 -182l-492 -11 +q-13 -42 -22 -86q-6 -21 -14 -69l569 10l-119 -180l-461 -10q12 -125 71 -188.5t173 -63.5q154 0 268 120l119 -161q-181 -178 -411 -178z" /> + <glyph glyph-name="uni20B1" unicode="₱" +d="M1343 1055l-26 -109h-91q-49 -172 -204.5 -266t-370.5 -94h-196l-136 -586h-251l218 946h-120l27 109h118l82 358h436q198 0 312.5 -95t103.5 -263h98zM590 1176l-28 -121h434q2 60 -49 90.5t-161 30.5h-196zM692 823q201 0 272 123h-427l-29 -123h184z" /> + <glyph glyph-name="uni20B3" unicode="₳" horiz-adv-x="1343" +d="M1350 666h-248l34 -203h167l-37 -156h-103l51 -307h-270l-39 307h-549l-180 -307h-280l193 307h-101l37 156h163l127 203h-243l34 155h307l373 592h191l99 -592h308zM815 1102l-164 -281h199zM895 463l-25 203h-310l-118 -203h453z" /> + <glyph glyph-name="uni20B4" unicode="₴" horiz-adv-x="1137" +d="M1118 1022q-13 -56 -36 -101.5t-58.5 -79t-69 -56.5t-85 -42.5t-87 -30.5t-93.5 -26h323l-33 -139h-611q-50 -52 -69 -129q-46 -199 170 -199q122 0 222 67t140 187l236 -84q-52 -133 -155.5 -227t-222 -136t-245.5 -42q-104 0 -188 31t-139 89.5t-75.5 142t3.5 189.5 +q10 43 27.5 82t37 69.5t50 60t54.5 50t64 43t65.5 35.5t72 31.5t69.5 27t71 25.5h-288l31 139h530q35 37 45 82q13 56 -26 91.5t-109 35.5q-72 0 -144.5 -44t-125.5 -117l-184 149q187 238 475 238q191 0 296 -111t62 -301z" /> + <glyph glyph-name="uni20B8" unicode="₸" horiz-adv-x="1376" +d="M276 1186l54 227h1138l-53 -227h-1139zM446 0l197 854h-442l53 227h1139l-54 -227h-442l-197 -854h-254z" /> + <glyph glyph-name="uni20BD" unicode="₽" horiz-adv-x="1321" +d="M170 0l59 262h-178l45 197h178l35 147h-178l49 217h178l138 590h436q223 0 337 -118t66 -322q-41 -182 -196 -274.5t-381 -92.5h-197l-35 -147h334l-45 -197h-334l-59 -262h-252zM610 823h185q254 0 299 195q18 78 -30.5 118t-174.5 40h-197z" /> + <glyph glyph-name="uni2116" unicode="№" horiz-adv-x="2476" +d="M68 0l325 1413h250l365 -989l231 989h244l-326 -1413h-252l-362 991l-232 -991h-243zM1785 332q-191 0 -282 128t-49 314q41 171 182 289t323 118q127 0 212.5 -60.5t115 -161t1.5 -222.5q-39 -171 -179.5 -288t-323.5 -117zM1803 504q111 0 184 76t101 194 +q24 102 -10.5 167.5t-137.5 65.5q-111 0 -184 -76t-101 -194q-13 -47 -10 -89t18 -74t51 -51t89 -19zM1452 0v184h827v-184h-827z" /> + <glyph glyph-name="trademark" unicode="™" horiz-adv-x="1405" +d="M365 877l92 397h-146l33 139h442l-32 -139h-146l-92 -397h-151zM748 877l124 536h189v-315l147 315h191l-125 -536h-152l84 354l-123 -273h-96v304l-88 -385h-151z" /> + <glyph glyph-name="uni2126" unicode="Ω" horiz-adv-x="1673" +d="M29 0l47 203l278 6q-101 100 -142.5 243.5t-8.5 290.5q30 121 104.5 246.5t173.5 216.5q121 93 269.5 147t281.5 54q141 0 265 -64.5t192 -171.5q69 -80 90.5 -208.5t-10.5 -270.5q-33 -137 -129.5 -273.5t-231.5 -230.5l250 7l-45 -195h-579l36 190q173 25 308.5 173 +t187.5 372q20 89 12 176.5t-43 147.5q-55 67 -143 105t-180 38q-102 0 -212 -48.5t-196 -127.5q-67 -47 -120.5 -137.5t-77.5 -198.5q-50 -208 14 -344.5t225 -159.5l-37 -186h-579z" /> + <glyph glyph-name="arrowleft" unicode="←" horiz-adv-x="2228" +d="M1053 72l-1010 567l1010 557l112 -197l-575 -262h1558v-205h-1548l565 -264z" /> + <glyph glyph-name="arrowright" unicode="→" horiz-adv-x="2228" +d="M1176 72l-113 196l565 264h-1548v205h1558l-575 262l113 197l1009 -557z" /> + <glyph glyph-name="partialdiff" unicode="∂" horiz-adv-x="1288" +d="M461 -12q-221 0 -318 135t-47 350q36 154 139.5 278t236.5 189.5t267 65.5q137 0 271 -84q42 167 -11 248t-174 81q-74 0 -151 -38t-135 -130l-166 76q83 132 210.5 201.5t278.5 69.5q106 0 183.5 -35t122.5 -97t64.5 -149t14 -189t-32.5 -219q-51 -222 -158 -391 +t-261 -265.5t-334 -96.5zM496 197q87 0 176 42.5t162.5 130t99.5 199.5q25 109 -19 173.5t-165 64.5q-84 0 -161 -33.5t-131.5 -88.5t-92.5 -121t-54 -134q-26 -114 29.5 -173.5t155.5 -59.5z" /> + <glyph glyph-name="uni2206" unicode="∆" horiz-adv-x="1288" +d="M-72 0l940 1491l258 -1491h-1198zM279 205h600l-117 788z" /> + <glyph glyph-name="product" unicode="∏" horiz-adv-x="1343" +d="M121 0l278 1208h-82l48 205h1036l-47 -205h-82l-279 -1208h-205l279 1208h-463l-278 -1208h-205z" /> + <glyph glyph-name="summation" unicode="∑" horiz-adv-x="1268" +d="M-35 0l23 106l706 601l-426 600l23 106h1081l-47 -205h-721l381 -501l-608 -502h717l-47 -205h-1082z" /> + <glyph glyph-name="minus" unicode="−" horiz-adv-x="1528" +d="M215 537v184h1098v-184h-1098z" /> + <glyph glyph-name="radical" unicode="√" horiz-adv-x="1184" +d="M324 -242l-101 783h-160l48 204h303l37 -460l706 1142l178 -71z" /> + <glyph glyph-name="infinity" unicode="∞" horiz-adv-x="1880" +d="M535 354q-184 0 -291 105.5t-107 275.5t107 275.5t291 105.5q107 0 214.5 -55.5t190.5 -159.5q84 104 191.5 159.5t214.5 55.5q184 0 290.5 -105.5t106.5 -275.5t-106.5 -275.5t-290.5 -105.5q-107 0 -215 55.5t-191 159.5q-84 -104 -191.5 -159.5t-213.5 -55.5zM565 551 +q64 0 138.5 48t127.5 136q-54 90 -128 137.5t-138 47.5q-98 0 -154.5 -48.5t-56.5 -136.5t56.5 -136t154.5 -48zM1315 551q98 0 154.5 48t56.5 136t-56.5 136.5t-154.5 48.5q-64 0 -138.5 -48.5t-127.5 -136.5q54 -90 128 -137t138 -47z" /> + <glyph glyph-name="integral" unicode="∫" horiz-adv-x="899" +d="M-174 -457l35 205q169 0 257 66t122 217l258 1116q30 133 133 217t225 84t211 -92l-156 -144q-30 31 -77 31q-45 0 -85 -32.5t-53 -92.5l-258 -1114q-52 -226 -213.5 -343.5t-398.5 -117.5z" /> + <glyph glyph-name="approxequal" unicode="≈" horiz-adv-x="1165" +d="M739 735q-64 0 -120 16t-88 35.5t-66 35.5t-59 16q-39 0 -49.5 -16t-10.5 -60h-170q0 124 59.5 185t167.5 61q73 0 133 -15.5t91 -34t62.5 -34t55.5 -15.5q43 0 54.5 19t11.5 73h178q0 -266 -250 -266zM739 387q-64 0 -120 16t-88 35t-66 35t-59 16q-39 0 -49.5 -15.5 +t-10.5 -59.5h-170q0 124 59.5 184.5t167.5 60.5q73 0 133 -15.5t91 -33.5t62.5 -33.5t55.5 -15.5q43 0 54.5 19t11.5 73h178q0 -266 -250 -266z" /> + <glyph glyph-name="notequal" unicode="≠" horiz-adv-x="1163" +d="M90 0l227 406h-145v186h246l86 160h-332v186h432l264 475h209l-264 -475h168v-186h-268l-86 -160h354v-186h-455l-227 -406h-209z" /> + <glyph glyph-name="lessequal" unicode="≤" horiz-adv-x="1317" +d="M1087 154l-985 548l985 549l103 -178l-690 -371l690 -370zM72 -184v184h1124v-184h-1124z" /> + <glyph glyph-name="greaterequal" unicode="≥" horiz-adv-x="1315" +d="M227 154l-102 178l690 370l-690 371l102 178l985 -549zM119 -184v184h1124v-184h-1124z" /> + <glyph glyph-name="lozenge" unicode="◊" horiz-adv-x="1098" +d="M334 0l-223 717l548 717h205l221 -717l-546 -717h-205zM481 227l363 490l-127 489l-365 -489z" /> + <glyph glyph-name="uniF8FF" unicode="" horiz-adv-x="1753" +d="M926 -61q-158 0 -301 61t-247 165t-165 247t-61 301t61 301t165 247t247 165t301 61t301 -61t247 -165t165 -247t61 -301t-61 -301t-165 -247t-247 -165t-301 -61zM926 10q143 0 273 55.5t224 149.5t149.5 224.5t55.5 273.5t-55.5 273t-149.5 224t-224 149.5t-273 55.5 +t-273.5 -55.5t-224.5 -149.5t-149.5 -224t-55.5 -273q0 -191 94 -353t256 -256t353 -94zM522 410q-14 0 -24.5 9.5t-10.5 24.5v537q0 15 10.5 26t24.5 11q16 0 26.5 -11t10.5 -26v-537q0 -15 -10.5 -24.5t-26.5 -9.5zM926 410q-16 0 -25.5 9.5t-9.5 24.5v537q0 15 10 26 +t25 11t25 -11t10 -26v-537q0 -15 -10 -24.5t-25 -9.5zM1327 410q-15 0 -22 10l-271 268q-8 11 -8 25q0 16 8 24l271 269q9 12 22 12q14 0 25.5 -11.5t11.5 -25.5t-10 -25l-244 -243l244 -244q10 -10 10 -25q0 -13 -11.5 -23.5t-25.5 -10.5zM657 678q-15 0 -24.5 9.5 +t-9.5 25.5q0 15 9.5 25t24.5 10h134q15 0 25.5 -10t10.5 -25t-10.5 -25t-25.5 -10h-134z" /> + <glyph glyph-name="i.loclTRK" horiz-adv-x="516" +d="M289 1188l51 225h256l-51 -225h-256zM31 0l229 999h225l-229 -999h-225z" /> + <glyph glyph-name="f_t" horiz-adv-x="1386" +d="M1116 795l-112 -486q-16 -66 7.5 -90t74.5 -24q73 0 155 41l-41 -230q-71 -26 -178 -26q-151 0 -219.5 83.5t-36.5 223.5l117 508h-361l-182 -795h-252l182 795h-182l47 202h184l35 146q34 143 128.5 217t246.5 74q84 0 176 -45l-121 -187q-35 23 -75 23t-69.5 -28 +t-41.5 -79l-29 -119h365l55 248l271 174l-96 -422h260l-47 -204h-261z" /> + <hkern u1=" " u2="&" k="82" /> + <hkern u1="!" u2="ß" k="25" /> + <hkern u1=""" u2="ï" k="-33" /> + <hkern u1=""" u2="î" k="-33" /> + <hkern u1=""" u2="ì" k="-33" /> + <hkern u1="&" u2="v" k="37" /> + <hkern u1="&" u2="V" k="117" /> + <hkern u1="&" u2=" " k="82" /> + <hkern u1="'" u2="ï" k="-33" /> + <hkern u1="'" u2="î" k="-33" /> + <hkern u1="'" u2="ì" k="-33" /> + <hkern u1="(" u2="ƒ" k="-115" /> + <hkern u1="(" u2="ï" k="-37" /> + <hkern u1="(" u2="î" k="-25" /> + <hkern u1="(" u2="ì" k="-78" /> + <hkern u1="(" u2="ß" k="31" /> + <hkern u1="(" u2="x" k="12" /> + <hkern u1="(" u2="v" k="47" /> + <hkern u1="(" u2="g" k="29" /> + <hkern u1="(" u2="X" k="-16" /> + <hkern u1="(" u2="V" k="-29" /> + <hkern u1="(" u2="−" k="82" /> + <hkern u1="(" u2="+" k="115" /> + <hkern u1=")" u2="Ł" k="-16" /> + <hkern u1="*" u2="ƒ" k="61" /> + <hkern u1="*" u2="Ł" k="12" /> + <hkern u1="*" u2="ï" k="-49" /> + <hkern u1="*" u2="î" k="-66" /> + <hkern u1="*" u2="ì" k="-25" /> + <hkern u1="*" u2="x" k="-12" /> + <hkern u1="*" u2="v" k="-45" /> + <hkern u1="*" u2="X" k="12" /> + <hkern u1="*" u2="V" k="-41" /> + <hkern u1="+" u2="X" k="51" /> + <hkern u1="+" u2="V" k="94" /> + <hkern u1="+" u2=")" k="115" /> + <hkern u1="," u2="j" k="-25" /> + <hkern u1="," u2="g" k="33" /> + <hkern u1="." u2="g" k="33" /> + <hkern u1="/" u2="ƒ" k="123" /> + <hkern u1="/" u2="ž" k="66" /> + <hkern u1="/" u2="š" k="74" /> + <hkern u1="/" u2="ł" k="25" /> + <hkern u1="/" u2="Ł" k="31" /> + <hkern u1="/" u2="ö" k="221" /> + <hkern u1="/" u2="ò" k="203" /> + <hkern u1="/" u2="ð" k="221" /> + <hkern u1="/" u2="ï" k="-86" /> + <hkern u1="/" u2="î" k="-61" /> + <hkern u1="/" u2="í" k="8" /> + <hkern u1="/" u2="ì" k="-143" /> + <hkern u1="/" u2="ë" k="184" /> + <hkern u1="/" u2="è" k="184" /> + <hkern u1="/" u2="å" k="188" /> + <hkern u1="/" u2="ä" k="139" /> + <hkern u1="/" u2="ã" k="156" /> + <hkern u1="/" u2="â" k="184" /> + <hkern u1="/" u2="à" k="152" /> + <hkern u1="/" u2="ß" k="74" /> + <hkern u1="/" u2="x" k="41" /> + <hkern u1="/" u2="v" k="33" /> + <hkern u1="/" u2="X" k="-20" /> + <hkern u1="/" u2="V" k="-41" /> + <hkern u1="/" u2="/" k="115" /> + <hkern u1=";" u2="j" k="-25" /> + <hkern u1="<" u2="Ł" k="-12" /> + <hkern u1="<" u2="v" k="-37" /> + <hkern u1="<" u2="X" k="-12" /> + <hkern u1="<" u2="V" k="-12" /> + <hkern u1="=" u2="v" k="-12" /> + <hkern u1="=" u2="X" k="33" /> + <hkern u1="=" u2="V" k="57" /> + <hkern u1=">" u2="ł" k="-12" /> + <hkern u1=">" u2="x" k="12" /> + <hkern u1=">" u2="v" k="12" /> + <hkern u1=">" u2="X" k="102" /> + <hkern u1=">" u2="V" k="78" /> + <hkern u1="?" u2="Ł" k="12" /> + <hkern u1="?" u2="v" k="-16" /> + <hkern u1="?" u2="X" k="12" /> + <hkern u1="@" u2="ł" k="12" /> + <hkern u1="@" u2="Ł" k="-2" /> + <hkern u1="@" u2="î" k="-12" /> + <hkern u1="@" u2="ß" k="25" /> + <hkern u1="@" u2="x" k="2" /> + <hkern u1="@" u2="v" k="-12" /> + <hkern u1="@" u2="X" k="72" /> + <hkern u1="@" u2="V" k="66" /> + <hkern u1="B" u2="™" k="33" /> + <hkern u1="B" u2="•" k="8" /> + <hkern u1="B" u2="‡" k="-6" /> + <hkern u1="B" u2="†" k="-6" /> + <hkern u1="B" u2="Ł" k="-12" /> + <hkern u1="B" u2="ï" k="-6" /> + <hkern u1="B" u2="î" k="-6" /> + <hkern u1="B" u2="ß" k="31" /> + <hkern u1="B" u2="¿" k="45" /> + <hkern u1="B" u2="º" k="8" /> + <hkern u1="B" u2="·" k="6" /> + <hkern u1="B" u2="ª" k="12" /> + <hkern u1="B" u2="¡" k="12" /> + <hkern u1="B" u2="~" k="-6" /> + <hkern u1="B" u2="{" k="25" /> + <hkern u1="B" u2="v" k="4" /> + <hkern u1="B" u2="_" k="8" /> + <hkern u1="B" u2="\" k="70" /> + <hkern u1="B" u2="X" k="6" /> + <hkern u1="B" u2="V" k="12" /> + <hkern u1="B" u2=">" k="-27" /> + <hkern u1="B" u2="=" k="-6" /> + <hkern u1="B" u2="/" k="25" /> + <hkern u1="B" u2="+" k="4" /> + <hkern u1="B" u2="&" k="41" /> + <hkern u1="C" u2="î" k="-18" /> + <hkern u1="D" u2="ï" k="-6" /> + <hkern u1="D" u2="î" k="-6" /> + <hkern u1="E" u2="ï" k="-18" /> + <hkern u1="E" u2="î" k="-25" /> + <hkern u1="E" u2="ì" k="-27" /> + <hkern u1="F" u2="™" k="-23" /> + <hkern u1="F" u2="•" k="33" /> + <hkern u1="F" u2="‡" k="-41" /> + <hkern u1="F" u2="†" k="-41" /> + <hkern u1="F" u2="ƒ" k="131" /> + <hkern u1="F" u2="÷" k="6" /> + <hkern u1="F" u2="ï" k="-72" /> + <hkern u1="F" u2="î" k="-57" /> + <hkern u1="F" u2="í" k="16" /> + <hkern u1="F" u2="ì" k="-78" /> + <hkern u1="F" u2="ã" k="66" /> + <hkern u1="F" u2="ß" k="47" /> + <hkern u1="F" u2="×" k="12" /> + <hkern u1="F" u2="¿" k="156" /> + <hkern u1="F" u2="·" k="12" /> + <hkern u1="F" u2="¶" k="-16" /> + <hkern u1="F" u2="ª" k="12" /> + <hkern u1="F" u2="§" k="-16" /> + <hkern u1="F" u2="¦" k="-16" /> + <hkern u1="F" u2="¡" k="25" /> + <hkern u1="F" u2="~" k="41" /> + <hkern u1="F" u2="|" k="-41" /> + <hkern u1="F" u2="{" k="16" /> + <hkern u1="F" u2="x" k="31" /> + <hkern u1="F" u2="v" k="35" /> + <hkern u1="F" u2="_" k="156" /> + <hkern u1="F" u2="^" k="-8" /> + <hkern u1="F" u2="\" k="-49" /> + <hkern u1="F" u2="X" k="-18" /> + <hkern u1="F" u2="V" k="-18" /> + <hkern u1="F" u2="@" k="20" /> + <hkern u1="F" u2="?" k="-20" /> + <hkern u1="F" u2=">" k="-33" /> + <hkern u1="F" u2="=" k="12" /> + <hkern u1="F" u2="<" k="12" /> + <hkern u1="F" u2="/" k="143" /> + <hkern u1="F" u2="+" k="29" /> + <hkern u1="F" u2="*" k="-12" /> + <hkern u1="F" u2=")" k="-25" /> + <hkern u1="F" u2="&" k="70" /> + <hkern u1="G" u2="î" k="-4" /> + <hkern u1="H" u2="ï" k="-25" /> + <hkern u1="H" u2="î" k="-12" /> + <hkern u1="H" u2="ì" k="-25" /> + <hkern u1="I" u2="ï" k="-25" /> + <hkern u1="I" u2="î" k="-12" /> + <hkern u1="I" u2="ì" k="-25" /> + <hkern u1="J" u2="ï" k="-12" /> + <hkern u1="J" u2="î" k="-16" /> + <hkern u1="J" u2="ì" k="-12" /> + <hkern u1="K" u2="ï" k="-74" /> + <hkern u1="K" u2="î" k="-31" /> + <hkern u1="K" u2="ì" k="-37" /> + <hkern u1="M" u2="ï" k="-25" /> + <hkern u1="M" u2="î" k="-12" /> + <hkern u1="M" u2="ì" k="-25" /> + <hkern u1="N" u2="ï" k="-25" /> + <hkern u1="N" u2="î" k="-12" /> + <hkern u1="N" u2="ì" k="-25" /> + <hkern u1="O" u2="ï" k="-6" /> + <hkern u1="O" u2="î" k="-6" /> + <hkern u1="P" u2="™" k="12" /> + <hkern u1="P" u2="•" k="29" /> + <hkern u1="P" u2="‡" k="-41" /> + <hkern u1="P" u2="†" k="-41" /> + <hkern u1="P" u2="ƒ" k="111" /> + <hkern u1="P" u2="š" k="25" /> + <hkern u1="P" u2="ł" k="4" /> + <hkern u1="P" u2="ü" k="41" /> + <hkern u1="P" u2="û" k="41" /> + <hkern u1="P" u2="ú" k="41" /> + <hkern u1="P" u2="ù" k="41" /> + <hkern u1="P" u2="÷" k="8" /> + <hkern u1="P" u2="ï" k="-72" /> + <hkern u1="P" u2="î" k="-63" /> + <hkern u1="P" u2="ì" k="-12" /> + <hkern u1="P" u2="ß" k="43" /> + <hkern u1="P" u2="×" k="-8" /> + <hkern u1="P" u2="¿" k="176" /> + <hkern u1="P" u2="·" k="29" /> + <hkern u1="P" u2="¶" k="-29" /> + <hkern u1="P" u2="§" k="-8" /> + <hkern u1="P" u2="~" k="41" /> + <hkern u1="P" u2="{" k="41" /> + <hkern u1="P" u2="v" k="-6" /> + <hkern u1="P" u2="_" k="172" /> + <hkern u1="P" u2="\" k="25" /> + <hkern u1="P" u2="X" k="29" /> + <hkern u1="P" u2="V" k="6" /> + <hkern u1="P" u2="@" k="4" /> + <hkern u1="P" u2="?" k="-41" /> + <hkern u1="P" u2=">" k="-41" /> + <hkern u1="P" u2="<" k="25" /> + <hkern u1="P" u2="/" k="156" /> + <hkern u1="P" u2="+" k="49" /> + <hkern u1="P" u2="*" k="-20" /> + <hkern u1="P" u2=")" k="12" /> + <hkern u1="P" u2="&" k="70" /> + <hkern u1="Q" u2="™" k="41" /> + <hkern u1="Q" u2="‡" k="-12" /> + <hkern u1="Q" u2="†" k="-12" /> + <hkern u1="Q" u2="ƒ" k="16" /> + <hkern u1="Q" u2="Ł" k="-4" /> + <hkern u1="Q" u2="÷" k="-12" /> + <hkern u1="Q" u2="î" k="-6" /> + <hkern u1="Q" u2="ß" k="27" /> + <hkern u1="Q" u2="×" k="-12" /> + <hkern u1="Q" u2="¡" k="12" /> + <hkern u1="Q" u2="~" k="-12" /> + <hkern u1="Q" u2="x" k="-12" /> + <hkern u1="Q" u2="^" k="-12" /> + <hkern u1="Q" u2="\" k="90" /> + <hkern u1="Q" u2="X" k="43" /> + <hkern u1="Q" u2="V" k="57" /> + <hkern u1="Q" u2=">" k="-29" /> + <hkern u1="Q" u2="=" k="-12" /> + <hkern u1="Q" u2="<" k="-20" /> + <hkern u1="Q" u2="+" k="-12" /> + <hkern u1="Q" u2=")" k="45" /> + <hkern u1="Q" u2="&" k="25" /> + <hkern u1="Q" u2="!" k="12" /> + <hkern u1="R" u2="ï" k="-18" /> + <hkern u1="R" u2="î" k="-33" /> + <hkern u1="S" u2="ï" k="-8" /> + <hkern u1="S" u2="î" k="-8" /> + <hkern u1="T" u2="ž" k="49" /> + <hkern u1="T" u2="š" k="33" /> + <hkern u1="T" u2="ÿ" k="102" /> + <hkern u1="T" u2="ü" k="113" /> + <hkern u1="T" u2="û" k="133" /> + <hkern u1="T" u2="ï" k="-98" /> + <hkern u1="T" u2="î" k="-61" /> + <hkern u1="T" u2="í" k="59" /> + <hkern u1="T" u2="ì" k="-82" /> + <hkern u1="T" u2="å" k="121" /> + <hkern u1="T" u2="ä" k="74" /> + <hkern u1="T" u2="ã" k="92" /> + <hkern u1="T" u2="â" k="100" /> + <hkern u1="T" u2="à" k="88" /> + <hkern u1="U" u2="ï" k="-12" /> + <hkern u1="U" u2="î" k="-16" /> + <hkern u1="U" u2="ì" k="-12" /> + <hkern u1="V" u2="™" k="-25" /> + <hkern u1="V" u2="•" k="94" /> + <hkern u1="V" u2="‡" k="-20" /> + <hkern u1="V" u2="†" k="-29" /> + <hkern u1="V" u2="ƒ" k="147" /> + <hkern u1="V" u2="ł" k="25" /> + <hkern u1="V" u2="÷" k="57" /> + <hkern u1="V" u2="ï" k="-100" /> + <hkern u1="V" u2="î" k="-33" /> + <hkern u1="V" u2="í" k="25" /> + <hkern u1="V" u2="ì" k="-66" /> + <hkern u1="V" u2="è" k="119" /> + <hkern u1="V" u2="ã" k="94" /> + <hkern u1="V" u2="ß" k="68" /> + <hkern u1="V" u2="×" k="20" /> + <hkern u1="V" u2="¿" k="172" /> + <hkern u1="V" u2="º" k="6" /> + <hkern u1="V" u2="·" k="74" /> + <hkern u1="V" u2="ª" k="25" /> + <hkern u1="V" u2="§" k="12" /> + <hkern u1="V" u2="¦" k="-29" /> + <hkern u1="V" u2="¡" k="78" /> + <hkern u1="V" u2="~" k="94" /> + <hkern u1="V" u2="|" k="-29" /> + <hkern u1="V" u2="{" k="61" /> + <hkern u1="V" u2="x" k="23" /> + <hkern u1="V" u2="v" k="41" /> + <hkern u1="V" u2="_" k="139" /> + <hkern u1="V" u2="^" k="12" /> + <hkern u1="V" u2="\" k="-41" /> + <hkern u1="V" u2="X" k="-20" /> + <hkern u1="V" u2="V" k="-20" /> + <hkern u1="V" u2="@" k="66" /> + <hkern u1="V" u2="?" k="-8" /> + <hkern u1="V" u2="=" k="57" /> + <hkern u1="V" u2="<" k="78" /> + <hkern u1="V" u2="/" k="172" /> + <hkern u1="V" u2="+" k="94" /> + <hkern u1="V" u2="*" k="-41" /> + <hkern u1="V" u2=")" k="-29" /> + <hkern u1="V" u2="&" k="74" /> + <hkern u1="W" u2="ï" k="-102" /> + <hkern u1="W" u2="î" k="-45" /> + <hkern u1="W" u2="í" k="18" /> + <hkern u1="W" u2="ì" k="-70" /> + <hkern u1="X" u2="•" k="86" /> + <hkern u1="X" u2="ł" k="12" /> + <hkern u1="X" u2="÷" k="45" /> + <hkern u1="X" u2="ï" k="-39" /> + <hkern u1="X" u2="î" k="-20" /> + <hkern u1="X" u2="ì" k="-57" /> + <hkern u1="X" u2="ß" k="25" /> + <hkern u1="X" u2="×" k="33" /> + <hkern u1="X" u2="º" k="37" /> + <hkern u1="X" u2="·" k="74" /> + <hkern u1="X" u2="¶" k="12" /> + <hkern u1="X" u2="ª" k="37" /> + <hkern u1="X" u2="¦" k="-20" /> + <hkern u1="X" u2="¡" k="12" /> + <hkern u1="X" u2="~" k="53" /> + <hkern u1="X" u2="|" k="-29" /> + <hkern u1="X" u2="{" k="61" /> + <hkern u1="X" u2="x" k="-23" /> + <hkern u1="X" u2="v" k="68" /> + <hkern u1="X" u2="_" k="-37" /> + <hkern u1="X" u2="^" k="25" /> + <hkern u1="X" u2="\" k="-20" /> + <hkern u1="X" u2="V" k="-20" /> + <hkern u1="X" u2="@" k="63" /> + <hkern u1="X" u2="?" k="12" /> + <hkern u1="X" u2="=" k="33" /> + <hkern u1="X" u2="<" k="66" /> + <hkern u1="X" u2="/" k="-20" /> + <hkern u1="X" u2="+" k="51" /> + <hkern u1="X" u2="*" k="12" /> + <hkern u1="X" u2=")" k="-16" /> + <hkern u1="X" u2="&" k="57" /> + <hkern u1="Y" u2="š" k="80" /> + <hkern u1="Y" u2="ö" k="141" /> + <hkern u1="Y" u2="õ" k="199" /> + <hkern u1="Y" u2="ò" k="166" /> + <hkern u1="Y" u2="ð" k="190" /> + <hkern u1="Y" u2="ï" k="-57" /> + <hkern u1="Y" u2="î" k="-8" /> + <hkern u1="Y" u2="í" k="86" /> + <hkern u1="Y" u2="ì" k="-82" /> + <hkern u1="Y" u2="ë" k="172" /> + <hkern u1="Y" u2="è" k="172" /> + <hkern u1="Y" u2="ä" k="121" /> + <hkern u1="Y" u2="â" k="139" /> + <hkern u1="Y" u2="à" k="152" /> + <hkern u1="Z" u2="ï" k="-41" /> + <hkern u1="Z" u2="î" k="-41" /> + <hkern u1="Z" u2="ì" k="-49" /> + <hkern u1="[" u2="ï" k="-61" /> + <hkern u1="[" u2="î" k="-25" /> + <hkern u1="[" u2="ì" k="-106" /> + <hkern u1="\" u2="Ł" k="12" /> + <hkern u1="\" u2="x" k="-20" /> + <hkern u1="\" u2="v" k="57" /> + <hkern u1="\" u2="X" k="-20" /> + <hkern u1="\" u2="V" k="172" /> + <hkern u1="^" u2="v" k="-25" /> + <hkern u1="^" u2="X" k="25" /> + <hkern u1="^" u2="V" k="12" /> + <hkern u1="_" u2="ƒ" k="-135" /> + <hkern u1="_" u2="ł" k="25" /> + <hkern u1="_" u2="x" k="-49" /> + <hkern u1="_" u2="v" k="82" /> + <hkern u1="_" u2="X" k="-37" /> + <hkern u1="_" u2="V" k="139" /> + <hkern u1="f" u2="ï" k="-84" /> + <hkern u1="f" u2="î" k="-78" /> + <hkern u1="f" u2="ì" k="-98" /> + <hkern u1="f" u2="j" k="-33" /> + <hkern u1="f" u2="i" k="-12" /> + <hkern u1="i" u2="ï" k="-12" /> + <hkern u1="i" u2="î" k="-12" /> + <hkern u1="i" u2="ì" k="-12" /> + <hkern u1="l" u2="ï" k="-6" /> + <hkern u1="l" u2="î" k="-6" /> + <hkern u1="q" u2="™" k="61" /> + <hkern u1="v" u2="™" k="12" /> + <hkern u1="v" u2="‡" k="-61" /> + <hkern u1="v" u2="†" k="-61" /> + <hkern u1="v" u2="ƒ" k="25" /> + <hkern u1="v" u2="ł" k="-4" /> + <hkern u1="v" u2="÷" k="12" /> + <hkern u1="v" u2="×" k="-25" /> + <hkern u1="v" u2="¿" k="66" /> + <hkern u1="v" u2="º" k="-18" /> + <hkern u1="v" u2="¶" k="-53" /> + <hkern u1="v" u2="§" k="-25" /> + <hkern u1="v" u2="¦" k="-41" /> + <hkern u1="v" u2="¡" k="12" /> + <hkern u1="v" u2="|" k="-25" /> + <hkern u1="v" u2="x" k="-8" /> + <hkern u1="v" u2="v" k="-4" /> + <hkern u1="v" u2="_" k="82" /> + <hkern u1="v" u2="^" k="-25" /> + <hkern u1="v" u2="\" k="41" /> + <hkern u1="v" u2="@" k="-8" /> + <hkern u1="v" u2="?" k="-41" /> + <hkern u1="v" u2=">" k="-37" /> + <hkern u1="v" u2="=" k="-12" /> + <hkern u1="v" u2="<" k="12" /> + <hkern u1="v" u2="/" k="66" /> + <hkern u1="v" u2="*" k="-45" /> + <hkern u1="v" u2=")" k="47" /> + <hkern u1="v" u2="&" k="37" /> + <hkern u1="x" u2="™" k="20" /> + <hkern u1="x" u2="•" k="12" /> + <hkern u1="x" u2="‡" k="-33" /> + <hkern u1="x" u2="†" k="-33" /> + <hkern u1="x" u2="÷" k="12" /> + <hkern u1="x" u2="¿" k="-12" /> + <hkern u1="x" u2="·" k="20" /> + <hkern u1="x" u2="¶" k="-12" /> + <hkern u1="x" u2="ª" k="12" /> + <hkern u1="x" u2="¦" k="-12" /> + <hkern u1="x" u2="¡" k="-8" /> + <hkern u1="x" u2="~" k="12" /> + <hkern u1="x" u2="|" k="-29" /> + <hkern u1="x" u2="x" k="-4" /> + <hkern u1="x" u2="v" k="-8" /> + <hkern u1="x" u2="_" k="-49" /> + <hkern u1="x" u2="\" k="90" /> + <hkern u1="x" u2="@" k="-4" /> + <hkern u1="x" u2="?" k="-25" /> + <hkern u1="x" u2="<" k="12" /> + <hkern u1="x" u2="/" k="-41" /> + <hkern u1="x" u2="*" k="-12" /> + <hkern u1="x" u2=")" k="12" /> + <hkern u1="x" u2="&" k="33" /> + <hkern u1="{" u2="ï" k="-61" /> + <hkern u1="{" u2="î" k="-25" /> + <hkern u1="{" u2="ì" k="-106" /> + <hkern u1="{" u2="æ" k="10" /> + <hkern u1="{" u2="å" k="10" /> + <hkern u1="{" u2="ä" k="10" /> + <hkern u1="{" u2="ã" k="10" /> + <hkern u1="{" u2="â" k="10" /> + <hkern u1="{" u2="á" k="10" /> + <hkern u1="{" u2="à" k="10" /> + <hkern u1="{" u2="a" k="10" /> + <hkern u1="|" u2="x" k="-29" /> + <hkern u1="|" u2="v" k="-25" /> + <hkern u1="|" u2="X" k="-29" /> + <hkern u1="|" u2="V" k="-29" /> + <hkern u1="}" u2="Ł" k="-8" /> + <hkern u1="}" u2="X" k="8" /> + <hkern u1="}" u2="V" k="8" /> + <hkern u1="~" u2="x" k="12" /> + <hkern u1="~" u2="X" k="53" /> + <hkern u1="~" u2="V" k="94" /> + <hkern u1="¡" u2="ß" k="12" /> + <hkern u1="¡" u2="x" k="-8" /> + <hkern u1="¡" u2="v" k="12" /> + <hkern u1="¡" u2="X" k="12" /> + <hkern u1="¡" u2="V" k="78" /> + <hkern u1="¦" u2="x" k="-12" /> + <hkern u1="¦" u2="v" k="-41" /> + <hkern u1="¦" u2="X" k="-20" /> + <hkern u1="¦" u2="V" k="-29" /> + <hkern u1="§" u2="V" k="12" /> + <hkern u1="·" u2="x" k="20" /> + <hkern u1="·" u2="X" k="74" /> + <hkern u1="·" u2="V" k="74" /> + <hkern u1="¿" u2="ƒ" k="-74" /> + <hkern u1="¿" u2="ł" k="25" /> + <hkern u1="¿" u2="Ł" k="12" /> + <hkern u1="¿" u2="ß" k="37" /> + <hkern u1="¿" u2="v" k="80" /> + <hkern u1="¿" u2="V" k="190" /> + <hkern u1="¿" u2="9" k="37" /> + <hkern u1="Æ" u2="ï" k="-18" /> + <hkern u1="Æ" u2="î" k="-25" /> + <hkern u1="Æ" u2="ì" k="-27" /> + <hkern u1="Ç" u2="î" k="-18" /> + <hkern u1="È" u2="ï" k="-18" /> + <hkern u1="È" u2="î" k="-25" /> + <hkern u1="È" u2="ì" k="-27" /> + <hkern u1="É" u2="ï" k="-18" /> + <hkern u1="É" u2="î" k="-25" /> + <hkern u1="É" u2="ì" k="-27" /> + <hkern u1="Ê" u2="ï" k="-18" /> + <hkern u1="Ê" u2="î" k="-25" /> + <hkern u1="Ê" u2="ì" k="-27" /> + <hkern u1="Ë" u2="ï" k="-18" /> + <hkern u1="Ë" u2="î" k="-25" /> + <hkern u1="Ë" u2="ì" k="-27" /> + <hkern u1="Ì" u2="ï" k="-25" /> + <hkern u1="Ì" u2="î" k="-12" /> + <hkern u1="Ì" u2="ì" k="-25" /> + <hkern u1="Í" u2="ï" k="-25" /> + <hkern u1="Í" u2="î" k="-12" /> + <hkern u1="Í" u2="ì" k="-25" /> + <hkern u1="Í" u2="Ï" k="-41" /> + <hkern u1="Í" u2="Ì" k="-74" /> + <hkern u1="Î" u2="ï" k="-25" /> + <hkern u1="Î" u2="î" k="-12" /> + <hkern u1="Î" u2="ì" k="-25" /> + <hkern u1="Î" u2="Ï" k="-33" /> + <hkern u1="Î" u2="Î" k="-49" /> + <hkern u1="Î" u2="Ì" k="-25" /> + <hkern u1="Ï" u2="ï" k="-25" /> + <hkern u1="Ï" u2="î" k="-12" /> + <hkern u1="Ï" u2="ì" k="-25" /> + <hkern u1="Ï" u2="Ï" k="-16" /> + <hkern u1="Ï" u2="Î" k="-29" /> + <hkern u1="Ï" u2="Ì" k="-33" /> + <hkern u1="Ð" u2="ï" k="-6" /> + <hkern u1="Ð" u2="î" k="-6" /> + <hkern u1="Ñ" u2="ï" k="-25" /> + <hkern u1="Ñ" u2="î" k="-12" /> + <hkern u1="Ñ" u2="ì" k="-25" /> + <hkern u1="Ò" u2="ï" k="-6" /> + <hkern u1="Ò" u2="î" k="-6" /> + <hkern u1="Ó" u2="ï" k="-6" /> + <hkern u1="Ó" u2="î" k="-6" /> + <hkern u1="Ô" u2="ï" k="-6" /> + <hkern u1="Ô" u2="î" k="-6" /> + <hkern u1="Õ" u2="ï" k="-6" /> + <hkern u1="Õ" u2="î" k="-6" /> + <hkern u1="Ö" u2="ï" k="-6" /> + <hkern u1="Ö" u2="î" k="-6" /> + <hkern u1="×" u2="v" k="-25" /> + <hkern u1="×" u2="X" k="33" /> + <hkern u1="×" u2="V" k="20" /> + <hkern u1="Ø" u2="ï" k="-12" /> + <hkern u1="Ø" u2="î" k="-12" /> + <hkern u1="Ù" u2="ï" k="-12" /> + <hkern u1="Ù" u2="î" k="-16" /> + <hkern u1="Ù" u2="ì" k="-12" /> + <hkern u1="Ú" u2="ï" k="-12" /> + <hkern u1="Ú" u2="î" k="-16" /> + <hkern u1="Ú" u2="ì" k="-12" /> + <hkern u1="Û" u2="ï" k="-12" /> + <hkern u1="Û" u2="î" k="-16" /> + <hkern u1="Û" u2="ì" k="-12" /> + <hkern u1="Ü" u2="ï" k="-12" /> + <hkern u1="Ü" u2="î" k="-16" /> + <hkern u1="Ü" u2="ì" k="-12" /> + <hkern u1="Ý" u2="š" k="80" /> + <hkern u1="Ý" u2="ö" k="141" /> + <hkern u1="Ý" u2="õ" k="199" /> + <hkern u1="Ý" u2="ò" k="166" /> + <hkern u1="Ý" u2="ð" k="190" /> + <hkern u1="Ý" u2="ï" k="-57" /> + <hkern u1="Ý" u2="î" k="-8" /> + <hkern u1="Ý" u2="í" k="37" /> + <hkern u1="Ý" u2="ì" k="-82" /> + <hkern u1="Ý" u2="ë" k="172" /> + <hkern u1="Ý" u2="è" k="172" /> + <hkern u1="Ý" u2="ä" k="121" /> + <hkern u1="Ý" u2="â" k="139" /> + <hkern u1="Ý" u2="à" k="152" /> + <hkern u1="Þ" u2="™" k="74" /> + <hkern u1="Þ" u2="•" k="-12" /> + <hkern u1="Þ" u2="‡" k="-20" /> + <hkern u1="Þ" u2="†" k="-20" /> + <hkern u1="Þ" u2="ƒ" k="94" /> + <hkern u1="Þ" u2="ł" k="-29" /> + <hkern u1="Þ" u2="Ł" k="-12" /> + <hkern u1="Þ" u2="÷" k="-12" /> + <hkern u1="Þ" u2="ß" k="25" /> + <hkern u1="Þ" u2="×" k="-12" /> + <hkern u1="Þ" u2="¿" k="90" /> + <hkern u1="Þ" u2="·" k="-8" /> + <hkern u1="Þ" u2="~" k="-20" /> + <hkern u1="Þ" u2="x" k="-8" /> + <hkern u1="Þ" u2="v" k="-8" /> + <hkern u1="Þ" u2="_" k="86" /> + <hkern u1="Þ" u2="^" k="-12" /> + <hkern u1="Þ" u2="\" k="106" /> + <hkern u1="Þ" u2="X" k="66" /> + <hkern u1="Þ" u2="V" k="37" /> + <hkern u1="Þ" u2="@" k="-4" /> + <hkern u1="Þ" u2="?" k="-8" /> + <hkern u1="Þ" u2=">" k="-20" /> + <hkern u1="Þ" u2="=" k="-12" /> + <hkern u1="Þ" u2="<" k="-12" /> + <hkern u1="Þ" u2="/" k="119" /> + <hkern u1="Þ" u2="+" k="-12" /> + <hkern u1="Þ" u2=")" k="33" /> + <hkern u1="Þ" u2="&" k="33" /> + <hkern u1="ß" u2="™" k="37" /> + <hkern u1="ß" u2="‡" k="-12" /> + <hkern u1="ß" u2="ƒ" k="12" /> + <hkern u1="ß" u2="ł" k="-10" /> + <hkern u1="ß" u2="÷" k="-12" /> + <hkern u1="ß" u2="ï" k="-6" /> + <hkern u1="ß" u2="î" k="-6" /> + <hkern u1="ß" u2="ß" k="12" /> + <hkern u1="ß" u2="º" k="20" /> + <hkern u1="ß" u2="ª" k="41" /> + <hkern u1="ß" u2="v" k="12" /> + <hkern u1="ß" u2="_" k="-25" /> + <hkern u1="ß" u2="\" k="57" /> + <hkern u1="ß" u2=">" k="-61" /> + <hkern u1="ß" u2="=" k="-12" /> + <hkern u1="ß" u2="/" k="-8" /> + <hkern u1="ß" u2=")" k="-16" /> + <hkern u1="ß" u2="&" k="12" /> + <hkern u1="é" u2="\" k="131" /> + <hkern u1="ë" u2="\" k="131" /> + <hkern u1="ì" u2="™" k="37" /> + <hkern u1="ì" u2="\" k="53" /> + <hkern u1="í" u2="™" k="-49" /> + <hkern u1="í" u2="”" k="-98" /> + <hkern u1="í" u2="“" k="-49" /> + <hkern u1="í" u2="’" k="-98" /> + <hkern u1="í" u2="‘" k="-49" /> + <hkern u1="í" u2="š" k="-6" /> + <hkern u1="í" u2="ï" k="-125" /> + <hkern u1="í" u2="î" k="-82" /> + <hkern u1="í" u2="ì" k="-127" /> + <hkern u1="í" u2="}" k="-106" /> + <hkern u1="í" u2="|" k="-37" /> + <hkern u1="í" u2="i" k="-12" /> + <hkern u1="í" u2="]" k="-106" /> + <hkern u1="í" u2="\" k="-119" /> + <hkern u1="í" u2="?" k="-12" /> + <hkern u1="í" u2="*" k="-12" /> + <hkern u1="í" u2=")" k="-74" /> + <hkern u1="í" u2="'" k="-33" /> + <hkern u1="í" u2=""" k="-33" /> + <hkern u1="í" u2="!" k="-12" /> + <hkern u1="î" u2="™" k="-25" /> + <hkern u1="î" u2="†" k="-74" /> + <hkern u1="î" u2="”" k="-74" /> + <hkern u1="î" u2="“" k="-90" /> + <hkern u1="î" u2="’" k="-74" /> + <hkern u1="î" u2="‘" k="-90" /> + <hkern u1="î" u2="š" k="-6" /> + <hkern u1="î" u2="ï" k="-133" /> + <hkern u1="î" u2="î" k="-82" /> + <hkern u1="î" u2="ì" k="-37" /> + <hkern u1="î" u2="}" k="-25" /> + <hkern u1="î" u2="|" k="-25" /> + <hkern u1="î" u2="j" k="-12" /> + <hkern u1="î" u2="i" k="-18" /> + <hkern u1="î" u2="]" k="-25" /> + <hkern u1="î" u2="\" k="-53" /> + <hkern u1="î" u2="?" k="-94" /> + <hkern u1="î" u2="*" k="-74" /> + <hkern u1="î" u2=")" k="-25" /> + <hkern u1="î" u2="'" k="-33" /> + <hkern u1="î" u2="&" k="12" /> + <hkern u1="î" u2=""" k="-33" /> + <hkern u1="î" u2="!" k="-12" /> + <hkern u1="ï" u2="™" k="-49" /> + <hkern u1="ï" u2="†" k="-49" /> + <hkern u1="ï" u2="”" k="-86" /> + <hkern u1="ï" u2="“" k="-82" /> + <hkern u1="ï" u2="’" k="-86" /> + <hkern u1="ï" u2="‘" k="-82" /> + <hkern u1="ï" u2="š" k="-6" /> + <hkern u1="ï" u2="ï" k="-139" /> + <hkern u1="ï" u2="î" k="-119" /> + <hkern u1="ï" u2="ì" k="-127" /> + <hkern u1="ï" u2="ã" k="-12" /> + <hkern u1="ï" u2="}" k="-61" /> + <hkern u1="ï" u2="|" k="-25" /> + <hkern u1="ï" u2="j" k="-25" /> + <hkern u1="ï" u2="i" k="-25" /> + <hkern u1="ï" u2="]" k="-61" /> + <hkern u1="ï" u2="\" k="-70" /> + <hkern u1="ï" u2="?" k="-86" /> + <hkern u1="ï" u2="*" k="-70" /> + <hkern u1="ï" u2=")" k="-37" /> + <hkern u1="ï" u2="'" k="-33" /> + <hkern u1="ï" u2="&" k="12" /> + <hkern u1="ï" u2=""" k="-33" /> + <hkern u1="ï" u2="!" k="-12" /> + <hkern u1="ð" u2="”" k="57" /> + <hkern u1="ð" u2="“" k="57" /> + <hkern u1="ð" u2="’" k="57" /> + <hkern u1="ð" u2="‘" k="57" /> + <hkern u1="ð" u2="\" k="106" /> + <hkern u1="ó" u2="\" k="180" /> + <hkern u1="õ" u2="\" k="180" /> + <hkern u1="ö" u2="\" k="186" /> + <hkern u1="÷" u2="x" k="12" /> + <hkern u1="÷" u2="v" k="12" /> + <hkern u1="÷" u2="X" k="45" /> + <hkern u1="÷" u2="V" k="57" /> + <hkern u1="ł" u2="‡" k="-53" /> + <hkern u1="ł" u2="†" k="-37" /> + <hkern u1="ł" u2="ƒ" k="12" /> + <hkern u1="ł" u2="ł" k="-8" /> + <hkern u1="ł" u2="¿" k="12" /> + <hkern u1="ł" u2="º" k="-12" /> + <hkern u1="ł" u2="·" k="-8" /> + <hkern u1="ł" u2="¶" k="-16" /> + <hkern u1="ł" u2="x" k="-47" /> + <hkern u1="ł" u2="v" k="-37" /> + <hkern u1="ł" u2="@" k="-25" /> + <hkern u1="ł" u2="?" k="-12" /> + <hkern u1="ł" u2=">" k="-49" /> + <hkern u1="ł" u2="=" k="-25" /> + <hkern u1="ł" u2="/" k="-8" /> + <hkern u1="ł" u2="*" k="-25" /> + <hkern u1="ł" u2="&" k="25" /> + <hkern u1="Œ" u2="ï" k="-18" /> + <hkern u1="Œ" u2="î" k="-25" /> + <hkern u1="Œ" u2="ì" k="-27" /> + <hkern u1="Š" u2="ï" k="-8" /> + <hkern u1="Š" u2="î" k="-8" /> + <hkern u1="š" u2="\" k="86" /> + <hkern u1="Ÿ" u2="š" k="80" /> + <hkern u1="Ÿ" u2="ö" k="141" /> + <hkern u1="Ÿ" u2="õ" k="199" /> + <hkern u1="Ÿ" u2="ò" k="166" /> + <hkern u1="Ÿ" u2="ð" k="190" /> + <hkern u1="Ÿ" u2="ï" k="-57" /> + <hkern u1="Ÿ" u2="î" k="-8" /> + <hkern u1="Ÿ" u2="í" k="37" /> + <hkern u1="Ÿ" u2="ì" k="-82" /> + <hkern u1="Ÿ" u2="ë" k="172" /> + <hkern u1="Ÿ" u2="è" k="172" /> + <hkern u1="Ÿ" u2="ä" k="121" /> + <hkern u1="Ÿ" u2="â" k="139" /> + <hkern u1="Ÿ" u2="à" k="152" /> + <hkern u1="Ž" u2="ï" k="-41" /> + <hkern u1="Ž" u2="î" k="-41" /> + <hkern u1="Ž" u2="ì" k="-49" /> + <hkern u1="ž" u2="\" k="53" /> + <hkern u1="ƒ" u2="™" k="-25" /> + <hkern u1="ƒ" u2="‡" k="-16" /> + <hkern u1="ƒ" u2="†" k="-16" /> + <hkern u1="ƒ" u2="ƒ" k="160" /> + <hkern u1="ƒ" u2="÷" k="49" /> + <hkern u1="ƒ" u2="ï" k="-86" /> + <hkern u1="ƒ" u2="î" k="-61" /> + <hkern u1="ƒ" u2="ì" k="-86" /> + <hkern u1="ƒ" u2="×" k="-12" /> + <hkern u1="ƒ" u2="º" k="-12" /> + <hkern u1="ƒ" u2="¶" k="-16" /> + <hkern u1="ƒ" u2="ª" k="-12" /> + <hkern u1="ƒ" u2="¦" k="-25" /> + <hkern u1="ƒ" u2="~" k="53" /> + <hkern u1="ƒ" u2="x" k="8" /> + <hkern u1="ƒ" u2="v" k="8" /> + <hkern u1="ƒ" u2="_" k="57" /> + <hkern u1="ƒ" u2="\" k="-82" /> + <hkern u1="ƒ" u2="@" k="16" /> + <hkern u1="ƒ" u2="?" k="-25" /> + <hkern u1="ƒ" u2=">" k="-82" /> + <hkern u1="ƒ" u2="=" k="20" /> + <hkern u1="ƒ" u2="<" k="66" /> + <hkern u1="ƒ" u2="/" k="131" /> + <hkern u1="ƒ" u2="+" k="66" /> + <hkern u1="ƒ" u2="*" k="-61" /> + <hkern u1="ƒ" u2=")" k="-20" /> + <hkern u1="ƒ" u2="&" k="53" /> + <hkern u1="‘" u2="ð" k="88" /> + <hkern u1="‘" u2="ï" k="-86" /> + <hkern u1="‘" u2="î" k="-74" /> + <hkern u1="‘" u2="ì" k="-82" /> + <hkern u1="’" u2="ð" k="160" /> + <hkern u1="’" u2="ï" k="-25" /> + <hkern u1="’" u2="î" k="-33" /> + <hkern u1="’" u2="ì" k="-25" /> + <hkern u1="‚" u2="g" k="-20" /> + <hkern u1="“" u2="ð" k="88" /> + <hkern u1="“" u2="ï" k="-86" /> + <hkern u1="“" u2="î" k="-74" /> + <hkern u1="“" u2="ì" k="-82" /> + <hkern u1="”" u2="ð" k="160" /> + <hkern u1="”" u2="ï" k="-25" /> + <hkern u1="”" u2="î" k="-33" /> + <hkern u1="”" u2="ì" k="-25" /> + <hkern u1="„" u2="g" k="-20" /> + <hkern u1="†" u2="x" k="-33" /> + <hkern u1="†" u2="v" k="-61" /> + <hkern u1="†" u2="V" k="-29" /> + <hkern u1="‡" u2="ł" k="-12" /> + <hkern u1="‡" u2="Ł" k="-25" /> + <hkern u1="‡" u2="x" k="-33" /> + <hkern u1="‡" u2="v" k="-61" /> + <hkern u1="‡" u2="V" k="-20" /> + <hkern u1="•" u2="x" k="12" /> + <hkern u1="•" u2="X" k="86" /> + <hkern u1="•" u2="V" k="94" /> + <hkern u1="…" u2="g" k="33" /> + <hkern u1="−" u2=")" k="82" /> + <hkern g1="bracketleft,braceleft" + g2="hyphen,endash,emdash" + k="16" /> + <hkern g1="bracketleft,braceleft" + g2="minus" + k="33" /> + <hkern g1="bracketleft,braceleft" + g2="plus" + k="33" /> + <hkern g1="exclam" + g2="guilsinglright" + k="12" /> + <hkern g1="guilsinglleft" + g2="exclam" + k="12" /> + <hkern g1="hyphen,endash,emdash" + g2="bracketright,braceright" + k="16" /> + <hkern g1="hyphen,endash,emdash" + g2="parenright" + k="82" /> + <hkern g1="hyphen,endash,emdash" + g2="space" + k="102" /> + <hkern g1="parenleft" + g2="hyphen,endash,emdash" + k="82" /> + <hkern g1="questiondown" + g2="quoteleft,quotedblleft" + k="25" /> + <hkern g1="questiondown" + g2="quotesinglbase,quotedblbase" + k="-33" /> + <hkern g1="quoteright,quotedblright" + g2="comma,period,ellipsis" + k="57" /> + <hkern g1="quoteright,quotedblright" + g2="question" + k="-16" /> + <hkern g1="quoteright,quotedblright" + g2="questiondown" + k="49" /> + <hkern g1="minus" + g2="bracketright,braceright" + k="33" /> + <hkern g1="plus" + g2="bracketright,braceright" + k="33" /> + <hkern g1="space" + g2="hyphen,endash,emdash" + k="102" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="70" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="Eth" + k="12" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="J" + k="-8" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="Oslash" + k="53" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="S,Scaron" + k="8" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="133" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="43" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="V" + k="125" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="86" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="X" + k="37" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="Y,Yacute,Ydieresis" + k="164" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="Z,Zcaron" + k="-18" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="10" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="ampersand" + k="53" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="asciicircum" + k="90" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="asciitilde" + k="41" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="asterisk" + k="176" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="at" + k="86" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="backslash" + k="156" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="braceleft" + k="16" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="bracketright,braceright" + k="12" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="bullet" + k="74" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="20" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="colon,semicolon" + k="12" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="copyright,registered" + k="70" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="dagger" + k="74" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="daggerdbl" + k="12" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="divide" + k="33" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="equal" + k="25" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="exclam" + k="25" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="exclamdown" + k="12" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="f,fi,fl,f_f_i,f_f_l" + k="25" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="germandbls" + k="4" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="greater" + k="-25" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="guilsinglleft" + k="66" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="guilsinglright" + k="12" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="hyphen,endash,emdash" + k="66" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="less" + k="41" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="m,n,p,r,ntilde" + k="4" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="multiply" + k="12" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="ordfeminine" + k="164" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="ordmasculine" + k="147" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="oslash" + k="10" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="paragraph" + k="78" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="parenleft" + k="8" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="parenright" + k="25" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="periodcentered" + k="66" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="plus" + k="49" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="question" + k="111" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="questiondown" + k="-49" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="quotedbl,quotesingle" + k="131" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="quoteleft,quotedblleft" + k="225" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="quoteright,quotedblright" + k="225" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="quotesinglbase,quotedblbase" + k="-8" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="section" + k="12" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="slash" + k="-41" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="t" + k="45" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="trademark" + k="225" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="39" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="underscore" + k="-61" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="86" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="w" + k="61" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="82" /> + <hkern g1="B" + g2="J" + k="-37" /> + <hkern g1="B" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="-6" /> + <hkern g1="B" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="12" /> + <hkern g1="B" + g2="Y,Yacute,Ydieresis" + k="29" /> + <hkern g1="B" + g2="Z,Zcaron" + k="-12" /> + <hkern g1="B" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="2" /> + <hkern g1="B" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="-10" /> + <hkern g1="B" + g2="f,fi,fl,f_f_i,f_f_l" + k="4" /> + <hkern g1="B" + g2="guilsinglleft" + k="20" /> + <hkern g1="B" + g2="m,n,p,r,ntilde" + k="4" /> + <hkern g1="B" + g2="oslash" + k="-2" /> + <hkern g1="B" + g2="quoteright,quotedblright" + k="25" /> + <hkern g1="B" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="16" /> + <hkern g1="B" + g2="w" + k="4" /> + <hkern g1="B" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="4" /> + <hkern g1="B" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="35" /> + <hkern g1="B" + g2="comma,period,ellipsis" + k="12" /> + <hkern g1="B" + g2="s,scaron" + k="4" /> + <hkern g1="C,Ccedilla" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="14" /> + <hkern g1="C,Ccedilla" + g2="Oslash" + k="10" /> + <hkern g1="C,Ccedilla" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="16" /> + <hkern g1="C,Ccedilla" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="12" /> + <hkern g1="C,Ccedilla" + g2="V" + k="33" /> + <hkern g1="C,Ccedilla" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="37" /> + <hkern g1="C,Ccedilla" + g2="X" + k="55" /> + <hkern g1="C,Ccedilla" + g2="Y,Yacute,Ydieresis" + k="63" /> + <hkern g1="C,Ccedilla" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="29" /> + <hkern g1="C,Ccedilla" + g2="ampersand" + k="37" /> + <hkern g1="C,Ccedilla" + g2="asciicircum" + k="8" /> + <hkern g1="C,Ccedilla" + g2="at" + k="25" /> + <hkern g1="C,Ccedilla" + g2="backslash" + k="70" /> + <hkern g1="C,Ccedilla" + g2="braceleft" + k="16" /> + <hkern g1="C,Ccedilla" + g2="bracketright,braceright" + k="29" /> + <hkern g1="C,Ccedilla" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="35" /> + <hkern g1="C,Ccedilla" + g2="copyright,registered" + k="4" /> + <hkern g1="C,Ccedilla" + g2="f,fi,fl,f_f_i,f_f_l" + k="14" /> + <hkern g1="C,Ccedilla" + g2="germandbls" + k="41" /> + <hkern g1="C,Ccedilla" + g2="greater" + k="-8" /> + <hkern g1="C,Ccedilla" + g2="guilsinglleft" + k="45" /> + <hkern g1="C,Ccedilla" + g2="guilsinglright" + k="12" /> + <hkern g1="C,Ccedilla" + g2="hyphen,endash,emdash" + k="12" /> + <hkern g1="C,Ccedilla" + g2="m,n,p,r,ntilde" + k="18" /> + <hkern g1="C,Ccedilla" + g2="ordfeminine" + k="29" /> + <hkern g1="C,Ccedilla" + g2="ordmasculine" + k="4" /> + <hkern g1="C,Ccedilla" + g2="oslash" + k="25" /> + <hkern g1="C,Ccedilla" + g2="parenright" + k="37" /> + <hkern g1="C,Ccedilla" + g2="plus" + k="12" /> + <hkern g1="C,Ccedilla" + g2="questiondown" + k="66" /> + <hkern g1="C,Ccedilla" + g2="quoteleft,quotedblleft" + k="12" /> + <hkern g1="C,Ccedilla" + g2="quoteright,quotedblright" + k="12" /> + <hkern g1="C,Ccedilla" + g2="quotesinglbase,quotedblbase" + k="37" /> + <hkern g1="C,Ccedilla" + g2="section" + k="16" /> + <hkern g1="C,Ccedilla" + g2="slash" + k="70" /> + <hkern g1="C,Ccedilla" + g2="t" + k="16" /> + <hkern g1="C,Ccedilla" + g2="trademark" + k="20" /> + <hkern g1="C,Ccedilla" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="41" /> + <hkern g1="C,Ccedilla" + g2="underscore" + k="33" /> + <hkern g1="C,Ccedilla" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="20" /> + <hkern g1="C,Ccedilla" + g2="w" + k="20" /> + <hkern g1="C,Ccedilla" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="25" /> + <hkern g1="C,Ccedilla" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="59" /> + <hkern g1="C,Ccedilla" + g2="comma,period,ellipsis" + k="45" /> + <hkern g1="C,Ccedilla" + g2="s,scaron" + k="8" /> + <hkern g1="C,Ccedilla" + g2="b,h,k,l,thorn" + k="20" /> + <hkern g1="C,Ccedilla" + g2="florin" + k="82" /> + <hkern g1="C,Ccedilla" + g2="x" + k="14" /> + <hkern g1="C,Ccedilla" + g2="z,zcaron" + k="8" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="S,Scaron" + k="4" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="39" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="V" + k="51" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="47" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="X" + k="80" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="Y,Yacute,Ydieresis" + k="98" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="Z,Zcaron" + k="20" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="ampersand" + k="66" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="asciicircum" + k="-20" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="asciitilde" + k="-20" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="asterisk" + k="4" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="backslash" + k="90" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="bracketright,braceright" + k="53" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="-6" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="copyright,registered" + k="-8" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="dagger" + k="-12" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="daggerdbl" + k="-12" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="divide" + k="-12" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="equal" + k="-12" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="exclam" + k="12" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="exclamdown" + k="12" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="f,fi,fl,f_f_i,f_f_l" + k="-23" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="germandbls" + k="31" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="greater" + k="-20" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="guilsinglleft" + k="16" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="guilsinglright" + k="20" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="less" + k="-12" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="multiply" + k="-12" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="ordfeminine" + k="20" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="parenright" + k="53" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="periodcentered" + k="-12" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="plus" + k="-12" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="questiondown" + k="78" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="quoteleft,quotedblleft" + k="29" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="quoteright,quotedblright" + k="33" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="quotesinglbase,quotedblbase" + k="102" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="slash" + k="90" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="t" + k="-45" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="trademark" + k="66" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="underscore" + k="82" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="70" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="comma,period,ellipsis" + k="74" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="b,h,k,l,thorn" + k="6" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="florin" + k="98" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="z,zcaron" + k="-6" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="Lslash" + k="-8" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="bracketleft" + k="4" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="lslash" + k="-10" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="4" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="J" + k="33" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="Oslash" + k="4" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="-25" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="V" + k="-6" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-6" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="X" + k="-6" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="Y,Yacute,Ydieresis" + k="-12" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="Z,Zcaron" + k="-25" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="12" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="ampersand" + k="25" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="at" + k="20" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="braceleft" + k="37" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="bracketright,braceright" + k="-12" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="23" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="dagger" + k="-12" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="daggerdbl" + k="-12" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="f,fi,fl,f_f_i,f_f_l" + k="4" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="germandbls" + k="23" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="greater" + k="-33" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="guilsinglleft" + k="41" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="guilsinglright" + k="8" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="hyphen,endash,emdash" + k="4" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="m,n,p,r,ntilde" + k="12" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="ordfeminine" + k="20" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="ordmasculine" + k="20" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="oslash" + k="23" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="parenright" + k="-8" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="plus" + k="12" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="quoteright,quotedblright" + k="4" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="18" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="25" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="w" + k="18" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="25" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="s,scaron" + k="4" /> + <hkern g1="F" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="10" /> + <hkern g1="F" + g2="Eth" + k="-4" /> + <hkern g1="F" + g2="J" + k="76" /> + <hkern g1="F" + g2="Oslash" + k="6" /> + <hkern g1="F" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="-74" /> + <hkern g1="F" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="4" /> + <hkern g1="F" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-18" /> + <hkern g1="F" + g2="Y,Yacute,Ydieresis" + k="-18" /> + <hkern g1="F" + g2="Z,Zcaron" + k="-33" /> + <hkern g1="F" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="72" /> + <hkern g1="F" + g2="bracketright,braceright" + k="-25" /> + <hkern g1="F" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="66" /> + <hkern g1="F" + g2="colon,semicolon" + k="12" /> + <hkern g1="F" + g2="f,fi,fl,f_f_i,f_f_l" + k="8" /> + <hkern g1="F" + g2="guilsinglleft" + k="41" /> + <hkern g1="F" + g2="guilsinglright" + k="20" /> + <hkern g1="F" + g2="hyphen,endash,emdash" + k="33" /> + <hkern g1="F" + g2="m,n,p,r,ntilde" + k="70" /> + <hkern g1="F" + g2="oslash" + k="76" /> + <hkern g1="F" + g2="quotedbl,quotesingle" + k="-41" /> + <hkern g1="F" + g2="quoteleft,quotedblleft" + k="-29" /> + <hkern g1="F" + g2="quoteright,quotedblright" + k="-12" /> + <hkern g1="F" + g2="quotesinglbase,quotedblbase" + k="139" /> + <hkern g1="F" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="80" /> + <hkern g1="F" + g2="w" + k="35" /> + <hkern g1="F" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="55" /> + <hkern g1="F" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="111" /> + <hkern g1="F" + g2="comma,period,ellipsis" + k="217" /> + <hkern g1="F" + g2="s,scaron" + k="31" /> + <hkern g1="F" + g2="b,h,k,l,thorn" + k="-4" /> + <hkern g1="F" + g2="z,zcaron" + k="33" /> + <hkern g1="F" + g2="i,igrave,iacute,icircumflex,idieresis" + k="4" /> + <hkern g1="F" + g2="j" + k="10" /> + <hkern g1="G" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="23" /> + <hkern g1="G" + g2="V" + k="37" /> + <hkern g1="G" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="33" /> + <hkern g1="G" + g2="X" + k="6" /> + <hkern g1="G" + g2="Y,Yacute,Ydieresis" + k="68" /> + <hkern g1="G" + g2="ampersand" + k="37" /> + <hkern g1="G" + g2="asciitilde" + k="-4" /> + <hkern g1="G" + g2="backslash" + k="78" /> + <hkern g1="G" + g2="braceleft" + k="8" /> + <hkern g1="G" + g2="bracketright,braceright" + k="12" /> + <hkern g1="G" + g2="exclamdown" + k="12" /> + <hkern g1="G" + g2="germandbls" + k="12" /> + <hkern g1="G" + g2="greater" + k="-29" /> + <hkern g1="G" + g2="guilsinglleft" + k="29" /> + <hkern g1="G" + g2="guilsinglright" + k="12" /> + <hkern g1="G" + g2="ordmasculine" + k="12" /> + <hkern g1="G" + g2="parenright" + k="12" /> + <hkern g1="G" + g2="question" + k="12" /> + <hkern g1="G" + g2="questiondown" + k="-16" /> + <hkern g1="G" + g2="quoteleft,quotedblleft" + k="12" /> + <hkern g1="G" + g2="quoteright,quotedblright" + k="16" /> + <hkern g1="G" + g2="slash" + k="-4" /> + <hkern g1="G" + g2="t" + k="-20" /> + <hkern g1="G" + g2="trademark" + k="33" /> + <hkern g1="G" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="4" /> + <hkern g1="G" + g2="underscore" + k="-20" /> + <hkern g1="G" + g2="s,scaron" + k="-12" /> + <hkern g1="G" + g2="x" + k="-6" /> + <hkern g1="G" + g2="lslash" + k="-16" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="4" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="ampersand" + k="12" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="at" + k="8" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="braceleft" + k="25" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="bullet" + k="8" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="6" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="germandbls" + k="18" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="greater" + k="-8" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="guilsinglleft" + k="8" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="ordfeminine" + k="25" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="ordmasculine" + k="12" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="oslash" + k="12" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="questiondown" + k="25" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="6" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="w" + k="6" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="lslash" + k="12" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="J" + k="6" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="-6" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="X" + k="6" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="6" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="ampersand" + k="29" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="asciitilde" + k="4" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="at" + k="16" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="backslash" + k="12" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="braceleft" + k="41" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="bracketright,braceright" + k="12" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="bullet" + k="41" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="10" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="colon,semicolon" + k="10" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="divide" + k="4" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="equal" + k="6" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="exclamdown" + k="33" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="germandbls" + k="33" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="guilsinglleft" + k="33" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="guilsinglright" + k="12" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="hyphen,endash,emdash" + k="4" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="less" + k="4" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="m,n,p,r,ntilde" + k="10" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="ordfeminine" + k="12" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="ordmasculine" + k="12" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="oslash" + k="10" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="parenright" + k="12" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="periodcentered" + k="20" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="plus" + k="4" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="questiondown" + k="78" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="quotesinglbase,quotedblbase" + k="82" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="slash" + k="78" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="trademark" + k="12" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="12" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="underscore" + k="37" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="55" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="comma,period,ellipsis" + k="70" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="s,scaron" + k="6" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="florin" + k="102" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="lslash" + k="12" /> + <hkern g1="K" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="106" /> + <hkern g1="K" + g2="Eth" + k="37" /> + <hkern g1="K" + g2="J" + k="29" /> + <hkern g1="K" + g2="Oslash" + k="66" /> + <hkern g1="K" + g2="S,Scaron" + k="27" /> + <hkern g1="K" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="-6" /> + <hkern g1="K" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="14" /> + <hkern g1="K" + g2="V" + k="12" /> + <hkern g1="K" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="12" /> + <hkern g1="K" + g2="Z,Zcaron" + k="-12" /> + <hkern g1="K" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="43" /> + <hkern g1="K" + g2="ampersand" + k="82" /> + <hkern g1="K" + g2="asciicircum" + k="41" /> + <hkern g1="K" + g2="asciitilde" + k="135" /> + <hkern g1="K" + g2="asterisk" + k="8" /> + <hkern g1="K" + g2="at" + k="94" /> + <hkern g1="K" + g2="backslash" + k="-25" /> + <hkern g1="K" + g2="braceleft" + k="94" /> + <hkern g1="K" + g2="bracketright,braceright" + k="-4" /> + <hkern g1="K" + g2="bullet" + k="90" /> + <hkern g1="K" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="84" /> + <hkern g1="K" + g2="colon,semicolon" + k="20" /> + <hkern g1="K" + g2="copyright,registered" + k="119" /> + <hkern g1="K" + g2="divide" + k="61" /> + <hkern g1="K" + g2="equal" + k="66" /> + <hkern g1="K" + g2="f,fi,fl,f_f_i,f_f_l" + k="47" /> + <hkern g1="K" + g2="germandbls" + k="53" /> + <hkern g1="K" + g2="greater" + k="-37" /> + <hkern g1="K" + g2="guilsinglleft" + k="127" /> + <hkern g1="K" + g2="guilsinglright" + k="63" /> + <hkern g1="K" + g2="hyphen,endash,emdash" + k="150" /> + <hkern g1="K" + g2="less" + k="127" /> + <hkern g1="K" + g2="m,n,p,r,ntilde" + k="25" /> + <hkern g1="K" + g2="multiply" + k="20" /> + <hkern g1="K" + g2="ordfeminine" + k="82" /> + <hkern g1="K" + g2="ordmasculine" + k="74" /> + <hkern g1="K" + g2="oslash" + k="45" /> + <hkern g1="K" + g2="paragraph" + k="49" /> + <hkern g1="K" + g2="parenleft" + k="25" /> + <hkern g1="K" + g2="parenright" + k="-4" /> + <hkern g1="K" + g2="periodcentered" + k="82" /> + <hkern g1="K" + g2="plus" + k="70" /> + <hkern g1="K" + g2="question" + k="29" /> + <hkern g1="K" + g2="questiondown" + k="-45" /> + <hkern g1="K" + g2="quoteleft,quotedblleft" + k="37" /> + <hkern g1="K" + g2="quoteright,quotedblright" + k="12" /> + <hkern g1="K" + g2="section" + k="25" /> + <hkern g1="K" + g2="slash" + k="-29" /> + <hkern g1="K" + g2="t" + k="92" /> + <hkern g1="K" + g2="trademark" + k="-12" /> + <hkern g1="K" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="113" /> + <hkern g1="K" + g2="underscore" + k="-53" /> + <hkern g1="K" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="129" /> + <hkern g1="K" + g2="w" + k="104" /> + <hkern g1="K" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="141" /> + <hkern g1="K" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="8" /> + <hkern g1="K" + g2="s,scaron" + k="20" /> + <hkern g1="K" + g2="florin" + k="41" /> + <hkern g1="K" + g2="x" + k="8" /> + <hkern g1="K" + g2="lslash" + k="12" /> + <hkern g1="L,Lslash" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="47" /> + <hkern g1="L,Lslash" + g2="J" + k="-35" /> + <hkern g1="L,Lslash" + g2="Oslash" + k="29" /> + <hkern g1="L,Lslash" + g2="S,Scaron" + k="-6" /> + <hkern g1="L,Lslash" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="143" /> + <hkern g1="L,Lslash" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="20" /> + <hkern g1="L,Lslash" + g2="V" + k="135" /> + <hkern g1="L,Lslash" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="96" /> + <hkern g1="L,Lslash" + g2="Y,Yacute,Ydieresis" + k="145" /> + <hkern g1="L,Lslash" + g2="Z,Zcaron" + k="-37" /> + <hkern g1="L,Lslash" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="-12" /> + <hkern g1="L,Lslash" + g2="ampersand" + k="33" /> + <hkern g1="L,Lslash" + g2="asciicircum" + k="78" /> + <hkern g1="L,Lslash" + g2="asciitilde" + k="41" /> + <hkern g1="L,Lslash" + g2="asterisk" + k="143" /> + <hkern g1="L,Lslash" + g2="at" + k="23" /> + <hkern g1="L,Lslash" + g2="backslash" + k="180" /> + <hkern g1="L,Lslash" + g2="braceleft" + k="25" /> + <hkern g1="L,Lslash" + g2="bracketright,braceright" + k="-8" /> + <hkern g1="L,Lslash" + g2="bullet" + k="29" /> + <hkern g1="L,Lslash" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="-2" /> + <hkern g1="L,Lslash" + g2="copyright,registered" + k="29" /> + <hkern g1="L,Lslash" + g2="dagger" + k="25" /> + <hkern g1="L,Lslash" + g2="divide" + k="-4" /> + <hkern g1="L,Lslash" + g2="equal" + k="4" /> + <hkern g1="L,Lslash" + g2="f,fi,fl,f_f_i,f_f_l" + k="20" /> + <hkern g1="L,Lslash" + g2="germandbls" + k="4" /> + <hkern g1="L,Lslash" + g2="greater" + k="-37" /> + <hkern g1="L,Lslash" + g2="guilsinglleft" + k="41" /> + <hkern g1="L,Lslash" + g2="hyphen,endash,emdash" + k="45" /> + <hkern g1="L,Lslash" + g2="less" + k="45" /> + <hkern g1="L,Lslash" + g2="multiply" + k="-12" /> + <hkern g1="L,Lslash" + g2="ordfeminine" + k="115" /> + <hkern g1="L,Lslash" + g2="ordmasculine" + k="115" /> + <hkern g1="L,Lslash" + g2="oslash" + k="4" /> + <hkern g1="L,Lslash" + g2="paragraph" + k="90" /> + <hkern g1="L,Lslash" + g2="parenright" + k="-8" /> + <hkern g1="L,Lslash" + g2="periodcentered" + k="25" /> + <hkern g1="L,Lslash" + g2="plus" + k="29" /> + <hkern g1="L,Lslash" + g2="question" + k="111" /> + <hkern g1="L,Lslash" + g2="questiondown" + k="-49" /> + <hkern g1="L,Lslash" + g2="quotedbl,quotesingle" + k="139" /> + <hkern g1="L,Lslash" + g2="quoteleft,quotedblleft" + k="168" /> + <hkern g1="L,Lslash" + g2="quoteright,quotedblright" + k="147" /> + <hkern g1="L,Lslash" + g2="quotesinglbase,quotedblbase" + k="-66" /> + <hkern g1="L,Lslash" + g2="slash" + k="-70" /> + <hkern g1="L,Lslash" + g2="t" + k="49" /> + <hkern g1="L,Lslash" + g2="trademark" + k="238" /> + <hkern g1="L,Lslash" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="29" /> + <hkern g1="L,Lslash" + g2="underscore" + k="-74" /> + <hkern g1="L,Lslash" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="94" /> + <hkern g1="L,Lslash" + g2="w" + k="76" /> + <hkern g1="L,Lslash" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="98" /> + <hkern g1="L,Lslash" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="-16" /> + <hkern g1="L,Lslash" + g2="comma,period,ellipsis" + k="-20" /> + <hkern g1="L,Lslash" + g2="s,scaron" + k="-18" /> + <hkern g1="L,Lslash" + g2="z,zcaron" + k="-18" /> + <hkern g1="L,Lslash" + g2="j" + k="-12" /> + <hkern g1="L,Lslash" + g2="bar" + k="-16" /> + <hkern g1="L,Lslash" + g2="brokenbar" + k="-16" /> + <hkern g1="Oslash" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="29" /> + <hkern g1="Oslash" + g2="V" + k="47" /> + <hkern g1="Oslash" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="49" /> + <hkern g1="Oslash" + g2="X" + k="61" /> + <hkern g1="Oslash" + g2="Y,Yacute,Ydieresis" + k="96" /> + <hkern g1="Oslash" + g2="Z,Zcaron" + k="14" /> + <hkern g1="Oslash" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="4" /> + <hkern g1="Oslash" + g2="ampersand" + k="25" /> + <hkern g1="Oslash" + g2="backslash" + k="70" /> + <hkern g1="Oslash" + g2="bracketright,braceright" + k="53" /> + <hkern g1="Oslash" + g2="dagger" + k="-12" /> + <hkern g1="Oslash" + g2="daggerdbl" + k="-12" /> + <hkern g1="Oslash" + g2="equal" + k="-12" /> + <hkern g1="Oslash" + g2="f,fi,fl,f_f_i,f_f_l" + k="-12" /> + <hkern g1="Oslash" + g2="germandbls" + k="43" /> + <hkern g1="Oslash" + g2="guilsinglright" + k="12" /> + <hkern g1="Oslash" + g2="ordfeminine" + k="8" /> + <hkern g1="Oslash" + g2="parenright" + k="53" /> + <hkern g1="Oslash" + g2="questiondown" + k="90" /> + <hkern g1="Oslash" + g2="quotesinglbase,quotedblbase" + k="74" /> + <hkern g1="Oslash" + g2="slash" + k="90" /> + <hkern g1="Oslash" + g2="trademark" + k="25" /> + <hkern g1="Oslash" + g2="underscore" + k="82" /> + <hkern g1="Oslash" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="63" /> + <hkern g1="Oslash" + g2="comma,period,ellipsis" + k="74" /> + <hkern g1="Oslash" + g2="florin" + k="70" /> + <hkern g1="Oslash" + g2="lslash" + k="-4" /> + <hkern g1="P" + g2="Eth" + k="-8" /> + <hkern g1="P" + g2="J" + k="131" /> + <hkern g1="P" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="-2" /> + <hkern g1="P" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="10" /> + <hkern g1="P" + g2="Y,Yacute,Ydieresis" + k="29" /> + <hkern g1="P" + g2="Z,Zcaron" + k="8" /> + <hkern g1="P" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="37" /> + <hkern g1="P" + g2="bracketright,braceright" + k="12" /> + <hkern g1="P" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="63" /> + <hkern g1="P" + g2="f,fi,fl,f_f_i,f_f_l" + k="-16" /> + <hkern g1="P" + g2="guilsinglleft" + k="49" /> + <hkern g1="P" + g2="guilsinglright" + k="-8" /> + <hkern g1="P" + g2="hyphen,endash,emdash" + k="20" /> + <hkern g1="P" + g2="m,n,p,r,ntilde" + k="25" /> + <hkern g1="P" + g2="oslash" + k="66" /> + <hkern g1="P" + g2="quotedbl,quotesingle" + k="-20" /> + <hkern g1="P" + g2="quoteleft,quotedblleft" + k="-12" /> + <hkern g1="P" + g2="quoteright,quotedblright" + k="-8" /> + <hkern g1="P" + g2="quotesinglbase,quotedblbase" + k="139" /> + <hkern g1="P" + g2="t" + k="-20" /> + <hkern g1="P" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="41" /> + <hkern g1="P" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-8" /> + <hkern g1="P" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="117" /> + <hkern g1="P" + g2="comma,period,ellipsis" + k="283" /> + <hkern g1="P" + g2="s,scaron" + k="33" /> + <hkern g1="P" + g2="b,h,k,l,thorn" + k="14" /> + <hkern g1="P" + g2="z,zcaron" + k="8" /> + <hkern g1="P" + g2="j" + k="4" /> + <hkern g1="P" + g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Ntilde,Thorn,IJ,uni01C4,uni01C7,uni01CA,uni01F1" + k="6" /> + <hkern g1="Q" + g2="Eth" + k="-4" /> + <hkern g1="Q" + g2="J" + k="-4" /> + <hkern g1="Q" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="35" /> + <hkern g1="Q" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="47" /> + <hkern g1="Q" + g2="Y,Yacute,Ydieresis" + k="94" /> + <hkern g1="Q" + g2="Z,Zcaron" + k="-6" /> + <hkern g1="Q" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="-8" /> + <hkern g1="Q" + g2="bracketright,braceright" + k="45" /> + <hkern g1="Q" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="-6" /> + <hkern g1="Q" + g2="f,fi,fl,f_f_i,f_f_l" + k="-12" /> + <hkern g1="Q" + g2="guilsinglleft" + k="12" /> + <hkern g1="Q" + g2="guilsinglright" + k="25" /> + <hkern g1="Q" + g2="quoteleft,quotedblleft" + k="25" /> + <hkern g1="Q" + g2="quoteright,quotedblright" + k="33" /> + <hkern g1="Q" + g2="t" + k="-18" /> + <hkern g1="Q" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="6" /> + <hkern g1="Q" + g2="w" + k="4" /> + <hkern g1="Q" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="4" /> + <hkern g1="Q" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="12" /> + <hkern g1="Q" + g2="comma,period,ellipsis" + k="45" /> + <hkern g1="Q" + g2="z,zcaron" + k="-6" /> + <hkern g1="Q" + g2="j" + k="-25" /> + <hkern g1="R" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="10" /> + <hkern g1="R" + g2="J" + k="25" /> + <hkern g1="R" + g2="Oslash" + k="4" /> + <hkern g1="R" + g2="V" + k="10" /> + <hkern g1="R" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="16" /> + <hkern g1="R" + g2="Y,Yacute,Ydieresis" + k="20" /> + <hkern g1="R" + g2="Z,Zcaron" + k="-6" /> + <hkern g1="R" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="16" /> + <hkern g1="R" + g2="ampersand" + k="29" /> + <hkern g1="R" + g2="asciicircum" + k="-8" /> + <hkern g1="R" + g2="asciitilde" + k="8" /> + <hkern g1="R" + g2="asterisk" + k="-8" /> + <hkern g1="R" + g2="at" + k="18" /> + <hkern g1="R" + g2="backslash" + k="47" /> + <hkern g1="R" + g2="braceleft" + k="20" /> + <hkern g1="R" + g2="bracketright,braceright" + k="-8" /> + <hkern g1="R" + g2="bullet" + k="29" /> + <hkern g1="R" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="29" /> + <hkern g1="R" + g2="dagger" + k="-33" /> + <hkern g1="R" + g2="daggerdbl" + k="-33" /> + <hkern g1="R" + g2="divide" + k="12" /> + <hkern g1="R" + g2="f,fi,fl,f_f_i,f_f_l" + k="-6" /> + <hkern g1="R" + g2="germandbls" + k="12" /> + <hkern g1="R" + g2="greater" + k="-45" /> + <hkern g1="R" + g2="guilsinglleft" + k="37" /> + <hkern g1="R" + g2="hyphen,endash,emdash" + k="29" /> + <hkern g1="R" + g2="less" + k="4" /> + <hkern g1="R" + g2="m,n,p,r,ntilde" + k="4" /> + <hkern g1="R" + g2="multiply" + k="-12" /> + <hkern g1="R" + g2="ordfeminine" + k="16" /> + <hkern g1="R" + g2="oslash" + k="37" /> + <hkern g1="R" + g2="parenright" + k="-4" /> + <hkern g1="R" + g2="periodcentered" + k="4" /> + <hkern g1="R" + g2="plus" + k="20" /> + <hkern g1="R" + g2="quoteleft,quotedblleft" + k="-8" /> + <hkern g1="R" + g2="t" + k="-18" /> + <hkern g1="R" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="23" /> + <hkern g1="R" + g2="underscore" + k="-29" /> + <hkern g1="R" + g2="w" + k="8" /> + <hkern g1="R" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="4" /> + <hkern g1="R" + g2="comma,period,ellipsis" + k="29" /> + <hkern g1="R" + g2="s,scaron" + k="4" /> + <hkern g1="R" + g2="florin" + k="41" /> + <hkern g1="R" + g2="x" + k="-8" /> + <hkern g1="R" + g2="lslash" + k="10" /> + <hkern g1="S,Scaron" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="4" /> + <hkern g1="S,Scaron" + g2="J" + k="-8" /> + <hkern g1="S,Scaron" + g2="Oslash" + k="4" /> + <hkern g1="S,Scaron" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="4" /> + <hkern g1="S,Scaron" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="4" /> + <hkern g1="S,Scaron" + g2="V" + k="6" /> + <hkern g1="S,Scaron" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="6" /> + <hkern g1="S,Scaron" + g2="X" + k="25" /> + <hkern g1="S,Scaron" + g2="Y,Yacute,Ydieresis" + k="39" /> + <hkern g1="S,Scaron" + g2="Z,Zcaron" + k="-12" /> + <hkern g1="S,Scaron" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="4" /> + <hkern g1="S,Scaron" + g2="ampersand" + k="25" /> + <hkern g1="S,Scaron" + g2="asciicircum" + k="4" /> + <hkern g1="S,Scaron" + g2="backslash" + k="45" /> + <hkern g1="S,Scaron" + g2="braceleft" + k="16" /> + <hkern g1="S,Scaron" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="8" /> + <hkern g1="S,Scaron" + g2="colon,semicolon" + k="12" /> + <hkern g1="S,Scaron" + g2="daggerdbl" + k="-12" /> + <hkern g1="S,Scaron" + g2="exclamdown" + k="12" /> + <hkern g1="S,Scaron" + g2="f,fi,fl,f_f_i,f_f_l" + k="12" /> + <hkern g1="S,Scaron" + g2="germandbls" + k="43" /> + <hkern g1="S,Scaron" + g2="greater" + k="-20" /> + <hkern g1="S,Scaron" + g2="guilsinglleft" + k="4" /> + <hkern g1="S,Scaron" + g2="guilsinglright" + k="4" /> + <hkern g1="S,Scaron" + g2="hyphen,endash,emdash" + k="4" /> + <hkern g1="S,Scaron" + g2="m,n,p,r,ntilde" + k="31" /> + <hkern g1="S,Scaron" + g2="multiply" + k="4" /> + <hkern g1="S,Scaron" + g2="ordfeminine" + k="33" /> + <hkern g1="S,Scaron" + g2="ordmasculine" + k="20" /> + <hkern g1="S,Scaron" + g2="oslash" + k="8" /> + <hkern g1="S,Scaron" + g2="parenright" + k="12" /> + <hkern g1="S,Scaron" + g2="questiondown" + k="25" /> + <hkern g1="S,Scaron" + g2="quoteleft,quotedblleft" + k="12" /> + <hkern g1="S,Scaron" + g2="quotesinglbase,quotedblbase" + k="25" /> + <hkern g1="S,Scaron" + g2="slash" + k="37" /> + <hkern g1="S,Scaron" + g2="t" + k="-10" /> + <hkern g1="S,Scaron" + g2="trademark" + k="25" /> + <hkern g1="S,Scaron" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="27" /> + <hkern g1="S,Scaron" + g2="underscore" + k="8" /> + <hkern g1="S,Scaron" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="41" /> + <hkern g1="S,Scaron" + g2="w" + k="29" /> + <hkern g1="S,Scaron" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="45" /> + <hkern g1="S,Scaron" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="29" /> + <hkern g1="S,Scaron" + g2="comma,period,ellipsis" + k="12" /> + <hkern g1="S,Scaron" + g2="b,h,k,l,thorn" + k="10" /> + <hkern g1="S,Scaron" + g2="florin" + k="90" /> + <hkern g1="S,Scaron" + g2="x" + k="12" /> + <hkern g1="S,Scaron" + g2="z,zcaron" + k="4" /> + <hkern g1="S,Scaron" + g2="Lslash" + k="-4" /> + <hkern g1="S,Scaron" + g2="lslash" + k="-6" /> + <hkern g1="S,Scaron" + g2="i,igrave,iacute,icircumflex,idieresis" + k="4" /> + <hkern g1="S,Scaron" + g2="j" + k="4" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="39" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="J" + k="164" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="Oslash" + k="29" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="-41" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="-6" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="V" + k="-41" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-41" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="X" + k="-6" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="Y,Yacute,Ydieresis" + k="-41" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="Z,Zcaron" + k="-25" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="174" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="ampersand" + k="74" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="asciitilde" + k="131" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="asterisk" + k="-41" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="at" + k="51" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="backslash" + k="-57" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="braceleft" + k="74" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="bracketright,braceright" + k="-16" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="bullet" + k="168" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="195" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="colon,semicolon" + k="104" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="copyright,registered" + k="20" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="dagger" + k="-53" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="daggerdbl" + k="-45" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="divide" + k="86" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="equal" + k="61" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="exclamdown" + k="49" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="f,fi,fl,f_f_i,f_f_l" + k="33" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="germandbls" + k="66" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="greater" + k="-16" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="guilsinglleft" + k="233" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="guilsinglright" + k="127" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="hyphen,endash,emdash" + k="135" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="less" + k="106" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="m,n,p,r,ntilde" + k="147" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="multiply" + k="45" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="oslash" + k="166" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="paragraph" + k="-33" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="parenright" + k="-16" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="periodcentered" + k="102" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="plus" + k="115" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="question" + k="-29" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="questiondown" + k="160" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="quotedbl,quotesingle" + k="-49" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="quoteleft,quotedblleft" + k="-61" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="quoteright,quotedblright" + k="-61" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="quotesinglbase,quotedblbase" + k="188" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="section" + k="-16" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="slash" + k="180" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="t" + k="45" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="trademark" + k="-49" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="170" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="underscore" + k="94" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="119" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="w" + k="123" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="119" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="133" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="comma,period,ellipsis" + k="229" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="s,scaron" + k="143" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="b,h,k,l,thorn" + k="-6" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="florin" + k="188" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="x" + k="98" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="z,zcaron" + k="74" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="lslash" + k="41" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="i,igrave,iacute,icircumflex,idieresis" + k="16" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="j" + k="8" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="bar" + k="-29" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="brokenbar" + k="-41" /> + <hkern g1="Thorn" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="-4" /> + <hkern g1="Thorn" + g2="Eth" + k="-12" /> + <hkern g1="Thorn" + g2="J" + k="23" /> + <hkern g1="Thorn" + g2="Oslash" + k="-4" /> + <hkern g1="Thorn" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="47" /> + <hkern g1="Thorn" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="37" /> + <hkern g1="Thorn" + g2="Y,Yacute,Ydieresis" + k="78" /> + <hkern g1="Thorn" + g2="Z,Zcaron" + k="14" /> + <hkern g1="Thorn" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="-14" /> + <hkern g1="Thorn" + g2="bracketright,braceright" + k="33" /> + <hkern g1="Thorn" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="-14" /> + <hkern g1="Thorn" + g2="f,fi,fl,f_f_i,f_f_l" + k="-29" /> + <hkern g1="Thorn" + g2="oslash" + k="4" /> + <hkern g1="Thorn" + g2="quoteleft,quotedblleft" + k="25" /> + <hkern g1="Thorn" + g2="quotesinglbase,quotedblbase" + k="82" /> + <hkern g1="Thorn" + g2="t" + k="-33" /> + <hkern g1="Thorn" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="6" /> + <hkern g1="Thorn" + g2="w" + k="-8" /> + <hkern g1="Thorn" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-8" /> + <hkern g1="Thorn" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="94" /> + <hkern g1="Thorn" + g2="comma,period,ellipsis" + k="74" /> + <hkern g1="Thorn" + g2="s,scaron" + k="-8" /> + <hkern g1="Thorn" + g2="z,zcaron" + k="-16" /> + <hkern g1="V" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="51" /> + <hkern g1="V" + g2="J" + k="131" /> + <hkern g1="V" + g2="Oslash" + k="51" /> + <hkern g1="V" + g2="S,Scaron" + k="10" /> + <hkern g1="V" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="-41" /> + <hkern g1="V" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-20" /> + <hkern g1="V" + g2="Y,Yacute,Ydieresis" + k="-20" /> + <hkern g1="V" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="125" /> + <hkern g1="V" + g2="bracketright,braceright" + k="-29" /> + <hkern g1="V" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="131" /> + <hkern g1="V" + g2="colon,semicolon" + k="106" /> + <hkern g1="V" + g2="copyright,registered" + k="57" /> + <hkern g1="V" + g2="f,fi,fl,f_f_i,f_f_l" + k="6" /> + <hkern g1="V" + g2="guilsinglleft" + k="135" /> + <hkern g1="V" + g2="guilsinglright" + k="70" /> + <hkern g1="V" + g2="hyphen,endash,emdash" + k="131" /> + <hkern g1="V" + g2="m,n,p,r,ntilde" + k="98" /> + <hkern g1="V" + g2="oslash" + k="131" /> + <hkern g1="V" + g2="quotedbl,quotesingle" + k="-29" /> + <hkern g1="V" + g2="quoteleft,quotedblleft" + k="-20" /> + <hkern g1="V" + g2="quoteright,quotedblright" + k="-16" /> + <hkern g1="V" + g2="quotesinglbase,quotedblbase" + k="213" /> + <hkern g1="V" + g2="t" + k="16" /> + <hkern g1="V" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="90" /> + <hkern g1="V" + g2="w" + k="33" /> + <hkern g1="V" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="35" /> + <hkern g1="V" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="125" /> + <hkern g1="V" + g2="comma,period,ellipsis" + k="242" /> + <hkern g1="V" + g2="s,scaron" + k="90" /> + <hkern g1="V" + g2="z,zcaron" + k="35" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="47" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="Eth" + k="6" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="J" + k="115" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="Oslash" + k="53" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="S,Scaron" + k="6" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="-41" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="V" + k="-20" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-20" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="X" + k="-20" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="Y,Yacute,Ydieresis" + k="-20" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="Z,Zcaron" + k="-6" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="61" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="ampersand" + k="49" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="asciitilde" + k="41" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="asterisk" + k="-20" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="at" + k="41" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="backslash" + k="-41" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="braceleft" + k="49" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="bracketright,braceright" + k="-16" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="bullet" + k="49" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="78" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="colon,semicolon" + k="33" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="copyright,registered" + k="25" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="dagger" + k="-25" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="daggerdbl" + k="-12" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="divide" + k="47" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="equal" + k="20" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="exclamdown" + k="45" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="f,fi,fl,f_f_i,f_f_l" + k="6" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="germandbls" + k="61" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="greater" + k="-25" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="guilsinglleft" + k="98" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="guilsinglright" + k="20" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="hyphen,endash,emdash" + k="57" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="less" + k="41" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="m,n,p,r,ntilde" + k="61" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="multiply" + k="12" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="oslash" + k="86" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="parenright" + k="-16" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="periodcentered" + k="49" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="plus" + k="61" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="questiondown" + k="147" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="quotedbl,quotesingle" + k="-16" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="quoteleft,quotedblleft" + k="-29" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="quoteright,quotedblright" + k="-29" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="quotesinglbase,quotedblbase" + k="176" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="slash" + k="147" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="t" + k="4" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="trademark" + k="-41" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="68" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="underscore" + k="98" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="16" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="w" + k="20" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="35" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="86" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="comma,period,ellipsis" + k="180" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="s,scaron" + k="41" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="florin" + k="123" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="x" + k="6" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="z,zcaron" + k="10" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="lslash" + k="12" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="bar" + k="-29" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="brokenbar" + k="-29" /> + <hkern g1="X" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="72" /> + <hkern g1="X" + g2="J" + k="57" /> + <hkern g1="X" + g2="Oslash" + k="61" /> + <hkern g1="X" + g2="S,Scaron" + k="25" /> + <hkern g1="X" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="-6" /> + <hkern g1="X" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="6" /> + <hkern g1="X" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-20" /> + <hkern g1="X" + g2="Y,Yacute,Ydieresis" + k="-20" /> + <hkern g1="X" + g2="Z,Zcaron" + k="-8" /> + <hkern g1="X" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="25" /> + <hkern g1="X" + g2="bracketright,braceright" + k="-16" /> + <hkern g1="X" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="76" /> + <hkern g1="X" + g2="colon,semicolon" + k="25" /> + <hkern g1="X" + g2="copyright,registered" + k="98" /> + <hkern g1="X" + g2="f,fi,fl,f_f_i,f_f_l" + k="12" /> + <hkern g1="X" + g2="guilsinglleft" + k="164" /> + <hkern g1="X" + g2="guilsinglright" + k="61" /> + <hkern g1="X" + g2="hyphen,endash,emdash" + k="131" /> + <hkern g1="X" + g2="m,n,p,r,ntilde" + k="6" /> + <hkern g1="X" + g2="oslash" + k="45" /> + <hkern g1="X" + g2="quotedbl,quotesingle" + k="-8" /> + <hkern g1="X" + g2="quoteleft,quotedblleft" + k="-8" /> + <hkern g1="X" + g2="quoteright,quotedblright" + k="-8" /> + <hkern g1="X" + g2="t" + k="37" /> + <hkern g1="X" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="57" /> + <hkern g1="X" + g2="w" + k="63" /> + <hkern g1="X" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="68" /> + <hkern g1="X" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="37" /> + <hkern g1="X" + g2="comma,period,ellipsis" + k="12" /> + <hkern g1="X" + g2="s,scaron" + k="25" /> + <hkern g1="X" + g2="z,zcaron" + k="-4" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="98" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="Eth" + k="25" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="J" + k="184" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="Oslash" + k="88" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="S,Scaron" + k="39" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="-41" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="V" + k="-20" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-20" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="X" + k="-20" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="Y,Yacute,Ydieresis" + k="-20" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="Z,Zcaron" + k="-4" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="164" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="ampersand" + k="139" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="asciicircum" + k="25" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="asciitilde" + k="135" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="asterisk" + k="12" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="at" + k="106" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="backslash" + k="-33" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="braceleft" + k="66" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="bracketright,braceright" + k="-16" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="bullet" + k="180" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="203" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="colon,semicolon" + k="154" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="copyright,registered" + k="82" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="divide" + k="115" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="equal" + k="74" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="exclamdown" + k="98" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="f,fi,fl,f_f_i,f_f_l" + k="57" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="germandbls" + k="100" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="guilsinglleft" + k="238" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="guilsinglright" + k="111" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="hyphen,endash,emdash" + k="188" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="less" + k="147" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="m,n,p,r,ntilde" + k="135" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="multiply" + k="61" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="ordfeminine" + k="25" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="ordmasculine" + k="25" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="oslash" + k="184" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="parenright" + k="-16" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="periodcentered" + k="135" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="plus" + k="127" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="questiondown" + k="205" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="quotedbl,quotesingle" + k="-8" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="quoteleft,quotedblleft" + k="-16" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="quoteright,quotedblright" + k="-16" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="quotesinglbase,quotedblbase" + k="242" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="slash" + k="217" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="t" + k="51" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="trademark" + k="-25" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="141" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="underscore" + k="160" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="100" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="w" + k="109" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="92" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="164" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="comma,period,ellipsis" + k="266" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="s,scaron" + k="145" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="b,h,k,l,thorn" + k="6" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="florin" + k="184" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="x" + k="74" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="z,zcaron" + k="90" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="Lslash" + k="25" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="lslash" + k="25" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="i,igrave,iacute,icircumflex,idieresis" + k="16" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="j" + k="4" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="bar" + k="-20" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="brokenbar" + k="-20" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="41" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="Oslash" + k="23" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="-37" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="X" + k="-8" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="Y,Yacute,Ydieresis" + k="-4" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="ampersand" + k="25" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="asciitilde" + k="12" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="at" + k="12" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="bullet" + k="33" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="16" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="copyright,registered" + k="12" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="dagger" + k="-12" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="daggerdbl" + k="-12" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="divide" + k="12" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="f,fi,fl,f_f_i,f_f_l" + k="-18" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="germandbls" + k="4" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="guilsinglleft" + k="57" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="hyphen,endash,emdash" + k="61" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="less" + k="18" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="multiply" + k="-12" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="oslash" + k="12" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="periodcentered" + k="33" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="plus" + k="14" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="question" + k="-4" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="questiondown" + k="-12" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="trademark" + k="-12" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="16" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="underscore" + k="-33" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="6" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="w" + k="10" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="16" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="florin" + k="16" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="bar" + k="-12" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="brokenbar" + k="-12" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="6" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="ampersand" + k="45" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="asterisk" + k="41" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="at" + k="20" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="backslash" + k="123" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="bracketright,braceright" + k="12" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="bullet" + k="6" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="4" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="colon,semicolon" + k="6" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="dagger" + k="12" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="daggerdbl" + k="12" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="exclam" + k="25" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="ordfeminine" + k="33" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="ordmasculine" + k="25" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="paragraph" + k="12" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="parenright" + k="12" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="question" + k="25" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="quotedbl,quotesingle" + k="25" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="quoteleft,quotedblleft" + k="70" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="quoteright,quotedblright" + k="41" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="t" + k="6" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="trademark" + k="113" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="14" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="underscore" + k="-37" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="18" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="w" + k="12" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="27" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="ampersand" + k="45" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="asterisk" + k="57" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="backslash" + k="193" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="bracketright,braceright" + k="66" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="colon,semicolon" + k="16" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="dagger" + k="12" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="daggerdbl" + k="-12" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="exclam" + k="25" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="ordfeminine" + k="47" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="ordmasculine" + k="25" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="parenright" + k="66" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="question" + k="57" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="quotedbl,quotesingle" + k="53" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="quoteleft,quotedblleft" + k="82" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="quoteright,quotedblright" + k="82" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="t" + k="4" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="trademark" + k="152" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="4" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="underscore" + k="53" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="31" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="w" + k="27" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="47" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="asciitilde" + k="-12" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="comma,period,ellipsis" + k="37" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="exclamdown" + k="25" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="florin" + k="49" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="germandbls" + k="4" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="guilsinglright" + k="12" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="lslash" + k="-16" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="questiondown" + k="49" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="quotesinglbase,quotedblbase" + k="33" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="slash" + k="74" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="x" + k="39" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="z,zcaron" + k="4" /> + <hkern g1="c,ccedilla" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="4" /> + <hkern g1="c,ccedilla" + g2="ampersand" + k="41" /> + <hkern g1="c,ccedilla" + g2="asterisk" + k="33" /> + <hkern g1="c,ccedilla" + g2="at" + k="4" /> + <hkern g1="c,ccedilla" + g2="backslash" + k="156" /> + <hkern g1="c,ccedilla" + g2="bracketright,braceright" + k="25" /> + <hkern g1="c,ccedilla" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="10" /> + <hkern g1="c,ccedilla" + g2="ordfeminine" + k="27" /> + <hkern g1="c,ccedilla" + g2="ordmasculine" + k="20" /> + <hkern g1="c,ccedilla" + g2="parenright" + k="37" /> + <hkern g1="c,ccedilla" + g2="question" + k="12" /> + <hkern g1="c,ccedilla" + g2="quotedbl,quotesingle" + k="37" /> + <hkern g1="c,ccedilla" + g2="quoteleft,quotedblleft" + k="57" /> + <hkern g1="c,ccedilla" + g2="quoteright,quotedblright" + k="49" /> + <hkern g1="c,ccedilla" + g2="trademark" + k="111" /> + <hkern g1="c,ccedilla" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="16" /> + <hkern g1="c,ccedilla" + g2="underscore" + k="8" /> + <hkern g1="c,ccedilla" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="23" /> + <hkern g1="c,ccedilla" + g2="w" + k="23" /> + <hkern g1="c,ccedilla" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="23" /> + <hkern g1="c,ccedilla" + g2="comma,period,ellipsis" + k="12" /> + <hkern g1="c,ccedilla" + g2="questiondown" + k="20" /> + <hkern g1="c,ccedilla" + g2="quotesinglbase,quotedblbase" + k="14" /> + <hkern g1="c,ccedilla" + g2="slash" + k="37" /> + <hkern g1="c,ccedilla" + g2="x" + k="16" /> + <hkern g1="c,ccedilla" + g2="hyphen,endash,emdash" + k="6" /> + <hkern g1="c,ccedilla" + g2="oslash" + k="10" /> + <hkern g1="d,l,fl" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="6" /> + <hkern g1="d,l,fl" + g2="ampersand" + k="25" /> + <hkern g1="d,l,fl" + g2="backslash" + k="12" /> + <hkern g1="d,l,fl" + g2="dagger" + k="-12" /> + <hkern g1="d,l,fl" + g2="daggerdbl" + k="-12" /> + <hkern g1="d,l,fl" + g2="ordfeminine" + k="25" /> + <hkern g1="d,l,fl" + g2="ordmasculine" + k="12" /> + <hkern g1="d,l,fl" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="4" /> + <hkern g1="d,l,fl" + g2="comma,period,ellipsis" + k="12" /> + <hkern g1="d,l,fl" + g2="exclamdown" + k="12" /> + <hkern g1="d,l,fl" + g2="germandbls" + k="4" /> + <hkern g1="d,l,fl" + g2="questiondown" + k="12" /> + <hkern g1="d,l,fl" + g2="guilsinglleft" + k="12" /> + <hkern g1="d,l,fl" + g2="periodcentered" + k="12" /> + <hkern g1="d,l,fl" + g2="plus" + k="25" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="ampersand" + k="37" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="asterisk" + k="41" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="backslash" + k="156" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="bracketright,braceright" + k="33" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="ordfeminine" + k="37" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="ordmasculine" + k="25" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="paragraph" + k="12" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="parenright" + k="45" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="question" + k="45" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="quotedbl,quotesingle" + k="33" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="quoteleft,quotedblleft" + k="70" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="quoteright,quotedblright" + k="82" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="trademark" + k="156" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="12" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="underscore" + k="8" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="20" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="w" + k="16" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="14" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="comma,period,ellipsis" + k="25" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="exclamdown" + k="12" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="germandbls" + k="4" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="lslash" + k="-8" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="questiondown" + k="41" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="quotesinglbase,quotedblbase" + k="20" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="slash" + k="18" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="x" + k="16" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="divide" + k="-12" /> + <hkern g1="f" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="12" /> + <hkern g1="f" + g2="asterisk" + k="-82" /> + <hkern g1="f" + g2="at" + k="-18" /> + <hkern g1="f" + g2="backslash" + k="-74" /> + <hkern g1="f" + g2="bracketright,braceright" + k="-45" /> + <hkern g1="f" + g2="bullet" + k="8" /> + <hkern g1="f" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="23" /> + <hkern g1="f" + g2="colon,semicolon" + k="-25" /> + <hkern g1="f" + g2="dagger" + k="-106" /> + <hkern g1="f" + g2="daggerdbl" + k="-98" /> + <hkern g1="f" + g2="exclam" + k="-37" /> + <hkern g1="f" + g2="ordfeminine" + k="-12" /> + <hkern g1="f" + g2="ordmasculine" + k="-25" /> + <hkern g1="f" + g2="paragraph" + k="-86" /> + <hkern g1="f" + g2="parenright" + k="-49" /> + <hkern g1="f" + g2="question" + k="-66" /> + <hkern g1="f" + g2="quotedbl,quotesingle" + k="-102" /> + <hkern g1="f" + g2="quoteleft,quotedblleft" + k="-94" /> + <hkern g1="f" + g2="quoteright,quotedblright" + k="-78" /> + <hkern g1="f" + g2="t" + k="-43" /> + <hkern g1="f" + g2="trademark" + k="-66" /> + <hkern g1="f" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="4" /> + <hkern g1="f" + g2="underscore" + k="66" /> + <hkern g1="f" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="-27" /> + <hkern g1="f" + g2="w" + k="-27" /> + <hkern g1="f" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-49" /> + <hkern g1="f" + g2="asciitilde" + k="8" /> + <hkern g1="f" + g2="comma,period,ellipsis" + k="127" /> + <hkern g1="f" + g2="exclamdown" + k="-12" /> + <hkern g1="f" + g2="guilsinglright" + k="-25" /> + <hkern g1="f" + g2="lslash" + k="-8" /> + <hkern g1="f" + g2="questiondown" + k="70" /> + <hkern g1="f" + g2="quotesinglbase,quotedblbase" + k="106" /> + <hkern g1="f" + g2="slash" + k="25" /> + <hkern g1="f" + g2="x" + k="-33" /> + <hkern g1="f" + g2="z,zcaron" + k="-45" /> + <hkern g1="f" + g2="hyphen,endash,emdash" + k="16" /> + <hkern g1="f" + g2="oslash" + k="23" /> + <hkern g1="f" + g2="guilsinglleft" + k="20" /> + <hkern g1="f" + g2="periodcentered" + k="-12" /> + <hkern g1="f" + g2="plus" + k="8" /> + <hkern g1="f" + g2="asciicircum" + k="-53" /> + <hkern g1="f" + g2="bar" + k="-61" /> + <hkern g1="f" + g2="brokenbar" + k="-82" /> + <hkern g1="f" + g2="copyright,registered" + k="-20" /> + <hkern g1="f" + g2="f,fi,fl,f_f_i,f_f_l" + k="-2" /> + <hkern g1="f" + g2="greater" + k="-86" /> + <hkern g1="f" + g2="j" + k="-20" /> + <hkern g1="f" + g2="multiply" + k="-41" /> + <hkern g1="f" + g2="s,scaron" + k="-12" /> + <hkern g1="f" + g2="section" + k="-53" /> + <hkern g1="g" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="10" /> + <hkern g1="g" + g2="ampersand" + k="41" /> + <hkern g1="g" + g2="backslash" + k="106" /> + <hkern g1="g" + g2="bracketright,braceright" + k="25" /> + <hkern g1="g" + g2="exclam" + k="12" /> + <hkern g1="g" + g2="ordfeminine" + k="35" /> + <hkern g1="g" + g2="ordmasculine" + k="6" /> + <hkern g1="g" + g2="parenright" + k="25" /> + <hkern g1="g" + g2="question" + k="12" /> + <hkern g1="g" + g2="quoteleft,quotedblleft" + k="12" /> + <hkern g1="g" + g2="quoteright,quotedblright" + k="37" /> + <hkern g1="g" + g2="trademark" + k="61" /> + <hkern g1="g" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="10" /> + <hkern g1="g" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="6" /> + <hkern g1="g" + g2="w" + k="10" /> + <hkern g1="g" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="10" /> + <hkern g1="g" + g2="comma,period,ellipsis" + k="12" /> + <hkern g1="g" + g2="germandbls" + k="12" /> + <hkern g1="g" + g2="hyphen,endash,emdash" + k="6" /> + <hkern g1="g" + g2="guilsinglleft" + k="25" /> + <hkern g1="g" + g2="divide" + k="4" /> + <hkern g1="germandbls" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="-6" /> + <hkern g1="germandbls" + g2="bracketright,braceright" + k="-16" /> + <hkern g1="germandbls" + g2="quoteleft,quotedblleft" + k="12" /> + <hkern g1="germandbls" + g2="t" + k="6" /> + <hkern g1="germandbls" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="16" /> + <hkern g1="germandbls" + g2="w" + k="12" /> + <hkern g1="germandbls" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="4" /> + <hkern g1="germandbls" + g2="oslash" + k="-6" /> + <hkern g1="germandbls" + g2="s,scaron" + k="-6" /> + <hkern g1="h,m,n,ntilde" + g2="ampersand" + k="25" /> + <hkern g1="h,m,n,ntilde" + g2="asterisk" + k="8" /> + <hkern g1="h,m,n,ntilde" + g2="at" + k="16" /> + <hkern g1="h,m,n,ntilde" + g2="backslash" + k="139" /> + <hkern g1="h,m,n,ntilde" + g2="colon,semicolon" + k="6" /> + <hkern g1="h,m,n,ntilde" + g2="dagger" + k="18" /> + <hkern g1="h,m,n,ntilde" + g2="ordfeminine" + k="33" /> + <hkern g1="h,m,n,ntilde" + g2="ordmasculine" + k="25" /> + <hkern g1="h,m,n,ntilde" + g2="question" + k="37" /> + <hkern g1="h,m,n,ntilde" + g2="quotedbl,quotesingle" + k="12" /> + <hkern g1="h,m,n,ntilde" + g2="quoteleft,quotedblleft" + k="57" /> + <hkern g1="h,m,n,ntilde" + g2="quoteright,quotedblright" + k="90" /> + <hkern g1="h,m,n,ntilde" + g2="trademark" + k="143" /> + <hkern g1="h,m,n,ntilde" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="8" /> + <hkern g1="h,m,n,ntilde" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="18" /> + <hkern g1="h,m,n,ntilde" + g2="w" + k="6" /> + <hkern g1="h,m,n,ntilde" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="18" /> + <hkern g1="h,m,n,ntilde" + g2="exclamdown" + k="6" /> + <hkern g1="h,m,n,ntilde" + g2="germandbls" + k="8" /> + <hkern g1="h,m,n,ntilde" + g2="periodcentered" + k="6" /> + <hkern g1="h,m,n,ntilde" + g2="copyright,registered" + k="4" /> + <hkern g1="h,m,n,ntilde" + g2="equal" + k="4" /> + <hkern g1="i,q,igrave,iacute,icircumflex,idieresis,fi,f_f_i" + g2="ampersand" + k="25" /> + <hkern g1="i,q,igrave,iacute,icircumflex,idieresis,fi,f_f_i" + g2="backslash" + k="61" /> + <hkern g1="i,q,igrave,iacute,icircumflex,idieresis,fi,f_f_i" + g2="question" + k="12" /> + <hkern g1="i,q,igrave,iacute,icircumflex,idieresis,fi,f_f_i" + g2="trademark" + k="12" /> + <hkern g1="i,q,igrave,iacute,icircumflex,idieresis,fi,f_f_i" + g2="exclamdown" + k="12" /> + <hkern g1="i,q,igrave,iacute,icircumflex,idieresis,fi,f_f_i" + g2="quotesinglbase,quotedblbase" + k="12" /> + <hkern g1="i,q,igrave,iacute,icircumflex,idieresis,fi,f_f_i" + g2="guilsinglleft" + k="12" /> + <hkern g1="j" + g2="ampersand" + k="25" /> + <hkern g1="j" + g2="at" + k="4" /> + <hkern g1="j" + g2="backslash" + k="12" /> + <hkern g1="j" + g2="dagger" + k="-25" /> + <hkern g1="j" + g2="daggerdbl" + k="-41" /> + <hkern g1="j" + g2="ordfeminine" + k="12" /> + <hkern g1="j" + g2="quoteright,quotedblright" + k="-12" /> + <hkern g1="j" + g2="asciitilde" + k="12" /> + <hkern g1="j" + g2="comma,period,ellipsis" + k="12" /> + <hkern g1="j" + g2="germandbls" + k="10" /> + <hkern g1="j" + g2="guilsinglleft" + k="12" /> + <hkern g1="j" + g2="periodcentered" + k="12" /> + <hkern g1="j" + g2="f,fi,fl,f_f_i,f_f_l" + k="-6" /> + <hkern g1="j" + g2="greater" + k="-25" /> + <hkern g1="k" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="25" /> + <hkern g1="k" + g2="ampersand" + k="41" /> + <hkern g1="k" + g2="asterisk" + k="8" /> + <hkern g1="k" + g2="at" + k="10" /> + <hkern g1="k" + g2="backslash" + k="70" /> + <hkern g1="k" + g2="bracketright,braceright" + k="25" /> + <hkern g1="k" + g2="bullet" + k="29" /> + <hkern g1="k" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="45" /> + <hkern g1="k" + g2="colon,semicolon" + k="23" /> + <hkern g1="k" + g2="dagger" + k="-33" /> + <hkern g1="k" + g2="daggerdbl" + k="-33" /> + <hkern g1="k" + g2="paragraph" + k="-25" /> + <hkern g1="k" + g2="parenright" + k="25" /> + <hkern g1="k" + g2="quoteleft,quotedblleft" + k="-12" /> + <hkern g1="k" + g2="quoteright,quotedblright" + k="8" /> + <hkern g1="k" + g2="trademark" + k="66" /> + <hkern g1="k" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="10" /> + <hkern g1="k" + g2="underscore" + k="-74" /> + <hkern g1="k" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="37" /> + <hkern g1="k" + g2="asciitilde" + k="16" /> + <hkern g1="k" + g2="comma,period,ellipsis" + k="12" /> + <hkern g1="k" + g2="exclamdown" + k="-8" /> + <hkern g1="k" + g2="guilsinglright" + k="-12" /> + <hkern g1="k" + g2="questiondown" + k="-37" /> + <hkern g1="k" + g2="quotesinglbase,quotedblbase" + k="-29" /> + <hkern g1="k" + g2="slash" + k="-41" /> + <hkern g1="k" + g2="z,zcaron" + k="-4" /> + <hkern g1="k" + g2="hyphen,endash,emdash" + k="61" /> + <hkern g1="k" + g2="oslash" + k="25" /> + <hkern g1="k" + g2="guilsinglleft" + k="74" /> + <hkern g1="k" + g2="periodcentered" + k="12" /> + <hkern g1="k" + g2="plus" + k="33" /> + <hkern g1="k" + g2="divide" + k="20" /> + <hkern g1="k" + g2="asciicircum" + k="12" /> + <hkern g1="k" + g2="brokenbar" + k="-25" /> + <hkern g1="k" + g2="copyright,registered" + k="12" /> + <hkern g1="k" + g2="f,fi,fl,f_f_i,f_f_l" + k="-6" /> + <hkern g1="k" + g2="greater" + k="-94" /> + <hkern g1="k" + g2="multiply" + k="-16" /> + <hkern g1="k" + g2="braceleft" + k="8" /> + <hkern g1="k" + g2="less" + k="53" /> + <hkern g1="lslash" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="-20" /> + <hkern g1="lslash" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="-2" /> + <hkern g1="lslash" + g2="colon,semicolon" + k="-12" /> + <hkern g1="lslash" + g2="quotedbl,quotesingle" + k="-25" /> + <hkern g1="lslash" + g2="t" + k="-41" /> + <hkern g1="lslash" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="-6" /> + <hkern g1="lslash" + g2="w" + k="-33" /> + <hkern g1="lslash" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-41" /> + <hkern g1="lslash" + g2="comma,period,ellipsis" + k="49" /> + <hkern g1="lslash" + g2="quotesinglbase,quotedblbase" + k="49" /> + <hkern g1="lslash" + g2="z,zcaron" + k="-41" /> + <hkern g1="lslash" + g2="hyphen,endash,emdash" + k="-12" /> + <hkern g1="lslash" + g2="oslash" + k="-4" /> + <hkern g1="lslash" + g2="guilsinglleft" + k="-4" /> + <hkern g1="lslash" + g2="copyright,registered" + k="-16" /> + <hkern g1="lslash" + g2="f,fi,fl,f_f_i,f_f_l" + k="-51" /> + <hkern g1="lslash" + g2="s,scaron" + k="-20" /> + <hkern g1="oslash" + g2="ampersand" + k="33" /> + <hkern g1="oslash" + g2="backslash" + k="156" /> + <hkern g1="oslash" + g2="bracketright,braceright" + k="33" /> + <hkern g1="oslash" + g2="parenright" + k="45" /> + <hkern g1="oslash" + g2="quotedbl,quotesingle" + k="16" /> + <hkern g1="oslash" + g2="quoteleft,quotedblleft" + k="53" /> + <hkern g1="oslash" + g2="quoteright,quotedblright" + k="41" /> + <hkern g1="oslash" + g2="trademark" + k="25" /> + <hkern g1="oslash" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="6" /> + <hkern g1="oslash" + g2="underscore" + k="53" /> + <hkern g1="oslash" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="27" /> + <hkern g1="oslash" + g2="w" + k="27" /> + <hkern g1="oslash" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="33" /> + <hkern g1="oslash" + g2="comma,period,ellipsis" + k="37" /> + <hkern g1="oslash" + g2="exclamdown" + k="12" /> + <hkern g1="oslash" + g2="germandbls" + k="12" /> + <hkern g1="oslash" + g2="guilsinglright" + k="12" /> + <hkern g1="oslash" + g2="lslash" + k="-4" /> + <hkern g1="oslash" + g2="questiondown" + k="37" /> + <hkern g1="oslash" + g2="quotesinglbase,quotedblbase" + k="45" /> + <hkern g1="oslash" + g2="slash" + k="37" /> + <hkern g1="oslash" + g2="x" + k="23" /> + <hkern g1="oslash" + g2="greater" + k="-12" /> + <hkern g1="r" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="-12" /> + <hkern g1="r" + g2="ampersand" + k="37" /> + <hkern g1="r" + g2="asterisk" + k="-82" /> + <hkern g1="r" + g2="at" + k="-53" /> + <hkern g1="r" + g2="backslash" + k="45" /> + <hkern g1="r" + g2="bracketright,braceright" + k="-16" /> + <hkern g1="r" + g2="bullet" + k="-12" /> + <hkern g1="r" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="45" /> + <hkern g1="r" + g2="colon,semicolon" + k="-37" /> + <hkern g1="r" + g2="dagger" + k="-74" /> + <hkern g1="r" + g2="daggerdbl" + k="-74" /> + <hkern g1="r" + g2="exclam" + k="-37" /> + <hkern g1="r" + g2="ordmasculine" + k="-25" /> + <hkern g1="r" + g2="paragraph" + k="-94" /> + <hkern g1="r" + g2="parenright" + k="25" /> + <hkern g1="r" + g2="question" + k="-41" /> + <hkern g1="r" + g2="quotedbl,quotesingle" + k="-74" /> + <hkern g1="r" + g2="quoteleft,quotedblleft" + k="-12" /> + <hkern g1="r" + g2="quoteright,quotedblright" + k="-37" /> + <hkern g1="r" + g2="t" + k="-45" /> + <hkern g1="r" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="-4" /> + <hkern g1="r" + g2="underscore" + k="45" /> + <hkern g1="r" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="-37" /> + <hkern g1="r" + g2="w" + k="-33" /> + <hkern g1="r" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-49" /> + <hkern g1="r" + g2="comma,period,ellipsis" + k="160" /> + <hkern g1="r" + g2="exclamdown" + k="-29" /> + <hkern g1="r" + g2="florin" + k="12" /> + <hkern g1="r" + g2="guilsinglright" + k="-49" /> + <hkern g1="r" + g2="questiondown" + k="33" /> + <hkern g1="r" + g2="quotesinglbase,quotedblbase" + k="49" /> + <hkern g1="r" + g2="slash" + k="25" /> + <hkern g1="r" + g2="x" + k="-49" /> + <hkern g1="r" + g2="z,zcaron" + k="-33" /> + <hkern g1="r" + g2="oslash" + k="4" /> + <hkern g1="r" + g2="periodcentered" + k="-12" /> + <hkern g1="r" + g2="plus" + k="-12" /> + <hkern g1="r" + g2="divide" + k="-37" /> + <hkern g1="r" + g2="asciicircum" + k="-49" /> + <hkern g1="r" + g2="bar" + k="-61" /> + <hkern g1="r" + g2="brokenbar" + k="-37" /> + <hkern g1="r" + g2="copyright,registered" + k="-61" /> + <hkern g1="r" + g2="f,fi,fl,f_f_i,f_f_l" + k="-45" /> + <hkern g1="r" + g2="greater" + k="-61" /> + <hkern g1="r" + g2="j" + k="-6" /> + <hkern g1="r" + g2="multiply" + k="-25" /> + <hkern g1="r" + g2="s,scaron" + k="29" /> + <hkern g1="r" + g2="section" + k="-37" /> + <hkern g1="r" + g2="equal" + k="-37" /> + <hkern g1="r" + g2="less" + k="-12" /> + <hkern g1="r" + g2="b,h,k,l,thorn" + k="-6" /> + <hkern g1="r" + g2="i,igrave,iacute,icircumflex,idieresis" + k="-6" /> + <hkern g1="r" + g2="m,n,p,r,ntilde" + k="-6" /> + <hkern g1="s,scaron" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="8" /> + <hkern g1="s,scaron" + g2="ampersand" + k="25" /> + <hkern g1="s,scaron" + g2="asterisk" + k="20" /> + <hkern g1="s,scaron" + g2="backslash" + k="123" /> + <hkern g1="s,scaron" + g2="bracketright,braceright" + k="12" /> + <hkern g1="s,scaron" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="4" /> + <hkern g1="s,scaron" + g2="ordfeminine" + k="41" /> + <hkern g1="s,scaron" + g2="ordmasculine" + k="29" /> + <hkern g1="s,scaron" + g2="parenright" + k="31" /> + <hkern g1="s,scaron" + g2="question" + k="12" /> + <hkern g1="s,scaron" + g2="quotedbl,quotesingle" + k="8" /> + <hkern g1="s,scaron" + g2="quoteleft,quotedblleft" + k="33" /> + <hkern g1="s,scaron" + g2="quoteright,quotedblright" + k="20" /> + <hkern g1="s,scaron" + g2="trademark" + k="106" /> + <hkern g1="s,scaron" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="8" /> + <hkern g1="s,scaron" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="16" /> + <hkern g1="s,scaron" + g2="w" + k="16" /> + <hkern g1="s,scaron" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="16" /> + <hkern g1="s,scaron" + g2="florin" + k="25" /> + <hkern g1="s,scaron" + g2="germandbls" + k="10" /> + <hkern g1="s,scaron" + g2="quotesinglbase,quotedblbase" + k="-6" /> + <hkern g1="s,scaron" + g2="slash" + k="-8" /> + <hkern g1="s,scaron" + g2="x" + k="10" /> + <hkern g1="s,scaron" + g2="z,zcaron" + k="-6" /> + <hkern g1="s,scaron" + g2="oslash" + k="4" /> + <hkern g1="s,scaron" + g2="guilsinglleft" + k="25" /> + <hkern g1="s,scaron" + g2="periodcentered" + k="12" /> + <hkern g1="s,scaron" + g2="greater" + k="-8" /> + <hkern g1="t" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="-12" /> + <hkern g1="t" + g2="asterisk" + k="-37" /> + <hkern g1="t" + g2="backslash" + k="12" /> + <hkern g1="t" + g2="bracketright,braceright" + k="-8" /> + <hkern g1="t" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="4" /> + <hkern g1="t" + g2="colon,semicolon" + k="-12" /> + <hkern g1="t" + g2="paragraph" + k="-25" /> + <hkern g1="t" + g2="parenright" + k="-8" /> + <hkern g1="t" + g2="question" + k="-29" /> + <hkern g1="t" + g2="quotedbl,quotesingle" + k="-12" /> + <hkern g1="t" + g2="quoteleft,quotedblleft" + k="8" /> + <hkern g1="t" + g2="quoteright,quotedblright" + k="20" /> + <hkern g1="t" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="-12" /> + <hkern g1="t" + g2="underscore" + k="-61" /> + <hkern g1="t" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="-8" /> + <hkern g1="t" + g2="w" + k="-8" /> + <hkern g1="t" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-29" /> + <hkern g1="t" + g2="exclamdown" + k="-12" /> + <hkern g1="t" + g2="guilsinglright" + k="-8" /> + <hkern g1="t" + g2="questiondown" + k="-12" /> + <hkern g1="t" + g2="quotesinglbase,quotedblbase" + k="-8" /> + <hkern g1="t" + g2="slash" + k="-53" /> + <hkern g1="t" + g2="x" + k="-53" /> + <hkern g1="t" + g2="z,zcaron" + k="-47" /> + <hkern g1="t" + g2="asciicircum" + k="-12" /> + <hkern g1="t" + g2="copyright,registered" + k="-12" /> + <hkern g1="t" + g2="greater" + k="-49" /> + <hkern g1="t" + g2="j" + k="-12" /> + <hkern g1="t" + g2="s,scaron" + k="-29" /> + <hkern g1="t" + g2="b,h,k,l,thorn" + k="43" /> + <hkern g1="t" + g2="i,igrave,iacute,icircumflex,idieresis" + k="-6" /> + <hkern g1="t" + g2="m,n,p,r,ntilde" + k="8" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="ampersand" + k="25" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="at" + k="10" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="backslash" + k="66" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="bracketright,braceright" + k="6" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="4" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="ordfeminine" + k="29" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="ordmasculine" + k="25" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="parenright" + k="18" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="quoteleft,quotedblleft" + k="20" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="quoteright,quotedblright" + k="12" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="trademark" + k="53" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="4" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="germandbls" + k="10" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="oslash" + k="4" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="guilsinglleft" + k="12" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="f,fi,fl,f_f_i,f_f_l" + k="-6" /> + <hkern g1="v,wcircumflex,ycircumflex,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="4" /> + <hkern g1="v,wcircumflex,ycircumflex,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="bracketright,braceright" + k="25" /> + <hkern g1="v,wcircumflex,ycircumflex,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="31" /> + <hkern g1="v,wcircumflex,ycircumflex,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="colon,semicolon" + k="12" /> + <hkern g1="v,wcircumflex,ycircumflex,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="quotedbl,quotesingle" + k="-33" /> + <hkern g1="v,wcircumflex,ycircumflex,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="t" + k="-37" /> + <hkern g1="v,wcircumflex,ycircumflex,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="w" + k="-4" /> + <hkern g1="v,wcircumflex,ycircumflex,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-8" /> + <hkern g1="v,wcircumflex,ycircumflex,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="comma,period,ellipsis" + k="160" /> + <hkern g1="v,wcircumflex,ycircumflex,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="guilsinglright" + k="-16" /> + <hkern g1="v,wcircumflex,ycircumflex,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="quotesinglbase,quotedblbase" + k="106" /> + <hkern g1="v,wcircumflex,ycircumflex,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="z,zcaron" + k="-8" /> + <hkern g1="v,wcircumflex,ycircumflex,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="hyphen,endash,emdash" + k="29" /> + <hkern g1="v,wcircumflex,ycircumflex,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="oslash" + k="20" /> + <hkern g1="v,wcircumflex,ycircumflex,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="guilsinglleft" + k="25" /> + <hkern g1="v,wcircumflex,ycircumflex,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="copyright,registered" + k="-12" /> + <hkern g1="v,wcircumflex,ycircumflex,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="f,fi,fl,f_f_i,f_f_l" + k="-43" /> + <hkern g1="w" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="4" /> + <hkern g1="w" + g2="ampersand" + k="45" /> + <hkern g1="w" + g2="asterisk" + k="-12" /> + <hkern g1="w" + g2="at" + k="-18" /> + <hkern g1="w" + g2="backslash" + k="53" /> + <hkern g1="w" + g2="bracketright,braceright" + k="41" /> + <hkern g1="w" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="27" /> + <hkern g1="w" + g2="dagger" + k="-61" /> + <hkern g1="w" + g2="daggerdbl" + k="-70" /> + <hkern g1="w" + g2="ordmasculine" + k="-18" /> + <hkern g1="w" + g2="paragraph" + k="-25" /> + <hkern g1="w" + g2="parenright" + k="53" /> + <hkern g1="w" + g2="question" + k="-25" /> + <hkern g1="w" + g2="quotedbl,quotesingle" + k="-33" /> + <hkern g1="w" + g2="quoteleft,quotedblleft" + k="-12" /> + <hkern g1="w" + g2="quoteright,quotedblright" + k="-12" /> + <hkern g1="w" + g2="t" + k="-37" /> + <hkern g1="w" + g2="trademark" + k="12" /> + <hkern g1="w" + g2="underscore" + k="82" /> + <hkern g1="w" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="-4" /> + <hkern g1="w" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-4" /> + <hkern g1="w" + g2="comma,period,ellipsis" + k="94" /> + <hkern g1="w" + g2="exclamdown" + k="12" /> + <hkern g1="w" + g2="florin" + k="25" /> + <hkern g1="w" + g2="germandbls" + k="6" /> + <hkern g1="w" + g2="questiondown" + k="66" /> + <hkern g1="w" + g2="quotesinglbase,quotedblbase" + k="94" /> + <hkern g1="w" + g2="slash" + k="53" /> + <hkern g1="w" + g2="x" + k="-4" /> + <hkern g1="w" + g2="z,zcaron" + k="-10" /> + <hkern g1="w" + g2="hyphen,endash,emdash" + k="16" /> + <hkern g1="w" + g2="oslash" + k="27" /> + <hkern g1="w" + g2="guilsinglleft" + k="27" /> + <hkern g1="w" + g2="plus" + k="6" /> + <hkern g1="w" + g2="divide" + k="12" /> + <hkern g1="w" + g2="asciicircum" + k="-25" /> + <hkern g1="w" + g2="bar" + k="-29" /> + <hkern g1="w" + g2="brokenbar" + k="-29" /> + <hkern g1="w" + g2="copyright,registered" + k="-8" /> + <hkern g1="w" + g2="f,fi,fl,f_f_i,f_f_l" + k="-37" /> + <hkern g1="w" + g2="greater" + k="-25" /> + <hkern g1="w" + g2="multiply" + k="-12" /> + <hkern g1="w" + g2="less" + k="12" /> + <hkern g1="x" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="6" /> + <hkern g1="x" + g2="bracketright,braceright" + k="12" /> + <hkern g1="x" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="39" /> + <hkern g1="x" + g2="colon,semicolon" + k="12" /> + <hkern g1="x" + g2="quotedbl,quotesingle" + k="-8" /> + <hkern g1="x" + g2="quoteright,quotedblright" + k="12" /> + <hkern g1="x" + g2="t" + k="-16" /> + <hkern g1="x" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="10" /> + <hkern g1="x" + g2="w" + k="-4" /> + <hkern g1="x" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-4" /> + <hkern g1="x" + g2="quotesinglbase,quotedblbase" + k="-20" /> + <hkern g1="x" + g2="z,zcaron" + k="-29" /> + <hkern g1="x" + g2="hyphen,endash,emdash" + k="51" /> + <hkern g1="x" + g2="oslash" + k="29" /> + <hkern g1="x" + g2="guilsinglleft" + k="33" /> + <hkern g1="x" + g2="copyright,registered" + k="12" /> + <hkern g1="x" + g2="f,fi,fl,f_f_i,f_f_l" + k="-25" /> + <hkern g1="y,yacute,ydieresis" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="31" /> + <hkern g1="y,yacute,ydieresis" + g2="ampersand" + k="41" /> + <hkern g1="y,yacute,ydieresis" + g2="asterisk" + k="-25" /> + <hkern g1="y,yacute,ydieresis" + g2="at" + k="-8" /> + <hkern g1="y,yacute,ydieresis" + g2="backslash" + k="61" /> + <hkern g1="y,yacute,ydieresis" + g2="bracketright,braceright" + k="49" /> + <hkern g1="y,yacute,ydieresis" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="47" /> + <hkern g1="y,yacute,ydieresis" + g2="colon,semicolon" + k="18" /> + <hkern g1="y,yacute,ydieresis" + g2="dagger" + k="-53" /> + <hkern g1="y,yacute,ydieresis" + g2="daggerdbl" + k="-53" /> + <hkern g1="y,yacute,ydieresis" + g2="paragraph" + k="-25" /> + <hkern g1="y,yacute,ydieresis" + g2="parenright" + k="49" /> + <hkern g1="y,yacute,ydieresis" + g2="question" + k="-20" /> + <hkern g1="y,yacute,ydieresis" + g2="quotedbl,quotesingle" + k="-20" /> + <hkern g1="y,yacute,ydieresis" + g2="t" + k="-29" /> + <hkern g1="y,yacute,ydieresis" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="10" /> + <hkern g1="y,yacute,ydieresis" + g2="underscore" + k="102" /> + <hkern g1="y,yacute,ydieresis" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="-4" /> + <hkern g1="y,yacute,ydieresis" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-4" /> + <hkern g1="y,yacute,ydieresis" + g2="comma,period,ellipsis" + k="201" /> + <hkern g1="y,yacute,ydieresis" + g2="exclamdown" + k="12" /> + <hkern g1="y,yacute,ydieresis" + g2="florin" + k="37" /> + <hkern g1="y,yacute,ydieresis" + g2="germandbls" + k="6" /> + <hkern g1="y,yacute,ydieresis" + g2="lslash" + k="6" /> + <hkern g1="y,yacute,ydieresis" + g2="questiondown" + k="86" /> + <hkern g1="y,yacute,ydieresis" + g2="quotesinglbase,quotedblbase" + k="131" /> + <hkern g1="y,yacute,ydieresis" + g2="slash" + k="70" /> + <hkern g1="y,yacute,ydieresis" + g2="hyphen,endash,emdash" + k="53" /> + <hkern g1="y,yacute,ydieresis" + g2="oslash" + k="43" /> + <hkern g1="y,yacute,ydieresis" + g2="guilsinglleft" + k="33" /> + <hkern g1="y,yacute,ydieresis" + g2="periodcentered" + k="12" /> + <hkern g1="y,yacute,ydieresis" + g2="divide" + k="12" /> + <hkern g1="y,yacute,ydieresis" + g2="asciicircum" + k="-12" /> + <hkern g1="y,yacute,ydieresis" + g2="bar" + k="-25" /> + <hkern g1="y,yacute,ydieresis" + g2="brokenbar" + k="-33" /> + <hkern g1="y,yacute,ydieresis" + g2="copyright,registered" + k="-12" /> + <hkern g1="y,yacute,ydieresis" + g2="f,fi,fl,f_f_i,f_f_l" + k="-33" /> + <hkern g1="y,yacute,ydieresis" + g2="greater" + k="-37" /> + <hkern g1="y,yacute,ydieresis" + g2="multiply" + k="-25" /> + <hkern g1="y,yacute,ydieresis" + g2="s,scaron" + k="14" /> + <hkern g1="y,yacute,ydieresis" + g2="section" + k="-12" /> + <hkern g1="z,zcaron" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="-12" /> + <hkern g1="z,zcaron" + g2="ampersand" + k="25" /> + <hkern g1="z,zcaron" + g2="asterisk" + k="-12" /> + <hkern g1="z,zcaron" + g2="backslash" + k="84" /> + <hkern g1="z,zcaron" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="6" /> + <hkern g1="z,zcaron" + g2="dagger" + k="-33" /> + <hkern g1="z,zcaron" + g2="daggerdbl" + k="-33" /> + <hkern g1="z,zcaron" + g2="paragraph" + k="-12" /> + <hkern g1="z,zcaron" + g2="t" + k="-31" /> + <hkern g1="z,zcaron" + g2="trademark" + k="12" /> + <hkern g1="z,zcaron" + g2="underscore" + k="-20" /> + <hkern g1="z,zcaron" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="-6" /> + <hkern g1="z,zcaron" + g2="w" + k="-6" /> + <hkern g1="z,zcaron" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-6" /> + <hkern g1="z,zcaron" + g2="lslash" + k="-8" /> + <hkern g1="z,zcaron" + g2="questiondown" + k="-12" /> + <hkern g1="z,zcaron" + g2="quotesinglbase,quotedblbase" + k="-12" /> + <hkern g1="z,zcaron" + g2="slash" + k="-25" /> + <hkern g1="z,zcaron" + g2="x" + k="-16" /> + <hkern g1="z,zcaron" + g2="z,zcaron" + k="-6" /> + <hkern g1="z,zcaron" + g2="guilsinglleft" + k="14" /> + <hkern g1="z,zcaron" + g2="plus" + k="-12" /> + <hkern g1="z,zcaron" + g2="bar" + k="-25" /> + <hkern g1="z,zcaron" + g2="brokenbar" + k="-12" /> + <hkern g1="z,zcaron" + g2="f,fi,fl,f_f_i,f_f_l" + k="-37" /> + <hkern g1="z,zcaron" + g2="greater" + k="-25" /> + <hkern g1="ampersand" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="18" /> + <hkern g1="ampersand" + g2="J" + k="-12" /> + <hkern g1="ampersand" + g2="Oslash" + k="12" /> + <hkern g1="ampersand" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="143" /> + <hkern g1="ampersand" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="20" /> + <hkern g1="ampersand" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="78" /> + <hkern g1="ampersand" + g2="Y,Yacute,Ydieresis" + k="190" /> + <hkern g1="ampersand" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="6" /> + <hkern g1="ampersand" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="37" /> + <hkern g1="asciicircum" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="-20" /> + <hkern g1="asciicircum" + g2="Y,Yacute,Ydieresis" + k="25" /> + <hkern g1="asciicircum" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-12" /> + <hkern g1="asciicircum" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="90" /> + <hkern g1="asciicircum" + g2="Eth" + k="-12" /> + <hkern g1="asciicircum" + g2="f,fi,fl,f_f_i,f_f_l" + k="-37" /> + <hkern g1="asciicircum" + g2="w" + k="-25" /> + <hkern g1="asciitilde" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="-20" /> + <hkern g1="asciitilde" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="131" /> + <hkern g1="asciitilde" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="4" /> + <hkern g1="asciitilde" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="41" /> + <hkern g1="asciitilde" + g2="Y,Yacute,Ydieresis" + k="135" /> + <hkern g1="asciitilde" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="41" /> + <hkern g1="asciitilde" + g2="Z,Zcaron" + k="12" /> + <hkern g1="asciitilde" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="-12" /> + <hkern g1="asciitilde" + g2="j" + k="12" /> + <hkern g1="asciitilde" + g2="z,zcaron" + k="6" /> + <hkern g1="at" + g2="J" + k="45" /> + <hkern g1="at" + g2="Oslash" + k="6" /> + <hkern g1="at" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="51" /> + <hkern g1="at" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="12" /> + <hkern g1="at" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="41" /> + <hkern g1="at" + g2="Y,Yacute,Ydieresis" + k="106" /> + <hkern g1="at" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="6" /> + <hkern g1="at" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-6" /> + <hkern g1="at" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="98" /> + <hkern g1="at" + g2="Eth" + k="-8" /> + <hkern g1="at" + g2="f,fi,fl,f_f_i,f_f_l" + k="-12" /> + <hkern g1="at" + g2="w" + k="-12" /> + <hkern g1="at" + g2="Z,Zcaron" + k="29" /> + <hkern g1="at" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="25" /> + <hkern g1="at" + g2="z,zcaron" + k="-4" /> + <hkern g1="at" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="12" /> + <hkern g1="at" + g2="m,n,p,r,ntilde" + k="18" /> + <hkern g1="at" + g2="oslash" + k="18" /> + <hkern g1="at" + g2="s,scaron" + k="6" /> + <hkern g1="bar" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="-29" /> + <hkern g1="bar" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-29" /> + <hkern g1="bar" + g2="Y,Yacute,Ydieresis" + k="-20" /> + <hkern g1="bar" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-25" /> + <hkern g1="bar" + g2="w" + k="-29" /> + <hkern g1="bar" + g2="Z,Zcaron" + k="-12" /> + <hkern g1="bar" + g2="j" + k="-37" /> + <hkern g1="bar" + g2="z,zcaron" + k="-20" /> + <hkern g1="brokenbar" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="-41" /> + <hkern g1="brokenbar" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-29" /> + <hkern g1="brokenbar" + g2="Y,Yacute,Ydieresis" + k="-20" /> + <hkern g1="brokenbar" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-33" /> + <hkern g1="brokenbar" + g2="w" + k="-29" /> + <hkern g1="brokenbar" + g2="Z,Zcaron" + k="-12" /> + <hkern g1="brokenbar" + g2="z,zcaron" + k="-12" /> + <hkern g1="copyright,registered" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="-8" /> + <hkern g1="copyright,registered" + g2="J" + k="12" /> + <hkern g1="copyright,registered" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="20" /> + <hkern g1="copyright,registered" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="25" /> + <hkern g1="copyright,registered" + g2="Y,Yacute,Ydieresis" + k="82" /> + <hkern g1="copyright,registered" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="70" /> + <hkern g1="copyright,registered" + g2="Eth" + k="-8" /> + <hkern g1="copyright,registered" + g2="f,fi,fl,f_f_i,f_f_l" + k="-12" /> + <hkern g1="copyright,registered" + g2="w" + k="-8" /> + <hkern g1="copyright,registered" + g2="Z,Zcaron" + k="12" /> + <hkern g1="copyright,registered" + g2="z,zcaron" + k="4" /> + <hkern g1="copyright,registered" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="16" /> + <hkern g1="copyright,registered" + g2="Lslash" + k="-8" /> + <hkern g1="copyright,registered" + g2="V" + k="57" /> + <hkern g1="copyright,registered" + g2="X" + k="98" /> + <hkern g1="copyright,registered" + g2="germandbls" + k="12" /> + <hkern g1="copyright,registered" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="-12" /> + <hkern g1="copyright,registered" + g2="x" + k="12" /> + <hkern g1="dagger" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="-12" /> + <hkern g1="dagger" + g2="J" + k="37" /> + <hkern g1="dagger" + g2="Oslash" + k="-12" /> + <hkern g1="dagger" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="-37" /> + <hkern g1="dagger" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-25" /> + <hkern g1="dagger" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-53" /> + <hkern g1="dagger" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="74" /> + <hkern g1="dagger" + g2="f,fi,fl,f_f_i,f_f_l" + k="-37" /> + <hkern g1="dagger" + g2="w" + k="-70" /> + <hkern g1="dagger" + g2="Z,Zcaron" + k="-12" /> + <hkern g1="dagger" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="12" /> + <hkern g1="dagger" + g2="j" + k="-25" /> + <hkern g1="dagger" + g2="z,zcaron" + k="-25" /> + <hkern g1="dagger" + g2="S,Scaron" + k="-12" /> + <hkern g1="dagger" + g2="b,h,k,l,thorn" + k="-12" /> + <hkern g1="daggerdbl" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="-12" /> + <hkern g1="daggerdbl" + g2="J" + k="-12" /> + <hkern g1="daggerdbl" + g2="Oslash" + k="-12" /> + <hkern g1="daggerdbl" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="-37" /> + <hkern g1="daggerdbl" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-12" /> + <hkern g1="daggerdbl" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-53" /> + <hkern g1="daggerdbl" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="12" /> + <hkern g1="daggerdbl" + g2="f,fi,fl,f_f_i,f_f_l" + k="-25" /> + <hkern g1="daggerdbl" + g2="w" + k="-70" /> + <hkern g1="daggerdbl" + g2="Z,Zcaron" + k="-12" /> + <hkern g1="daggerdbl" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="-12" /> + <hkern g1="daggerdbl" + g2="z,zcaron" + k="-25" /> + <hkern g1="daggerdbl" + g2="b,h,k,l,thorn" + k="-12" /> + <hkern g1="divide" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="-12" /> + <hkern g1="divide" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="86" /> + <hkern g1="divide" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="4" /> + <hkern g1="divide" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="47" /> + <hkern g1="divide" + g2="Y,Yacute,Ydieresis" + k="115" /> + <hkern g1="divide" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="12" /> + <hkern g1="divide" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="33" /> + <hkern g1="divide" + g2="w" + k="12" /> + <hkern g1="divide" + g2="Z,Zcaron" + k="12" /> + <hkern g1="equal" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="-12" /> + <hkern g1="equal" + g2="Oslash" + k="-12" /> + <hkern g1="equal" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="61" /> + <hkern g1="equal" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="6" /> + <hkern g1="equal" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="20" /> + <hkern g1="equal" + g2="Y,Yacute,Ydieresis" + k="74" /> + <hkern g1="equal" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="25" /> + <hkern g1="florin" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="57" /> + <hkern g1="florin" + g2="w" + k="8" /> + <hkern g1="florin" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="111" /> + <hkern g1="florin" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="98" /> + <hkern g1="florin" + g2="m,n,p,r,ntilde" + k="57" /> + <hkern g1="florin" + g2="oslash" + k="102" /> + <hkern g1="florin" + g2="s,scaron" + k="37" /> + <hkern g1="florin" + g2="bracketright,braceright" + k="-53" /> + <hkern g1="florin" + g2="colon,semicolon" + k="29" /> + <hkern g1="florin" + g2="comma,period,ellipsis" + k="188" /> + <hkern g1="florin" + g2="guilsinglleft" + k="66" /> + <hkern g1="florin" + g2="hyphen,endash,emdash" + k="25" /> + <hkern g1="florin" + g2="quotedbl,quotesingle" + k="-82" /> + <hkern g1="florin" + g2="quoteleft,quotedblleft" + k="-70" /> + <hkern g1="florin" + g2="quoteright,quotedblright" + k="-82" /> + <hkern g1="florin" + g2="quotesinglbase,quotedblbase" + k="160" /> + <hkern g1="florin" + g2="t" + k="-12" /> + <hkern g1="greater" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="-12" /> + <hkern g1="greater" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="119" /> + <hkern g1="greater" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="4" /> + <hkern g1="greater" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="53" /> + <hkern g1="greater" + g2="Y,Yacute,Ydieresis" + k="147" /> + <hkern g1="greater" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="47" /> + <hkern g1="greater" + g2="w" + k="12" /> + <hkern g1="greater" + g2="Z,Zcaron" + k="25" /> + <hkern g1="greater" + g2="S,Scaron" + k="6" /> + <hkern g1="less" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="-20" /> + <hkern g1="less" + g2="Oslash" + k="-25" /> + <hkern g1="less" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="8" /> + <hkern g1="less" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-25" /> + <hkern g1="less" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-37" /> + <hkern g1="less" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="-25" /> + <hkern g1="less" + g2="Eth" + k="-12" /> + <hkern g1="less" + g2="w" + k="-25" /> + <hkern g1="less" + g2="Z,Zcaron" + k="-45" /> + <hkern g1="less" + g2="z,zcaron" + k="-25" /> + <hkern g1="less" + g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Ntilde,Thorn,IJ,uni01C4,uni01C7,uni01CA,uni01F1" + k="-8" /> + <hkern g1="multiply" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="-12" /> + <hkern g1="multiply" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="45" /> + <hkern g1="multiply" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="12" /> + <hkern g1="multiply" + g2="Y,Yacute,Ydieresis" + k="61" /> + <hkern g1="multiply" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="12" /> + <hkern g1="multiply" + g2="w" + k="-12" /> + <hkern g1="multiply" + g2="Z,Zcaron" + k="-12" /> + <hkern g1="paragraph" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="-25" /> + <hkern g1="plus" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="-12" /> + <hkern g1="plus" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="115" /> + <hkern g1="plus" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="4" /> + <hkern g1="plus" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="61" /> + <hkern g1="plus" + g2="Y,Yacute,Ydieresis" + k="127" /> + <hkern g1="plus" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="49" /> + <hkern g1="plus" + g2="Eth" + k="12" /> + <hkern g1="plus" + g2="w" + k="6" /> + <hkern g1="plus" + g2="Z,Zcaron" + k="23" /> + <hkern g1="plus" + g2="b,h,k,l,thorn" + k="25" /> + <hkern g1="section" + g2="Oslash" + k="6" /> + <hkern g1="section" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="12" /> + <hkern g1="section" + g2="Y,Yacute,Ydieresis" + k="12" /> + <hkern g1="section" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="12" /> + <hkern g1="trademark" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="-25" /> + <hkern g1="asterisk" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="176" /> + <hkern g1="asterisk" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="4" /> + <hkern g1="asterisk" + g2="J" + k="102" /> + <hkern g1="asterisk" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="-41" /> + <hkern g1="asterisk" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-20" /> + <hkern g1="asterisk" + g2="Y,Yacute,Ydieresis" + k="12" /> + <hkern g1="asterisk" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="25" /> + <hkern g1="asterisk" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="57" /> + <hkern g1="asterisk" + g2="f,fi,fl,f_f_i,f_f_l" + k="-49" /> + <hkern g1="asterisk" + g2="oslash" + k="25" /> + <hkern g1="asterisk" + g2="s,scaron" + k="8" /> + <hkern g1="asterisk" + g2="w" + k="-12" /> + <hkern g1="asterisk" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-25" /> + <hkern g1="backslash" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="-25" /> + <hkern g1="backslash" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="90" /> + <hkern g1="backslash" + g2="J" + k="12" /> + <hkern g1="backslash" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="127" /> + <hkern g1="backslash" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="147" /> + <hkern g1="backslash" + g2="Y,Yacute,Ydieresis" + k="176" /> + <hkern g1="backslash" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="-8" /> + <hkern g1="backslash" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="49" /> + <hkern g1="backslash" + g2="oslash" + k="25" /> + <hkern g1="backslash" + g2="w" + k="45" /> + <hkern g1="backslash" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="63" /> + <hkern g1="backslash" + g2="Eth" + k="25" /> + <hkern g1="backslash" + g2="Oslash" + k="66" /> + <hkern g1="backslash" + g2="S,Scaron" + k="29" /> + <hkern g1="backslash" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="78" /> + <hkern g1="backslash" + g2="Z,Zcaron" + k="-12" /> + <hkern g1="backslash" + g2="t" + k="12" /> + <hkern g1="backslash" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="25" /> + <hkern g1="backslash" + g2="z,zcaron" + k="-12" /> + <hkern g1="braceright" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="8" /> + <hkern g1="braceright" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="16" /> + <hkern g1="braceright" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="8" /> + <hkern g1="braceright" + g2="Y,Yacute,Ydieresis" + k="33" /> + <hkern g1="braceright" + g2="Z,Zcaron" + k="16" /> + <hkern g1="bracketleft,braceleft" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="12" /> + <hkern g1="bracketleft,braceleft" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="53" /> + <hkern g1="bracketleft,braceleft" + g2="J" + k="25" /> + <hkern g1="bracketleft,braceleft" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="-16" /> + <hkern g1="bracketleft,braceleft" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-16" /> + <hkern g1="bracketleft,braceleft" + g2="Y,Yacute,Ydieresis" + k="-33" /> + <hkern g1="bracketleft,braceleft" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="6" /> + <hkern g1="bracketleft,braceleft" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="57" /> + <hkern g1="bracketleft,braceleft" + g2="f,fi,fl,f_f_i,f_f_l" + k="45" /> + <hkern g1="bracketleft,braceleft" + g2="oslash" + k="33" /> + <hkern g1="bracketleft,braceleft" + g2="s,scaron" + k="25" /> + <hkern g1="bracketleft,braceleft" + g2="w" + k="41" /> + <hkern g1="bracketleft,braceleft" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="37" /> + <hkern g1="bracketleft,braceleft" + g2="Oslash" + k="53" /> + <hkern g1="bracketleft,braceleft" + g2="S,Scaron" + k="12" /> + <hkern g1="bracketleft,braceleft" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="12" /> + <hkern g1="bracketleft,braceleft" + g2="t" + k="25" /> + <hkern g1="bracketleft,braceleft" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="25" /> + <hkern g1="bracketleft,braceleft" + g2="V" + k="-29" /> + <hkern g1="bracketleft,braceleft" + g2="X" + k="-16" /> + <hkern g1="bracketleft,braceleft" + g2="florin" + k="-123" /> + <hkern g1="bracketleft,braceleft" + g2="germandbls" + k="25" /> + <hkern g1="bracketleft,braceleft" + g2="j" + k="-139" /> + <hkern g1="bracketleft,braceleft" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="25" /> + <hkern g1="bracketleft,braceleft" + g2="x" + k="12" /> + <hkern g1="bullet" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="74" /> + <hkern g1="bullet" + g2="J" + k="8" /> + <hkern g1="bullet" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="168" /> + <hkern g1="bullet" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="57" /> + <hkern g1="bullet" + g2="Y,Yacute,Ydieresis" + k="180" /> + <hkern g1="bullet" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="8" /> + <hkern g1="bullet" + g2="Z,Zcaron" + k="29" /> + <hkern g1="bullet" + g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Ntilde,Thorn,IJ,uni01C4,uni01C7,uni01CA,uni01F1" + k="8" /> + <hkern g1="colon,semicolon" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="12" /> + <hkern g1="colon,semicolon" + g2="J" + k="12" /> + <hkern g1="colon,semicolon" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="104" /> + <hkern g1="colon,semicolon" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="33" /> + <hkern g1="colon,semicolon" + g2="Y,Yacute,Ydieresis" + k="154" /> + <hkern g1="colon,semicolon" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="16" /> + <hkern g1="colon,semicolon" + g2="f,fi,fl,f_f_i,f_f_l" + k="-12" /> + <hkern g1="colon,semicolon" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="12" /> + <hkern g1="colon,semicolon" + g2="S,Scaron" + k="12" /> + <hkern g1="colon,semicolon" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="10" /> + <hkern g1="colon,semicolon" + g2="V" + k="106" /> + <hkern g1="colon,semicolon" + g2="X" + k="25" /> + <hkern g1="colon,semicolon" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="12" /> + <hkern g1="colon,semicolon" + g2="x" + k="12" /> + <hkern g1="comma,period,ellipsis" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="74" /> + <hkern g1="comma,period,ellipsis" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="229" /> + <hkern g1="comma,period,ellipsis" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="180" /> + <hkern g1="comma,period,ellipsis" + g2="Y,Yacute,Ydieresis" + k="266" /> + <hkern g1="comma,period,ellipsis" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="12" /> + <hkern g1="comma,period,ellipsis" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="37" /> + <hkern g1="comma,period,ellipsis" + g2="f,fi,fl,f_f_i,f_f_l" + k="25" /> + <hkern g1="comma,period,ellipsis" + g2="oslash" + k="12" /> + <hkern g1="comma,period,ellipsis" + g2="w" + k="94" /> + <hkern g1="comma,period,ellipsis" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="172" /> + <hkern g1="comma,period,ellipsis" + g2="Eth" + k="25" /> + <hkern g1="comma,period,ellipsis" + g2="Oslash" + k="66" /> + <hkern g1="comma,period,ellipsis" + g2="S,Scaron" + k="20" /> + <hkern g1="comma,period,ellipsis" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="70" /> + <hkern g1="comma,period,ellipsis" + g2="t" + k="53" /> + <hkern g1="comma,period,ellipsis" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="8" /> + <hkern g1="comma,period,ellipsis" + g2="V" + k="242" /> + <hkern g1="comma,period,ellipsis" + g2="X" + k="12" /> + <hkern g1="comma,period,ellipsis" + g2="germandbls" + k="12" /> + <hkern g1="comma,period,ellipsis" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="160" /> + <hkern g1="comma,period,ellipsis" + g2="Lslash" + k="12" /> + <hkern g1="comma,period,ellipsis" + g2="b,h,k,l,thorn" + k="12" /> + <hkern g1="comma,period,ellipsis" + g2="lslash" + k="49" /> + <hkern g1="exclam" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="25" /> + <hkern g1="exclam" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="12" /> + <hkern g1="exclam" + g2="J" + k="12" /> + <hkern g1="exclam" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="25" /> + <hkern g1="exclam" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="25" /> + <hkern g1="exclam" + g2="S,Scaron" + k="12" /> + <hkern g1="exclamdown" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="12" /> + <hkern g1="exclamdown" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="12" /> + <hkern g1="exclamdown" + g2="J" + k="12" /> + <hkern g1="exclamdown" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="127" /> + <hkern g1="exclamdown" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="45" /> + <hkern g1="exclamdown" + g2="Y,Yacute,Ydieresis" + k="145" /> + <hkern g1="exclamdown" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="25" /> + <hkern g1="exclamdown" + g2="oslash" + k="12" /> + <hkern g1="exclamdown" + g2="w" + k="12" /> + <hkern g1="exclamdown" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="12" /> + <hkern g1="exclamdown" + g2="S,Scaron" + k="12" /> + <hkern g1="exclamdown" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="33" /> + <hkern g1="exclamdown" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="6" /> + <hkern g1="exclamdown" + g2="j" + k="-74" /> + <hkern g1="exclamdown" + g2="i,igrave,iacute,icircumflex,idieresis" + k="12" /> + <hkern g1="guilsinglleft" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="12" /> + <hkern g1="guilsinglleft" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="20" /> + <hkern g1="guilsinglleft" + g2="J" + k="-20" /> + <hkern g1="guilsinglleft" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="127" /> + <hkern g1="guilsinglleft" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="20" /> + <hkern g1="guilsinglleft" + g2="Y,Yacute,Ydieresis" + k="111" /> + <hkern g1="guilsinglleft" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="12" /> + <hkern g1="guilsinglleft" + g2="f,fi,fl,f_f_i,f_f_l" + k="-33" /> + <hkern g1="guilsinglleft" + g2="oslash" + k="12" /> + <hkern g1="guilsinglleft" + g2="Oslash" + k="12" /> + <hkern g1="guilsinglleft" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="12" /> + <hkern g1="guilsinglleft" + g2="t" + k="-8" /> + <hkern g1="guilsinglleft" + g2="V" + k="70" /> + <hkern g1="guilsinglleft" + g2="X" + k="61" /> + <hkern g1="guilsinglleft" + g2="florin" + k="25" /> + <hkern g1="guilsinglleft" + g2="germandbls" + k="12" /> + <hkern g1="guilsinglleft" + g2="j" + k="6" /> + <hkern g1="guilsinglleft" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="-16" /> + <hkern g1="guilsinglleft" + g2="lslash" + k="12" /> + <hkern g1="guilsinglright" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="74" /> + <hkern g1="guilsinglright" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="16" /> + <hkern g1="guilsinglright" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="233" /> + <hkern g1="guilsinglright" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="98" /> + <hkern g1="guilsinglright" + g2="Y,Yacute,Ydieresis" + k="238" /> + <hkern g1="guilsinglright" + g2="w" + k="20" /> + <hkern g1="guilsinglright" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="12" /> + <hkern g1="guilsinglright" + g2="S,Scaron" + k="12" /> + <hkern g1="guilsinglright" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="33" /> + <hkern g1="guilsinglright" + g2="Z,Zcaron" + k="43" /> + <hkern g1="guilsinglright" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="12" /> + <hkern g1="guilsinglright" + g2="z,zcaron" + k="6" /> + <hkern g1="guilsinglright" + g2="V" + k="135" /> + <hkern g1="guilsinglright" + g2="X" + k="164" /> + <hkern g1="guilsinglright" + g2="florin" + k="86" /> + <hkern g1="guilsinglright" + g2="germandbls" + k="18" /> + <hkern g1="guilsinglright" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="33" /> + <hkern g1="guilsinglright" + g2="x" + k="33" /> + <hkern g1="guilsinglright" + g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Ntilde,Thorn,IJ,uni01C4,uni01C7,uni01CA,uni01F1" + k="8" /> + <hkern g1="guilsinglright" + g2="b,h,k,l,thorn" + k="12" /> + <hkern g1="guilsinglright" + g2="lslash" + k="-16" /> + <hkern g1="hyphen,endash,emdash" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="66" /> + <hkern g1="hyphen,endash,emdash" + g2="J" + k="12" /> + <hkern g1="hyphen,endash,emdash" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="135" /> + <hkern g1="hyphen,endash,emdash" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="57" /> + <hkern g1="hyphen,endash,emdash" + g2="Y,Yacute,Ydieresis" + k="188" /> + <hkern g1="hyphen,endash,emdash" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="25" /> + <hkern g1="hyphen,endash,emdash" + g2="w" + k="16" /> + <hkern g1="hyphen,endash,emdash" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="53" /> + <hkern g1="hyphen,endash,emdash" + g2="S,Scaron" + k="8" /> + <hkern g1="hyphen,endash,emdash" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="4" /> + <hkern g1="hyphen,endash,emdash" + g2="Z,Zcaron" + k="61" /> + <hkern g1="hyphen,endash,emdash" + g2="t" + k="8" /> + <hkern g1="hyphen,endash,emdash" + g2="z,zcaron" + k="4" /> + <hkern g1="hyphen,endash,emdash" + g2="V" + k="131" /> + <hkern g1="hyphen,endash,emdash" + g2="X" + k="119" /> + <hkern g1="hyphen,endash,emdash" + g2="j" + k="8" /> + <hkern g1="hyphen,endash,emdash" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="29" /> + <hkern g1="hyphen,endash,emdash" + g2="x" + k="51" /> + <hkern g1="hyphen,endash,emdash" + g2="Lslash" + k="-78" /> + <hkern g1="hyphen,endash,emdash" + g2="lslash" + k="-57" /> + <hkern g1="parenleft" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="25" /> + <hkern g1="parenleft" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="53" /> + <hkern g1="parenleft" + g2="J" + k="31" /> + <hkern g1="parenleft" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="-16" /> + <hkern g1="parenleft" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-16" /> + <hkern g1="parenleft" + g2="Y,Yacute,Ydieresis" + k="-16" /> + <hkern g1="parenleft" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="4" /> + <hkern g1="parenleft" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="66" /> + <hkern g1="parenleft" + g2="f,fi,fl,f_f_i,f_f_l" + k="33" /> + <hkern g1="parenleft" + g2="oslash" + k="45" /> + <hkern g1="parenleft" + g2="s,scaron" + k="31" /> + <hkern g1="parenleft" + g2="w" + k="53" /> + <hkern g1="parenleft" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="49" /> + <hkern g1="parenleft" + g2="Oslash" + k="53" /> + <hkern g1="parenleft" + g2="S,Scaron" + k="18" /> + <hkern g1="parenleft" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="12" /> + <hkern g1="parenleft" + g2="t" + k="25" /> + <hkern g1="parenleft" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="37" /> + <hkern g1="parenleft" + g2="z,zcaron" + k="6" /> + <hkern g1="parenleft" + g2="j" + k="-139" /> + <hkern g1="periodcentered" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="66" /> + <hkern g1="periodcentered" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="-12" /> + <hkern g1="periodcentered" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="102" /> + <hkern g1="periodcentered" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="49" /> + <hkern g1="periodcentered" + g2="Y,Yacute,Ydieresis" + k="135" /> + <hkern g1="periodcentered" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="12" /> + <hkern g1="periodcentered" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="20" /> + <hkern g1="periodcentered" + g2="Z,Zcaron" + k="16" /> + <hkern g1="question" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="74" /> + <hkern g1="question" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="4" /> + <hkern g1="question" + g2="J" + k="25" /> + <hkern g1="question" + g2="Y,Yacute,Ydieresis" + k="12" /> + <hkern g1="question" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="53" /> + <hkern g1="questiondown" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="-29" /> + <hkern g1="questiondown" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="94" /> + <hkern g1="questiondown" + g2="J" + k="25" /> + <hkern g1="questiondown" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="246" /> + <hkern g1="questiondown" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="147" /> + <hkern g1="questiondown" + g2="Y,Yacute,Ydieresis" + k="240" /> + <hkern g1="questiondown" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="53" /> + <hkern g1="questiondown" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="66" /> + <hkern g1="questiondown" + g2="f,fi,fl,f_f_i,f_f_l" + k="39" /> + <hkern g1="questiondown" + g2="oslash" + k="25" /> + <hkern g1="questiondown" + g2="s,scaron" + k="25" /> + <hkern g1="questiondown" + g2="w" + k="74" /> + <hkern g1="questiondown" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="45" /> + <hkern g1="questiondown" + g2="Eth" + k="49" /> + <hkern g1="questiondown" + g2="Oslash" + k="49" /> + <hkern g1="questiondown" + g2="S,Scaron" + k="57" /> + <hkern g1="questiondown" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="86" /> + <hkern g1="questiondown" + g2="Z,Zcaron" + k="-12" /> + <hkern g1="questiondown" + g2="t" + k="57" /> + <hkern g1="questiondown" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="57" /> + <hkern g1="questiondown" + g2="j" + k="-106" /> + <hkern g1="questiondown" + g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Ntilde,Thorn,IJ,uni01C4,uni01C7,uni01CA,uni01F1" + k="6" /> + <hkern g1="questiondown" + g2="b,h,k,l,thorn" + k="8" /> + <hkern g1="questiondown" + g2="m,n,p,r,ntilde" + k="8" /> + <hkern g1="quotedbl,quotesingle" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="147" /> + <hkern g1="quotedbl,quotesingle" + g2="J" + k="33" /> + <hkern g1="quotedbl,quotesingle" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="-49" /> + <hkern g1="quotedbl,quotesingle" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-16" /> + <hkern g1="quotedbl,quotesingle" + g2="Y,Yacute,Ydieresis" + k="-8" /> + <hkern g1="quotedbl,quotesingle" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="33" /> + <hkern g1="quotedbl,quotesingle" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="53" /> + <hkern g1="quotedbl,quotesingle" + g2="f,fi,fl,f_f_i,f_f_l" + k="-66" /> + <hkern g1="quotedbl,quotesingle" + g2="oslash" + k="53" /> + <hkern g1="quotedbl,quotesingle" + g2="w" + k="-33" /> + <hkern g1="quotedbl,quotesingle" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-20" /> + <hkern g1="quotedbl,quotesingle" + g2="V" + k="-29" /> + <hkern g1="quotedbl,quotesingle" + g2="X" + k="-8" /> + <hkern g1="quotedbl,quotesingle" + g2="germandbls" + k="12" /> + <hkern g1="quotedbl,quotesingle" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="-33" /> + <hkern g1="quotedbl,quotesingle" + g2="x" + k="-8" /> + <hkern g1="quoteleft,quotedblleft" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="225" /> + <hkern g1="quoteleft,quotedblleft" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="33" /> + <hkern g1="quoteleft,quotedblleft" + g2="J" + k="188" /> + <hkern g1="quoteleft,quotedblleft" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="-61" /> + <hkern g1="quoteleft,quotedblleft" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-29" /> + <hkern g1="quoteleft,quotedblleft" + g2="Y,Yacute,Ydieresis" + k="-16" /> + <hkern g1="quoteleft,quotedblleft" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="61" /> + <hkern g1="quoteleft,quotedblleft" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="76" /> + <hkern g1="quoteleft,quotedblleft" + g2="f,fi,fl,f_f_i,f_f_l" + k="-4" /> + <hkern g1="quoteleft,quotedblleft" + g2="oslash" + k="53" /> + <hkern g1="quoteleft,quotedblleft" + g2="s,scaron" + k="20" /> + <hkern g1="quoteleft,quotedblleft" + g2="w" + k="-12" /> + <hkern g1="quoteleft,quotedblleft" + g2="Oslash" + k="25" /> + <hkern g1="quoteleft,quotedblleft" + g2="t" + k="-18" /> + <hkern g1="quoteleft,quotedblleft" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="14" /> + <hkern g1="quoteleft,quotedblleft" + g2="z,zcaron" + k="-6" /> + <hkern g1="quoteleft,quotedblleft" + g2="V" + k="-16" /> + <hkern g1="quoteleft,quotedblleft" + g2="X" + k="-8" /> + <hkern g1="quoteleft,quotedblleft" + g2="florin" + k="86" /> + <hkern g1="quoteleft,quotedblleft" + g2="j" + k="-6" /> + <hkern g1="quoteleft,quotedblleft" + g2="i,igrave,iacute,icircumflex,idieresis" + k="-6" /> + <hkern g1="quoteleft,quotedblleft" + g2="m,n,p,r,ntilde" + k="53" /> + <hkern g1="quoteright,quotedblright" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="225" /> + <hkern g1="quoteright,quotedblright" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="33" /> + <hkern g1="quoteright,quotedblright" + g2="J" + k="111" /> + <hkern g1="quoteright,quotedblright" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="-61" /> + <hkern g1="quoteright,quotedblright" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-29" /> + <hkern g1="quoteright,quotedblright" + g2="Y,Yacute,Ydieresis" + k="-16" /> + <hkern g1="quoteright,quotedblright" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="70" /> + <hkern g1="quoteright,quotedblright" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="147" /> + <hkern g1="quoteright,quotedblright" + g2="f,fi,fl,f_f_i,f_f_l" + k="-12" /> + <hkern g1="quoteright,quotedblright" + g2="oslash" + k="115" /> + <hkern g1="quoteright,quotedblright" + g2="s,scaron" + k="113" /> + <hkern g1="quoteright,quotedblright" + g2="w" + k="-12" /> + <hkern g1="quoteright,quotedblright" + g2="Eth" + k="25" /> + <hkern g1="quoteright,quotedblright" + g2="Oslash" + k="25" /> + <hkern g1="quoteright,quotedblright" + g2="S,Scaron" + k="6" /> + <hkern g1="quoteright,quotedblright" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="6" /> + <hkern g1="quoteright,quotedblright" + g2="V" + k="-16" /> + <hkern g1="quoteright,quotedblright" + g2="X" + k="-8" /> + <hkern g1="quoteright,quotedblright" + g2="florin" + k="74" /> + <hkern g1="quoteright,quotedblright" + g2="germandbls" + k="25" /> + <hkern g1="quoteright,quotedblright" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="-12" /> + <hkern g1="quoteright,quotedblright" + g2="Lslash" + k="37" /> + <hkern g1="quoteright,quotedblright" + g2="lslash" + k="25" /> + <hkern g1="quoteright,quotedblright" + g2="m,n,p,r,ntilde" + k="57" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="-37" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="109" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="J" + k="12" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="188" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="176" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="Y,Yacute,Ydieresis" + k="250" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="33" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="f,fi,fl,f_f_i,f_f_l" + k="37" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="oslash" + k="12" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="s,scaron" + k="6" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="w" + k="94" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="102" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="Eth" + k="37" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="Oslash" + k="45" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="S,Scaron" + k="33" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="100" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="Z,Zcaron" + k="-6" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="t" + k="98" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="18" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="z,zcaron" + k="-12" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="V" + k="213" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="florin" + k="-53" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="germandbls" + k="12" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="j" + k="-57" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="106" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="x" + k="-20" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Ntilde,Thorn,IJ,uni01C4,uni01C7,uni01CA,uni01F1" + k="12" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="lslash" + k="25" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="i,igrave,iacute,icircumflex,idieresis" + k="12" /> + <hkern g1="slash" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="168" /> + <hkern g1="slash" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="90" /> + <hkern g1="slash" + g2="J" + k="197" /> + <hkern g1="slash" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="-57" /> + <hkern g1="slash" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-41" /> + <hkern g1="slash" + g2="Y,Yacute,Ydieresis" + k="-33" /> + <hkern g1="slash" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="193" /> + <hkern g1="slash" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="74" /> + <hkern g1="slash" + g2="f,fi,fl,f_f_i,f_f_l" + k="39" /> + <hkern g1="slash" + g2="oslash" + k="176" /> + <hkern g1="slash" + g2="s,scaron" + k="188" /> + <hkern g1="slash" + g2="w" + k="53" /> + <hkern g1="slash" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="33" /> + <hkern g1="slash" + g2="Eth" + k="31" /> + <hkern g1="slash" + g2="Oslash" + k="90" /> + <hkern g1="slash" + g2="S,Scaron" + k="45" /> + <hkern g1="slash" + g2="t" + k="12" /> + <hkern g1="slash" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="68" /> + <hkern g1="slash" + g2="z,zcaron" + k="86" /> + <hkern g1="slash" + g2="m,n,p,r,ntilde" + k="98" /> + <hkern g1="underscore" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="-61" /> + <hkern g1="underscore" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="82" /> + <hkern g1="underscore" + g2="J" + k="37" /> + <hkern g1="underscore" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="94" /> + <hkern g1="underscore" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="98" /> + <hkern g1="underscore" + g2="Y,Yacute,Ydieresis" + k="160" /> + <hkern g1="underscore" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="53" /> + <hkern g1="underscore" + g2="f,fi,fl,f_f_i,f_f_l" + k="20" /> + <hkern g1="underscore" + g2="oslash" + k="45" /> + <hkern g1="underscore" + g2="w" + k="82" /> + <hkern g1="underscore" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="70" /> + <hkern g1="underscore" + g2="Eth" + k="12" /> + <hkern g1="underscore" + g2="Oslash" + k="61" /> + <hkern g1="underscore" + g2="S,Scaron" + k="45" /> + <hkern g1="underscore" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="37" /> + <hkern g1="underscore" + g2="Z,Zcaron" + k="-33" /> + <hkern g1="underscore" + g2="t" + k="74" /> + <hkern g1="underscore" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="37" /> + <hkern g1="underscore" + g2="z,zcaron" + k="-12" /> + <hkern g1="underscore" + g2="j" + k="-139" /> + <hkern g1="ordmasculine" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="25" /> + </font> +</defs></svg> diff --git a/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-BoldItalic.ttf b/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-BoldItalic.ttf new file mode 100755 index 0000000000000000000000000000000000000000..4b4f5fe231a9cbbd17b850b7142465c409b898f8 Binary files /dev/null and b/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-BoldItalic.ttf differ diff --git a/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-BoldItalic.woff b/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-BoldItalic.woff new file mode 100755 index 0000000000000000000000000000000000000000..e62493795edcd58068534226f4a0aa79d399605f Binary files /dev/null and b/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-BoldItalic.woff differ diff --git a/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-BoldItalic.woff2 b/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-BoldItalic.woff2 new file mode 100755 index 0000000000000000000000000000000000000000..335e4f0bc9fb50df75e4226f33c6dfba189e2af9 Binary files /dev/null and b/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-BoldItalic.woff2 differ diff --git a/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-Italic.eot b/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-Italic.eot new file mode 100755 index 0000000000000000000000000000000000000000..9a7f601e99134c82fda167699896b7aff87842f2 Binary files /dev/null and b/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-Italic.eot differ diff --git a/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-Italic.svg b/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-Italic.svg new file mode 100755 index 0000000000000000000000000000000000000000..3194031e107aa12f8f306a8fd6be09372d1a7084 --- /dev/null +++ b/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-Italic.svg @@ -0,0 +1,8946 @@ +<?xml version="1.0" standalone="no"?> +<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" > +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1"> +<metadata> +Created by FontForge 20161013 at Sun Mar 19 13:47:33 2017 + By ,,, +Copyright (c)2015, HK Grotesk Latin by Alfredo Marco Pradil (ammpradil@gmail.com) and HK Grotesk Cyrillic by Stefan Peev (http://www.contextbg.net/). HK Grotesk is a trademark of Alfredo Marco Pradil. +</metadata> +<defs> +<font id="HKGrotesk-Italic" horiz-adv-x="0" > + <font-face + font-family="HK Grotesk" + font-weight="400" + font-style="italic" + font-stretch="normal" + units-per-em="2048" + panose-1="0 0 5 0 0 0 0 0 0 0" + ascent="1434" + descent="-614" + x-height="999" + cap-height="1413" + bbox="-691 -512 2774 2244" + underline-thickness="82" + underline-position="-410" + slope="-13" + unicode-range="U+0020-FB02" + /> +<missing-glyph horiz-adv-x="1257" +d="M104 0l220 954h819l-219 -954h-820zM229 102h615l174 750h-615z" /> + <glyph glyph-name="fi" unicode="fi" horiz-adv-x="988" +d="M65 0l202 877h-148l28 122l151 7q21 89 55.5 163t86.5 135t127.5 95.5t167.5 34.5q83 0 157.5 -29t116.5 -94l-88 -97q-39 53 -81.5 73t-96.5 20q-238 0 -309 -315l512 7l-230 -999h-135l202 877h-376l-202 -877h-140z" /> + <glyph glyph-name="fl" unicode="fl" horiz-adv-x="996" +d="M734 -20q-160 0 -106 229l242 1040q-24 58 -151 58q-214 0 -257 -189l-28 -119h214l-27 -122h-214l-202 -877h-140l202 877h-148l28 122h149l36 150q33 140 138 212.5t255 72.5q167 0 286 -140l-253 -1118q-8 -37 0 -50t30 -13q29 0 72 20l-29 -133q-42 -20 -97 -20z" /> + <glyph glyph-name="f_f_i" unicode="ffi" horiz-adv-x="1540" +d="M1000 1111l-26 -112h524l-229 -999h-136l202 877h-388l-202 -877h-141l202 877h-402l-202 -877h-144l202 877h-141l28 122h142l30 130q32 138 144 221.5t251 83.5q170 0 262 -109q61 50 141 79.5t157 29.5q151 0 286 -123l-96 -103q-1 3 -7.5 12.5t-22.5 25t-37 28.5 +t-54 23t-71 10q-98 0 -174 -54.5t-98 -141.5zM866 1129q17 70 31 102q-9 13 -25.5 27.5t-59.5 31.5t-95 17q-98 0 -168.5 -53.5t-91.5 -142.5l-26 -112h405z" /> + <glyph glyph-name="f_f_l" unicode="ffl" horiz-adv-x="1552" +d="M1277 -20q-59 0 -87.5 25.5t-28.5 70t13 103.5l246 1060q-11 30 -49.5 49t-91.5 19q-95 0 -168 -56.5t-94 -145.5l-24 -106h165l-28 -122h-165l-202 -877h-140l202 877h-421l-202 -877h-144l202 877h-141l28 122h142l30 124q32 140 144 225.5t255 85.5q70 0 129.5 -20 +t87.5 -40.5t58 -49.5q132 110 298 110q97 0 154 -31t118 -107l-256 -1125q-13 -56 31 -56q29 0 68 18l-20 -135q-59 -18 -109 -18zM431 999l425 7q3 12 11.5 49.5t12.5 51.5t10.5 39.5t12.5 41.5t12 29q-22 34 -68 62t-118 28q-100 0 -175.5 -54.5t-96.5 -145.5z" /> + <glyph glyph-name=".notdef" horiz-adv-x="1257" +d="M104 0l220 954h819l-219 -954h-820zM229 102h615l174 750h-615z" /> + <glyph glyph-name=".null" + /> + <glyph glyph-name="nonmarkingreturn" horiz-adv-x="682" + /> + <glyph glyph-name="space" unicode=" " horiz-adv-x="553" + /> + <glyph glyph-name="exclam" unicode="!" horiz-adv-x="637" +d="M233 381l216 1054h172l-274 -1054h-114zM106 0l44 194h196l-45 -194h-195z" /> + <glyph glyph-name="quotedbl" unicode=""" horiz-adv-x="914" +d="M351 984l99 429h134l-99 -429h-134zM651 984l99 429h136l-99 -429h-136z" /> + <glyph glyph-name="numbersign" unicode="#" horiz-adv-x="1376" +d="M144 0l191 438h-238l26 113h262l144 333h-248l26 110h270l197 440h122l-195 -437h318l193 437h122l-193 -439h238l-26 -111h-260l-146 -333h248l-26 -109h-270l-195 -442h-122l193 436h-319l-190 -436h-122zM507 551h318l144 333h-317z" /> + <glyph glyph-name="dollar" unicode="$" horiz-adv-x="1109" +d="M330 -246l60 234q-157 17 -253 119.5t-84 266.5l158 28q-16 -134 59.5 -202t206.5 -68q134 0 230 67.5t127 196.5q11 50 1.5 92t-35 72t-63 57t-81.5 48t-90.5 45t-90 47.5t-79.5 55.5t-60.5 69.5t-31.5 89.5t7 115q33 140 144 232t256 111l59 229h108l-60 -228 +q110 -10 187 -67t110 -161l-135 -68q-24 80 -83.5 119t-140.5 39q-98 0 -182.5 -61t-105.5 -158q-12 -53 1.5 -96t45.5 -72t77 -57t96 -49.5t101 -50t93.5 -59.5t73 -76.5t39 -101t-7.5 -133.5q-39 -171 -175.5 -278.5t-314.5 -115.5l-60 -231h-107z" /> + <glyph glyph-name="percent" unicode="%" horiz-adv-x="1576" +d="M461 804q-57 0 -98 21t-62 55t-30 78t-7 88t12 87q12 51 35 100.5t59 97t90 76.5t117 29t108 -29.5t63.5 -76.5t23 -107t-11.5 -120q-18 -76 -56 -141.5t-102.5 -111.5t-140.5 -46zM223 2l1076 1405h137l-1076 -1405h-137zM458 904q48 0 90.5 36.5t68.5 87t39 106.5 +q9 48 9.5 92.5t-23 76t-67.5 31.5q-71 0 -125 -69.5t-75 -160.5q-9 -48 -9.5 -92.5t23.5 -76t69 -31.5zM1103 3q-56 0 -97 21t-62 54.5t-30.5 77.5t-7.5 87.5t12 87.5q11 50 34 99.5t59 96.5t90 76t117 29t107.5 -29t63.5 -76t24 -106.5t-12 -120.5q-28 -120 -107 -208.5 +t-191 -88.5zM1101 103q70 0 124 70.5t73 157.5q9 49 10 93t-22 75t-67 31q-73 0 -127 -68.5t-74 -159.5q-9 -48 -9.5 -92t23 -75.5t69.5 -31.5z" /> + <glyph glyph-name="ampersand" unicode="&" horiz-adv-x="1373" +d="M1203 670q-71 -224 -201 -388l158 -250l-115 -86l-142 229q-214 -196 -482 -196q-181 0 -278 88t-61 249q15 63 49 121t74 101t101.5 89t110 76t120.5 70q-15 26 -24.5 42.5t-25 45.5t-24.5 51.5t-19 53t-14 57t-4 56.5t6 58q31 134 145.5 213.5t251.5 79.5 +q139 0 213.5 -92.5t41.5 -229.5q-14 -60 -47.5 -114t-86.5 -101t-105.5 -83t-125.5 -78l212 -336q90 132 145 302zM555 1106q-21 -96 89 -274q145 81 225 149t100 155q17 74 -25 122t-117 48q-89 0 -169.5 -53.5t-102.5 -146.5zM430 112q233 0 406 170l-238 382 +q-65 -37 -108 -63t-96 -64.5t-86 -73t-61 -80t-39 -93.5t3 -83.5t47.5 -55.5t76.5 -29.5t95 -9.5z" /> + <glyph glyph-name="quotesingle" unicode="'" horiz-adv-x="612" +d="M357 1013l99 429h134l-98 -429h-135z" /> + <glyph glyph-name="parenleft" unicode="(" horiz-adv-x="567" +d="M253 -27q-54 80 -80 214t-23 273t31 259q46 196 149.5 392.5t251.5 335.5l136 -10q-156 -156 -264.5 -349t-157.5 -400q-45 -187 -27.5 -379t100.5 -345z" /> + <glyph glyph-name="parenright" unicode=")" horiz-adv-x="569" +d="M-51 -27q154 157 262 351.5t154 393.5q45 186 26 382t-97 347l117 -10q87 -139 103.5 -342.5t-32.5 -402.5q-43 -184 -157.5 -399t-246.5 -329z" /> + <glyph glyph-name="asterisk" unicode="*" horiz-adv-x="878" +d="M401 850l-82 68l217 197l-239 41l61 112l208 -100l27 245h113l-88 -245l252 100l11 -112l-260 -41l129 -197l-104 -68l-70 232z" /> + <glyph glyph-name="plus" unicode="+" horiz-adv-x="1276" +d="M605 106v463h-457v113h457v461h114v-461h457v-113h-457v-463h-114z" /> + <glyph glyph-name="comma" unicode="," horiz-adv-x="630" +d="M20 -225l215 489h196l-316 -489h-95z" /> + <glyph glyph-name="hyphen" unicode="-" horiz-adv-x="838" +d="M190 621l27 114h513l-26 -114h-514z" /> + <glyph glyph-name="period" unicode="." horiz-adv-x="668" +d="M120 0l45 194h198l-44 -194h-199z" /> + <glyph glyph-name="slash" unicode="/" horiz-adv-x="937" +d="M-202 -430l1205 1946h155l-1202 -1946h-158z" /> + <glyph glyph-name="zero" unicode="0" horiz-adv-x="1171" +d="M486 -20q-115 0 -198 46.5t-125.5 121t-60.5 173.5t-12 198.5t30 201.5q22 98 59.5 194.5t96.5 192t131.5 167t170.5 116.5t206 45q104 0 182.5 -41.5t124.5 -113t68 -167t18 -203.5t-31 -222q-25 -109 -67.5 -211.5t-104.5 -193t-135.5 -158t-164.5 -107t-188 -39.5z +M490 124q77 0 149 39t126.5 100.5t100 142t75 160t47.5 157.5q18 77 25 151.5t-1 150.5t-33 133t-77.5 93t-128.5 36q-80 0 -153 -37.5t-128 -98t-101 -140t-75.5 -159t-48.5 -160.5q-18 -77 -25 -151.5t1 -151.5t33.5 -134.5t80 -94t133.5 -36.5z" /> + <glyph glyph-name="one" unicode="1" horiz-adv-x="1171" +d="M471 0l249 1081h-333l30 130h165q83 0 144.5 52.5t78.5 129.5l5 20h144l-325 -1413h-158z" /> + <glyph glyph-name="two" unicode="2" horiz-adv-x="1171" +d="M-20 0l28 146q333 185 559 386q169 138 265.5 256t126.5 250q29 123 -19 188t-155 65q-133 0 -232 -95t-144 -253l-151 29q51 218 193 339t339 121q195 0 284.5 -115t45.5 -303q-35 -148 -147.5 -288t-318.5 -313q-36 -29 -69.5 -54t-64 -47t-54 -38.5t-51 -34 +t-42.5 -27.5t-41 -25t-34.5 -20t-35 -20t-30.5 -17l754 4l-30 -134h-976z" /> + <glyph glyph-name="three" unicode="3" horiz-adv-x="1171" +d="M465 -20q-102 0 -183.5 27t-136.5 80.5t-74 133.5t4 185h145q-15 -71 -2 -125t50 -90t89.5 -54.5t116.5 -18.5q139 0 259 80.5t152 220.5q30 128 -41.5 194.5t-204.5 66.5h-102l33 140h90q106 0 188 65.5t108 179.5q24 106 -32 167t-159 61q-115 0 -210.5 -70.5 +t-123.5 -182.5l-134 30q26 114 98 198t169.5 125t209.5 41q85 0 154 -26t114.5 -75t62 -119.5t-4.5 -160.5q-21 -93 -80 -170.5t-154 -126.5q107 -40 145.5 -138t11.5 -230q-45 -196 -200.5 -302t-357.5 -106z" /> + <glyph glyph-name="four" unicode="4" horiz-adv-x="1171" +d="M606 0l87 381h-651l19 90l883 942h143l-208 -897h225l-30 -135h-226l-87 -381h-155zM262 516h462l154 657z" /> + <glyph glyph-name="five" unicode="5" horiz-adv-x="1171" +d="M469 -20q-180 0 -280.5 113.5t-98.5 285.5l145 33q-1 -45 3.5 -84.5t20 -80t41 -69t70 -46.5t103.5 -18q78 0 149 31.5t122 83.5t86.5 115.5t51.5 131.5q16 61 9 118t-30 101.5t-73.5 71t-121.5 26.5q-92 0 -180 -44t-151 -119l-124 71l287 712h699l-32 -138h-578 +l-184 -452q123 100 291 100q132 0 221.5 -65.5t120.5 -174t2 -236.5q-46 -193 -209 -330t-360 -137z" /> + <glyph glyph-name="six" unicode="6" horiz-adv-x="1171" +d="M479 -20q-131 0 -226 65t-133 176t-8 242q30 129 119 238l579 712h177l-440 -524q63 12 121 12q131 0 227 -59.5t135.5 -166t10.5 -237.5q-29 -121 -110.5 -225.5t-201.5 -168.5t-250 -64zM489 122q135 0 254.5 101t151.5 241q30 131 -37 222.5t-195 91.5 +q-135 0 -254 -100.5t-152 -241.5q-29 -130 38 -222t194 -92z" /> + <glyph glyph-name="seven" unicode="7" horiz-adv-x="1171" +d="M154 0l894 1275h-755l32 138h939l-17 -78l-915 -1335h-178z" /> + <glyph glyph-name="eight" unicode="8" horiz-adv-x="1171" +d="M477 -20q-99 0 -180 26.5t-137 79.5t-75.5 132.5t3.5 185.5q29 124 114 217t220 147q-71 46 -100 130t-5 186q38 162 173 256t302 94q84 0 152.5 -25.5t114 -74t62 -119t-4.5 -159.5q-21 -94 -82.5 -171.5t-159.5 -127.5q104 -48 146 -148.5t12 -232.5 +q-30 -130 -116 -221.5t-198 -133t-241 -41.5zM651 811q111 0 203 70t118 184q26 109 -29 170.5t-158 61.5q-105 0 -200 -67t-121 -179q-25 -109 26.5 -174.5t160.5 -65.5zM484 112q137 0 252 80.5t149 224.5q30 129 -41.5 202t-201.5 73q-141 0 -256 -81.5t-148 -221.5 +q-31 -132 43.5 -204.5t202.5 -72.5z" /> + <glyph glyph-name="nine" unicode="9" horiz-adv-x="1171" +d="M284 0l436 524q-60 -12 -122 -12q-201 0 -308.5 132.5t-62.5 330.5q43 187 204.5 323t358.5 136q130 0 225 -65t132.5 -176.5t6.5 -242.5q-29 -128 -115 -238l-581 -712h-174zM603 635q136 0 255 100.5t151 241.5q31 130 -36.5 222t-195.5 92q-134 0 -254 -101t-152 -241 +q-29 -131 38 -222.5t194 -91.5z" /> + <glyph glyph-name="colon" unicode=":" horiz-adv-x="677" +d="M300 761l45 193h196l-45 -193h-196zM126 0l45 194h196l-45 -194h-196z" /> + <glyph glyph-name="semicolon" unicode=";" horiz-adv-x="658" +d="M338 761l45 193h196l-45 -193h-196zM33 -225l214 489h197l-316 -489h-95z" /> + <glyph glyph-name="less" unicode="<" horiz-adv-x="1258" +d="M1032 170l-898 504l898 504l68 -118l-717 -386l717 -387z" /> + <glyph glyph-name="equal" unicode="=" horiz-adv-x="1237" +d="M257 775v136h759v-136h-759zM257 433v136h759v-136h-759z" /> + <glyph glyph-name="greater" unicode=">" horiz-adv-x="1258" +d="M290 170l-68 117l717 387l-717 386l68 118l899 -504z" /> + <glyph glyph-name="question" unicode="?" horiz-adv-x="1030" +d="M411 376l55 236q13 59 41.5 102.5t63.5 69.5t75.5 46.5l81 41t76 46t63.5 68.5t42 101q25 107 -33 160.5t-171 53.5q-116 0 -212 -67t-122 -179l-142 14q40 168 175 266.5t300 98.5q183 0 282 -100.5t58 -277.5q-16 -67 -46.5 -119t-68 -83.5t-79.5 -56.5t-82.5 -44 +t-75 -39t-60 -49.5t-34.5 -68.5l-50 -220h-137zM298 0l45 194h196l-45 -194h-196z" /> + <glyph glyph-name="at" unicode="@" horiz-adv-x="2065" +d="M841 -348q-182 0 -329.5 60t-242.5 173t-127.5 276t14.5 369q44 189 146 355t244 287t324.5 190.5t378.5 69.5q259 0 435.5 -117.5t240 -319t6.5 -450.5q-27 -115 -77 -219t-120.5 -190.5t-168.5 -137.5t-208 -51q-141 0 -199 76.5t-13 199.5q-73 -76 -164 -116.5 +t-180 -40.5q-79 0 -135 31.5t-81.5 85t-31.5 124t14 148.5q23 98 77.5 199.5t130 187.5t176 141t202.5 55q105 0 169 -55t63 -141l63 147l149 -7q-27 -64 -104 -224t-137 -300t-80 -229q-17 -73 1.5 -101t84.5 -28q88 0 164 44t128 116.5t86.5 151.5t54.5 164 +q46 203 -4.5 365.5t-194 257t-357.5 94.5q-171 0 -329.5 -61.5t-280.5 -167t-210 -250t-126 -309.5q-39 -171 -12.5 -302t105.5 -220.5t198.5 -135.5t268.5 -46q125 0 263 41l34 -141q-153 -49 -309 -49zM831 215q85 0 166 45t140.5 115.5t101.5 150.5t59 157 +q49 206 -132 206q-69 0 -136 -29.5t-120 -77.5t-97.5 -109t-73.5 -125t-43 -124q-47 -209 135 -209z" /> + <glyph glyph-name="A" unicode="A" horiz-adv-x="1306" +d="M-52 0l856 1413h122l202 -1413h-167l-38 307h-621l-178 -307h-176zM389 452h514l-85 728z" /> + <glyph glyph-name="B" unicode="B" horiz-adv-x="1243" +d="M97 0l326 1413h385q89 0 163 -20.5t131.5 -62t80 -114t0.5 -167.5q-49 -204 -254 -308q226 -108 165 -379q-23 -99 -77 -171.5t-128 -113t-154 -59t-169 -18.5h-469zM434 791h231q83 0 153.5 27t125.5 88.5t75 150.5q15 52 6.5 89.5t-25.5 61.5t-52 38t-72.5 19.5 +t-86.5 5.5h-244zM287 147h306q60 0 113 12.5t102.5 40t85.5 78.5t52 122q57 249 -223 249h-320z" /> + <glyph glyph-name="C" unicode="C" horiz-adv-x="1425" +d="M651 -20q-129 0 -227.5 38.5t-158 106.5t-89.5 162t-29.5 203t29.5 231q34 148 101 275t163.5 226.5t231 156.5t290.5 57q136 0 241.5 -41.5t173.5 -129t82 -212.5l-152 -46q-26 286 -358 286q-124 0 -230.5 -48.5t-182 -132t-128 -187t-80.5 -223.5q-22 -95 -25 -178.5 +t16 -157.5t60 -126.5t113 -83t170 -30.5q326 0 507 302l133 -77q-121 -181 -289 -276t-362 -95z" /> + <glyph glyph-name="D" unicode="D" horiz-adv-x="1406" +d="M97 0l326 1413h354q344 0 488 -189.5t62 -541.5q-77 -329 -301.5 -505.5t-565.5 -176.5h-363zM290 145h168q126 0 239 35t209 104t166.5 180.5t104.5 256.5q62 271 -43 410.5t-382 139.5h-202z" /> + <glyph glyph-name="E" unicode="E" horiz-adv-x="1237" +d="M97 0l326 1413h915l-32 -137h-756l-115 -502h657l-32 -133h-657l-115 -496h757l-32 -145h-916z" /> + <glyph glyph-name="F" unicode="F" horiz-adv-x="1196" +d="M97 0l326 1413h906l-32 -137h-747l-115 -502h659l-32 -133h-659l-147 -641h-159z" /> + <glyph glyph-name="G" unicode="G" horiz-adv-x="1509" +d="M651 -20q-129 0 -227.5 38.5t-158 106.5t-89.5 162t-29.5 203t29.5 231q27 117 75 222.5t118.5 196t158 156t199 103t235.5 37.5q202 0 329 -99.5t167 -283.5l-153 -49q-31 140 -121.5 211.5t-235.5 71.5q-124 0 -230 -47.5t-182 -130t-128 -185.5t-80 -222 +q-22 -95 -25 -178.5t16 -157t60.5 -126t113 -82.5t169.5 -30q124 0 238.5 54t203 162t124.5 253l-325 -7l29 125h473l-165 -715h-132l59 251q-74 -116 -212 -193.5t-304 -77.5z" /> + <glyph glyph-name="H" unicode="H" horiz-adv-x="1455" +d="M97 0l326 1413h159l-147 -639h713l147 639h159l-326 -1413h-158l146 641h-713l-147 -641h-159z" /> + <glyph glyph-name="I" unicode="I" horiz-adv-x="582" +d="M97 0l326 1413h159l-326 -1413h-159z" /> + <glyph glyph-name="J" unicode="J" horiz-adv-x="1119" +d="M390 -20q-128 0 -212.5 58.5t-115 153t-12.5 211.5l155 7q-12 -56 -5 -108t26.5 -92.5t64 -65t108.5 -24.5q85 0 149.5 28.5t107 83t69 116.5t45.5 144l181 784h-532l32 137h691l-213 -918q-116 -515 -539 -515z" /> + <glyph glyph-name="K" unicode="K" horiz-adv-x="1450" +d="M97 0l326 1413h159l-194 -829l973 829h208l-664 -557l367 -856h-180l-306 757l-439 -367l-91 -390h-159z" /> + <glyph glyph-name="L" unicode="L" horiz-adv-x="1037" +d="M97 0l326 1413h159l-294 -1268h605l-33 -145h-763z" /> + <glyph glyph-name="M" unicode="M" horiz-adv-x="1762" +d="M97 0l326 1413h256l145 -1135l677 1135h260l-325 -1413h-157l296 1276l-693 -1153h-174l-156 1153l-296 -1276h-159z" /> + <glyph glyph-name="N" unicode="N" horiz-adv-x="1418" +d="M97 0l326 1413h220l332 -1228l285 1228h157l-325 -1413h-224l-327 1230l-285 -1230h-159z" /> + <glyph glyph-name="O" unicode="O" horiz-adv-x="1515" +d="M648 -20q-107 0 -193 27t-144.5 76.5t-97.5 117.5t-54.5 151t-11.5 175.5t27 193.5q34 147 101.5 274t165 226t231.5 156t288 57q128 0 226.5 -39t158 -107.5t90 -162t30 -203t-28.5 -230.5q-34 -147 -101.5 -274t-165 -225.5t-232 -155.5t-289.5 -57zM657 126 +q102 0 193 32.5t161 87.5t126 131.5t93.5 162.5t59.5 181q21 91 23.5 172.5t-17 154t-61.5 125.5t-115 83.5t-172 30.5q-124 0 -231.5 -49t-184 -133t-129.5 -188.5t-80 -224.5q-21 -91 -23.5 -172.5t16.5 -154t60 -125.5t112.5 -83.5t168.5 -30.5z" /> + <glyph glyph-name="P" unicode="P" horiz-adv-x="1148" +d="M97 0l326 1413h390q208 0 308 -108.5t56 -295.5q-41 -179 -181.5 -275t-349.5 -96h-244l-146 -638h-159zM434 779h234q143 0 237 66t122 193q26 112 -34 173t-200 61h-244z" /> + <glyph glyph-name="Q" unicode="Q" horiz-adv-x="1543" +d="M1201 -97l-147 194q-170 -117 -406 -117q-107 0 -193 27t-144.5 76.5t-97.5 117.5t-54.5 151t-11.5 175.5t27 193.5q34 147 101.5 274t165 226t231.5 156t288 57q128 0 226.5 -39t158 -107t90 -162t30 -203t-28.5 -231q-72 -313 -270 -501l150 -192zM658 124 +q164 0 306 86l-151 200l111 97l157 -198q144 158 204 412q21 91 23.5 172.5t-16 154.5t-59.5 126t-113.5 84t-170.5 31q-125 0 -232 -49t-183 -134t-128 -189.5t-80 -224.5q-21 -91 -24 -172.5t16 -154.5t59.5 -126t112 -84t168.5 -31z" /> + <glyph glyph-name="R" unicode="R" horiz-adv-x="1219" +d="M95 -2l328 1413h398q93 0 168.5 -28t124 -81t67 -128.5t-3.5 -169.5q-31 -136 -133.5 -230.5t-245.5 -122.5l225 -653h-171l-206 634h-244l-148 -634h-159zM436 778h265q120 6 210.5 73t116.5 183q26 113 -36 175t-190 62h-252z" /> + <glyph glyph-name="S" unicode="S" horiz-adv-x="1112" +d="M485 -16q-119 0 -215.5 42.5t-157 131.5t-60.5 211l156 30q0 -130 73.5 -201t212.5 -71q152 0 246 81.5t94 201.5q0 63 -29.5 112.5t-76.5 81.5t-103.5 60.5t-113 59.5t-103.5 68t-76.5 95t-29.5 133q0 113 61.5 208t166.5 150.5t229 55.5q128 0 223 -60t132 -167 +l-127 -65q-22 75 -85.5 116t-146.5 41q-116 0 -206 -75t-90 -184q0 -58 29.5 -103t76.5 -75.5t103.5 -58.5t113 -59.5t103.5 -70.5t76.5 -100t29.5 -139q0 -188 -147 -319t-359 -131z" /> + <glyph glyph-name="T" unicode="T" horiz-adv-x="1234" +d="M422 0l295 1282h-477l31 131h1114l-30 -131h-477l-296 -1282h-160z" /> + <glyph glyph-name="U" unicode="U" horiz-adv-x="1352" +d="M566 -20q-104 0 -182.5 29.5t-124.5 80.5t-69 121t-22.5 148.5t20.5 165.5l205 888h159l-198 -857q-22 -96 -23.5 -170t20 -133.5t78.5 -91t148 -31.5q96 0 172.5 33.5t129.5 95.5t88.5 138.5t57.5 172.5l196 843h159l-206 -892q-26 -114 -76 -209.5t-123.5 -171 +t-178.5 -118t-230 -42.5z" /> + <glyph glyph-name="V" unicode="V" horiz-adv-x="1324" +d="M480 0l-206 1413h162l156 -1203l714 1203h166l-856 -1413h-136z" /> + <glyph glyph-name="W" unicode="W" horiz-adv-x="1973" +d="M356 0l-71 1413h159l52 -1219l616 1137h127l89 -1137l616 1219h167l-725 -1413h-174l-87 1076l-596 -1076h-173z" /> + <glyph glyph-name="X" unicode="X" horiz-adv-x="1262" +d="M-43 0l632 707l-300 706h184l231 -586l507 586h189l-628 -706l300 -707h-180l-239 576l-503 -576h-193z" /> + <glyph glyph-name="Y" unicode="Y" horiz-adv-x="1331" +d="M473 0l129 553l-339 860h180l266 -702l595 702h187l-735 -860l-129 -553h-154z" /> + <glyph glyph-name="Z" unicode="Z" horiz-adv-x="1277" +d="M-26 0l26 124l1152 1152h-839l32 137h1043l-28 -130l-1147 -1139h883l-34 -144h-1088z" /> + <glyph glyph-name="bracketleft" unicode="[" horiz-adv-x="641" +d="M70 -93l369 1597h361l-20 -91h-236l-325 -1413h235l-22 -93h-362z" /> + <glyph glyph-name="backslash" unicode="\" horiz-adv-x="937" +d="M557 -430l-306 1946h151l303 -1946h-148z" /> + <glyph glyph-name="bracketright" unicode="]" horiz-adv-x="641" +d="M-65 -93l22 93h236l326 1413h-236l21 91h361l-368 -1597h-362z" /> + <glyph glyph-name="asciicircum" unicode="^" horiz-adv-x="974" +d="M202 839l496 589l231 -589h-153l-128 334l-284 -334h-162z" /> + <glyph glyph-name="underscore" unicode="_" horiz-adv-x="1242" +d="M90 -114l27 114h779l-26 -114h-780z" /> + <glyph glyph-name="grave" unicode="`" horiz-adv-x="539" +d="M463 1122l-192 291h185l150 -291h-143z" /> + <glyph glyph-name="a" unicode="a" horiz-adv-x="1129" +d="M924 999h149l-229 -999h-146l25 126q-140 -146 -334 -146q-96 0 -165.5 42.5t-103 115t-41.5 169.5t20 207q50 217 187.5 361.5t318.5 144.5q209 0 283 -162zM824 514q19 73 17 139.5t-20.5 117.5t-66 81t-119.5 30q-75 0 -141 -32t-113.5 -88t-81.5 -126t-52 -151 +q-20 -73 -17.5 -140t21.5 -118t66.5 -81t117.5 -30q149 0 249.5 113t139.5 285z" /> + <glyph glyph-name="b" unicode="b" horiz-adv-x="1126" +d="M520 -20q-207 0 -282 163l-35 -143h-149l326 1413h148l-129 -545q144 154 337 154q78 0 139 -27.5t98.5 -77t57 -117t18.5 -147.5t-21 -168q-33 -141 -103 -254t-176 -182t-229 -69zM488 111q75 0 142 33t116.5 89.5t84.5 128t53 152.5q19 73 16 141t-22.5 120 +t-67.5 83.5t-119 31.5q-99 0 -181 -58.5t-132.5 -147.5t-75.5 -199q-20 -73 -18 -141t21 -119.5t66 -82.5t117 -31z" /> + <glyph glyph-name="c" unicode="c" horiz-adv-x="972" +d="M418 -20q-86 0 -152.5 28.5t-106.5 78.5t-63 117.5t-21 145.5t19 162q23 100 70.5 189.5t114.5 160.5t158.5 112.5t194.5 41.5q135 0 222.5 -72.5t114.5 -195.5l-149 -47q-1 89 -54.5 138t-140.5 49q-62 0 -118 -24t-98 -64t-76.5 -93.5t-57 -109t-35.5 -114.5 +q-16 -70 -16.5 -133t16 -119.5t62.5 -90t119 -33.5q94 0 178 56t127 145l118 -70q-74 -124 -184.5 -191t-241.5 -67z" /> + <glyph glyph-name="d" unicode="d" horiz-adv-x="1129" +d="M1020 1413h149l-325 -1413h-146l25 126q-140 -146 -334 -146q-96 0 -165.5 42.5t-103 115t-41.5 169.5t20 207q50 217 187.5 361.5t318.5 144.5q209 0 283 -162zM824 514q19 73 17 139.5t-20.5 117.5t-66 81t-119.5 30q-75 0 -141 -32t-113.5 -88t-81.5 -126t-52 -151 +q-20 -73 -17.5 -140t21.5 -118t66.5 -81t117.5 -30q149 0 249.5 113t139.5 285z" /> + <glyph glyph-name="e" unicode="e" horiz-adv-x="1036" +d="M434 -12q-111 0 -190.5 41t-118 111t-48.5 165t17 203q23 100 70 189.5t114 160.5t158.5 112.5t193.5 41.5q97 0 166.5 -30t107 -80t53 -120t11 -146t-25.5 -163q-6 -20 -10 -31h-697q-18 -66 -12.5 -125t28.5 -102.5t71.5 -69t116.5 -25.5q97 0 171 24.5t142 84.5 +l92 -92q-99 -81 -195.5 -115t-214.5 -34zM263 564h561q34 150 -15.5 232.5t-186.5 82.5q-132 0 -227 -90t-132 -225z" /> + <glyph glyph-name="f" unicode="f" horiz-adv-x="678" +d="M100 0l201 877h-182l28 120h182l45 193q28 119 113.5 181.5t202.5 62.5q86 0 161 -41l-58 -109q-53 26 -107 26q-62 0 -107.5 -35t-60.5 -103l-40 -173h287l-27 -122h-288l-202 -877h-148z" /> + <glyph glyph-name="g" unicode="g" horiz-adv-x="1130" +d="M840 -7q-46 -202 -178 -314t-330 -112q-132 0 -223 52.5t-133 150.5l128 73q55 -147 235 -147q134 0 228.5 86t126.5 225l33 129q-140 -152 -331 -152q-99 0 -170.5 42t-105 114.5t-41.5 169t20 206.5q33 141 102.5 253.5t177 181.5t232.5 69q101 0 172 -44t105 -120 +l35 143h151zM436 116q76 0 142 33t113.5 89.5t81 127t51.5 150.5q19 72 17 139t-20 118.5t-65 82.5t-118 31q-75 0 -141.5 -33t-115 -89t-82.5 -127t-52 -151q-20 -73 -18 -140t21 -118.5t67 -82t119 -30.5z" /> + <glyph glyph-name="h" unicode="h" horiz-adv-x="1119" +d="M54 0l325 1413h148l-135 -571q67 81 164 127.5t193 46.5q71 0 124.5 -22t84.5 -60t46 -90t14 -111t-16 -124l-140 -609h-151l138 599q13 57 15 101.5t-8.5 86.5t-45.5 65t-94 23q-130 0 -245 -100.5t-145 -234.5l-124 -540h-148z" /> + <glyph glyph-name="i" unicode="i" horiz-adv-x="488" +d="M325 1221l45 192h172l-44 -192h-173zM54 0l229 999h152l-230 -999h-151z" /> + <glyph glyph-name="j" unicode="j" horiz-adv-x="494" +d="M328 1225l46 193h174l-46 -193h-174zM-136 -438q-69 0 -151 33l47 108q47 -15 106 -15q61 0 99.5 42t52.5 100l269 1169h153l-268 -1161q-30 -130 -106 -203t-202 -73z" /> + <glyph glyph-name="k" unicode="k" horiz-adv-x="1044" +d="M54 0l326 1413h150l-222 -952l569 538h191l-413 -367l244 -632h-172l-183 530l-270 -237l-70 -293h-150z" /> + <glyph glyph-name="l" unicode="l" horiz-adv-x="518" +d="M220 -20q-46 0 -76 13t-43.5 32.5t-16.5 51.5t0.5 61.5t13.5 70.5l278 1204h151l-288 -1244q-14 -64 43 -64q22 0 86 17l-17 -124q-61 -18 -131 -18z" /> + <glyph glyph-name="m" unicode="m" horiz-adv-x="1697" +d="M54 0l229 999h151l-40 -165q50 84 132.5 134t171.5 50q113 0 184 -52.5t82 -150.5q142 201 350 201q92 0 155.5 -34t91 -91t33.5 -132.5t-16 -158.5l-139 -600h-151l138 599q66 291 -136 291q-121 0 -215.5 -98t-124.5 -229l-129 -563h-151l138 603q67 287 -133 287 +q-121 0 -216 -98t-125 -229l-130 -563h-150z" /> + <glyph glyph-name="n" unicode="n" horiz-adv-x="1118" +d="M54 0l229 999h150l-37 -151q65 78 157.5 123t185.5 45q92 0 155 -34t89.5 -91t32 -132.5t-16.5 -158.5l-138 -600h-150l138 599q13 57 14.5 101.5t-9.5 86t-47 64.5t-96 23q-124 0 -237.5 -95t-140.5 -218l-130 -561h-149z" /> + <glyph glyph-name="o" unicode="o" horiz-adv-x="1119" +d="M450 -20q-106 0 -188 42t-127 114t-60 168t13 206q49 212 211 357t365 145q84 0 154.5 -27t117.5 -75.5t76 -115.5t31.5 -146t-15.5 -167q-48 -211 -212 -356t-366 -145zM458 112q83 0 153 32.5t120 89t84 126.5t53 150q20 72 17 138.5t-23.5 118t-73 82t-131.5 30.5 +q-81 0 -151.5 -32.5t-120 -89t-84 -126t-53.5 -150.5q-19 -72 -16 -138.5t23.5 -118t72.5 -82t130 -30.5z" /> + <glyph glyph-name="p" unicode="p" horiz-adv-x="1129" +d="M-47 -438l332 1437h148l-31 -129q139 150 336 150q78 0 139 -27.5t98.5 -76.5t57 -116t18.5 -147t-21 -168q-51 -218 -187.5 -361.5t-319.5 -143.5q-208 0 -283 163l-137 -581h-150zM489 111q150 0 254 116t143 287q19 73 16.5 140.5t-22 119.5t-68 83t-120.5 31 +q-98 0 -180 -58t-133 -147t-76 -198q-20 -73 -17.5 -141t21.5 -119.5t66 -82.5t116 -31z" /> + <glyph glyph-name="q" unicode="q" horiz-adv-x="1127" +d="M590 -438l135 569q-144 -151 -338 -151q-96 0 -165.5 42.5t-103 115t-41.5 169.5t20 207q51 218 188.5 362t319.5 144q208 0 282 -162l36 141h150l-332 -1437h-151zM432 111q76 0 142.5 33t114.5 89.5t81.5 127.5t51.5 153q18 76 17.5 141t-19.5 118t-66 83.5t-119 30.5 +q-75 0 -141 -33t-114.5 -89.5t-82.5 -127.5t-52 -152q-20 -73 -18 -141t21 -119.5t66.5 -82.5t117.5 -31z" /> + <glyph glyph-name="r" unicode="r" horiz-adv-x="794" +d="M54 0l229 999h151l-39 -172q57 92 143 139.5t170 47.5q48 0 94.5 -14t73.5 -37l-73 -127q-58 36 -124 36q-85 0 -162 -59t-128.5 -150t-76.5 -197l-108 -466h-150z" /> + <glyph glyph-name="s" unicode="s" horiz-adv-x="873" +d="M361 -20q-141 0 -236.5 76t-108.5 178l136 51q7 -75 69 -123.5t152 -48.5q101 0 165 58t64 136q0 45 -24.5 75.5t-64 47.5t-86.5 30.5t-94.5 31t-87 42t-64 71t-24.5 111.5q0 140 99.5 219t245.5 79q125 0 210 -58t113 -142l-125 -54q-20 60 -72 94t-132 34 +q-88 0 -143.5 -41.5t-55.5 -121.5q0 -44 25 -73.5t65 -46.5t88.5 -31t96.5 -32t88 -44t65 -73t25 -113q0 -132 -114 -232t-275 -100z" /> + <glyph glyph-name="t" unicode="t" horiz-adv-x="671" +d="M336 -20q-131 0 -175.5 78t-13.5 214l140 605h-157l28 122h157l51 225l182 140l-84 -365h256l-28 -122h-255l-144 -620q-19 -79 4.5 -116.5t77.5 -37.5q48 0 113 28l-19 -133q-50 -18 -133 -18z" /> + <glyph glyph-name="u" unicode="u" horiz-adv-x="1115" +d="M377 -23q-92 0 -154.5 35.5t-88.5 96t-31 139.5t18 166l135 585h149l-138 -605q-68 -288 130 -288q126 0 241 99.5t148 238.5l127 555h148l-229 -999h-147l39 163q-52 -73 -147.5 -129.5t-199.5 -56.5z" /> + <glyph glyph-name="v" unicode="v" horiz-adv-x="949" +d="M293 0l-142 999h161l88 -805l466 805h162l-603 -999h-132z" /> + <glyph glyph-name="w" unicode="w" horiz-adv-x="1419" +d="M213 -1l-48 1000h156l18 -802l415 802h138l42 -800l390 800h161l-511 -999h-146l-43 811l-427 -812h-145z" /> + <glyph glyph-name="x" unicode="x" horiz-adv-x="925" +d="M-69 0l454 504l-220 495h178l145 -370l323 370h182l-450 -495l216 -504h-174l-145 378l-322 -378h-187z" /> + <glyph glyph-name="y" unicode="y" horiz-adv-x="975" +d="M29 -430l275 435l-154 994h163l101 -817l475 817h166l-865 -1429h-161z" /> + <glyph glyph-name="z" unicode="z" horiz-adv-x="933" +d="M968 999l-25 -123l-771 -748h596l-29 -128h-786l24 113l785 764h-578l27 122h757z" /> + <glyph glyph-name="braceleft" unicode="{" horiz-adv-x="604" +d="M270 -120q-97 0 -133 94q-30 35 -7 139l84 367q11 43 -17.5 69.5t-80.5 46.5l15 116q145 34 174 157l98 428q24 105 81 156t170 51h53q39 0 47 -1l-8 -88q-19 4 -57 4q-57 0 -93.5 -19t-44.5 -51l-116 -506q-18 -73 -69.5 -119t-157.5 -85q165 -60 140 -169l-84 -364 +q-17 -73 5 -107.5t84 -34.5q20 0 49 9l-10 -92q-16 -1 -50 -1h-72z" /> + <glyph glyph-name="bar" unicode="|" horiz-adv-x="621" +d="M22 -512l473 2046h110l-473 -2046h-110z" /> + <glyph glyph-name="braceright" unicode="}" horiz-adv-x="604" +d="M-11 -120q-34 0 -51 1l8 88q19 -5 34 -5q70 0 117.5 40.5t64.5 115.5l83 364q13 59 67 97t150 69q-85 38 -116 86t-15 120l117 507q7 31 -13 43.5t-72 12.5q-35 0 -71 -7l8 91q9 1 49 1h52q216 0 165 -221l-99 -428q-14 -60 7.5 -95.5t82.5 -52.5l-14 -116 +q-60 -19 -108 -50.5t-58 -74.5l-85 -367q-24 -106 -59 -151q-42 -34 -80.5 -51t-91.5 -17h-72z" /> + <glyph glyph-name="asciitilde" unicode="~" horiz-adv-x="1160" +d="M742 379q-45 0 -85.5 18t-70 43t-57 50.5t-58.5 43.5t-63 18q-99 0 -95 -146h-100q0 109 49.5 177t143.5 68q54 0 98 -17.5t73 -42t55 -49t55 -42t61 -17.5q55 0 77.5 41.5t22.5 120.5h108q0 -127 -55.5 -196.5t-158.5 -69.5z" /> + <glyph glyph-name="uni00A0" unicode=" " horiz-adv-x="563" + /> + <glyph glyph-name="exclamdown" unicode="¡" horiz-adv-x="635" +d="M289 806l44 193h196l-44 -193h-196zM14 -436l274 1055h113l-215 -1055h-172z" /> + <glyph glyph-name="cent" unicode="¢" horiz-adv-x="1133" +d="M381 -205l51 190q-90 11 -154 58t-93.5 118t-35.5 162t19 189q29 127 92.5 232.5t167 179.5t229.5 89l49 187h110l-49 -188q110 -14 184 -84.5t97 -180.5l-155 -47q-4 83 -56.5 129.5t-136.5 46.5q-76 0 -142 -34.5t-112.5 -92.5t-78.5 -125t-49 -141q-15 -69 -15.5 -130 +t16.5 -115t64 -86t120 -32q91 0 172.5 52.5t122.5 136.5l124 -71q-137 -231 -383 -256l-47 -187h-111z" /> + <glyph glyph-name="sterling" unicode="£" horiz-adv-x="1241" +d="M49 0l25 111q92 62 151.5 114t105 115t66 136t20.5 165h-220l31 126h189q-29 165 20.5 318.5t167.5 250.5t274 97q137 0 227.5 -84.5t107.5 -207.5l-129 -33q-11 87 -70 139.5t-143 52.5q-118 0 -202.5 -78.5t-117 -200t-10.5 -254.5h475l-30 -126h-443q0 -174 -60 -298 +t-199 -214l810 4l-30 -133h-1016z" /> + <glyph glyph-name="currency" unicode="¤" horiz-adv-x="1343" +d="M225 167l-74 97l134 108q-63 114 -31.5 264t147.5 263l-78 96l111 99l79 -102q139 89 286 86.5t242 -93.5l130 107l75 -93l-128 -107q62 -115 29.5 -265.5t-148.5 -266.5l79 -96l-111 -97l-81 100q-139 -89 -285.5 -85.5t-242.5 94.5zM436 399q87 -91 218 -84.5 +t237 103.5q107 89 128.5 220.5t-58.5 225.5q-86 88 -215.5 81t-235.5 -103q-104 -87 -126.5 -219t52.5 -224z" /> + <glyph glyph-name="yen" unicode="¥" horiz-adv-x="1306" +d="M465 0l68 296h-299l26 117h299l29 119h-299l26 116h247l-299 765h164l271 -701l597 701h171l-651 -764h243l-26 -117h-301l-29 -119h301l-26 -117h-301l-68 -296h-143z" /> + <glyph glyph-name="brokenbar" unicode="¦" horiz-adv-x="618" +d="M309 731l172 744h107l-172 -744h-107zM69 -307l168 727h107l-167 -727h-108z" /> + <glyph glyph-name="section" unicode="§" horiz-adv-x="1124" +d="M460 -18q-156 0 -251 74.5t-103 215.5l146 33q1 -106 57 -149t161 -43q48 0 91 8.5t84.5 27.5t71.5 56t41 87q10 43 -9 72t-57.5 44t-89.5 28.5t-104.5 24t-102.5 30.5t-84.5 49t-49.5 79.5t2 121.5q30 123 152 213q-38 29 -53.5 83t-0.5 116q20 88 84 153.5t146.5 96.5 +t170.5 31q134 0 217.5 -66.5t102.5 -188.5l-141 -32q-9 157 -189 157q-92 0 -169 -48.5t-97 -134.5q-11 -45 15.5 -74t75.5 -44t110 -26.5t120.5 -30t105.5 -48t66 -86.5t2 -138q-31 -126 -145 -209q81 -70 49 -203q-17 -73 -60.5 -129t-103 -88t-125.5 -47.5t-136 -15.5z +M693 532q133 49 161 176q8 36 -3.5 64.5t-33.5 45.5t-59 30.5t-67 20t-71.5 14.5t-58.5 12q-65 -24 -110.5 -72t-59.5 -107q-8 -34 5 -61.5t37.5 -43.5t62 -30t69.5 -20.5t71 -15t57 -13.5z" /> + <glyph glyph-name="dieresis" unicode="¨" horiz-adv-x="835" +d="M343 1221l44 192h169l-45 -192h-168zM679 1221l44 192h169l-44 -192h-169z" /> + <glyph glyph-name="copyright" unicode="©" horiz-adv-x="1791" +d="M943 -51q-154 0 -293.5 60t-240 161.5t-160 242t-59.5 294.5t59.5 294t160 241.5t240 161.5t293.5 60q152 0 291.5 -60t240.5 -161.5t160.5 -241.5t59.5 -294q0 -123 -38 -239t-108 -209t-162.5 -163t-207 -108.5t-236.5 -38.5zM943 69q168 0 314 87t232 234t86 317 +q0 169 -86 316t-232 234t-314 87q-169 0 -315.5 -87t-232.5 -234t-86 -316q0 -127 51 -245t136.5 -204t202.5 -137.5t244 -51.5zM959 300q-169 0 -261 115t-92 290t92 289.5t261 114.5q103 0 184 -49.5t123 -140.5l-108 -46q-29 57 -81 87t-118 30q-117 0 -177 -82t-60 -203 +t59 -202.5t176 -81.5q65 0 118 30.5t80 87.5l111 -47q-43 -93 -123 -142.5t-184 -49.5z" /> + <glyph glyph-name="ordfeminine" unicode="ª" horiz-adv-x="887" +d="M419 709q-101 0 -157 63t-33 162q44 195 301 195l219 7q22 98 -3.5 149t-112.5 51q-62 0 -118.5 -32t-93.5 -76l-84 70q70 71 141 103.5t159 32.5q135 0 193 -79.5t29 -209.5l-98 -422h-97l23 110q-61 -66 -125 -95t-143 -29zM445 810q93 0 177 72t104 157l-198 -7 +q-64 0 -116 -34.5t-65 -92.5q-11 -42 20.5 -68.5t77.5 -26.5z" /> + <glyph glyph-name="guillemotleft" unicode="«" horiz-adv-x="972" +d="M368 185l-296 327l443 325l-34 -162l-233 -163l154 -165zM732 185l-297 327l444 325l-34 -162l-234 -163l155 -165z" /> + <glyph glyph-name="logicalnot" unicode="¬" horiz-adv-x="1323" +d="M938 291v372h-737v134h877v-506h-140z" /> + <glyph glyph-name="uni00AD" unicode="­" horiz-adv-x="982" +d="M181 578l27 114h656l-26 -114h-657z" /> + <glyph glyph-name="registered" unicode="®" horiz-adv-x="1791" +d="M945 -49q-154 0 -293.5 60t-240 161.5t-160 242t-59.5 294.5t59.5 294t160 241.5t240 161.5t293.5 60q152 0 291.5 -60t240.5 -161.5t160.5 -241.5t59.5 -294q0 -123 -38 -239t-108 -209t-162.5 -163t-207 -108.5t-236.5 -38.5zM945 63q128 0 246.5 51.5t204.5 138.5 +t137.5 206.5t51.5 249.5q0 173 -86.5 322t-234.5 236.5t-319 87.5q-129 0 -248 -52t-205.5 -138.5t-138 -206t-51.5 -249.5t51.5 -249.5t138 -206.5t205.5 -138.5t248 -51.5zM696 304v795h302q132 0 197 -60t65 -172q0 -95 -47 -149t-119 -69l202 -345h-143l-177 333h-158 +v-333h-122zM808 747h190q150 0 150 120q0 63 -36 92t-114 29h-190v-241z" /> + <glyph glyph-name="macron" unicode="¯" horiz-adv-x="870" +d="M415 1183l29 125h541l-29 -125h-541z" /> + <glyph glyph-name="degree" unicode="°" horiz-adv-x="944" +d="M590 848q-122 0 -207.5 86t-85.5 207t85.5 207t207.5 86q120 0 205.5 -86t85.5 -207t-85.5 -207t-205.5 -86zM590 941q81 0 139.5 59t58.5 141t-58.5 140.5t-139.5 58.5q-82 0 -141 -58.5t-59 -140.5q0 -83 59 -141.5t141 -58.5z" /> + <glyph glyph-name="plusminus" unicode="±" horiz-adv-x="1405" +d="M609 106v463h-456v113h456v461h114v-461h457v-113h-457v-463h-114zM153 -114v114h1027v-114h-1027z" /> + <glyph glyph-name="acute" unicode="´" horiz-adv-x="537" +d="M216 1124l285 289h197l-343 -289h-139z" /> + <glyph glyph-name="uni00B5" unicode="µ" horiz-adv-x="1296" +d="M77 -266l291 1265h157l-138 -603q-66 -278 129 -278q124 0 239 97t143 220l130 564h157l-230 -999h-157l40 162q-52 -72 -148 -128.5t-198 -56.5q-105 0 -184 55l-95 -298h-136z" /> + <glyph glyph-name="paragraph" unicode="¶" horiz-adv-x="1332" +d="M400 -246l207 869q-88 0 -163.5 28t-128.5 80.5t-73.5 128.5t1.5 172q26 117 110 205.5t194.5 132t229.5 43.5h142l-383 -1659h-136zM768 -246l383 1659h136l-383 -1659h-136z" /> + <glyph glyph-name="periodcentered" unicode="·" horiz-adv-x="651" +d="M382 699q-56 0 -86 41t-17 98q11 48 50.5 79t87.5 31q58 0 88 -40t17 -99q-11 -46 -51.5 -78t-88.5 -32z" /> + <glyph glyph-name="cedilla" unicode="¸" horiz-adv-x="562" +d="M44 -504q-66 0 -109.5 38.5t-53.5 92.5l107 37q-2 -29 15.5 -47t48.5 -18q48 0 85.5 32t48.5 78t-26 78.5t-124 32.5h-48l134 180h123l-104 -117q90 -4 128 -59.5t20 -134.5q-19 -78 -86.5 -135.5t-158.5 -57.5z" /> + <glyph glyph-name="ordmasculine" unicode="º" horiz-adv-x="867" +d="M493 711q-152 0 -226.5 109t-37.5 267q34 146 149.5 246.5t259.5 100.5q151 0 225 -109.5t37 -265.5q-34 -147 -148.5 -247.5t-258.5 -100.5zM496 820q109 0 181 76t98 191q25 104 -7 171.5t-132 67.5q-110 0 -183 -76t-100 -191q-24 -105 8.5 -172t134.5 -67z" /> + <glyph glyph-name="guillemotright" unicode="»" horiz-adv-x="973" +d="M95 185l34 162l233 165l-153 163l33 162l296 -325zM458 185l34 162l233 165l-154 163l34 162l297 -325z" /> + <glyph glyph-name="questiondown" unicode="¿" horiz-adv-x="1029" +d="M492 806l44 193h196l-45 -193h-195zM325 -434q-183 0 -281.5 99.5t-57.5 277.5q16 68 46.5 120t68 83.5t79.5 56.5t82.5 44t75 39.5t60 50t34.5 68.5l51 218h136l-53 -234q-16 -69 -52 -117.5t-78.5 -72.5t-92 -50t-92.5 -50t-78.5 -72t-51.5 -116q-25 -107 33 -160 +t171 -53q118 0 212.5 68t123.5 182l141 -14q-40 -171 -174.5 -269.5t-302.5 -98.5z" /> + <glyph glyph-name="Agrave" unicode="À" horiz-adv-x="1306" +d="M826 1536l-192 291h185l150 -291h-143zM-52 0l856 1413h122l202 -1413h-167l-38 307h-621l-178 -307h-176zM389 452h514l-85 728z" /> + <glyph glyph-name="Aacute" unicode="Á" horiz-adv-x="1306" +d="M797 1538l285 289h197l-343 -289h-139zM-52 0l856 1413h122l202 -1413h-167l-38 307h-621l-178 -307h-176zM389 452h514l-85 728z" /> + <glyph glyph-name="Acircumflex" unicode="Â" horiz-adv-x="1306" +d="M558 1512l410 355l247 -355h-156l-122 186l-213 -186h-166zM-52 0l856 1413h122l202 -1413h-167l-38 307h-621l-178 -307h-176zM389 452h514l-85 728z" /> + <glyph glyph-name="Atilde" unicode="Ã" horiz-adv-x="1306" +d="M1032 1560q-39 0 -68.5 16t-46.5 39t-31 46.5t-31 39.5t-38 16q-39 0 -69 -40t-44 -97h-101q26 118 81 184t132 66q42 0 73 -16.5t48 -40t30.5 -46.5t29.5 -39.5t36 -16.5q40 0 71.5 42.5t48.5 110.5h106q-59 -264 -227 -264zM-52 0l856 1413h122l202 -1413h-167l-38 307 +h-621l-178 -307h-176zM389 452h514l-85 728z" /> + <glyph glyph-name="Adieresis" unicode="Ä" horiz-adv-x="1306" +d="M664 1635l44 192h169l-45 -192h-168zM1000 1635l44 192h169l-44 -192h-169zM-52 0l856 1413h122l202 -1413h-167l-38 307h-621l-178 -307h-176zM389 452h514l-85 728z" /> + <glyph glyph-name="Aring" unicode="Å" horiz-adv-x="1306" +d="M943 1337l185 -1337h-156l-38 307h-632l-178 -307h-176l816 1339q-46 25 -66.5 78.5t-5.5 117.5q20 83 86.5 136t145.5 53q87 0 138 -62.5t30 -155.5q-14 -56 -53.5 -101t-95.5 -68zM865 1418q47 0 85.5 34.5t43.5 83.5q4 38 -18 61.5t-63 23.5q-51 0 -86.5 -34.5 +t-40.5 -80.5q-4 -40 18 -64t61 -24zM389 452h525l-87 744z" /> + <glyph glyph-name="AE" unicode="Æ" horiz-adv-x="1817" +d="M-52 0l852 1413h1119l-30 -129h-747l-118 -510h659l-31 -135h-659l-116 -503h747l-31 -136h-902l70 307h-464l-182 -307h-167zM377 448h417l193 836h-110z" /> + <glyph glyph-name="Ccedilla" unicode="Ç" horiz-adv-x="1425" +d="M949 1293q-124 0 -230.5 -48.5t-182 -132t-128 -187t-80.5 -223.5q-22 -95 -25 -178.5t16 -157.5t60 -126.5t113 -83t170 -30.5q326 0 507 302l133 -77q-108 -162 -255 -256t-318 -111l-90 -101q90 -4 128 -59.5t20 -134.5q-19 -78 -86.5 -135.5t-158.5 -57.5 +q-66 0 -109.5 38.5t-53.5 92.5l107 37q-2 -29 15.5 -47t48.5 -18q48 0 85.5 32t48.5 78t-26 78.5t-124 32.5h-48l120 161q-119 7 -209 49t-144 110t-81 160t-25.5 197.5t29.5 223.5q34 148 101 275t163.5 226.5t231 156.5t290.5 57q136 0 241.5 -41.5t173.5 -129t82 -212.5 +l-152 -46q-26 286 -358 286z" /> + <glyph glyph-name="Egrave" unicode="È" horiz-adv-x="1237" +d="M837 1536l-192 291h185l150 -291h-143zM97 0l326 1413h915l-32 -137h-756l-115 -502h657l-32 -133h-657l-115 -496h757l-32 -145h-916z" /> + <glyph glyph-name="Eacute" unicode="É" horiz-adv-x="1237" +d="M808 1538l285 289h197l-343 -289h-139zM97 0l326 1413h915l-32 -137h-756l-115 -502h657l-32 -133h-657l-115 -496h757l-32 -145h-916z" /> + <glyph glyph-name="Ecircumflex" unicode="Ê" horiz-adv-x="1237" +d="M569 1512l410 355l247 -355h-156l-122 186l-213 -186h-166zM97 0l326 1413h915l-32 -137h-756l-115 -502h657l-32 -133h-657l-115 -496h757l-32 -145h-916z" /> + <glyph glyph-name="Edieresis" unicode="Ë" horiz-adv-x="1237" +d="M675 1635l44 192h169l-45 -192h-168zM1011 1635l44 192h169l-44 -192h-169zM97 0l326 1413h915l-32 -137h-756l-115 -502h657l-32 -133h-657l-115 -496h757l-32 -145h-916z" /> + <glyph glyph-name="Igrave" unicode="Ì" horiz-adv-x="582" +d="M461 1536l-192 291h185l150 -291h-143zM97 0l326 1413h159l-326 -1413h-159z" /> + <glyph glyph-name="Iacute" unicode="Í" horiz-adv-x="582" +d="M432 1538l285 289h197l-343 -289h-139zM97 0l326 1413h159l-326 -1413h-159z" /> + <glyph glyph-name="Icircumflex" unicode="Î" horiz-adv-x="582" +d="M193 1512l410 355l247 -355h-156l-122 186l-213 -186h-166zM97 0l326 1413h159l-326 -1413h-159z" /> + <glyph glyph-name="Idieresis" unicode="Ï" horiz-adv-x="582" +d="M299 1635l44 192h169l-45 -192h-168zM635 1635l44 192h169l-44 -192h-169zM97 0l326 1413h159l-326 -1413h-159z" /> + <glyph glyph-name="Eth" unicode="Ð" horiz-adv-x="1423" +d="M115 0l150 655h-113l28 115h112l148 643h359q343 0 485 -189t61 -542q-76 -328 -300.5 -505t-562.5 -177h-367zM309 147h171q125 0 236.5 34.5t206.5 103t164.5 180t102.5 256.5q126 547 -417 547h-204l-115 -498h381l-28 -115h-381z" /> + <glyph glyph-name="Ntilde" unicode="Ñ" horiz-adv-x="1418" +d="M1084 1560q-39 0 -68.5 16t-46.5 39t-31 46.5t-31 39.5t-38 16q-39 0 -69 -40t-44 -97h-101q26 118 81 184t132 66q42 0 73 -16.5t48 -40t30.5 -46.5t29.5 -39.5t36 -16.5q40 0 71.5 42.5t48.5 110.5h106q-59 -264 -227 -264zM97 0l326 1413h220l332 -1228l285 1228h157 +l-325 -1413h-224l-327 1230l-285 -1230h-159z" /> + <glyph glyph-name="Ograve" unicode="Ò" horiz-adv-x="1515" +d="M927 1536l-192 291h185l150 -291h-143zM648 -20q-107 0 -193 27t-144.5 76.5t-97.5 117.5t-54.5 151t-11.5 175.5t27 193.5q34 147 101.5 274t165 226t231.5 156t288 57q128 0 226.5 -39t158 -107.5t90 -162t30 -203t-28.5 -230.5q-34 -147 -101.5 -274t-165 -225.5 +t-232 -155.5t-289.5 -57zM657 126q102 0 193 32.5t161 87.5t126 131.5t93.5 162.5t59.5 181q21 91 23.5 172.5t-17 154t-61.5 125.5t-115 83.5t-172 30.5q-124 0 -231.5 -49t-184 -133t-129.5 -188.5t-80 -224.5q-21 -91 -23.5 -172.5t16.5 -154t60 -125.5t112.5 -83.5 +t168.5 -30.5z" /> + <glyph glyph-name="Oacute" unicode="Ó" horiz-adv-x="1515" +d="M898 1538l285 289h197l-343 -289h-139zM648 -20q-107 0 -193 27t-144.5 76.5t-97.5 117.5t-54.5 151t-11.5 175.5t27 193.5q34 147 101.5 274t165 226t231.5 156t288 57q128 0 226.5 -39t158 -107.5t90 -162t30 -203t-28.5 -230.5q-34 -147 -101.5 -274t-165 -225.5 +t-232 -155.5t-289.5 -57zM657 126q102 0 193 32.5t161 87.5t126 131.5t93.5 162.5t59.5 181q21 91 23.5 172.5t-17 154t-61.5 125.5t-115 83.5t-172 30.5q-124 0 -231.5 -49t-184 -133t-129.5 -188.5t-80 -224.5q-21 -91 -23.5 -172.5t16.5 -154t60 -125.5t112.5 -83.5 +t168.5 -30.5z" /> + <glyph glyph-name="Ocircumflex" unicode="Ô" horiz-adv-x="1515" +d="M659 1512l410 355l247 -355h-156l-122 186l-213 -186h-166zM648 -20q-107 0 -193 27t-144.5 76.5t-97.5 117.5t-54.5 151t-11.5 175.5t27 193.5q34 147 101.5 274t165 226t231.5 156t288 57q128 0 226.5 -39t158 -107.5t90 -162t30 -203t-28.5 -230.5 +q-34 -147 -101.5 -274t-165 -225.5t-232 -155.5t-289.5 -57zM657 126q102 0 193 32.5t161 87.5t126 131.5t93.5 162.5t59.5 181q21 91 23.5 172.5t-17 154t-61.5 125.5t-115 83.5t-172 30.5q-124 0 -231.5 -49t-184 -133t-129.5 -188.5t-80 -224.5q-21 -91 -23.5 -172.5 +t16.5 -154t60 -125.5t112.5 -83.5t168.5 -30.5z" /> + <glyph glyph-name="Otilde" unicode="Õ" horiz-adv-x="1515" +d="M1133 1560q-39 0 -68.5 16t-46.5 39t-31 46.5t-31 39.5t-38 16q-39 0 -69 -40t-44 -97h-101q26 118 81 184t132 66q42 0 73 -16.5t48 -40t30.5 -46.5t29.5 -39.5t36 -16.5q40 0 71.5 42.5t48.5 110.5h106q-59 -264 -227 -264zM648 -20q-107 0 -193 27t-144.5 76.5 +t-97.5 117.5t-54.5 151t-11.5 175.5t27 193.5q34 147 101.5 274t165 226t231.5 156t288 57q128 0 226.5 -39t158 -107.5t90 -162t30 -203t-28.5 -230.5q-34 -147 -101.5 -274t-165 -225.5t-232 -155.5t-289.5 -57zM657 126q102 0 193 32.5t161 87.5t126 131.5t93.5 162.5 +t59.5 181q21 91 23.5 172.5t-17 154t-61.5 125.5t-115 83.5t-172 30.5q-124 0 -231.5 -49t-184 -133t-129.5 -188.5t-80 -224.5q-21 -91 -23.5 -172.5t16.5 -154t60 -125.5t112.5 -83.5t168.5 -30.5z" /> + <glyph glyph-name="Odieresis" unicode="Ö" horiz-adv-x="1515" +d="M765 1635l44 192h169l-45 -192h-168zM1101 1635l44 192h169l-44 -192h-169zM648 -20q-107 0 -193 27t-144.5 76.5t-97.5 117.5t-54.5 151t-11.5 175.5t27 193.5q34 147 101.5 274t165 226t231.5 156t288 57q128 0 226.5 -39t158 -107.5t90 -162t30 -203t-28.5 -230.5 +q-34 -147 -101.5 -274t-165 -225.5t-232 -155.5t-289.5 -57zM657 126q102 0 193 32.5t161 87.5t126 131.5t93.5 162.5t59.5 181q21 91 23.5 172.5t-17 154t-61.5 125.5t-115 83.5t-172 30.5q-124 0 -231.5 -49t-184 -133t-129.5 -188.5t-80 -224.5q-21 -91 -23.5 -172.5 +t16.5 -154t60 -125.5t112.5 -83.5t168.5 -30.5z" /> + <glyph glyph-name="multiply" unicode="×" horiz-adv-x="1175" +d="M287 221l-82 80l323 324l-325 325l80 82l327 -327l322 323l82 -80l-323 -323l325 -326l-80 -82l-326 327z" /> + <glyph glyph-name="Oslash" unicode="Ø" horiz-adv-x="1515" +d="M1338 1294q94 -100 118 -261t-20 -341q-34 -147 -101.5 -274t-165 -225.5t-232 -155.5t-289.5 -57q-179 0 -298 75l-44 -55h-133l97 122q-92 100 -116 260t20 339q34 147 101.5 274t165 226t231.5 156t288 57q179 0 298 -75l43 54h132zM323 692q-67 -291 48 -444l789 989 +q-84 50 -212 50q-124 0 -231.5 -49t-184 -133t-129.5 -188.5t-80 -224.5zM1290 721q32 128 20.5 249t-72.5 198l-790 -991q84 -51 209 -51q102 0 193 32.5t161 87.5t126 131.5t93.5 162.5t59.5 181z" /> + <glyph glyph-name="Ugrave" unicode="Ù" horiz-adv-x="1352" +d="M849 1536l-192 291h185l150 -291h-143zM566 -20q-104 0 -182.5 29.5t-124.5 80.5t-69 121t-22.5 148.5t20.5 165.5l205 888h159l-198 -857q-22 -96 -23.5 -170t20 -133.5t78.5 -91t148 -31.5q96 0 172.5 33.5t129.5 95.5t88.5 138.5t57.5 172.5l196 843h159l-206 -892 +q-26 -114 -76 -209.5t-123.5 -171t-178.5 -118t-230 -42.5z" /> + <glyph glyph-name="Uacute" unicode="Ú" horiz-adv-x="1352" +d="M820 1538l285 289h197l-343 -289h-139zM566 -20q-104 0 -182.5 29.5t-124.5 80.5t-69 121t-22.5 148.5t20.5 165.5l205 888h159l-198 -857q-22 -96 -23.5 -170t20 -133.5t78.5 -91t148 -31.5q96 0 172.5 33.5t129.5 95.5t88.5 138.5t57.5 172.5l196 843h159l-206 -892 +q-26 -114 -76 -209.5t-123.5 -171t-178.5 -118t-230 -42.5z" /> + <glyph glyph-name="Ucircumflex" unicode="Û" horiz-adv-x="1352" +d="M581 1512l410 355l247 -355h-156l-122 186l-213 -186h-166zM566 -20q-104 0 -182.5 29.5t-124.5 80.5t-69 121t-22.5 148.5t20.5 165.5l205 888h159l-198 -857q-22 -96 -23.5 -170t20 -133.5t78.5 -91t148 -31.5q96 0 172.5 33.5t129.5 95.5t88.5 138.5t57.5 172.5 +l196 843h159l-206 -892q-26 -114 -76 -209.5t-123.5 -171t-178.5 -118t-230 -42.5z" /> + <glyph glyph-name="Udieresis" unicode="Ü" horiz-adv-x="1352" +d="M687 1635l44 192h169l-45 -192h-168zM1023 1635l44 192h169l-44 -192h-169zM566 -20q-104 0 -182.5 29.5t-124.5 80.5t-69 121t-22.5 148.5t20.5 165.5l205 888h159l-198 -857q-22 -96 -23.5 -170t20 -133.5t78.5 -91t148 -31.5q96 0 172.5 33.5t129.5 95.5t88.5 138.5 +t57.5 172.5l196 843h159l-206 -892q-26 -114 -76 -209.5t-123.5 -171t-178.5 -118t-230 -42.5z" /> + <glyph glyph-name="Yacute" unicode="Ý" horiz-adv-x="1331" +d="M806 1538l285 289h197l-343 -289h-139zM473 0l129 553l-339 860h180l266 -702l595 702h187l-735 -860l-129 -553h-154z" /> + <glyph glyph-name="Thorn" unicode="Þ" horiz-adv-x="1149" +d="M97 0l326 1413h159l-47 -199h245q203 0 299 -110t54 -299q-42 -178 -184.5 -275.5t-348.5 -97.5h-245l-99 -432h-159zM389 579h232q141 0 235 64.5t122 186.5q26 112 -33.5 170.5t-199.5 58.5h-245z" /> + <glyph glyph-name="germandbls" unicode="ß" horiz-adv-x="1178" +d="M611 -18q-118 0 -257 68l83 135q85 -54 184 -54q77 0 151.5 52t90.5 125q10 41 1 78t-30.5 64.5t-49 57.5t-55 56t-48 60.5t-29 72t2.5 89.5q11 46 43 81t71.5 58.5t79.5 47.5t72 61t43 86q19 76 -31.5 126.5t-156.5 50.5q-127 0 -222.5 -95t-142.5 -302l-207 -900h-148 +l211 915q32 141 86 244t123 161.5t144 86t161 27.5q75 0 142 -25.5t114.5 -70.5t68 -112.5t2.5 -145.5q-12 -54 -45 -94.5t-72.5 -65t-78.5 -46.5t-69.5 -51.5t-39.5 -68.5t15.5 -75.5t63 -70t75.5 -73.5t55 -102t1 -139q-32 -137 -146.5 -224.5t-255.5 -87.5z" /> + <glyph glyph-name="agrave" unicode="à" horiz-adv-x="1129" +d="M792 1122h-143l-192 291h185zM924 999h149l-229 -999h-146l25 126q-140 -146 -334 -146q-96 0 -165.5 42.5t-103 115t-41.5 169.5t20 207q50 217 187.5 361.5t318.5 144.5q209 0 283 -162zM824 514q19 73 17 139.5t-20.5 117.5t-66 81t-119.5 30q-75 0 -141 -32 +t-113.5 -88t-81.5 -126t-52 -151q-20 -73 -17.5 -140t21.5 -118t66.5 -81t117.5 -30q149 0 249.5 113t139.5 285z" /> + <glyph glyph-name="aacute" unicode="á" horiz-adv-x="1129" +d="M1102 1413l-343 -289h-139l285 289h197zM888 858l36 141h149l-229 -999h-146l25 126q-140 -146 -334 -146q-96 0 -165.5 42.5t-103 115t-41.5 169.5t20 207q50 217 187.5 361.5t318.5 144.5q209 0 283 -162zM824 514q19 73 17 139.5t-20.5 117.5t-66 81t-119.5 30 +q-75 0 -141 -32t-113.5 -88t-81.5 -126t-52 -151q-20 -73 -17.5 -140t21.5 -118t66.5 -81t117.5 -30q149 0 249.5 113t139.5 285z" /> + <glyph glyph-name="acircumflex" unicode="â" horiz-adv-x="1129" +d="M760 1284l-213 -186h-166l410 355l247 -355h-156zM924 999h149l-229 -999h-146l25 126q-140 -146 -334 -146q-96 0 -165.5 42.5t-103 115t-41.5 169.5t20 207q50 217 187.5 361.5t318.5 144.5q209 0 283 -162zM824 514q19 73 17 139.5t-20.5 117.5t-66 81t-119.5 30 +q-75 0 -141 -32t-113.5 -88t-81.5 -126t-52 -151q-20 -73 -17.5 -140t21.5 -118t66.5 -81t117.5 -30q149 0 249.5 113t139.5 285z" /> + <glyph glyph-name="atilde" unicode="ã" horiz-adv-x="1129" +d="M640 1303q-39 0 -69 -40t-44 -97h-101q26 118 81 184t132 66q42 0 73 -16.5t48 -40t30.5 -46.5t29.5 -39.5t36 -16.5q40 0 71.5 42.5t48.5 110.5h106q-59 -264 -227 -264q-39 0 -68.5 16t-46.5 39t-31 46.5t-31 39.5t-38 16zM888 858l36 141h149l-229 -999h-146l25 126 +q-140 -146 -334 -146q-96 0 -165.5 42.5t-103 115t-41.5 169.5t20 207q50 217 187.5 361.5t318.5 144.5q209 0 283 -162zM824 514q19 73 17 139.5t-20.5 117.5t-66 81t-119.5 30q-75 0 -141 -32t-113.5 -88t-81.5 -126t-52 -151q-20 -73 -17.5 -140t21.5 -118t66.5 -81 +t117.5 -30q149 0 249.5 113t139.5 285z" /> + <glyph glyph-name="adieresis" unicode="ä" horiz-adv-x="1129" +d="M700 1413l-45 -192h-168l44 192h169zM1036 1413l-44 -192h-169l44 192h169zM924 999h149l-229 -999h-146l25 126q-140 -146 -334 -146q-96 0 -165.5 42.5t-103 115t-41.5 169.5t20 207q50 217 187.5 361.5t318.5 144.5q209 0 283 -162zM824 514q19 73 17 139.5 +t-20.5 117.5t-66 81t-119.5 30q-75 0 -141 -32t-113.5 -88t-81.5 -126t-52 -151q-20 -73 -17.5 -140t21.5 -118t66.5 -81t117.5 -30q149 0 249.5 113t139.5 285z" /> + <glyph glyph-name="aring" unicode="å" horiz-adv-x="1129" +d="M718 1079q-91 0 -138.5 64t-26.5 154q19 79 86.5 134t147.5 55q89 0 138.5 -64.5t27.5 -153.5q-18 -79 -86.5 -134t-148.5 -55zM653 1269q-4 -40 17 -63.5t58 -23.5q47 0 84.5 34t43.5 82q4 37 -18.5 60.5t-60.5 23.5q-50 0 -84.5 -32t-39.5 -81zM924 999h149l-229 -999 +h-146l25 126q-140 -146 -334 -146q-96 0 -165.5 42.5t-103 115t-41.5 169.5t20 207q50 217 187.5 361.5t318.5 144.5q209 0 283 -162zM824 514q19 73 17 139.5t-20.5 117.5t-66 81t-119.5 30q-75 0 -141 -32t-113.5 -88t-81.5 -126t-52 -151q-20 -73 -17.5 -140t21.5 -118 +t66.5 -81t117.5 -30q149 0 249.5 113t139.5 285z" /> + <glyph glyph-name="ae" unicode="æ" horiz-adv-x="1669" +d="M286 -20q-139 0 -215.5 86.5t-45.5 221.5q65 283 426 283h316q35 159 -2 242t-169 83q-89 0 -170 -45t-135 -109l-103 88q97 96 196 141t225 45q124 0 197.5 -50.5t92.5 -139.5q137 186 363 186q97 0 166.5 -30t107 -80t53 -120.5t10.5 -146.5t-25 -162l-2 -5 +q-2 -5 -4 -11t-3 -8h-695q-34 -145 17 -237t185 -92q97 0 170.5 24.5t147.5 84.5l87 -92q-98 -80 -195.5 -114.5t-214.5 -34.5q-155 0 -236 77t-91 205q-170 -290 -454 -290zM897 571h560q34 145 -16 226.5t-187 81.5q-131 0 -227 -89t-130 -219zM331 108q90 0 180 51.5 +t150.5 130t77.5 159.5h-291q-98 -2 -173.5 -50.5t-97.5 -139.5q-15 -62 35.5 -106.5t118.5 -44.5z" /> + <glyph glyph-name="ccedilla" unicode="ç" horiz-adv-x="972" +d="M421 107q94 0 178 56t127 145l118 -70q-68 -114 -166.5 -179.5t-215.5 -76.5l-88 -99q90 -4 128 -59.5t20 -134.5q-19 -78 -86.5 -135.5t-158.5 -57.5q-66 0 -109.5 38.5t-53.5 92.5l107 37q-2 -29 15.5 -47t48.5 -18q48 0 85.5 32t48.5 78t-26 78.5t-124 32.5h-48 +l123 166q-86 14 -146.5 63t-88 120t-33.5 160t18 183q23 100 70.5 189.5t114.5 160.5t158.5 112.5t194.5 41.5q135 0 222.5 -72.5t114.5 -195.5l-149 -47q-1 89 -54.5 138t-140.5 49q-62 0 -118 -24t-98 -64t-76.5 -93.5t-57 -109t-35.5 -114.5q-16 -70 -16.5 -133 +t16 -119.5t62.5 -90t119 -33.5z" /> + <glyph glyph-name="egrave" unicode="è" horiz-adv-x="1036" +d="M586 1122l-192 291h185l150 -291h-143zM434 -12q-111 0 -190.5 41t-118 111t-48.5 165t17 203q23 100 70 189.5t114 160.5t158.5 112.5t193.5 41.5q97 0 166.5 -30t107 -80t53 -120t11 -146t-25.5 -163q-6 -20 -10 -31h-697q-18 -66 -12.5 -125t28.5 -102.5t71.5 -69 +t116.5 -25.5q97 0 171 24.5t142 84.5l92 -92q-99 -81 -195.5 -115t-214.5 -34zM263 564h561q34 150 -15.5 232.5t-186.5 82.5q-132 0 -227 -90t-132 -225z" /> + <glyph glyph-name="eacute" unicode="é" horiz-adv-x="1036" +d="M557 1124l285 289h197l-343 -289h-139zM434 -12q-111 0 -190.5 41t-118 111t-48.5 165t17 203q23 100 70 189.5t114 160.5t158.5 112.5t193.5 41.5q97 0 166.5 -30t107 -80t53 -120t11 -146t-25.5 -163q-6 -20 -10 -31h-697q-18 -66 -12.5 -125t28.5 -102.5t71.5 -69 +t116.5 -25.5q97 0 171 24.5t142 84.5l92 -92q-99 -81 -195.5 -115t-214.5 -34zM263 564h561q34 150 -15.5 232.5t-186.5 82.5q-132 0 -227 -90t-132 -225z" /> + <glyph glyph-name="ecircumflex" unicode="ê" horiz-adv-x="1036" +d="M318 1098l410 355l247 -355h-156l-122 186l-213 -186h-166zM434 -12q-111 0 -190.5 41t-118 111t-48.5 165t17 203q23 100 70 189.5t114 160.5t158.5 112.5t193.5 41.5q97 0 166.5 -30t107 -80t53 -120t11 -146t-25.5 -163q-6 -20 -10 -31h-697q-18 -66 -12.5 -125 +t28.5 -102.5t71.5 -69t116.5 -25.5q97 0 171 24.5t142 84.5l92 -92q-99 -81 -195.5 -115t-214.5 -34zM263 564h561q34 150 -15.5 232.5t-186.5 82.5q-132 0 -227 -90t-132 -225z" /> + <glyph glyph-name="edieresis" unicode="ë" horiz-adv-x="1036" +d="M424 1221l44 192h169l-45 -192h-168zM760 1221l44 192h169l-44 -192h-169zM434 -12q-111 0 -190.5 41t-118 111t-48.5 165t17 203q23 100 70 189.5t114 160.5t158.5 112.5t193.5 41.5q97 0 166.5 -30t107 -80t53 -120t11 -146t-25.5 -163q-6 -20 -10 -31h-697 +q-18 -66 -12.5 -125t28.5 -102.5t71.5 -69t116.5 -25.5q97 0 171 24.5t142 84.5l92 -92q-99 -81 -195.5 -115t-214.5 -34zM263 564h561q34 150 -15.5 232.5t-186.5 82.5q-132 0 -227 -90t-132 -225z" /> + <glyph glyph-name="igrave" unicode="ì" horiz-adv-x="485" +d="M318 1122l-192 291h185l150 -291h-143zM54 0l229 999h148l-229 -999h-148z" /> + <glyph glyph-name="iacute" unicode="í" horiz-adv-x="485" +d="M289 1124l285 289h197l-343 -289h-139zM54 0l229 999h148l-229 -999h-148z" /> + <glyph glyph-name="icircumflex" unicode="î" horiz-adv-x="485" +d="M50 1098l410 355l247 -355h-156l-122 186l-213 -186h-166zM54 0l229 999h148l-229 -999h-148z" /> + <glyph glyph-name="idieresis" unicode="ï" horiz-adv-x="485" +d="M156 1221l44 192h169l-45 -192h-168zM492 1221l44 192h169l-44 -192h-169zM54 0l229 999h148l-229 -999h-148z" /> + <glyph glyph-name="eth" unicode="ð" horiz-adv-x="1156" +d="M834 1378q179 -138 231 -344.5t-19 -524.5q-33 -144 -113.5 -262t-204.5 -190.5t-268 -72.5q-91 0 -163.5 29t-118 80.5t-73 120.5t-28 149t17.5 167q49 210 202 350t355 140q95 0 167 -32t98 -75q13 203 -181 356l-123 -137l-83 59l122 136q-69 43 -148 76l94 110 +q90 -39 152 -77l85 95l86 -56zM886 531q20 73 15 141t-28 119.5t-75.5 82.5t-126.5 31q-80 0 -151.5 -34t-123 -91.5t-88.5 -128.5t-55 -149q-19 -71 -14 -138.5t27 -120t74.5 -84.5t128.5 -32q80 0 151 34t123 92t88.5 128.5t54.5 149.5z" /> + <glyph glyph-name="ntilde" unicode="ñ" horiz-adv-x="1118" +d="M831 1146q-39 0 -68.5 16t-46.5 39t-31 46.5t-31 39.5t-38 16q-39 0 -69 -40t-44 -97h-101q26 118 81 184t132 66q42 0 73 -16.5t48 -40t30.5 -46.5t29.5 -39.5t36 -16.5q40 0 71.5 42.5t48.5 110.5h106q-59 -264 -227 -264zM54 0l229 999h150l-37 -151q65 78 157.5 123 +t185.5 45q92 0 155 -34t89.5 -91t32 -132.5t-16.5 -158.5l-138 -600h-150l138 599q13 57 14.5 101.5t-9.5 86t-47 64.5t-96 23q-124 0 -237.5 -95t-140.5 -218l-130 -561h-149z" /> + <glyph glyph-name="ograve" unicode="ò" horiz-adv-x="1119" +d="M633 1122l-192 291h185l150 -291h-143zM450 -20q-106 0 -188 42t-127 114t-60 168t13 206q49 212 211 357t365 145q84 0 154.5 -27t117.5 -75.5t76 -115.5t31.5 -146t-15.5 -167q-48 -211 -212 -356t-366 -145zM458 112q83 0 153 32.5t120 89t84 126.5t53 150 +q20 72 17 138.5t-23.5 118t-73 82t-131.5 30.5q-81 0 -151.5 -32.5t-120 -89t-84 -126t-53.5 -150.5q-19 -72 -16 -138.5t23.5 -118t72.5 -82t130 -30.5z" /> + <glyph glyph-name="oacute" unicode="ó" horiz-adv-x="1119" +d="M604 1124l285 289h197l-343 -289h-139zM450 -20q-106 0 -188 42t-127 114t-60 168t13 206q49 212 211 357t365 145q84 0 154.5 -27t117.5 -75.5t76 -115.5t31.5 -146t-15.5 -167q-48 -211 -212 -356t-366 -145zM458 112q83 0 153 32.5t120 89t84 126.5t53 150 +q20 72 17 138.5t-23.5 118t-73 82t-131.5 30.5q-81 0 -151.5 -32.5t-120 -89t-84 -126t-53.5 -150.5q-19 -72 -16 -138.5t23.5 -118t72.5 -82t130 -30.5z" /> + <glyph glyph-name="ocircumflex" unicode="ô" horiz-adv-x="1119" +d="M365 1098l410 355l247 -355h-156l-122 186l-213 -186h-166zM450 -20q-106 0 -188 42t-127 114t-60 168t13 206q49 212 211 357t365 145q84 0 154.5 -27t117.5 -75.5t76 -115.5t31.5 -146t-15.5 -167q-48 -211 -212 -356t-366 -145zM458 112q83 0 153 32.5t120 89 +t84 126.5t53 150q20 72 17 138.5t-23.5 118t-73 82t-131.5 30.5q-81 0 -151.5 -32.5t-120 -89t-84 -126t-53.5 -150.5q-19 -72 -16 -138.5t23.5 -118t72.5 -82t130 -30.5z" /> + <glyph glyph-name="otilde" unicode="õ" horiz-adv-x="1119" +d="M839 1146q-39 0 -68.5 16t-46.5 39t-31 46.5t-31 39.5t-38 16q-39 0 -69 -40t-44 -97h-101q26 118 81 184t132 66q42 0 73 -16.5t48 -40t30.5 -46.5t29.5 -39.5t36 -16.5q40 0 71.5 42.5t48.5 110.5h106q-59 -264 -227 -264zM450 -20q-106 0 -188 42t-127 114t-60 168 +t13 206q49 212 211 357t365 145q84 0 154.5 -27t117.5 -75.5t76 -115.5t31.5 -146t-15.5 -167q-48 -211 -212 -356t-366 -145zM458 112q83 0 153 32.5t120 89t84 126.5t53 150q20 72 17 138.5t-23.5 118t-73 82t-131.5 30.5q-81 0 -151.5 -32.5t-120 -89t-84 -126 +t-53.5 -150.5q-19 -72 -16 -138.5t23.5 -118t72.5 -82t130 -30.5z" /> + <glyph glyph-name="odieresis" unicode="ö" horiz-adv-x="1119" +d="M471 1221l44 192h169l-45 -192h-168zM807 1221l44 192h169l-44 -192h-169zM450 -20q-106 0 -188 42t-127 114t-60 168t13 206q49 212 211 357t365 145q84 0 154.5 -27t117.5 -75.5t76 -115.5t31.5 -146t-15.5 -167q-48 -211 -212 -356t-366 -145zM458 112q83 0 153 32.5 +t120 89t84 126.5t53 150q20 72 17 138.5t-23.5 118t-73 82t-131.5 30.5q-81 0 -151.5 -32.5t-120 -89t-84 -126t-53.5 -150.5q-19 -72 -16 -138.5t23.5 -118t72.5 -82t130 -30.5z" /> + <glyph glyph-name="divide" unicode="÷" horiz-adv-x="989" +d="M415 902v194h195v-194h-195zM163 571v114h699v-114h-699zM415 142v193h195v-193h-195z" /> + <glyph glyph-name="oslash" unicode="ø" horiz-adv-x="1119" +d="M933 912q75 -73 100 -185.5t-5 -245.5q-48 -211 -212 -356t-366 -145q-126 0 -214 57l-29 -36h-94l65 82q-72 72 -96 183.5t6 243.5q49 212 211 357t365 145q122 0 212 -56l34 43h93zM248 481q-43 -186 22 -283l519 650q-51 31 -132 31t-151.5 -32.5t-120 -89t-84 -126 +t-53.5 -150.5zM868 510q45 192 -25 289l-520 -653q53 -34 135 -34q83 0 153 32.5t120 89t84 126.5t53 150z" /> + <glyph glyph-name="ugrave" unicode="ù" horiz-adv-x="1115" +d="M632 1122l-192 291h185l150 -291h-143zM377 -23q-92 0 -154.5 35.5t-88.5 96t-31 139.5t18 166l135 585h149l-138 -605q-68 -288 130 -288q126 0 241 99.5t148 238.5l127 555h148l-229 -999h-147l39 163q-52 -73 -147.5 -129.5t-199.5 -56.5z" /> + <glyph glyph-name="uacute" unicode="ú" horiz-adv-x="1115" +d="M603 1124l285 289h197l-343 -289h-139zM377 -23q-92 0 -154.5 35.5t-88.5 96t-31 139.5t18 166l135 585h149l-138 -605q-68 -288 130 -288q126 0 241 99.5t148 238.5l127 555h148l-229 -999h-147l39 163q-52 -73 -147.5 -129.5t-199.5 -56.5z" /> + <glyph glyph-name="ucircumflex" unicode="û" horiz-adv-x="1115" +d="M364 1098l410 355l247 -355h-156l-122 186l-213 -186h-166zM377 -23q-92 0 -154.5 35.5t-88.5 96t-31 139.5t18 166l135 585h149l-138 -605q-68 -288 130 -288q126 0 241 99.5t148 238.5l127 555h148l-229 -999h-147l39 163q-52 -73 -147.5 -129.5t-199.5 -56.5z" /> + <glyph glyph-name="udieresis" unicode="ü" horiz-adv-x="1115" +d="M470 1221l44 192h169l-45 -192h-168zM806 1221l44 192h169l-44 -192h-169zM377 -23q-92 0 -154.5 35.5t-88.5 96t-31 139.5t18 166l135 585h149l-138 -605q-68 -288 130 -288q126 0 241 99.5t148 238.5l127 555h148l-229 -999h-147l39 163q-52 -73 -147.5 -129.5 +t-199.5 -56.5z" /> + <glyph glyph-name="yacute" unicode="ý" horiz-adv-x="975" +d="M527 1124l285 289h197l-343 -289h-139zM29 -430l275 435l-154 994h163l101 -817l475 817h166l-865 -1429h-161z" /> + <glyph glyph-name="thorn" unicode="þ" horiz-adv-x="1124" +d="M-48 -438l428 1851h144l-131 -558q137 165 351 165q95 0 163 -42t100.5 -115t39 -170t-21.5 -206q-51 -218 -185.5 -362.5t-311.5 -144.5q-112 0 -185 47.5t-105 129.5l-142 -595h-144zM493 104q76 0 142.5 33t116 90t84.5 129.5t54 155.5q20 77 18 146.5t-21.5 122 +t-68 83.5t-121.5 31q-76 0 -143.5 -33t-117 -90t-85.5 -129.5t-55 -155.5q-21 -77 -18 -146.5t23.5 -122t69.5 -83.5t122 -31z" /> + <glyph glyph-name="ydieresis" unicode="ÿ" horiz-adv-x="975" +d="M394 1221l44 192h169l-45 -192h-168zM730 1221l44 192h169l-44 -192h-169zM29 -430l275 435l-154 994h163l101 -817l475 817h166l-865 -1429h-161z" /> + <glyph glyph-name="Amacron" unicode="Ā" horiz-adv-x="1306" +d="M640 1597l29 125h541l-29 -125h-541zM-52 0l856 1413h122l202 -1413h-167l-38 307h-621l-178 -307h-176zM389 452h514l-85 728z" /> + <glyph glyph-name="amacron" unicode="ā" horiz-adv-x="1129" +d="M1033 1308l-29 -125h-541l29 125h541zM924 999h149l-229 -999h-146l25 126q-140 -146 -334 -146q-96 0 -165.5 42.5t-103 115t-41.5 169.5t20 207q50 217 187.5 361.5t318.5 144.5q209 0 283 -162zM824 514q19 73 17 139.5t-20.5 117.5t-66 81t-119.5 30q-75 0 -141 -32 +t-113.5 -88t-81.5 -126t-52 -151q-20 -73 -17.5 -140t21.5 -118t66.5 -81t117.5 -30q149 0 249.5 113t139.5 285z" /> + <glyph glyph-name="Abreve" unicode="Ă" horiz-adv-x="1306" +d="M912 1557q-142 0 -213.5 73t-41.5 197h132q-16 -73 20.5 -114.5t105.5 -41.5q75 0 139 45t80 111h132q-29 -133 -124.5 -201.5t-229.5 -68.5zM-52 0l856 1413h122l202 -1413h-167l-38 307h-621l-178 -307h-176zM389 452h514l-85 728z" /> + <glyph glyph-name="abreve" unicode="ă" horiz-adv-x="1129" +d="M735 1143q-142 0 -213.5 73t-41.5 197h132q-16 -73 20.5 -114.5t105.5 -41.5q75 0 139 45t80 111h132q-29 -133 -124.5 -201.5t-229.5 -68.5zM888 858l36 141h149l-229 -999h-146l25 126q-140 -146 -334 -146q-96 0 -165.5 42.5t-103 115t-41.5 169.5t20 207 +q50 217 187.5 361.5t318.5 144.5q209 0 283 -162zM824 514q19 73 17 139.5t-20.5 117.5t-66 81t-119.5 30q-75 0 -141 -32t-113.5 -88t-81.5 -126t-52 -151q-20 -73 -17.5 -140t21.5 -118t66.5 -81t117.5 -30q149 0 249.5 113t139.5 285z" /> + <glyph glyph-name="Aogonek" unicode="Ą" horiz-adv-x="1306" +d="M900 -337q81 0 145 69l83 -75q-97 -108 -222 -108q-93 0 -140.5 61t-26.5 159q12 49 43 91t71 69.5t74.5 44t66.5 26.5h-33l-38 307h-621l-178 -307h-176l856 1413h122l202 -1413h-44l42 -1l-1 -1q-134 -49 -213 -130q-53 -53 -66 -112q-10 -45 6 -69t48 -24zM389 452 +h514l-85 728z" /> + <glyph glyph-name="aogonek" unicode="ą" horiz-adv-x="1105" +d="M1073 999l-229 -999h-121l42 -1l-1 -1q-134 -49 -213 -130q-53 -53 -66 -112q-10 -45 6 -69t48 -24q81 0 145 69l83 -75q-97 -108 -222 -108q-93 0 -140.5 61t-26.5 159q12 51 45 94t74.5 70.5t76.5 43.5t66 25l58 -1l25 125q-140 -146 -334 -146q-96 0 -165.5 42.5 +t-103 115t-41.5 169.5t20 207q50 217 187.5 361.5t318.5 144.5q209 0 283 -162l36 141h149zM824 514q19 73 17 139.5t-20.5 117.5t-66 81t-119.5 30q-75 0 -141 -32t-113.5 -88t-81.5 -126t-52 -151q-20 -73 -17.5 -140t21.5 -118t66.5 -81t117.5 -30q149 0 249.5 113 +t139.5 285z" /> + <glyph glyph-name="Cacute" unicode="Ć" horiz-adv-x="1425" +d="M860 1538l285 289h197l-343 -289h-139zM651 -20q-129 0 -227.5 38.5t-158 106.5t-89.5 162t-29.5 203t29.5 231q34 148 101 275t163.5 226.5t231 156.5t290.5 57q136 0 241.5 -41.5t173.5 -129t82 -212.5l-152 -46q-26 286 -358 286q-124 0 -230.5 -48.5t-182 -132 +t-128 -187t-80.5 -223.5q-22 -95 -25 -178.5t16 -157.5t60 -126.5t113 -83t170 -30.5q326 0 507 302l133 -77q-121 -181 -289 -276t-362 -95z" /> + <glyph glyph-name="cacute" unicode="ć" horiz-adv-x="972" +d="M571 1124l285 289h197l-343 -289h-139zM418 -20q-86 0 -152.5 28.5t-106.5 78.5t-63 117.5t-21 145.5t19 162q23 100 70.5 189.5t114.5 160.5t158.5 112.5t194.5 41.5q135 0 222.5 -72.5t114.5 -195.5l-149 -47q-1 89 -54.5 138t-140.5 49q-62 0 -118 -24t-98 -64 +t-76.5 -93.5t-57 -109t-35.5 -114.5q-16 -70 -16.5 -133t16 -119.5t62.5 -90t119 -33.5q94 0 178 56t127 145l118 -70q-74 -124 -184.5 -191t-241.5 -67z" /> + <glyph glyph-name="Cdotaccent" unicode="Ċ" horiz-adv-x="1425" +d="M892 1635l45 192h172l-44 -192h-173zM651 -20q-129 0 -227.5 38.5t-158 106.5t-89.5 162t-29.5 203t29.5 231q34 148 101 275t163.5 226.5t231 156.5t290.5 57q136 0 241.5 -41.5t173.5 -129t82 -212.5l-152 -46q-26 286 -358 286q-124 0 -230.5 -48.5t-182 -132 +t-128 -187t-80.5 -223.5q-22 -95 -25 -178.5t16 -157.5t60 -126.5t113 -83t170 -30.5q326 0 507 302l133 -77q-121 -181 -289 -276t-362 -95z" /> + <glyph glyph-name="cdotaccent" unicode="ċ" horiz-adv-x="972" +d="M603 1221l45 192h172l-44 -192h-173zM418 -20q-86 0 -152.5 28.5t-106.5 78.5t-63 117.5t-21 145.5t19 162q23 100 70.5 189.5t114.5 160.5t158.5 112.5t194.5 41.5q135 0 222.5 -72.5t114.5 -195.5l-149 -47q-1 89 -54.5 138t-140.5 49q-62 0 -118 -24t-98 -64 +t-76.5 -93.5t-57 -109t-35.5 -114.5q-16 -70 -16.5 -133t16 -119.5t62.5 -90t119 -33.5q94 0 178 56t127 145l118 -70q-74 -124 -184.5 -191t-241.5 -67z" /> + <glyph glyph-name="Ccaron" unicode="Č" horiz-adv-x="1425" +d="M951 1495l-253 332h158l122 -181l213 181h164zM651 -20q-129 0 -227.5 38.5t-158 106.5t-89.5 162t-29.5 203t29.5 231q34 148 101 275t163.5 226.5t231 156.5t290.5 57q136 0 241.5 -41.5t173.5 -129t82 -212.5l-152 -46q-26 286 -358 286q-124 0 -230.5 -48.5 +t-182 -132t-128 -187t-80.5 -223.5q-22 -95 -25 -178.5t16 -157.5t60 -126.5t113 -83t170 -30.5q326 0 507 302l133 -77q-121 -181 -289 -276t-362 -95z" /> + <glyph glyph-name="ccaron" unicode="č" horiz-adv-x="972" +d="M662 1081l-253 332h158l122 -181l213 181h164zM418 -20q-86 0 -152.5 28.5t-106.5 78.5t-63 117.5t-21 145.5t19 162q23 100 70.5 189.5t114.5 160.5t158.5 112.5t194.5 41.5q135 0 222.5 -72.5t114.5 -195.5l-149 -47q-1 89 -54.5 138t-140.5 49q-62 0 -118 -24t-98 -64 +t-76.5 -93.5t-57 -109t-35.5 -114.5q-16 -70 -16.5 -133t16 -119.5t62.5 -90t119 -33.5q94 0 178 56t127 145l118 -70q-74 -124 -184.5 -191t-241.5 -67z" /> + <glyph glyph-name="Dcaron" unicode="Ď" horiz-adv-x="1406" +d="M954 1495l-253 332h158l122 -181l213 181h164zM97 0l326 1413h354q344 0 488 -189.5t62 -541.5q-77 -329 -301.5 -505.5t-565.5 -176.5h-363zM290 145h168q126 0 239 35t209 104t166.5 180.5t104.5 256.5q62 271 -43 410.5t-382 139.5h-202z" /> + <glyph glyph-name="dcaron" unicode="ď" horiz-adv-x="1215" +d="M389 -20q-96 0 -165.5 42.5t-103 115t-41.5 169.5t20 207q50 217 187.5 361.5t318.5 144.5q209 0 283 -162l132 555h149l-325 -1413h-150l33 131q-144 -151 -338 -151zM1187 1017l194 396h216l-299 -396h-111zM435 116q149 0 249.5 113t139.5 285q19 73 17 139.5 +t-20.5 117.5t-66 81t-119.5 30q-75 0 -141 -32t-113.5 -88t-81.5 -126t-52 -151q-20 -73 -17.5 -140t21.5 -118t66.5 -81t117.5 -30z" /> + <glyph glyph-name="Dcroat" unicode="Đ" horiz-adv-x="1423" +d="M115 0l150 655h-113l28 115h112l148 643h359q343 0 485 -189t61 -542q-76 -328 -300.5 -505t-562.5 -177h-367zM309 147h171q125 0 236.5 34.5t206.5 103t164.5 180t102.5 256.5q126 547 -417 547h-204l-115 -498h381l-28 -115h-381z" /> + <glyph glyph-name="dcroat" unicode="đ" horiz-adv-x="1129" +d="M1326 1274l-27 -116h-189l-266 -1158h-146l25 126q-140 -146 -334 -146q-96 0 -165.5 42.5t-103 115t-41.5 169.5t20 207q50 217 187.5 361.5t318.5 144.5q209 0 283 -162l71 300h-294l27 116h295l33 139h149l-32 -139h189zM824 514q19 73 17 139.5t-20.5 117.5t-66 81 +t-119.5 30q-75 0 -141 -32t-113.5 -88t-81.5 -126t-52 -151q-20 -73 -17.5 -140t21.5 -118t66.5 -81t117.5 -30q149 0 249.5 113t139.5 285z" /> + <glyph glyph-name="Emacron" unicode="Ē" horiz-adv-x="1237" +d="M651 1597l29 125h541l-29 -125h-541zM97 0l326 1413h915l-32 -137h-756l-115 -502h657l-32 -133h-657l-115 -496h757l-32 -145h-916z" /> + <glyph glyph-name="emacron" unicode="ē" horiz-adv-x="1036" +d="M400 1183l29 125h541l-29 -125h-541zM434 -12q-111 0 -190.5 41t-118 111t-48.5 165t17 203q23 100 70 189.5t114 160.5t158.5 112.5t193.5 41.5q97 0 166.5 -30t107 -80t53 -120t11 -146t-25.5 -163q-6 -20 -10 -31h-697q-18 -66 -12.5 -125t28.5 -102.5t71.5 -69 +t116.5 -25.5q97 0 171 24.5t142 84.5l92 -92q-99 -81 -195.5 -115t-214.5 -34zM263 564h561q34 150 -15.5 232.5t-186.5 82.5q-132 0 -227 -90t-132 -225z" /> + <glyph glyph-name="Edotaccent" unicode="Ė" horiz-adv-x="1237" +d="M840 1635l45 192h172l-44 -192h-173zM97 0l326 1413h915l-32 -137h-756l-115 -502h657l-32 -133h-657l-115 -496h757l-32 -145h-916z" /> + <glyph glyph-name="edotaccent" unicode="ė" horiz-adv-x="1036" +d="M589 1221l45 192h172l-44 -192h-173zM434 -12q-111 0 -190.5 41t-118 111t-48.5 165t17 203q23 100 70 189.5t114 160.5t158.5 112.5t193.5 41.5q97 0 166.5 -30t107 -80t53 -120t11 -146t-25.5 -163q-6 -20 -10 -31h-697q-18 -66 -12.5 -125t28.5 -102.5t71.5 -69 +t116.5 -25.5q97 0 171 24.5t142 84.5l92 -92q-99 -81 -195.5 -115t-214.5 -34zM263 564h561q34 150 -15.5 232.5t-186.5 82.5q-132 0 -227 -90t-132 -225z" /> + <glyph glyph-name="Eogonek" unicode="Ę" horiz-adv-x="1237" +d="M1306 1276h-756l-115 -502h657l-32 -133h-657l-115 -496h757l-32 -145h-46l42 -1l-1 -1q-134 -49 -213 -130q-53 -53 -66 -112q-10 -45 6 -69t48 -24q81 0 145 69l83 -75q-97 -108 -222 -108q-93 0 -140.5 61t-26.5 159q12 49 43 91t71 69.5t74.5 44t66.5 26.5h-780 +l326 1413h915z" /> + <glyph glyph-name="eogonek" unicode="ę" horiz-adv-x="1036" +d="M630 1012q97 0 166.5 -30t107 -80t53 -120t11 -146t-25.5 -163q-6 -20 -10 -31h-697q-18 -66 -12.5 -125t28.5 -102.5t71.5 -69t116.5 -25.5q97 0 171 24.5t142 84.5l92 -92q-123 -100 -250 -131q-169 -89 -195 -205q-10 -45 6 -69t48 -24q81 0 145 69l83 -75 +q-97 -108 -222 -108q-93 0 -140.5 61t-26.5 159q25 104 134 174q-109 1 -186.5 42.5t-115 112t-47.5 164.5t17 201q23 100 70 189.5t114 160.5t158.5 112.5t193.5 41.5zM824 564q34 150 -15.5 232.5t-186.5 82.5q-132 0 -227 -90t-132 -225h561z" /> + <glyph glyph-name="Ecaron" unicode="Ě" horiz-adv-x="1237" +d="M899 1495l-253 332h158l122 -181l213 181h164zM97 0l326 1413h915l-32 -137h-756l-115 -502h657l-32 -133h-657l-115 -496h757l-32 -145h-916z" /> + <glyph glyph-name="ecaron" unicode="ě" horiz-adv-x="1036" +d="M648 1081l-253 332h158l122 -181l213 181h164zM434 -12q-111 0 -190.5 41t-118 111t-48.5 165t17 203q23 100 70 189.5t114 160.5t158.5 112.5t193.5 41.5q97 0 166.5 -30t107 -80t53 -120t11 -146t-25.5 -163q-6 -20 -10 -31h-697q-18 -66 -12.5 -125t28.5 -102.5 +t71.5 -69t116.5 -25.5q97 0 171 24.5t142 84.5l92 -92q-99 -81 -195.5 -115t-214.5 -34zM263 564h561q34 150 -15.5 232.5t-186.5 82.5q-132 0 -227 -90t-132 -225z" /> + <glyph glyph-name="Gbreve" unicode="Ğ" horiz-adv-x="1509" +d="M1017 1557q-142 0 -213.5 73t-41.5 197h132q-16 -73 20.5 -114.5t105.5 -41.5q75 0 139 45t80 111h132q-29 -133 -124.5 -201.5t-229.5 -68.5zM651 -20q-129 0 -227.5 38.5t-158 106.5t-89.5 162t-29.5 203t29.5 231q27 117 75 222.5t118.5 196t158 156t199 103 +t235.5 37.5q202 0 329 -99.5t167 -283.5l-153 -49q-31 140 -121.5 211.5t-235.5 71.5q-124 0 -230 -47.5t-182 -130t-128 -185.5t-80 -222q-22 -95 -25 -178.5t16 -157t60.5 -126t113 -82.5t169.5 -30q124 0 238.5 54t203 162t124.5 253l-325 -7l29 125h473l-165 -715h-132 +l59 251q-74 -116 -212 -193.5t-304 -77.5z" /> + <glyph glyph-name="gbreve" unicode="ğ" horiz-adv-x="1130" +d="M701 1143q-142 0 -213.5 73t-41.5 197h132q-16 -73 20.5 -114.5t105.5 -41.5q75 0 139 45t80 111h132q-29 -133 -124.5 -201.5t-229.5 -68.5zM840 -7q-46 -202 -178 -314t-330 -112q-132 0 -223 52.5t-133 150.5l128 73q55 -147 235 -147q134 0 228.5 86t126.5 225 +l33 129q-140 -152 -331 -152q-99 0 -170.5 42t-105 114.5t-41.5 169t20 206.5q33 141 102.5 253.5t177 181.5t232.5 69q101 0 172 -44t105 -120l35 143h151zM436 116q76 0 142 33t113.5 89.5t81 127t51.5 150.5q19 72 17 139t-20 118.5t-65 82.5t-118 31q-75 0 -141.5 -33 +t-115 -89t-82.5 -127t-52 -151q-20 -73 -18 -140t21 -118.5t67 -82t119 -30.5z" /> + <glyph glyph-name="Gdotaccent" unicode="Ġ" horiz-adv-x="1509" +d="M934 1635l45 192h172l-44 -192h-173zM651 -20q-129 0 -227.5 38.5t-158 106.5t-89.5 162t-29.5 203t29.5 231q27 117 75 222.5t118.5 196t158 156t199 103t235.5 37.5q202 0 329 -99.5t167 -283.5l-153 -49q-31 140 -121.5 211.5t-235.5 71.5q-124 0 -230 -47.5 +t-182 -130t-128 -185.5t-80 -222q-22 -95 -25 -178.5t16 -157t60.5 -126t113 -82.5t169.5 -30q124 0 238.5 54t203 162t124.5 253l-325 -7l29 125h473l-165 -715h-132l59 251q-74 -116 -212 -193.5t-304 -77.5z" /> + <glyph glyph-name="gdotaccent" unicode="ġ" horiz-adv-x="1130" +d="M618 1221l45 192h172l-44 -192h-173zM840 -7q-46 -202 -178 -314t-330 -112q-132 0 -223 52.5t-133 150.5l128 73q55 -147 235 -147q134 0 228.5 86t126.5 225l33 129q-140 -152 -331 -152q-99 0 -170.5 42t-105 114.5t-41.5 169t20 206.5q33 141 102.5 253.5t177 181.5 +t232.5 69q101 0 172 -44t105 -120l35 143h151zM436 116q76 0 142 33t113.5 89.5t81 127t51.5 150.5q19 72 17 139t-20 118.5t-65 82.5t-118 31q-75 0 -141.5 -33t-115 -89t-82.5 -127t-52 -151q-20 -73 -18 -140t21 -118.5t67 -82t119 -30.5z" /> + <glyph glyph-name="Gcommaaccent" unicode="Ģ" horiz-adv-x="1509" +d="M651 -20q-129 0 -227.5 38.5t-158 106.5t-89.5 162t-29.5 203t29.5 231q27 117 75 222.5t118.5 196t158 156t199 103t235.5 37.5q202 0 329 -99.5t167 -283.5l-153 -49q-31 140 -121.5 211.5t-235.5 71.5q-124 0 -230 -47.5t-182 -130t-128 -185.5t-80 -222 +q-22 -95 -25 -178.5t16 -157t60.5 -126t113 -82.5t169.5 -30q124 0 238.5 54t203 162t124.5 253l-325 -7l29 125h473l-165 -715h-132l59 251q-74 -116 -212 -193.5t-304 -77.5zM335 -446l201 335h215l-305 -335h-111z" /> + <glyph glyph-name="gcommaaccent" unicode="ģ" horiz-adv-x="1104" +d="M934 1423l-201 -300h-215l305 300h111zM840 -7q-46 -202 -178 -314t-330 -112q-132 0 -223 52.5t-133 150.5l128 73q55 -147 235 -147q134 0 228.5 86t126.5 225l33 129q-140 -152 -331 -152q-99 0 -170.5 42t-105 114.5t-41.5 169t20 206.5q33 141 102.5 253.5 +t177 181.5t232.5 69q101 0 172 -44t105 -120l35 143h151zM436 116q76 0 142 33t113.5 89.5t81 127t51.5 150.5q19 72 17 139t-20 118.5t-65 82.5t-118 31q-75 0 -141.5 -33t-115 -89t-82.5 -127t-52 -151q-20 -73 -18 -140t21 -118.5t67 -82t119 -30.5z" /> + <glyph glyph-name="Hbar" unicode="Ħ" horiz-adv-x="1455" +d="M1507 1160l-20 -89h-112l-247 -1071h-158l146 641h-713l-147 -641h-159l247 1071h-116l19 89h118l58 253h159l-58 -253h713l58 253h159l-58 -253h111zM1148 774l68 297h-713l-68 -297h713z" /> + <glyph glyph-name="hbar" unicode="ħ" horiz-adv-x="1119" +d="M749 1016q71 0 124.5 -22t84.5 -60t46 -90t14 -111t-16 -124l-140 -609h-151l138 599q13 57 15 101.5t-8.5 86.5t-45.5 65t-94 23q-130 0 -245 -100.5t-145 -234.5l-124 -540h-148l259 1128h-181l27 116h181l39 169h148l-40 -169h306l-27 -116h-306l-68 -286 +q67 81 164 127.5t193 46.5z" /> + <glyph glyph-name="Itilde" unicode="Ĩ" horiz-adv-x="582" +d="M667 1560q-39 0 -68.5 16t-46.5 39t-31 46.5t-31 39.5t-38 16q-39 0 -69 -40t-44 -97h-101q26 118 81 184t132 66q42 0 73 -16.5t48 -40t30.5 -46.5t29.5 -39.5t36 -16.5q40 0 71.5 42.5t48.5 110.5h106q-59 -264 -227 -264zM97 0l326 1413h159l-326 -1413h-159z" /> + <glyph glyph-name="itilde" unicode="ĩ" horiz-adv-x="485" +d="M524 1146q-39 0 -68.5 16t-46.5 39t-31 46.5t-31 39.5t-38 16q-39 0 -69 -40t-44 -97h-101q26 118 81 184t132 66q42 0 73 -16.5t48 -40t30.5 -46.5t29.5 -39.5t36 -16.5q40 0 71.5 42.5t48.5 110.5h106q-59 -264 -227 -264zM54 0l229 999h148l-229 -999h-148z" /> + <glyph glyph-name="Imacron" unicode="Ī" horiz-adv-x="582" +d="M275 1597l29 125h541l-29 -125h-541zM97 0l326 1413h159l-326 -1413h-159z" /> + <glyph glyph-name="imacron" unicode="ī" horiz-adv-x="485" +d="M132 1183l29 125h541l-29 -125h-541zM54 0l229 999h148l-229 -999h-148z" /> + <glyph glyph-name="Iogonek" unicode="Į" horiz-adv-x="582" +d="M582 1413l-326 -1413h-46l42 -1l-1 -1q-134 -49 -213 -130q-53 -53 -66 -112q-10 -45 6 -69t48 -24q81 0 145 69l83 -75q-97 -108 -222 -108q-93 0 -140.5 61t-26.5 159q12 49 43 91t71 69.5t74.5 44t66.5 26.5h-23l326 1413h159z" /> + <glyph glyph-name="iogonek" unicode="į" horiz-adv-x="485" +d="M366 1413h172l-44 -192h-173zM54 0l229 999h148l-229 -999h-46l42 -1l-1 -1q-134 -49 -213 -130q-53 -53 -66 -112q-10 -45 6 -69t48 -24q81 0 145 69l83 -75q-97 -108 -222 -108q-93 0 -140.5 61t-26.5 159q12 49 43 91t71 69.5t74.5 44t66.5 26.5h-12z" /> + <glyph glyph-name="Idotaccent" unicode="İ" horiz-adv-x="582" +d="M464 1635l45 192h172l-44 -192h-173zM97 0l326 1413h159l-326 -1413h-159z" /> + <glyph glyph-name="dotlessi" unicode="ı" horiz-adv-x="485" +d="M54 0l229 999h148l-229 -999h-148z" /> + <glyph glyph-name="IJ" unicode="IJ" horiz-adv-x="1701" +d="M97 0l326 1413h159l-326 -1413h-159zM972 -20q-128 0 -212.5 58.5t-115 153t-12.5 211.5l155 7q-12 -56 -5 -108t26.5 -92.5t64 -65t108.5 -24.5q85 0 149.5 28.5t107 83t69 116.5t45.5 144l181 784h-532l32 137h691l-213 -918q-116 -515 -539 -515z" /> + <glyph glyph-name="Kcommaaccent" unicode="Ķ" horiz-adv-x="1450" +d="M97 0l326 1413h159l-194 -829l973 829h208l-664 -557l367 -856h-180l-306 757l-439 -367l-91 -390h-159zM259 -446l201 335h215l-305 -335h-111z" /> + <glyph glyph-name="kcommaaccent" unicode="ķ" horiz-adv-x="1044" +d="M54 0l326 1413h150l-222 -952l569 538h191l-413 -367l244 -632h-172l-183 530l-270 -237l-70 -293h-150zM151 -446l201 335h215l-305 -335h-111z" /> + <glyph glyph-name="kgreenlandic" unicode="ĸ" horiz-adv-x="1042" +d="M54 0l229 999h149l-123 -523l566 523h191l-413 -367l244 -632h-174l-181 527l-272 -237l-68 -290h-148z" /> + <glyph glyph-name="Lacute" unicode="Ĺ" horiz-adv-x="1037" +d="M453 1538l285 289h197l-343 -289h-139zM97 0l326 1413h159l-294 -1268h605l-33 -145h-763z" /> + <glyph glyph-name="lacute" unicode="ĺ" horiz-adv-x="518" +d="M380 1538l285 289h197l-343 -289h-139zM220 -20q-46 0 -76 13t-43.5 32.5t-16.5 51.5t0.5 61.5t13.5 70.5l278 1204h151l-288 -1244q-14 -64 43 -64q22 0 86 17l-17 -124q-61 -18 -131 -18z" /> + <glyph glyph-name="Lcommaaccent" unicode="Ļ" horiz-adv-x="1037" +d="M97 0l326 1413h159l-294 -1268h605l-33 -145h-763zM89 -446l201 335h215l-305 -335h-111z" /> + <glyph glyph-name="lcommaaccent" unicode="ļ" horiz-adv-x="518" +d="M220 -20q-46 0 -76 13t-43.5 32.5t-16.5 51.5t0.5 61.5t13.5 70.5l278 1204h151l-288 -1244q-14 -64 43 -64q22 0 86 17l-17 -124q-61 -18 -131 -18zM-92 -446l201 335h215l-305 -335h-111z" /> + <glyph glyph-name="Lcaron" unicode="Ľ" horiz-adv-x="1045" +d="M97 0l326 1413h159l-294 -1268h605l-33 -145h-763zM718 1017l195 396h216l-299 -396h-112z" /> + <glyph glyph-name="lcaron" unicode="ľ" horiz-adv-x="589" +d="M527 1413l-288 -1243q-12 -43 9 -56q6 -4 16 -4q38 0 104 12l-17 -124q-61 -18 -131 -18q-46 0 -76 13t-43.5 32.5t-16.5 51.5t0.5 61.5t13.5 70.5l278 1204h151zM755 1413h216l-299 -396h-111zM239 170v-1v1z" /> + <glyph glyph-name="Lslash" unicode="Ł" horiz-adv-x="1081" +d="M329 145h605l-33 -145h-763l109 471l-216 -139l43 162l210 139l180 780h159l-152 -656l396 263l-48 -181l-387 -249z" /> + <glyph glyph-name="lslash" unicode="ł" horiz-adv-x="518" +d="M350 648l-111 -479q-14 -64 43 -64q22 0 86 17l-17 -124q-61 -18 -131 -18q-46 0 -76 13t-43.5 32.5t-16.5 51.5t0.5 61.5t13.5 70.5l59 254l-166 -159l51 187l156 149l178 773h151l-136 -588l197 189l-51 -187z" /> + <glyph glyph-name="Nacute" unicode="Ń" horiz-adv-x="1418" +d="M849 1538l285 289h197l-343 -289h-139zM97 0l326 1413h220l332 -1228l285 1228h157l-325 -1413h-224l-327 1230l-285 -1230h-159z" /> + <glyph glyph-name="nacute" unicode="ń" horiz-adv-x="1118" +d="M596 1124l285 289h197l-343 -289h-139zM54 0l229 999h150l-37 -151q65 78 157.5 123t185.5 45q92 0 155 -34t89.5 -91t32 -132.5t-16.5 -158.5l-138 -600h-150l138 599q13 57 14.5 101.5t-9.5 86t-47 64.5t-96 23q-124 0 -237.5 -95t-140.5 -218l-130 -561h-149z" /> + <glyph glyph-name="Ncommaaccent" unicode="Ņ" horiz-adv-x="1418" +d="M97 0l326 1413h220l332 -1228l285 1228h157l-325 -1413h-224l-327 1230l-285 -1230h-159zM261 -446l201 335h215l-305 -335h-111z" /> + <glyph glyph-name="ncommaaccent" unicode="ņ" horiz-adv-x="1118" +d="M54 0l229 999h150l-37 -151q65 78 157.5 123t185.5 45q92 0 155 -34t89.5 -91t32 -132.5t-16.5 -158.5l-138 -600h-150l138 599q13 57 14.5 101.5t-9.5 86t-47 64.5t-96 23q-124 0 -237.5 -95t-140.5 -218l-130 -561h-149zM103 -446l201 335h215l-305 -335h-111z" /> + <glyph glyph-name="Ncaron" unicode="Ň" horiz-adv-x="1418" +d="M940 1495l-253 332h158l122 -181l213 181h164zM97 0l326 1413h220l332 -1228l285 1228h157l-325 -1413h-224l-327 1230l-285 -1230h-159z" /> + <glyph glyph-name="ncaron" unicode="ň" horiz-adv-x="1118" +d="M687 1081l-253 332h158l122 -181l213 181h164zM54 0l229 999h150l-37 -151q65 78 157.5 123t185.5 45q92 0 155 -34t89.5 -91t32 -132.5t-16.5 -158.5l-138 -600h-150l138 599q13 57 14.5 101.5t-9.5 86t-47 64.5t-96 23q-124 0 -237.5 -95t-140.5 -218l-130 -561h-149z +" /> + <glyph glyph-name="Eng" unicode="Ŋ" horiz-adv-x="1416" +d="M644 -369l22 121q115 -1 181.5 55t51.5 130l-358 1291l-285 -1228h-159l326 1413h220l331 -1228l286 1228h157l-328 -1420q-31 -135 -75 -207q-95 -155 -284 -155h-86z" /> + <glyph glyph-name="eng" unicode="ŋ" horiz-adv-x="1118" +d="M421 -369l31 129h50q51 0 89 20.5t59 54.5t30.5 60t15.5 54l151 651q10 45 14 81t-0.5 73t-19.5 61.5t-46.5 40t-78.5 15.5q-127 0 -240.5 -93t-141.5 -216l-130 -562h-150l229 999h151l-38 -151q66 78 159 123t185 45q75 0 130 -22.5t86 -61.5t46 -92.5t13 -113 +t-17 -126.5l-160 -691q-9 -39 -18.5 -68t-34.5 -71.5t-57.5 -70t-88.5 -48t-127 -20.5h-91z" /> + <glyph glyph-name="Omacron" unicode="Ō" horiz-adv-x="1515" +d="M741 1597l29 125h541l-29 -125h-541zM648 -20q-107 0 -193 27t-144.5 76.5t-97.5 117.5t-54.5 151t-11.5 175.5t27 193.5q34 147 101.5 274t165 226t231.5 156t288 57q128 0 226.5 -39t158 -107.5t90 -162t30 -203t-28.5 -230.5q-34 -147 -101.5 -274t-165 -225.5 +t-232 -155.5t-289.5 -57zM657 126q102 0 193 32.5t161 87.5t126 131.5t93.5 162.5t59.5 181q21 91 23.5 172.5t-17 154t-61.5 125.5t-115 83.5t-172 30.5q-124 0 -231.5 -49t-184 -133t-129.5 -188.5t-80 -224.5q-21 -91 -23.5 -172.5t16.5 -154t60 -125.5t112.5 -83.5 +t168.5 -30.5z" /> + <glyph glyph-name="omacron" unicode="ō" horiz-adv-x="1119" +d="M447 1183l29 125h541l-29 -125h-541zM450 -20q-106 0 -188 42t-127 114t-60 168t13 206q49 212 211 357t365 145q84 0 154.5 -27t117.5 -75.5t76 -115.5t31.5 -146t-15.5 -167q-48 -211 -212 -356t-366 -145zM458 112q83 0 153 32.5t120 89t84 126.5t53 150 +q20 72 17 138.5t-23.5 118t-73 82t-131.5 30.5q-81 0 -151.5 -32.5t-120 -89t-84 -126t-53.5 -150.5q-19 -72 -16 -138.5t23.5 -118t72.5 -82t130 -30.5z" /> + <glyph glyph-name="Ohungarumlaut" unicode="Ő" horiz-adv-x="1515" +d="M732 1533l284 294h192l-338 -294h-138zM1062 1533l284 294h197l-343 -294h-138zM648 -20q-107 0 -193 27t-144.5 76.5t-97.5 117.5t-54.5 151t-11.5 175.5t27 193.5q34 147 101.5 274t165 226t231.5 156t288 57q128 0 226.5 -39t158 -107.5t90 -162t30 -203t-28.5 -230.5 +q-34 -147 -101.5 -274t-165 -225.5t-232 -155.5t-289.5 -57zM657 126q102 0 193 32.5t161 87.5t126 131.5t93.5 162.5t59.5 181q21 91 23.5 172.5t-17 154t-61.5 125.5t-115 83.5t-172 30.5q-124 0 -231.5 -49t-184 -133t-129.5 -188.5t-80 -224.5q-21 -91 -23.5 -172.5 +t16.5 -154t60 -125.5t112.5 -83.5t168.5 -30.5z" /> + <glyph glyph-name="ohungarumlaut" unicode="ő" horiz-adv-x="1119" +d="M438 1119l284 294h192l-338 -294h-138zM768 1119l284 294h197l-343 -294h-138zM450 -20q-106 0 -188 42t-127 114t-60 168t13 206q49 212 211 357t365 145q84 0 154.5 -27t117.5 -75.5t76 -115.5t31.5 -146t-15.5 -167q-48 -211 -212 -356t-366 -145zM458 112 +q83 0 153 32.5t120 89t84 126.5t53 150q20 72 17 138.5t-23.5 118t-73 82t-131.5 30.5q-81 0 -151.5 -32.5t-120 -89t-84 -126t-53.5 -150.5q-19 -72 -16 -138.5t23.5 -118t72.5 -82t130 -30.5z" /> + <glyph glyph-name="OE" unicode="Œ" horiz-adv-x="2242" +d="M652 -20q-129 0 -228 39t-157.5 107t-91 161.5t-29.5 203t28 230.5q27 116 74.5 220.5t118.5 195t158.5 156.5t200.5 103.5t239 37.5q176 0 279.5 -73.5t135.5 -209.5l64 262h899l-32 -137h-740l-115 -502h657l-32 -133h-657l-115 -496h741l-33 -145h-899l60 249 +q-187 -269 -526 -269zM660 124q125 0 232 49t183.5 133.5t129 189.5t80.5 225q21 91 23.5 173t-16.5 155t-59.5 125.5t-112.5 83.5t-169 31q-126 0 -234 -49.5t-184 -134.5t-128 -189t-79 -224q-21 -91 -24 -172t15.5 -154.5t59 -126.5t113 -84t170.5 -31z" /> + <glyph glyph-name="oe" unicode="œ" horiz-adv-x="1793" +d="M449 -20q-106 0 -187.5 42t-126.5 114t-60 168.5t13 205.5q48 211 210.5 356.5t364.5 145.5q128 0 212.5 -57.5t118.5 -153.5q157 211 394 211q79 0 141 -22.5t100.5 -61.5t62 -90t29.5 -111t0 -121.5t-23 -123.5l-2 -6q-1 -7 -4 -16.5t-5 -17.5h-695q-32 -141 19 -233.5 +t186 -92.5q93 0 166 25t144 86l88 -90q-96 -83 -191 -116t-211 -33q-135 0 -214.5 56.5t-110.5 151.5q-167 -216 -419 -216zM1019 564h564q33 150 -16.5 234t-184.5 84t-230.5 -91t-132.5 -227zM458 118q82 0 152 31.5t120 86.5t84 124t53 150q19 72 16 138t-23.5 116.5 +t-73 80.5t-131.5 30q-81 0 -150.5 -32t-119.5 -87t-84.5 -124.5t-53.5 -150.5q-14 -59 -16 -111.5t9.5 -99t37.5 -80t71.5 -53t108.5 -19.5z" /> + <glyph glyph-name="Racute" unicode="Ŕ" horiz-adv-x="1219" +d="M753 1538l285 289h197l-343 -289h-139zM95 -2l328 1413h398q93 0 168.5 -28t124 -81t67 -128.5t-3.5 -169.5q-31 -136 -133.5 -230.5t-245.5 -122.5l225 -653h-171l-206 634h-244l-148 -634h-159zM436 778h265q120 6 210.5 73t116.5 183q26 113 -36 175t-190 62h-252z +" /> + <glyph glyph-name="racute" unicode="ŕ" horiz-adv-x="794" +d="M450 1124l285 289h197l-343 -289h-139zM54 0l229 999h151l-39 -172q57 92 143 139.5t170 47.5q48 0 94.5 -14t73.5 -37l-73 -127q-58 36 -124 36q-85 0 -162 -59t-128.5 -150t-76.5 -197l-108 -466h-150z" /> + <glyph glyph-name="Rcommaaccent" unicode="Ŗ" horiz-adv-x="1219" +d="M95 -2l328 1413h398q93 0 168.5 -28t124 -81t67 -128.5t-3.5 -169.5q-31 -136 -133.5 -230.5t-245.5 -122.5l225 -653h-171l-206 634h-244l-148 -634h-159zM436 778h265q120 6 210.5 73t116.5 183q26 113 -36 175t-190 62h-252zM241 -446l201 335h215l-305 -335h-111z +" /> + <glyph glyph-name="rcommaaccent" unicode="ŗ" horiz-adv-x="794" +d="M54 0l229 999h151l-39 -172q57 92 143 139.5t170 47.5q48 0 94.5 -14t73.5 -37l-73 -127q-58 36 -124 36q-85 0 -162 -59t-128.5 -150t-76.5 -197l-108 -466h-150zM-203 -446l201 335h215l-305 -335h-111z" /> + <glyph glyph-name="Rcaron" unicode="Ř" horiz-adv-x="1219" +d="M844 1495l-253 332h158l122 -181l213 181h164zM95 -2l328 1413h398q93 0 168.5 -28t124 -81t67 -128.5t-3.5 -169.5q-31 -136 -133.5 -230.5t-245.5 -122.5l225 -653h-171l-206 634h-244l-148 -634h-159zM436 778h265q120 6 210.5 73t116.5 183q26 113 -36 175t-190 62 +h-252z" /> + <glyph glyph-name="rcaron" unicode="ř" horiz-adv-x="794" +d="M541 1081l-253 332h158l122 -181l213 181h164zM54 0l229 999h151l-39 -172q57 92 143 139.5t170 47.5q48 0 94.5 -14t73.5 -37l-73 -127q-58 36 -124 36q-85 0 -162 -59t-128.5 -150t-76.5 -197l-108 -466h-150z" /> + <glyph glyph-name="Sacute" unicode="Ś" horiz-adv-x="1112" +d="M692 1538l285 289h197l-343 -289h-139zM485 -16q-119 0 -215.5 42.5t-157 131.5t-60.5 211l156 30q0 -130 73.5 -201t212.5 -71q152 0 246 81.5t94 201.5q0 63 -29.5 112.5t-76.5 81.5t-103.5 60.5t-113 59.5t-103.5 68t-76.5 95t-29.5 133q0 113 61.5 208t166.5 150.5 +t229 55.5q128 0 223 -60t132 -167l-127 -65q-22 75 -85.5 116t-146.5 41q-116 0 -206 -75t-90 -184q0 -58 29.5 -103t76.5 -75.5t103.5 -58.5t113 -59.5t103.5 -70.5t76.5 -100t29.5 -139q0 -188 -147 -319t-359 -131z" /> + <glyph glyph-name="sacute" unicode="ś" horiz-adv-x="873" +d="M479 1124l285 289h197l-343 -289h-139zM361 -20q-141 0 -236.5 76t-108.5 178l136 51q7 -75 69 -123.5t152 -48.5q101 0 165 58t64 136q0 45 -24.5 75.5t-64 47.5t-86.5 30.5t-94.5 31t-87 42t-64 71t-24.5 111.5q0 140 99.5 219t245.5 79q125 0 210 -58t113 -142 +l-125 -54q-20 60 -72 94t-132 34q-88 0 -143.5 -41.5t-55.5 -121.5q0 -44 25 -73.5t65 -46.5t88.5 -31t96.5 -32t88 -44t65 -73t25 -113q0 -132 -114 -232t-275 -100z" /> + <glyph glyph-name="Scedilla" unicode="Ş" horiz-adv-x="1112" +d="M459 1040q0 -58 29.5 -103t76.5 -75.5t103.5 -58.5t113 -59.5t103.5 -70.5t76.5 -100t29.5 -139q0 -187 -145.5 -317.5t-356.5 -132.5l-90 -101q90 -4 128 -59.5t20 -134.5q-19 -78 -86.5 -135.5t-158.5 -57.5q-66 0 -109.5 38.5t-53.5 92.5l107 37q-2 -29 15.5 -47 +t48.5 -18q48 0 85.5 32t48.5 78t-26 78.5t-124 32.5h-48l130 174q-144 28 -234 125t-90 250l156 30q0 -130 73.5 -201t212.5 -71q152 0 246 81.5t94 201.5q0 63 -29.5 112.5t-76.5 81.5t-103.5 60.5t-113 59.5t-103.5 68t-76.5 95t-29.5 133q0 113 61.5 208t166.5 150.5 +t229 55.5q128 0 223 -60t132 -167l-127 -65q-22 75 -85.5 116t-146.5 41q-116 0 -206 -75t-90 -184z" /> + <glyph glyph-name="scedilla" unicode="ş" horiz-adv-x="873" +d="M297 725q0 -44 25 -73.5t65 -46.5t88.5 -31t96.5 -32t88 -44t65 -73t25 -113q0 -122 -99 -218.5t-245 -111.5l-88 -99q90 -4 128 -59.5t20 -134.5q-19 -78 -86.5 -135.5t-158.5 -57.5q-66 0 -109.5 38.5t-53.5 92.5l107 37q-2 -29 15.5 -47t48.5 -18q48 0 85.5 32 +t48.5 78t-26 78.5t-124 32.5h-48l124 166q-114 19 -188 89.5t-85 158.5l136 51q7 -75 69 -123.5t152 -48.5q101 0 165 58t64 136q0 45 -24.5 75.5t-64 47.5t-86.5 30.5t-94.5 31t-87 42t-64 71t-24.5 111.5q0 140 99.5 219t245.5 79q125 0 210 -58t113 -142l-125 -54 +q-20 60 -72 94t-132 34q-88 0 -143.5 -41.5t-55.5 -121.5z" /> + <glyph glyph-name="Scaron" unicode="Š" horiz-adv-x="1112" +d="M783 1495l-253 332h158l122 -181l213 181h164zM485 -16q-119 0 -215.5 42.5t-157 131.5t-60.5 211l156 30q0 -130 73.5 -201t212.5 -71q152 0 246 81.5t94 201.5q0 63 -29.5 112.5t-76.5 81.5t-103.5 60.5t-113 59.5t-103.5 68t-76.5 95t-29.5 133q0 113 61.5 208 +t166.5 150.5t229 55.5q128 0 223 -60t132 -167l-127 -65q-22 75 -85.5 116t-146.5 41q-116 0 -206 -75t-90 -184q0 -58 29.5 -103t76.5 -75.5t103.5 -58.5t113 -59.5t103.5 -70.5t76.5 -100t29.5 -139q0 -188 -147 -319t-359 -131z" /> + <glyph glyph-name="scaron" unicode="š" horiz-adv-x="873" +d="M570 1081l-253 332h158l122 -181l213 181h164zM361 -20q-141 0 -236.5 76t-108.5 178l136 51q7 -75 69 -123.5t152 -48.5q101 0 165 58t64 136q0 45 -24.5 75.5t-64 47.5t-86.5 30.5t-94.5 31t-87 42t-64 71t-24.5 111.5q0 140 99.5 219t245.5 79q125 0 210 -58t113 -142 +l-125 -54q-20 60 -72 94t-132 34q-88 0 -143.5 -41.5t-55.5 -121.5q0 -44 25 -73.5t65 -46.5t88.5 -31t96.5 -32t88 -44t65 -73t25 -113q0 -132 -114 -232t-275 -100z" /> + <glyph glyph-name="uni0162" unicode="Ţ" horiz-adv-x="1234" +d="M271 1413h1114l-30 -131h-477l-296 -1282h-9l-104 -117q90 -4 128 -59.5t20 -134.5q-19 -78 -86.5 -135.5t-158.5 -57.5q-66 0 -109.5 38.5t-53.5 92.5l107 37q-2 -29 15.5 -47t48.5 -18q48 0 85.5 32t48.5 78t-26 78.5t-124 32.5h-48l134 180h-28l295 1282h-477z" /> + <glyph glyph-name="uni0163" unicode="ţ" horiz-adv-x="671" +d="M437 877l-144 -620q-19 -79 4.5 -116.5t77.5 -37.5q48 0 113 28l-19 -133q-29 -11 -88 -16l-88 -99q90 -4 128 -59.5t20 -134.5q-19 -78 -86.5 -135.5t-158.5 -57.5q-66 0 -109.5 38.5t-53.5 92.5l107 37q-2 -29 15.5 -47t48.5 -18q48 0 85.5 32t48.5 78t-26 78.5 +t-124 32.5h-48l125 167q-173 41 -118 285l140 605h-157l28 122h157l51 225l182 140l-84 -365h256l-28 -122h-255z" /> + <glyph glyph-name="Tcaron" unicode="Ť" horiz-adv-x="1234" +d="M854 1495l-253 332h158l122 -181l213 181h164zM422 0l295 1282h-477l31 131h1114l-30 -131h-477l-296 -1282h-160z" /> + <glyph glyph-name="tcaron" unicode="ť" horiz-adv-x="671" +d="M614 1104l207 373h201l-310 -373h-98zM338 -20q-131 0 -176.5 77t-14.5 215l139 601h-157l29 126h157l51 225l182 140l-84 -365h256l-29 -126h-255l-144 -624q-16 -78 0 -108.5t64 -30.5q38 0 71.5 5t47.5 11l14 5l-24 -124q-53 -27 -127 -27z" /> + <glyph glyph-name="Tbar" unicode="Ŧ" horiz-adv-x="1234" +d="M1355 1282h-477l-120 -518h241l-27 -116h-240l-150 -648h-160l149 648h-233l27 116h233l119 518h-477l31 131h1114z" /> + <glyph glyph-name="tbar" unicode="ŧ" horiz-adv-x="671" +d="M692 877h-255l-74 -320h286l-27 -116h-286l-43 -184q-19 -79 4.5 -116.5t77.5 -37.5q48 0 113 28l-19 -133q-50 -18 -133 -18q-131 0 -175.5 78t-13.5 214l39 169h-198l27 116h198l74 320h-157l28 122h157l51 225l182 140l-84 -365h256z" /> + <glyph glyph-name="Utilde" unicode="Ũ" horiz-adv-x="1352" +d="M1055 1560q-39 0 -68.5 16t-46.5 39t-31 46.5t-31 39.5t-38 16q-39 0 -69 -40t-44 -97h-101q26 118 81 184t132 66q42 0 73 -16.5t48 -40t30.5 -46.5t29.5 -39.5t36 -16.5q40 0 71.5 42.5t48.5 110.5h106q-59 -264 -227 -264zM566 -20q-104 0 -182.5 29.5t-124.5 80.5 +t-69 121t-22.5 148.5t20.5 165.5l205 888h159l-198 -857q-22 -96 -23.5 -170t20 -133.5t78.5 -91t148 -31.5q96 0 172.5 33.5t129.5 95.5t88.5 138.5t57.5 172.5l196 843h159l-206 -892q-26 -114 -76 -209.5t-123.5 -171t-178.5 -118t-230 -42.5z" /> + <glyph glyph-name="utilde" unicode="ũ" horiz-adv-x="1115" +d="M838 1146q-39 0 -68.5 16t-46.5 39t-31 46.5t-31 39.5t-38 16q-39 0 -69 -40t-44 -97h-101q26 118 81 184t132 66q42 0 73 -16.5t48 -40t30.5 -46.5t29.5 -39.5t36 -16.5q40 0 71.5 42.5t48.5 110.5h106q-59 -264 -227 -264zM377 -23q-92 0 -154.5 35.5t-88.5 96 +t-31 139.5t18 166l135 585h149l-138 -605q-68 -288 130 -288q126 0 241 99.5t148 238.5l127 555h148l-229 -999h-147l39 163q-52 -73 -147.5 -129.5t-199.5 -56.5z" /> + <glyph glyph-name="Umacron" unicode="Ū" horiz-adv-x="1352" +d="M663 1597l29 125h541l-29 -125h-541zM566 -20q-104 0 -182.5 29.5t-124.5 80.5t-69 121t-22.5 148.5t20.5 165.5l205 888h159l-198 -857q-22 -96 -23.5 -170t20 -133.5t78.5 -91t148 -31.5q96 0 172.5 33.5t129.5 95.5t88.5 138.5t57.5 172.5l196 843h159l-206 -892 +q-26 -114 -76 -209.5t-123.5 -171t-178.5 -118t-230 -42.5z" /> + <glyph glyph-name="umacron" unicode="ū" horiz-adv-x="1115" +d="M446 1183l29 125h541l-29 -125h-541zM377 -23q-92 0 -154.5 35.5t-88.5 96t-31 139.5t18 166l135 585h149l-138 -605q-68 -288 130 -288q126 0 241 99.5t148 238.5l127 555h148l-229 -999h-147l39 163q-52 -73 -147.5 -129.5t-199.5 -56.5z" /> + <glyph glyph-name="Uring" unicode="Ů" horiz-adv-x="1352" +d="M918 1493q-91 0 -138.5 64t-26.5 154q19 79 86.5 134t147.5 55q89 0 138.5 -64.5t27.5 -153.5q-18 -79 -86.5 -134t-148.5 -55zM928 1596q47 0 84.5 34t43.5 82q4 37 -18.5 60.5t-60.5 23.5q-50 0 -84.5 -32t-39.5 -81q-4 -40 17 -63.5t58 -23.5zM566 -20 +q-104 0 -182.5 29.5t-124.5 80.5t-69 121t-22.5 148.5t20.5 165.5l205 888h159l-198 -857q-22 -96 -23.5 -170t20 -133.5t78.5 -91t148 -31.5q96 0 172.5 33.5t129.5 95.5t88.5 138.5t57.5 172.5l196 843h159l-206 -892q-26 -114 -76 -209.5t-123.5 -171t-178.5 -118 +t-230 -42.5z" /> + <glyph glyph-name="uring" unicode="ů" horiz-adv-x="1115" +d="M701 1079q-91 0 -138.5 64t-26.5 154q19 79 86.5 134t147.5 55q89 0 138.5 -64.5t27.5 -153.5q-18 -79 -86.5 -134t-148.5 -55zM711 1182q47 0 84.5 34t43.5 82q4 37 -18.5 60.5t-60.5 23.5q-50 0 -84.5 -32t-39.5 -81q-4 -40 17 -63.5t58 -23.5zM377 -23 +q-92 0 -154.5 35.5t-88.5 96t-31 139.5t18 166l135 585h149l-138 -605q-68 -288 130 -288q126 0 241 99.5t148 238.5l127 555h148l-229 -999h-147l39 163q-52 -73 -147.5 -129.5t-199.5 -56.5z" /> + <glyph glyph-name="Uhungarumlaut" unicode="Ű" horiz-adv-x="1352" +d="M654 1533l284 294h192l-338 -294h-138zM984 1533l284 294h197l-343 -294h-138zM566 -20q-104 0 -182.5 29.5t-124.5 80.5t-69 121t-22.5 148.5t20.5 165.5l205 888h159l-198 -857q-22 -96 -23.5 -170t20 -133.5t78.5 -91t148 -31.5q96 0 172.5 33.5t129.5 95.5 +t88.5 138.5t57.5 172.5l196 843h159l-206 -892q-26 -114 -76 -209.5t-123.5 -171t-178.5 -118t-230 -42.5z" /> + <glyph glyph-name="uhungarumlaut" unicode="ű" horiz-adv-x="1115" +d="M437 1119l284 294h192l-338 -294h-138zM767 1119l284 294h197l-343 -294h-138zM377 -23q-92 0 -154.5 35.5t-88.5 96t-31 139.5t18 166l135 585h149l-138 -605q-68 -288 130 -288q126 0 241 99.5t148 238.5l127 555h148l-229 -999h-147l39 163q-52 -73 -147.5 -129.5 +t-199.5 -56.5z" /> + <glyph glyph-name="Uogonek" unicode="Ų" horiz-adv-x="1352" +d="M1221 1413h159l-206 -892q-45 -194 -157.5 -334t-287.5 -187q-33 -15 -64.5 -33.5t-69 -46.5t-65 -65.5t-36.5 -78.5q-10 -45 6 -69t48 -24q81 0 145 69l83 -75q-97 -108 -222 -108q-93 0 -140.5 61t-26.5 159q28 117 162 191q-100 2 -175.5 33t-119 82t-65.5 120 +t-21.5 146.5t20.5 163.5l205 888h159l-198 -857q-22 -96 -23.5 -170t20 -133.5t78.5 -91t148 -31.5q96 0 172.5 33.5t129.5 95.5t88.5 138.5t57.5 172.5z" /> + <glyph glyph-name="uogonek" unicode="ų" horiz-adv-x="1115" +d="M1061 999l-229 -999h-46l42 -1l-1 -1q-134 -49 -213 -130q-53 -53 -66 -112q-10 -45 6 -69t48 -24q81 0 145 69l83 -75q-97 -108 -222 -108q-93 0 -140.5 61t-26.5 159q12 49 43 91t71 69.5t74.5 44t66.5 26.5h-11l39 163q-52 -73 -147.5 -129.5t-199.5 -56.5 +q-92 0 -154.5 35.5t-88.5 96t-31 139.5t18 166l135 585h149l-138 -605q-68 -288 130 -288q126 0 241 99.5t148 238.5l127 555h148z" /> + <glyph glyph-name="Wcircumflex" unicode="Ŵ" horiz-adv-x="1973" +d="M886 1487l410 355l247 -355h-156l-122 186l-213 -186h-166zM356 0l-71 1413h159l52 -1219l616 1137h127l89 -1137l616 1219h167l-725 -1413h-174l-87 1076l-596 -1076h-173z" /> + <glyph glyph-name="wcircumflex" unicode="ŵ" horiz-adv-x="1419" +d="M517 1098l410 355l247 -355h-156l-122 186l-213 -186h-166zM213 -1l-48 1000h156l18 -802l415 802h138l42 -800l390 800h161l-511 -999h-146l-43 811l-427 -812h-145z" /> + <glyph glyph-name="Ycircumflex" unicode="Ŷ" horiz-adv-x="1331" +d="M567 1512l410 355l247 -355h-156l-122 186l-213 -186h-166zM473 0l129 553l-339 860h180l266 -702l595 702h187l-735 -860l-129 -553h-154z" /> + <glyph glyph-name="ycircumflex" unicode="ŷ" horiz-adv-x="975" +d="M288 1098l410 355l247 -355h-156l-122 186l-213 -186h-166zM29 -430l275 435l-154 994h163l101 -817l475 817h166l-865 -1429h-161z" /> + <glyph glyph-name="Ydieresis" unicode="Ÿ" horiz-adv-x="1331" +d="M673 1635l44 192h169l-45 -192h-168zM1009 1635l44 192h169l-44 -192h-169zM473 0l129 553l-339 860h180l266 -702l595 702h187l-735 -860l-129 -553h-154z" /> + <glyph glyph-name="Zacute" unicode="Ź" horiz-adv-x="1277" +d="M781 1538l285 289h197l-343 -289h-139zM-26 0l26 124l1152 1152h-839l32 137h1043l-28 -130l-1147 -1139h883l-34 -144h-1088z" /> + <glyph glyph-name="zacute" unicode="ź" horiz-adv-x="933" +d="M987 1413l-343 -289h-139l285 289h197zM184 877l27 122h757l-25 -123l-771 -748h596l-29 -128h-786l24 113l785 764h-578z" /> + <glyph glyph-name="Zdotaccent" unicode="Ż" horiz-adv-x="1277" +d="M813 1635l45 192h172l-44 -192h-173zM-26 0l26 124l1152 1152h-839l32 137h1043l-28 -130l-1147 -1139h883l-34 -144h-1088z" /> + <glyph glyph-name="zdotaccent" unicode="ż" horiz-adv-x="933" +d="M754 1413l-44 -192h-173l45 192h172zM968 999l-25 -123l-771 -748h596l-29 -128h-786l24 113l785 764h-578l27 122h757z" /> + <glyph glyph-name="Zcaron" unicode="Ž" horiz-adv-x="1277" +d="M872 1495l-253 332h158l122 -181l213 181h164zM-26 0l26 124l1152 1152h-839l32 137h1043l-28 -130l-1147 -1139h883l-34 -144h-1088z" /> + <glyph glyph-name="zcaron" unicode="ž" horiz-adv-x="933" +d="M1000 1413l-404 -332l-253 332h158l122 -181l213 181h164zM184 877l27 122h757l-25 -123l-771 -748h596l-29 -128h-786l24 113l785 764h-578z" /> + <glyph glyph-name="florin" unicode="ƒ" horiz-adv-x="1044" +d="M-99 -457l20 135q176 0 278 78.5t140 245.5l199 865h-178l30 132h179l39 168q29 126 120.5 204.5t200.5 78.5q110 0 187 -80l-102 -94q-36 39 -94 39q-59 0 -111.5 -43.5t-69.5 -118.5l-36 -154h305l-31 -132h-305l-203 -879q-50 -218 -199.5 -331.5t-368.5 -113.5z" /> + <glyph glyph-name="uni01C3" unicode="ǃ" horiz-adv-x="491" +d="M161 379l216 1056h170l-273 -1056h-113zM34 0l43 192h194l-43 -192h-194z" /> + <glyph glyph-name="uni01C4" unicode="DŽ" horiz-adv-x="2663" +d="M2258 1495l-253 332h158l122 -181l213 181h164zM97 0l326 1413h354q344 0 488 -189.5t62 -541.5q-77 -329 -301.5 -505.5t-565.5 -176.5h-363zM1360 0l26 124l1152 1152h-839l32 137h1043l-28 -130l-1147 -1139h883l-34 -144h-1088zM290 145h168q126 0 239 35t209 104 +t166.5 180.5t104.5 256.5q62 271 -43 410.5t-382 139.5h-202z" /> + <glyph glyph-name="uni01C5" unicode="Dž" horiz-adv-x="2341" +d="M777 1413q344 0 488 -189.5t62 -541.5q-77 -329 -301.5 -505.5t-565.5 -176.5h-363l326 1413h354zM2408 1413l-404 -332l-253 332h158l122 -181l213 181h164zM1177 721q62 271 -43 410.5t-382 139.5h-202l-260 -1126h168q126 0 239 35t209 104t166.5 180.5t104.5 256.5z +M1592 877l27 122h757l-25 -123l-771 -748h596l-29 -128h-786l24 113l785 764h-578z" /> + <glyph glyph-name="uni01C6" unicode="dž" horiz-adv-x="2062" +d="M1020 1413h149l-325 -1413h-146l25 126q-140 -146 -334 -146q-96 0 -165.5 42.5t-103 115t-41.5 169.5t20 207q50 217 187.5 361.5t318.5 144.5q209 0 283 -162zM2129 1413l-404 -332l-253 332h158l122 -181l213 181h164zM1313 877l27 122h757l-25 -123l-771 -748h596 +l-29 -128h-786l24 113l785 764h-578zM824 514q19 73 17 139.5t-20.5 117.5t-66 81t-119.5 30q-75 0 -141 -32t-113.5 -88t-81.5 -126t-52 -151q-20 -73 -17.5 -140t21.5 -118t66.5 -81t117.5 -30q149 0 249.5 113t139.5 285z" /> + <glyph glyph-name="uni01C7" unicode="LJ" horiz-adv-x="2195" +d="M97 0l326 1413h159l-294 -1268h605l-33 -145h-763zM1466 -20q-128 0 -212.5 58.5t-115 153t-12.5 211.5l155 7q-12 -56 -5 -108t26.5 -92.5t64 -65t108.5 -24.5q85 0 149.5 28.5t107 83t69 116.5t45.5 144l181 784h-532l32 137h691l-213 -918q-116 -515 -539 -515z" /> + <glyph glyph-name="uni01C8" unicode="Lj" horiz-adv-x="1533" +d="M1367 1225l46 193h174l-46 -193h-174zM97 0l326 1413h159l-294 -1268h605l-33 -145h-763zM903 -438q-69 0 -151 33l47 108q47 -15 106 -15q61 0 99.5 42t52.5 100l269 1169h153l-268 -1161q-30 -130 -106 -203t-202 -73z" /> + <glyph glyph-name="uni01C9" unicode="lj" horiz-adv-x="1012" +d="M846 1225l46 193h174l-46 -193h-174zM220 -20q-46 0 -76 13t-43.5 32.5t-16.5 51.5t0.5 61.5t13.5 70.5l278 1204h151l-288 -1244q-14 -64 43 -64q22 0 86 17l-17 -124q-61 -18 -131 -18zM382 -438q-68 0 -151 33l47 108q47 -15 106 -15q61 0 99.5 42t52.5 100l269 1169 +h153l-268 -1161q-30 -130 -106 -203t-202 -73z" /> + <glyph glyph-name="uni01CA" unicode="NJ" horiz-adv-x="2537" +d="M97 0l326 1413h220l332 -1228l285 1228h157l-325 -1413h-224l-327 1230l-285 -1230h-159zM1808 -20q-128 0 -212.5 58.5t-115 153t-12.5 211.5l155 7q-12 -56 -5 -108t26.5 -92.5t64 -65t108.5 -24.5q85 0 149.5 28.5t107 83t69 116.5t45.5 144l181 784h-532l32 137h691 +l-213 -918q-116 -515 -539 -515z" /> + <glyph glyph-name="uni01CB" unicode="Nj" horiz-adv-x="1912" +d="M1746 1225l46 193h174l-46 -193h-174zM97 0l326 1413h220l332 -1228l285 1228h157l-325 -1413h-224l-327 1230l-285 -1230h-159zM1282 -438q-68 0 -151 33l47 108q47 -15 106 -15q61 0 99.5 42t52.5 100l269 1169h153l-268 -1161q-30 -130 -106 -203t-202 -73z" /> + <glyph glyph-name="uni01CC" unicode="nj" horiz-adv-x="1612" +d="M1446 1225l46 193h174l-46 -193h-174zM54 0l229 999h150l-37 -151q65 78 157.5 123t185.5 45q92 0 155 -34t89.5 -91t32 -132.5t-16.5 -158.5l-138 -600h-150l138 599q13 57 14.5 101.5t-9.5 86t-47 64.5t-96 23q-124 0 -237.5 -95t-140.5 -218l-130 -561h-149zM982 -438 +q-68 0 -151 33l47 108q47 -15 106 -15q61 0 99.5 42t52.5 100l269 1169h153l-268 -1161q-30 -130 -106 -203t-202 -73z" /> + <glyph glyph-name="uni01CD" unicode="Ǎ" horiz-adv-x="1306" +d="M888 1495l-253 332h158l122 -181l213 181h164zM-52 0l856 1413h122l202 -1413h-167l-38 307h-621l-178 -307h-176zM389 452h514l-85 728z" /> + <glyph glyph-name="uni01CE" unicode="ǎ" horiz-adv-x="1129" +d="M1115 1413l-404 -332l-253 332h158l122 -181l213 181h164zM888 858l36 141h149l-229 -999h-146l25 126q-140 -146 -334 -146q-96 0 -165.5 42.5t-103 115t-41.5 169.5t20 207q50 217 187.5 361.5t318.5 144.5q209 0 283 -162zM824 514q19 73 17 139.5t-20.5 117.5t-66 81 +t-119.5 30q-75 0 -141 -32t-113.5 -88t-81.5 -126t-52 -151q-20 -73 -17.5 -140t21.5 -118t66.5 -81t117.5 -30q149 0 249.5 113t139.5 285z" /> + <glyph glyph-name="uni01CF" unicode="Ǐ" horiz-adv-x="582" +d="M523 1495l-253 332h158l122 -181l213 181h164zM97 0l326 1413h159l-326 -1413h-159z" /> + <glyph glyph-name="uni01D0" unicode="ǐ" horiz-adv-x="485" +d="M380 1081l-253 332h158l122 -181l213 181h164zM54 0l229 999h148l-229 -999h-148z" /> + <glyph glyph-name="uni01D1" unicode="Ǒ" horiz-adv-x="1515" +d="M989 1495l-253 332h158l122 -181l213 181h164zM648 -20q-107 0 -193 27t-144.5 76.5t-97.5 117.5t-54.5 151t-11.5 175.5t27 193.5q34 147 101.5 274t165 226t231.5 156t288 57q128 0 226.5 -39t158 -107.5t90 -162t30 -203t-28.5 -230.5q-34 -147 -101.5 -274 +t-165 -225.5t-232 -155.5t-289.5 -57zM657 126q102 0 193 32.5t161 87.5t126 131.5t93.5 162.5t59.5 181q21 91 23.5 172.5t-17 154t-61.5 125.5t-115 83.5t-172 30.5q-124 0 -231.5 -49t-184 -133t-129.5 -188.5t-80 -224.5q-21 -91 -23.5 -172.5t16.5 -154t60 -125.5 +t112.5 -83.5t168.5 -30.5z" /> + <glyph glyph-name="uni01D2" unicode="ǒ" horiz-adv-x="1119" +d="M695 1081l-253 332h158l122 -181l213 181h164zM450 -20q-106 0 -188 42t-127 114t-60 168t13 206q49 212 211 357t365 145q84 0 154.5 -27t117.5 -75.5t76 -115.5t31.5 -146t-15.5 -167q-48 -211 -212 -356t-366 -145zM458 112q83 0 153 32.5t120 89t84 126.5t53 150 +q20 72 17 138.5t-23.5 118t-73 82t-131.5 30.5q-81 0 -151.5 -32.5t-120 -89t-84 -126t-53.5 -150.5q-19 -72 -16 -138.5t23.5 -118t72.5 -82t130 -30.5z" /> + <glyph glyph-name="uni01D3" unicode="Ǔ" horiz-adv-x="1352" +d="M911 1495l-253 332h158l122 -181l213 181h164zM566 -20q-104 0 -182.5 29.5t-124.5 80.5t-69 121t-22.5 148.5t20.5 165.5l205 888h159l-198 -857q-22 -96 -23.5 -170t20 -133.5t78.5 -91t148 -31.5q96 0 172.5 33.5t129.5 95.5t88.5 138.5t57.5 172.5l196 843h159 +l-206 -892q-26 -114 -76 -209.5t-123.5 -171t-178.5 -118t-230 -42.5z" /> + <glyph glyph-name="uni01D4" unicode="ǔ" horiz-adv-x="1115" +d="M694 1081l-253 332h158l122 -181l213 181h164zM377 -23q-92 0 -154.5 35.5t-88.5 96t-31 139.5t18 166l135 585h149l-138 -605q-68 -288 130 -288q126 0 241 99.5t148 238.5l127 555h148l-229 -999h-147l39 163q-52 -73 -147.5 -129.5t-199.5 -56.5z" /> + <glyph glyph-name="uni01D5" unicode="Ǖ" horiz-adv-x="1352" +d="M760 2011l29 125h541l-29 -125h-541zM687 1635l44 192h169l-45 -192h-168zM1023 1635l44 192h169l-44 -192h-169zM566 -20q-104 0 -182.5 29.5t-124.5 80.5t-69 121t-22.5 148.5t20.5 165.5l205 888h159l-198 -857q-22 -96 -23.5 -170t20 -133.5t78.5 -91t148 -31.5 +q96 0 172.5 33.5t129.5 95.5t88.5 138.5t57.5 172.5l196 843h159l-206 -892q-26 -114 -76 -209.5t-123.5 -171t-178.5 -118t-230 -42.5z" /> + <glyph glyph-name="uni01D6" unicode="ǖ" horiz-adv-x="1115" +d="M543 1597l29 125h541l-29 -125h-541zM470 1221l44 192h169l-45 -192h-168zM806 1221l44 192h169l-44 -192h-169zM377 -23q-92 0 -154.5 35.5t-88.5 96t-31 139.5t18 166l135 585h149l-138 -605q-68 -288 130 -288q126 0 241 99.5t148 238.5l127 555h148l-229 -999h-147 +l39 163q-52 -73 -147.5 -129.5t-199.5 -56.5z" /> + <glyph glyph-name="uni01D7" unicode="Ǘ" horiz-adv-x="1352" +d="M917 1952l285 289h197l-343 -289h-139zM687 1635l44 192h169l-45 -192h-168zM1023 1635l44 192h169l-44 -192h-169zM566 -20q-104 0 -182.5 29.5t-124.5 80.5t-69 121t-22.5 148.5t20.5 165.5l205 888h159l-198 -857q-22 -96 -23.5 -170t20 -133.5t78.5 -91t148 -31.5 +q96 0 172.5 33.5t129.5 95.5t88.5 138.5t57.5 172.5l196 843h159l-206 -892q-26 -114 -76 -209.5t-123.5 -171t-178.5 -118t-230 -42.5z" /> + <glyph glyph-name="uni01D8" unicode="ǘ" horiz-adv-x="1115" +d="M700 1538l285 289h197l-343 -289h-139zM470 1221l44 192h169l-45 -192h-168zM806 1221l44 192h169l-44 -192h-169zM377 -23q-92 0 -154.5 35.5t-88.5 96t-31 139.5t18 166l135 585h149l-138 -605q-68 -288 130 -288q126 0 241 99.5t148 238.5l127 555h148l-229 -999h-147 +l39 163q-52 -73 -147.5 -129.5t-199.5 -56.5z" /> + <glyph glyph-name="uni01D9" unicode="Ǚ" horiz-adv-x="1352" +d="M1008 1909l-253 332h158l122 -181l213 181h164zM687 1635l44 192h169l-45 -192h-168zM1023 1635l44 192h169l-44 -192h-169zM566 -20q-104 0 -182.5 29.5t-124.5 80.5t-69 121t-22.5 148.5t20.5 165.5l205 888h159l-198 -857q-22 -96 -23.5 -170t20 -133.5t78.5 -91 +t148 -31.5q96 0 172.5 33.5t129.5 95.5t88.5 138.5t57.5 172.5l196 843h159l-206 -892q-26 -114 -76 -209.5t-123.5 -171t-178.5 -118t-230 -42.5z" /> + <glyph glyph-name="uni01DA" unicode="ǚ" horiz-adv-x="1115" +d="M791 1495l-253 332h158l122 -181l213 181h164zM470 1221l44 192h169l-45 -192h-168zM806 1221l44 192h169l-44 -192h-169zM377 -23q-92 0 -154.5 35.5t-88.5 96t-31 139.5t18 166l135 585h149l-138 -605q-68 -288 130 -288q126 0 241 99.5t148 238.5l127 555h148 +l-229 -999h-147l39 163q-52 -73 -147.5 -129.5t-199.5 -56.5z" /> + <glyph glyph-name="uni01DB" unicode="Ǜ" horiz-adv-x="1352" +d="M946 1950l-192 291h185l150 -291h-143zM687 1635l44 192h169l-45 -192h-168zM1023 1635l44 192h169l-44 -192h-169zM566 -20q-104 0 -182.5 29.5t-124.5 80.5t-69 121t-22.5 148.5t20.5 165.5l205 888h159l-198 -857q-22 -96 -23.5 -170t20 -133.5t78.5 -91t148 -31.5 +q96 0 172.5 33.5t129.5 95.5t88.5 138.5t57.5 172.5l196 843h159l-206 -892q-26 -114 -76 -209.5t-123.5 -171t-178.5 -118t-230 -42.5z" /> + <glyph glyph-name="uni01DC" unicode="ǜ" horiz-adv-x="1115" +d="M729 1536l-192 291h185l150 -291h-143zM470 1221l44 192h169l-45 -192h-168zM806 1221l44 192h169l-44 -192h-169zM377 -23q-92 0 -154.5 35.5t-88.5 96t-31 139.5t18 166l135 585h149l-138 -605q-68 -288 130 -288q126 0 241 99.5t148 238.5l127 555h148l-229 -999h-147 +l39 163q-52 -73 -147.5 -129.5t-199.5 -56.5z" /> + <glyph glyph-name="uni01DD" unicode="ǝ" horiz-adv-x="1029" +d="M401 -12q-81 0 -143 20t-100 57.5t-60.5 87t-28 111.5t0.5 127.5t23 139.5q2 8 9 26h697q33 151 -23 237.5t-184 86.5q-94 0 -169 -25.5t-146 -86.5l-89 92q99 82 195.5 116.5t211.5 34.5q91 0 161.5 -27t113 -75t67 -114t23 -142.5t-19.5 -161.5q-23 -101 -69.5 -190 +t-113.5 -160t-159.5 -112.5t-196.5 -41.5zM409 120q134 0 229.5 90t130.5 223l-560 -14q-32 -138 17 -218.5t183 -80.5z" /> + <glyph glyph-name="uni01E3" unicode="ǣ" horiz-adv-x="1689" +d="M742 1196l26 117h533l-26 -117h-533zM309 -20q-141 0 -217 86.5t-44 224.5q33 146 144 214t279 68l319 5q75 318 -171 318q-90 0 -170.5 -44t-139.5 -110l-102 86q93 96 195 142t225 46q127 0 200 -50.5t93 -139.5q140 186 365 186q84 0 146.5 -21t99.5 -60t59 -89 +t26 -113t-2 -126t-22 -135q0 -3 -6 -24h-698q-32 -153 24.5 -239.5t184.5 -86.5q92 0 167 26t147 88l88 -94q-98 -82 -195 -116t-212 -34q-158 0 -239 76t-92 204q-173 -288 -452 -288zM918 568l561 10q32 144 -20 222.5t-181 78.5q-135 0 -230 -90t-130 -221zM348 108 +q138 0 259 104t155 242l-294 -5q-96 0 -173.5 -51.5t-96.5 -136.5q-14 -65 35.5 -109t114.5 -44z" /> + <glyph glyph-name="uni01EB" unicode="ǫ" horiz-adv-x="1119" +d="M664 1012q84 0 154.5 -27t117.5 -75.5t76 -115.5t31.5 -146t-15.5 -167q-43 -189 -181.5 -328t-317.5 -167q-33 -14 -64.5 -32t-72.5 -47t-71 -68.5t-40 -82.5q-10 -45 6 -69t48 -24q81 0 145 69l83 -75q-97 -108 -222 -108q-93 0 -140.5 61t-26.5 159q13 54 51 99.5 +t77 71t83 44.5q-90 12 -158.5 58t-105.5 116.5t-47.5 160.5t14.5 191q49 212 211 357t365 145zM868 510q20 72 17 138.5t-23.5 118t-73 82t-131.5 30.5q-81 0 -151.5 -32.5t-120 -89t-84 -126t-53.5 -150.5q-19 -72 -16 -138.5t23.5 -118t72.5 -82t130 -30.5q83 0 153 32.5 +t120 89t84 126.5t53 150z" /> + <glyph glyph-name="uni01F1" unicode="DZ" horiz-adv-x="2663" +d="M97 0l326 1413h354q344 0 488 -189.5t62 -541.5q-77 -329 -301.5 -505.5t-565.5 -176.5h-363zM1360 0l26 124l1152 1152h-839l32 137h1043l-28 -130l-1147 -1139h883l-34 -144h-1088zM290 145h168q126 0 239 35t209 104t166.5 180.5t104.5 256.5q62 271 -43 410.5 +t-382 139.5h-202z" /> + <glyph glyph-name="uni01F2" unicode="Dz" horiz-adv-x="2341" +d="M777 1413q344 0 488 -189.5t62 -541.5q-77 -329 -301.5 -505.5t-565.5 -176.5h-363l326 1413h354zM1177 721q62 271 -43 410.5t-382 139.5h-202l-260 -1126h168q126 0 239 35t209 104t166.5 180.5t104.5 256.5zM2376 999l-25 -123l-771 -748h596l-29 -128h-786l24 113 +l785 764h-578l27 122h757z" /> + <glyph glyph-name="uni01F3" unicode="dz" horiz-adv-x="2062" +d="M1020 1413h149l-325 -1413h-146l25 126q-140 -146 -334 -146q-96 0 -165.5 42.5t-103 115t-41.5 169.5t20 207q50 217 187.5 361.5t318.5 144.5q209 0 283 -162zM2097 999l-25 -123l-771 -748h596l-29 -128h-786l24 113l785 764h-578l27 122h757zM824 514q19 73 17 139.5 +t-20.5 117.5t-66 81t-119.5 30q-75 0 -141 -32t-113.5 -88t-81.5 -126t-52 -151q-20 -73 -17.5 -140t21.5 -118t66.5 -81t117.5 -30q149 0 249.5 113t139.5 285z" /> + <glyph glyph-name="Scommaaccent" unicode="Ș" horiz-adv-x="1112" +d="M485 -16q-119 0 -215.5 42.5t-157 131.5t-60.5 211l156 30q0 -130 73.5 -201t212.5 -71q152 0 246 81.5t94 201.5q0 63 -29.5 112.5t-76.5 81.5t-103.5 60.5t-113 59.5t-103.5 68t-76.5 95t-29.5 133q0 113 61.5 208t166.5 150.5t229 55.5q128 0 223 -60t132 -167 +l-127 -65q-22 75 -85.5 116t-146.5 41q-116 0 -206 -75t-90 -184q0 -58 29.5 -103t76.5 -75.5t103.5 -58.5t113 -59.5t103.5 -70.5t76.5 -100t29.5 -139q0 -188 -147 -319t-359 -131zM104 -446l201 335h215l-305 -335h-111z" /> + <glyph glyph-name="scommaaccent" unicode="ș" horiz-adv-x="873" +d="M361 -20q-141 0 -236.5 76t-108.5 178l136 51q7 -75 69 -123.5t152 -48.5q101 0 165 58t64 136q0 45 -24.5 75.5t-64 47.5t-86.5 30.5t-94.5 31t-87 42t-64 71t-24.5 111.5q0 140 99.5 219t245.5 79q125 0 210 -58t113 -142l-125 -54q-20 60 -72 94t-132 34 +q-88 0 -143.5 -41.5t-55.5 -121.5q0 -44 25 -73.5t65 -46.5t88.5 -31t96.5 -32t88 -44t65 -73t25 -113q0 -132 -114 -232t-275 -100zM23 -446l201 335h215l-305 -335h-111z" /> + <glyph glyph-name="uni021A" unicode="Ț" horiz-adv-x="1234" +d="M422 0l295 1282h-477l31 131h1114l-30 -131h-477l-296 -1282h-160zM174 -446l201 335h215l-305 -335h-111z" /> + <glyph glyph-name="uni021B" unicode="ț" horiz-adv-x="671" +d="M336 -20q-131 0 -175.5 78t-13.5 214l140 605h-157l28 122h157l51 225l182 140l-84 -365h256l-28 -122h-255l-144 -620q-19 -79 4.5 -116.5t77.5 -37.5q48 0 113 28l-19 -133q-50 -18 -133 -18zM-2 -446l201 335h215l-305 -335h-111z" /> + <glyph glyph-name="uni0237" unicode="ȷ" horiz-adv-x="503" +d="M-129 -438q-71 0 -153 33l53 128q49 -14 103 -14q63 0 99 40t48 99l266 1151h162l-267 -1157q-31 -131 -108.5 -205.5t-202.5 -74.5z" /> + <glyph glyph-name="uni0250" unicode="ɐ" horiz-adv-x="1055" +d="M443 -20q-185 0 -264 111t-36 297l140 607h123l-34 -171q90 102 183 147t213 45q137 0 212.5 -87t43.5 -224q-33 -146 -143.5 -214.5t-279.5 -68.5l-319 -7q-35 -152 3.5 -227.5t173.5 -75.5q87 0 169.5 43.5t139.5 105.5l94 -94q-91 -97 -191.5 -142t-227.5 -45z +M311 539l293 7q96 0 174 50.5t98 137.5q18 79 -27 113t-129 34q-138 0 -258 -105.5t-151 -236.5z" /> + <glyph glyph-name="uni0254" unicode="ɔ" horiz-adv-x="968" +d="M342 -20q-138 0 -225 71t-114 197l151 47q3 -88 55 -138t138 -50q62 0 118 24t98 64t76.5 93.5t57 109t35.5 114.5q16 70 17 133.5t-15.5 119.5t-63 89.5t-119.5 33.5q-94 0 -177 -56t-127 -145l-117 70q74 127 183.5 193t242.5 66q87 0 153.5 -28.5t107 -78t61.5 -117 +t20.5 -146t-20.5 -163.5q-23 -101 -70 -190t-113.5 -159.5t-158 -112t-194.5 -41.5z" /> + <glyph glyph-name="uni0258" unicode="ɘ" horiz-adv-x="1029" +d="M383 -12q-122 0 -206 38t-146 122l112 74q42 -60 102 -82t149 -22q136 0 240.5 93.5t140.5 244.5h-696q1 3 2 16t4 25q20 85 48 157.5t72.5 140t101 114.5t135.5 75t172 28q88 0 155.5 -28.5t108 -78.5t61.5 -117.5t20 -145.5t-21 -163q-23 -101 -71 -189t-117 -156 +t-164 -107t-203 -39zM242 566l561 14q26 132 -21.5 215.5t-175.5 83.5q-139 0 -234.5 -87t-129.5 -226z" /> + <glyph glyph-name="uni0259" unicode="ə" horiz-adv-x="1029" +d="M401 -12q-81 0 -143 20t-100 57.5t-60.5 87t-28 111.5t0.5 127.5t23 139.5q2 8 9 26h697q33 151 -23 237.5t-184 86.5q-94 0 -169 -25.5t-146 -86.5l-89 92q99 82 195.5 116.5t211.5 34.5q91 0 161.5 -27t113 -75t67 -114t23 -142.5t-19.5 -161.5q-23 -101 -69.5 -190 +t-113.5 -160t-159.5 -112.5t-196.5 -41.5zM409 120q134 0 229.5 90t130.5 223l-560 -14q-32 -138 17 -218.5t183 -80.5z" /> + <glyph glyph-name="uni0261" unicode="ɡ" horiz-adv-x="1130" +d="M840 -7q-46 -202 -178 -314t-330 -112q-132 0 -223 52.5t-133 150.5l128 73q55 -147 235 -147q134 0 228.5 86t126.5 225l33 129q-140 -152 -331 -152q-99 0 -170.5 42t-105 114.5t-41.5 169t20 206.5q33 141 102.5 253.5t177 181.5t232.5 69q101 0 172 -44t105 -120 +l35 143h151zM436 116q76 0 142 33t113.5 89.5t81 127t51.5 150.5q19 72 17 139t-20 118.5t-65 82.5t-118 31q-75 0 -141.5 -33t-115 -89t-82.5 -127t-52 -151q-20 -73 -18 -140t21 -118.5t67 -82t119 -30.5z" /> + <glyph glyph-name="circumflex" unicode="ˆ" horiz-adv-x="758" +d="M234 1098l410 355l247 -355h-156l-122 186l-213 -186h-166z" /> + <glyph glyph-name="caron" unicode="ˇ" horiz-adv-x="761" +d="M513 1081l-253 332h158l122 -181l213 181h164z" /> + <glyph glyph-name="uni02D0" unicode="ː" horiz-adv-x="479" +d="M259 637l-230 362l402 38zM48 -38l172 400l231 -362z" /> + <glyph glyph-name="uni02D1" unicode="ˑ" horiz-adv-x="519" +d="M279 265l-231 363l403 38z" /> + <glyph glyph-name="breve" unicode="˘" horiz-adv-x="836" +d="M576 1143q-142 0 -213.5 73t-41.5 197h132q-16 -73 20.5 -114.5t105.5 -41.5q75 0 139 45t80 111h132q-29 -133 -124.5 -201.5t-229.5 -68.5z" /> + <glyph glyph-name="dotaccent" unicode="˙" horiz-adv-x="526" +d="M340 1221l45 192h172l-44 -192h-173z" /> + <glyph glyph-name="ring" unicode="˚" horiz-adv-x="639" +d="M463 1079q-91 0 -138.5 64t-26.5 154q19 79 86.5 134t147.5 55q89 0 138.5 -64.5t27.5 -153.5q-18 -79 -86.5 -134t-148.5 -55zM473 1182q47 0 84.5 34t43.5 82q4 37 -18.5 60.5t-60.5 23.5q-50 0 -84.5 -32t-39.5 -81q-4 -40 17 -63.5t58 -23.5z" /> + <glyph glyph-name="ogonek" unicode="˛" horiz-adv-x="596" +d="M164 -451q-93 0 -140.5 61t-26.5 159q12 51 45 94t74.5 70.5t76.5 43.5t66 25l125 -3l-1 -1q-134 -49 -213 -130q-52 -54 -66 -112q-10 -45 6 -69t48 -24q81 0 145 69l83 -75q-97 -108 -222 -108z" /> + <glyph glyph-name="tilde" unicode="˜" horiz-adv-x="1008" +d="M804 1149q-39 0 -68.5 16t-46.5 39.5t-31 46.5t-31 39t-38 16q-39 0 -69 -40t-44 -97h-101q26 118 81 184t132 66q42 0 73 -16.5t48 -39.5t30.5 -46.5t29.5 -40t36 -16.5q40 0 71.5 42.5t48.5 110.5h106q-59 -264 -227 -264z" /> + <glyph glyph-name="hungarumlaut" unicode="˝" horiz-adv-x="866" +d="M209 1119l284 294h192l-338 -294h-138zM539 1119l284 294h197l-343 -294h-138z" /> + <glyph glyph-name="uni02F5" unicode="˵" horiz-adv-x="1126" +d="M548 717l-244 282h198l212 -282h-166zM785 717l-243 282h198l212 -282h-167z" /> + <glyph glyph-name="uni02F6" unicode="˶" horiz-adv-x="1073" +d="M287 717l214 282h196l-244 -282h-166zM518 717l214 282h196l-244 -282h-166z" /> + <glyph glyph-name="gravecomb" unicode="̀" +d="M-70 1122l-192 291h185l150 -291h-143z" /> + <glyph glyph-name="acutecomb" unicode="́" +d="M-327 1124l285 289h197l-343 -289h-139z" /> + <glyph glyph-name="uni0302" unicode="̂" +d="M-572 1098l410 355l247 -355h-156l-122 186l-213 -186h-166z" /> + <glyph glyph-name="tildecomb" unicode="̃" +d="M-107 1149q-39 0 -68.5 16t-46.5 39.5t-31 46.5t-31 39t-38 16q-39 0 -69 -40t-44 -97h-101q26 118 81 184t132 66q42 0 73 -16.5t48 -39.5t30.5 -46.5t29.5 -40t36 -16.5q40 0 71.5 42.5t48.5 110.5h106q-59 -264 -227 -264z" /> + <glyph glyph-name="uni0304" unicode="̄" +d="M-547 1183l29 125h541l-29 -125h-541z" /> + <glyph glyph-name="uni0306" unicode="̆" +d="M-257 1143q-142 0 -213.5 73t-41.5 197h132q-16 -73 20.5 -114.5t105.5 -41.5q75 0 139 45t80 111h132q-29 -133 -124.5 -201.5t-229.5 -68.5z" /> + <glyph glyph-name="uni0307" unicode="̇" +d="M-183 1221l45 192h172l-44 -192h-173z" /> + <glyph glyph-name="uni0308" unicode="̈" +d="M-503 1221l44 192h169l-45 -192h-168zM-167 1221l44 192h169l-44 -192h-169z" /> + <glyph glyph-name="uni030A" unicode="̊" +d="M-175 1079q-91 0 -138.5 64t-26.5 154q19 79 86.5 134t147.5 55q89 0 138.5 -64.5t27.5 -153.5q-18 -79 -86.5 -134t-148.5 -55zM-165 1182q47 0 84.5 34t43.5 82q4 37 -18.5 60.5t-60.5 23.5q-50 0 -84.5 -32t-39.5 -81q-4 -40 17 -63.5t58 -23.5z" /> + <glyph glyph-name="uni030B" unicode="̋" +d="M-655 1119l284 294h192l-338 -294h-138zM-325 1119l284 294h197l-343 -294h-138z" /> + <glyph glyph-name="uni030C" unicode="̌" +d="M-241 1081l-253 332h158l122 -181l213 181h164z" /> + <glyph glyph-name="uni030F" unicode="̏" +d="M-427 1119l-190 294h207l149 -294h-166zM-96 1119l-189 294h207l150 -294h-168z" /> + <glyph glyph-name="uni0312" unicode="̒" +d="M132 1423l-201 -300h-215l305 300h111z" /> + <glyph glyph-name="uni031B" unicode="̛" +d="M-289 999l218 414h216l-324 -414h-110z" /> + <glyph glyph-name="uni0326" unicode="̦" +d="M-623 -446l201 335h215l-305 -335h-111z" /> + <glyph glyph-name="uni0327" unicode="̧" +d="M-518 -504q-66 0 -109.5 38.5t-53.5 92.5l107 37q-2 -29 15.5 -47t48.5 -18q48 0 85.5 32t48.5 78t-26 78.5t-124 32.5h-48l134 180h123l-104 -117q90 -4 128 -59.5t20 -134.5q-19 -78 -86.5 -135.5t-158.5 -57.5z" /> + <glyph glyph-name="uni0328" unicode="̨" +d="M-488 -451q-93 0 -140.5 61t-26.5 159q12 51 45 94t74.5 70.5t76.5 43.5t66 25l125 -3l-1 -1q-134 -49 -213 -130q-53 -53 -66 -112q-10 -45 6 -69t48 -24q81 0 145 69l83 -75q-97 -108 -222 -108z" /> + <glyph glyph-name="pi" unicode="π" horiz-adv-x="994" +d="M720 -20q-95 0 -140 71.5t-24 165.5l146 632h-281l-196 -849h-150l195 849h-82l34 150h747l-34 -150h-82l-148 -640q-24 -103 38 -103q26 0 63 22l24 -121q-49 -27 -110 -27z" /> + <glyph glyph-name="uni0483" unicode="҃" +d="M-691 1547l60 261h675l32 137h130l-57 -245h-683l-35 -153h-122z" /> + <glyph glyph-name="Wgrave" unicode="Ẁ" horiz-adv-x="1973" +d="M1154 1511l-192 291h185l150 -291h-143zM356 0l-71 1413h159l52 -1219l616 1137h127l89 -1137l616 1219h167l-725 -1413h-174l-87 1076l-596 -1076h-173z" /> + <glyph glyph-name="wgrave" unicode="ẁ" horiz-adv-x="1419" +d="M785 1122l-192 291h185l150 -291h-143zM213 -1l-48 1000h156l18 -802l415 802h138l42 -800l390 800h161l-511 -999h-146l-43 811l-427 -812h-145z" /> + <glyph glyph-name="Wacute" unicode="Ẃ" horiz-adv-x="1973" +d="M1125 1513l285 289h197l-343 -289h-139zM356 0l-71 1413h159l52 -1219l616 1137h127l89 -1137l616 1219h167l-725 -1413h-174l-87 1076l-596 -1076h-173z" /> + <glyph glyph-name="wacute" unicode="ẃ" horiz-adv-x="1419" +d="M756 1124l285 289h197l-343 -289h-139zM213 -1l-48 1000h156l18 -802l415 802h138l42 -800l390 800h161l-511 -999h-146l-43 811l-427 -812h-145z" /> + <glyph glyph-name="Wdieresis" unicode="Ẅ" horiz-adv-x="1973" +d="M992 1610l44 192h169l-45 -192h-168zM1328 1610l44 192h169l-44 -192h-169zM356 0l-71 1413h159l52 -1219l616 1137h127l89 -1137l616 1219h167l-725 -1413h-174l-87 1076l-596 -1076h-173z" /> + <glyph glyph-name="wdieresis" unicode="ẅ" horiz-adv-x="1419" +d="M623 1221l44 192h169l-45 -192h-168zM959 1221l44 192h169l-44 -192h-169zM213 -1l-48 1000h156l18 -802l415 802h138l42 -800l390 800h161l-511 -999h-146l-43 811l-427 -812h-145z" /> + <glyph glyph-name="uni1EA4" unicode="Ấ" horiz-adv-x="1306" +d="M893 1952l285 289h197l-343 -289h-139zM558 1512l410 355l247 -355h-156l-122 186l-213 -186h-166zM-52 0l856 1413h122l202 -1413h-167l-38 307h-621l-178 -307h-176zM389 452h514l-85 728z" /> + <glyph glyph-name="uni1EA5" unicode="ấ" horiz-adv-x="1129" +d="M1198 1827l-343 -289h-139l285 289h197zM760 1284l-213 -186h-166l410 355l247 -355h-156zM888 858l36 141h149l-229 -999h-146l25 126q-140 -146 -334 -146q-96 0 -165.5 42.5t-103 115t-41.5 169.5t20 207q50 217 187.5 361.5t318.5 144.5q209 0 283 -162zM824 514 +q19 73 17 139.5t-20.5 117.5t-66 81t-119.5 30q-75 0 -141 -32t-113.5 -88t-81.5 -126t-52 -151q-20 -73 -17.5 -140t21.5 -118t66.5 -81t117.5 -30q149 0 249.5 113t139.5 285z" /> + <glyph glyph-name="uni1EA6" unicode="Ầ" horiz-adv-x="1306" +d="M922 1950l-192 291h185l150 -291h-143zM558 1512l410 355l247 -355h-156l-122 186l-213 -186h-166zM-52 0l856 1413h122l202 -1413h-167l-38 307h-621l-178 -307h-176zM389 452h514l-85 728z" /> + <glyph glyph-name="uni1EA7" unicode="ầ" horiz-adv-x="1129" +d="M888 1536h-143l-192 291h185zM760 1284l-213 -186h-166l410 355l247 -355h-156zM924 999h149l-229 -999h-146l25 126q-140 -146 -334 -146q-96 0 -165.5 42.5t-103 115t-41.5 169.5t20 207q50 217 187.5 361.5t318.5 144.5q209 0 283 -162zM824 514q19 73 17 139.5 +t-20.5 117.5t-66 81t-119.5 30q-75 0 -141 -32t-113.5 -88t-81.5 -126t-52 -151q-20 -73 -17.5 -140t21.5 -118t66.5 -81t117.5 -30q149 0 249.5 113t139.5 285z" /> + <glyph glyph-name="uni1EAA" unicode="Ẫ" horiz-adv-x="1306" +d="M1128 1974q-39 0 -68.5 16t-46.5 39t-31 46.5t-31 39.5t-38 16q-39 0 -69 -40t-44 -97h-101q26 118 81 184t132 66q42 0 73 -16.5t48 -40t30.5 -46.5t29.5 -39.5t36 -16.5q40 0 71.5 42.5t48.5 110.5h106q-59 -264 -227 -264zM558 1512l410 355l247 -355h-156l-122 186 +l-213 -186h-166zM-52 0l856 1413h122l202 -1413h-167l-38 307h-621l-178 -307h-176zM389 452h514l-85 728z" /> + <glyph glyph-name="uni1EAB" unicode="ẫ" horiz-adv-x="1129" +d="M1072 1824h106q-59 -264 -227 -264q-39 0 -68.5 16t-46.5 39t-31 46.5t-31 39.5t-38 16q-39 0 -69 -40t-44 -97h-101q26 118 81 184t132 66q42 0 73 -16.5t48 -40t30.5 -46.5t29.5 -39.5t36 -16.5q40 0 71.5 42.5t48.5 110.5zM882 1098l-122 186l-213 -186h-166l410 355 +l247 -355h-156zM888 858l36 141h149l-229 -999h-146l25 126q-140 -146 -334 -146q-96 0 -165.5 42.5t-103 115t-41.5 169.5t20 207q50 217 187.5 361.5t318.5 144.5q209 0 283 -162zM824 514q19 73 17 139.5t-20.5 117.5t-66 81t-119.5 30q-75 0 -141 -32t-113.5 -88 +t-81.5 -126t-52 -151q-20 -73 -17.5 -140t21.5 -118t66.5 -81t117.5 -30q149 0 249.5 113t139.5 285z" /> + <glyph glyph-name="uni1EAE" unicode="Ắ" horiz-adv-x="1306" +d="M894 1952l285 289h197l-343 -289h-139zM912 1557q-142 0 -213.5 73t-41.5 197h132q-16 -73 20.5 -114.5t105.5 -41.5q75 0 139 45t80 111h132q-29 -133 -124.5 -201.5t-229.5 -68.5zM-52 0l856 1413h122l202 -1413h-167l-38 307h-621l-178 -307h-176zM389 452h514 +l-85 728z" /> + <glyph glyph-name="uni1EAF" unicode="ắ" horiz-adv-x="1129" +d="M1199 1827l-343 -289h-139l285 289h197zM738 1257q75 0 139 45t80 111h132q-29 -133 -124.5 -201.5t-229.5 -68.5q-142 0 -213.5 73t-41.5 197h132q-16 -73 20.5 -114.5t105.5 -41.5zM888 858l36 141h149l-229 -999h-146l25 126q-140 -146 -334 -146q-96 0 -165.5 42.5 +t-103 115t-41.5 169.5t20 207q50 217 187.5 361.5t318.5 144.5q209 0 283 -162zM824 514q19 73 17 139.5t-20.5 117.5t-66 81t-119.5 30q-75 0 -141 -32t-113.5 -88t-81.5 -126t-52 -151q-20 -73 -17.5 -140t21.5 -118t66.5 -81t117.5 -30q149 0 249.5 113t139.5 285z" /> + <glyph glyph-name="uni1EB0" unicode="Ằ" horiz-adv-x="1306" +d="M923 1950l-192 291h185l150 -291h-143zM912 1557q-142 0 -213.5 73t-41.5 197h132q-16 -73 20.5 -114.5t105.5 -41.5q75 0 139 45t80 111h132q-29 -133 -124.5 -201.5t-229.5 -68.5zM-52 0l856 1413h122l202 -1413h-167l-38 307h-621l-178 -307h-176zM389 452h514 +l-85 728z" /> + <glyph glyph-name="uni1EB1" unicode="ằ" horiz-adv-x="1129" +d="M889 1536h-143l-192 291h185zM735 1143q-142 0 -213.5 73t-41.5 197h132q-16 -73 20.5 -114.5t105.5 -41.5q75 0 139 45t80 111h132q-29 -133 -124.5 -201.5t-229.5 -68.5zM888 858l36 141h149l-229 -999h-146l25 126q-140 -146 -334 -146q-96 0 -165.5 42.5t-103 115 +t-41.5 169.5t20 207q50 217 187.5 361.5t318.5 144.5q209 0 283 -162zM824 514q19 73 17 139.5t-20.5 117.5t-66 81t-119.5 30q-75 0 -141 -32t-113.5 -88t-81.5 -126t-52 -151q-20 -73 -17.5 -140t21.5 -118t66.5 -81t117.5 -30q149 0 249.5 113t139.5 285z" /> + <glyph glyph-name="uni1EB4" unicode="Ẵ" horiz-adv-x="1306" +d="M1129 1974q-39 0 -68.5 16t-46.5 39t-31 46.5t-31 39.5t-38 16q-39 0 -69 -40t-44 -97h-101q26 118 81 184t132 66q42 0 73 -16.5t48 -40t30.5 -46.5t29.5 -39.5t36 -16.5q40 0 71.5 42.5t48.5 110.5h106q-59 -264 -227 -264zM912 1557q-142 0 -213.5 73t-41.5 197h132 +q-16 -73 20.5 -114.5t105.5 -41.5q75 0 139 45t80 111h132q-29 -133 -124.5 -201.5t-229.5 -68.5zM-52 0l856 1413h122l202 -1413h-167l-38 307h-621l-178 -307h-176zM389 452h514l-85 728z" /> + <glyph glyph-name="uni1EB5" unicode="ẵ" horiz-adv-x="1129" +d="M737 1717q-39 0 -69 -40t-44 -97h-101q26 118 81 184t132 66q42 0 73 -16.5t48 -40t30.5 -46.5t29.5 -39.5t36 -16.5q40 0 71.5 42.5t48.5 110.5h106q-59 -264 -227 -264q-39 0 -68.5 16t-46.5 39t-31 46.5t-31 39.5t-38 16zM738 1257q75 0 139 45t80 111h132 +q-29 -133 -124.5 -201.5t-229.5 -68.5q-142 0 -213.5 73t-41.5 197h132q-16 -73 20.5 -114.5t105.5 -41.5zM888 858l36 141h149l-229 -999h-146l25 126q-140 -146 -334 -146q-96 0 -165.5 42.5t-103 115t-41.5 169.5t20 207q50 217 187.5 361.5t318.5 144.5q209 0 283 -162z +M824 514q19 73 17 139.5t-20.5 117.5t-66 81t-119.5 30q-75 0 -141 -32t-113.5 -88t-81.5 -126t-52 -151q-20 -73 -17.5 -140t21.5 -118t66.5 -81t117.5 -30q149 0 249.5 113t139.5 285z" /> + <glyph glyph-name="uni1EBC" unicode="Ẽ" horiz-adv-x="1237" +d="M1043 1560q-39 0 -68.5 16t-46.5 39t-31 46.5t-31 39.5t-38 16q-39 0 -69 -40t-44 -97h-101q26 118 81 184t132 66q42 0 73 -16.5t48 -40t30.5 -46.5t29.5 -39.5t36 -16.5q40 0 71.5 42.5t48.5 110.5h106q-59 -264 -227 -264zM97 0l326 1413h915l-32 -137h-756l-115 -502 +h657l-32 -133h-657l-115 -496h757l-32 -145h-916z" /> + <glyph glyph-name="uni1EBD" unicode="ẽ" horiz-adv-x="1036" +d="M792 1146q-39 0 -68.5 16t-46.5 39t-31 46.5t-31 39.5t-38 16q-39 0 -69 -40t-44 -97h-101q26 118 81 184t132 66q42 0 73 -16.5t48 -40t30.5 -46.5t29.5 -39.5t36 -16.5q40 0 71.5 42.5t48.5 110.5h106q-59 -264 -227 -264zM434 -12q-111 0 -190.5 41t-118 111 +t-48.5 165t17 203q23 100 70 189.5t114 160.5t158.5 112.5t193.5 41.5q97 0 166.5 -30t107 -80t53 -120t11 -146t-25.5 -163q-6 -20 -10 -31h-697q-18 -66 -12.5 -125t28.5 -102.5t71.5 -69t116.5 -25.5q97 0 171 24.5t142 84.5l92 -92q-99 -81 -195.5 -115t-214.5 -34z +M263 564h561q34 150 -15.5 232.5t-186.5 82.5q-132 0 -227 -90t-132 -225z" /> + <glyph glyph-name="uni1EBE" unicode="Ế" horiz-adv-x="1237" +d="M904 1952l285 289h197l-343 -289h-139zM569 1512l410 355l247 -355h-156l-122 186l-213 -186h-166zM97 0l326 1413h915l-32 -137h-756l-115 -502h657l-32 -133h-657l-115 -496h757l-32 -145h-916z" /> + <glyph glyph-name="uni1EBF" unicode="ế" horiz-adv-x="1036" +d="M653 1538l285 289h197l-343 -289h-139zM318 1098l410 355l247 -355h-156l-122 186l-213 -186h-166zM434 -12q-111 0 -190.5 41t-118 111t-48.5 165t17 203q23 100 70 189.5t114 160.5t158.5 112.5t193.5 41.5q97 0 166.5 -30t107 -80t53 -120t11 -146t-25.5 -163 +q-6 -20 -10 -31h-697q-18 -66 -12.5 -125t28.5 -102.5t71.5 -69t116.5 -25.5q97 0 171 24.5t142 84.5l92 -92q-99 -81 -195.5 -115t-214.5 -34zM263 564h561q34 150 -15.5 232.5t-186.5 82.5q-132 0 -227 -90t-132 -225z" /> + <glyph glyph-name="uni1EC0" unicode="Ề" horiz-adv-x="1237" +d="M933 1950l-192 291h185l150 -291h-143zM569 1512l410 355l247 -355h-156l-122 186l-213 -186h-166zM97 0l326 1413h915l-32 -137h-756l-115 -502h657l-32 -133h-657l-115 -496h757l-32 -145h-916z" /> + <glyph glyph-name="uni1EC1" unicode="ề" horiz-adv-x="1036" +d="M682 1536l-192 291h185l150 -291h-143zM318 1098l410 355l247 -355h-156l-122 186l-213 -186h-166zM434 -12q-111 0 -190.5 41t-118 111t-48.5 165t17 203q23 100 70 189.5t114 160.5t158.5 112.5t193.5 41.5q97 0 166.5 -30t107 -80t53 -120t11 -146t-25.5 -163 +q-6 -20 -10 -31h-697q-18 -66 -12.5 -125t28.5 -102.5t71.5 -69t116.5 -25.5q97 0 171 24.5t142 84.5l92 -92q-99 -81 -195.5 -115t-214.5 -34zM263 564h561q34 150 -15.5 232.5t-186.5 82.5q-132 0 -227 -90t-132 -225z" /> + <glyph glyph-name="uni1EC4" unicode="Ễ" horiz-adv-x="1237" +d="M1139 1974q-39 0 -68.5 16t-46.5 39t-31 46.5t-31 39.5t-38 16q-39 0 -69 -40t-44 -97h-101q26 118 81 184t132 66q42 0 73 -16.5t48 -40t30.5 -46.5t29.5 -39.5t36 -16.5q40 0 71.5 42.5t48.5 110.5h106q-59 -264 -227 -264zM569 1512l410 355l247 -355h-156l-122 186 +l-213 -186h-166zM97 0l326 1413h915l-32 -137h-756l-115 -502h657l-32 -133h-657l-115 -496h757l-32 -145h-916z" /> + <glyph glyph-name="uni1EC5" unicode="ễ" horiz-adv-x="1036" +d="M888 1560q-39 0 -68.5 16t-46.5 39t-31 46.5t-31 39.5t-38 16q-39 0 -69 -40t-44 -97h-101q26 118 81 184t132 66q42 0 73 -16.5t48 -40t30.5 -46.5t29.5 -39.5t36 -16.5q40 0 71.5 42.5t48.5 110.5h106q-59 -264 -227 -264zM318 1098l410 355l247 -355h-156l-122 186 +l-213 -186h-166zM434 -12q-111 0 -190.5 41t-118 111t-48.5 165t17 203q23 100 70 189.5t114 160.5t158.5 112.5t193.5 41.5q97 0 166.5 -30t107 -80t53 -120t11 -146t-25.5 -163q-6 -20 -10 -31h-697q-18 -66 -12.5 -125t28.5 -102.5t71.5 -69t116.5 -25.5q97 0 171 24.5 +t142 84.5l92 -92q-99 -81 -195.5 -115t-214.5 -34zM263 564h561q34 150 -15.5 232.5t-186.5 82.5q-132 0 -227 -90t-132 -225z" /> + <glyph glyph-name="uni1ED0" unicode="Ố" horiz-adv-x="1515" +d="M994 1952l285 289h197l-343 -289h-139zM659 1512l410 355l247 -355h-156l-122 186l-213 -186h-166zM648 -20q-107 0 -193 27t-144.5 76.5t-97.5 117.5t-54.5 151t-11.5 175.5t27 193.5q34 147 101.5 274t165 226t231.5 156t288 57q128 0 226.5 -39t158 -107.5t90 -162 +t30 -203t-28.5 -230.5q-34 -147 -101.5 -274t-165 -225.5t-232 -155.5t-289.5 -57zM657 126q102 0 193 32.5t161 87.5t126 131.5t93.5 162.5t59.5 181q21 91 23.5 172.5t-17 154t-61.5 125.5t-115 83.5t-172 30.5q-124 0 -231.5 -49t-184 -133t-129.5 -188.5t-80 -224.5 +q-21 -91 -23.5 -172.5t16.5 -154t60 -125.5t112.5 -83.5t168.5 -30.5z" /> + <glyph glyph-name="uni1ED1" unicode="ố" horiz-adv-x="1119" +d="M700 1538l285 289h197l-343 -289h-139zM365 1098l410 355l247 -355h-156l-122 186l-213 -186h-166zM450 -20q-106 0 -188 42t-127 114t-60 168t13 206q49 212 211 357t365 145q84 0 154.5 -27t117.5 -75.5t76 -115.5t31.5 -146t-15.5 -167q-48 -211 -212 -356t-366 -145z +M458 112q83 0 153 32.5t120 89t84 126.5t53 150q20 72 17 138.5t-23.5 118t-73 82t-131.5 30.5q-81 0 -151.5 -32.5t-120 -89t-84 -126t-53.5 -150.5q-19 -72 -16 -138.5t23.5 -118t72.5 -82t130 -30.5z" /> + <glyph glyph-name="uni1ED2" unicode="Ồ" horiz-adv-x="1515" +d="M1023 1950l-192 291h185l150 -291h-143zM659 1512l410 355l247 -355h-156l-122 186l-213 -186h-166zM648 -20q-107 0 -193 27t-144.5 76.5t-97.5 117.5t-54.5 151t-11.5 175.5t27 193.5q34 147 101.5 274t165 226t231.5 156t288 57q128 0 226.5 -39t158 -107.5t90 -162 +t30 -203t-28.5 -230.5q-34 -147 -101.5 -274t-165 -225.5t-232 -155.5t-289.5 -57zM657 126q102 0 193 32.5t161 87.5t126 131.5t93.5 162.5t59.5 181q21 91 23.5 172.5t-17 154t-61.5 125.5t-115 83.5t-172 30.5q-124 0 -231.5 -49t-184 -133t-129.5 -188.5t-80 -224.5 +q-21 -91 -23.5 -172.5t16.5 -154t60 -125.5t112.5 -83.5t168.5 -30.5z" /> + <glyph glyph-name="uni1ED3" unicode="ồ" horiz-adv-x="1119" +d="M729 1536l-192 291h185l150 -291h-143zM365 1098l410 355l247 -355h-156l-122 186l-213 -186h-166zM450 -20q-106 0 -188 42t-127 114t-60 168t13 206q49 212 211 357t365 145q84 0 154.5 -27t117.5 -75.5t76 -115.5t31.5 -146t-15.5 -167q-48 -211 -212 -356t-366 -145z +M458 112q83 0 153 32.5t120 89t84 126.5t53 150q20 72 17 138.5t-23.5 118t-73 82t-131.5 30.5q-81 0 -151.5 -32.5t-120 -89t-84 -126t-53.5 -150.5q-19 -72 -16 -138.5t23.5 -118t72.5 -82t130 -30.5z" /> + <glyph glyph-name="uni1ED6" unicode="Ỗ" horiz-adv-x="1515" +d="M1229 1974q-39 0 -68.5 16t-46.5 39t-31 46.5t-31 39.5t-38 16q-39 0 -69 -40t-44 -97h-101q26 118 81 184t132 66q42 0 73 -16.5t48 -40t30.5 -46.5t29.5 -39.5t36 -16.5q40 0 71.5 42.5t48.5 110.5h106q-59 -264 -227 -264zM659 1512l410 355l247 -355h-156l-122 186 +l-213 -186h-166zM648 -20q-107 0 -193 27t-144.5 76.5t-97.5 117.5t-54.5 151t-11.5 175.5t27 193.5q34 147 101.5 274t165 226t231.5 156t288 57q128 0 226.5 -39t158 -107.5t90 -162t30 -203t-28.5 -230.5q-34 -147 -101.5 -274t-165 -225.5t-232 -155.5t-289.5 -57z +M657 126q102 0 193 32.5t161 87.5t126 131.5t93.5 162.5t59.5 181q21 91 23.5 172.5t-17 154t-61.5 125.5t-115 83.5t-172 30.5q-124 0 -231.5 -49t-184 -133t-129.5 -188.5t-80 -224.5q-21 -91 -23.5 -172.5t16.5 -154t60 -125.5t112.5 -83.5t168.5 -30.5z" /> + <glyph glyph-name="uni1ED7" unicode="ỗ" horiz-adv-x="1119" +d="M935 1560q-39 0 -68.5 16t-46.5 39t-31 46.5t-31 39.5t-38 16q-39 0 -69 -40t-44 -97h-101q26 118 81 184t132 66q42 0 73 -16.5t48 -40t30.5 -46.5t29.5 -39.5t36 -16.5q40 0 71.5 42.5t48.5 110.5h106q-59 -264 -227 -264zM365 1098l410 355l247 -355h-156l-122 186 +l-213 -186h-166zM450 -20q-106 0 -188 42t-127 114t-60 168t13 206q49 212 211 357t365 145q84 0 154.5 -27t117.5 -75.5t76 -115.5t31.5 -146t-15.5 -167q-48 -211 -212 -356t-366 -145zM458 112q83 0 153 32.5t120 89t84 126.5t53 150q20 72 17 138.5t-23.5 118t-73 82 +t-131.5 30.5q-81 0 -151.5 -32.5t-120 -89t-84 -126t-53.5 -150.5q-19 -72 -16 -138.5t23.5 -118t72.5 -82t130 -30.5z" /> + <glyph glyph-name="Ygrave" unicode="Ỳ" horiz-adv-x="1331" +d="M835 1536l-192 291h185l150 -291h-143zM473 0l129 553l-339 860h180l266 -702l595 702h187l-735 -860l-129 -553h-154z" /> + <glyph glyph-name="ygrave" unicode="ỳ" horiz-adv-x="975" +d="M556 1122l-192 291h185l150 -291h-143zM29 -430l275 435l-154 994h163l101 -817l475 817h166l-865 -1429h-161z" /> + <glyph glyph-name="uni1EF8" unicode="Ỹ" horiz-adv-x="1331" +d="M1041 1560q-39 0 -68.5 16t-46.5 39t-31 46.5t-31 39.5t-38 16q-39 0 -69 -40t-44 -97h-101q26 118 81 184t132 66q42 0 73 -16.5t48 -40t30.5 -46.5t29.5 -39.5t36 -16.5q40 0 71.5 42.5t48.5 110.5h106q-59 -264 -227 -264zM473 0l129 553l-339 860h180l266 -702 +l595 702h187l-735 -860l-129 -553h-154z" /> + <glyph glyph-name="uni1EF9" unicode="ỹ" horiz-adv-x="975" +d="M762 1146q-39 0 -68.5 16t-46.5 39t-31 46.5t-31 39.5t-38 16q-39 0 -69 -40t-44 -97h-101q26 118 81 184t132 66q42 0 73 -16.5t48 -40t30.5 -46.5t29.5 -39.5t36 -16.5q40 0 71.5 42.5t48.5 110.5h106q-59 -264 -227 -264zM29 -430l275 435l-154 994h163l101 -817 +l475 817h166l-865 -1429h-161z" /> + <glyph glyph-name="endash" unicode="–" horiz-adv-x="1023" +d="M181 578l27 114h697l-26 -114h-698z" /> + <glyph glyph-name="emdash" unicode="—" horiz-adv-x="1678" +d="M181 578l27 114h1353l-27 -114h-1353z" /> + <glyph glyph-name="uni2015" unicode="―" horiz-adv-x="1514" +d="M181 578l27 114h1189l-27 -114h-1189z" /> + <glyph glyph-name="quoteleft" unicode="‘" horiz-adv-x="565" +d="M426 927l-109 486h193l6 -486h-90z" /> + <glyph glyph-name="quoteright" unicode="’" horiz-adv-x="564" +d="M240 927l233 486h199l-335 -486h-97z" /> + <glyph glyph-name="quotesinglbase" unicode="‚" horiz-adv-x="568" +d="M-24 -225l235 489h199l-335 -489h-99z" /> + <glyph glyph-name="quotedblleft" unicode="“" horiz-adv-x="872" +d="M426 927l-109 486h193l6 -486h-90zM736 927l-110 486h191l8 -486h-89z" /> + <glyph glyph-name="quotedblright" unicode="”" horiz-adv-x="872" +d="M240 927l233 486h199l-335 -486h-97zM549 927l235 486h197l-333 -486h-99z" /> + <glyph glyph-name="quotedblbase" unicode="„" horiz-adv-x="881" +d="M-24 -225l235 489h199l-335 -489h-99zM292 -225l234 489h199l-334 -489h-99z" /> + <glyph glyph-name="dagger" unicode="†" horiz-adv-x="806" +d="M166 -205l242 1050h-222l35 149h221l97 419h150l-96 -419h221l-35 -149h-221l-241 -1050h-151z" /> + <glyph glyph-name="daggerdbl" unicode="‡" horiz-adv-x="878" +d="M202 -205l96 418h-221l35 152h221l111 480h-222l35 149h221l97 419h150l-96 -419h221l-34 -149h-222l-110 -480h221l-35 -152h-221l-96 -418h-151z" /> + <glyph glyph-name="bullet" unicode="•" horiz-adv-x="830" +d="M368 244q-103 0 -159 74t-33 178q21 92 102.5 157.5t174.5 65.5q103 0 159.5 -74t33.5 -178q-23 -93 -103.5 -158t-174.5 -65z" /> + <glyph glyph-name="uni2023" unicode="‣" horiz-adv-x="802" +d="M181 237l114 504l389 -251z" /> + <glyph glyph-name="twodotenleader" unicode="‥" horiz-adv-x="1082" +d="M120 0l45 194h198l-44 -194h-199zM534 0l45 194h198l-45 -194h-198z" /> + <glyph glyph-name="ellipsis" unicode="…" horiz-adv-x="1496" +d="M120 0l45 194h198l-44 -194h-199zM534 0l45 194h198l-45 -194h-198zM948 0l44 194h199l-45 -194h-198z" /> + <glyph glyph-name="perthousand" unicode="‰" horiz-adv-x="2169" +d="M461 804q-57 0 -98 21t-62 55t-30 78t-7 88t12 87q12 51 35 100.5t59 97t90 76.5t117 29t108 -29.5t63.5 -76.5t23 -107t-11.5 -120q-18 -76 -56 -141.5t-102.5 -111.5t-140.5 -46zM223 2l1076 1405h137l-1076 -1405h-137zM458 904q48 0 90.5 36.5t68.5 87t39 106.5 +q9 48 9.5 92.5t-23 76t-67.5 31.5q-71 0 -125 -69.5t-75 -160.5q-9 -48 -9.5 -92.5t23.5 -76t69 -31.5zM1103 3q-56 0 -97 21t-62 54.5t-30.5 77.5t-7.5 87.5t12 87.5q11 50 34 99.5t59 96.5t90 76t117 29t107.5 -29t63.5 -76t24 -106.5t-12 -120.5q-28 -120 -107 -208.5 +t-191 -88.5zM1695 3q-57 0 -98 21t-62 54.5t-30.5 77.5t-7.5 87.5t12 87.5q12 51 35 100t58.5 96t89.5 76t118 29q63 0 108 -29t64 -76t24 -106.5t-12 -120.5q-27 -119 -107 -208t-192 -89zM1101 103q70 0 124 70.5t73 157.5q9 49 10 93t-22 75t-67 31q-73 0 -127 -68.5 +t-74 -159.5q-9 -48 -9.5 -92t23 -75.5t69.5 -31.5zM1693 103q70 0 123 70.5t72 157.5q9 49 9.5 93t-22 75t-65.5 31q-72 0 -125 -68.5t-74 -159.5q-9 -48 -9.5 -92t23 -75.5t68.5 -31.5z" /> + <glyph glyph-name="uni2031" unicode="‱" horiz-adv-x="2745" +d="M461 804q-57 0 -98 21.5t-62 55t-30 78t-7 88t12 87.5q12 51 34.5 100t58.5 96.5t90 76.5t118 29q62 0 106.5 -29.5t63.5 -76.5t23.5 -107t-11.5 -120q-29 -120 -109 -209.5t-189 -89.5zM223 2l1076 1403h135l-1074 -1403h-137zM458 904q48 0 90.5 36.5t68.5 87t39 106.5 +q9 49 9.5 94t-22.5 76t-66 31q-74 0 -128.5 -69.5t-74.5 -159.5q-9 -49 -9.5 -94t23.5 -76.5t70 -31.5zM1103 3q-56 0 -97 21t-62 54.5t-30.5 77.5t-7.5 87.5t12 87.5q11 50 34 99.5t59 96.5t90 76t117 29t107 -29.5t63 -76.5t23.5 -106.5t-11.5 -119.5q-27 -119 -107 -208 +t-190 -89zM1693 3q-56 0 -97 21t-62.5 54.5t-31 77.5t-7.5 87.5t12 87.5q12 51 35 100t59 96t90 76t117 29q64 0 108.5 -29.5t62.5 -76.5t22.5 -106.5t-12.5 -119.5q-27 -119 -106 -208t-190 -89zM2274 3q-57 0 -98 21t-62 54.5t-30.5 77.5t-7.5 87.5t12 87.5q12 51 35 100 +t59 96t90 76t117 29t107.5 -29.5t63 -76.5t23 -106.5t-12.5 -119.5q-13 -56 -38.5 -107.5t-62 -94.5t-87.5 -69t-108 -26zM1101 101q70 0 124 71t73 159q9 49 10 93.5t-22 75.5t-67 31q-74 0 -128 -68.5t-75 -160.5q-9 -48 -9 -92.5t24 -76.5t70 -32zM1690 101q71 0 125 71 +t73 159q9 49 9.5 93.5t-22.5 75.5t-67 31q-50 0 -93.5 -35.5t-69.5 -85.5t-39 -108q-9 -48 -9.5 -92.5t23.5 -76.5t70 -32zM2271 101q71 0 125 71t73 159q9 49 9.5 93.5t-22.5 75.5t-67 31q-74 0 -128 -69t-74 -160q-9 -48 -9.5 -92.5t23.5 -76.5t70 -32z" /> + <glyph glyph-name="guilsinglleft" unicode="‹" horiz-adv-x="608" +d="M368 185l-296 327l443 325l-34 -162l-233 -163l154 -165z" /> + <glyph glyph-name="guilsinglright" unicode="›" horiz-adv-x="609" +d="M95 185l34 162l233 165l-153 163l33 162l296 -325z" /> + <glyph glyph-name="fraction" unicode="⁄" horiz-adv-x="750" +d="M-82 0l756 1413h158l-754 -1413h-160z" /> + <glyph glyph-name="Euro" unicode="€" horiz-adv-x="1275" +d="M666 -20q-104 0 -182.5 38t-124.5 106t-67 158t-16 199l-140 -7l84 128l66 7q4 21 25 112q13 64 30 110l-126 -7l85 124l85 7q96 221 247 351t345 130q234 0 333 -197l-120 -77q-28 74 -85.5 103.5t-140.5 29.5q-136 0 -251.5 -99.5t-187.5 -254.5l527 7l-84 -128 +l-497 -7q-26 -97 -29 -113q-5 -17 -22 -107l551 7l-84 -129l-476 -7q1 -157 65.5 -250.5t199.5 -93.5q177 0 296 149l80 -119q-170 -170 -386 -170z" /> + <glyph glyph-name="uni20B1" unicode="₱" horiz-adv-x="1316" +d="M1348 1074l-21 -92h-125q-47 -167 -185 -255.5t-339 -88.5h-244l-146 -638h-159l227 982h-98l21 92h98l78 339h390q188 0 289 -90.5t86 -248.5h128zM581 1272l-46 -198h530q11 96 -50.5 147t-189.5 51h-244zM700 779q126 0 214.5 51.5t127.5 151.5h-529l-47 -203h234z +" /> + <glyph glyph-name="uni20B3" unicode="₳" horiz-adv-x="1306" +d="M1260 636h-223l31 -216h141l-27 -113h-98l44 -307h-167l-38 307h-621l-178 -307h-176l186 307h-99l27 113h140l131 216h-220l25 113h264l402 664h122l95 -664h264zM827 1225l-278 -476h332zM918 420l-24 216h-411l-126 -216h561z" /> + <glyph glyph-name="uni20B4" unicode="₴" horiz-adv-x="1220" +d="M1121 1061q-12 -53 -35.5 -98t-60 -79.5t-72 -60.5t-88 -50.5t-91 -40t-99 -38.5t-94.5 -37h404l-22 -99h-561q-94 -76 -118 -184q-29 -125 30 -186t186 -61q137 0 254 75t163 210l137 -57q-48 -122 -140 -207.5t-199.5 -124.5t-224.5 -39q-95 0 -171.5 30t-124 84.5 +t-65 132.5t5.5 174q11 49 33.5 92.5t46 75.5t63 63.5t69 51t80.5 43.5t80.5 36t86 34.5t81.5 32.5h-361l23 98h524q94 71 117 172q20 88 -31.5 140.5t-139.5 52.5q-91 0 -177 -44t-145 -126l-105 94q175 213 434 213q166 0 256 -104t51 -269z" /> + <glyph glyph-name="uni20B8" unicode="₸" horiz-adv-x="1424" +d="M335 1281l31 130h1114l-30 -130h-1115zM519 0l229 993h-478l28 129h1114l-28 -129h-479l-229 -993h-157z" /> + <glyph glyph-name="uni20BD" unicode="₽" horiz-adv-x="1326" +d="M216 0l82 357h-175l31 135h174l35 149h-175l32 138h174l147 634h391q206 0 306 -108.5t56 -295.5q-41 -178 -180.5 -273t-347.5 -95h-246l-35 -149h383l-30 -135h-383l-82 -357h-157zM551 779h235q144 0 238.5 66.5t123.5 192.5q26 112 -35 173t-201 61h-246z" /> + <glyph glyph-name="uni2116" unicode="№" horiz-adv-x="2371" +d="M1518 565q-35 -152 -142.5 -267t-249.5 -149l-34 -149h-224l-54 205q-74 60 -101 160t0 219l-172 646l-285 -1230h-159l326 1413h220l166 -613q66 92 159.5 150t199.5 68l92 395h157l-94 -410q124 -41 177.5 -161.5t17.5 -276.5zM1141 900q-103 -19 -174 -99.5 +t-105 -195.5l93 -344q18 -7 36 -8zM1155 275q86 37 143.5 122t82.5 193q27 96 7 181.5t-92 116.5zM1434 127h700v-127h-700v127z" /> + <glyph glyph-name="trademark" unicode="™" horiz-adv-x="1295" +d="M383 877l108 467h-145l16 69h372l-16 -69h-146l-108 -467h-81zM672 877l125 536h98l46 -353l213 353h99l-125 -536h-81l95 403l-183 -322h-70l-39 330l-97 -411h-81z" /> + <glyph glyph-name="uni2126" unicode="Ω" horiz-adv-x="1676" +d="M66 0l31 132l349 3q-135 88 -192.5 249.5t-14.5 345.5q29 127 102.5 253t169.5 217q115 95 256.5 151t269.5 56q134 0 251 -62.5t183 -166.5q62 -80 81 -208.5t-13 -267.5q-41 -179 -162 -333.5t-287 -237.5l321 3l-31 -134h-509l26 136q179 52 318.5 221.5t194.5 402.5 +q21 91 11.5 182.5t-46.5 160.5q-59 77 -152.5 123.5t-192.5 46.5q-110 0 -228.5 -53t-207.5 -140q-74 -59 -132 -153t-81 -196q-47 -206 12 -367t208 -232l-26 -132h-509z" /> + <glyph glyph-name="arrowleft" unicode="←" horiz-adv-x="2194" +d="M1026 137l-896 502l896 496l66 -116l-635 -329h1636v-110h-1622l621 -330z" /> + <glyph glyph-name="arrowright" unicode="→" horiz-adv-x="2189" +d="M1217 137l-66 113l621 330h-1622v110h1634l-633 329l66 116l896 -496z" /> + <glyph glyph-name="partialdiff" unicode="∂" horiz-adv-x="1308" +d="M456 -11q-193 0 -281 126.5t-41 328.5q28 122 94 229.5t155 184.5t201 122t227 45q85 0 151.5 -32.5t104.5 -90.5q39 199 -17 298t-192 99q-185 0 -300 -170l-136 50q77 121 193.5 185t258.5 64q162 0 250 -86t98.5 -242.5t-37.5 -376.5q-34 -145 -97 -274t-153 -233.5 +t-214 -165.5t-265 -61zM474 125q177 0 321.5 139.5t190.5 339.5q30 132 -16.5 209t-172.5 77q-91 0 -179 -42.5t-154 -111t-113.5 -153t-67.5 -171.5q-30 -130 22 -208.5t169 -78.5z" /> + <glyph glyph-name="uni2206" unicode="∆" horiz-adv-x="1305" +d="M-11 0l876 1429l220 -1429h-1096zM221 134h702l-137 923z" /> + <glyph glyph-name="product" unicode="∏" horiz-adv-x="1335" +d="M152 0l295 1279h-82l31 134h966l-31 -134h-82l-295 -1279h-134l295 1279h-534l-295 -1279h-134z" /> + <glyph glyph-name="summation" unicode="∑" horiz-adv-x="1269" +d="M8 0l12 64l730 643l-429 642l12 64h1011l-30 -134h-766l398 -571l-658 -574h761l-30 -134h-1011z" /> + <glyph glyph-name="minus" unicode="−" horiz-adv-x="1192" +d="M271 571v114h699v-114h-699z" /> + <glyph glyph-name="radical" unicode="√" horiz-adv-x="1213" +d="M358 -174l-86 751h-150l31 134h243l43 -533l751 1238l119 -47z" /> + <glyph glyph-name="infinity" unicode="∞" horiz-adv-x="1910" +d="M594 354q-170 0 -266.5 104t-96.5 277t96 277t267 104q112 0 217.5 -62t187.5 -174q82 112 187.5 174t218.5 62q169 0 265 -104t96 -277q0 -172 -96 -276.5t-265 -104.5q-113 0 -218.5 62.5t-187.5 174.5q-83 -113 -188 -175t-217 -62zM624 480q84 0 167 69.5t137 185.5 +q-54 113 -137.5 184t-166.5 71q-112 0 -179.5 -68t-67.5 -187t67.5 -187t179.5 -68zM1374 480q110 0 177.5 68.5t67.5 186.5t-67.5 186.5t-177.5 68.5q-85 0 -168 -69.5t-138 -185.5q55 -114 139 -184.5t167 -70.5z" /> + <glyph glyph-name="integral" unicode="∫" horiz-adv-x="992" +d="M-118 -457l20 135q181 0 282.5 78t140.5 249l268 1160q30 127 121 206t199 79q107 0 192 -83l-104 -96q-37 44 -97 44q-57 0 -109.5 -43.5t-68.5 -118.5l-270 -1162q-50 -221 -200 -334.5t-374 -113.5z" /> + <glyph glyph-name="approxequal" unicode="≈" horiz-adv-x="1174" +d="M780 734q-45 0 -85 17.5t-69.5 43t-56.5 50.5t-58.5 42.5t-64.5 17.5q-97 0 -93 -145h-100q0 109 49 176.5t142 67.5q54 0 98.5 -17.5t74 -42t55.5 -49t54.5 -42t59.5 -17.5q104 0 104 164h106q0 -127 -56.5 -196.5t-159.5 -69.5zM782 389q-45 0 -85 18t-69.5 43 +t-57 50.5t-59.5 43.5t-65 18q-97 0 -93 -147h-100q0 109 49 177.5t142 68.5q54 0 98.5 -17.5t74 -42.5t55.5 -49.5t54.5 -42t59.5 -17.5q104 0 104 163h106q0 -126 -56 -196t-158 -70z" /> + <glyph glyph-name="notequal" unicode="≠" horiz-adv-x="1130" +d="M149 0l229 428h-163v141h237l111 206h-348v140h424l265 498h155l-266 -498h185v-140h-259l-110 -206h369v-141h-445l-227 -428h-157z" /> + <glyph glyph-name="lessequal" unicode="≤" horiz-adv-x="1361" +d="M1042 119l-899 503l899 500l68 -118l-717 -382l717 -385zM75 -114v114h1054v-114h-1054z" /> + <glyph glyph-name="greaterequal" unicode="≥" horiz-adv-x="1459" +d="M276 119l-68 118l717 385l-717 382l68 118l899 -500zM189 -114v114h1054v-114h-1054z" /> + <glyph glyph-name="lozenge" unicode="◊" horiz-adv-x="1127" +d="M370 0l-205 717l531 717h162l203 -717l-529 -717h-162zM478 150l420 567l-150 566l-420 -566z" /> + <glyph glyph-name="uniF8FF" unicode="" horiz-adv-x="1835" +d="M967 -61q-158 0 -301 61t-247 165t-165 247t-61 301t61 301t165 247t247 165t301 61t301 -61t247 -165t165 -247t61 -301t-61 -301t-165 -247t-247 -165t-301 -61zM967 10q143 0 273 55.5t224 149.5t149.5 224.5t55.5 273.5t-55.5 273t-149.5 224t-224 149.5t-273 55.5 +t-273.5 -55.5t-224.5 -149.5t-149.5 -224t-55.5 -273q0 -191 94 -353t256 -256t353 -94zM563 410q-14 0 -24.5 9.5t-10.5 24.5v537q0 15 10.5 26t24.5 11q16 0 26.5 -11t10.5 -26v-537q0 -15 -10.5 -24.5t-26.5 -9.5zM967 410q-16 0 -25.5 9.5t-9.5 24.5v537q0 15 10 26 +t25 11t24.5 -11t9.5 -26v-537q0 -15 -9.5 -24.5t-24.5 -9.5zM1368 410q-14 0 -22 10l-271 268q-8 11 -8 25q0 16 8 24l272 269q7 12 21 12t25.5 -12t11.5 -25q0 -14 -10 -25l-244 -243l244 -244q10 -10 10 -25q0 -13 -11.5 -23.5t-25.5 -10.5zM698 678q-15 0 -24.5 9.5 +t-9.5 25.5q0 15 9.5 25t24.5 10h133q16 0 26.5 -10t10.5 -25q0 -16 -10.5 -25.5t-26.5 -9.5h-133z" /> + <glyph glyph-name="i.loclTRK" horiz-adv-x="485" +d="M321 1221l45 192h172l-44 -192h-173zM54 0l229 999h148l-229 -999h-148z" /> + <glyph glyph-name="f_t" horiz-adv-x="1247" +d="M1013 877l-144 -620q-19 -79 4.5 -116.5t77.5 -37.5q48 0 113 28l-19 -133q-50 -18 -133 -18q-131 0 -175.5 78t-13.5 214l140 605h-413l-202 -877h-148l201 877h-182l28 120h182l45 193q28 119 113.5 181.5t202.5 62.5q86 0 161 -41l-58 -109q-53 26 -107 26 +q-62 0 -107.5 -35t-60.5 -103l-40 -173h413l51 225l182 140l-84 -365h256l-28 -122h-255z" /> + <hkern u1=" " u2="&" k="82" /> + <hkern u1="!" u2="ß" k="4" /> + <hkern u1=""" u2="ï" k="-72" /> + <hkern u1=""" u2="î" k="-72" /> + <hkern u1=""" u2="ì" k="-72" /> + <hkern u1="#" u2="9" k="33" /> + <hkern u1="#" u2="8" k="33" /> + <hkern u1="#" u2="7" k="16" /> + <hkern u1="#" u2="5" k="49" /> + <hkern u1="#" u2="4" k="66" /> + <hkern u1="#" u2="3" k="49" /> + <hkern u1="#" u2="2" k="16" /> + <hkern u1="#" u2="1" k="16" /> + <hkern u1="$" u2="9" k="16" /> + <hkern u1="$" u2="8" k="16" /> + <hkern u1="$" u2="7" k="16" /> + <hkern u1="$" u2="5" k="16" /> + <hkern u1="$" u2="4" k="16" /> + <hkern u1="$" u2="3" k="16" /> + <hkern u1="%" u2="1" k="16" /> + <hkern u1="&" u2="v" k="8" /> + <hkern u1="&" u2="V" k="145" /> + <hkern u1="&" u2="5" k="16" /> + <hkern u1="&" u2="4" k="16" /> + <hkern u1="&" u2="3" k="16" /> + <hkern u1="&" u2="1" k="16" /> + <hkern u1="&" u2=" " k="82" /> + <hkern u1="'" u2="ï" k="-72" /> + <hkern u1="'" u2="î" k="-72" /> + <hkern u1="'" u2="ì" k="-72" /> + <hkern u1="(" u2="ƒ" k="-104" /> + <hkern u1="(" u2="ï" k="-8" /> + <hkern u1="(" u2="î" k="-4" /> + <hkern u1="(" u2="ì" k="-49" /> + <hkern u1="(" u2="ß" k="6" /> + <hkern u1="(" u2="x" k="2" /> + <hkern u1="(" u2="v" k="43" /> + <hkern u1="(" u2="g" k="6" /> + <hkern u1="(" u2="X" k="-37" /> + <hkern u1="(" u2="V" k="-39" /> + <hkern u1="(" u2="−" k="82" /> + <hkern u1="(" u2="7" k="-66" /> + <hkern u1="(" u2="5" k="41" /> + <hkern u1="(" u2="4" k="33" /> + <hkern u1="(" u2="2" k="-8" /> + <hkern u1="(" u2="1" k="8" /> + <hkern u1="(" u2="+" k="104" /> + <hkern u1=")" u2="Ł" k="-37" /> + <hkern u1="*" u2="ƒ" k="12" /> + <hkern u1="*" u2="Ł" k="2" /> + <hkern u1="*" u2="ï" k="-10" /> + <hkern u1="*" u2="î" k="-45" /> + <hkern u1="*" u2="ì" k="-4" /> + <hkern u1="*" u2="x" k="-2" /> + <hkern u1="*" u2="v" k="-25" /> + <hkern u1="*" u2="X" k="2" /> + <hkern u1="*" u2="V" k="-41" /> + <hkern u1="*" u2="7" k="-66" /> + <hkern u1="*" u2="4" k="115" /> + <hkern u1="+" u2="X" k="27" /> + <hkern u1="+" u2="V" k="84" /> + <hkern u1="+" u2="9" k="16" /> + <hkern u1="+" u2="7" k="16" /> + <hkern u1="+" u2="3" k="33" /> + <hkern u1="+" u2="2" k="16" /> + <hkern u1="+" u2="1" k="49" /> + <hkern u1="+" u2=")" k="104" /> + <hkern u1="," u2="j" k="-4" /> + <hkern u1="," u2="g" k="23" /> + <hkern u1="." u2="g" k="23" /> + <hkern u1="/" u2="ƒ" k="25" /> + <hkern u1="/" u2="ž" k="94" /> + <hkern u1="/" u2="š" k="113" /> + <hkern u1="/" u2="ł" k="4" /> + <hkern u1="/" u2="Ł" k="6" /> + <hkern u1="/" u2="ö" k="45" /> + <hkern u1="/" u2="ò" k="41" /> + <hkern u1="/" u2="ð" k="193" /> + <hkern u1="/" u2="ï" k="-66" /> + <hkern u1="/" u2="î" k="-61" /> + <hkern u1="/" u2="í" k="18" /> + <hkern u1="/" u2="ì" k="-143" /> + <hkern u1="/" u2="ë" k="209" /> + <hkern u1="/" u2="è" k="209" /> + <hkern u1="/" u2="å" k="217" /> + <hkern u1="/" u2="ä" k="184" /> + <hkern u1="/" u2="ã" k="195" /> + <hkern u1="/" u2="â" k="209" /> + <hkern u1="/" u2="à" k="186" /> + <hkern u1="/" u2="ß" k="14" /> + <hkern u1="/" u2="x" k="41" /> + <hkern u1="/" u2="v" k="23" /> + <hkern u1="/" u2="X" k="-20" /> + <hkern u1="/" u2="V" k="-41" /> + <hkern u1="/" u2="9" k="33" /> + <hkern u1="/" u2="8" k="49" /> + <hkern u1="/" u2="7" k="-49" /> + <hkern u1="/" u2="5" k="33" /> + <hkern u1="/" u2="4" k="131" /> + <hkern u1="/" u2="2" k="33" /> + <hkern u1="/" u2="/" k="252" /> + <hkern u1="1" u2="≥" k="-16" /> + <hkern u1="1" u2="≠" k="-33" /> + <hkern u1="1" u2="≈" k="-33" /> + <hkern u1="1" u2="∞" k="-33" /> + <hkern u1="1" u2="÷" k="16" /> + <hkern u1="1" u2="°" k="16" /> + <hkern u1="1" u2="|" k="-16" /> + <hkern u1="1" u2=">" k="-49" /> + <hkern u1="1" u2="<" k="16" /> + <hkern u1="1" u2="7" k="-8" /> + <hkern u1="1" u2="2" k="-8" /> + <hkern u1="1" u2="%" k="16" /> + <hkern u1="1" u2="#" k="33" /> + <hkern u1="2" u2="≥" k="-16" /> + <hkern u1="2" u2="≠" k="-16" /> + <hkern u1="2" u2="≈" k="-33" /> + <hkern u1="2" u2="×" k="-16" /> + <hkern u1="2" u2="±" k="-16" /> + <hkern u1="2" u2="°" k="-16" /> + <hkern u1="2" u2="_" k="-16" /> + <hkern u1="2" u2="\" k="16" /> + <hkern u1="2" u2=">" k="-49" /> + <hkern u1="2" u2="4" k="25" /> + <hkern u1="2" u2="1" k="-16" /> + <hkern u1="3" u2="≥" k="-33" /> + <hkern u1="3" u2="≈" k="-33" /> + <hkern u1="3" u2="−" k="-16" /> + <hkern u1="3" u2="‰" k="16" /> + <hkern u1="3" u2="×" k="-16" /> + <hkern u1="3" u2="±" k="-16" /> + <hkern u1="3" u2="°" k="-16" /> + <hkern u1="3" u2="¦" k="-33" /> + <hkern u1="3" u2="~" k="-16" /> + <hkern u1="3" u2="|" k="-33" /> + <hkern u1="3" u2="_" k="16" /> + <hkern u1="3" u2=">" k="-49" /> + <hkern u1="3" u2="7" k="-16" /> + <hkern u1="3" u2="1" k="8" /> + <hkern u1="3" u2="/" k="16" /> + <hkern u1="3" u2="*" k="-16" /> + <hkern u1="3" u2="%" k="16" /> + <hkern u1="3" u2="#" k="33" /> + <hkern u1="4" u2="º" k="66" /> + <hkern u1="4" u2="ª" k="66" /> + <hkern u1="4" u2="≥" k="-49" /> + <hkern u1="4" u2="≤" k="-49" /> + <hkern u1="4" u2="≠" k="-16" /> + <hkern u1="4" u2="≈" k="-49" /> + <hkern u1="4" u2="∞" k="-16" /> + <hkern u1="4" u2="™" k="115" /> + <hkern u1="4" u2="‰" k="49" /> + <hkern u1="4" u2="×" k="-16" /> + <hkern u1="4" u2="±" k="-16" /> + <hkern u1="4" u2="°" k="16" /> + <hkern u1="4" u2="¦" k="-16" /> + <hkern u1="4" u2="~" k="-33" /> + <hkern u1="4" u2=">" k="-49" /> + <hkern u1="4" u2="=" k="-33" /> + <hkern u1="4" u2="7" k="8" /> + <hkern u1="4" u2="*" k="33" /> + <hkern u1="4" u2="%" k="16" /> + <hkern u1="5" u2="≥" k="-33" /> + <hkern u1="5" u2="≤" k="-16" /> + <hkern u1="5" u2="≠" k="-16" /> + <hkern u1="5" u2="≈" k="-33" /> + <hkern u1="5" u2="−" k="-16" /> + <hkern u1="5" u2="‰" k="16" /> + <hkern u1="5" u2="°" k="-16" /> + <hkern u1="5" u2="~" k="-16" /> + <hkern u1="5" u2="_" k="16" /> + <hkern u1="5" u2="@" k="8" /> + <hkern u1="5" u2=">" k="-33" /> + <hkern u1="5" u2="=" k="-16" /> + <hkern u1="5" u2="<" k="-16" /> + <hkern u1="5" u2="7" k="-8" /> + <hkern u1="5" u2="/" k="33" /> + <hkern u1="5" u2="%" k="16" /> + <hkern u1="6" u2="≈" k="-16" /> + <hkern u1="6" u2="−" k="-16" /> + <hkern u1="6" u2="‰" k="33" /> + <hkern u1="6" u2="~" k="-16" /> + <hkern u1="6" u2="_" k="33" /> + <hkern u1="6" u2="\" k="16" /> + <hkern u1="6" u2="@" k="16" /> + <hkern u1="6" u2=">" k="-16" /> + <hkern u1="6" u2="=" k="-16" /> + <hkern u1="6" u2="7" k="-8" /> + <hkern u1="6" u2="+" k="-16" /> + <hkern u1="6" u2="#" k="33" /> + <hkern u1="7" u2="≥" k="-33" /> + <hkern u1="7" u2="≠" k="16" /> + <hkern u1="7" u2="∞" k="16" /> + <hkern u1="7" u2="−" k="49" /> + <hkern u1="7" u2="™" k="-33" /> + <hkern u1="7" u2="‰" k="-16" /> + <hkern u1="7" u2="‡" k="-82" /> + <hkern u1="7" u2="†" k="-82" /> + <hkern u1="7" u2="÷" k="33" /> + <hkern u1="7" u2="¿" k="98" /> + <hkern u1="7" u2="·" k="66" /> + <hkern u1="7" u2="±" k="16" /> + <hkern u1="7" u2="°" k="-49" /> + <hkern u1="7" u2="¦" k="-33" /> + <hkern u1="7" u2="~" k="66" /> + <hkern u1="7" u2="|" k="-33" /> + <hkern u1="7" u2="_" k="147" /> + <hkern u1="7" u2="\" k="-49" /> + <hkern u1="7" u2="@" k="8" /> + <hkern u1="7" u2="?" k="-33" /> + <hkern u1="7" u2=">" k="-49" /> + <hkern u1="7" u2="=" k="-8" /> + <hkern u1="7" u2="<" k="49" /> + <hkern u1="7" u2="9" k="-16" /> + <hkern u1="7" u2="7" k="-49" /> + <hkern u1="7" u2="5" k="25" /> + <hkern u1="7" u2="4" k="90" /> + <hkern u1="7" u2="1" k="-8" /> + <hkern u1="7" u2="/" k="98" /> + <hkern u1="7" u2="+" k="82" /> + <hkern u1="7" u2="*" k="-33" /> + <hkern u1="7" u2="#" k="66" /> + <hkern u1="8" u2="≥" k="-16" /> + <hkern u1="8" u2="≠" k="-16" /> + <hkern u1="8" u2="≈" k="-33" /> + <hkern u1="8" u2="£" k="33" /> + <hkern u1="8" u2="_" k="16" /> + <hkern u1="8" u2="\" k="66" /> + <hkern u1="8" u2=">" k="-16" /> + <hkern u1="8" u2="&" k="16" /> + <hkern u1="8" u2="%" k="8" /> + <hkern u1="8" u2="#" k="16" /> + <hkern u1=";" u2="j" k="-4" /> + <hkern u1="<" u2="Ł" k="-2" /> + <hkern u1="<" u2="v" k="-8" /> + <hkern u1="<" u2="X" k="-2" /> + <hkern u1="<" u2="V" k="-2" /> + <hkern u1="<" u2="9" k="-49" /> + <hkern u1="<" u2="8" k="-49" /> + <hkern u1="<" u2="7" k="-115" /> + <hkern u1="<" u2="5" k="-33" /> + <hkern u1="<" u2="3" k="-16" /> + <hkern u1="<" u2="2" k="-49" /> + <hkern u1="<" u2="1" k="-49" /> + <hkern u1="=" u2="v" k="-2" /> + <hkern u1="=" u2="X" k="23" /> + <hkern u1="=" u2="V" k="29" /> + <hkern u1="=" u2="7" k="16" /> + <hkern u1="=" u2="5" k="-16" /> + <hkern u1=">" u2="ł" k="-2" /> + <hkern u1=">" u2="x" k="2" /> + <hkern u1=">" u2="v" k="2" /> + <hkern u1=">" u2="X" k="53" /> + <hkern u1=">" u2="V" k="49" /> + <hkern u1=">" u2="3" k="33" /> + <hkern u1=">" u2="2" k="16" /> + <hkern u1=">" u2="1" k="16" /> + <hkern u1="?" u2="Ł" k="2" /> + <hkern u1="?" u2="v" k="-37" /> + <hkern u1="?" u2="X" k="2" /> + <hkern u1="?" u2="7" k="-49" /> + <hkern u1="?" u2="4" k="33" /> + <hkern u1="?" u2="1" k="-16" /> + <hkern u1="@" u2="ł" k="2" /> + <hkern u1="@" u2="Ł" k="-16" /> + <hkern u1="@" u2="î" k="-2" /> + <hkern u1="@" u2="ß" k="4" /> + <hkern u1="@" u2="x" k="-8" /> + <hkern u1="@" u2="v" k="-27" /> + <hkern u1="@" u2="X" k="47" /> + <hkern u1="@" u2="V" k="45" /> + <hkern u1="@" u2="7" k="-16" /> + <hkern u1="@" u2="4" k="16" /> + <hkern u1="@" u2="3" k="16" /> + <hkern u1="B" u2="™" k="23" /> + <hkern u1="B" u2="•" k="18" /> + <hkern u1="B" u2="‡" k="-2" /> + <hkern u1="B" u2="†" k="-2" /> + <hkern u1="B" u2="Ł" k="-2" /> + <hkern u1="B" u2="ï" k="-2" /> + <hkern u1="B" u2="î" k="-2" /> + <hkern u1="B" u2="ß" k="31" /> + <hkern u1="B" u2="¿" k="49" /> + <hkern u1="B" u2="º" k="18" /> + <hkern u1="B" u2="·" k="2" /> + <hkern u1="B" u2="ª" k="27" /> + <hkern u1="B" u2="¡" k="2" /> + <hkern u1="B" u2="~" k="-2" /> + <hkern u1="B" u2="{" k="4" /> + <hkern u1="B" u2="v" k="8" /> + <hkern u1="B" u2="_" k="18" /> + <hkern u1="B" u2="\" k="55" /> + <hkern u1="B" u2="X" k="2" /> + <hkern u1="B" u2="V" k="2" /> + <hkern u1="B" u2=">" k="-23" /> + <hkern u1="B" u2="=" k="-2" /> + <hkern u1="B" u2="/" k="29" /> + <hkern u1="B" u2="+" k="8" /> + <hkern u1="B" u2="&" k="16" /> + <hkern u1="C" u2="î" k="-29" /> + <hkern u1="D" u2="ï" k="-2" /> + <hkern u1="D" u2="î" k="-2" /> + <hkern u1="E" u2="ï" k="-4" /> + <hkern u1="E" u2="î" k="-4" /> + <hkern u1="E" u2="ì" k="-23" /> + <hkern u1="F" u2="™" k="-37" /> + <hkern u1="F" u2="•" k="23" /> + <hkern u1="F" u2="‡" k="-41" /> + <hkern u1="F" u2="†" k="-41" /> + <hkern u1="F" u2="ƒ" k="141" /> + <hkern u1="F" u2="÷" k="2" /> + <hkern u1="F" u2="ï" k="-47" /> + <hkern u1="F" u2="î" k="-53" /> + <hkern u1="F" u2="í" k="4" /> + <hkern u1="F" u2="ì" k="-74" /> + <hkern u1="F" u2="ã" k="12" /> + <hkern u1="F" u2="ß" k="43" /> + <hkern u1="F" u2="×" k="2" /> + <hkern u1="F" u2="¿" k="145" /> + <hkern u1="F" u2="·" k="2" /> + <hkern u1="F" u2="¶" k="-37" /> + <hkern u1="F" u2="ª" k="27" /> + <hkern u1="F" u2="§" k="-37" /> + <hkern u1="F" u2="¦" k="-37" /> + <hkern u1="F" u2="¡" k="4" /> + <hkern u1="F" u2="~" k="41" /> + <hkern u1="F" u2="|" k="-41" /> + <hkern u1="F" u2="{" k="37" /> + <hkern u1="F" u2="x" k="31" /> + <hkern u1="F" u2="v" k="39" /> + <hkern u1="F" u2="_" k="195" /> + <hkern u1="F" u2="^" k="-18" /> + <hkern u1="F" u2="\" k="-59" /> + <hkern u1="F" u2="X" k="-4" /> + <hkern u1="F" u2="V" k="-4" /> + <hkern u1="F" u2="@" k="20" /> + <hkern u1="F" u2="?" k="-20" /> + <hkern u1="F" u2=">" k="-23" /> + <hkern u1="F" u2="=" k="2" /> + <hkern u1="F" u2="<" k="2" /> + <hkern u1="F" u2="/" k="119" /> + <hkern u1="F" u2="+" k="39" /> + <hkern u1="F" u2="*" k="-27" /> + <hkern u1="F" u2=")" k="-53" /> + <hkern u1="F" u2="&" k="31" /> + <hkern u1="G" u2="î" k="-8" /> + <hkern u1="H" u2="ï" k="-4" /> + <hkern u1="H" u2="î" k="-2" /> + <hkern u1="H" u2="ì" k="-4" /> + <hkern u1="I" u2="ï" k="-4" /> + <hkern u1="I" u2="î" k="-2" /> + <hkern u1="I" u2="ì" k="-4" /> + <hkern u1="J" u2="ï" k="-2" /> + <hkern u1="J" u2="î" k="-12" /> + <hkern u1="J" u2="ì" k="-2" /> + <hkern u1="K" u2="ï" k="-14" /> + <hkern u1="K" u2="î" k="-6" /> + <hkern u1="K" u2="ì" k="-57" /> + <hkern u1="M" u2="ï" k="-4" /> + <hkern u1="M" u2="î" k="-2" /> + <hkern u1="M" u2="ì" k="-4" /> + <hkern u1="N" u2="ï" k="-4" /> + <hkern u1="N" u2="î" k="-2" /> + <hkern u1="N" u2="ì" k="-4" /> + <hkern u1="O" u2="ï" k="-2" /> + <hkern u1="O" u2="î" k="-2" /> + <hkern u1="P" u2="™" k="2" /> + <hkern u1="P" u2="•" k="39" /> + <hkern u1="P" u2="‡" k="-41" /> + <hkern u1="P" u2="†" k="-41" /> + <hkern u1="P" u2="ƒ" k="121" /> + <hkern u1="P" u2="š" k="29" /> + <hkern u1="P" u2="ł" k="8" /> + <hkern u1="P" u2="ü" k="41" /> + <hkern u1="P" u2="û" k="41" /> + <hkern u1="P" u2="ú" k="41" /> + <hkern u1="P" u2="ù" k="41" /> + <hkern u1="P" u2="÷" k="18" /> + <hkern u1="P" u2="ï" k="-47" /> + <hkern u1="P" u2="î" k="-78" /> + <hkern u1="P" u2="ì" k="-27" /> + <hkern u1="P" u2="ß" k="33" /> + <hkern u1="P" u2="×" k="-18" /> + <hkern u1="P" u2="¿" k="166" /> + <hkern u1="P" u2="·" k="39" /> + <hkern u1="P" u2="¶" k="-39" /> + <hkern u1="P" u2="§" k="-18" /> + <hkern u1="P" u2="~" k="41" /> + <hkern u1="P" u2="{" k="41" /> + <hkern u1="P" u2="v" k="-2" /> + <hkern u1="P" u2="_" k="182" /> + <hkern u1="P" u2="\" k="4" /> + <hkern u1="P" u2="X" k="14" /> + <hkern u1="P" u2="V" k="2" /> + <hkern u1="P" u2="@" k="8" /> + <hkern u1="P" u2="?" k="-41" /> + <hkern u1="P" u2=">" k="-41" /> + <hkern u1="P" u2="<" k="4" /> + <hkern u1="P" u2="/" k="145" /> + <hkern u1="P" u2="+" k="59" /> + <hkern u1="P" u2="*" k="-20" /> + <hkern u1="P" u2=")" k="2" /> + <hkern u1="P" u2="&" k="31" /> + <hkern u1="Q" u2="™" k="41" /> + <hkern u1="Q" u2="‡" k="-2" /> + <hkern u1="Q" u2="†" k="-2" /> + <hkern u1="Q" u2="ƒ" k="37" /> + <hkern u1="Q" u2="Ł" k="-8" /> + <hkern u1="Q" u2="÷" k="-2" /> + <hkern u1="Q" u2="î" k="-2" /> + <hkern u1="Q" u2="ß" k="23" /> + <hkern u1="Q" u2="×" k="-2" /> + <hkern u1="Q" u2="¡" k="2" /> + <hkern u1="Q" u2="~" k="-2" /> + <hkern u1="Q" u2="x" k="-2" /> + <hkern u1="Q" u2="^" k="-2" /> + <hkern u1="Q" u2="\" k="76" /> + <hkern u1="Q" u2="X" k="33" /> + <hkern u1="Q" u2="V" k="53" /> + <hkern u1="Q" u2=">" k="-39" /> + <hkern u1="Q" u2="=" k="-2" /> + <hkern u1="Q" u2="<" k="-20" /> + <hkern u1="Q" u2="+" k="-2" /> + <hkern u1="Q" u2=")" k="25" /> + <hkern u1="Q" u2="&" k="4" /> + <hkern u1="Q" u2="!" k="2" /> + <hkern u1="R" u2="ï" k="-4" /> + <hkern u1="R" u2="î" k="-23" /> + <hkern u1="S" u2="ï" k="-2" /> + <hkern u1="S" u2="î" k="-2" /> + <hkern u1="T" u2="ž" k="59" /> + <hkern u1="T" u2="š" k="23" /> + <hkern u1="T" u2="ÿ" k="102" /> + <hkern u1="T" u2="ü" k="137" /> + <hkern u1="T" u2="û" k="133" /> + <hkern u1="T" u2="ï" k="-70" /> + <hkern u1="T" u2="î" k="-37" /> + <hkern u1="T" u2="í" k="94" /> + <hkern u1="T" u2="ì" k="-82" /> + <hkern u1="T" u2="å" k="131" /> + <hkern u1="T" u2="ä" k="88" /> + <hkern u1="T" u2="ã" k="92" /> + <hkern u1="T" u2="â" k="111" /> + <hkern u1="T" u2="à" k="84" /> + <hkern u1="U" u2="ï" k="-2" /> + <hkern u1="U" u2="î" k="-12" /> + <hkern u1="U" u2="ì" k="-2" /> + <hkern u1="V" u2="™" k="-53" /> + <hkern u1="V" u2="•" k="84" /> + <hkern u1="V" u2="‡" k="-20" /> + <hkern u1="V" u2="†" k="-39" /> + <hkern u1="V" u2="ƒ" k="127" /> + <hkern u1="V" u2="ł" k="4" /> + <hkern u1="V" u2="÷" k="78" /> + <hkern u1="V" u2="ï" k="-37" /> + <hkern u1="V" u2="î" k="-23" /> + <hkern u1="V" u2="í" k="4" /> + <hkern u1="V" u2="ì" k="-70" /> + <hkern u1="V" u2="è" k="25" /> + <hkern u1="V" u2="ã" k="18" /> + <hkern u1="V" u2="ß" k="39" /> + <hkern u1="V" u2="×" k="20" /> + <hkern u1="V" u2="¿" k="133" /> + <hkern u1="V" u2="º" k="2" /> + <hkern u1="V" u2="·" k="63" /> + <hkern u1="V" u2="ª" k="4" /> + <hkern u1="V" u2="§" k="2" /> + <hkern u1="V" u2="¦" k="-39" /> + <hkern u1="V" u2="¡" k="49" /> + <hkern u1="V" u2="~" k="84" /> + <hkern u1="V" u2="|" k="-39" /> + <hkern u1="V" u2="{" k="61" /> + <hkern u1="V" u2="x" k="12" /> + <hkern u1="V" u2="v" k="16" /> + <hkern u1="V" u2="_" k="111" /> + <hkern u1="V" u2="^" k="2" /> + <hkern u1="V" u2="\" k="-41" /> + <hkern u1="V" u2="X" k="-20" /> + <hkern u1="V" u2="V" k="-20" /> + <hkern u1="V" u2="@" k="45" /> + <hkern u1="V" u2="?" k="-18" /> + <hkern u1="V" u2="=" k="29" /> + <hkern u1="V" u2="<" k="49" /> + <hkern u1="V" u2="/" k="133" /> + <hkern u1="V" u2="+" k="84" /> + <hkern u1="V" u2="*" k="-41" /> + <hkern u1="V" u2=")" k="-39" /> + <hkern u1="V" u2="&" k="88" /> + <hkern u1="W" u2="ï" k="-53" /> + <hkern u1="W" u2="î" k="-25" /> + <hkern u1="W" u2="í" k="4" /> + <hkern u1="W" u2="ì" k="-55" /> + <hkern u1="X" u2="•" k="66" /> + <hkern u1="X" u2="ł" k="2" /> + <hkern u1="X" u2="÷" k="25" /> + <hkern u1="X" u2="ï" k="-25" /> + <hkern u1="X" u2="î" k="-20" /> + <hkern u1="X" u2="ì" k="-78" /> + <hkern u1="X" u2="ß" k="4" /> + <hkern u1="X" u2="×" k="23" /> + <hkern u1="X" u2="º" k="8" /> + <hkern u1="X" u2="·" k="63" /> + <hkern u1="X" u2="¶" k="2" /> + <hkern u1="X" u2="ª" k="8" /> + <hkern u1="X" u2="¦" k="-20" /> + <hkern u1="X" u2="¡" k="2" /> + <hkern u1="X" u2="~" k="43" /> + <hkern u1="X" u2="|" k="-39" /> + <hkern u1="X" u2="{" k="61" /> + <hkern u1="X" u2="x" k="-37" /> + <hkern u1="X" u2="v" k="39" /> + <hkern u1="X" u2="_" k="-33" /> + <hkern u1="X" u2="^" k="4" /> + <hkern u1="X" u2="\" k="-20" /> + <hkern u1="X" u2="V" k="-20" /> + <hkern u1="X" u2="@" k="53" /> + <hkern u1="X" u2="?" k="2" /> + <hkern u1="X" u2="=" k="23" /> + <hkern u1="X" u2="<" k="45" /> + <hkern u1="X" u2="/" k="-20" /> + <hkern u1="X" u2="+" k="27" /> + <hkern u1="X" u2="*" k="2" /> + <hkern u1="X" u2=")" k="-37" /> + <hkern u1="X" u2="&" k="29" /> + <hkern u1="Y" u2="š" k="90" /> + <hkern u1="Y" u2="ö" k="29" /> + <hkern u1="Y" u2="õ" k="178" /> + <hkern u1="Y" u2="ò" k="156" /> + <hkern u1="Y" u2="ð" k="162" /> + <hkern u1="Y" u2="ï" k="-29" /> + <hkern u1="Y" u2="î" k="-2" /> + <hkern u1="Y" u2="í" k="66" /> + <hkern u1="Y" u2="ì" k="-82" /> + <hkern u1="Y" u2="ë" k="35" /> + <hkern u1="Y" u2="è" k="35" /> + <hkern u1="Y" u2="ä" k="25" /> + <hkern u1="Y" u2="â" k="29" /> + <hkern u1="Y" u2="à" k="31" /> + <hkern u1="Z" u2="ï" k="-16" /> + <hkern u1="Z" u2="î" k="-16" /> + <hkern u1="Z" u2="ì" k="-35" /> + <hkern u1="[" u2="ï" k="-12" /> + <hkern u1="[" u2="î" k="-4" /> + <hkern u1="[" u2="ì" k="-86" /> + <hkern u1="\" u2="Ł" k="2" /> + <hkern u1="\" u2="x" k="-20" /> + <hkern u1="\" u2="v" k="29" /> + <hkern u1="\" u2="X" k="-20" /> + <hkern u1="\" u2="V" k="133" /> + <hkern u1="\" u2="8" k="33" /> + <hkern u1="\" u2="4" k="16" /> + <hkern u1="\" u2="3" k="16" /> + <hkern u1="\" u2="2" k="-16" /> + <hkern u1="^" u2="v" k="-4" /> + <hkern u1="^" u2="X" k="4" /> + <hkern u1="^" u2="V" k="2" /> + <hkern u1="_" u2="ƒ" k="-125" /> + <hkern u1="_" u2="ł" k="4" /> + <hkern u1="_" u2="x" k="-59" /> + <hkern u1="_" u2="v" k="82" /> + <hkern u1="_" u2="X" k="-33" /> + <hkern u1="_" u2="V" k="111" /> + <hkern u1="_" u2="8" k="16" /> + <hkern u1="_" u2="4" k="82" /> + <hkern u1="f" u2="ï" k="-49" /> + <hkern u1="f" u2="î" k="-49" /> + <hkern u1="f" u2="ì" k="-70" /> + <hkern u1="f" u2="j" k="-6" /> + <hkern u1="f" u2="i" k="-2" /> + <hkern u1="i" u2="ï" k="-2" /> + <hkern u1="i" u2="î" k="-2" /> + <hkern u1="i" u2="ì" k="-2" /> + <hkern u1="l" u2="ï" k="-2" /> + <hkern u1="l" u2="î" k="-2" /> + <hkern u1="q" u2="™" k="12" /> + <hkern u1="v" u2="™" k="2" /> + <hkern u1="v" u2="‡" k="-61" /> + <hkern u1="v" u2="†" k="-61" /> + <hkern u1="v" u2="ƒ" k="4" /> + <hkern u1="v" u2="ł" k="-8" /> + <hkern u1="v" u2="÷" k="2" /> + <hkern u1="v" u2="×" k="-4" /> + <hkern u1="v" u2="¿" k="45" /> + <hkern u1="v" u2="º" k="-4" /> + <hkern u1="v" u2="¶" k="-43" /> + <hkern u1="v" u2="§" k="-4" /> + <hkern u1="v" u2="¦" k="-41" /> + <hkern u1="v" u2="¡" k="2" /> + <hkern u1="v" u2="|" k="-4" /> + <hkern u1="v" u2="x" k="-18" /> + <hkern u1="v" u2="v" k="-8" /> + <hkern u1="v" u2="_" k="82" /> + <hkern u1="v" u2="^" k="-4" /> + <hkern u1="v" u2="\" k="41" /> + <hkern u1="v" u2="@" k="-18" /> + <hkern u1="v" u2="?" k="-41" /> + <hkern u1="v" u2=">" k="-8" /> + <hkern u1="v" u2="=" k="-2" /> + <hkern u1="v" u2="<" k="2" /> + <hkern u1="v" u2="/" k="45" /> + <hkern u1="v" u2="*" k="-25" /> + <hkern u1="v" u2=")" k="43" /> + <hkern u1="v" u2="&" k="8" /> + <hkern u1="x" u2="™" k="20" /> + <hkern u1="x" u2="•" k="2" /> + <hkern u1="x" u2="‡" k="-23" /> + <hkern u1="x" u2="†" k="-23" /> + <hkern u1="x" u2="÷" k="2" /> + <hkern u1="x" u2="¿" k="-2" /> + <hkern u1="x" u2="·" k="20" /> + <hkern u1="x" u2="¶" k="-2" /> + <hkern u1="x" u2="ª" k="2" /> + <hkern u1="x" u2="¦" k="-2" /> + <hkern u1="x" u2="¡" k="-18" /> + <hkern u1="x" u2="~" k="2" /> + <hkern u1="x" u2="|" k="-39" /> + <hkern u1="x" u2="x" k="-8" /> + <hkern u1="x" u2="v" k="-18" /> + <hkern u1="x" u2="_" k="-59" /> + <hkern u1="x" u2="\" k="51" /> + <hkern u1="x" u2="@" k="-8" /> + <hkern u1="x" u2="?" k="-4" /> + <hkern u1="x" u2="<" k="2" /> + <hkern u1="x" u2="/" k="-41" /> + <hkern u1="x" u2="*" k="-2" /> + <hkern u1="x" u2=")" k="2" /> + <hkern u1="x" u2="&" k="23" /> + <hkern u1="{" u2="ï" k="-12" /> + <hkern u1="{" u2="î" k="-4" /> + <hkern u1="{" u2="ì" k="-86" /> + <hkern u1="{" u2="æ" k="10" /> + <hkern u1="{" u2="å" k="10" /> + <hkern u1="{" u2="ä" k="10" /> + <hkern u1="{" u2="ã" k="10" /> + <hkern u1="{" u2="â" k="10" /> + <hkern u1="{" u2="á" k="10" /> + <hkern u1="{" u2="à" k="10" /> + <hkern u1="{" u2="a" k="10" /> + <hkern u1="|" u2="x" k="-39" /> + <hkern u1="|" u2="v" k="-4" /> + <hkern u1="|" u2="X" k="-39" /> + <hkern u1="|" u2="V" k="-39" /> + <hkern u1="|" u2="7" k="-33" /> + <hkern u1="}" u2="Ł" k="-18" /> + <hkern u1="}" u2="X" k="18" /> + <hkern u1="}" u2="V" k="18" /> + <hkern u1="~" u2="x" k="2" /> + <hkern u1="~" u2="X" k="43" /> + <hkern u1="~" u2="V" k="84" /> + <hkern u1="~" u2="7" k="33" /> + <hkern u1="~" u2="2" k="16" /> + <hkern u1="~" u2="1" k="16" /> + <hkern u1="¡" u2="ß" k="2" /> + <hkern u1="¡" u2="x" k="-18" /> + <hkern u1="¡" u2="v" k="2" /> + <hkern u1="¡" u2="X" k="2" /> + <hkern u1="¡" u2="V" k="49" /> + <hkern u1="¡" u2="7" k="-16" /> + <hkern u1="¢" u2="3" k="16" /> + <hkern u1="¥" u2="7" k="-49" /> + <hkern u1="¥" u2="4" k="16" /> + <hkern u1="¦" u2="x" k="-2" /> + <hkern u1="¦" u2="v" k="-41" /> + <hkern u1="¦" u2="X" k="-20" /> + <hkern u1="¦" u2="V" k="-39" /> + <hkern u1="¦" u2="8" k="16" /> + <hkern u1="¦" u2="7" k="-16" /> + <hkern u1="§" u2="V" k="2" /> + <hkern u1="¬" u2="3" k="16" /> + <hkern u1="°" u2="7" k="-66" /> + <hkern u1="°" u2="4" k="66" /> + <hkern u1="°" u2="1" k="-49" /> + <hkern u1="±" u2="7" k="16" /> + <hkern u1="±" u2="3" k="16" /> + <hkern u1="·" u2="x" k="20" /> + <hkern u1="·" u2="X" k="63" /> + <hkern u1="·" u2="V" k="63" /> + <hkern u1="·" u2="7" k="33" /> + <hkern u1="·" u2="1" k="49" /> + <hkern u1="¿" u2="ƒ" k="-14" /> + <hkern u1="¿" u2="ł" k="4" /> + <hkern u1="¿" u2="Ł" k="2" /> + <hkern u1="¿" u2="ß" k="8" /> + <hkern u1="¿" u2="v" k="66" /> + <hkern u1="¿" u2="V" k="137" /> + <hkern u1="¿" u2="9" k="8" /> + <hkern u1="¿" u2="4" k="33" /> + <hkern u1="¿" u2="3" k="16" /> + <hkern u1="¿" u2="1" k="16" /> + <hkern u1="Æ" u2="ï" k="-4" /> + <hkern u1="Æ" u2="î" k="-4" /> + <hkern u1="Æ" u2="ì" k="-23" /> + <hkern u1="Ç" u2="î" k="-29" /> + <hkern u1="È" u2="ï" k="-4" /> + <hkern u1="È" u2="î" k="-4" /> + <hkern u1="È" u2="ì" k="-23" /> + <hkern u1="É" u2="ï" k="-4" /> + <hkern u1="É" u2="î" k="-4" /> + <hkern u1="É" u2="ì" k="-23" /> + <hkern u1="Ê" u2="ï" k="-4" /> + <hkern u1="Ê" u2="î" k="-4" /> + <hkern u1="Ê" u2="ì" k="-23" /> + <hkern u1="Ë" u2="ï" k="-4" /> + <hkern u1="Ë" u2="î" k="-4" /> + <hkern u1="Ë" u2="ì" k="-23" /> + <hkern u1="Ì" u2="ï" k="-4" /> + <hkern u1="Ì" u2="î" k="-2" /> + <hkern u1="Ì" u2="ì" k="-4" /> + <hkern u1="Í" u2="ï" k="-4" /> + <hkern u1="Í" u2="î" k="-2" /> + <hkern u1="Í" u2="ì" k="-4" /> + <hkern u1="Í" u2="Ï" k="-90" /> + <hkern u1="Í" u2="Ì" k="-162" /> + <hkern u1="Î" u2="ï" k="-4" /> + <hkern u1="Î" u2="î" k="-2" /> + <hkern u1="Î" u2="ì" k="-4" /> + <hkern u1="Î" u2="Ï" k="-72" /> + <hkern u1="Î" u2="Î" k="-109" /> + <hkern u1="Î" u2="Ì" k="-53" /> + <hkern u1="Ï" u2="ï" k="-4" /> + <hkern u1="Ï" u2="î" k="-2" /> + <hkern u1="Ï" u2="ì" k="-4" /> + <hkern u1="Ï" u2="Ï" k="-37" /> + <hkern u1="Ï" u2="Î" k="-63" /> + <hkern u1="Ï" u2="Ì" k="-72" /> + <hkern u1="Ð" u2="ï" k="-2" /> + <hkern u1="Ð" u2="î" k="-2" /> + <hkern u1="Ñ" u2="ï" k="-4" /> + <hkern u1="Ñ" u2="î" k="-2" /> + <hkern u1="Ñ" u2="ì" k="-4" /> + <hkern u1="Ò" u2="ï" k="-2" /> + <hkern u1="Ò" u2="î" k="-2" /> + <hkern u1="Ó" u2="ï" k="-2" /> + <hkern u1="Ó" u2="î" k="-2" /> + <hkern u1="Ô" u2="ï" k="-2" /> + <hkern u1="Ô" u2="î" k="-2" /> + <hkern u1="Õ" u2="ï" k="-2" /> + <hkern u1="Õ" u2="î" k="-2" /> + <hkern u1="Ö" u2="ï" k="-2" /> + <hkern u1="Ö" u2="î" k="-2" /> + <hkern u1="×" u2="v" k="-4" /> + <hkern u1="×" u2="X" k="23" /> + <hkern u1="×" u2="V" k="20" /> + <hkern u1="Ø" u2="ï" k="-2" /> + <hkern u1="Ø" u2="î" k="-2" /> + <hkern u1="Ù" u2="ï" k="-2" /> + <hkern u1="Ù" u2="î" k="-12" /> + <hkern u1="Ù" u2="ì" k="-2" /> + <hkern u1="Ú" u2="ï" k="-2" /> + <hkern u1="Ú" u2="î" k="-12" /> + <hkern u1="Ú" u2="ì" k="-2" /> + <hkern u1="Û" u2="ï" k="-2" /> + <hkern u1="Û" u2="î" k="-12" /> + <hkern u1="Û" u2="ì" k="-2" /> + <hkern u1="Ü" u2="ï" k="-2" /> + <hkern u1="Ü" u2="î" k="-12" /> + <hkern u1="Ü" u2="ì" k="-2" /> + <hkern u1="Ý" u2="š" k="90" /> + <hkern u1="Ý" u2="ö" k="29" /> + <hkern u1="Ý" u2="õ" k="178" /> + <hkern u1="Ý" u2="ò" k="156" /> + <hkern u1="Ý" u2="ð" k="162" /> + <hkern u1="Ý" u2="ï" k="-29" /> + <hkern u1="Ý" u2="î" k="-2" /> + <hkern u1="Ý" u2="í" k="57" /> + <hkern u1="Ý" u2="ì" k="-82" /> + <hkern u1="Ý" u2="ë" k="35" /> + <hkern u1="Ý" u2="è" k="35" /> + <hkern u1="Ý" u2="ä" k="25" /> + <hkern u1="Ý" u2="â" k="29" /> + <hkern u1="Ý" u2="à" k="31" /> + <hkern u1="Þ" u2="™" k="63" /> + <hkern u1="Þ" u2="•" k="-2" /> + <hkern u1="Þ" u2="‡" k="-20" /> + <hkern u1="Þ" u2="†" k="-20" /> + <hkern u1="Þ" u2="ƒ" k="84" /> + <hkern u1="Þ" u2="ł" k="-39" /> + <hkern u1="Þ" u2="Ł" k="-27" /> + <hkern u1="Þ" u2="÷" k="-2" /> + <hkern u1="Þ" u2="ß" k="29" /> + <hkern u1="Þ" u2="×" k="-2" /> + <hkern u1="Þ" u2="¿" k="51" /> + <hkern u1="Þ" u2="·" k="-18" /> + <hkern u1="Þ" u2="~" k="-20" /> + <hkern u1="Þ" u2="x" k="-18" /> + <hkern u1="Þ" u2="v" k="-18" /> + <hkern u1="Þ" u2="_" k="66" /> + <hkern u1="Þ" u2="^" k="-2" /> + <hkern u1="Þ" u2="\" k="86" /> + <hkern u1="Þ" u2="X" k="45" /> + <hkern u1="Þ" u2="V" k="33" /> + <hkern u1="Þ" u2="@" k="-8" /> + <hkern u1="Þ" u2="?" k="-18" /> + <hkern u1="Þ" u2=">" k="-20" /> + <hkern u1="Þ" u2="=" k="-2" /> + <hkern u1="Þ" u2="<" k="-2" /> + <hkern u1="Þ" u2="/" k="90" /> + <hkern u1="Þ" u2="+" k="-2" /> + <hkern u1="Þ" u2=")" k="23" /> + <hkern u1="Þ" u2="&" k="23" /> + <hkern u1="ß" u2="™" k="8" /> + <hkern u1="ß" u2="‡" k="-2" /> + <hkern u1="ß" u2="ƒ" k="2" /> + <hkern u1="ß" u2="ł" k="-10" /> + <hkern u1="ß" u2="÷" k="-2" /> + <hkern u1="ß" u2="ï" k="-2" /> + <hkern u1="ß" u2="î" k="-2" /> + <hkern u1="ß" u2="ß" k="27" /> + <hkern u1="ß" u2="º" k="20" /> + <hkern u1="ß" u2="ª" k="41" /> + <hkern u1="ß" u2="v" k="2" /> + <hkern u1="ß" u2="_" k="-4" /> + <hkern u1="ß" u2="\" k="29" /> + <hkern u1="ß" u2=">" k="-12" /> + <hkern u1="ß" u2="=" k="-2" /> + <hkern u1="ß" u2="/" k="-18" /> + <hkern u1="ß" u2=")" k="-37" /> + <hkern u1="ß" u2="&" k="2" /> + <hkern u1="é" u2="\" k="141" /> + <hkern u1="ë" u2="\" k="141" /> + <hkern u1="ì" u2="™" k="8" /> + <hkern u1="ì" u2="\" k="43" /> + <hkern u1="í" u2="™" k="-10" /> + <hkern u1="í" u2="”" k="-119" /> + <hkern u1="í" u2="“" k="-59" /> + <hkern u1="í" u2="’" k="-119" /> + <hkern u1="í" u2="‘" k="-59" /> + <hkern u1="í" u2="š" k="-2" /> + <hkern u1="í" u2="ï" k="-90" /> + <hkern u1="í" u2="î" k="-82" /> + <hkern u1="í" u2="ì" k="-156" /> + <hkern u1="í" u2="}" k="-86" /> + <hkern u1="í" u2="|" k="-8" /> + <hkern u1="í" u2="i" k="-2" /> + <hkern u1="í" u2="]" k="-86" /> + <hkern u1="í" u2="\" k="-139" /> + <hkern u1="í" u2="?" k="-51" /> + <hkern u1="í" u2="*" k="-2" /> + <hkern u1="í" u2=")" k="-63" /> + <hkern u1="í" u2="'" k="-72" /> + <hkern u1="í" u2=""" k="-72" /> + <hkern u1="í" u2="!" k="-2" /> + <hkern u1="î" u2="™" k="-4" /> + <hkern u1="î" u2="†" k="-14" /> + <hkern u1="î" u2="”" k="-63" /> + <hkern u1="î" u2="“" k="-76" /> + <hkern u1="î" u2="’" k="-63" /> + <hkern u1="î" u2="‘" k="-76" /> + <hkern u1="î" u2="š" k="-2" /> + <hkern u1="î" u2="ï" k="-109" /> + <hkern u1="î" u2="î" k="-131" /> + <hkern u1="î" u2="ì" k="-8" /> + <hkern u1="î" u2="}" k="-4" /> + <hkern u1="î" u2="|" k="-4" /> + <hkern u1="î" u2="j" k="-2" /> + <hkern u1="î" u2="i" k="-4" /> + <hkern u1="î" u2="]" k="-4" /> + <hkern u1="î" u2="\" k="-43" /> + <hkern u1="î" u2="?" k="-84" /> + <hkern u1="î" u2="*" k="-63" /> + <hkern u1="î" u2=")" k="-4" /> + <hkern u1="î" u2="'" k="-72" /> + <hkern u1="î" u2="&" k="2" /> + <hkern u1="î" u2=""" k="-72" /> + <hkern u1="î" u2="!" k="-2" /> + <hkern u1="ï" u2="™" k="-10" /> + <hkern u1="ï" u2="†" k="-10" /> + <hkern u1="ï" u2="”" k="-66" /> + <hkern u1="ï" u2="“" k="-57" /> + <hkern u1="ï" u2="’" k="-66" /> + <hkern u1="ï" u2="‘" k="-57" /> + <hkern u1="ï" u2="š" k="-2" /> + <hkern u1="ï" u2="ï" k="-86" /> + <hkern u1="ï" u2="î" k="-90" /> + <hkern u1="ï" u2="ì" k="-82" /> + <hkern u1="ï" u2="ã" k="-2" /> + <hkern u1="ï" u2="}" k="-12" /> + <hkern u1="ï" u2="|" k="-4" /> + <hkern u1="ï" u2="j" k="-4" /> + <hkern u1="ï" u2="i" k="-4" /> + <hkern u1="ï" u2="]" k="-12" /> + <hkern u1="ï" u2="\" k="-31" /> + <hkern u1="ï" u2="?" k="-66" /> + <hkern u1="ï" u2="*" k="-55" /> + <hkern u1="ï" u2=")" k="-8" /> + <hkern u1="ï" u2="'" k="-72" /> + <hkern u1="ï" u2="&" k="2" /> + <hkern u1="ï" u2=""" k="-72" /> + <hkern u1="ï" u2="!" k="-2" /> + <hkern u1="ð" u2="”" k="12" /> + <hkern u1="ð" u2="“" k="12" /> + <hkern u1="ð" u2="’" k="12" /> + <hkern u1="ð" u2="‘" k="12" /> + <hkern u1="ð" u2="\" k="86" /> + <hkern u1="ó" u2="\" k="201" /> + <hkern u1="õ" u2="\" k="201" /> + <hkern u1="ö" u2="\" k="201" /> + <hkern u1="÷" u2="x" k="2" /> + <hkern u1="÷" u2="v" k="2" /> + <hkern u1="÷" u2="X" k="25" /> + <hkern u1="÷" u2="V" k="78" /> + <hkern u1="÷" u2="4" k="16" /> + <hkern u1="÷" u2="3" k="33" /> + <hkern u1="÷" u2="1" k="16" /> + <hkern u1="ł" u2="‡" k="-43" /> + <hkern u1="ł" u2="†" k="-8" /> + <hkern u1="ł" u2="ƒ" k="2" /> + <hkern u1="ł" u2="ł" k="-18" /> + <hkern u1="ł" u2="¿" k="2" /> + <hkern u1="ł" u2="º" k="-2" /> + <hkern u1="ł" u2="·" k="-18" /> + <hkern u1="ł" u2="¶" k="-37" /> + <hkern u1="ł" u2="x" k="-43" /> + <hkern u1="ł" u2="v" k="-57" /> + <hkern u1="ł" u2="@" k="-53" /> + <hkern u1="ł" u2="?" k="-2" /> + <hkern u1="ł" u2=">" k="-10" /> + <hkern u1="ł" u2="=" k="-4" /> + <hkern u1="ł" u2="/" k="-18" /> + <hkern u1="ł" u2="*" k="-4" /> + <hkern u1="ł" u2="&" k="4" /> + <hkern u1="Œ" u2="ï" k="-4" /> + <hkern u1="Œ" u2="î" k="-4" /> + <hkern u1="Œ" u2="ì" k="-23" /> + <hkern u1="Š" u2="ï" k="-2" /> + <hkern u1="Š" u2="î" k="-2" /> + <hkern u1="š" u2="\" k="115" /> + <hkern u1="Ÿ" u2="š" k="90" /> + <hkern u1="Ÿ" u2="ö" k="29" /> + <hkern u1="Ÿ" u2="õ" k="178" /> + <hkern u1="Ÿ" u2="ò" k="156" /> + <hkern u1="Ÿ" u2="ð" k="162" /> + <hkern u1="Ÿ" u2="ï" k="-29" /> + <hkern u1="Ÿ" u2="î" k="-2" /> + <hkern u1="Ÿ" u2="í" k="57" /> + <hkern u1="Ÿ" u2="ì" k="-82" /> + <hkern u1="Ÿ" u2="ë" k="35" /> + <hkern u1="Ÿ" u2="è" k="35" /> + <hkern u1="Ÿ" u2="ä" k="25" /> + <hkern u1="Ÿ" u2="â" k="29" /> + <hkern u1="Ÿ" u2="à" k="31" /> + <hkern u1="Ž" u2="ï" k="-16" /> + <hkern u1="Ž" u2="î" k="-16" /> + <hkern u1="Ž" u2="ì" k="-35" /> + <hkern u1="ž" u2="\" k="68" /> + <hkern u1="ƒ" u2="™" k="-4" /> + <hkern u1="ƒ" u2="‡" k="-37" /> + <hkern u1="ƒ" u2="†" k="-37" /> + <hkern u1="ƒ" u2="ƒ" k="180" /> + <hkern u1="ƒ" u2="÷" k="59" /> + <hkern u1="ƒ" u2="ï" k="-16" /> + <hkern u1="ƒ" u2="î" k="-12" /> + <hkern u1="ƒ" u2="ì" k="-16" /> + <hkern u1="ƒ" u2="×" k="-2" /> + <hkern u1="ƒ" u2="º" k="-2" /> + <hkern u1="ƒ" u2="¶" k="12" /> + <hkern u1="ƒ" u2="ª" k="-2" /> + <hkern u1="ƒ" u2="¦" k="-4" /> + <hkern u1="ƒ" u2="~" k="43" /> + <hkern u1="ƒ" u2="x" k="18" /> + <hkern u1="ƒ" u2="v" k="18" /> + <hkern u1="ƒ" u2="_" k="127" /> + <hkern u1="ƒ" u2="\" k="-82" /> + <hkern u1="ƒ" u2="@" k="37" /> + <hkern u1="ƒ" u2="?" k="-4" /> + <hkern u1="ƒ" u2=">" k="-82" /> + <hkern u1="ƒ" u2="=" k="20" /> + <hkern u1="ƒ" u2="<" k="45" /> + <hkern u1="ƒ" u2="/" k="92" /> + <hkern u1="ƒ" u2="+" k="45" /> + <hkern u1="ƒ" u2="*" k="-61" /> + <hkern u1="ƒ" u2=")" k="-20" /> + <hkern u1="ƒ" u2="&" k="43" /> + <hkern u1="‘" u2="ð" k="18" /> + <hkern u1="‘" u2="ï" k="-66" /> + <hkern u1="‘" u2="î" k="-63" /> + <hkern u1="‘" u2="ì" k="-82" /> + <hkern u1="’" u2="ð" k="33" /> + <hkern u1="’" u2="ï" k="-53" /> + <hkern u1="’" u2="î" k="-72" /> + <hkern u1="’" u2="ì" k="-53" /> + <hkern u1="‚" u2="g" k="-20" /> + <hkern u1="“" u2="ð" k="18" /> + <hkern u1="“" u2="ï" k="-66" /> + <hkern u1="“" u2="î" k="-63" /> + <hkern u1="“" u2="ì" k="-82" /> + <hkern u1="”" u2="ð" k="33" /> + <hkern u1="”" u2="ï" k="-53" /> + <hkern u1="”" u2="î" k="-72" /> + <hkern u1="”" u2="ì" k="-53" /> + <hkern u1="„" u2="g" k="-20" /> + <hkern u1="†" u2="x" k="-23" /> + <hkern u1="†" u2="v" k="-61" /> + <hkern u1="†" u2="V" k="-39" /> + <hkern u1="‡" u2="ł" k="-2" /> + <hkern u1="‡" u2="Ł" k="-4" /> + <hkern u1="‡" u2="x" k="-23" /> + <hkern u1="‡" u2="v" k="-61" /> + <hkern u1="‡" u2="V" k="-20" /> + <hkern u1="•" u2="x" k="2" /> + <hkern u1="•" u2="X" k="66" /> + <hkern u1="•" u2="V" k="84" /> + <hkern u1="…" u2="g" k="23" /> + <hkern u1="−" u2="3" k="33" /> + <hkern u1="−" u2="2" k="16" /> + <hkern u1="−" u2=")" k="82" /> + <hkern u1="√" u2="9" k="66" /> + <hkern u1="√" u2="8" k="66" /> + <hkern u1="√" u2="5" k="82" /> + <hkern u1="√" u2="4" k="164" /> + <hkern u1="√" u2="3" k="66" /> + <hkern u1="√" u2="2" k="82" /> + <hkern u1="√" u2="1" k="49" /> + <hkern u1="∞" u2="7" k="16" /> + <hkern u1="∫" u2="9" k="-33" /> + <hkern u1="∫" u2="8" k="-16" /> + <hkern u1="∫" u2="7" k="-147" /> + <hkern u1="∫" u2="5" k="-33" /> + <hkern u1="∫" u2="3" k="-66" /> + <hkern u1="∫" u2="2" k="-66" /> + <hkern u1="∫" u2="1" k="-66" /> + <hkern u1="≈" u2="8" k="-33" /> + <hkern u1="≈" u2="7" k="33" /> + <hkern u1="≈" u2="4" k="-16" /> + <hkern u1="≠" u2="8" k="-16" /> + <hkern u1="≥" u2="1" k="16" /> + <hkern g1="approxequal" + g2="zero,six" + k="-33" /> + <hkern g1="asciitilde" + g2="zero,six" + k="-16" /> + <hkern g1="cent" + g2="zero,six" + k="16" /> + <hkern g1="copyright,registered" + g2="five" + k="16" /> + <hkern g1="copyright,registered" + g2="four" + k="16" /> + <hkern g1="copyright,registered" + g2="one" + k="16" /> + <hkern g1="copyright,registered" + g2="three" + k="49" /> + <hkern g1="dollar" + g2="zero,six" + k="16" /> + <hkern g1="equal" + g2="zero,six" + k="-16" /> + <hkern g1="greaterequal" + g2="zero,six" + k="-16" /> + <hkern g1="infinity" + g2="zero,six" + k="-16" /> + <hkern g1="less" + g2="zero,six" + k="-33" /> + <hkern g1="lessequal" + g2="zero,six" + k="-16" /> + <hkern g1="minus" + g2="zero,six" + k="-16" /> + <hkern g1="minus" + g2="bracketright,braceright" + k="72" /> + <hkern g1="notequal" + g2="zero,six" + k="-16" /> + <hkern g1="percent" + g2="zero,six" + k="33" /> + <hkern g1="plus" + g2="bracketright,braceright" + k="72" /> + <hkern g1="radical" + g2="zero,six" + k="164" /> + <hkern g1="sterling" + g2="zero,six" + k="16" /> + <hkern g1="backslash" + g2="zero,six" + k="66" /> + <hkern g1="bracketleft,braceleft" + g2="five" + k="33" /> + <hkern g1="bracketleft,braceleft" + g2="four" + k="49" /> + <hkern g1="bracketleft,braceleft" + g2="hyphen,endash,emdash" + k="37" /> + <hkern g1="bracketleft,braceleft" + g2="minus" + k="72" /> + <hkern g1="bracketleft,braceleft" + g2="nine" + k="-16" /> + <hkern g1="bracketleft,braceleft" + g2="plus" + k="72" /> + <hkern g1="bracketleft,braceleft" + g2="seven" + k="-82" /> + <hkern g1="colon,semicolon" + g2="nine" + k="-25" /> + <hkern g1="colon,semicolon" + g2="seven" + k="-16" /> + <hkern g1="comma,period,ellipsis" + g2="zero,six" + k="33" /> + <hkern g1="comma,period,ellipsis" + g2="four" + k="82" /> + <hkern g1="comma,period,ellipsis" + g2="seven" + k="33" /> + <hkern g1="comma,period,ellipsis" + g2="eight" + k="16" /> + <hkern g1="comma,period,ellipsis" + g2="one" + k="115" /> + <hkern g1="guilsinglleft" + g2="one" + k="-33" /> + <hkern g1="guilsinglleft" + g2="two" + k="-25" /> + <hkern g1="guilsinglleft" + g2="exclam" + k="2" /> + <hkern g1="guilsinglright" + g2="seven" + k="49" /> + <hkern g1="guilsinglright" + g2="one" + k="49" /> + <hkern g1="guilsinglright" + g2="two" + k="16" /> + <hkern g1="guilsinglright" + g2="three" + k="16" /> + <hkern g1="hyphen,endash,emdash" + g2="five" + k="16" /> + <hkern g1="hyphen,endash,emdash" + g2="four" + k="8" /> + <hkern g1="hyphen,endash,emdash" + g2="seven" + k="49" /> + <hkern g1="hyphen,endash,emdash" + g2="one" + k="33" /> + <hkern g1="hyphen,endash,emdash" + g2="three" + k="33" /> + <hkern g1="hyphen,endash,emdash" + g2="bracketright,braceright" + k="37" /> + <hkern g1="hyphen,endash,emdash" + g2="parenright" + k="82" /> + <hkern g1="hyphen,endash,emdash" + g2="space" + k="102" /> + <hkern g1="numbersign" + g2="zero,six" + k="33" /> + <hkern g1="parenleft" + g2="zero,six" + k="33" /> + <hkern g1="parenleft" + g2="hyphen,endash,emdash" + k="82" /> + <hkern g1="questiondown" + g2="zero,six" + k="33" /> + <hkern g1="questiondown" + g2="quoteleft,quotedblleft" + k="53" /> + <hkern g1="questiondown" + g2="quotesinglbase,quotedblbase" + k="-72" /> + <hkern g1="quotedbl,quotesingle" + g2="four" + k="82" /> + <hkern g1="quotedbl,quotesingle" + g2="seven" + k="-33" /> + <hkern g1="quotedbl,quotesingle" + g2="one" + k="-49" /> + <hkern g1="quotedbl,quotesingle" + g2="two" + k="-16" /> + <hkern g1="quoteleft,quotedblleft" + g2="zero,six" + k="16" /> + <hkern g1="quoteleft,quotedblleft" + g2="four" + k="115" /> + <hkern g1="quoteleft,quotedblleft" + g2="seven" + k="-33" /> + <hkern g1="quoteleft,quotedblleft" + g2="one" + k="-33" /> + <hkern g1="quoteright,quotedblright" + g2="zero,six" + k="33" /> + <hkern g1="quoteright,quotedblright" + g2="five" + k="49" /> + <hkern g1="quoteright,quotedblright" + g2="four" + k="115" /> + <hkern g1="quoteright,quotedblright" + g2="seven" + k="-33" /> + <hkern g1="quoteright,quotedblright" + g2="eight" + k="16" /> + <hkern g1="quoteright,quotedblright" + g2="one" + k="-16" /> + <hkern g1="quoteright,quotedblright" + g2="two" + k="16" /> + <hkern g1="quoteright,quotedblright" + g2="comma,period,ellipsis" + k="127" /> + <hkern g1="quoteright,quotedblright" + g2="question" + k="-37" /> + <hkern g1="quoteright,quotedblright" + g2="questiondown" + k="109" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="zero,six" + k="49" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="four" + k="49" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="seven" + k="33" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="one" + k="66" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="two" + k="-16" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="three" + k="33" /> + <hkern g1="slash" + g2="zero,six" + k="66" /> + <hkern g1="underscore" + g2="zero,six" + k="33" /> + <hkern g1="exclam" + g2="guilsinglright" + k="2" /> + <hkern g1="eight" + g2="comma,period,ellipsis" + k="16" /> + <hkern g1="eight" + g2="zero,six" + k="8" /> + <hkern g1="five" + g2="comma,period,ellipsis" + k="16" /> + <hkern g1="five" + g2="quoteleft,quotedblleft" + k="16" /> + <hkern g1="five" + g2="quotesinglbase,quotedblbase" + k="16" /> + <hkern g1="four" + g2="quoteleft,quotedblleft" + k="33" /> + <hkern g1="four" + g2="quoteright,quotedblright" + k="33" /> + <hkern g1="one" + g2="comma,period,ellipsis" + k="16" /> + <hkern g1="one" + g2="zero,six" + k="-8" /> + <hkern g1="one" + g2="quoteright,quotedblright" + k="16" /> + <hkern g1="one" + g2="bracketright,braceright" + k="-16" /> + <hkern g1="one" + g2="copyright,registered" + k="16" /> + <hkern g1="one" + g2="quotedbl,quotesingle" + k="16" /> + <hkern g1="seven" + g2="comma,period,ellipsis" + k="180" /> + <hkern g1="seven" + g2="quoteleft,quotedblleft" + k="-49" /> + <hkern g1="seven" + g2="quotesinglbase,quotedblbase" + k="115" /> + <hkern g1="seven" + g2="quoteright,quotedblright" + k="-33" /> + <hkern g1="seven" + g2="copyright,registered" + k="16" /> + <hkern g1="seven" + g2="quotedbl,quotesingle" + k="-33" /> + <hkern g1="seven" + g2="colon,semicolon" + k="49" /> + <hkern g1="seven" + g2="guilsinglleft" + k="98" /> + <hkern g1="seven" + g2="guilsinglright" + k="33" /> + <hkern g1="seven" + g2="hyphen,endash,emdash" + k="82" /> + <hkern g1="six" + g2="comma,period,ellipsis" + k="16" /> + <hkern g1="six" + g2="quotesinglbase,quotedblbase" + k="16" /> + <hkern g1="six" + g2="copyright,registered" + k="16" /> + <hkern g1="three" + g2="comma,period,ellipsis" + k="16" /> + <hkern g1="three" + g2="quoteright,quotedblright" + k="8" /> + <hkern g1="three" + g2="hyphen,endash,emdash" + k="16" /> + <hkern g1="two" + g2="guilsinglright" + k="8" /> + <hkern g1="zero,nine" + g2="comma,period,ellipsis" + k="66" /> + <hkern g1="zero,nine" + g2="zero,six" + k="8" /> + <hkern g1="zero,nine" + g2="quoteleft,quotedblleft" + k="16" /> + <hkern g1="zero,nine" + g2="quotesinglbase,quotedblbase" + k="33" /> + <hkern g1="zero,nine" + g2="quoteright,quotedblright" + k="16" /> + <hkern g1="zero,nine" + g2="approxequal" + k="-33" /> + <hkern g1="zero,nine" + g2="asciitilde" + k="-16" /> + <hkern g1="zero,nine" + g2="backslash" + k="66" /> + <hkern g1="zero,nine" + g2="eight" + k="8" /> + <hkern g1="zero,nine" + g2="equal" + k="-16" /> + <hkern g1="zero,nine" + g2="five" + k="8" /> + <hkern g1="zero,nine" + g2="greaterequal" + k="-16" /> + <hkern g1="zero,nine" + g2="infinity" + k="-16" /> + <hkern g1="zero,nine" + g2="lessequal" + k="-16" /> + <hkern g1="zero,nine" + g2="minus" + k="-16" /> + <hkern g1="zero,nine" + g2="notequal" + k="-16" /> + <hkern g1="zero,nine" + g2="numbersign" + k="33" /> + <hkern g1="zero,nine" + g2="one" + k="8" /> + <hkern g1="zero,nine" + g2="parenright" + k="33" /> + <hkern g1="zero,nine" + g2="percent" + k="33" /> + <hkern g1="zero,nine" + g2="slash" + k="66" /> + <hkern g1="zero,nine" + g2="summation" + k="33" /> + <hkern g1="zero,nine" + g2="three" + k="8" /> + <hkern g1="zero,nine" + g2="underscore" + k="33" /> + <hkern g1="space" + g2="hyphen,endash,emdash" + k="102" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="55" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="J" + k="-18" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="Oslash" + k="43" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="S,Scaron" + k="18" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="133" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="33" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="V" + k="115" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="90" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="Y,Yacute,Ydieresis" + k="139" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="10" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="ampersand" + k="18" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="asciicircum" + k="51" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="asciitilde" + k="41" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="asterisk" + k="215" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="at" + k="66" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="backslash" + k="145" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="braceleft" + k="37" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="bullet" + k="63" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="20" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="copyright,registered" + k="55" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="dagger" + k="63" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="divide" + k="23" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="germandbls" + k="8" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="guilsinglleft" + k="45" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="hyphen,endash,emdash" + k="45" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="less" + k="41" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="m,n,p,r,ntilde" + k="8" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="ordfeminine" + k="213" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="ordmasculine" + k="176" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="oslash" + k="10" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="paragraph" + k="49" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="parenleft" + k="18" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="periodcentered" + k="45" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="plus" + k="35" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="question" + k="96" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="questiondown" + k="-59" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="quotedbl,quotesingle" + k="92" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="quoteleft,quotedblleft" + k="225" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="quoteright,quotedblright" + k="225" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="quotesinglbase,quotedblbase" + k="-18" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="slash" + k="-41" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="t" + k="49" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="trademark" + k="176" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="49" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="underscore" + k="-61" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="66" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="w" + k="61" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="57" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="Eth" + k="2" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="X" + k="8" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="Z,Zcaron" + k="-4" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="bracketright,braceright" + k="2" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="colon,semicolon" + k="2" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="daggerdbl" + k="2" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="equal" + k="4" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="exclam" + k="4" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="exclamdown" + k="2" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="f,fi,fl,f_f_i,f_f_l" + k="4" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="greater" + k="-4" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="guilsinglright" + k="2" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="multiply" + k="2" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="parenright" + k="4" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="section" + k="2" /> + <hkern g1="B" + g2="J" + k="-33" /> + <hkern g1="B" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="-2" /> + <hkern g1="B" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="2" /> + <hkern g1="B" + g2="Y,Yacute,Ydieresis" + k="14" /> + <hkern g1="B" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="16" /> + <hkern g1="B" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="-10" /> + <hkern g1="B" + g2="guilsinglleft" + k="20" /> + <hkern g1="B" + g2="m,n,p,r,ntilde" + k="8" /> + <hkern g1="B" + g2="oslash" + k="8" /> + <hkern g1="B" + g2="quoteright,quotedblright" + k="29" /> + <hkern g1="B" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="37" /> + <hkern g1="B" + g2="w" + k="8" /> + <hkern g1="B" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="8" /> + <hkern g1="B" + g2="Z,Zcaron" + k="-2" /> + <hkern g1="B" + g2="f,fi,fl,f_f_i,f_f_l" + k="8" /> + <hkern g1="B" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="39" /> + <hkern g1="B" + g2="comma,period,ellipsis" + k="27" /> + <hkern g1="B" + g2="s,scaron" + k="8" /> + <hkern g1="C,Ccedilla" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="18" /> + <hkern g1="C,Ccedilla" + g2="Oslash" + k="10" /> + <hkern g1="C,Ccedilla" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="12" /> + <hkern g1="C,Ccedilla" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="2" /> + <hkern g1="C,Ccedilla" + g2="V" + k="23" /> + <hkern g1="C,Ccedilla" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="33" /> + <hkern g1="C,Ccedilla" + g2="Y,Yacute,Ydieresis" + k="53" /> + <hkern g1="C,Ccedilla" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="39" /> + <hkern g1="C,Ccedilla" + g2="ampersand" + k="33" /> + <hkern g1="C,Ccedilla" + g2="asciicircum" + k="18" /> + <hkern g1="C,Ccedilla" + g2="at" + k="53" /> + <hkern g1="C,Ccedilla" + g2="backslash" + k="55" /> + <hkern g1="C,Ccedilla" + g2="braceleft" + k="37" /> + <hkern g1="C,Ccedilla" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="39" /> + <hkern g1="C,Ccedilla" + g2="copyright,registered" + k="8" /> + <hkern g1="C,Ccedilla" + g2="germandbls" + k="41" /> + <hkern g1="C,Ccedilla" + g2="guilsinglleft" + k="25" /> + <hkern g1="C,Ccedilla" + g2="hyphen,endash,emdash" + k="2" /> + <hkern g1="C,Ccedilla" + g2="m,n,p,r,ntilde" + k="29" /> + <hkern g1="C,Ccedilla" + g2="ordfeminine" + k="39" /> + <hkern g1="C,Ccedilla" + g2="ordmasculine" + k="8" /> + <hkern g1="C,Ccedilla" + g2="oslash" + k="29" /> + <hkern g1="C,Ccedilla" + g2="plus" + k="2" /> + <hkern g1="C,Ccedilla" + g2="questiondown" + k="45" /> + <hkern g1="C,Ccedilla" + g2="quoteleft,quotedblleft" + k="2" /> + <hkern g1="C,Ccedilla" + g2="quoteright,quotedblright" + k="2" /> + <hkern g1="C,Ccedilla" + g2="quotesinglbase,quotedblbase" + k="8" /> + <hkern g1="C,Ccedilla" + g2="slash" + k="55" /> + <hkern g1="C,Ccedilla" + g2="t" + k="12" /> + <hkern g1="C,Ccedilla" + g2="trademark" + k="20" /> + <hkern g1="C,Ccedilla" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="41" /> + <hkern g1="C,Ccedilla" + g2="underscore" + k="23" /> + <hkern g1="C,Ccedilla" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="20" /> + <hkern g1="C,Ccedilla" + g2="w" + k="20" /> + <hkern g1="C,Ccedilla" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="29" /> + <hkern g1="C,Ccedilla" + g2="X" + k="35" /> + <hkern g1="C,Ccedilla" + g2="bracketright,braceright" + k="-10" /> + <hkern g1="C,Ccedilla" + g2="f,fi,fl,f_f_i,f_f_l" + k="18" /> + <hkern g1="C,Ccedilla" + g2="greater" + k="-18" /> + <hkern g1="C,Ccedilla" + g2="guilsinglright" + k="2" /> + <hkern g1="C,Ccedilla" + g2="parenright" + k="8" /> + <hkern g1="C,Ccedilla" + g2="section" + k="12" /> + <hkern g1="C,Ccedilla" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="45" /> + <hkern g1="C,Ccedilla" + g2="comma,period,ellipsis" + k="25" /> + <hkern g1="C,Ccedilla" + g2="s,scaron" + k="18" /> + <hkern g1="C,Ccedilla" + g2="b,h,k,l,thorn" + k="20" /> + <hkern g1="C,Ccedilla" + g2="florin" + k="82" /> + <hkern g1="C,Ccedilla" + g2="x" + k="18" /> + <hkern g1="C,Ccedilla" + g2="z,zcaron" + k="18" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="S,Scaron" + k="8" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="49" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="V" + k="51" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="43" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="Y,Yacute,Ydieresis" + k="94" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="ampersand" + k="45" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="asciicircum" + k="-20" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="asciitilde" + k="-20" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="asterisk" + k="8" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="backslash" + k="76" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="-2" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="copyright,registered" + k="-18" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="dagger" + k="-2" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="divide" + k="-2" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="germandbls" + k="6" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="guilsinglleft" + k="12" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="less" + k="-2" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="ordfeminine" + k="20" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="periodcentered" + k="-2" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="plus" + k="-2" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="questiondown" + k="49" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="quoteleft,quotedblleft" + k="14" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="quoteright,quotedblright" + k="23" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="quotesinglbase,quotedblbase" + k="102" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="slash" + k="76" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="t" + k="-49" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="trademark" + k="70" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="underscore" + k="82" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="X" + k="66" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="Z,Zcaron" + k="20" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="bracketright,braceright" + k="43" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="daggerdbl" + k="-2" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="equal" + k="-2" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="exclam" + k="2" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="exclamdown" + k="2" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="f,fi,fl,f_f_i,f_f_l" + k="-12" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="greater" + k="-20" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="guilsinglright" + k="20" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="multiply" + k="-2" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="parenright" + k="43" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="55" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="comma,period,ellipsis" + k="63" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="b,h,k,l,thorn" + k="2" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="florin" + k="119" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="z,zcaron" + k="-2" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="Lslash" + k="-18" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="bracketleft" + k="8" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="lslash" + k="-10" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="8" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="J" + k="23" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="Oslash" + k="8" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="-4" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="V" + k="-2" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-2" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="Y,Yacute,Ydieresis" + k="-2" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="27" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="ampersand" + k="4" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="at" + k="45" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="braceleft" + k="57" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="37" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="dagger" + k="-2" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="germandbls" + k="37" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="guilsinglleft" + k="41" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="hyphen,endash,emdash" + k="8" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="m,n,p,r,ntilde" + k="27" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="ordfeminine" + k="20" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="ordmasculine" + k="20" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="oslash" + k="37" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="plus" + k="2" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="quoteright,quotedblright" + k="8" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="29" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="29" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="w" + k="29" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="29" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="X" + k="-2" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="Z,Zcaron" + k="-4" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="bracketright,braceright" + k="-27" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="daggerdbl" + k="-2" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="f,fi,fl,f_f_i,f_f_l" + k="8" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="greater" + k="-23" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="guilsinglright" + k="18" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="parenright" + k="-18" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="s,scaron" + k="8" /> + <hkern g1="F" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="10" /> + <hkern g1="F" + g2="J" + k="80" /> + <hkern g1="F" + g2="Oslash" + k="2" /> + <hkern g1="F" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="-63" /> + <hkern g1="F" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="8" /> + <hkern g1="F" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-4" /> + <hkern g1="F" + g2="Y,Yacute,Ydieresis" + k="-4" /> + <hkern g1="F" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="72" /> + <hkern g1="F" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="70" /> + <hkern g1="F" + g2="guilsinglleft" + k="41" /> + <hkern g1="F" + g2="hyphen,endash,emdash" + k="23" /> + <hkern g1="F" + g2="m,n,p,r,ntilde" + k="55" /> + <hkern g1="F" + g2="oslash" + k="80" /> + <hkern g1="F" + g2="quotedbl,quotesingle" + k="-41" /> + <hkern g1="F" + g2="quoteleft,quotedblleft" + k="-39" /> + <hkern g1="F" + g2="quoteright,quotedblright" + k="-27" /> + <hkern g1="F" + g2="quotesinglbase,quotedblbase" + k="111" /> + <hkern g1="F" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="90" /> + <hkern g1="F" + g2="w" + k="39" /> + <hkern g1="F" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="35" /> + <hkern g1="F" + g2="Eth" + k="-8" /> + <hkern g1="F" + g2="Z,Zcaron" + k="-23" /> + <hkern g1="F" + g2="bracketright,braceright" + k="-53" /> + <hkern g1="F" + g2="colon,semicolon" + k="2" /> + <hkern g1="F" + g2="f,fi,fl,f_f_i,f_f_l" + k="18" /> + <hkern g1="F" + g2="guilsinglright" + k="20" /> + <hkern g1="F" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="96" /> + <hkern g1="F" + g2="comma,period,ellipsis" + k="207" /> + <hkern g1="F" + g2="s,scaron" + k="31" /> + <hkern g1="F" + g2="b,h,k,l,thorn" + k="-8" /> + <hkern g1="F" + g2="z,zcaron" + k="23" /> + <hkern g1="F" + g2="i,igrave,iacute,icircumflex,idieresis" + k="8" /> + <hkern g1="F" + g2="j" + k="10" /> + <hkern g1="G" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="12" /> + <hkern g1="G" + g2="V" + k="33" /> + <hkern g1="G" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="23" /> + <hkern g1="G" + g2="Y,Yacute,Ydieresis" + k="63" /> + <hkern g1="G" + g2="ampersand" + k="33" /> + <hkern g1="G" + g2="asciitilde" + k="-8" /> + <hkern g1="G" + g2="backslash" + k="49" /> + <hkern g1="G" + g2="braceleft" + k="18" /> + <hkern g1="G" + g2="germandbls" + k="2" /> + <hkern g1="G" + g2="guilsinglleft" + k="14" /> + <hkern g1="G" + g2="ordmasculine" + k="2" /> + <hkern g1="G" + g2="question" + k="2" /> + <hkern g1="G" + g2="questiondown" + k="-37" /> + <hkern g1="G" + g2="quoteleft,quotedblleft" + k="2" /> + <hkern g1="G" + g2="quoteright,quotedblright" + k="12" /> + <hkern g1="G" + g2="slash" + k="-8" /> + <hkern g1="G" + g2="t" + k="-45" /> + <hkern g1="G" + g2="trademark" + k="23" /> + <hkern g1="G" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="8" /> + <hkern g1="G" + g2="underscore" + k="-20" /> + <hkern g1="G" + g2="X" + k="2" /> + <hkern g1="G" + g2="bracketright,braceright" + k="2" /> + <hkern g1="G" + g2="exclamdown" + k="2" /> + <hkern g1="G" + g2="greater" + k="-39" /> + <hkern g1="G" + g2="guilsinglright" + k="2" /> + <hkern g1="G" + g2="parenright" + k="2" /> + <hkern g1="G" + g2="s,scaron" + k="-2" /> + <hkern g1="G" + g2="x" + k="-2" /> + <hkern g1="G" + g2="lslash" + k="-37" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="8" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="ampersand" + k="2" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="at" + k="18" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="braceleft" + k="53" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="bullet" + k="18" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="2" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="germandbls" + k="4" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="guilsinglleft" + k="18" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="ordfeminine" + k="4" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="ordmasculine" + k="2" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="oslash" + k="2" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="questiondown" + k="53" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="2" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="w" + k="2" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="greater" + k="-18" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="lslash" + k="2" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="J" + k="2" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="-2" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="2" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="ampersand" + k="14" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="asciitilde" + k="8" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="at" + k="12" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="backslash" + k="2" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="braceleft" + k="41" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="bullet" + k="41" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="10" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="divide" + k="8" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="germandbls" + k="23" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="guilsinglleft" + k="23" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="hyphen,endash,emdash" + k="8" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="less" + k="8" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="m,n,p,r,ntilde" + k="10" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="ordfeminine" + k="2" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="ordmasculine" + k="2" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="oslash" + k="10" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="periodcentered" + k="20" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="plus" + k="8" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="questiondown" + k="49" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="quotesinglbase,quotedblbase" + k="82" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="slash" + k="49" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="trademark" + k="2" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="2" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="underscore" + k="33" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="X" + k="2" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="bracketright,braceright" + k="2" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="colon,semicolon" + k="10" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="equal" + k="2" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="exclamdown" + k="23" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="guilsinglright" + k="2" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="parenright" + k="2" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="59" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="comma,period,ellipsis" + k="55" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="s,scaron" + k="2" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="florin" + k="102" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="lslash" + k="2" /> + <hkern g1="K" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="111" /> + <hkern g1="K" + g2="J" + k="14" /> + <hkern g1="K" + g2="Oslash" + k="45" /> + <hkern g1="K" + g2="S,Scaron" + k="23" /> + <hkern g1="K" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="-2" /> + <hkern g1="K" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="18" /> + <hkern g1="K" + g2="V" + k="27" /> + <hkern g1="K" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="27" /> + <hkern g1="K" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="33" /> + <hkern g1="K" + g2="ampersand" + k="106" /> + <hkern g1="K" + g2="asciicircum" + k="41" /> + <hkern g1="K" + g2="asciitilde" + k="125" /> + <hkern g1="K" + g2="asterisk" + k="18" /> + <hkern g1="K" + g2="at" + k="109" /> + <hkern g1="K" + g2="backslash" + k="-4" /> + <hkern g1="K" + g2="braceleft" + k="84" /> + <hkern g1="K" + g2="bullet" + k="100" /> + <hkern g1="K" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="74" /> + <hkern g1="K" + g2="copyright,registered" + k="115" /> + <hkern g1="K" + g2="divide" + k="61" /> + <hkern g1="K" + g2="germandbls" + k="68" /> + <hkern g1="K" + g2="guilsinglleft" + k="131" /> + <hkern g1="K" + g2="hyphen,endash,emdash" + k="145" /> + <hkern g1="K" + g2="less" + k="106" /> + <hkern g1="K" + g2="m,n,p,r,ntilde" + k="29" /> + <hkern g1="K" + g2="ordfeminine" + k="82" /> + <hkern g1="K" + g2="ordmasculine" + k="63" /> + <hkern g1="K" + g2="oslash" + k="49" /> + <hkern g1="K" + g2="paragraph" + k="10" /> + <hkern g1="K" + g2="parenleft" + k="4" /> + <hkern g1="K" + g2="periodcentered" + k="82" /> + <hkern g1="K" + g2="plus" + k="80" /> + <hkern g1="K" + g2="question" + k="14" /> + <hkern g1="K" + g2="questiondown" + k="-25" /> + <hkern g1="K" + g2="quoteleft,quotedblleft" + k="8" /> + <hkern g1="K" + g2="quoteright,quotedblright" + k="2" /> + <hkern g1="K" + g2="slash" + k="-39" /> + <hkern g1="K" + g2="t" + k="68" /> + <hkern g1="K" + g2="trademark" + k="-2" /> + <hkern g1="K" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="113" /> + <hkern g1="K" + g2="underscore" + k="-43" /> + <hkern g1="K" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="100" /> + <hkern g1="K" + g2="w" + k="94" /> + <hkern g1="K" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="127" /> + <hkern g1="K" + g2="Eth" + k="8" /> + <hkern g1="K" + g2="Z,Zcaron" + k="-2" /> + <hkern g1="K" + g2="bracketright,braceright" + k="-8" /> + <hkern g1="K" + g2="colon,semicolon" + k="20" /> + <hkern g1="K" + g2="equal" + k="94" /> + <hkern g1="K" + g2="f,fi,fl,f_f_i,f_f_l" + k="43" /> + <hkern g1="K" + g2="greater" + k="-8" /> + <hkern g1="K" + g2="guilsinglright" + k="53" /> + <hkern g1="K" + g2="multiply" + k="20" /> + <hkern g1="K" + g2="parenright" + k="-8" /> + <hkern g1="K" + g2="section" + k="29" /> + <hkern g1="K" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="18" /> + <hkern g1="K" + g2="s,scaron" + k="20" /> + <hkern g1="K" + g2="florin" + k="90" /> + <hkern g1="K" + g2="x" + k="18" /> + <hkern g1="K" + g2="lslash" + k="2" /> + <hkern g1="L,Lslash" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="68" /> + <hkern g1="L,Lslash" + g2="J" + k="-39" /> + <hkern g1="L,Lslash" + g2="Oslash" + k="39" /> + <hkern g1="L,Lslash" + g2="S,Scaron" + k="-2" /> + <hkern g1="L,Lslash" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="143" /> + <hkern g1="L,Lslash" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="20" /> + <hkern g1="L,Lslash" + g2="V" + k="125" /> + <hkern g1="L,Lslash" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="100" /> + <hkern g1="L,Lslash" + g2="Y,Yacute,Ydieresis" + k="135" /> + <hkern g1="L,Lslash" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="-2" /> + <hkern g1="L,Lslash" + g2="ampersand" + k="47" /> + <hkern g1="L,Lslash" + g2="asciicircum" + k="98" /> + <hkern g1="L,Lslash" + g2="asciitilde" + k="90" /> + <hkern g1="L,Lslash" + g2="asterisk" + k="143" /> + <hkern g1="L,Lslash" + g2="at" + k="37" /> + <hkern g1="L,Lslash" + g2="backslash" + k="152" /> + <hkern g1="L,Lslash" + g2="braceleft" + k="53" /> + <hkern g1="L,Lslash" + g2="bullet" + k="39" /> + <hkern g1="L,Lslash" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="8" /> + <hkern g1="L,Lslash" + g2="copyright,registered" + k="39" /> + <hkern g1="L,Lslash" + g2="dagger" + k="4" /> + <hkern g1="L,Lslash" + g2="divide" + k="16" /> + <hkern g1="L,Lslash" + g2="germandbls" + k="8" /> + <hkern g1="L,Lslash" + g2="guilsinglleft" + k="41" /> + <hkern g1="L,Lslash" + g2="hyphen,endash,emdash" + k="74" /> + <hkern g1="L,Lslash" + g2="less" + k="74" /> + <hkern g1="L,Lslash" + g2="ordfeminine" + k="154" /> + <hkern g1="L,Lslash" + g2="ordmasculine" + k="154" /> + <hkern g1="L,Lslash" + g2="oslash" + k="8" /> + <hkern g1="L,Lslash" + g2="paragraph" + k="100" /> + <hkern g1="L,Lslash" + g2="periodcentered" + k="4" /> + <hkern g1="L,Lslash" + g2="plus" + k="39" /> + <hkern g1="L,Lslash" + g2="question" + k="96" /> + <hkern g1="L,Lslash" + g2="questiondown" + k="-59" /> + <hkern g1="L,Lslash" + g2="quotedbl,quotesingle" + k="160" /> + <hkern g1="L,Lslash" + g2="quoteleft,quotedblleft" + k="147" /> + <hkern g1="L,Lslash" + g2="quoteright,quotedblright" + k="127" /> + <hkern g1="L,Lslash" + g2="quotesinglbase,quotedblbase" + k="-45" /> + <hkern g1="L,Lslash" + g2="slash" + k="-80" /> + <hkern g1="L,Lslash" + g2="t" + k="35" /> + <hkern g1="L,Lslash" + g2="trademark" + k="227" /> + <hkern g1="L,Lslash" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="39" /> + <hkern g1="L,Lslash" + g2="underscore" + k="-63" /> + <hkern g1="L,Lslash" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="84" /> + <hkern g1="L,Lslash" + g2="w" + k="80" /> + <hkern g1="L,Lslash" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="94" /> + <hkern g1="L,Lslash" + g2="Z,Zcaron" + k="-8" /> + <hkern g1="L,Lslash" + g2="bracketright,braceright" + k="-18" /> + <hkern g1="L,Lslash" + g2="equal" + k="33" /> + <hkern g1="L,Lslash" + g2="f,fi,fl,f_f_i,f_f_l" + k="20" /> + <hkern g1="L,Lslash" + g2="greater" + k="-8" /> + <hkern g1="L,Lslash" + g2="multiply" + k="-2" /> + <hkern g1="L,Lslash" + g2="parenright" + k="-18" /> + <hkern g1="L,Lslash" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="-37" /> + <hkern g1="L,Lslash" + g2="comma,period,ellipsis" + k="-20" /> + <hkern g1="L,Lslash" + g2="s,scaron" + k="-4" /> + <hkern g1="L,Lslash" + g2="z,zcaron" + k="-4" /> + <hkern g1="L,Lslash" + g2="j" + k="-2" /> + <hkern g1="L,Lslash" + g2="bar" + k="-37" /> + <hkern g1="L,Lslash" + g2="brokenbar" + k="-37" /> + <hkern g1="Oslash" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="39" /> + <hkern g1="Oslash" + g2="V" + k="43" /> + <hkern g1="Oslash" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="35" /> + <hkern g1="Oslash" + g2="Y,Yacute,Ydieresis" + k="76" /> + <hkern g1="Oslash" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="8" /> + <hkern g1="Oslash" + g2="ampersand" + k="4" /> + <hkern g1="Oslash" + g2="backslash" + k="55" /> + <hkern g1="Oslash" + g2="dagger" + k="-2" /> + <hkern g1="Oslash" + g2="germandbls" + k="33" /> + <hkern g1="Oslash" + g2="ordfeminine" + k="18" /> + <hkern g1="Oslash" + g2="questiondown" + k="76" /> + <hkern g1="Oslash" + g2="quotesinglbase,quotedblbase" + k="63" /> + <hkern g1="Oslash" + g2="slash" + k="76" /> + <hkern g1="Oslash" + g2="trademark" + k="4" /> + <hkern g1="Oslash" + g2="underscore" + k="82" /> + <hkern g1="Oslash" + g2="X" + k="37" /> + <hkern g1="Oslash" + g2="Z,Zcaron" + k="18" /> + <hkern g1="Oslash" + g2="bracketright,braceright" + k="43" /> + <hkern g1="Oslash" + g2="daggerdbl" + k="-2" /> + <hkern g1="Oslash" + g2="equal" + k="-2" /> + <hkern g1="Oslash" + g2="f,fi,fl,f_f_i,f_f_l" + k="-2" /> + <hkern g1="Oslash" + g2="guilsinglright" + k="2" /> + <hkern g1="Oslash" + g2="parenright" + k="43" /> + <hkern g1="Oslash" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="53" /> + <hkern g1="Oslash" + g2="comma,period,ellipsis" + k="63" /> + <hkern g1="Oslash" + g2="florin" + k="80" /> + <hkern g1="Oslash" + g2="lslash" + k="-8" /> + <hkern g1="P" + g2="J" + k="141" /> + <hkern g1="P" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="8" /> + <hkern g1="P" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="10" /> + <hkern g1="P" + g2="Y,Yacute,Ydieresis" + k="14" /> + <hkern g1="P" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="57" /> + <hkern g1="P" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="78" /> + <hkern g1="P" + g2="guilsinglleft" + k="59" /> + <hkern g1="P" + g2="hyphen,endash,emdash" + k="20" /> + <hkern g1="P" + g2="m,n,p,r,ntilde" + k="29" /> + <hkern g1="P" + g2="oslash" + k="70" /> + <hkern g1="P" + g2="quotedbl,quotesingle" + k="-20" /> + <hkern g1="P" + g2="quoteleft,quotedblleft" + k="-27" /> + <hkern g1="P" + g2="quoteright,quotedblright" + k="-18" /> + <hkern g1="P" + g2="quotesinglbase,quotedblbase" + k="111" /> + <hkern g1="P" + g2="t" + k="-20" /> + <hkern g1="P" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="41" /> + <hkern g1="P" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-18" /> + <hkern g1="P" + g2="Eth" + k="-18" /> + <hkern g1="P" + g2="Z,Zcaron" + k="18" /> + <hkern g1="P" + g2="bracketright,braceright" + k="2" /> + <hkern g1="P" + g2="f,fi,fl,f_f_i,f_f_l" + k="-12" /> + <hkern g1="P" + g2="guilsinglright" + k="-18" /> + <hkern g1="P" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="121" /> + <hkern g1="P" + g2="comma,period,ellipsis" + k="254" /> + <hkern g1="P" + g2="s,scaron" + k="47" /> + <hkern g1="P" + g2="b,h,k,l,thorn" + k="18" /> + <hkern g1="P" + g2="z,zcaron" + k="18" /> + <hkern g1="P" + g2="j" + k="8" /> + <hkern g1="P" + g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Ntilde,Thorn,IJ,uni01C4,uni01C7,uni01CA,uni01F1" + k="2" /> + <hkern g1="Q" + g2="J" + k="-8" /> + <hkern g1="Q" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="39" /> + <hkern g1="Q" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="43" /> + <hkern g1="Q" + g2="Y,Yacute,Ydieresis" + k="84" /> + <hkern g1="Q" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="6" /> + <hkern g1="Q" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="-2" /> + <hkern g1="Q" + g2="guilsinglleft" + k="2" /> + <hkern g1="Q" + g2="quoteleft,quotedblleft" + k="4" /> + <hkern g1="Q" + g2="quoteright,quotedblright" + k="23" /> + <hkern g1="Q" + g2="t" + k="-4" /> + <hkern g1="Q" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="2" /> + <hkern g1="Q" + g2="w" + k="8" /> + <hkern g1="Q" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="8" /> + <hkern g1="Q" + g2="Eth" + k="-8" /> + <hkern g1="Q" + g2="Z,Zcaron" + k="-2" /> + <hkern g1="Q" + g2="bracketright,braceright" + k="25" /> + <hkern g1="Q" + g2="f,fi,fl,f_f_i,f_f_l" + k="-2" /> + <hkern g1="Q" + g2="guilsinglright" + k="29" /> + <hkern g1="Q" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="27" /> + <hkern g1="Q" + g2="comma,period,ellipsis" + k="25" /> + <hkern g1="Q" + g2="z,zcaron" + k="-2" /> + <hkern g1="Q" + g2="j" + k="-4" /> + <hkern g1="R" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="10" /> + <hkern g1="R" + g2="J" + k="29" /> + <hkern g1="R" + g2="Oslash" + k="8" /> + <hkern g1="R" + g2="V" + k="10" /> + <hkern g1="R" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="12" /> + <hkern g1="R" + g2="Y,Yacute,Ydieresis" + k="20" /> + <hkern g1="R" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="12" /> + <hkern g1="R" + g2="ampersand" + k="14" /> + <hkern g1="R" + g2="asciicircum" + k="-18" /> + <hkern g1="R" + g2="asciitilde" + k="18" /> + <hkern g1="R" + g2="asterisk" + k="-18" /> + <hkern g1="R" + g2="at" + k="29" /> + <hkern g1="R" + g2="backslash" + k="18" /> + <hkern g1="R" + g2="braceleft" + k="20" /> + <hkern g1="R" + g2="bullet" + k="39" /> + <hkern g1="R" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="39" /> + <hkern g1="R" + g2="dagger" + k="-23" /> + <hkern g1="R" + g2="divide" + k="2" /> + <hkern g1="R" + g2="germandbls" + k="27" /> + <hkern g1="R" + g2="guilsinglleft" + k="33" /> + <hkern g1="R" + g2="hyphen,endash,emdash" + k="39" /> + <hkern g1="R" + g2="less" + k="8" /> + <hkern g1="R" + g2="m,n,p,r,ntilde" + k="8" /> + <hkern g1="R" + g2="ordfeminine" + k="37" /> + <hkern g1="R" + g2="oslash" + k="57" /> + <hkern g1="R" + g2="periodcentered" + k="8" /> + <hkern g1="R" + g2="plus" + k="20" /> + <hkern g1="R" + g2="quoteleft,quotedblleft" + k="-18" /> + <hkern g1="R" + g2="t" + k="-4" /> + <hkern g1="R" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="37" /> + <hkern g1="R" + g2="underscore" + k="-14" /> + <hkern g1="R" + g2="w" + k="18" /> + <hkern g1="R" + g2="Z,Zcaron" + k="-2" /> + <hkern g1="R" + g2="bracketright,braceright" + k="-18" /> + <hkern g1="R" + g2="daggerdbl" + k="-23" /> + <hkern g1="R" + g2="f,fi,fl,f_f_i,f_f_l" + k="-2" /> + <hkern g1="R" + g2="greater" + k="-49" /> + <hkern g1="R" + g2="multiply" + k="-27" /> + <hkern g1="R" + g2="parenright" + k="-8" /> + <hkern g1="R" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="8" /> + <hkern g1="R" + g2="comma,period,ellipsis" + k="14" /> + <hkern g1="R" + g2="s,scaron" + k="8" /> + <hkern g1="R" + g2="florin" + k="90" /> + <hkern g1="R" + g2="x" + k="-18" /> + <hkern g1="R" + g2="lslash" + k="10" /> + <hkern g1="S,Scaron" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="8" /> + <hkern g1="S,Scaron" + g2="J" + k="-18" /> + <hkern g1="S,Scaron" + g2="Oslash" + k="8" /> + <hkern g1="S,Scaron" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="8" /> + <hkern g1="S,Scaron" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="8" /> + <hkern g1="S,Scaron" + g2="V" + k="2" /> + <hkern g1="S,Scaron" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="2" /> + <hkern g1="S,Scaron" + g2="Y,Yacute,Ydieresis" + k="25" /> + <hkern g1="S,Scaron" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="8" /> + <hkern g1="S,Scaron" + g2="ampersand" + k="4" /> + <hkern g1="S,Scaron" + g2="asciicircum" + k="8" /> + <hkern g1="S,Scaron" + g2="backslash" + k="49" /> + <hkern g1="S,Scaron" + g2="braceleft" + k="37" /> + <hkern g1="S,Scaron" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="18" /> + <hkern g1="S,Scaron" + g2="germandbls" + k="57" /> + <hkern g1="S,Scaron" + g2="guilsinglleft" + k="8" /> + <hkern g1="S,Scaron" + g2="hyphen,endash,emdash" + k="8" /> + <hkern g1="S,Scaron" + g2="m,n,p,r,ntilde" + k="55" /> + <hkern g1="S,Scaron" + g2="ordfeminine" + k="23" /> + <hkern g1="S,Scaron" + g2="ordmasculine" + k="20" /> + <hkern g1="S,Scaron" + g2="oslash" + k="18" /> + <hkern g1="S,Scaron" + g2="questiondown" + k="4" /> + <hkern g1="S,Scaron" + g2="quoteleft,quotedblleft" + k="2" /> + <hkern g1="S,Scaron" + g2="quotesinglbase,quotedblbase" + k="4" /> + <hkern g1="S,Scaron" + g2="slash" + k="8" /> + <hkern g1="S,Scaron" + g2="t" + k="14" /> + <hkern g1="S,Scaron" + g2="trademark" + k="4" /> + <hkern g1="S,Scaron" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="47" /> + <hkern g1="S,Scaron" + g2="underscore" + k="18" /> + <hkern g1="S,Scaron" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="41" /> + <hkern g1="S,Scaron" + g2="w" + k="39" /> + <hkern g1="S,Scaron" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="49" /> + <hkern g1="S,Scaron" + g2="X" + k="4" /> + <hkern g1="S,Scaron" + g2="Z,Zcaron" + k="-2" /> + <hkern g1="S,Scaron" + g2="bracketright,braceright" + k="-25" /> + <hkern g1="S,Scaron" + g2="colon,semicolon" + k="2" /> + <hkern g1="S,Scaron" + g2="daggerdbl" + k="-2" /> + <hkern g1="S,Scaron" + g2="exclamdown" + k="2" /> + <hkern g1="S,Scaron" + g2="f,fi,fl,f_f_i,f_f_l" + k="27" /> + <hkern g1="S,Scaron" + g2="greater" + k="-45" /> + <hkern g1="S,Scaron" + g2="guilsinglright" + k="8" /> + <hkern g1="S,Scaron" + g2="multiply" + k="8" /> + <hkern g1="S,Scaron" + g2="parenright" + k="2" /> + <hkern g1="S,Scaron" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="14" /> + <hkern g1="S,Scaron" + g2="comma,period,ellipsis" + k="2" /> + <hkern g1="S,Scaron" + g2="b,h,k,l,thorn" + k="10" /> + <hkern g1="S,Scaron" + g2="florin" + k="100" /> + <hkern g1="S,Scaron" + g2="x" + k="27" /> + <hkern g1="S,Scaron" + g2="z,zcaron" + k="8" /> + <hkern g1="S,Scaron" + g2="Lslash" + k="-8" /> + <hkern g1="S,Scaron" + g2="lslash" + k="-2" /> + <hkern g1="S,Scaron" + g2="i,igrave,iacute,icircumflex,idieresis" + k="8" /> + <hkern g1="S,Scaron" + g2="j" + k="8" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="49" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="J" + k="139" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="Oslash" + k="39" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="-41" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="-2" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="V" + k="-41" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-41" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="Y,Yacute,Ydieresis" + k="-41" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="174" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="ampersand" + k="63" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="asciitilde" + k="141" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="asterisk" + k="-41" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="at" + k="51" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="backslash" + k="-78" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="braceleft" + k="63" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="bullet" + k="147" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="195" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="copyright,registered" + k="20" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="dagger" + k="-43" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="divide" + k="115" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="germandbls" + k="70" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="guilsinglleft" + k="244" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="hyphen,endash,emdash" + k="125" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="less" + k="86" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="m,n,p,r,ntilde" + k="127" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="oslash" + k="156" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="paragraph" + k="-23" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="periodcentered" + k="102" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="plus" + k="104" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="question" + k="-39" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="questiondown" + k="131" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="quotedbl,quotesingle" + k="-59" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="quoteleft,quotedblleft" + k="-61" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="quoteright,quotedblright" + k="-61" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="quotesinglbase,quotedblbase" + k="168" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="slash" + k="152" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="t" + k="49" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="trademark" + k="-59" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="190" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="underscore" + k="84" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="139" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="w" + k="147" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="139" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="X" + k="-27" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="Z,Zcaron" + k="-4" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="bracketright,braceright" + k="-37" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="colon,semicolon" + k="119" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="daggerdbl" + k="-25" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="equal" + k="61" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="exclamdown" + k="59" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="f,fi,fl,f_f_i,f_f_l" + k="72" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="greater" + k="12" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="guilsinglright" + k="156" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="multiply" + k="74" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="parenright" + k="-37" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="section" + k="-37" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="133" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="comma,period,ellipsis" + k="209" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="s,scaron" + k="143" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="b,h,k,l,thorn" + k="-2" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="florin" + k="217" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="x" + k="143" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="z,zcaron" + k="88" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="lslash" + k="41" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="i,igrave,iacute,icircumflex,idieresis" + k="37" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="j" + k="18" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="bar" + k="-39" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="brokenbar" + k="-41" /> + <hkern g1="Thorn" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="-8" /> + <hkern g1="Thorn" + g2="J" + k="12" /> + <hkern g1="Thorn" + g2="Oslash" + k="-8" /> + <hkern g1="Thorn" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="43" /> + <hkern g1="Thorn" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="33" /> + <hkern g1="Thorn" + g2="Y,Yacute,Ydieresis" + k="49" /> + <hkern g1="Thorn" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="-18" /> + <hkern g1="Thorn" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="-18" /> + <hkern g1="Thorn" + g2="oslash" + k="8" /> + <hkern g1="Thorn" + g2="quoteleft,quotedblleft" + k="4" /> + <hkern g1="Thorn" + g2="quotesinglbase,quotedblbase" + k="57" /> + <hkern g1="Thorn" + g2="t" + k="-47" /> + <hkern g1="Thorn" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="2" /> + <hkern g1="Thorn" + g2="w" + k="-18" /> + <hkern g1="Thorn" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-18" /> + <hkern g1="Thorn" + g2="Eth" + k="-27" /> + <hkern g1="Thorn" + g2="Z,Zcaron" + k="18" /> + <hkern g1="Thorn" + g2="bracketright,braceright" + k="23" /> + <hkern g1="Thorn" + g2="f,fi,fl,f_f_i,f_f_l" + k="-39" /> + <hkern g1="Thorn" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="59" /> + <hkern g1="Thorn" + g2="comma,period,ellipsis" + k="63" /> + <hkern g1="Thorn" + g2="s,scaron" + k="-18" /> + <hkern g1="Thorn" + g2="z,zcaron" + k="-37" /> + <hkern g1="V" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="51" /> + <hkern g1="V" + g2="J" + k="117" /> + <hkern g1="V" + g2="Oslash" + k="51" /> + <hkern g1="V" + g2="S,Scaron" + k="10" /> + <hkern g1="V" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="-41" /> + <hkern g1="V" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-20" /> + <hkern g1="V" + g2="Y,Yacute,Ydieresis" + k="-20" /> + <hkern g1="V" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="115" /> + <hkern g1="V" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="117" /> + <hkern g1="V" + g2="copyright,registered" + k="29" /> + <hkern g1="V" + g2="guilsinglleft" + k="125" /> + <hkern g1="V" + g2="hyphen,endash,emdash" + k="117" /> + <hkern g1="V" + g2="m,n,p,r,ntilde" + k="70" /> + <hkern g1="V" + g2="oslash" + k="117" /> + <hkern g1="V" + g2="quotedbl,quotesingle" + k="-39" /> + <hkern g1="V" + g2="quoteleft,quotedblleft" + k="-20" /> + <hkern g1="V" + g2="quoteright,quotedblright" + k="-37" /> + <hkern g1="V" + g2="quotesinglbase,quotedblbase" + k="174" /> + <hkern g1="V" + g2="t" + k="12" /> + <hkern g1="V" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="76" /> + <hkern g1="V" + g2="w" + k="23" /> + <hkern g1="V" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="14" /> + <hkern g1="V" + g2="bracketright,braceright" + k="-39" /> + <hkern g1="V" + g2="colon,semicolon" + k="86" /> + <hkern g1="V" + g2="f,fi,fl,f_f_i,f_f_l" + k="2" /> + <hkern g1="V" + g2="guilsinglright" + k="80" /> + <hkern g1="V" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="115" /> + <hkern g1="V" + g2="comma,period,ellipsis" + k="213" /> + <hkern g1="V" + g2="s,scaron" + k="51" /> + <hkern g1="V" + g2="z,zcaron" + k="39" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="43" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="J" + k="104" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="Oslash" + k="43" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="S,Scaron" + k="2" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="-41" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="V" + k="-20" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-20" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="Y,Yacute,Ydieresis" + k="-20" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="61" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="ampersand" + k="10" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="asciitilde" + k="41" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="asterisk" + k="-20" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="at" + k="41" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="backslash" + k="-41" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="braceleft" + k="59" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="bullet" + k="59" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="74" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="copyright,registered" + k="4" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="dagger" + k="-4" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="divide" + k="43" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="germandbls" + k="37" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="guilsinglleft" + k="70" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="hyphen,endash,emdash" + k="78" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="less" + k="41" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="m,n,p,r,ntilde" + k="61" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="oslash" + k="90" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="periodcentered" + k="59" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="plus" + k="61" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="questiondown" + k="127" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="quotedbl,quotesingle" + k="-37" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="quoteleft,quotedblleft" + k="-39" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="quoteright,quotedblright" + k="-39" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="quotesinglbase,quotedblbase" + k="166" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="slash" + k="127" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="t" + k="8" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="trademark" + k="-41" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="63" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="underscore" + k="94" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="12" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="w" + k="20" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="14" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="Eth" + k="2" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="X" + k="-20" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="Z,Zcaron" + k="-2" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="bracketright,braceright" + k="-37" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="colon,semicolon" + k="23" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="daggerdbl" + k="-2" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="equal" + k="20" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="exclamdown" + k="25" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="f,fi,fl,f_f_i,f_f_l" + k="2" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="greater" + k="-4" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="guilsinglright" + k="20" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="multiply" + k="2" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="parenright" + k="-37" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="90" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="comma,period,ellipsis" + k="201" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="s,scaron" + k="41" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="florin" + k="123" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="x" + k="2" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="z,zcaron" + k="10" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="lslash" + k="2" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="bar" + k="-39" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="brokenbar" + k="-39" /> + <hkern g1="X" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="47" /> + <hkern g1="X" + g2="J" + k="29" /> + <hkern g1="X" + g2="Oslash" + k="37" /> + <hkern g1="X" + g2="S,Scaron" + k="4" /> + <hkern g1="X" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="-27" /> + <hkern g1="X" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="2" /> + <hkern g1="X" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-20" /> + <hkern g1="X" + g2="Y,Yacute,Ydieresis" + k="-20" /> + <hkern g1="X" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="4" /> + <hkern g1="X" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="55" /> + <hkern g1="X" + g2="copyright,registered" + k="45" /> + <hkern g1="X" + g2="guilsinglleft" + k="164" /> + <hkern g1="X" + g2="hyphen,endash,emdash" + k="92" /> + <hkern g1="X" + g2="m,n,p,r,ntilde" + k="2" /> + <hkern g1="X" + g2="oslash" + k="25" /> + <hkern g1="X" + g2="quotedbl,quotesingle" + k="-18" /> + <hkern g1="X" + g2="quoteleft,quotedblleft" + k="-18" /> + <hkern g1="X" + g2="quoteright,quotedblright" + k="-18" /> + <hkern g1="X" + g2="t" + k="8" /> + <hkern g1="X" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="29" /> + <hkern g1="X" + g2="w" + k="29" /> + <hkern g1="X" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="39" /> + <hkern g1="X" + g2="Z,Zcaron" + k="-18" /> + <hkern g1="X" + g2="bracketright,braceright" + k="-37" /> + <hkern g1="X" + g2="colon,semicolon" + k="4" /> + <hkern g1="X" + g2="f,fi,fl,f_f_i,f_f_l" + k="2" /> + <hkern g1="X" + g2="guilsinglright" + k="61" /> + <hkern g1="X" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="8" /> + <hkern g1="X" + g2="comma,period,ellipsis" + k="2" /> + <hkern g1="X" + g2="s,scaron" + k="4" /> + <hkern g1="X" + g2="z,zcaron" + k="-8" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="94" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="J" + k="160" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="Oslash" + k="84" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="S,Scaron" + k="25" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="-41" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="V" + k="-20" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-20" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="Y,Yacute,Ydieresis" + k="-20" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="139" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="ampersand" + k="111" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="asciicircum" + k="4" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="asciitilde" + k="125" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="asterisk" + k="2" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="at" + k="86" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="backslash" + k="-23" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="braceleft" + k="45" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="bullet" + k="152" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="188" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="copyright,registered" + k="57" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="divide" + k="104" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="germandbls" + k="86" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="guilsinglleft" + k="178" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="hyphen,endash,emdash" + k="168" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="less" + k="127" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="m,n,p,r,ntilde" + k="125" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="ordfeminine" + k="4" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="ordmasculine" + k="4" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="oslash" + k="184" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="periodcentered" + k="125" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="plus" + k="106" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="questiondown" + k="205" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="quotedbl,quotesingle" + k="-18" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="quoteleft,quotedblleft" + k="-37" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="quoteright,quotedblright" + k="-37" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="quotesinglbase,quotedblbase" + k="213" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="slash" + k="182" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="t" + k="27" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="trademark" + k="-4" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="127" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="underscore" + k="131" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="86" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="w" + k="104" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="92" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="Eth" + k="4" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="X" + k="-20" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="Z,Zcaron" + k="-8" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="bracketright,braceright" + k="-37" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="colon,semicolon" + k="129" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="equal" + k="63" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="exclamdown" + k="70" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="f,fi,fl,f_f_i,f_f_l" + k="53" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="guilsinglright" + k="72" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="multiply" + k="61" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="parenright" + k="-37" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="139" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="comma,period,ellipsis" + k="266" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="s,scaron" + k="135" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="b,h,k,l,thorn" + k="2" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="florin" + k="184" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="x" + k="63" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="z,zcaron" + k="76" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="Lslash" + k="4" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="lslash" + k="4" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="i,igrave,iacute,icircumflex,idieresis" + k="12" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="j" + k="8" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="bar" + k="-20" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="brokenbar" + k="-20" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="41" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="Oslash" + k="37" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="-33" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="Y,Yacute,Ydieresis" + k="-8" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="ampersand" + k="4" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="asciitilde" + k="2" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="at" + k="27" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="bullet" + k="23" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="12" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="copyright,registered" + k="2" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="dagger" + k="-2" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="divide" + k="2" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="germandbls" + k="8" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="guilsinglleft" + k="53" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="hyphen,endash,emdash" + k="86" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="less" + k="4" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="oslash" + k="2" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="periodcentered" + k="23" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="plus" + k="18" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="question" + k="-8" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="questiondown" + k="-2" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="trademark" + k="-2" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="12" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="underscore" + k="-23" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="2" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="w" + k="10" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="37" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="X" + k="-18" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="daggerdbl" + k="-2" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="f,fi,fl,f_f_i,f_f_l" + k="-4" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="multiply" + k="-2" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="florin" + k="37" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="bar" + k="-2" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="brokenbar" + k="-2" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="ampersand" + k="25" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="asterisk" + k="41" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="at" + k="20" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="backslash" + k="123" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="ordfeminine" + k="23" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="ordmasculine" + k="29" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="quoteleft,quotedblleft" + k="80" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="quoteright,quotedblright" + k="41" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="trademark" + k="137" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="18" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="underscore" + k="-57" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="23" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="2" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="bracketright,braceright" + k="2" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="bullet" + k="2" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="colon,semicolon" + k="2" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="dagger" + k="2" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="daggerdbl" + k="2" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="exclam" + k="4" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="paragraph" + k="2" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="parenright" + k="2" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="question" + k="4" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="quotedbl,quotesingle" + k="4" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="t" + k="2" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="4" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="w" + k="2" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="ampersand" + k="25" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="asterisk" + k="78" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="backslash" + k="203" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="ordfeminine" + k="43" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="ordmasculine" + k="53" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="quoteleft,quotedblleft" + k="82" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="quoteright,quotedblright" + k="82" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="trademark" + k="113" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="8" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="underscore" + k="43" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="43" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="bracketright,braceright" + k="45" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="colon,semicolon" + k="12" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="dagger" + k="2" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="daggerdbl" + k="-2" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="exclam" + k="4" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="parenright" + k="45" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="question" + k="53" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="quotedbl,quotesingle" + k="43" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="t" + k="8" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="31" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="w" + k="23" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="comma,period,ellipsis" + k="33" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="germandbls" + k="8" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="lslash" + k="-37" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="quotesinglbase,quotedblbase" + k="23" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="slash" + k="96" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="x" + k="25" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="z,zcaron" + k="8" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="asciitilde" + k="-2" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="exclamdown" + k="4" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="florin" + k="10" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="guilsinglright" + k="2" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="questiondown" + k="10" /> + <hkern g1="c,ccedilla" + g2="ampersand" + k="16" /> + <hkern g1="c,ccedilla" + g2="asterisk" + k="23" /> + <hkern g1="c,ccedilla" + g2="at" + k="8" /> + <hkern g1="c,ccedilla" + g2="backslash" + k="145" /> + <hkern g1="c,ccedilla" + g2="ordfeminine" + k="23" /> + <hkern g1="c,ccedilla" + g2="ordmasculine" + k="20" /> + <hkern g1="c,ccedilla" + g2="quoteleft,quotedblleft" + k="29" /> + <hkern g1="c,ccedilla" + g2="quoteright,quotedblright" + k="10" /> + <hkern g1="c,ccedilla" + g2="trademark" + k="72" /> + <hkern g1="c,ccedilla" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="12" /> + <hkern g1="c,ccedilla" + g2="underscore" + k="18" /> + <hkern g1="c,ccedilla" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="12" /> + <hkern g1="c,ccedilla" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="8" /> + <hkern g1="c,ccedilla" + g2="bracketright,braceright" + k="4" /> + <hkern g1="c,ccedilla" + g2="parenright" + k="8" /> + <hkern g1="c,ccedilla" + g2="question" + k="2" /> + <hkern g1="c,ccedilla" + g2="quotedbl,quotesingle" + k="8" /> + <hkern g1="c,ccedilla" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="12" /> + <hkern g1="c,ccedilla" + g2="w" + k="12" /> + <hkern g1="c,ccedilla" + g2="comma,period,ellipsis" + k="2" /> + <hkern g1="c,ccedilla" + g2="quotesinglbase,quotedblbase" + k="18" /> + <hkern g1="c,ccedilla" + g2="slash" + k="33" /> + <hkern g1="c,ccedilla" + g2="x" + k="12" /> + <hkern g1="c,ccedilla" + g2="questiondown" + k="20" /> + <hkern g1="c,ccedilla" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="10" /> + <hkern g1="c,ccedilla" + g2="oslash" + k="10" /> + <hkern g1="c,ccedilla" + g2="hyphen,endash,emdash" + k="2" /> + <hkern g1="d,l,fl" + g2="ampersand" + k="4" /> + <hkern g1="d,l,fl" + g2="backslash" + k="2" /> + <hkern g1="d,l,fl" + g2="ordfeminine" + k="4" /> + <hkern g1="d,l,fl" + g2="ordmasculine" + k="2" /> + <hkern g1="d,l,fl" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="8" /> + <hkern g1="d,l,fl" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="2" /> + <hkern g1="d,l,fl" + g2="dagger" + k="-2" /> + <hkern g1="d,l,fl" + g2="daggerdbl" + k="-2" /> + <hkern g1="d,l,fl" + g2="comma,period,ellipsis" + k="2" /> + <hkern g1="d,l,fl" + g2="germandbls" + k="8" /> + <hkern g1="d,l,fl" + g2="exclamdown" + k="2" /> + <hkern g1="d,l,fl" + g2="questiondown" + k="2" /> + <hkern g1="d,l,fl" + g2="guilsinglleft" + k="2" /> + <hkern g1="d,l,fl" + g2="periodcentered" + k="2" /> + <hkern g1="d,l,fl" + g2="plus" + k="4" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="ampersand" + k="33" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="asterisk" + k="41" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="backslash" + k="145" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="ordfeminine" + k="33" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="ordmasculine" + k="53" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="quoteleft,quotedblleft" + k="80" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="quoteright,quotedblright" + k="82" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="trademark" + k="145" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="27" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="underscore" + k="18" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="18" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="bracketright,braceright" + k="23" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="paragraph" + k="2" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="parenright" + k="25" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="question" + k="49" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="quotedbl,quotesingle" + k="23" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="20" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="w" + k="12" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="comma,period,ellipsis" + k="29" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="germandbls" + k="8" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="lslash" + k="-18" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="quotesinglbase,quotedblbase" + k="20" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="slash" + k="4" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="x" + k="12" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="exclamdown" + k="2" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="questiondown" + k="41" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="divide" + k="-2" /> + <hkern g1="f" + g2="asterisk" + k="-82" /> + <hkern g1="f" + g2="at" + k="-4" /> + <hkern g1="f" + g2="backslash" + k="-63" /> + <hkern g1="f" + g2="ordfeminine" + k="-2" /> + <hkern g1="f" + g2="ordmasculine" + k="-4" /> + <hkern g1="f" + g2="quoteleft,quotedblleft" + k="-84" /> + <hkern g1="f" + g2="quoteright,quotedblright" + k="-49" /> + <hkern g1="f" + g2="trademark" + k="-45" /> + <hkern g1="f" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="8" /> + <hkern g1="f" + g2="underscore" + k="45" /> + <hkern g1="f" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-35" /> + <hkern g1="f" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="27" /> + <hkern g1="f" + g2="bracketright,braceright" + k="-49" /> + <hkern g1="f" + g2="bullet" + k="18" /> + <hkern g1="f" + g2="colon,semicolon" + k="-4" /> + <hkern g1="f" + g2="dagger" + k="-86" /> + <hkern g1="f" + g2="daggerdbl" + k="-70" /> + <hkern g1="f" + g2="exclam" + k="-33" /> + <hkern g1="f" + g2="paragraph" + k="-66" /> + <hkern g1="f" + g2="parenright" + k="-59" /> + <hkern g1="f" + g2="question" + k="-45" /> + <hkern g1="f" + g2="quotedbl,quotesingle" + k="-102" /> + <hkern g1="f" + g2="t" + k="-8" /> + <hkern g1="f" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="-23" /> + <hkern g1="f" + g2="w" + k="-23" /> + <hkern g1="f" + g2="comma,period,ellipsis" + k="106" /> + <hkern g1="f" + g2="lslash" + k="-18" /> + <hkern g1="f" + g2="quotesinglbase,quotedblbase" + k="86" /> + <hkern g1="f" + g2="slash" + k="29" /> + <hkern g1="f" + g2="x" + k="-23" /> + <hkern g1="f" + g2="z,zcaron" + k="-25" /> + <hkern g1="f" + g2="asciitilde" + k="18" /> + <hkern g1="f" + g2="exclamdown" + k="-2" /> + <hkern g1="f" + g2="guilsinglright" + k="-4" /> + <hkern g1="f" + g2="questiondown" + k="55" /> + <hkern g1="f" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="37" /> + <hkern g1="f" + g2="oslash" + k="37" /> + <hkern g1="f" + g2="hyphen,endash,emdash" + k="12" /> + <hkern g1="f" + g2="guilsinglleft" + k="20" /> + <hkern g1="f" + g2="periodcentered" + k="-2" /> + <hkern g1="f" + g2="plus" + k="18" /> + <hkern g1="f" + g2="asciicircum" + k="-43" /> + <hkern g1="f" + g2="bar" + k="-61" /> + <hkern g1="f" + g2="brokenbar" + k="-82" /> + <hkern g1="f" + g2="copyright,registered" + k="-20" /> + <hkern g1="f" + g2="f,fi,fl,f_f_i,f_f_l" + k="8" /> + <hkern g1="f" + g2="greater" + k="-66" /> + <hkern g1="f" + g2="j" + k="-45" /> + <hkern g1="f" + g2="multiply" + k="-41" /> + <hkern g1="f" + g2="section" + k="-43" /> + <hkern g1="f" + g2="s,scaron" + k="-2" /> + <hkern g1="g" + g2="ampersand" + k="16" /> + <hkern g1="g" + g2="backslash" + k="86" /> + <hkern g1="g" + g2="ordfeminine" + k="39" /> + <hkern g1="g" + g2="ordmasculine" + k="2" /> + <hkern g1="g" + g2="quoteleft,quotedblleft" + k="2" /> + <hkern g1="g" + g2="quoteright,quotedblright" + k="8" /> + <hkern g1="g" + g2="trademark" + k="61" /> + <hkern g1="g" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="10" /> + <hkern g1="g" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="10" /> + <hkern g1="g" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="10" /> + <hkern g1="g" + g2="bracketright,braceright" + k="4" /> + <hkern g1="g" + g2="exclam" + k="2" /> + <hkern g1="g" + g2="parenright" + k="4" /> + <hkern g1="g" + g2="question" + k="2" /> + <hkern g1="g" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="2" /> + <hkern g1="g" + g2="w" + k="10" /> + <hkern g1="g" + g2="comma,period,ellipsis" + k="2" /> + <hkern g1="g" + g2="germandbls" + k="2" /> + <hkern g1="g" + g2="hyphen,endash,emdash" + k="2" /> + <hkern g1="g" + g2="guilsinglleft" + k="4" /> + <hkern g1="g" + g2="divide" + k="8" /> + <hkern g1="germandbls" + g2="quoteleft,quotedblleft" + k="2" /> + <hkern g1="germandbls" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="12" /> + <hkern g1="germandbls" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="8" /> + <hkern g1="germandbls" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="-2" /> + <hkern g1="germandbls" + g2="bracketright,braceright" + k="-37" /> + <hkern g1="germandbls" + g2="t" + k="2" /> + <hkern g1="germandbls" + g2="w" + k="2" /> + <hkern g1="germandbls" + g2="oslash" + k="-2" /> + <hkern g1="germandbls" + g2="s,scaron" + k="-2" /> + <hkern g1="h,m,n,ntilde" + g2="ampersand" + k="4" /> + <hkern g1="h,m,n,ntilde" + g2="asterisk" + k="18" /> + <hkern g1="h,m,n,ntilde" + g2="at" + k="12" /> + <hkern g1="h,m,n,ntilde" + g2="backslash" + k="135" /> + <hkern g1="h,m,n,ntilde" + g2="ordfeminine" + k="23" /> + <hkern g1="h,m,n,ntilde" + g2="ordmasculine" + k="4" /> + <hkern g1="h,m,n,ntilde" + g2="quoteleft,quotedblleft" + k="78" /> + <hkern g1="h,m,n,ntilde" + g2="quoteright,quotedblright" + k="100" /> + <hkern g1="h,m,n,ntilde" + g2="trademark" + k="94" /> + <hkern g1="h,m,n,ntilde" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="18" /> + <hkern g1="h,m,n,ntilde" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="4" /> + <hkern g1="h,m,n,ntilde" + g2="colon,semicolon" + k="2" /> + <hkern g1="h,m,n,ntilde" + g2="dagger" + k="4" /> + <hkern g1="h,m,n,ntilde" + g2="question" + k="33" /> + <hkern g1="h,m,n,ntilde" + g2="quotedbl,quotesingle" + k="2" /> + <hkern g1="h,m,n,ntilde" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="4" /> + <hkern g1="h,m,n,ntilde" + g2="w" + k="2" /> + <hkern g1="h,m,n,ntilde" + g2="germandbls" + k="18" /> + <hkern g1="h,m,n,ntilde" + g2="exclamdown" + k="2" /> + <hkern g1="h,m,n,ntilde" + g2="periodcentered" + k="2" /> + <hkern g1="h,m,n,ntilde" + g2="copyright,registered" + k="8" /> + <hkern g1="h,m,n,ntilde" + g2="equal" + k="8" /> + <hkern g1="i,q,igrave,iacute,icircumflex,idieresis,fi,f_f_i" + g2="ampersand" + k="4" /> + <hkern g1="i,q,igrave,iacute,icircumflex,idieresis,fi,f_f_i" + g2="backslash" + k="111" /> + <hkern g1="i,q,igrave,iacute,icircumflex,idieresis,fi,f_f_i" + g2="trademark" + k="2" /> + <hkern g1="i,q,igrave,iacute,icircumflex,idieresis,fi,f_f_i" + g2="question" + k="2" /> + <hkern g1="i,q,igrave,iacute,icircumflex,idieresis,fi,f_f_i" + g2="quotesinglbase,quotedblbase" + k="2" /> + <hkern g1="i,q,igrave,iacute,icircumflex,idieresis,fi,f_f_i" + g2="exclamdown" + k="2" /> + <hkern g1="i,q,igrave,iacute,icircumflex,idieresis,fi,f_f_i" + g2="guilsinglleft" + k="2" /> + <hkern g1="j" + g2="ampersand" + k="4" /> + <hkern g1="j" + g2="at" + k="8" /> + <hkern g1="j" + g2="backslash" + k="2" /> + <hkern g1="j" + g2="ordfeminine" + k="2" /> + <hkern g1="j" + g2="quoteright,quotedblright" + k="-2" /> + <hkern g1="j" + g2="dagger" + k="-4" /> + <hkern g1="j" + g2="daggerdbl" + k="-90" /> + <hkern g1="j" + g2="comma,period,ellipsis" + k="2" /> + <hkern g1="j" + g2="germandbls" + k="10" /> + <hkern g1="j" + g2="asciitilde" + k="2" /> + <hkern g1="j" + g2="guilsinglleft" + k="2" /> + <hkern g1="j" + g2="periodcentered" + k="2" /> + <hkern g1="j" + g2="f,fi,fl,f_f_i,f_f_l" + k="-2" /> + <hkern g1="j" + g2="greater" + k="-4" /> + <hkern g1="k" + g2="ampersand" + k="16" /> + <hkern g1="k" + g2="asterisk" + k="18" /> + <hkern g1="k" + g2="at" + k="10" /> + <hkern g1="k" + g2="backslash" + k="55" /> + <hkern g1="k" + g2="quoteleft,quotedblleft" + k="-2" /> + <hkern g1="k" + g2="quoteright,quotedblright" + k="-6" /> + <hkern g1="k" + g2="trademark" + k="45" /> + <hkern g1="k" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="10" /> + <hkern g1="k" + g2="underscore" + k="-63" /> + <hkern g1="k" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="29" /> + <hkern g1="k" + g2="bracketright,braceright" + k="4" /> + <hkern g1="k" + g2="bullet" + k="39" /> + <hkern g1="k" + g2="colon,semicolon" + k="12" /> + <hkern g1="k" + g2="dagger" + k="-23" /> + <hkern g1="k" + g2="daggerdbl" + k="-23" /> + <hkern g1="k" + g2="paragraph" + k="-4" /> + <hkern g1="k" + g2="parenright" + k="4" /> + <hkern g1="k" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="8" /> + <hkern g1="k" + g2="comma,period,ellipsis" + k="2" /> + <hkern g1="k" + g2="quotesinglbase,quotedblbase" + k="-39" /> + <hkern g1="k" + g2="slash" + k="-41" /> + <hkern g1="k" + g2="z,zcaron" + k="-8" /> + <hkern g1="k" + g2="asciitilde" + k="37" /> + <hkern g1="k" + g2="exclamdown" + k="-18" /> + <hkern g1="k" + g2="guilsinglright" + k="-2" /> + <hkern g1="k" + g2="questiondown" + k="-8" /> + <hkern g1="k" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="49" /> + <hkern g1="k" + g2="oslash" + k="4" /> + <hkern g1="k" + g2="hyphen,endash,emdash" + k="61" /> + <hkern g1="k" + g2="guilsinglleft" + k="63" /> + <hkern g1="k" + g2="periodcentered" + k="2" /> + <hkern g1="k" + g2="plus" + k="23" /> + <hkern g1="k" + g2="divide" + k="20" /> + <hkern g1="k" + g2="asciicircum" + k="2" /> + <hkern g1="k" + g2="brokenbar" + k="-4" /> + <hkern g1="k" + g2="copyright,registered" + k="2" /> + <hkern g1="k" + g2="f,fi,fl,f_f_i,f_f_l" + k="-2" /> + <hkern g1="k" + g2="greater" + k="-84" /> + <hkern g1="k" + g2="multiply" + k="-37" /> + <hkern g1="k" + g2="braceleft" + k="18" /> + <hkern g1="k" + g2="less" + k="43" /> + <hkern g1="lslash" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="-2" /> + <hkern g1="lslash" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-41" /> + <hkern g1="lslash" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="-20" /> + <hkern g1="lslash" + g2="colon,semicolon" + k="-2" /> + <hkern g1="lslash" + g2="quotedbl,quotesingle" + k="-4" /> + <hkern g1="lslash" + g2="t" + k="-41" /> + <hkern g1="lslash" + g2="w" + k="-47" /> + <hkern g1="lslash" + g2="comma,period,ellipsis" + k="10" /> + <hkern g1="lslash" + g2="quotesinglbase,quotedblbase" + k="10" /> + <hkern g1="lslash" + g2="z,zcaron" + k="-41" /> + <hkern g1="lslash" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="-16" /> + <hkern g1="lslash" + g2="oslash" + k="-8" /> + <hkern g1="lslash" + g2="hyphen,endash,emdash" + k="-2" /> + <hkern g1="lslash" + g2="guilsinglleft" + k="-8" /> + <hkern g1="lslash" + g2="copyright,registered" + k="-37" /> + <hkern g1="lslash" + g2="f,fi,fl,f_f_i,f_f_l" + k="-51" /> + <hkern g1="lslash" + g2="s,scaron" + k="-20" /> + <hkern g1="oslash" + g2="ampersand" + k="23" /> + <hkern g1="oslash" + g2="backslash" + k="145" /> + <hkern g1="oslash" + g2="quoteleft,quotedblleft" + k="43" /> + <hkern g1="oslash" + g2="quoteright,quotedblright" + k="41" /> + <hkern g1="oslash" + g2="trademark" + k="4" /> + <hkern g1="oslash" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="2" /> + <hkern g1="oslash" + g2="underscore" + k="43" /> + <hkern g1="oslash" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="23" /> + <hkern g1="oslash" + g2="bracketright,braceright" + k="23" /> + <hkern g1="oslash" + g2="parenright" + k="25" /> + <hkern g1="oslash" + g2="quotedbl,quotesingle" + k="37" /> + <hkern g1="oslash" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="23" /> + <hkern g1="oslash" + g2="w" + k="23" /> + <hkern g1="oslash" + g2="comma,period,ellipsis" + k="33" /> + <hkern g1="oslash" + g2="germandbls" + k="2" /> + <hkern g1="oslash" + g2="lslash" + k="-8" /> + <hkern g1="oslash" + g2="quotesinglbase,quotedblbase" + k="25" /> + <hkern g1="oslash" + g2="slash" + k="8" /> + <hkern g1="oslash" + g2="x" + k="12" /> + <hkern g1="oslash" + g2="exclamdown" + k="2" /> + <hkern g1="oslash" + g2="guilsinglright" + k="2" /> + <hkern g1="oslash" + g2="questiondown" + k="8" /> + <hkern g1="oslash" + g2="greater" + k="-2" /> + <hkern g1="r" + g2="ampersand" + k="8" /> + <hkern g1="r" + g2="asterisk" + k="-82" /> + <hkern g1="r" + g2="at" + k="-43" /> + <hkern g1="r" + g2="backslash" + k="25" /> + <hkern g1="r" + g2="ordmasculine" + k="-4" /> + <hkern g1="r" + g2="quoteleft,quotedblleft" + k="-2" /> + <hkern g1="r" + g2="quoteright,quotedblright" + k="-57" /> + <hkern g1="r" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="-8" /> + <hkern g1="r" + g2="underscore" + k="25" /> + <hkern g1="r" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-35" /> + <hkern g1="r" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="-2" /> + <hkern g1="r" + g2="bracketright,braceright" + k="-37" /> + <hkern g1="r" + g2="bullet" + k="-2" /> + <hkern g1="r" + g2="colon,semicolon" + k="-8" /> + <hkern g1="r" + g2="dagger" + k="-63" /> + <hkern g1="r" + g2="daggerdbl" + k="-63" /> + <hkern g1="r" + g2="exclam" + k="-57" /> + <hkern g1="r" + g2="paragraph" + k="-84" /> + <hkern g1="r" + g2="parenright" + k="4" /> + <hkern g1="r" + g2="question" + k="-41" /> + <hkern g1="r" + g2="quotedbl,quotesingle" + k="-63" /> + <hkern g1="r" + g2="t" + k="-49" /> + <hkern g1="r" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="-33" /> + <hkern g1="r" + g2="w" + k="-23" /> + <hkern g1="r" + g2="comma,period,ellipsis" + k="180" /> + <hkern g1="r" + g2="quotesinglbase,quotedblbase" + k="59" /> + <hkern g1="r" + g2="slash" + k="4" /> + <hkern g1="r" + g2="x" + k="-59" /> + <hkern g1="r" + g2="z,zcaron" + k="-23" /> + <hkern g1="r" + g2="exclamdown" + k="-39" /> + <hkern g1="r" + g2="florin" + k="2" /> + <hkern g1="r" + g2="guilsinglright" + k="-59" /> + <hkern g1="r" + g2="questiondown" + k="23" /> + <hkern g1="r" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="82" /> + <hkern g1="r" + g2="oslash" + k="8" /> + <hkern g1="r" + g2="periodcentered" + k="-2" /> + <hkern g1="r" + g2="plus" + k="-2" /> + <hkern g1="r" + g2="divide" + k="-8" /> + <hkern g1="r" + g2="asciicircum" + k="-10" /> + <hkern g1="r" + g2="bar" + k="-61" /> + <hkern g1="r" + g2="brokenbar" + k="-57" /> + <hkern g1="r" + g2="copyright,registered" + k="-61" /> + <hkern g1="r" + g2="f,fi,fl,f_f_i,f_f_l" + k="-49" /> + <hkern g1="r" + g2="greater" + k="-12" /> + <hkern g1="r" + g2="j" + k="-2" /> + <hkern g1="r" + g2="multiply" + k="-4" /> + <hkern g1="r" + g2="section" + k="-57" /> + <hkern g1="r" + g2="s,scaron" + k="55" /> + <hkern g1="r" + g2="equal" + k="-8" /> + <hkern g1="r" + g2="less" + k="-2" /> + <hkern g1="r" + g2="b,h,k,l,thorn" + k="-2" /> + <hkern g1="r" + g2="i,igrave,iacute,icircumflex,idieresis" + k="-2" /> + <hkern g1="r" + g2="m,n,p,r,ntilde" + k="-2" /> + <hkern g1="s,scaron" + g2="ampersand" + k="4" /> + <hkern g1="s,scaron" + g2="asterisk" + k="20" /> + <hkern g1="s,scaron" + g2="backslash" + k="123" /> + <hkern g1="s,scaron" + g2="ordfeminine" + k="41" /> + <hkern g1="s,scaron" + g2="ordmasculine" + k="39" /> + <hkern g1="s,scaron" + g2="quoteleft,quotedblleft" + k="23" /> + <hkern g1="s,scaron" + g2="quoteright,quotedblright" + k="94" /> + <hkern g1="s,scaron" + g2="trademark" + k="86" /> + <hkern g1="s,scaron" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="10" /> + <hkern g1="s,scaron" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="12" /> + <hkern g1="s,scaron" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="18" /> + <hkern g1="s,scaron" + g2="bracketright,braceright" + k="2" /> + <hkern g1="s,scaron" + g2="parenright" + k="6" /> + <hkern g1="s,scaron" + g2="question" + k="2" /> + <hkern g1="s,scaron" + g2="quotedbl,quotesingle" + k="18" /> + <hkern g1="s,scaron" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="12" /> + <hkern g1="s,scaron" + g2="w" + k="12" /> + <hkern g1="s,scaron" + g2="germandbls" + k="10" /> + <hkern g1="s,scaron" + g2="quotesinglbase,quotedblbase" + k="-2" /> + <hkern g1="s,scaron" + g2="slash" + k="-18" /> + <hkern g1="s,scaron" + g2="x" + k="10" /> + <hkern g1="s,scaron" + g2="z,zcaron" + k="-2" /> + <hkern g1="s,scaron" + g2="florin" + k="4" /> + <hkern g1="s,scaron" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="8" /> + <hkern g1="s,scaron" + g2="oslash" + k="8" /> + <hkern g1="s,scaron" + g2="guilsinglleft" + k="4" /> + <hkern g1="s,scaron" + g2="periodcentered" + k="2" /> + <hkern g1="s,scaron" + g2="greater" + k="-18" /> + <hkern g1="t" + g2="asterisk" + k="-8" /> + <hkern g1="t" + g2="backslash" + k="2" /> + <hkern g1="t" + g2="quoteleft,quotedblleft" + k="18" /> + <hkern g1="t" + g2="quoteright,quotedblright" + k="45" /> + <hkern g1="t" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="-2" /> + <hkern g1="t" + g2="underscore" + k="-61" /> + <hkern g1="t" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-14" /> + <hkern g1="t" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="-2" /> + <hkern g1="t" + g2="bracketright,braceright" + k="-18" /> + <hkern g1="t" + g2="colon,semicolon" + k="-2" /> + <hkern g1="t" + g2="paragraph" + k="-4" /> + <hkern g1="t" + g2="parenright" + k="-18" /> + <hkern g1="t" + g2="question" + k="-14" /> + <hkern g1="t" + g2="quotedbl,quotesingle" + k="-2" /> + <hkern g1="t" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="-18" /> + <hkern g1="t" + g2="w" + k="-18" /> + <hkern g1="t" + g2="quotesinglbase,quotedblbase" + k="-18" /> + <hkern g1="t" + g2="slash" + k="-43" /> + <hkern g1="t" + g2="x" + k="-43" /> + <hkern g1="t" + g2="z,zcaron" + k="-43" /> + <hkern g1="t" + g2="exclamdown" + k="-2" /> + <hkern g1="t" + g2="guilsinglright" + k="-18" /> + <hkern g1="t" + g2="questiondown" + k="-2" /> + <hkern g1="t" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="8" /> + <hkern g1="t" + g2="asciicircum" + k="-2" /> + <hkern g1="t" + g2="copyright,registered" + k="-2" /> + <hkern g1="t" + g2="greater" + k="-10" /> + <hkern g1="t" + g2="j" + k="-2" /> + <hkern g1="t" + g2="s,scaron" + k="-14" /> + <hkern g1="t" + g2="b,h,k,l,thorn" + k="8" /> + <hkern g1="t" + g2="i,igrave,iacute,icircumflex,idieresis" + k="-2" /> + <hkern g1="t" + g2="m,n,p,r,ntilde" + k="18" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="ampersand" + k="4" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="at" + k="10" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="backslash" + k="94" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="ordfeminine" + k="39" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="ordmasculine" + k="29" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="quoteleft,quotedblleft" + k="20" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="quoteright,quotedblright" + k="2" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="trademark" + k="43" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="8" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="bracketright,braceright" + k="2" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="parenright" + k="4" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="germandbls" + k="10" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="8" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="oslash" + k="8" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="guilsinglleft" + k="2" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="f,fi,fl,f_f_i,f_f_l" + k="-2" /> + <hkern g1="v,wcircumflex,ycircumflex,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-18" /> + <hkern g1="v,wcircumflex,ycircumflex,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="8" /> + <hkern g1="v,wcircumflex,ycircumflex,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="bracketright,braceright" + k="4" /> + <hkern g1="v,wcircumflex,ycircumflex,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="colon,semicolon" + k="2" /> + <hkern g1="v,wcircumflex,ycircumflex,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="quotedbl,quotesingle" + k="-23" /> + <hkern g1="v,wcircumflex,ycircumflex,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="t" + k="-33" /> + <hkern g1="v,wcircumflex,ycircumflex,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="w" + k="-8" /> + <hkern g1="v,wcircumflex,ycircumflex,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="comma,period,ellipsis" + k="180" /> + <hkern g1="v,wcircumflex,ycircumflex,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="quotesinglbase,quotedblbase" + k="86" /> + <hkern g1="v,wcircumflex,ycircumflex,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="z,zcaron" + k="-18" /> + <hkern g1="v,wcircumflex,ycircumflex,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="guilsinglright" + k="-37" /> + <hkern g1="v,wcircumflex,ycircumflex,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="31" /> + <hkern g1="v,wcircumflex,ycircumflex,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="oslash" + k="20" /> + <hkern g1="v,wcircumflex,ycircumflex,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="hyphen,endash,emdash" + k="14" /> + <hkern g1="v,wcircumflex,ycircumflex,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="guilsinglleft" + k="4" /> + <hkern g1="v,wcircumflex,ycircumflex,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="copyright,registered" + k="-2" /> + <hkern g1="v,wcircumflex,ycircumflex,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="f,fi,fl,f_f_i,f_f_l" + k="-33" /> + <hkern g1="w" + g2="ampersand" + k="25" /> + <hkern g1="w" + g2="asterisk" + k="-2" /> + <hkern g1="w" + g2="at" + k="-29" /> + <hkern g1="w" + g2="backslash" + k="43" /> + <hkern g1="w" + g2="ordmasculine" + k="-4" /> + <hkern g1="w" + g2="quoteleft,quotedblleft" + k="-2" /> + <hkern g1="w" + g2="quoteright,quotedblright" + k="-2" /> + <hkern g1="w" + g2="trademark" + k="2" /> + <hkern g1="w" + g2="underscore" + k="82" /> + <hkern g1="w" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-8" /> + <hkern g1="w" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="8" /> + <hkern g1="w" + g2="bracketright,braceright" + k="41" /> + <hkern g1="w" + g2="dagger" + k="-61" /> + <hkern g1="w" + g2="daggerdbl" + k="-80" /> + <hkern g1="w" + g2="paragraph" + k="-4" /> + <hkern g1="w" + g2="parenright" + k="43" /> + <hkern g1="w" + g2="question" + k="-4" /> + <hkern g1="w" + g2="quotedbl,quotesingle" + k="-23" /> + <hkern g1="w" + g2="t" + k="-33" /> + <hkern g1="w" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="-8" /> + <hkern g1="w" + g2="comma,period,ellipsis" + k="84" /> + <hkern g1="w" + g2="germandbls" + k="2" /> + <hkern g1="w" + g2="quotesinglbase,quotedblbase" + k="84" /> + <hkern g1="w" + g2="slash" + k="43" /> + <hkern g1="w" + g2="x" + k="-8" /> + <hkern g1="w" + g2="z,zcaron" + k="-10" /> + <hkern g1="w" + g2="exclamdown" + k="2" /> + <hkern g1="w" + g2="florin" + k="4" /> + <hkern g1="w" + g2="questiondown" + k="45" /> + <hkern g1="w" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="23" /> + <hkern g1="w" + g2="oslash" + k="23" /> + <hkern g1="w" + g2="hyphen,endash,emdash" + k="12" /> + <hkern g1="w" + g2="guilsinglleft" + k="23" /> + <hkern g1="w" + g2="plus" + k="2" /> + <hkern g1="w" + g2="divide" + k="2" /> + <hkern g1="w" + g2="asciicircum" + k="-4" /> + <hkern g1="w" + g2="bar" + k="-39" /> + <hkern g1="w" + g2="brokenbar" + k="-39" /> + <hkern g1="w" + g2="copyright,registered" + k="-18" /> + <hkern g1="w" + g2="f,fi,fl,f_f_i,f_f_l" + k="-33" /> + <hkern g1="w" + g2="greater" + k="-4" /> + <hkern g1="w" + g2="multiply" + k="-2" /> + <hkern g1="w" + g2="less" + k="2" /> + <hkern g1="x" + g2="quoteright,quotedblright" + k="2" /> + <hkern g1="x" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="10" /> + <hkern g1="x" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-8" /> + <hkern g1="x" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="2" /> + <hkern g1="x" + g2="bracketright,braceright" + k="2" /> + <hkern g1="x" + g2="colon,semicolon" + k="2" /> + <hkern g1="x" + g2="quotedbl,quotesingle" + k="-18" /> + <hkern g1="x" + g2="t" + k="-12" /> + <hkern g1="x" + g2="w" + k="-8" /> + <hkern g1="x" + g2="quotesinglbase,quotedblbase" + k="-20" /> + <hkern g1="x" + g2="z,zcaron" + k="-39" /> + <hkern g1="x" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="25" /> + <hkern g1="x" + g2="oslash" + k="14" /> + <hkern g1="x" + g2="hyphen,endash,emdash" + k="27" /> + <hkern g1="x" + g2="guilsinglleft" + k="23" /> + <hkern g1="x" + g2="copyright,registered" + k="2" /> + <hkern g1="x" + g2="f,fi,fl,f_f_i,f_f_l" + k="-29" /> + <hkern g1="y,yacute,ydieresis" + g2="ampersand" + k="41" /> + <hkern g1="y,yacute,ydieresis" + g2="asterisk" + k="-4" /> + <hkern g1="y,yacute,ydieresis" + g2="at" + k="-18" /> + <hkern g1="y,yacute,ydieresis" + g2="backslash" + k="61" /> + <hkern g1="y,yacute,ydieresis" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="10" /> + <hkern g1="y,yacute,ydieresis" + g2="underscore" + k="102" /> + <hkern g1="y,yacute,ydieresis" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-8" /> + <hkern g1="y,yacute,ydieresis" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="31" /> + <hkern g1="y,yacute,ydieresis" + g2="bracketright,braceright" + k="10" /> + <hkern g1="y,yacute,ydieresis" + g2="colon,semicolon" + k="4" /> + <hkern g1="y,yacute,ydieresis" + g2="dagger" + k="-43" /> + <hkern g1="y,yacute,ydieresis" + g2="daggerdbl" + k="-43" /> + <hkern g1="y,yacute,ydieresis" + g2="paragraph" + k="-4" /> + <hkern g1="y,yacute,ydieresis" + g2="parenright" + k="10" /> + <hkern g1="y,yacute,ydieresis" + g2="question" + k="-20" /> + <hkern g1="y,yacute,ydieresis" + g2="quotedbl,quotesingle" + k="-20" /> + <hkern g1="y,yacute,ydieresis" + g2="t" + k="-14" /> + <hkern g1="y,yacute,ydieresis" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="-8" /> + <hkern g1="y,yacute,ydieresis" + g2="comma,period,ellipsis" + k="221" /> + <hkern g1="y,yacute,ydieresis" + g2="germandbls" + k="2" /> + <hkern g1="y,yacute,ydieresis" + g2="lslash" + k="2" /> + <hkern g1="y,yacute,ydieresis" + g2="quotesinglbase,quotedblbase" + k="141" /> + <hkern g1="y,yacute,ydieresis" + g2="slash" + k="31" /> + <hkern g1="y,yacute,ydieresis" + g2="exclamdown" + k="2" /> + <hkern g1="y,yacute,ydieresis" + g2="florin" + k="8" /> + <hkern g1="y,yacute,ydieresis" + g2="questiondown" + k="66" /> + <hkern g1="y,yacute,ydieresis" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="43" /> + <hkern g1="y,yacute,ydieresis" + g2="oslash" + k="33" /> + <hkern g1="y,yacute,ydieresis" + g2="hyphen,endash,emdash" + k="43" /> + <hkern g1="y,yacute,ydieresis" + g2="guilsinglleft" + k="23" /> + <hkern g1="y,yacute,ydieresis" + g2="periodcentered" + k="2" /> + <hkern g1="y,yacute,ydieresis" + g2="divide" + k="2" /> + <hkern g1="y,yacute,ydieresis" + g2="asciicircum" + k="-2" /> + <hkern g1="y,yacute,ydieresis" + g2="bar" + k="-29" /> + <hkern g1="y,yacute,ydieresis" + g2="brokenbar" + k="-23" /> + <hkern g1="y,yacute,ydieresis" + g2="copyright,registered" + k="-2" /> + <hkern g1="y,yacute,ydieresis" + g2="f,fi,fl,f_f_i,f_f_l" + k="-23" /> + <hkern g1="y,yacute,ydieresis" + g2="greater" + k="-8" /> + <hkern g1="y,yacute,ydieresis" + g2="multiply" + k="-4" /> + <hkern g1="y,yacute,ydieresis" + g2="section" + k="-2" /> + <hkern g1="y,yacute,ydieresis" + g2="s,scaron" + k="18" /> + <hkern g1="z,zcaron" + g2="ampersand" + k="4" /> + <hkern g1="z,zcaron" + g2="asterisk" + k="-2" /> + <hkern g1="z,zcaron" + g2="backslash" + k="74" /> + <hkern g1="z,zcaron" + g2="trademark" + k="2" /> + <hkern g1="z,zcaron" + g2="underscore" + k="-20" /> + <hkern g1="z,zcaron" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-2" /> + <hkern g1="z,zcaron" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="-2" /> + <hkern g1="z,zcaron" + g2="dagger" + k="-23" /> + <hkern g1="z,zcaron" + g2="daggerdbl" + k="-23" /> + <hkern g1="z,zcaron" + g2="paragraph" + k="-2" /> + <hkern g1="z,zcaron" + g2="t" + k="-6" /> + <hkern g1="z,zcaron" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="-2" /> + <hkern g1="z,zcaron" + g2="w" + k="-2" /> + <hkern g1="z,zcaron" + g2="lslash" + k="-18" /> + <hkern g1="z,zcaron" + g2="quotesinglbase,quotedblbase" + k="-2" /> + <hkern g1="z,zcaron" + g2="slash" + k="-4" /> + <hkern g1="z,zcaron" + g2="x" + k="-12" /> + <hkern g1="z,zcaron" + g2="z,zcaron" + k="-2" /> + <hkern g1="z,zcaron" + g2="questiondown" + k="-2" /> + <hkern g1="z,zcaron" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="2" /> + <hkern g1="z,zcaron" + g2="guilsinglleft" + k="18" /> + <hkern g1="z,zcaron" + g2="plus" + k="-2" /> + <hkern g1="z,zcaron" + g2="bar" + k="-29" /> + <hkern g1="z,zcaron" + g2="brokenbar" + k="-2" /> + <hkern g1="z,zcaron" + g2="f,fi,fl,f_f_i,f_f_l" + k="-8" /> + <hkern g1="z,zcaron" + g2="greater" + k="-4" /> + <hkern g1="ampersand" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="143" /> + <hkern g1="ampersand" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="20" /> + <hkern g1="ampersand" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="74" /> + <hkern g1="ampersand" + g2="Y,Yacute,Ydieresis" + k="162" /> + <hkern g1="ampersand" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="4" /> + <hkern g1="ampersand" + g2="J" + k="-2" /> + <hkern g1="ampersand" + g2="Oslash" + k="2" /> + <hkern g1="ampersand" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="2" /> + <hkern g1="ampersand" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="8" /> + <hkern g1="asciicircum" + g2="Y,Yacute,Ydieresis" + k="4" /> + <hkern g1="asciicircum" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="-20" /> + <hkern g1="asciicircum" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-2" /> + <hkern g1="asciicircum" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="51" /> + <hkern g1="asciicircum" + g2="Eth" + k="-2" /> + <hkern g1="asciicircum" + g2="f,fi,fl,f_f_i,f_f_l" + k="-8" /> + <hkern g1="asciicircum" + g2="w" + k="-4" /> + <hkern g1="asciitilde" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="141" /> + <hkern g1="asciitilde" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="8" /> + <hkern g1="asciitilde" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="41" /> + <hkern g1="asciitilde" + g2="Y,Yacute,Ydieresis" + k="125" /> + <hkern g1="asciitilde" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="-20" /> + <hkern g1="asciitilde" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="41" /> + <hkern g1="asciitilde" + g2="Z,Zcaron" + k="2" /> + <hkern g1="asciitilde" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="-2" /> + <hkern g1="asciitilde" + g2="j" + k="2" /> + <hkern g1="asciitilde" + g2="z,zcaron" + k="2" /> + <hkern g1="at" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="51" /> + <hkern g1="at" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="2" /> + <hkern g1="at" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="41" /> + <hkern g1="at" + g2="Y,Yacute,Ydieresis" + k="86" /> + <hkern g1="at" + g2="J" + k="25" /> + <hkern g1="at" + g2="Oslash" + k="2" /> + <hkern g1="at" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="2" /> + <hkern g1="at" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-27" /> + <hkern g1="at" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="70" /> + <hkern g1="at" + g2="Eth" + k="-18" /> + <hkern g1="at" + g2="f,fi,fl,f_f_i,f_f_l" + k="-2" /> + <hkern g1="at" + g2="w" + k="-27" /> + <hkern g1="at" + g2="Z,Zcaron" + k="39" /> + <hkern g1="at" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="4" /> + <hkern g1="at" + g2="z,zcaron" + k="-8" /> + <hkern g1="at" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="2" /> + <hkern g1="at" + g2="m,n,p,r,ntilde" + k="4" /> + <hkern g1="at" + g2="oslash" + k="4" /> + <hkern g1="at" + g2="s,scaron" + k="2" /> + <hkern g1="bar" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="-39" /> + <hkern g1="bar" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-39" /> + <hkern g1="bar" + g2="Y,Yacute,Ydieresis" + k="-20" /> + <hkern g1="bar" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-29" /> + <hkern g1="bar" + g2="w" + k="-39" /> + <hkern g1="bar" + g2="Z,Zcaron" + k="-2" /> + <hkern g1="bar" + g2="j" + k="-8" /> + <hkern g1="bar" + g2="z,zcaron" + k="-20" /> + <hkern g1="brokenbar" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="-41" /> + <hkern g1="brokenbar" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-39" /> + <hkern g1="brokenbar" + g2="Y,Yacute,Ydieresis" + k="-20" /> + <hkern g1="brokenbar" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-23" /> + <hkern g1="brokenbar" + g2="w" + k="-39" /> + <hkern g1="brokenbar" + g2="Z,Zcaron" + k="-2" /> + <hkern g1="brokenbar" + g2="z,zcaron" + k="-2" /> + <hkern g1="copyright,registered" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="20" /> + <hkern g1="copyright,registered" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="4" /> + <hkern g1="copyright,registered" + g2="Y,Yacute,Ydieresis" + k="57" /> + <hkern g1="copyright,registered" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="-18" /> + <hkern g1="copyright,registered" + g2="J" + k="2" /> + <hkern g1="copyright,registered" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="55" /> + <hkern g1="copyright,registered" + g2="Eth" + k="-18" /> + <hkern g1="copyright,registered" + g2="f,fi,fl,f_f_i,f_f_l" + k="-2" /> + <hkern g1="copyright,registered" + g2="w" + k="-18" /> + <hkern g1="copyright,registered" + g2="Z,Zcaron" + k="2" /> + <hkern g1="copyright,registered" + g2="z,zcaron" + k="8" /> + <hkern g1="copyright,registered" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="37" /> + <hkern g1="copyright,registered" + g2="Lslash" + k="-18" /> + <hkern g1="copyright,registered" + g2="V" + k="29" /> + <hkern g1="copyright,registered" + g2="X" + k="45" /> + <hkern g1="copyright,registered" + g2="germandbls" + k="2" /> + <hkern g1="copyright,registered" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="-2" /> + <hkern g1="copyright,registered" + g2="x" + k="2" /> + <hkern g1="dagger" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="-8" /> + <hkern g1="dagger" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-4" /> + <hkern g1="dagger" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="-2" /> + <hkern g1="dagger" + g2="J" + k="8" /> + <hkern g1="dagger" + g2="Oslash" + k="-2" /> + <hkern g1="dagger" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-43" /> + <hkern g1="dagger" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="63" /> + <hkern g1="dagger" + g2="f,fi,fl,f_f_i,f_f_l" + k="-8" /> + <hkern g1="dagger" + g2="w" + k="-80" /> + <hkern g1="dagger" + g2="Z,Zcaron" + k="-2" /> + <hkern g1="dagger" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="2" /> + <hkern g1="dagger" + g2="j" + k="-4" /> + <hkern g1="dagger" + g2="z,zcaron" + k="-4" /> + <hkern g1="dagger" + g2="S,Scaron" + k="-2" /> + <hkern g1="dagger" + g2="b,h,k,l,thorn" + k="-2" /> + <hkern g1="daggerdbl" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="-8" /> + <hkern g1="daggerdbl" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-2" /> + <hkern g1="daggerdbl" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="-2" /> + <hkern g1="daggerdbl" + g2="J" + k="-2" /> + <hkern g1="daggerdbl" + g2="Oslash" + k="-2" /> + <hkern g1="daggerdbl" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-43" /> + <hkern g1="daggerdbl" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="2" /> + <hkern g1="daggerdbl" + g2="f,fi,fl,f_f_i,f_f_l" + k="-4" /> + <hkern g1="daggerdbl" + g2="w" + k="-80" /> + <hkern g1="daggerdbl" + g2="Z,Zcaron" + k="-2" /> + <hkern g1="daggerdbl" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="-2" /> + <hkern g1="daggerdbl" + g2="z,zcaron" + k="-4" /> + <hkern g1="daggerdbl" + g2="b,h,k,l,thorn" + k="-2" /> + <hkern g1="divide" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="115" /> + <hkern g1="divide" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="8" /> + <hkern g1="divide" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="43" /> + <hkern g1="divide" + g2="Y,Yacute,Ydieresis" + k="104" /> + <hkern g1="divide" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="-2" /> + <hkern g1="divide" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="2" /> + <hkern g1="divide" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="23" /> + <hkern g1="divide" + g2="w" + k="2" /> + <hkern g1="divide" + g2="Z,Zcaron" + k="2" /> + <hkern g1="equal" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="61" /> + <hkern g1="equal" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="2" /> + <hkern g1="equal" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="20" /> + <hkern g1="equal" + g2="Y,Yacute,Ydieresis" + k="63" /> + <hkern g1="equal" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="-2" /> + <hkern g1="equal" + g2="Oslash" + k="-2" /> + <hkern g1="equal" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="4" /> + <hkern g1="florin" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="78" /> + <hkern g1="florin" + g2="w" + k="18" /> + <hkern g1="florin" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="121" /> + <hkern g1="florin" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="119" /> + <hkern g1="florin" + g2="m,n,p,r,ntilde" + k="78" /> + <hkern g1="florin" + g2="oslash" + k="102" /> + <hkern g1="florin" + g2="s,scaron" + k="57" /> + <hkern g1="florin" + g2="bracketright,braceright" + k="-43" /> + <hkern g1="florin" + g2="colon,semicolon" + k="39" /> + <hkern g1="florin" + g2="comma,period,ellipsis" + k="168" /> + <hkern g1="florin" + g2="guilsinglleft" + k="45" /> + <hkern g1="florin" + g2="hyphen,endash,emdash" + k="53" /> + <hkern g1="florin" + g2="quotedbl,quotesingle" + k="-82" /> + <hkern g1="florin" + g2="quoteleft,quotedblleft" + k="-80" /> + <hkern g1="florin" + g2="quoteright,quotedblright" + k="-82" /> + <hkern g1="florin" + g2="quotesinglbase,quotedblbase" + k="131" /> + <hkern g1="florin" + g2="t" + k="-2" /> + <hkern g1="greater" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="90" /> + <hkern g1="greater" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="8" /> + <hkern g1="greater" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="43" /> + <hkern g1="greater" + g2="Y,Yacute,Ydieresis" + k="127" /> + <hkern g1="greater" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="-2" /> + <hkern g1="greater" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="43" /> + <hkern g1="greater" + g2="w" + k="2" /> + <hkern g1="greater" + g2="Z,Zcaron" + k="29" /> + <hkern g1="greater" + g2="S,Scaron" + k="2" /> + <hkern g1="less" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="18" /> + <hkern g1="less" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-4" /> + <hkern g1="less" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="-20" /> + <hkern g1="less" + g2="Oslash" + k="-4" /> + <hkern g1="less" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-8" /> + <hkern g1="less" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="-4" /> + <hkern g1="less" + g2="Eth" + k="-2" /> + <hkern g1="less" + g2="w" + k="-4" /> + <hkern g1="less" + g2="Z,Zcaron" + k="-25" /> + <hkern g1="less" + g2="z,zcaron" + k="-4" /> + <hkern g1="less" + g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Ntilde,Thorn,IJ,uni01C4,uni01C7,uni01CA,uni01F1" + k="-18" /> + <hkern g1="multiply" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="74" /> + <hkern g1="multiply" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="2" /> + <hkern g1="multiply" + g2="Y,Yacute,Ydieresis" + k="61" /> + <hkern g1="multiply" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="-2" /> + <hkern g1="multiply" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="2" /> + <hkern g1="multiply" + g2="w" + k="-2" /> + <hkern g1="multiply" + g2="Z,Zcaron" + k="-2" /> + <hkern g1="paragraph" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="-53" /> + <hkern g1="plus" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="104" /> + <hkern g1="plus" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="8" /> + <hkern g1="plus" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="61" /> + <hkern g1="plus" + g2="Y,Yacute,Ydieresis" + k="106" /> + <hkern g1="plus" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="-2" /> + <hkern g1="plus" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="35" /> + <hkern g1="plus" + g2="Eth" + k="2" /> + <hkern g1="plus" + g2="w" + k="2" /> + <hkern g1="plus" + g2="Z,Zcaron" + k="37" /> + <hkern g1="plus" + g2="b,h,k,l,thorn" + k="4" /> + <hkern g1="trademark" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="-53" /> + <hkern g1="section" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="2" /> + <hkern g1="section" + g2="Y,Yacute,Ydieresis" + k="2" /> + <hkern g1="section" + g2="Oslash" + k="2" /> + <hkern g1="section" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="2" /> + <hkern g1="asterisk" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="215" /> + <hkern g1="asterisk" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="8" /> + <hkern g1="asterisk" + g2="J" + k="102" /> + <hkern g1="asterisk" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="-41" /> + <hkern g1="asterisk" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-20" /> + <hkern g1="asterisk" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="53" /> + <hkern g1="asterisk" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="78" /> + <hkern g1="asterisk" + g2="s,scaron" + k="18" /> + <hkern g1="asterisk" + g2="Y,Yacute,Ydieresis" + k="2" /> + <hkern g1="asterisk" + g2="f,fi,fl,f_f_i,f_f_l" + k="-10" /> + <hkern g1="asterisk" + g2="oslash" + k="4" /> + <hkern g1="asterisk" + g2="w" + k="-2" /> + <hkern g1="asterisk" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-4" /> + <hkern g1="backslash" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="-4" /> + <hkern g1="backslash" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="76" /> + <hkern g1="backslash" + g2="J" + k="2" /> + <hkern g1="backslash" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="106" /> + <hkern g1="backslash" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="127" /> + <hkern g1="backslash" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="-18" /> + <hkern g1="backslash" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="35" /> + <hkern g1="backslash" + g2="Y,Yacute,Ydieresis" + k="141" /> + <hkern g1="backslash" + g2="oslash" + k="4" /> + <hkern g1="backslash" + g2="w" + k="25" /> + <hkern g1="backslash" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="29" /> + <hkern g1="backslash" + g2="Oslash" + k="45" /> + <hkern g1="backslash" + g2="S,Scaron" + k="14" /> + <hkern g1="backslash" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="49" /> + <hkern g1="backslash" + g2="Eth" + k="4" /> + <hkern g1="backslash" + g2="Z,Zcaron" + k="-2" /> + <hkern g1="backslash" + g2="t" + k="2" /> + <hkern g1="backslash" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="4" /> + <hkern g1="backslash" + g2="z,zcaron" + k="-2" /> + <hkern g1="braceright" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="18" /> + <hkern g1="braceright" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="37" /> + <hkern g1="braceright" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="18" /> + <hkern g1="braceright" + g2="Y,Yacute,Ydieresis" + k="72" /> + <hkern g1="braceright" + g2="Z,Zcaron" + k="37" /> + <hkern g1="bracketleft,braceleft" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="2" /> + <hkern g1="bracketleft,braceleft" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="43" /> + <hkern g1="bracketleft,braceleft" + g2="J" + k="4" /> + <hkern g1="bracketleft,braceleft" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="-37" /> + <hkern g1="bracketleft,braceleft" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-37" /> + <hkern g1="bracketleft,braceleft" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="2" /> + <hkern g1="bracketleft,braceleft" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="29" /> + <hkern g1="bracketleft,braceleft" + g2="s,scaron" + k="4" /> + <hkern g1="bracketleft,braceleft" + g2="Y,Yacute,Ydieresis" + k="-72" /> + <hkern g1="bracketleft,braceleft" + g2="f,fi,fl,f_f_i,f_f_l" + k="25" /> + <hkern g1="bracketleft,braceleft" + g2="oslash" + k="23" /> + <hkern g1="bracketleft,braceleft" + g2="w" + k="41" /> + <hkern g1="bracketleft,braceleft" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="8" /> + <hkern g1="bracketleft,braceleft" + g2="Oslash" + k="43" /> + <hkern g1="bracketleft,braceleft" + g2="S,Scaron" + k="2" /> + <hkern g1="bracketleft,braceleft" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="2" /> + <hkern g1="bracketleft,braceleft" + g2="t" + k="4" /> + <hkern g1="bracketleft,braceleft" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="4" /> + <hkern g1="bracketleft,braceleft" + g2="V" + k="-39" /> + <hkern g1="bracketleft,braceleft" + g2="X" + k="-37" /> + <hkern g1="bracketleft,braceleft" + g2="florin" + k="-123" /> + <hkern g1="bracketleft,braceleft" + g2="j" + k="-111" /> + <hkern g1="bracketleft,braceleft" + g2="germandbls" + k="4" /> + <hkern g1="bracketleft,braceleft" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="4" /> + <hkern g1="bracketleft,braceleft" + g2="x" + k="2" /> + <hkern g1="bullet" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="63" /> + <hkern g1="bullet" + g2="J" + k="18" /> + <hkern g1="bullet" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="147" /> + <hkern g1="bullet" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="78" /> + <hkern g1="bullet" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="18" /> + <hkern g1="bullet" + g2="Y,Yacute,Ydieresis" + k="152" /> + <hkern g1="bullet" + g2="Z,Zcaron" + k="39" /> + <hkern g1="bullet" + g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Ntilde,Thorn,IJ,uni01C4,uni01C7,uni01CA,uni01F1" + k="18" /> + <hkern g1="colon,semicolon" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="2" /> + <hkern g1="colon,semicolon" + g2="J" + k="2" /> + <hkern g1="colon,semicolon" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="119" /> + <hkern g1="colon,semicolon" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="23" /> + <hkern g1="colon,semicolon" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="12" /> + <hkern g1="colon,semicolon" + g2="Y,Yacute,Ydieresis" + k="129" /> + <hkern g1="colon,semicolon" + g2="f,fi,fl,f_f_i,f_f_l" + k="-2" /> + <hkern g1="colon,semicolon" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="2" /> + <hkern g1="colon,semicolon" + g2="S,Scaron" + k="2" /> + <hkern g1="colon,semicolon" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="10" /> + <hkern g1="colon,semicolon" + g2="V" + k="86" /> + <hkern g1="colon,semicolon" + g2="X" + k="4" /> + <hkern g1="colon,semicolon" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="2" /> + <hkern g1="colon,semicolon" + g2="x" + k="2" /> + <hkern g1="comma,period,ellipsis" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="63" /> + <hkern g1="comma,period,ellipsis" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="209" /> + <hkern g1="comma,period,ellipsis" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="201" /> + <hkern g1="comma,period,ellipsis" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="2" /> + <hkern g1="comma,period,ellipsis" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="33" /> + <hkern g1="comma,period,ellipsis" + g2="Y,Yacute,Ydieresis" + k="266" /> + <hkern g1="comma,period,ellipsis" + g2="f,fi,fl,f_f_i,f_f_l" + k="4" /> + <hkern g1="comma,period,ellipsis" + g2="oslash" + k="2" /> + <hkern g1="comma,period,ellipsis" + g2="w" + k="84" /> + <hkern g1="comma,period,ellipsis" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="182" /> + <hkern g1="comma,period,ellipsis" + g2="Oslash" + k="45" /> + <hkern g1="comma,period,ellipsis" + g2="S,Scaron" + k="20" /> + <hkern g1="comma,period,ellipsis" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="55" /> + <hkern g1="comma,period,ellipsis" + g2="Eth" + k="4" /> + <hkern g1="comma,period,ellipsis" + g2="t" + k="43" /> + <hkern g1="comma,period,ellipsis" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="18" /> + <hkern g1="comma,period,ellipsis" + g2="V" + k="213" /> + <hkern g1="comma,period,ellipsis" + g2="X" + k="2" /> + <hkern g1="comma,period,ellipsis" + g2="germandbls" + k="2" /> + <hkern g1="comma,period,ellipsis" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="180" /> + <hkern g1="comma,period,ellipsis" + g2="Lslash" + k="2" /> + <hkern g1="comma,period,ellipsis" + g2="b,h,k,l,thorn" + k="2" /> + <hkern g1="comma,period,ellipsis" + g2="lslash" + k="10" /> + <hkern g1="exclamdown" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="2" /> + <hkern g1="exclamdown" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="2" /> + <hkern g1="exclamdown" + g2="J" + k="2" /> + <hkern g1="exclamdown" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="156" /> + <hkern g1="exclamdown" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="25" /> + <hkern g1="exclamdown" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="4" /> + <hkern g1="exclamdown" + g2="Y,Yacute,Ydieresis" + k="111" /> + <hkern g1="exclamdown" + g2="oslash" + k="2" /> + <hkern g1="exclamdown" + g2="w" + k="2" /> + <hkern g1="exclamdown" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="2" /> + <hkern g1="exclamdown" + g2="S,Scaron" + k="2" /> + <hkern g1="exclamdown" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="23" /> + <hkern g1="exclamdown" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="2" /> + <hkern g1="exclamdown" + g2="j" + k="-63" /> + <hkern g1="exclamdown" + g2="i,igrave,iacute,icircumflex,idieresis" + k="2" /> + <hkern g1="guilsinglleft" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="2" /> + <hkern g1="guilsinglleft" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="20" /> + <hkern g1="guilsinglleft" + g2="J" + k="-20" /> + <hkern g1="guilsinglleft" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="156" /> + <hkern g1="guilsinglleft" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="20" /> + <hkern g1="guilsinglleft" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="2" /> + <hkern g1="guilsinglleft" + g2="Y,Yacute,Ydieresis" + k="72" /> + <hkern g1="guilsinglleft" + g2="f,fi,fl,f_f_i,f_f_l" + k="-23" /> + <hkern g1="guilsinglleft" + g2="oslash" + k="2" /> + <hkern g1="guilsinglleft" + g2="Oslash" + k="2" /> + <hkern g1="guilsinglleft" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="2" /> + <hkern g1="guilsinglleft" + g2="t" + k="-18" /> + <hkern g1="guilsinglleft" + g2="V" + k="80" /> + <hkern g1="guilsinglleft" + g2="X" + k="61" /> + <hkern g1="guilsinglleft" + g2="florin" + k="4" /> + <hkern g1="guilsinglleft" + g2="j" + k="2" /> + <hkern g1="guilsinglleft" + g2="germandbls" + k="2" /> + <hkern g1="guilsinglleft" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="-37" /> + <hkern g1="guilsinglleft" + g2="lslash" + k="2" /> + <hkern g1="guilsinglright" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="63" /> + <hkern g1="guilsinglright" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="12" /> + <hkern g1="guilsinglright" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="244" /> + <hkern g1="guilsinglright" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="70" /> + <hkern g1="guilsinglright" + g2="Y,Yacute,Ydieresis" + k="178" /> + <hkern g1="guilsinglright" + g2="w" + k="20" /> + <hkern g1="guilsinglright" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="2" /> + <hkern g1="guilsinglright" + g2="S,Scaron" + k="2" /> + <hkern g1="guilsinglright" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="23" /> + <hkern g1="guilsinglright" + g2="Z,Zcaron" + k="57" /> + <hkern g1="guilsinglright" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="2" /> + <hkern g1="guilsinglright" + g2="z,zcaron" + k="2" /> + <hkern g1="guilsinglright" + g2="V" + k="125" /> + <hkern g1="guilsinglright" + g2="X" + k="164" /> + <hkern g1="guilsinglright" + g2="florin" + k="66" /> + <hkern g1="guilsinglright" + g2="germandbls" + k="4" /> + <hkern g1="guilsinglright" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="23" /> + <hkern g1="guilsinglright" + g2="x" + k="23" /> + <hkern g1="guilsinglright" + g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Ntilde,Thorn,IJ,uni01C4,uni01C7,uni01CA,uni01F1" + k="18" /> + <hkern g1="guilsinglright" + g2="b,h,k,l,thorn" + k="2" /> + <hkern g1="guilsinglright" + g2="lslash" + k="-37" /> + <hkern g1="hyphen,endash,emdash" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="45" /> + <hkern g1="hyphen,endash,emdash" + g2="J" + k="2" /> + <hkern g1="hyphen,endash,emdash" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="125" /> + <hkern g1="hyphen,endash,emdash" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="78" /> + <hkern g1="hyphen,endash,emdash" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="4" /> + <hkern g1="hyphen,endash,emdash" + g2="Y,Yacute,Ydieresis" + k="168" /> + <hkern g1="hyphen,endash,emdash" + g2="w" + k="12" /> + <hkern g1="hyphen,endash,emdash" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="43" /> + <hkern g1="hyphen,endash,emdash" + g2="S,Scaron" + k="18" /> + <hkern g1="hyphen,endash,emdash" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="8" /> + <hkern g1="hyphen,endash,emdash" + g2="Z,Zcaron" + k="86" /> + <hkern g1="hyphen,endash,emdash" + g2="t" + k="18" /> + <hkern g1="hyphen,endash,emdash" + g2="z,zcaron" + k="8" /> + <hkern g1="hyphen,endash,emdash" + g2="V" + k="117" /> + <hkern g1="hyphen,endash,emdash" + g2="X" + k="90" /> + <hkern g1="hyphen,endash,emdash" + g2="j" + k="18" /> + <hkern g1="hyphen,endash,emdash" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="14" /> + <hkern g1="hyphen,endash,emdash" + g2="x" + k="27" /> + <hkern g1="hyphen,endash,emdash" + g2="Lslash" + k="-98" /> + <hkern g1="hyphen,endash,emdash" + g2="lslash" + k="-78" /> + <hkern g1="parenleft" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="4" /> + <hkern g1="parenleft" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="43" /> + <hkern g1="parenleft" + g2="J" + k="31" /> + <hkern g1="parenleft" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="-37" /> + <hkern g1="parenleft" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-37" /> + <hkern g1="parenleft" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="8" /> + <hkern g1="parenleft" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="45" /> + <hkern g1="parenleft" + g2="s,scaron" + k="6" /> + <hkern g1="parenleft" + g2="Y,Yacute,Ydieresis" + k="-37" /> + <hkern g1="parenleft" + g2="f,fi,fl,f_f_i,f_f_l" + k="23" /> + <hkern g1="parenleft" + g2="oslash" + k="25" /> + <hkern g1="parenleft" + g2="w" + k="43" /> + <hkern g1="parenleft" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="10" /> + <hkern g1="parenleft" + g2="Oslash" + k="43" /> + <hkern g1="parenleft" + g2="S,Scaron" + k="4" /> + <hkern g1="parenleft" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="2" /> + <hkern g1="parenleft" + g2="t" + k="4" /> + <hkern g1="parenleft" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="8" /> + <hkern g1="parenleft" + g2="z,zcaron" + k="2" /> + <hkern g1="parenleft" + g2="j" + k="-111" /> + <hkern g1="periodcentered" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="45" /> + <hkern g1="periodcentered" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="-2" /> + <hkern g1="periodcentered" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="102" /> + <hkern g1="periodcentered" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="59" /> + <hkern g1="periodcentered" + g2="Y,Yacute,Ydieresis" + k="125" /> + <hkern g1="periodcentered" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="2" /> + <hkern g1="periodcentered" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="20" /> + <hkern g1="periodcentered" + g2="Z,Zcaron" + k="12" /> + <hkern g1="question" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="14" /> + <hkern g1="question" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="8" /> + <hkern g1="question" + g2="J" + k="4" /> + <hkern g1="question" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="43" /> + <hkern g1="question" + g2="Y,Yacute,Ydieresis" + k="2" /> + <hkern g1="questiondown" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="-39" /> + <hkern g1="questiondown" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="84" /> + <hkern g1="questiondown" + g2="J" + k="4" /> + <hkern g1="questiondown" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="246" /> + <hkern g1="questiondown" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="127" /> + <hkern g1="questiondown" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="43" /> + <hkern g1="questiondown" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="45" /> + <hkern g1="questiondown" + g2="s,scaron" + k="4" /> + <hkern g1="questiondown" + g2="Y,Yacute,Ydieresis" + k="244" /> + <hkern g1="questiondown" + g2="f,fi,fl,f_f_i,f_f_l" + k="25" /> + <hkern g1="questiondown" + g2="oslash" + k="4" /> + <hkern g1="questiondown" + g2="w" + k="63" /> + <hkern g1="questiondown" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="25" /> + <hkern g1="questiondown" + g2="Oslash" + k="10" /> + <hkern g1="questiondown" + g2="S,Scaron" + k="29" /> + <hkern g1="questiondown" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="66" /> + <hkern g1="questiondown" + g2="Eth" + k="10" /> + <hkern g1="questiondown" + g2="Z,Zcaron" + k="-2" /> + <hkern g1="questiondown" + g2="t" + k="29" /> + <hkern g1="questiondown" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="29" /> + <hkern g1="questiondown" + g2="j" + k="-86" /> + <hkern g1="questiondown" + g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Ntilde,Thorn,IJ,uni01C4,uni01C7,uni01CA,uni01F1" + k="2" /> + <hkern g1="questiondown" + g2="b,h,k,l,thorn" + k="18" /> + <hkern g1="questiondown" + g2="m,n,p,r,ntilde" + k="18" /> + <hkern g1="quotedbl,quotesingle" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="127" /> + <hkern g1="quotedbl,quotesingle" + g2="J" + k="72" /> + <hkern g1="quotedbl,quotesingle" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="-59" /> + <hkern g1="quotedbl,quotesingle" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-37" /> + <hkern g1="quotedbl,quotesingle" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="23" /> + <hkern g1="quotedbl,quotesingle" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="43" /> + <hkern g1="quotedbl,quotesingle" + g2="Y,Yacute,Ydieresis" + k="-18" /> + <hkern g1="quotedbl,quotesingle" + g2="f,fi,fl,f_f_i,f_f_l" + k="-45" /> + <hkern g1="quotedbl,quotesingle" + g2="oslash" + k="43" /> + <hkern g1="quotedbl,quotesingle" + g2="w" + k="-23" /> + <hkern g1="quotedbl,quotesingle" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-20" /> + <hkern g1="quotedbl,quotesingle" + g2="V" + k="-39" /> + <hkern g1="quotedbl,quotesingle" + g2="X" + k="-18" /> + <hkern g1="quotedbl,quotesingle" + g2="germandbls" + k="2" /> + <hkern g1="quotedbl,quotesingle" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="-23" /> + <hkern g1="quotedbl,quotesingle" + g2="x" + k="-18" /> + <hkern g1="quoteleft,quotedblleft" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="225" /> + <hkern g1="quoteleft,quotedblleft" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="23" /> + <hkern g1="quoteleft,quotedblleft" + g2="J" + k="193" /> + <hkern g1="quoteleft,quotedblleft" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="-61" /> + <hkern g1="quoteleft,quotedblleft" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-39" /> + <hkern g1="quoteleft,quotedblleft" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="86" /> + <hkern g1="quoteleft,quotedblleft" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="80" /> + <hkern g1="quoteleft,quotedblleft" + g2="s,scaron" + k="20" /> + <hkern g1="quoteleft,quotedblleft" + g2="Y,Yacute,Ydieresis" + k="-37" /> + <hkern g1="quoteleft,quotedblleft" + g2="f,fi,fl,f_f_i,f_f_l" + k="16" /> + <hkern g1="quoteleft,quotedblleft" + g2="oslash" + k="43" /> + <hkern g1="quoteleft,quotedblleft" + g2="w" + k="-2" /> + <hkern g1="quoteleft,quotedblleft" + g2="Oslash" + k="4" /> + <hkern g1="quoteleft,quotedblleft" + g2="t" + k="-4" /> + <hkern g1="quoteleft,quotedblleft" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="18" /> + <hkern g1="quoteleft,quotedblleft" + g2="z,zcaron" + k="-2" /> + <hkern g1="quoteleft,quotedblleft" + g2="V" + k="-37" /> + <hkern g1="quoteleft,quotedblleft" + g2="X" + k="-18" /> + <hkern g1="quoteleft,quotedblleft" + g2="florin" + k="16" /> + <hkern g1="quoteleft,quotedblleft" + g2="j" + k="-2" /> + <hkern g1="quoteleft,quotedblleft" + g2="i,igrave,iacute,icircumflex,idieresis" + k="-2" /> + <hkern g1="quoteleft,quotedblleft" + g2="m,n,p,r,ntilde" + k="43" /> + <hkern g1="quoteright,quotedblright" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="225" /> + <hkern g1="quoteright,quotedblright" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="23" /> + <hkern g1="quoteright,quotedblright" + g2="J" + k="121" /> + <hkern g1="quoteright,quotedblright" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="-61" /> + <hkern g1="quoteright,quotedblright" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-39" /> + <hkern g1="quoteright,quotedblright" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="80" /> + <hkern g1="quoteright,quotedblright" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="127" /> + <hkern g1="quoteright,quotedblright" + g2="s,scaron" + k="113" /> + <hkern g1="quoteright,quotedblright" + g2="Y,Yacute,Ydieresis" + k="-37" /> + <hkern g1="quoteright,quotedblright" + g2="f,fi,fl,f_f_i,f_f_l" + k="-2" /> + <hkern g1="quoteright,quotedblright" + g2="oslash" + k="55" /> + <hkern g1="quoteright,quotedblright" + g2="w" + k="-2" /> + <hkern g1="quoteright,quotedblright" + g2="Oslash" + k="4" /> + <hkern g1="quoteright,quotedblright" + g2="S,Scaron" + k="2" /> + <hkern g1="quoteright,quotedblright" + g2="Eth" + k="4" /> + <hkern g1="quoteright,quotedblright" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="2" /> + <hkern g1="quoteright,quotedblright" + g2="V" + k="-37" /> + <hkern g1="quoteright,quotedblright" + g2="X" + k="-18" /> + <hkern g1="quoteright,quotedblright" + g2="florin" + k="14" /> + <hkern g1="quoteright,quotedblright" + g2="germandbls" + k="4" /> + <hkern g1="quoteright,quotedblright" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="-2" /> + <hkern g1="quoteright,quotedblright" + g2="Lslash" + k="8" /> + <hkern g1="quoteright,quotedblright" + g2="lslash" + k="53" /> + <hkern g1="quoteright,quotedblright" + g2="m,n,p,r,ntilde" + k="78" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="-57" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="104" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="J" + k="2" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="168" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="166" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="23" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="s,scaron" + k="2" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="Y,Yacute,Ydieresis" + k="229" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="f,fi,fl,f_f_i,f_f_l" + k="57" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="oslash" + k="2" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="w" + k="84" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="102" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="Oslash" + k="25" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="S,Scaron" + k="23" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="86" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="Eth" + k="8" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="Z,Zcaron" + k="-2" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="t" + k="70" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="4" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="z,zcaron" + k="-2" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="V" + k="174" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="florin" + k="-43" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="j" + k="-29" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="germandbls" + k="2" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="86" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="x" + k="-20" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Ntilde,Thorn,IJ,uni01C4,uni01C7,uni01CA,uni01F1" + k="2" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="lslash" + k="4" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="i,igrave,iacute,icircumflex,idieresis" + k="2" /> + <hkern g1="slash" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="147" /> + <hkern g1="slash" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="76" /> + <hkern g1="slash" + g2="J" + k="236" /> + <hkern g1="slash" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="-78" /> + <hkern g1="slash" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-41" /> + <hkern g1="slash" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="227" /> + <hkern g1="slash" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="113" /> + <hkern g1="slash" + g2="s,scaron" + k="168" /> + <hkern g1="slash" + g2="Y,Yacute,Ydieresis" + k="-23" /> + <hkern g1="slash" + g2="f,fi,fl,f_f_i,f_f_l" + k="25" /> + <hkern g1="slash" + g2="oslash" + k="166" /> + <hkern g1="slash" + g2="w" + k="43" /> + <hkern g1="slash" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="23" /> + <hkern g1="slash" + g2="Oslash" + k="76" /> + <hkern g1="slash" + g2="S,Scaron" + k="25" /> + <hkern g1="slash" + g2="Eth" + k="6" /> + <hkern g1="slash" + g2="t" + k="2" /> + <hkern g1="slash" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="88" /> + <hkern g1="slash" + g2="z,zcaron" + k="115" /> + <hkern g1="slash" + g2="m,n,p,r,ntilde" + k="119" /> + <hkern g1="underscore" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="-61" /> + <hkern g1="underscore" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="82" /> + <hkern g1="underscore" + g2="J" + k="8" /> + <hkern g1="underscore" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="84" /> + <hkern g1="underscore" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="94" /> + <hkern g1="underscore" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="43" /> + <hkern g1="underscore" + g2="Y,Yacute,Ydieresis" + k="131" /> + <hkern g1="underscore" + g2="f,fi,fl,f_f_i,f_f_l" + k="20" /> + <hkern g1="underscore" + g2="oslash" + k="25" /> + <hkern g1="underscore" + g2="w" + k="82" /> + <hkern g1="underscore" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="80" /> + <hkern g1="underscore" + g2="Oslash" + k="61" /> + <hkern g1="underscore" + g2="S,Scaron" + k="25" /> + <hkern g1="underscore" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="33" /> + <hkern g1="underscore" + g2="Eth" + k="2" /> + <hkern g1="underscore" + g2="Z,Zcaron" + k="-23" /> + <hkern g1="underscore" + g2="t" + k="39" /> + <hkern g1="underscore" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="33" /> + <hkern g1="underscore" + g2="z,zcaron" + k="-2" /> + <hkern g1="underscore" + g2="j" + k="-111" /> + <hkern g1="exclam" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="4" /> + <hkern g1="exclam" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="2" /> + <hkern g1="exclam" + g2="J" + k="2" /> + <hkern g1="exclam" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="4" /> + <hkern g1="exclam" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="4" /> + <hkern g1="exclam" + g2="S,Scaron" + k="2" /> + <hkern g1="ordmasculine" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="53" /> + </font> +</defs></svg> diff --git a/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-Italic.ttf b/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-Italic.ttf new file mode 100755 index 0000000000000000000000000000000000000000..8b9a51abc225aa371cb5f2b0acbb657f972b811a Binary files /dev/null and b/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-Italic.ttf differ diff --git a/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-Italic.woff b/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-Italic.woff new file mode 100755 index 0000000000000000000000000000000000000000..cf43cffc0f26fc0affc6a31d2c52f2c241c2f3b0 Binary files /dev/null and b/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-Italic.woff differ diff --git a/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-Italic.woff2 b/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-Italic.woff2 new file mode 100755 index 0000000000000000000000000000000000000000..8d51682a2e7563618f16099457b5b02b884ea5b6 Binary files /dev/null and b/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-Italic.woff2 differ diff --git a/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-Light.eot b/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-Light.eot new file mode 100755 index 0000000000000000000000000000000000000000..e49cb8a6a2859fea0d963e58c6a398349ea3aee7 Binary files /dev/null and b/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-Light.eot differ diff --git a/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-Light.svg b/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-Light.svg new file mode 100755 index 0000000000000000000000000000000000000000..811071743d6d092639881748ec68a14b3fd4f307 --- /dev/null +++ b/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-Light.svg @@ -0,0 +1,7095 @@ +<?xml version="1.0" standalone="no"?> +<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" > +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1"> +<metadata> +Created by FontForge 20161013 at Sun Mar 19 13:47:48 2017 + By ,,, +Copyright (c)2015, HK Grotesk Latin by Alfredo Marco Pradil (ammpradil@gmail.com) and HK Grotesk Cyrillic by Stefan Peev (http://www.contextbg.net/). HK Grotesk is a trademark of Alfredo Marco Pradil. +</metadata> +<defs> +<font id="HKGrotesk-Light" horiz-adv-x="1104" > + <font-face + font-family="HK Grotesk Light" + font-weight="300" + font-stretch="normal" + units-per-em="2048" + panose-1="0 0 4 0 0 0 0 0 0 0" + ascent="1434" + descent="-614" + x-height="999" + cap-height="1413" + bbox="-922 -512 2587 2249" + underline-thickness="82" + underline-position="-410" + unicode-range="U+0020-FB02" + /> +<missing-glyph horiz-adv-x="1167" +d="M174 0v954h819v-954h-819zM276 102h615v750h-615v-750z" /> + <glyph glyph-name="fi" unicode="fi" horiz-adv-x="971" +d="M180 0v897h-145v102h147q0 70 9.5 130t34 117.5t63.5 98t101.5 65t144.5 24.5q86 0 147.5 -30.5t124.5 -92.5l-70 -80q-95 100 -207 100q-235 0 -235 -332h502v-999h-111v897h-391v-897h-115z" /> + <glyph glyph-name="fl" unicode="fl" horiz-adv-x="977" +d="M813 -20q-42 0 -69.5 18.5t-39 54.5t-15 68.5t-3.5 81.5v1059q-3 22 -51 44.5t-113 22.5q-124 0 -175.5 -42t-51.5 -152v-136h227v-102h-227v-897h-115v897h-145v102h147v156q0 139 89 209t239 70q148 0 289 -129v-1153v-17t2 -13.5t6 -12.5t12.5 -6t20.5 -3q32 0 73 13 +v-113l4 -1q-11 -9 -68 -16z" /> + <glyph glyph-name="f_f_i" unicode="ffi" horiz-adv-x="1483" +d="M813 999h506v-999h-111v897h-395v-897h-115v897h-409v-897h-119v897h-135v102h137v136q0 132 89.5 215.5t223.5 83.5q163 0 277 -111q42 47 113.5 79t150.5 32q141 0 289 -117l-57 -85q-8 12 -33.5 33t-80.5 43.5t-114 22.5q-94 0 -155.5 -54t-61.5 -147v-131zM700 1135 +q0 61 7 102q-4 9 -19.5 23t-41 30.5t-66.5 28.5t-86 12q-95 0 -150 -53.5t-55 -147.5v-131h411v136zM1258 1232q2 -2 1 -2t-2 1z" /> + <glyph glyph-name="f_f_l" unicode="ffl" horiz-adv-x="1487" +d="M1331 -20q-35 0 -59.5 9.5t-36.5 22t-18.5 34t-7.5 35t-1 34.5v1134q-17 34 -64 58t-100 24q-94 0 -150 -58.5t-56 -152.5v-121h161v-102h-161v-897h-115v897h-434v-897h-119v897h-135v102h137v123q0 133 90.5 222.5t229.5 89.5q71 0 135 -21.5t93.5 -41.5t65.5 -50 +q46 53 105 83t151 30q86 0 141 -25t136 -102v-1151q0 -4 -0.5 -13t0 -12.5t1 -10t3 -9t7 -6t11.5 -4.5t17 -1q36 0 69 13v-113q-48 -20 -96 -20zM289 999h436q0 185 10 222q-86 110 -223 110q-97 0 -160 -55t-63 -152v-125z" /> + <glyph glyph-name=".notdef" horiz-adv-x="1167" +d="M174 0v954h819v-954h-819zM276 102h615v750h-615v-750z" /> + <glyph glyph-name=".null" horiz-adv-x="0" + /> + <glyph glyph-name="nonmarkingreturn" horiz-adv-x="682" + /> + <glyph glyph-name="space" unicode=" " horiz-adv-x="553" + /> + <glyph glyph-name="exclam" unicode="!" horiz-adv-x="629" +d="M266 369l-28 1067h153l-29 -1067h-96zM225 0v176h178v-176h-178z" /> + <glyph glyph-name="quotedbl" unicode=""" horiz-adv-x="895" +d="M244 1014v399h116v-399h-116zM532 1014v399h119v-399h-119z" /> + <glyph glyph-name="numbersign" unicode="#" horiz-adv-x="1364" +d="M266 0l90 444h-241v99h262l69 350h-249v92h270l94 449h103l-95 -437h338l92 437h103l-92 -445h241v-96h-260l-71 -350h249v-92h-270l-92 -451h-102l92 436h-338l-90 -436h-103zM479 543h338l70 350h-336z" /> + <glyph glyph-name="dollar" unicode="$" horiz-adv-x="1110" +d="M512 -246v234q-161 14 -278 112t-142 262l129 39q15 -139 113.5 -213.5t236.5 -74.5q133 0 214 67t81 197q0 60 -23.5 109t-62.5 83.5t-90 63.5t-107.5 54l-113 50t-107.5 56.5t-90 69.5t-62.5 92.5t-23.5 121.5q0 146 92 241.5t234 111.5v229h84v-227q237 -18 346 -220 +l-102 -71q-45 85 -119.5 128.5t-161.5 43.5q-96 0 -166.5 -60.5t-70.5 -158.5q0 -73 37.5 -128t97.5 -91t132 -67.5t144.5 -67t132.5 -78.5t97.5 -112.5t37.5 -160.5q0 -177 -114 -287.5t-291 -115.5v-232h-84z" /> + <glyph glyph-name="percent" unicode="%" horiz-adv-x="1585" +d="M383 813q-65 0 -114 29.5t-75 77.5t-38.5 99t-12.5 103q0 42 7 84t24.5 84t43.5 74t67 52t92 20q78 0 134 -47.5t80.5 -116.5t24.5 -150q0 -79 -24 -147.5t-78.5 -115t-130.5 -46.5zM358 8l744 1387h112l-743 -1387h-113zM381 895q49 0 82 37.5t46 87t13 104.5 +q0 56 -13.5 105.5t-47.5 86t-84 36.5q-38 0 -67.5 -21t-46 -55t-24.5 -73t-8 -81q0 -56 13.5 -105t49 -85.5t87.5 -36.5zM1210 6q-65 0 -113.5 29t-74.5 76t-38.5 98t-12.5 104q0 42 7 83t24.5 82.5t43 73t66.5 51.5t92 20q114 0 177 -93t63 -219q0 -79 -24 -146.5t-79 -113 +t-131 -45.5zM1208 88q37 0 66.5 21.5t45.5 55.5t24 72t8 76q0 56 -13.5 105t-48.5 85t-86 36q-50 0 -84 -36t-47.5 -85t-13.5 -105q0 -88 37 -156.5t112 -68.5z" /> + <glyph glyph-name="ampersand" unicode="&" horiz-adv-x="1374" +d="M1255 20l-79 -69l-201 238q-166 -209 -447 -209q-170 0 -279.5 81t-109.5 234q0 64 21 123.5t51.5 104t82 91.5t94 78t105.5 72q-40 48 -65 82t-59.5 86.5t-52 102t-17.5 93.5q0 138 95.5 220t234.5 82q128 0 215.5 -86t87.5 -216q0 -62 -22 -117t-67 -103.5t-89.5 -84.5 +t-110.5 -80l319 -376q61 131 82 323l107 -12q-22 -233 -115 -399zM403 1126q0 -111 174 -308q61 40 101 70t79.5 69.5t59 82t19.5 88.5q0 84 -62 139.5t-143 55.5q-91 0 -159.5 -52.5t-68.5 -144.5zM532 94q243 0 373 177l-349 414q-74 -48 -119 -82t-95 -83.5t-74 -104 +t-24 -116.5q0 -72 44 -120t106 -66.5t138 -18.5z" /> + <glyph glyph-name="quotesingle" unicode="'" horiz-adv-x="604" +d="M244 1042v400h116v-400h-116z" /> + <glyph glyph-name="parenleft" unicode="(" horiz-adv-x="557" +d="M373 -8q-107 119 -172.5 330.5t-65.5 382.5q0 178 59 374t177 340h106q-114 -153 -175.5 -340t-61.5 -377q0 -183 60 -372t175 -338h-102z" /> + <glyph glyph-name="parenright" unicode=")" horiz-adv-x="557" +d="M82 -8q112 149 173.5 342.5t61.5 370.5t-65 372t-172 342h104q119 -140 178.5 -332.5t59.5 -379.5q0 -176 -66 -388t-172 -327h-102z" /> + <glyph glyph-name="asterisk" unicode="*" horiz-adv-x="860" +d="M303 854l-76 59l176 207l-253 43l28 99l236 -105l-31 256h92l-31 -256l236 105l31 -99l-256 -43l178 -207l-78 -59l-127 238z" /> + <glyph glyph-name="plus" unicode="+" horiz-adv-x="1268" +d="M586 106v472h-457v96h457v469h96v-469h457v-96h-457v-472h-96z" /> + <glyph glyph-name="comma" unicode="," horiz-adv-x="618" +d="M150 -332l145 596h172l-242 -596h-75z" /> + <glyph glyph-name="hyphen" unicode="-" horiz-adv-x="827" +d="M166 596v96h496v-96h-496z" /> + <glyph glyph-name="period" unicode="." horiz-adv-x="666" +d="M240 0v176h186v-176h-186z" /> + <glyph glyph-name="slash" unicode="/" horiz-adv-x="926" +d="M23 -430l747 1946h133l-745 -1946h-135z" /> + <glyph glyph-name="zero" unicode="0" horiz-adv-x="1147" +d="M584 -20q-93 0 -171 31.5t-133 86.5t-96.5 125.5t-65.5 153.5t-36 165t-12 165q0 71 8 142t26.5 143.5t45.5 137t67.5 121t90.5 97.5t117 64.5t144 23.5q123 0 222.5 -62t161.5 -166t95 -234t33 -272q0 -140 -32.5 -268.5t-93 -230.5t-156.5 -162.5t-215 -60.5zM578 100 +q79 0 143 40.5t103.5 103.5t66 145.5t37 162t10.5 157.5q0 67 -8 133t-24.5 135.5t-46 128t-69 105.5t-96.5 73.5t-125 26.5q-81 0 -146 -39t-105.5 -100t-67.5 -143t-38 -161.5t-11 -160.5t11 -160.5t38.5 -161.5t69 -144t108 -101.5t150.5 -39.5z" /> + <glyph glyph-name="one" unicode="1" horiz-adv-x="1147" +d="M588 0v1100h-379v108h213q85 0 132.5 51t47.5 130v24h121v-1413h-135z" /> + <glyph glyph-name="two" unicode="2" horiz-adv-x="1147" +d="M88 0v127q128 81 227.5 160t136 115.5t97.5 101.5q140 152 209 272.5t69 253.5q0 138 -70.5 210.5t-185.5 72.5q-129 0 -207 -92.5t-88 -257.5l-133 14q0 222 114 338.5t308 116.5q190 0 298 -108.5t108 -291.5q0 -154 -81 -294.5t-257 -317.5q-42 -42 -78.5 -77 +t-70.5 -64t-56 -47.5t-53 -40.5t-41.5 -29t-42.5 -28t-35 -23h784v-111h-952z" /> + <glyph glyph-name="three" unicode="3" horiz-adv-x="1147" +d="M551 -20q-132 0 -235.5 44t-166.5 137.5t-63 225.5l121 14q0 -95 49.5 -166.5t126.5 -106t168 -34.5q65 0 125.5 19.5t109 56.5t78 96.5t29.5 132.5q0 141 -93.5 216t-230.5 75h-84v119h84q111 0 178.5 65.5t67.5 182.5q0 120 -78.5 190t-189.5 70q-115 0 -194.5 -71 +t-80.5 -187l-118 16q0 166 111 262.5t282 96.5q167 0 279 -98t112 -263q0 -101 -45 -183t-131 -130q123 -38 186 -134.5t66 -228.5q0 -199 -130 -308t-333 -109z" /> + <glyph glyph-name="four" unicode="4" horiz-adv-x="1147" +d="M705 0v393h-652v76l660 944h123v-909h225v-111h-225v-393h-131zM205 504h500v706z" /> + <glyph glyph-name="five" unicode="5" horiz-adv-x="1147" +d="M571 -20q-173 0 -292 107t-156 275l117 44q12 -60 33 -110.5t58 -99.5t97.5 -77.5t138.5 -28.5q81 0 145.5 32t103 85t58 117t19.5 133q0 68 -19.5 129.5t-56.5 111t-97 78.5t-136 29q-94 0 -173 -43t-126 -119l-113 66l121 704h676v-115h-576l-82 -503q104 116 289 116 +q129 0 229 -63t151.5 -166t51.5 -225q0 -129 -57.5 -237.5t-164 -174t-239.5 -65.5z" /> + <glyph glyph-name="six" unicode="6" horiz-adv-x="1147" +d="M580 -20q-125 0 -229.5 62t-165 169t-60.5 233q0 130 65 244l410 725h143l-313 -541q73 17 150 17q192 0 323 -126t131 -317q0 -123 -57 -229.5t-162.5 -171.5t-234.5 -65zM580 98q136 0 231.5 102t95.5 244q0 144 -95.5 245.5t-231.5 101.5q-137 0 -232.5 -101.5 +t-95.5 -245.5q0 -142 96 -244t232 -102z" /> + <glyph glyph-name="seven" unicode="7" horiz-adv-x="1147" +d="M276 0l601 1298h-768v115h919v-65l-604 -1348h-148z" /> + <glyph glyph-name="eight" unicode="8" horiz-adv-x="1147" +d="M573 -20q-95 0 -178 26t-147 75t-100.5 127.5t-36.5 176.5q0 132 67 229t193 148q-89 46 -139 129t-50 184q0 111 54 193.5t142 124t197 41.5q108 0 195.5 -41.5t141 -124t53.5 -193.5q0 -102 -48 -184t-137 -129q122 -48 189 -146.5t67 -230.5q0 -131 -64 -224.5 +t-167 -137t-232 -43.5zM580 799q110 0 186 71t76 187q0 123 -76.5 193.5t-187.5 70.5q-105 0 -185 -67.5t-80 -182.5q0 -122 74 -197t193 -75zM573 88q64 0 122.5 19.5t105.5 57t74.5 97.5t27.5 135q0 143 -96 225.5t-234 82.5q-140 0 -236.5 -82.5t-96.5 -225.5 +q0 -75 28.5 -135t76 -97.5t106 -57t122.5 -19.5z" /> + <glyph glyph-name="nine" unicode="9" horiz-adv-x="1147" +d="M408 0l309 541q-70 -17 -150 -17q-192 0 -323 127t-131 316q0 123 57 229.5t163 172t236 65.5q124 0 228.5 -62.5t164.5 -169.5t60 -233q0 -129 -64 -244l-411 -725h-139zM567 623q137 0 232.5 101t95.5 245q0 142 -96 244t-232 102t-231.5 -102t-95.5 -244 +q0 -144 95.5 -245t231.5 -101z" /> + <glyph glyph-name="colon" unicode=":" horiz-adv-x="670" +d="M246 778v176h178v-176h-178zM246 0v176h178v-176h-178z" /> + <glyph glyph-name="semicolon" unicode=";" horiz-adv-x="649" +d="M260 778v176h178v-176h-178zM132 -332l145 596h172l-242 -596h-75z" /> + <glyph glyph-name="less" unicode="<" horiz-adv-x="1204" +d="M993 174l-876 500l876 500l60 -103l-723 -397l723 -398z" /> + <glyph glyph-name="equal" unicode="=" horiz-adv-x="1262" +d="M260 780v119h741v-119h-741zM260 444v119h741v-119h-741z" /> + <glyph glyph-name="greater" unicode=">" horiz-adv-x="1204" +d="M211 174l-59 102l722 398l-722 397l59 103l876 -500z" /> + <glyph glyph-name="question" unicode="?" horiz-adv-x="1026" +d="M446 365v249q0 57 18.5 98.5t48 66.5t65 45t71 40.5t65 46t48 68.5t18.5 102q0 117 -77 177.5t-197 60.5q-110 0 -192 -64.5t-83 -175.5h-127q1 106 56.5 188t144.5 124.5t193 42.5q114 0 204.5 -39.5t146.5 -121.5t56 -194q0 -67 -19 -119t-48.5 -83t-66 -55.5t-73 -44 +t-66 -40.5t-48.5 -52.5t-19 -72.5v-247h-119zM420 0v176h178v-176h-178z" /> + <glyph glyph-name="at" unicode="@" horiz-adv-x="2079" +d="M1032 -348q-179 0 -336.5 59t-276.5 167t-188 272.5t-69 363.5q0 258 110 466.5t314.5 330t466.5 121.5q190 0 352.5 -66t275.5 -181.5t176.5 -276t63.5 -345.5q0 -93 -16 -180t-50.5 -165.5t-85 -137t-125.5 -93t-165 -34.5q-140 0 -212 76.5t-50 206.5 +q-57 -77 -143.5 -120.5t-180.5 -43.5q-148 0 -227.5 105t-79.5 263q0 79 20 162t59.5 159.5t93 137t127.5 97t156 36.5q106 0 180.5 -55.5t90.5 -147.5l30 154h138q-11 -58 -51 -217.5t-67.5 -297t-27.5 -222.5q0 -83 30.5 -117.5t104.5 -34.5q61 0 111 20.5t84 56.5 +t59 81.5t39 100t20.5 106.5t6.5 106q0 158 -53.5 295t-149 235t-233.5 154t-301 56q-226 0 -400.5 -104.5t-267 -283t-92.5 -399.5q0 -172 59 -312t160.5 -230t235.5 -138.5t286 -48.5q128 0 250 39l49 -125q-145 -51 -301 -51zM911 209q85 0 155 44.5t112.5 114t65 148 +t22.5 152.5q0 107 -49 167t-150 60q-69 0 -128.5 -29t-100 -76.5t-70 -108t-43.5 -122.5t-14 -121q0 -107 49.5 -168t150.5 -61z" /> + <glyph glyph-name="A" unicode="A" horiz-adv-x="1296" +d="M76 0l522 1413h104l519 -1413h-144l-108 307h-639l-107 -307h-147zM375 434h549l-273 780z" /> + <glyph glyph-name="B" unicode="B" horiz-adv-x="1235" +d="M219 0v1413h367q90 0 168 -19t143 -58t103 -107t38 -158q0 -117 -49 -194.5t-139 -131.5q60 -27 104 -58t80.5 -75t55 -105t18.5 -138q0 -83 -25.5 -148t-68 -106t-101.5 -67.5t-120.5 -37t-130.5 -10.5h-443zM350 778h230q138 0 224.5 68.5t86.5 202.5q0 58 -16.5 102 +t-43.5 70.5t-67 42.5t-82 22t-94 6h-238v-514zM350 123h316q309 0 309 250q0 282 -303 282h-322v-532z" /> + <glyph glyph-name="C" unicode="C" horiz-adv-x="1417" +d="M752 -20q-123 0 -225 37.5t-174 104t-121.5 158.5t-73 200.5t-23.5 230.5q0 120 22.5 226t72 198t122.5 158.5t179.5 104.5t236.5 38q415 0 551 -369l-123 -55q-22 82 -68 143t-107 94t-125.5 48.5t-135.5 15.5q-104 0 -188 -32.5t-140 -88.5t-93.5 -133.5t-54 -164 +t-16.5 -183.5q0 -99 17 -186.5t55.5 -166t95 -134.5t140.5 -89t188 -33q96 0 175.5 27.5t149.5 97t109 179.5l123 -56q-79 -178 -224 -274t-345 -96z" /> + <glyph glyph-name="D" unicode="D" horiz-adv-x="1405" +d="M219 0v1413h348q341 0 524 -184.5t183 -532.5q0 -334 -185 -515t-524 -181h-346zM354 123h187q127 0 234.5 36t189 106t128 183.5t46.5 258.5q0 282 -147 434.5t-429 152.5h-209v-1171z" /> + <glyph glyph-name="E" unicode="E" horiz-adv-x="1237" +d="M219 0v1413h909v-113h-774v-538h662v-109h-662v-532h774v-121h-909z" /> + <glyph glyph-name="F" unicode="F" horiz-adv-x="1186" +d="M219 0v1413h883v-113h-748v-538h660v-109h-660v-653h-135z" /> + <glyph glyph-name="G" unicode="G" horiz-adv-x="1503" +d="M758 -20q-156 0 -277 57.5t-195.5 158t-112.5 230t-38 281.5q0 151 38.5 281t113.5 231t195.5 159t273.5 58q196 0 339.5 -94.5t223.5 -274.5l-125 -55q-142 293 -440 293q-125 0 -220.5 -47.5t-152 -130.5t-85 -186.5t-28.5 -223.5q0 -126 28.5 -233t85.5 -192.5 +t153.5 -134t222.5 -48.5q95 0 177.5 32t145.5 92.5t99.5 154.5t36.5 210h-324v104h448v-702h-114l4 272q-43 -120 -169 -206t-304 -86z" /> + <glyph glyph-name="H" unicode="H" horiz-adv-x="1446" +d="M219 0v1413h135v-651h738v651h135v-1413h-135v653h-738v-653h-135z" /> + <glyph glyph-name="I" unicode="I" horiz-adv-x="573" +d="M219 0v1413h135v-1413h-135z" /> + <glyph glyph-name="J" unicode="J" horiz-adv-x="1114" +d="M496 -20q-182 0 -291.5 114.5t-122.5 290.5l131 18q4 -59 22 -111.5t50.5 -97.5t87 -71.5t123.5 -26.5q70 0 121.5 20.5t82.5 54.5t50 85t25.5 103.5t6.5 119.5v821h-532v113h668v-913q0 -520 -422 -520z" /> + <glyph glyph-name="K" unicode="K" horiz-adv-x="1442" +d="M219 0v1413h135v-852l805 852h170l-526 -551l565 -862h-160l-493 768l-361 -373v-395h-135z" /> + <glyph glyph-name="L" unicode="L" horiz-adv-x="1030" +d="M219 0v1413h135v-1292h604v-121h-739z" /> + <glyph glyph-name="M" unicode="M" horiz-adv-x="1753" +d="M219 0v1413h238l415 -1167l424 1167h238v-1413h-135v1331l-445 -1208h-155l-443 1208v-1331h-137z" /> + <glyph glyph-name="N" unicode="N" horiz-adv-x="1409" +d="M219 0v1413h223l613 -1309v1309h135v-1413h-227l-607 1311v-1311h-137z" /> + <glyph glyph-name="O" unicode="O" horiz-adv-x="1511" +d="M754 -20q-153 0 -273.5 58t-195.5 158.5t-113.5 230.5t-38.5 280q0 119 24 226.5t74 199t122.5 158.5t175 105t225.5 38q124 0 227.5 -38t176 -104.5t122.5 -158.5t74 -199.5t24 -226.5q0 -120 -24 -227t-74 -199t-122.5 -158.5t-176 -104.5t-227.5 -38zM754 106 +q128 0 226.5 49.5t156.5 135t87 190.5t29 226q0 96 -17.5 182t-56.5 163t-96 133.5t-141.5 89t-187.5 32.5q-101 0 -184.5 -32.5t-140 -89t-95.5 -133.5t-56.5 -163.5t-17.5 -181.5q0 -96 17.5 -182.5t56.5 -163.5t95.5 -133.5t140 -89t184.5 -32.5z" /> + <glyph glyph-name="P" unicode="P" horiz-adv-x="1143" +d="M219 0v1413h385q203 0 321.5 -102.5t118.5 -280.5q0 -182 -117.5 -280.5t-322.5 -98.5h-250v-651h-135zM354 768h250q147 0 227 66t80 196q0 126 -81 196t-226 70h-250v-528z" /> + <glyph glyph-name="Q" unicode="Q" horiz-adv-x="1538" +d="M1333 -92l-190 198q-146 -126 -389 -126q-153 0 -273.5 58t-195.5 158.5t-113.5 230.5t-38.5 280q0 119 24 226.5t74 199t122.5 158.5t175 105t225.5 38q124 0 227.5 -37.5t176 -104.5t122.5 -158.5t74 -199t24 -227.5q0 -325 -159 -519l192 -198zM754 100q177 0 297 93 +l-201 210l74 84l204 -211q115 165 115 431q0 96 -16.5 182.5t-54 165t-93 135t-139 90t-186.5 33.5q-101 0 -183.5 -33.5t-138 -90t-93 -135t-54.5 -165t-17 -182.5t17 -183t54.5 -165t93 -135t138 -90.5t183.5 -33.5z" /> + <glyph glyph-name="R" unicode="R" horiz-adv-x="1208" +d="M219 -2v1413h391q188 0 310 -105t122 -282q0 -144 -83 -242t-224 -123l381 -661h-160l-354 641h-248v-641h-135zM356 770h281q123 6 198.5 72t75.5 184q0 126 -83 196t-216 70h-256v-522z" /> + <glyph glyph-name="S" unicode="S" +d="M567 -16q-179 0 -313 96t-162 272l123 39q15 -139 115 -213t237 -74t218 67.5t81 203.5q0 61 -23.5 111t-62.5 84.5t-90 64t-107.5 55l-113 51t-107.5 57.5t-90 70t-62.5 93t-23.5 122q0 154 107 252.5t262 98.5q257 0 383 -213l-96 -68q-43 83 -119 124.5t-168 41.5 +q-97 0 -168.5 -60.5t-71.5 -160.5q0 -67 37.5 -119t97.5 -88t132.5 -69t145 -71t132.5 -84t97.5 -118t37.5 -164q0 -181 -120.5 -291t-307.5 -110z" /> + <glyph glyph-name="T" unicode="T" horiz-adv-x="1247" +d="M555 0v1307h-485v106h1108v-106h-486v-1307h-137z" /> + <glyph glyph-name="U" unicode="U" horiz-adv-x="1346" +d="M672 -20q-124 0 -219 44.5t-150 120.5t-82.5 168.5t-27.5 196.5v903h135v-854q0 -453 344 -453q77 0 137.5 23.5t99.5 64t64.5 99t36 124t10.5 142.5v854h135v-893q0 -86 -17 -163.5t-54.5 -147t-92.5 -120t-137 -80t-182 -29.5z" /> + <glyph glyph-name="V" unicode="V" horiz-adv-x="1319" +d="M600 0l-524 1413h137l449 -1253l448 1253h133l-520 -1413h-123z" /> + <glyph glyph-name="W" unicode="W" horiz-adv-x="1966" +d="M477 0l-391 1413h137l344 -1263l361 1181h110l363 -1181l342 1263h137l-391 -1413h-156l-346 1112l-354 -1112h-156z" /> + <glyph glyph-name="X" unicode="X" horiz-adv-x="1239" +d="M84 0l467 707l-465 706h160l375 -596l376 596h156l-461 -706l463 -707h-156l-381 586l-374 -586h-160z" /> + <glyph glyph-name="Y" unicode="Y" horiz-adv-x="1315" +d="M594 0v553l-528 860h155l436 -719l439 719h153l-526 -860v-553h-129z" /> + <glyph glyph-name="Z" unicode="Z" horiz-adv-x="1274" +d="M94 0v111l922 1189h-877v113h1030v-117l-917 -1173h917v-123h-1075z" /> + <glyph glyph-name="bracketleft" unicode="[" horiz-adv-x="631" +d="M211 -76v1563h344v-74h-236v-1413h236v-76h-344z" /> + <glyph glyph-name="backslash" unicode="\" horiz-adv-x="926" +d="M770 -430l-747 1946h135l745 -1946h-133z" /> + <glyph glyph-name="bracketright" unicode="]" horiz-adv-x="631" +d="M76 -76v76h235v1413h-235v74h344v-1563h-344z" /> + <glyph glyph-name="asciicircum" unicode="^" horiz-adv-x="973" +d="M139 848l346 563l351 -563h-138l-213 342l-209 -342h-137z" /> + <glyph glyph-name="underscore" unicode="_" horiz-adv-x="1233" +d="M236 -96v96h761v-96h-761z" /> + <glyph glyph-name="grave" unicode="`" horiz-adv-x="537" +d="M311 1126l-245 287h176l215 -287h-146z" /> + <glyph glyph-name="a" unicode="a" horiz-adv-x="1016" +d="M397 -20q-140 0 -227.5 78t-87.5 212q0 295 450 295h222q0 346 -258 346q-175 0 -287 -153l-90 71q137 191 366 191q184 0 282.5 -109.5t98.5 -296.5v-614h-108v205q-50 -112 -147 -168.5t-214 -56.5zM410 86q79 0 146 35.5t109 91.5t65.5 122.5t23.5 131.5h-207 +q-171 0 -252.5 -45t-81.5 -154q0 -94 54.5 -138t142.5 -44z" /> + <glyph glyph-name="b" unicode="b" horiz-adv-x="1116" +d="M616 -20q-209 0 -317 165v-145h-123v1413h123v-559q111 166 317 166q124 0 215.5 -71t136 -187.5t44.5 -261.5q0 -146 -44.5 -262t-136 -187t-215.5 -71zM584 82q76 0 135.5 35t95 94.5t54 133t18.5 155.5q0 81 -18.5 154.5t-54 133t-95 95t-135.5 35.5q-75 0 -133.5 -35 +t-93 -95t-51.5 -133t-17 -155q0 -112 29 -203.5t97.5 -153t168.5 -61.5z" /> + <glyph glyph-name="c" unicode="c" horiz-adv-x="967" +d="M522 -20q-134 0 -231.5 73.5t-144 189t-46.5 255.5q0 103 27 196t78 166t132.5 116.5t182.5 43.5q129 0 227 -69t152 -189l-119 -53q-22 95 -94 152t-166 57q-78 0 -136.5 -38.5t-91 -102t-48 -134t-15.5 -145.5q0 -76 15.5 -146t47.5 -132.5t91 -100t137 -37.5 +q96 0 167 56t93 149l107 -49q-44 -122 -139 -190t-226 -68z" /> + <glyph glyph-name="d" unicode="d" horiz-adv-x="1118" +d="M817 1413h125v-1413h-125v146q-55 -78 -130.5 -122t-188.5 -44q-121 0 -212 70.5t-136.5 187.5t-45.5 262t45.5 262t136.5 187.5t212 70.5q209 0 319 -166v559zM530 82q77 0 136 35t93 95t51 132.5t17 155.5q0 82 -17 154.5t-51 133t-93 95.5t-136 35q-75 0 -133.5 -35 +t-93.5 -95t-52.5 -133t-17.5 -155t17.5 -155.5t52.5 -133t93.5 -94.5t133.5 -35z" /> + <glyph glyph-name="e" unicode="e" horiz-adv-x="1030" +d="M537 -12q-107 0 -192 40.5t-137.5 110.5t-80 160.5t-27.5 194.5q0 82 16.5 157.5t51.5 141.5t84 114.5t118 76.5t150 28q92 0 165 -28.5t118.5 -75t76 -110.5t42.5 -130.5t12 -139.5q0 -35 -4 -71h-699q-5 -151 76 -256t228 -105q96 0 164.5 23.5t125.5 83.5l86 -66 +q-81 -79 -168.5 -114t-205.5 -35zM231 565h584q0 66 -15 124t-47.5 109t-92 81t-140.5 30q-70 0 -125 -28t-90 -76.5t-53.5 -109.5t-20.5 -130z" /> + <glyph glyph-name="f" unicode="f" horiz-adv-x="676" +d="M217 0v897h-182v102h182v177q0 126 73 192t185 66q84 0 160 -37l-25 -99q-71 33 -127 33q-66 0 -104.5 -40.5t-38.5 -119.5v-172h301v-102h-301v-897h-123z" /> + <glyph glyph-name="g" unicode="g" horiz-adv-x="1018" +d="M508 123q176 -25 245 -49q144 -51 168 -174q5 -27 5 -58q0 -96 -56.5 -165t-142.5 -100.5t-190 -31.5q-186 0 -304 97t-118 239q0 23 2 37l154 158q-134 70 -134 207q0 97 68 156q-84 90 -84 227q0 156 103.5 251t260.5 95q161 0 263 -102l151 139l74 -95l-165 -128 +q36 -75 36 -160q0 -156 -101.5 -247t-259.5 -91q-103 0 -187 42q-46 -37 -46 -83q0 -39 20.5 -68.5t59.5 -48t81 -29.5t97 -18zM481 911q-104 0 -168.5 -71t-64.5 -170q0 -108 63.5 -173t169.5 -65q107 0 171.5 65t64.5 173q0 101 -65.5 171t-170.5 70zM551 -338 +q109 0 187.5 45t78.5 129q0 26 -8.5 47t-20 35.5t-34.5 27t-42 20t-53 15t-56.5 11t-64 10t-63.5 10.5q-56 10 -104 24l-135 -157q-2 -83 83.5 -150t231.5 -67z" /> + <glyph glyph-name="h" unicode="h" horiz-adv-x="1112" +d="M176 0v1413h123v-590q48 85 140 139t194 54q85 0 149.5 -31.5t102.5 -86.5t57 -125t19 -152v-621h-127v598q0 57 -9.5 106t-32.5 94.5t-68.5 72t-109.5 26.5q-133 0 -224 -103.5t-91 -246.5v-547h-123z" /> + <glyph glyph-name="i" unicode="i" horiz-adv-x="477" +d="M164 1229v184h149v-184h-149zM176 0v999h125v-999h-125z" /> + <glyph glyph-name="j" unicode="j" horiz-adv-x="481" +d="M166 1237v176h149v-176h-149zM57 -438q-64 0 -145 30l25 89q53 -17 122 -17q63 0 90 42.5t27 103.5v1189h129v-1167q0 -126 -60.5 -198t-187.5 -72z" /> + <glyph glyph-name="k" unicode="k" horiz-adv-x="1030" +d="M176 0v1413h127v-983l463 569h154l-314 -362l385 -637h-149l-310 547l-229 -254v-293h-127z" /> + <glyph glyph-name="l" unicode="l" horiz-adv-x="504" +d="M322 -20q-32 0 -56 7t-40 15.5t-26.5 27t-16 31.5t-8.5 40t-3 40v44v18v1210h127v-1272q0 -42 28 -51q6 -2 13 -2q54 0 104 10v-98q-52 -20 -122 -20z" /> + <glyph glyph-name="m" unicode="m" horiz-adv-x="1688" +d="M174 0v999h127v-168q28 78 104.5 133.5t172.5 55.5q113 0 195.5 -54.5t115.5 -162.5q45 105 122 161t183 56q89 0 156.5 -32t107 -89.5t59 -130t19.5 -160.5v-608h-127v598q0 45 -5.5 87t-21.5 85.5t-40.5 75t-65.5 52t-94 20.5q-82 0 -144 -55.5t-91 -137t-29 -170.5 +v-555h-127v602q0 59 -10 110t-33 100t-69.5 77.5t-111.5 28.5q-63 0 -114.5 -35.5t-84 -94t-50 -129.5t-17.5 -145v-514h-127z" /> + <glyph glyph-name="n" unicode="n" horiz-adv-x="1108" +d="M174 0v999h125v-188q50 95 133 150t197 55q111 0 186.5 -56.5t108 -146t32.5 -205.5v-608h-125v598q0 57 -11 108.5t-35.5 100t-73 77.5t-115.5 29q-128 0 -212.5 -105t-84.5 -296v-512h-125z" /> + <glyph glyph-name="o" unicode="o" horiz-adv-x="1116" +d="M555 -20q-134 0 -240 71t-163.5 190t-57.5 261t57.5 260t163.5 188t240 70t241.5 -70t166.5 -188.5t59 -259.5q0 -142 -59 -261t-166.5 -190t-241.5 -71zM557 82q84 0 151 36t107 96.5t61 134t21 153.5q0 109 -35 201t-113.5 153.5t-189.5 61.5q-84 0 -150.5 -35.5 +t-107 -94.5t-61.5 -132.5t-21 -153.5q0 -81 21 -155t61.5 -134t106.5 -95.5t149 -35.5z" /> + <glyph glyph-name="p" unicode="p" horiz-adv-x="1118" +d="M176 -438v1437h125v-145q50 77 129.5 121.5t181.5 44.5q128 0 220.5 -70.5t137 -186.5t44.5 -263q0 -146 -44 -261.5t-136.5 -187t-221.5 -71.5q-100 0 -179.5 43t-131.5 122v-583h-125zM588 82q76 0 135 35t94.5 94.5t53.5 133t18 155.5t-18 155t-53.5 133t-94.5 95 +t-135 35q-101 0 -170.5 -62t-99 -153.5t-29.5 -202.5q0 -112 29.5 -203.5t99 -153t170.5 -61.5z" /> + <glyph glyph-name="q" unicode="q" horiz-adv-x="1120" +d="M817 -438v583q-112 -165 -311 -165q-127 0 -219.5 70.5t-137.5 186.5t-45 263q0 146 45 262.5t137.5 187t219.5 70.5q101 0 181 -44t130 -122v145h127v-1437h-127zM532 82q76 0 134.5 35t92.5 95.5t51 133t17 154.5t-17 154.5t-51 133t-92.5 95.5t-134.5 35t-135 -35 +t-94 -94.5t-52.5 -133t-17.5 -155.5t17.5 -155.5t52.5 -133t94 -94.5t135 -35z" /> + <glyph glyph-name="r" unicode="r" horiz-adv-x="791" +d="M174 0v999h127v-180q40 92 122 146.5t179 54.5q87 0 156 -47l-51 -111q-44 39 -125 39q-137 0 -210 -101t-73 -282v-518h-125z" /> + <glyph glyph-name="s" unicode="s" horiz-adv-x="858" +d="M444 -20q-130 0 -227 69t-133 170l109 60q28 -90 94 -143.5t164 -53.5q89 0 146.5 44.5t57.5 131.5q0 47 -18.5 83.5t-49.5 59.5t-71.5 41t-85 33l-89 30t-85 35.5t-71.5 47.5t-49.5 68.5t-18.5 95.5q0 124 87 196t216 72q108 0 189.5 -52.5t125.5 -142.5l-90 -53 +q-70 146 -229 146q-85 0 -136 -42t-51 -110q0 -45 23.5 -78t62 -52t87.5 -37.5t100.5 -32.5t100.5 -38t87.5 -53.5t62 -80t23.5 -115.5q0 -73 -27.5 -131t-74.5 -94t-106 -55t-124 -19z" /> + <glyph glyph-name="t" unicode="t" horiz-adv-x="653" +d="M432 -20q-122 0 -172.5 73t-50.5 209v635h-160v102h160v220l125 131v-351h254v-102h-254v-647q0 -82 36 -126t95 -44q41 0 90 22v-104q-41 -18 -123 -18z" /> + <glyph glyph-name="u" unicode="u" +d="M487 -23q-88 0 -154.5 33.5t-105.5 93t-58 135.5t-19 167v593h124v-604q0 -45 5.5 -86.5t20.5 -84.5t38.5 -73.5t63 -50.5t90.5 -20q127 0 221 104.5t94 235.5v579h123v-999h-123v182q-29 -75 -117 -140t-203 -65z" /> + <glyph glyph-name="v" unicode="v" horiz-adv-x="936" +d="M412 0l-365 999h137l285 -835l287 835h133l-363 -999h-114z" /> + <glyph glyph-name="w" unicode="w" horiz-adv-x="1407" +d="M332 0l-273 999h134l213 -845l239 845h119l240 -843l210 843h134l-273 -999h-127l-241 850l-248 -850h-127z" /> + <glyph glyph-name="x" unicode="x" horiz-adv-x="893" +d="M55 0l336 504l-336 495h154l240 -381l241 381h148l-330 -495l330 -504h-148l-241 389l-240 -389h-154z" /> + <glyph glyph-name="y" unicode="y" horiz-adv-x="961" +d="M260 -430l168 430l-383 999h139l303 -847l291 847h137l-526 -1429h-129z" /> + <glyph glyph-name="z" unicode="z" horiz-adv-x="911" +d="M831 999v-110l-613 -780h613v-109h-761v100l622 797h-594v102h733z" /> + <glyph glyph-name="braceleft" unicode="{" horiz-adv-x="594" +d="M403 -111q-86 0 -147 76q-33 42 -33 135v369q0 79 -131 125v104q131 31 131 156v428q0 101 46 152t155 51h53q4 0 11.5 0.5t14.5 0.5t13 -1v-72q-22 4 -55 4q-119 0 -119 -69v-506q0 -70 -44 -117.5t-144 -85.5q96 -32 142 -69t46 -97v-364q0 -154 141 -154q18 0 33 6 +v-72q-6 -1 -13.5 -1t-15.5 0.5t-12 0.5h-72z" /> + <glyph glyph-name="bar" unicode="|" horiz-adv-x="621" +d="M264 -512v2046h92v-2046h-92z" /> + <glyph glyph-name="braceright" unicode="}" horiz-adv-x="594" +d="M121 -111q-5 0 -14 -0.5t-16 -0.5t-13 1v72q18 -6 33 -6q141 0 141 154v364q0 60 48.5 98.5t139.5 67.5q-105 40 -146.5 86.5t-41.5 116.5v506q0 69 -119 69q-31 0 -55 -4v72q0 1 20 0.5t21 -0.5h51q109 0 155 -51t46 -152v-428q0 -125 131 -156v-104q-131 -46 -131 -125 +v-369q0 -100 -29 -137q-32 -37 -65 -55.5t-84 -18.5h-72z" /> + <glyph glyph-name="asciitilde" unicode="~" horiz-adv-x="1161" +d="M739 379q-43 0 -82 19.5t-68 47.5t-56.5 56t-60 47.5t-66.5 19.5q-57 0 -82 -47t-23 -116h-82q0 106 47 175.5t137 69.5q52 0 95 -19t71.5 -46.5t54 -55t56 -46.5t65.5 -19q109 0 109 180h90q0 -126 -54 -196t-151 -70z" /> + <glyph glyph-name="uni00A0" unicode=" " horiz-adv-x="563" + /> + <glyph glyph-name="exclamdown" unicode="¡" horiz-adv-x="627" +d="M223 823v176h178v-176h-178zM236 -436l28 1067h96l29 -1067h-153z" /> + <glyph glyph-name="cent" unicode="¢" horiz-adv-x="1139" +d="M557 -205v191q-122 12 -209.5 86t-128.5 184t-41 242t40.5 241t128.5 184.5t210 88.5v188h92v-188q112 -13 201.5 -79t134.5 -171l-131 -55q-22 80 -91.5 131t-156.5 51q-77 0 -135 -35t-90.5 -93t-48 -124.5t-15.5 -138.5q0 -73 15 -139t47.5 -124.5t90.5 -93.5t136 -35 +q86 0 156.5 50.5t91.5 132.5l119 -51q-38 -111 -124 -178t-200 -76v-189h-92z" /> + <glyph glyph-name="sterling" unicode="£" horiz-adv-x="1251" +d="M170 0v96q10 8 26.5 22.5t58.5 57.5t74 84.5t58.5 97t26.5 101.5q0 36 -7 82.5t-13 74.5l-7 29h-215v115h186q-6 14 -14.5 38t-22.5 90t-14 122q0 114 43.5 208t133 153t210.5 59q127 0 222 -78t141 -201l-109 -41q-33 93 -100 149t-154 56q-126 0 -199 -84.5t-73 -218.5 +q0 -54 13 -117t25 -99l13 -36h471v-115h-440q22 -100 22 -184q0 -55 -18.5 -111t-45.5 -96.5t-54 -73t-46 -48.5l-18 -17h836v-115h-1010z" /> + <glyph glyph-name="currency" unicode="¤" horiz-adv-x="1382" +d="M319 176l-83 88l104 103q-91 115 -91.5 264.5t91.5 263.5l-102 100l84 90l102 -106q117 92 266 93t266 -91l103 102l84 -84l-101 -102q91 -116 91 -266t-91 -266l101 -101l-82 -88l-105 105q-116 -92 -266.5 -92t-267.5 92zM457 403q97 -97 231.5 -97t231.5 97 +q93 94 92.5 227.5t-94.5 227.5q-98 95 -230 94t-229 -96q-92 -92 -93 -226.5t91 -226.5z" /> + <glyph glyph-name="yen" unicode="¥" horiz-adv-x="1303" +d="M588 0v322h-299v100h299v119h-299v98h252l-475 774h147l440 -708l439 708h145l-475 -772h254v-100h-301v-119h301v-100h-301v-322h-127z" /> + <glyph glyph-name="brokenbar" unicode="¦" horiz-adv-x="612" +d="M264 731v744h84v-744h-84zM264 -307v727h84v-727h-84z" /> + <glyph glyph-name="section" unicode="§" horiz-adv-x="1128" +d="M569 -18q-149 0 -254 71t-147 209l115 41q52 -207 286 -207q46 0 86 7.5t78 26t60 55.5t22 89q0 41 -20.5 70t-55 46t-79.5 29.5t-94.5 22.5t-99 22t-94.5 32t-79.5 48t-55 74.5t-20.5 108.5q0 63 28.5 121t78.5 98q-48 31 -76.5 84t-28.5 113q0 133 100.5 212t237.5 79 +q130 0 224 -65.5t143 -197.5l-123 -28q-49 176 -246 176q-88 0 -154.5 -46t-66.5 -134q0 -49 33 -80.5t85.5 -47t116.5 -27.5t128 -30t116.5 -46t85.5 -84t33 -136q0 -136 -101 -215q101 -70 101 -201q0 -74 -30.5 -131.5t-82 -91t-115 -50.5t-135.5 -17zM700 522 +q115 48 115 174q0 41 -20 73t-49 51t-72 34.5t-77 22.5t-77.5 15.5t-60.5 12.5q-59 -23 -92 -69.5t-33 -106.5q0 -39 21 -70t52.5 -49.5t75 -34t80 -23t78 -16.5t59.5 -14z" /> + <glyph glyph-name="dieresis" unicode="¨" horiz-adv-x="831" +d="M170 1229v184h160v-184h-160zM502 1229v184h160v-184h-160z" /> + <glyph glyph-name="copyright" unicode="©" horiz-adv-x="1753" +d="M877 -51q-152 0 -289.5 60t-237 161.5t-158.5 242t-59 294.5t59 294t158.5 241.5t237 161.5t289.5 60q151 0 288.5 -60t237 -161.5t158.5 -241.5t59 -294t-59 -294.5t-158.5 -242t-237 -161.5t-288.5 -60zM877 51q171 0 319 89.5t235 241t87 325.5q0 130 -51.5 251 +t-138 209.5t-205 141.5t-246.5 53t-247.5 -53t-206 -141.5t-138.5 -209.5t-52 -251q0 -174 87.5 -325.5t236.5 -241t320 -89.5zM893 309q-165 0 -254.5 111.5t-89.5 284.5q0 172 89.5 283.5t254.5 111.5q97 0 176.5 -46.5t118.5 -129.5l-92 -39q-28 53 -82.5 83.5 +t-120.5 30.5q-121 0 -183.5 -85t-62.5 -209q0 -123 61.5 -208t182.5 -85q64 0 120 30.5t83 85.5l94 -41q-39 -84 -118 -131t-177 -47z" /> + <glyph glyph-name="ordfeminine" unicode="ª" horiz-adv-x="823" +d="M328 709q-95 0 -160.5 58t-65.5 151q0 105 69 155.5t187 50.5h217q0 222 -178 222q-58 0 -106.5 -29.5t-75.5 -71.5l-84 53q52 70 116 103t154 33q131 0 202 -75.5t71 -205.5v-430h-88l-6 125q-47 -72 -107 -105.5t-145 -33.5zM354 801q92 0 157.5 73t63.5 162h-206 +q-65 0 -108.5 -31.5t-43.5 -86.5q0 -51 43 -84t94 -33z" /> + <glyph glyph-name="guillemotleft" unicode="«" horiz-adv-x="965" +d="M430 193l-354 319l354 317v-149l-197 -168l197 -170v-149zM795 193l-357 319l357 317v-149l-199 -168l199 -170v-149z" /> + <glyph glyph-name="logicalnot" unicode="¬" horiz-adv-x="1280" +d="M901 291v393h-743v113h860v-506h-117z" /> + <glyph glyph-name="uni00AD" unicode="­" horiz-adv-x="971" +d="M166 596v96h639v-96h-639z" /> + <glyph glyph-name="registered" unicode="®" horiz-adv-x="1753" +d="M877 -49q-152 0 -289.5 60t-237 161.5t-158.5 242t-59 294.5t59 294t158.5 241.5t237 161.5t289.5 60q151 0 288.5 -60t237 -161.5t158.5 -241.5t59 -294t-59 -294.5t-158.5 -242t-237 -161.5t-288.5 -60zM877 45q174 0 323.5 89.5t237.5 243t88 331.5t-88 331 +t-237.5 242.5t-323.5 89.5q-175 0 -325 -89.5t-238.5 -242.5t-88.5 -331t88.5 -331.5t238.5 -243t325 -89.5zM633 307v789h297q256 0 256 -228q0 -96 -48.5 -149.5t-123.5 -65.5l203 -346h-125l-179 338h-174v-338h-106zM729 739h201q160 0 160 129q0 69 -39.5 100 +t-120.5 31h-201v-260z" /> + <glyph glyph-name="macron" unicode="¯" horiz-adv-x="868" +d="M162 1192v121h536v-121h-536z" /> + <glyph glyph-name="degree" unicode="°" horiz-adv-x="969" +d="M485 848q-121 0 -206.5 86t-85.5 207t85.5 207t206.5 86q120 0 205.5 -86t85.5 -207t-85.5 -207t-205.5 -86zM485 924q88 0 151.5 64t63.5 153t-63.5 153t-151.5 64q-89 0 -153 -64t-64 -153t64 -153t153 -64z" /> + <glyph glyph-name="plusminus" unicode="±" horiz-adv-x="1317" +d="M610 106v472h-456v96h456v469h97v-469h456v-96h-456v-472h-97zM154 -96v96h1009v-96h-1009z" /> + <glyph glyph-name="acute" unicode="´" horiz-adv-x="530" +d="M74 1124l215 289h176l-268 -289h-123z" /> + <glyph glyph-name="uni00B5" unicode="µ" horiz-adv-x="1298" +d="M264 -266v1265h139v-600q0 -59 9.5 -108t32 -94t66 -71t105.5 -26q125 0 216.5 98t91.5 226v575h139v-999h-139v186q-31 -78 -121 -143.5t-201 -65.5q-109 0 -196 56l-23 -299h-119z" /> + <glyph glyph-name="paragraph" unicode="¶" horiz-adv-x="1350" +d="M586 -246v869q-119 0 -221 45.5t-167 137.5t-65 212t65 212t167 137.5t221 45.5h127v-1659h-127zM958 -246v1659h127v-1659h-127z" /> + <glyph glyph-name="periodcentered" unicode="·" horiz-adv-x="649" +d="M324 711q-49 0 -84 34.5t-35 83.5q0 52 34 85.5t85 33.5q50 0 84 -34t34 -85q0 -49 -34.5 -83.5t-83.5 -34.5z" /> + <glyph glyph-name="cedilla" unicode="¸" horiz-adv-x="580" +d="M266 -500q-62 0 -110 35.5t-68 87.5l90 49q5 -31 31 -54.5t63 -23.5q46 0 74.5 29.5t28.5 71.5q0 52 -48.5 90.5t-142.5 38.5h-34l92 176h112l-65 -121q90 -1 137 -52t47 -124q0 -79 -56.5 -141t-150.5 -62z" /> + <glyph glyph-name="ordmasculine" unicode="º" horiz-adv-x="874" +d="M438 711q-147 0 -241.5 104.5t-94.5 257.5q0 152 95 256.5t241 104.5t240 -104.5t94 -256.5q0 -153 -94 -257.5t-240 -104.5zM438 811q107 0 159 74t52 188q0 113 -52 187.5t-159 74.5q-73 0 -122.5 -38t-70 -95t-20.5 -129q0 -114 52.5 -188t160.5 -74z" /> + <glyph glyph-name="guillemotright" unicode="»" horiz-adv-x="965" +d="M168 193v149l197 170l-197 168v149l354 -317zM530 193v149l197 170l-197 168v149l357 -317z" /> + <glyph glyph-name="questiondown" unicode="¿" horiz-adv-x="1026" +d="M428 823v176h178v-176h-178zM526 -434q-175 0 -290 93t-115 261q0 68 19 120t48.5 83.5t66 56t73 44t66 40t48.5 52t19 73.5v246h119v-248q0 -58 -18.5 -100t-48 -67t-65 -45l-71 -40t-65 -46t-48 -69.5t-18.5 -103.5q0 -116 77 -175.5t197 -59.5q117 0 195.5 67 +t79.5 184h127q-1 -167 -114 -266.5t-282 -99.5z" /> + <glyph glyph-name="Agrave" unicode="À" horiz-adv-x="1296" +d="M575 1540l-245 287h176l215 -287h-146zM76 0l522 1413h104l519 -1413h-144l-108 307h-639l-107 -307h-147zM375 434h549l-273 780z" /> + <glyph glyph-name="Aacute" unicode="Á" horiz-adv-x="1296" +d="M559 1538l215 289h176l-268 -289h-123zM76 0l522 1413h104l519 -1413h-144l-108 307h-639l-107 -307h-147zM375 434h549l-273 780z" /> + <glyph glyph-name="Acircumflex" unicode="Â" horiz-adv-x="1296" +d="M317 1512l332 356l332 -356h-154l-178 196l-176 -196h-156zM76 0l522 1413h104l519 -1413h-144l-108 307h-639l-107 -307h-147zM375 434h549l-273 780z" /> + <glyph glyph-name="Atilde" unicode="Ã" horiz-adv-x="1296" +d="M768 1571q-36 0 -68 16.5t-54.5 40t-43 47t-43 40t-45.5 16.5q-70 0 -70 -137h-90q0 108 41 174.5t117 66.5q41 0 75 -17t56.5 -41t42 -48t41 -41t43.5 -17q74 0 74 158h96q0 -125 -44.5 -191.5t-127.5 -66.5zM76 0l522 1413h104l519 -1413h-144l-108 307h-639l-107 -307 +h-147zM375 434h549l-273 780z" /> + <glyph glyph-name="Adieresis" unicode="Ä" horiz-adv-x="1296" +d="M401 1643v184h160v-184h-160zM733 1643v184h160v-184h-160zM76 0l522 1413h104l519 -1413h-144l-108 307h-639l-107 -307h-147zM375 434h549l-273 780z" /> + <glyph glyph-name="Aring" unicode="Å" horiz-adv-x="1296" +d="M76 0l493 1339q-52 24 -84 73t-32 110q0 82 56.5 139t137.5 57t140 -56.5t59 -139.5q0 -59 -32.5 -108t-84.5 -71l492 -1343h-144l-108 307h-639l-107 -307h-147zM647 1421q42 0 71.5 29t29.5 72q0 42 -28.5 70t-72.5 28t-71 -27t-27 -71t28 -72.5t70 -28.5zM375 434h549 +l-273 780z" /> + <glyph glyph-name="AE" unicode="Æ" horiz-adv-x="1804" +d="M76 0l518 1413h1100v-108h-748v-541h660v-115h-660v-534h748v-115h-883v307h-483l-111 -307h-141zM369 434h442v871h-129z" /> + <glyph glyph-name="Ccedilla" unicode="Ç" horiz-adv-x="1417" +d="M1321 350q-69 -156 -188.5 -249t-283.5 -115l-58 -107q90 -1 137 -52t47 -124q0 -79 -56.5 -141t-150.5 -62q-62 0 -110 35.5t-68 87.5l90 49q5 -31 31 -54.5t63 -23.5q46 0 74.5 29.5t28.5 71.5q0 52 -48.5 90.5t-142.5 38.5h-34l82 156q-149 4 -265 62.5t-188 158.5 +t-109 229.5t-37 280.5q0 120 22.5 226t72 198t122.5 158.5t179.5 104.5t236.5 38q415 0 551 -369l-123 -55q-22 82 -68 143t-107 94t-125.5 48.5t-135.5 15.5q-104 0 -188 -32.5t-140 -88.5t-93.5 -133.5t-54 -164t-16.5 -183.5q0 -99 17 -186.5t55.5 -166t95 -134.5 +t140.5 -89t188 -33q96 0 175.5 27.5t149.5 97t109 179.5z" /> + <glyph glyph-name="Egrave" unicode="È" horiz-adv-x="1237" +d="M604 1540l-245 287h176l215 -287h-146zM219 0v1413h909v-113h-774v-538h662v-109h-662v-532h774v-121h-909z" /> + <glyph glyph-name="Eacute" unicode="É" horiz-adv-x="1237" +d="M588 1538l215 289h176l-268 -289h-123zM219 0v1413h909v-113h-774v-538h662v-109h-662v-532h774v-121h-909z" /> + <glyph glyph-name="Ecircumflex" unicode="Ê" horiz-adv-x="1237" +d="M346 1512l332 356l332 -356h-154l-178 196l-176 -196h-156zM219 0v1413h909v-113h-774v-538h662v-109h-662v-532h774v-121h-909z" /> + <glyph glyph-name="Edieresis" unicode="Ë" horiz-adv-x="1237" +d="M430 1643v184h160v-184h-160zM762 1643v184h160v-184h-160zM219 0v1413h909v-113h-774v-538h662v-109h-662v-532h774v-121h-909z" /> + <glyph glyph-name="Igrave" unicode="Ì" horiz-adv-x="573" +d="M211 1540l-245 287h176l215 -287h-146zM219 0v1413h135v-1413h-135z" /> + <glyph glyph-name="Iacute" unicode="Í" horiz-adv-x="573" +d="M195 1538l215 289h176l-268 -289h-123zM219 0v1413h135v-1413h-135z" /> + <glyph glyph-name="Icircumflex" unicode="Î" horiz-adv-x="573" +d="M-47 1512l332 356l332 -356h-154l-178 196l-176 -196h-156zM219 0v1413h135v-1413h-135z" /> + <glyph glyph-name="Idieresis" unicode="Ï" horiz-adv-x="573" +d="M37 1643v184h160v-184h-160zM369 1643v184h160v-184h-160zM219 0v1413h135v-1413h-135z" /> + <glyph glyph-name="Eth" unicode="Ð" horiz-adv-x="1421" +d="M236 0v664h-113v98h113v651h356q338 0 518 -184.5t180 -532.5q0 -334 -182.5 -515t-517.5 -181h-354zM379 129h186q126 0 230 34.5t183 103t123 181t44 259.5q0 282 -140.5 430.5t-416.5 148.5h-209v-524h381v-98h-381v-535z" /> + <glyph glyph-name="Ntilde" unicode="Ñ" horiz-adv-x="1409" +d="M821 1571q-36 0 -68 16.5t-54.5 40t-43 47t-43 40t-45.5 16.5q-70 0 -70 -137h-90q0 108 41 174.5t117 66.5q41 0 75 -17t56.5 -41t42 -48t41 -41t43.5 -17q74 0 74 158h96q0 -125 -44.5 -191.5t-127.5 -66.5zM219 0v1413h223l613 -1309v1309h135v-1413h-227l-607 1311 +v-1311h-137z" /> + <glyph glyph-name="Ograve" unicode="Ò" horiz-adv-x="1511" +d="M680 1540l-245 287h176l215 -287h-146zM754 -20q-153 0 -273.5 58t-195.5 158.5t-113.5 230.5t-38.5 280q0 119 24 226.5t74 199t122.5 158.5t175 105t225.5 38q124 0 227.5 -38t176 -104.5t122.5 -158.5t74 -199.5t24 -226.5q0 -120 -24 -227t-74 -199t-122.5 -158.5 +t-176 -104.5t-227.5 -38zM754 106q128 0 226.5 49.5t156.5 135t87 190.5t29 226q0 96 -17.5 182t-56.5 163t-96 133.5t-141.5 89t-187.5 32.5q-101 0 -184.5 -32.5t-140 -89t-95.5 -133.5t-56.5 -163.5t-17.5 -181.5q0 -96 17.5 -182.5t56.5 -163.5t95.5 -133.5t140 -89 +t184.5 -32.5z" /> + <glyph glyph-name="Oacute" unicode="Ó" horiz-adv-x="1511" +d="M664 1538l215 289h176l-268 -289h-123zM754 -20q-153 0 -273.5 58t-195.5 158.5t-113.5 230.5t-38.5 280q0 119 24 226.5t74 199t122.5 158.5t175 105t225.5 38q124 0 227.5 -38t176 -104.5t122.5 -158.5t74 -199.5t24 -226.5q0 -120 -24 -227t-74 -199t-122.5 -158.5 +t-176 -104.5t-227.5 -38zM754 106q128 0 226.5 49.5t156.5 135t87 190.5t29 226q0 96 -17.5 182t-56.5 163t-96 133.5t-141.5 89t-187.5 32.5q-101 0 -184.5 -32.5t-140 -89t-95.5 -133.5t-56.5 -163.5t-17.5 -181.5q0 -96 17.5 -182.5t56.5 -163.5t95.5 -133.5t140 -89 +t184.5 -32.5z" /> + <glyph glyph-name="Ocircumflex" unicode="Ô" horiz-adv-x="1511" +d="M422 1512l332 356l332 -356h-154l-178 196l-176 -196h-156zM754 -20q-153 0 -273.5 58t-195.5 158.5t-113.5 230.5t-38.5 280q0 119 24 226.5t74 199t122.5 158.5t175 105t225.5 38q124 0 227.5 -38t176 -104.5t122.5 -158.5t74 -199.5t24 -226.5q0 -120 -24 -227 +t-74 -199t-122.5 -158.5t-176 -104.5t-227.5 -38zM754 106q128 0 226.5 49.5t156.5 135t87 190.5t29 226q0 96 -17.5 182t-56.5 163t-96 133.5t-141.5 89t-187.5 32.5q-101 0 -184.5 -32.5t-140 -89t-95.5 -133.5t-56.5 -163.5t-17.5 -181.5q0 -96 17.5 -182.5t56.5 -163.5 +t95.5 -133.5t140 -89t184.5 -32.5z" /> + <glyph glyph-name="Otilde" unicode="Õ" horiz-adv-x="1511" +d="M873 1571q-36 0 -68 16.5t-54.5 40t-43 47t-43 40t-45.5 16.5q-70 0 -70 -137h-90q0 108 41 174.5t117 66.5q41 0 75 -17t56.5 -41t42 -48t41 -41t43.5 -17q74 0 74 158h96q0 -125 -44.5 -191.5t-127.5 -66.5zM754 -20q-153 0 -273.5 58t-195.5 158.5t-113.5 230.5 +t-38.5 280q0 119 24 226.5t74 199t122.5 158.5t175 105t225.5 38q124 0 227.5 -38t176 -104.5t122.5 -158.5t74 -199.5t24 -226.5q0 -120 -24 -227t-74 -199t-122.5 -158.5t-176 -104.5t-227.5 -38zM754 106q128 0 226.5 49.5t156.5 135t87 190.5t29 226q0 96 -17.5 182 +t-56.5 163t-96 133.5t-141.5 89t-187.5 32.5q-101 0 -184.5 -32.5t-140 -89t-95.5 -133.5t-56.5 -163.5t-17.5 -181.5q0 -96 17.5 -182.5t56.5 -163.5t95.5 -133.5t140 -89t184.5 -32.5z" /> + <glyph glyph-name="Odieresis" unicode="Ö" horiz-adv-x="1511" +d="M506 1643v184h160v-184h-160zM838 1643v184h160v-184h-160zM754 -20q-153 0 -273.5 58t-195.5 158.5t-113.5 230.5t-38.5 280q0 119 24 226.5t74 199t122.5 158.5t175 105t225.5 38q124 0 227.5 -38t176 -104.5t122.5 -158.5t74 -199.5t24 -226.5q0 -120 -24 -227 +t-74 -199t-122.5 -158.5t-176 -104.5t-227.5 -38zM754 106q128 0 226.5 49.5t156.5 135t87 190.5t29 226q0 96 -17.5 182t-56.5 163t-96 133.5t-141.5 89t-187.5 32.5q-101 0 -184.5 -32.5t-140 -89t-95.5 -133.5t-56.5 -163.5t-17.5 -181.5q0 -96 17.5 -182.5t56.5 -163.5 +t95.5 -133.5t140 -89t184.5 -32.5z" /> + <glyph glyph-name="multiply" unicode="×" horiz-adv-x="1108" +d="M231 233l-69 68l323 324l-331 331l67 70l334 -334l322 324l69 -68l-323 -323l331 -332l-67 -70l-332 334z" /> + <glyph glyph-name="Oslash" unicode="Ø" horiz-adv-x="1511" +d="M1143 1303q116 -97 175.5 -253t59.5 -343q0 -120 -24 -227t-74 -199t-122.5 -158.5t-176 -104.5t-227.5 -38q-174 0 -307 75l-31 -55h-114l63 113q-114 98 -173 253t-59 341q0 119 24 226.5t74 199t122.5 158.5t175 105t225.5 38q174 0 306 -74l30 53h115zM260 707 +q0 -146 42 -271.5t127 -207.5l569 1020q-104 59 -244 59q-101 0 -184.5 -32.5t-140 -89t-95.5 -133.5t-56.5 -163.5t-17.5 -181.5zM754 106q128 0 226.5 49.5t156.5 135t87 190.5t29 226q0 147 -43 273t-130 208l-571 -1021q105 -61 245 -61z" /> + <glyph glyph-name="Ugrave" unicode="Ù" horiz-adv-x="1346" +d="M604 1540l-245 287h176l215 -287h-146zM672 -20q-124 0 -219 44.5t-150 120.5t-82.5 168.5t-27.5 196.5v903h135v-854q0 -453 344 -453q77 0 137.5 23.5t99.5 64t64.5 99t36 124t10.5 142.5v854h135v-893q0 -86 -17 -163.5t-54.5 -147t-92.5 -120t-137 -80t-182 -29.5z +" /> + <glyph glyph-name="Uacute" unicode="Ú" horiz-adv-x="1346" +d="M588 1538l215 289h176l-268 -289h-123zM672 -20q-124 0 -219 44.5t-150 120.5t-82.5 168.5t-27.5 196.5v903h135v-854q0 -453 344 -453q77 0 137.5 23.5t99.5 64t64.5 99t36 124t10.5 142.5v854h135v-893q0 -86 -17 -163.5t-54.5 -147t-92.5 -120t-137 -80t-182 -29.5z +" /> + <glyph glyph-name="Ucircumflex" unicode="Û" horiz-adv-x="1346" +d="M346 1512l332 356l332 -356h-154l-178 196l-176 -196h-156zM672 -20q-124 0 -219 44.5t-150 120.5t-82.5 168.5t-27.5 196.5v903h135v-854q0 -453 344 -453q77 0 137.5 23.5t99.5 64t64.5 99t36 124t10.5 142.5v854h135v-893q0 -86 -17 -163.5t-54.5 -147t-92.5 -120 +t-137 -80t-182 -29.5z" /> + <glyph glyph-name="Udieresis" unicode="Ü" horiz-adv-x="1346" +d="M430 1643v184h160v-184h-160zM762 1643v184h160v-184h-160zM672 -20q-124 0 -219 44.5t-150 120.5t-82.5 168.5t-27.5 196.5v903h135v-854q0 -453 344 -453q77 0 137.5 23.5t99.5 64t64.5 99t36 124t10.5 142.5v854h135v-893q0 -86 -17 -163.5t-54.5 -147t-92.5 -120 +t-137 -80t-182 -29.5z" /> + <glyph glyph-name="Yacute" unicode="Ý" horiz-adv-x="1315" +d="M567 1538l215 289h176l-268 -289h-123zM594 0v553l-528 860h155l436 -719l439 719h153l-526 -860v-553h-129z" /> + <glyph glyph-name="Thorn" unicode="Þ" horiz-adv-x="1149" +d="M219 0v1413h141v-201h248q201 0 322 -104.5t121 -288.5q0 -177 -120.5 -278t-322.5 -101h-248v-440h-141zM360 571h248q144 0 222.5 62.5t78.5 183.5t-79 186.5t-222 65.5h-248v-498z" /> + <glyph glyph-name="germandbls" unicode="ß" horiz-adv-x="1176" +d="M717 -18q-125 0 -281 73l56 123q113 -65 225 -65q74 0 138.5 51.5t64.5 122.5q0 45 -18 85t-46.5 70t-63 59t-69 57.5t-63 59t-46.5 70.5t-18 86q0 40 17.5 72t43.5 51.5t56.5 42.5t56.5 43t43.5 53.5t17.5 75.5q0 88 -70 145.5t-183 57.5q-277 0 -277 -436v-879h-125 +v881q0 152 30 261.5t85.5 172t125.5 91t158 28.5q94 0 182 -39.5t147 -117.5t59 -175q0 -54 -23.5 -94t-57.5 -64.5t-68 -46.5t-57.5 -53.5t-23.5 -71.5q0 -33 17.5 -63t45.5 -55t61.5 -50.5t67 -55t61.5 -63t45.5 -80t17.5 -100.5q0 -141 -95.5 -232t-236.5 -91z" /> + <glyph glyph-name="agrave" unicode="à" horiz-adv-x="1016" +d="M428 1126l-245 287h176l215 -287h-146zM397 -20q-140 0 -227.5 78t-87.5 212q0 295 450 295h222q0 346 -258 346q-175 0 -287 -153l-90 71q137 191 366 191q184 0 282.5 -109.5t98.5 -296.5v-614h-108v205q-50 -112 -147 -168.5t-214 -56.5zM410 86q79 0 146 35.5 +t109 91.5t65.5 122.5t23.5 131.5h-207q-171 0 -252.5 -45t-81.5 -154q0 -94 54.5 -138t142.5 -44z" /> + <glyph glyph-name="aacute" unicode="á" horiz-adv-x="1016" +d="M412 1124l215 289h176l-268 -289h-123zM397 -20q-140 0 -227.5 78t-87.5 212q0 295 450 295h222q0 346 -258 346q-175 0 -287 -153l-90 71q137 191 366 191q184 0 282.5 -109.5t98.5 -296.5v-614h-108v205q-50 -112 -147 -168.5t-214 -56.5zM410 86q79 0 146 35.5 +t109 91.5t65.5 122.5t23.5 131.5h-207q-171 0 -252.5 -45t-81.5 -154q0 -94 54.5 -138t142.5 -44z" /> + <glyph glyph-name="acircumflex" unicode="â" horiz-adv-x="1016" +d="M170 1098l332 356l332 -356h-154l-178 196l-176 -196h-156zM397 -20q-140 0 -227.5 78t-87.5 212q0 295 450 295h222q0 346 -258 346q-175 0 -287 -153l-90 71q137 191 366 191q184 0 282.5 -109.5t98.5 -296.5v-614h-108v205q-50 -112 -147 -168.5t-214 -56.5zM410 86 +q79 0 146 35.5t109 91.5t65.5 122.5t23.5 131.5h-207q-171 0 -252.5 -45t-81.5 -154q0 -94 54.5 -138t142.5 -44z" /> + <glyph glyph-name="atilde" unicode="ã" horiz-adv-x="1016" +d="M621 1157q-36 0 -68 16.5t-54.5 40t-43 47t-43 40t-45.5 16.5q-70 0 -70 -137h-90q0 108 41 174.5t117 66.5q41 0 75 -17t56.5 -41t42 -48t41 -41t43.5 -17q74 0 74 158h96q0 -125 -44.5 -191.5t-127.5 -66.5zM397 -20q-140 0 -227.5 78t-87.5 212q0 295 450 295h222 +q0 346 -258 346q-175 0 -287 -153l-90 71q137 191 366 191q184 0 282.5 -109.5t98.5 -296.5v-614h-108v205q-50 -112 -147 -168.5t-214 -56.5zM410 86q79 0 146 35.5t109 91.5t65.5 122.5t23.5 131.5h-207q-171 0 -252.5 -45t-81.5 -154q0 -94 54.5 -138t142.5 -44z" /> + <glyph glyph-name="adieresis" unicode="ä" horiz-adv-x="1016" +d="M254 1229v184h160v-184h-160zM586 1229v184h160v-184h-160zM397 -20q-140 0 -227.5 78t-87.5 212q0 295 450 295h222q0 346 -258 346q-175 0 -287 -153l-90 71q137 191 366 191q184 0 282.5 -109.5t98.5 -296.5v-614h-108v205q-50 -112 -147 -168.5t-214 -56.5zM410 86 +q79 0 146 35.5t109 91.5t65.5 122.5t23.5 131.5h-207q-171 0 -252.5 -45t-81.5 -154q0 -94 54.5 -138t142.5 -44z" /> + <glyph glyph-name="aring" unicode="å" horiz-adv-x="1016" +d="M500 1081q-83 0 -139.5 57.5t-56.5 139.5q0 81 57 139t139 58q81 0 139 -57t58 -140q0 -82 -57.5 -139.5t-139.5 -57.5zM500 1178q41 0 71 29t30 71q0 41 -29 69.5t-72 28.5q-44 0 -71 -27t-27 -71t28 -72t70 -28zM397 -20q-140 0 -227.5 78t-87.5 212q0 295 450 295h222 +q0 346 -258 346q-175 0 -287 -153l-90 71q137 191 366 191q184 0 282.5 -109.5t98.5 -296.5v-614h-108v205q-50 -112 -147 -168.5t-214 -56.5zM410 86q79 0 146 35.5t109 91.5t65.5 122.5t23.5 131.5h-207q-171 0 -252.5 -45t-81.5 -154q0 -94 54.5 -138t142.5 -44z" /> + <glyph glyph-name="ae" unicode="æ" horiz-adv-x="1661" +d="M395 -20q-131 0 -221 80.5t-90 207.5q0 152 94.5 224.5t261.5 72.5h320q0 353 -266 353q-89 0 -159.5 -43.5t-111.5 -108.5l-100 63q75 95 164 141t215 46q249 0 325 -197q91 193 328 193q94 0 167.5 -29t120 -77t76.5 -117t42 -143t12 -161v-28h-699q-3 -98 29 -178.5 +t103 -131.5t170 -51q96 0 164.5 23t132.5 84l79 -66q-79 -79 -168 -114t-206 -35q-160 0 -258.5 83.5t-135.5 227.5q-94 -319 -389 -319zM872 565h584q5 150 -71.5 241t-225.5 91q-135 0 -210 -94.5t-77 -237.5zM434 90q93 0 171 53.5t119.5 138t35.5 175.5h-305 +q-98 0 -165 -49t-67 -140q0 -70 70 -124t141 -54z" /> + <glyph glyph-name="ccedilla" unicode="ç" horiz-adv-x="967" +d="M520 82q96 0 167 56t93 149l107 -49q-39 -109 -119.5 -175.5t-191.5 -79.5l-56 -104q90 -1 137 -52t47 -124q0 -79 -56.5 -141t-150.5 -62q-62 0 -110 35.5t-68 87.5l90 49q5 -31 31 -54.5t63 -23.5q46 0 74.5 29.5t28.5 71.5q0 52 -48.5 90.5t-142.5 38.5h-34l83 160 +q-116 15 -200 90.5t-124 185t-40 238.5q0 103 27 196t78 166t132.5 116.5t182.5 43.5q129 0 227 -69t152 -189l-119 -53q-22 95 -94 152t-166 57q-78 0 -136.5 -38.5t-91 -102t-48 -134t-15.5 -145.5q0 -76 15.5 -146t47.5 -132.5t91 -100t137 -37.5z" /> + <glyph glyph-name="egrave" unicode="è" horiz-adv-x="1030" +d="M434 1126l-245 287h176l215 -287h-146zM537 -12q-107 0 -192 40.5t-137.5 110.5t-80 160.5t-27.5 194.5q0 82 16.5 157.5t51.5 141.5t84 114.5t118 76.5t150 28q92 0 165 -28.5t118.5 -75t76 -110.5t42.5 -130.5t12 -139.5q0 -35 -4 -71h-699q-5 -151 76 -256t228 -105 +q96 0 164.5 23.5t125.5 83.5l86 -66q-81 -79 -168.5 -114t-205.5 -35zM231 565h584q0 66 -15 124t-47.5 109t-92 81t-140.5 30q-70 0 -125 -28t-90 -76.5t-53.5 -109.5t-20.5 -130z" /> + <glyph glyph-name="eacute" unicode="é" horiz-adv-x="1030" +d="M418 1124l215 289h176l-268 -289h-123zM537 -12q-107 0 -192 40.5t-137.5 110.5t-80 160.5t-27.5 194.5q0 82 16.5 157.5t51.5 141.5t84 114.5t118 76.5t150 28q92 0 165 -28.5t118.5 -75t76 -110.5t42.5 -130.5t12 -139.5q0 -35 -4 -71h-699q-5 -151 76 -256t228 -105 +q96 0 164.5 23.5t125.5 83.5l86 -66q-81 -79 -168.5 -114t-205.5 -35zM231 565h584q0 66 -15 124t-47.5 109t-92 81t-140.5 30q-70 0 -125 -28t-90 -76.5t-53.5 -109.5t-20.5 -130z" /> + <glyph glyph-name="ecircumflex" unicode="ê" horiz-adv-x="1030" +d="M176 1098l332 356l332 -356h-154l-178 196l-176 -196h-156zM537 -12q-107 0 -192 40.5t-137.5 110.5t-80 160.5t-27.5 194.5q0 82 16.5 157.5t51.5 141.5t84 114.5t118 76.5t150 28q92 0 165 -28.5t118.5 -75t76 -110.5t42.5 -130.5t12 -139.5q0 -35 -4 -71h-699 +q-5 -151 76 -256t228 -105q96 0 164.5 23.5t125.5 83.5l86 -66q-81 -79 -168.5 -114t-205.5 -35zM231 565h584q0 66 -15 124t-47.5 109t-92 81t-140.5 30q-70 0 -125 -28t-90 -76.5t-53.5 -109.5t-20.5 -130z" /> + <glyph glyph-name="edieresis" unicode="ë" horiz-adv-x="1030" +d="M260 1229v184h160v-184h-160zM592 1229v184h160v-184h-160zM537 -12q-107 0 -192 40.5t-137.5 110.5t-80 160.5t-27.5 194.5q0 82 16.5 157.5t51.5 141.5t84 114.5t118 76.5t150 28q92 0 165 -28.5t118.5 -75t76 -110.5t42.5 -130.5t12 -139.5q0 -35 -4 -71h-699 +q-5 -151 76 -256t228 -105q96 0 164.5 23.5t125.5 83.5l86 -66q-81 -79 -168.5 -114t-205.5 -35zM231 565h584q0 66 -15 124t-47.5 109t-92 81t-140.5 30q-70 0 -125 -28t-90 -76.5t-53.5 -109.5t-20.5 -130z" /> + <glyph glyph-name="igrave" unicode="ì" horiz-adv-x="498" +d="M174 1126l-245 287h176l215 -287h-146zM174 0v999h150v-999h-150z" /> + <glyph glyph-name="iacute" unicode="í" horiz-adv-x="498" +d="M158 1124l215 289h176l-268 -289h-123zM174 0v999h150v-999h-150z" /> + <glyph glyph-name="icircumflex" unicode="î" horiz-adv-x="498" +d="M-84 1098l332 356l332 -356h-154l-178 196l-176 -196h-156zM174 0v999h150v-999h-150z" /> + <glyph glyph-name="idieresis" unicode="ï" horiz-adv-x="498" +d="M0 1229v184h160v-184h-160zM332 1229v184h160v-184h-160zM174 0v999h150v-999h-150z" /> + <glyph glyph-name="eth" unicode="ð" horiz-adv-x="1151" +d="M631 1380q205 -137 303 -346t98 -522q0 -103 -32 -197.5t-90.5 -168.5t-148.5 -118t-198 -44q-107 0 -196.5 43.5t-148 117.5t-90.5 169.5t-32 201.5q0 216 123 360t326 144q89 0 165 -28.5t110 -67.5q-34 192 -260 351l-93 -138l-88 57l92 138q-86 50 -174 87l68 97 +q95 -38 174 -81l61 91l92 -56zM565 106q81 0 144 35t101 93.5t57.5 130.5t19.5 151q0 81 -20 154t-59 130.5t-101.5 91.5t-141.5 34q-81 0 -145 -35t-101.5 -93.5t-57 -130.5t-19.5 -151t19.5 -151t57 -130.5t101.5 -93.5t145 -35z" /> + <glyph glyph-name="ntilde" unicode="ñ" horiz-adv-x="1108" +d="M660 1157q-36 0 -68 16.5t-54.5 40t-43 47t-43 40t-45.5 16.5q-70 0 -70 -137h-90q0 108 41 174.5t117 66.5q41 0 75 -17t56.5 -41t42 -48t41 -41t43.5 -17q74 0 74 158h96q0 -125 -44.5 -191.5t-127.5 -66.5zM174 0v999h125v-188q50 95 133 150t197 55 +q111 0 186.5 -56.5t108 -146t32.5 -205.5v-608h-125v598q0 57 -11 108.5t-35.5 100t-73 77.5t-115.5 29q-128 0 -212.5 -105t-84.5 -296v-512h-125z" /> + <glyph glyph-name="ograve" unicode="ò" horiz-adv-x="1116" +d="M483 1126l-245 287h176l215 -287h-146zM555 -20q-134 0 -240 71t-163.5 190t-57.5 261t57.5 260t163.5 188t240 70t241.5 -70t166.5 -188.5t59 -259.5q0 -142 -59 -261t-166.5 -190t-241.5 -71zM557 82q84 0 151 36t107 96.5t61 134t21 153.5q0 109 -35 201t-113.5 153.5 +t-189.5 61.5q-84 0 -150.5 -35.5t-107 -94.5t-61.5 -132.5t-21 -153.5q0 -81 21 -155t61.5 -134t106.5 -95.5t149 -35.5z" /> + <glyph glyph-name="oacute" unicode="ó" horiz-adv-x="1116" +d="M467 1124l215 289h176l-268 -289h-123zM555 -20q-134 0 -240 71t-163.5 190t-57.5 261t57.5 260t163.5 188t240 70t241.5 -70t166.5 -188.5t59 -259.5q0 -142 -59 -261t-166.5 -190t-241.5 -71zM557 82q84 0 151 36t107 96.5t61 134t21 153.5q0 109 -35 201t-113.5 153.5 +t-189.5 61.5q-84 0 -150.5 -35.5t-107 -94.5t-61.5 -132.5t-21 -153.5q0 -81 21 -155t61.5 -134t106.5 -95.5t149 -35.5z" /> + <glyph glyph-name="ocircumflex" unicode="ô" horiz-adv-x="1116" +d="M225 1098l332 356l332 -356h-154l-178 196l-176 -196h-156zM555 -20q-134 0 -240 71t-163.5 190t-57.5 261t57.5 260t163.5 188t240 70t241.5 -70t166.5 -188.5t59 -259.5q0 -142 -59 -261t-166.5 -190t-241.5 -71zM557 82q84 0 151 36t107 96.5t61 134t21 153.5 +q0 109 -35 201t-113.5 153.5t-189.5 61.5q-84 0 -150.5 -35.5t-107 -94.5t-61.5 -132.5t-21 -153.5q0 -81 21 -155t61.5 -134t106.5 -95.5t149 -35.5z" /> + <glyph glyph-name="otilde" unicode="õ" horiz-adv-x="1116" +d="M676 1157q-36 0 -68 16.5t-54.5 40t-43 47t-43 40t-45.5 16.5q-70 0 -70 -137h-90q0 108 41 174.5t117 66.5q41 0 75 -17t56.5 -41t42 -48t41 -41t43.5 -17q74 0 74 158h96q0 -125 -44.5 -191.5t-127.5 -66.5zM555 -20q-134 0 -240 71t-163.5 190t-57.5 261t57.5 260 +t163.5 188t240 70t241.5 -70t166.5 -188.5t59 -259.5q0 -142 -59 -261t-166.5 -190t-241.5 -71zM557 82q84 0 151 36t107 96.5t61 134t21 153.5q0 109 -35 201t-113.5 153.5t-189.5 61.5q-84 0 -150.5 -35.5t-107 -94.5t-61.5 -132.5t-21 -153.5q0 -81 21 -155t61.5 -134 +t106.5 -95.5t149 -35.5z" /> + <glyph glyph-name="odieresis" unicode="ö" horiz-adv-x="1116" +d="M309 1229v184h160v-184h-160zM641 1229v184h160v-184h-160zM555 -20q-134 0 -240 71t-163.5 190t-57.5 261t57.5 260t163.5 188t240 70t241.5 -70t166.5 -188.5t59 -259.5q0 -142 -59 -261t-166.5 -190t-241.5 -71zM557 82q84 0 151 36t107 96.5t61 134t21 153.5 +q0 109 -35 201t-113.5 153.5t-189.5 61.5q-84 0 -150.5 -35.5t-107 -94.5t-61.5 -132.5t-21 -153.5q0 -81 21 -155t61.5 -134t106.5 -95.5t149 -35.5z" /> + <glyph glyph-name="divide" unicode="÷" horiz-adv-x="881" +d="M346 920v176h178v-176h-178zM135 580v96h600v-96h-600zM346 141v176h178v-176h-178z" /> + <glyph glyph-name="oslash" unicode="ø" horiz-adv-x="1116" +d="M834 923q88 -72 138 -182.5t50 -238.5q0 -142 -59 -261t-166.5 -190t-241.5 -71q-118 0 -216 56l-20 -35h-81l42 76q-87 72 -136.5 183.5t-49.5 241.5q0 142 57.5 260t163.5 188t240 70q117 0 220 -57l19 35h82zM219 502q0 -96 29.5 -183t85.5 -145l391 700 +q-72 44 -166 44q-84 0 -150.5 -35.5t-107 -94.5t-61.5 -132.5t-21 -153.5zM557 82q84 0 151 36t107 96.5t61 134t21 153.5q0 97 -29.5 183t-86.5 144l-391 -701q73 -46 167 -46z" /> + <glyph glyph-name="ugrave" unicode="ù" +d="M481 1126l-245 287h176l215 -287h-146zM487 -23q-88 0 -154.5 33.5t-105.5 93t-58 135.5t-19 167v593h124v-604q0 -45 5.5 -86.5t20.5 -84.5t38.5 -73.5t63 -50.5t90.5 -20q127 0 221 104.5t94 235.5v579h123v-999h-123v182q-29 -75 -117 -140t-203 -65z" /> + <glyph glyph-name="uacute" unicode="ú" +d="M465 1124l215 289h176l-268 -289h-123zM487 -23q-88 0 -154.5 33.5t-105.5 93t-58 135.5t-19 167v593h124v-604q0 -45 5.5 -86.5t20.5 -84.5t38.5 -73.5t63 -50.5t90.5 -20q127 0 221 104.5t94 235.5v579h123v-999h-123v182q-29 -75 -117 -140t-203 -65z" /> + <glyph glyph-name="ucircumflex" unicode="û" +d="M223 1098l332 356l332 -356h-154l-178 196l-176 -196h-156zM487 -23q-88 0 -154.5 33.5t-105.5 93t-58 135.5t-19 167v593h124v-604q0 -45 5.5 -86.5t20.5 -84.5t38.5 -73.5t63 -50.5t90.5 -20q127 0 221 104.5t94 235.5v579h123v-999h-123v182q-29 -75 -117 -140 +t-203 -65z" /> + <glyph glyph-name="udieresis" unicode="ü" +d="M307 1229v184h160v-184h-160zM639 1229v184h160v-184h-160zM487 -23q-88 0 -154.5 33.5t-105.5 93t-58 135.5t-19 167v593h124v-604q0 -45 5.5 -86.5t20.5 -84.5t38.5 -73.5t63 -50.5t90.5 -20q127 0 221 104.5t94 235.5v579h123v-999h-123v182q-29 -75 -117 -140 +t-203 -65z" /> + <glyph glyph-name="yacute" unicode="ý" horiz-adv-x="961" +d="M385 1124l215 289h176l-268 -289h-123zM260 -430l168 430l-383 999h139l303 -847l291 847h137l-526 -1429h-129z" /> + <glyph glyph-name="thorn" unicode="þ" horiz-adv-x="1137" +d="M178 -438v1851h141v-567q49 82 132 128t192 46q122 0 211.5 -71t133.5 -187.5t44 -261.5q0 -146 -44 -262t-133.5 -187t-211.5 -71q-217 0 -324 174v-592h-141zM602 100q75 0 133 32t92.5 88.5t52 127t17.5 152.5q0 81 -17.5 151.5t-52 126.5t-92.5 88.5t-133 32.5 +q-74 0 -132.5 -32.5t-94 -88.5t-54 -126.5t-18.5 -151.5q0 -110 31 -198.5t100.5 -145t167.5 -56.5z" /> + <glyph glyph-name="ydieresis" unicode="ÿ" horiz-adv-x="961" +d="M227 1229v184h160v-184h-160zM559 1229v184h160v-184h-160zM260 -430l168 430l-383 999h139l303 -847l291 847h137l-526 -1429h-129z" /> + <glyph glyph-name="Amacron" unicode="Ā" horiz-adv-x="1296" +d="M383 1606v121h536v-121h-536zM76 0l522 1413h104l519 -1413h-144l-108 307h-639l-107 -307h-147zM375 434h549l-273 780z" /> + <glyph glyph-name="amacron" unicode="ā" horiz-adv-x="1016" +d="M236 1192v121h536v-121h-536zM397 -20q-140 0 -227.5 78t-87.5 212q0 295 450 295h222q0 346 -258 346q-175 0 -287 -153l-90 71q137 191 366 191q184 0 282.5 -109.5t98.5 -296.5v-614h-108v205q-50 -112 -147 -168.5t-214 -56.5zM410 86q79 0 146 35.5t109 91.5 +t65.5 122.5t23.5 131.5h-207q-171 0 -252.5 -45t-81.5 -154q0 -94 54.5 -138t142.5 -44z" /> + <glyph glyph-name="Abreve" unicode="Ă" horiz-adv-x="1296" +d="M649 1557q-132 0 -218.5 72t-86.5 198h127q0 -71 51.5 -117.5t126.5 -46.5q74 0 125 46t51 118h127q0 -127 -85.5 -198.5t-217.5 -71.5zM76 0l522 1413h104l519 -1413h-144l-108 307h-639l-107 -307h-147zM375 434h549l-273 780z" /> + <glyph glyph-name="abreve" unicode="ă" horiz-adv-x="1016" +d="M502 1143q-132 0 -218.5 72t-86.5 198h127q0 -71 51.5 -117.5t126.5 -46.5q74 0 125 46t51 118h127q0 -127 -85.5 -198.5t-217.5 -71.5zM397 -20q-140 0 -227.5 78t-87.5 212q0 295 450 295h222q0 346 -258 346q-175 0 -287 -153l-90 71q137 191 366 191 +q184 0 282.5 -109.5t98.5 -296.5v-614h-108v205q-50 -112 -147 -168.5t-214 -56.5zM410 86q79 0 146 35.5t109 91.5t65.5 122.5t23.5 131.5h-207q-171 0 -252.5 -45t-81.5 -154q0 -94 54.5 -138t142.5 -44z" /> + <glyph glyph-name="Aogonek" unicode="Ą" horiz-adv-x="1296" +d="M1207 -281l86 -59q-37 -54 -84.5 -82.5t-118.5 -28.5q-87 0 -143.5 56.5t-56.5 148.5q0 53 23 97.5t60.5 73.5t71.5 46.5t70 28.5h-38l-108 307h-639l-107 -307h-147l522 1413h104l519 -1413l-12 -4q-12 -5 -33 -15t-45 -23.5t-49.5 -33.5t-45.5 -42.5t-33 -52.5t-13 -62 +q0 -51 26 -82t64 -31q80 0 127 65zM375 434h549l-273 780z" /> + <glyph glyph-name="aogonek" unicode="ą" horiz-adv-x="1016" +d="M852 -281l86 -59q-37 -54 -84.5 -82.5t-118.5 -28.5q-87 0 -143.5 56.5t-56.5 148.5q0 53 23 97.5t60.5 73.5t71.5 46.5t70 28.5h-2v205q-50 -112 -147 -168.5t-214 -56.5q-140 0 -227.5 78t-87.5 212q0 295 450 295h222q0 346 -258 346q-175 0 -287 -153l-90 71 +q137 191 366 191q184 0 282.5 -109.5t98.5 -296.5v-614l-12 -4q-12 -5 -33 -15t-45 -23.5t-49.5 -33.5t-45.5 -42.5t-33 -52.5t-13 -62q0 -51 26 -82t64 -31q80 0 127 65zM410 86q79 0 146 35.5t109 91.5t65.5 122.5t23.5 131.5h-207q-171 0 -252.5 -45t-81.5 -154 +q0 -94 54.5 -138t142.5 -44z" /> + <glyph glyph-name="Cacute" unicode="Ć" horiz-adv-x="1417" +d="M629 1538l215 289h176l-268 -289h-123zM752 -20q-123 0 -225 37.5t-174 104t-121.5 158.5t-73 200.5t-23.5 230.5q0 120 22.5 226t72 198t122.5 158.5t179.5 104.5t236.5 38q415 0 551 -369l-123 -55q-22 82 -68 143t-107 94t-125.5 48.5t-135.5 15.5q-104 0 -188 -32.5 +t-140 -88.5t-93.5 -133.5t-54 -164t-16.5 -183.5q0 -99 17 -186.5t55.5 -166t95 -134.5t140.5 -89t188 -33q96 0 175.5 27.5t149.5 97t109 179.5l123 -56q-79 -178 -224 -274t-345 -96z" /> + <glyph glyph-name="cacute" unicode="ć" horiz-adv-x="967" +d="M432 1124l215 289h176l-268 -289h-123zM522 -20q-134 0 -231.5 73.5t-144 189t-46.5 255.5q0 103 27 196t78 166t132.5 116.5t182.5 43.5q129 0 227 -69t152 -189l-119 -53q-22 95 -94 152t-166 57q-78 0 -136.5 -38.5t-91 -102t-48 -134t-15.5 -145.5q0 -76 15.5 -146 +t47.5 -132.5t91 -100t137 -37.5q96 0 167 56t93 149l107 -49q-44 -122 -139 -190t-226 -68z" /> + <glyph glyph-name="Cdotaccent" unicode="Ċ" horiz-adv-x="1417" +d="M641 1643v184h152v-184h-152zM752 -20q-123 0 -225 37.5t-174 104t-121.5 158.5t-73 200.5t-23.5 230.5q0 120 22.5 226t72 198t122.5 158.5t179.5 104.5t236.5 38q415 0 551 -369l-123 -55q-22 82 -68 143t-107 94t-125.5 48.5t-135.5 15.5q-104 0 -188 -32.5 +t-140 -88.5t-93.5 -133.5t-54 -164t-16.5 -183.5q0 -99 17 -186.5t55.5 -166t95 -134.5t140.5 -89t188 -33q96 0 175.5 27.5t149.5 97t109 179.5l123 -56q-79 -178 -224 -274t-345 -96z" /> + <glyph glyph-name="cdotaccent" unicode="ċ" horiz-adv-x="967" +d="M444 1229v184h152v-184h-152zM522 -20q-134 0 -231.5 73.5t-144 189t-46.5 255.5q0 103 27 196t78 166t132.5 116.5t182.5 43.5q129 0 227 -69t152 -189l-119 -53q-22 95 -94 152t-166 57q-78 0 -136.5 -38.5t-91 -102t-48 -134t-15.5 -145.5q0 -76 15.5 -146 +t47.5 -132.5t91 -100t137 -37.5q96 0 167 56t93 149l107 -49q-44 -122 -139 -190t-226 -68z" /> + <glyph glyph-name="Ccaron" unicode="Č" horiz-adv-x="1417" +d="M719 1495l-332 332h156l176 -192l178 192h154zM752 -20q-123 0 -225 37.5t-174 104t-121.5 158.5t-73 200.5t-23.5 230.5q0 120 22.5 226t72 198t122.5 158.5t179.5 104.5t236.5 38q415 0 551 -369l-123 -55q-22 82 -68 143t-107 94t-125.5 48.5t-135.5 15.5 +q-104 0 -188 -32.5t-140 -88.5t-93.5 -133.5t-54 -164t-16.5 -183.5q0 -99 17 -186.5t55.5 -166t95 -134.5t140.5 -89t188 -33q96 0 175.5 27.5t149.5 97t109 179.5l123 -56q-79 -178 -224 -274t-345 -96z" /> + <glyph glyph-name="ccaron" unicode="č" horiz-adv-x="967" +d="M522 1081l-332 332h156l176 -192l178 192h154zM522 -20q-134 0 -231.5 73.5t-144 189t-46.5 255.5q0 103 27 196t78 166t132.5 116.5t182.5 43.5q129 0 227 -69t152 -189l-119 -53q-22 95 -94 152t-166 57q-78 0 -136.5 -38.5t-91 -102t-48 -134t-15.5 -145.5 +q0 -76 15.5 -146t47.5 -132.5t91 -100t137 -37.5q96 0 167 56t93 149l107 -49q-44 -122 -139 -190t-226 -68z" /> + <glyph glyph-name="Dcaron" unicode="Ď" horiz-adv-x="1405" +d="M721 1495l-332 332h156l176 -192l178 192h154zM219 0v1413h348q341 0 524 -184.5t183 -532.5q0 -334 -185 -515t-524 -181h-346zM354 123h187q127 0 234.5 36t189 106t128 183.5t46.5 258.5q0 282 -147 434.5t-429 152.5h-209v-1171z" /> + <glyph glyph-name="dcaron" unicode="ď" horiz-adv-x="1171" +d="M506 -20q-127 0 -219.5 70.5t-137.5 186.5t-45 263q0 146 45 262.5t137.5 187t219.5 70.5q101 0 181 -44t130 -122v559h125v-1413h-125v145q-112 -165 -311 -165zM1053 1032l100 381h201l-203 -381h-98zM532 94q76 0 134.5 33.5t92.5 91t51 128.5t17 153t-17 152.5 +t-51 127.5t-92.5 90t-134.5 33q-101 0 -170 -57.5t-99 -146t-30 -199.5q0 -65 10.5 -124t34 -111t58 -89.5t85 -59.5t111.5 -22z" /> + <glyph glyph-name="Dcroat" unicode="Đ" horiz-adv-x="1421" +d="M236 0v664h-113v98h113v651h356q338 0 518 -184.5t180 -532.5q0 -334 -182.5 -515t-517.5 -181h-354zM379 129h186q126 0 230 34.5t183 103t123 181t44 259.5q0 282 -140.5 430.5t-416.5 148.5h-209v-524h381v-98h-381v-535z" /> + <glyph glyph-name="dcroat" unicode="đ" horiz-adv-x="1118" +d="M1145 1268v-105h-203v-1163h-125v146q-55 -78 -130.5 -122t-188.5 -44q-121 0 -212 70.5t-136.5 187.5t-45.5 262t45.5 262t136.5 187.5t212 70.5q209 0 319 -166v309h-307v105h307v145h125v-145h203zM530 82q77 0 136 35t93 95t51 132.5t17 155.5q0 82 -17 154.5 +t-51 133t-93 95.5t-136 35q-75 0 -133.5 -35t-93.5 -95t-52.5 -133t-17.5 -155t17.5 -155.5t52.5 -133t93.5 -94.5t133.5 -35z" /> + <glyph glyph-name="Emacron" unicode="Ē" horiz-adv-x="1237" +d="M412 1606v121h536v-121h-536zM219 0v1413h909v-113h-774v-538h662v-109h-662v-532h774v-121h-909z" /> + <glyph glyph-name="emacron" unicode="ē" horiz-adv-x="1030" +d="M242 1192v121h536v-121h-536zM537 -12q-107 0 -192 40.5t-137.5 110.5t-80 160.5t-27.5 194.5q0 82 16.5 157.5t51.5 141.5t84 114.5t118 76.5t150 28q92 0 165 -28.5t118.5 -75t76 -110.5t42.5 -130.5t12 -139.5q0 -35 -4 -71h-699q-5 -151 76 -256t228 -105 +q96 0 164.5 23.5t125.5 83.5l86 -66q-81 -79 -168.5 -114t-205.5 -35zM231 565h584q0 66 -15 124t-47.5 109t-92 81t-140.5 30q-70 0 -125 -28t-90 -76.5t-53.5 -109.5t-20.5 -130z" /> + <glyph glyph-name="Edotaccent" unicode="Ė" horiz-adv-x="1237" +d="M600 1643v184h152v-184h-152zM219 0v1413h909v-113h-774v-538h662v-109h-662v-532h774v-121h-909z" /> + <glyph glyph-name="edotaccent" unicode="ė" horiz-adv-x="1030" +d="M430 1229v184h152v-184h-152zM537 -12q-107 0 -192 40.5t-137.5 110.5t-80 160.5t-27.5 194.5q0 82 16.5 157.5t51.5 141.5t84 114.5t118 76.5t150 28q92 0 165 -28.5t118.5 -75t76 -110.5t42.5 -130.5t12 -139.5q0 -35 -4 -71h-699q-5 -151 76 -256t228 -105 +q96 0 164.5 23.5t125.5 83.5l86 -66q-81 -79 -168.5 -114t-205.5 -35zM231 565h584q0 66 -15 124t-47.5 109t-92 81t-140.5 30q-70 0 -125 -28t-90 -76.5t-53.5 -109.5t-20.5 -130z" /> + <glyph glyph-name="Eogonek" unicode="Ę" horiz-adv-x="1237" +d="M1114 -281l86 -59q-37 -54 -84.5 -82.5t-118.5 -28.5q-87 0 -143.5 56.5t-56.5 148.5q0 53 23 97.5t60.5 73.5t71.5 46.5t70 28.5h-803v1413h909v-113h-774v-538h662v-109h-662v-532h774v-121l-12 -4q-12 -5 -33 -15t-45 -23.5t-49.5 -33.5t-45.5 -42.5t-33 -52.5 +t-13 -62q0 -51 26 -82t64 -31q80 0 127 65z" /> + <glyph glyph-name="eogonek" unicode="ę" horiz-adv-x="1030" +d="M930 457h-699q-5 -151 76 -256t228 -105q96 0 164.5 23.5t125.5 83.5l86 -66q-99 -97 -213 -129q-151 -86 -151 -196q0 -51 26 -82t64 -31q80 0 127 65l86 -59q-37 -54 -84.5 -82.5t-118.5 -28.5q-87 0 -143.5 56.5t-56.5 148.5q0 114 107 189h-17q-107 0 -192 40.5 +t-137.5 110.5t-80 160.5t-27.5 194.5q0 82 16.5 157.5t51.5 141.5t84 114.5t118 76.5t150 28q92 0 165 -28.5t118.5 -75t76 -110.5t42.5 -130.5t12 -139.5q0 -35 -4 -71zM520 909q-70 0 -125 -28t-90 -76.5t-53.5 -109.5t-20.5 -130h584q0 66 -15 124t-47.5 109t-92 81 +t-140.5 30z" /> + <glyph glyph-name="Ecaron" unicode="Ě" horiz-adv-x="1237" +d="M678 1495l-332 332h156l176 -192l178 192h154zM219 0v1413h909v-113h-774v-538h662v-109h-662v-532h774v-121h-909z" /> + <glyph glyph-name="ecaron" unicode="ě" horiz-adv-x="1030" +d="M508 1081l-332 332h156l176 -192l178 192h154zM537 -12q-107 0 -192 40.5t-137.5 110.5t-80 160.5t-27.5 194.5q0 82 16.5 157.5t51.5 141.5t84 114.5t118 76.5t150 28q92 0 165 -28.5t118.5 -75t76 -110.5t42.5 -130.5t12 -139.5q0 -35 -4 -71h-699q-5 -151 76 -256 +t228 -105q96 0 164.5 23.5t125.5 83.5l86 -66q-81 -79 -168.5 -114t-205.5 -35zM231 565h584q0 66 -15 124t-47.5 109t-92 81t-140.5 30q-70 0 -125 -28t-90 -76.5t-53.5 -109.5t-20.5 -130z" /> + <glyph glyph-name="Gbreve" unicode="Ğ" horiz-adv-x="1503" +d="M760 1557q-132 0 -218.5 72t-86.5 198h127q0 -71 51.5 -117.5t126.5 -46.5q74 0 125 46t51 118h127q0 -127 -85.5 -198.5t-217.5 -71.5zM758 -20q-156 0 -277 57.5t-195.5 158t-112.5 230t-38 281.5q0 151 38.5 281t113.5 231t195.5 159t273.5 58q196 0 339.5 -94.5 +t223.5 -274.5l-125 -55q-142 293 -440 293q-125 0 -220.5 -47.5t-152 -130.5t-85 -186.5t-28.5 -223.5q0 -126 28.5 -233t85.5 -192.5t153.5 -134t222.5 -48.5q95 0 177.5 32t145.5 92.5t99.5 154.5t36.5 210h-324v104h448v-702h-114l4 272q-43 -120 -169 -206t-304 -86z +" /> + <glyph glyph-name="gbreve" unicode="ğ" horiz-adv-x="1018" +d="M498 1143q-132 0 -218.5 72t-86.5 198h127q0 -71 51.5 -117.5t126.5 -46.5q74 0 125 46t51 118h127q0 -127 -85.5 -198.5t-217.5 -71.5zM508 123q176 -25 245 -49q144 -51 168 -174q5 -27 5 -58q0 -96 -56.5 -165t-142.5 -100.5t-190 -31.5q-186 0 -304 97t-118 239 +q0 23 2 37l154 158q-134 70 -134 207q0 97 68 156q-84 90 -84 227q0 156 103.5 251t260.5 95q161 0 263 -102l151 139l74 -95l-165 -128q36 -75 36 -160q0 -156 -101.5 -247t-259.5 -91q-103 0 -187 42q-46 -37 -46 -83q0 -39 20.5 -68.5t59.5 -48t81 -29.5t97 -18zM481 911 +q-104 0 -168.5 -71t-64.5 -170q0 -108 63.5 -173t169.5 -65q107 0 171.5 65t64.5 173q0 101 -65.5 171t-170.5 70zM551 -338q109 0 187.5 45t78.5 129q0 26 -8.5 47t-20 35.5t-34.5 27t-42 20t-53 15t-56.5 11t-64 10t-63.5 10.5q-56 10 -104 24l-135 -157q-2 -83 83.5 -150 +t231.5 -67z" /> + <glyph glyph-name="Gdotaccent" unicode="Ġ" horiz-adv-x="1503" +d="M682 1643v184h152v-184h-152zM758 -20q-156 0 -277 57.5t-195.5 158t-112.5 230t-38 281.5q0 151 38.5 281t113.5 231t195.5 159t273.5 58q196 0 339.5 -94.5t223.5 -274.5l-125 -55q-142 293 -440 293q-125 0 -220.5 -47.5t-152 -130.5t-85 -186.5t-28.5 -223.5 +q0 -126 28.5 -233t85.5 -192.5t153.5 -134t222.5 -48.5q95 0 177.5 32t145.5 92.5t99.5 154.5t36.5 210h-324v104h448v-702h-114l4 272q-43 -120 -169 -206t-304 -86z" /> + <glyph glyph-name="gdotaccent" unicode="ġ" horiz-adv-x="1018" +d="M572 1413v-184h-152v184h152zM508 123q176 -25 245 -49q144 -51 168 -174q5 -27 5 -58q0 -96 -56.5 -165t-142.5 -100.5t-190 -31.5q-186 0 -304 97t-118 239q0 23 2 37l154 158q-134 70 -134 207q0 97 68 156q-84 90 -84 227q0 156 103.5 251t260.5 95q161 0 263 -102 +l151 139l74 -95l-165 -128q36 -75 36 -160q0 -156 -101.5 -247t-259.5 -91q-103 0 -187 42q-46 -37 -46 -83q0 -39 20.5 -68.5t59.5 -48t81 -29.5t97 -18zM481 911q-104 0 -168.5 -71t-64.5 -170q0 -108 63.5 -173t169.5 -65q107 0 171.5 65t64.5 173q0 101 -65.5 171 +t-170.5 70zM551 -338q109 0 187.5 45t78.5 129q0 26 -8.5 47t-20 35.5t-34.5 27t-42 20t-53 15t-56.5 11t-64 10t-63.5 10.5q-56 10 -104 24l-135 -157q-2 -83 83.5 -150t231.5 -67z" /> + <glyph glyph-name="Gcommaaccent" unicode="Ģ" horiz-adv-x="1503" +d="M758 -20q-156 0 -277 57.5t-195.5 158t-112.5 230t-38 281.5q0 151 38.5 281t113.5 231t195.5 159t273.5 58q196 0 339.5 -94.5t223.5 -274.5l-125 -55q-142 293 -440 293q-125 0 -220.5 -47.5t-152 -130.5t-85 -186.5t-28.5 -223.5q0 -126 28.5 -233t85.5 -192.5 +t153.5 -134t222.5 -48.5q95 0 177.5 32t145.5 92.5t99.5 154.5t36.5 210h-324v104h448v-702h-114l4 272q-43 -120 -169 -206t-304 -86zM563 -442l120 329h201l-223 -329h-98z" /> + <glyph glyph-name="gcommaaccent" unicode="ģ" horiz-adv-x="1018" +d="M714 1419l-120 -294h-201l223 294h98zM508 123q176 -25 245 -49q144 -51 168 -174q5 -27 5 -58q0 -96 -56.5 -165t-142.5 -100.5t-190 -31.5q-186 0 -304 97t-118 239q0 23 2 37l154 158q-134 70 -134 207q0 97 68 156q-84 90 -84 227q0 156 103.5 251t260.5 95 +q161 0 263 -102l151 139l74 -95l-165 -128q36 -75 36 -160q0 -156 -101.5 -247t-259.5 -91q-103 0 -187 42q-46 -37 -46 -83q0 -39 20.5 -68.5t59.5 -48t81 -29.5t97 -18zM481 911q-104 0 -168.5 -71t-64.5 -170q0 -108 63.5 -173t169.5 -65q107 0 171.5 65t64.5 173 +q0 101 -65.5 171t-170.5 70zM551 -338q109 0 187.5 45t78.5 129q0 26 -8.5 47t-20 35.5t-34.5 27t-42 20t-53 15t-56.5 11t-64 10t-63.5 10.5q-56 10 -104 24l-135 -157q-2 -83 83.5 -150t231.5 -67z" /> + <glyph glyph-name="Hbar" unicode="Ħ" horiz-adv-x="1446" +d="M1342 1153v-76h-115v-1077h-135v653h-738v-653h-135v1077h-118v76h118v260h135v-260h738v260h135v-260h115zM1092 762v315h-738v-315h738z" /> + <glyph glyph-name="hbar" unicode="ħ" horiz-adv-x="1112" +d="M633 1016q85 0 149.5 -31.5t102.5 -86.5t57 -125t19 -152v-621h-127v598q0 57 -9.5 106t-32.5 94.5t-68.5 72t-109.5 26.5q-133 0 -224 -103.5t-91 -246.5v-547h-123v1132h-190v105h190v176h123v-176h322v-105h-322v-309q48 85 140 139t194 54z" /> + <glyph glyph-name="Itilde" unicode="Ĩ" horiz-adv-x="573" +d="M404 1571q-36 0 -68 16.5t-54.5 40t-43 47t-43 40t-45.5 16.5q-70 0 -70 -137h-90q0 108 41 174.5t117 66.5q41 0 75 -17t56.5 -41t42 -48t41 -41t43.5 -17q74 0 74 158h96q0 -125 -44.5 -191.5t-127.5 -66.5zM219 0v1413h135v-1413h-135z" /> + <glyph glyph-name="itilde" unicode="ĩ" horiz-adv-x="498" +d="M367 1157q-36 0 -68 16.5t-54.5 40t-43 47t-43 40t-45.5 16.5q-70 0 -70 -137h-90q0 108 41 174.5t117 66.5q41 0 75 -17t56.5 -41t42 -48t41 -41t43.5 -17q74 0 74 158h96q0 -125 -44.5 -191.5t-127.5 -66.5zM174 0v999h150v-999h-150z" /> + <glyph glyph-name="Imacron" unicode="Ī" horiz-adv-x="573" +d="M19 1606v121h536v-121h-536zM219 0v1413h135v-1413h-135z" /> + <glyph glyph-name="imacron" unicode="ī" horiz-adv-x="498" +d="M-18 1192v121h536v-121h-536zM174 0v999h150v-999h-150z" /> + <glyph glyph-name="Iogonek" unicode="Į" horiz-adv-x="573" +d="M340 -281l86 -59q-37 -54 -84.5 -82.5t-118.5 -28.5q-87 0 -143.5 56.5t-56.5 148.5q0 53 23 97.5t60.5 73.5t71.5 46.5t70 28.5h-29v1413h135v-1413l-12 -4q-12 -5 -33 -15t-45 -23.5t-49.5 -33.5t-45.5 -42.5t-33 -52.5t-13 -62q0 -51 26 -82t64 -31q80 0 127 65z" /> + <glyph glyph-name="iogonek" unicode="į" horiz-adv-x="498" +d="M322 1413v-184h-152v184h152zM310 -281l86 -59q-37 -54 -84.5 -82.5t-118.5 -28.5q-87 0 -143.5 56.5t-56.5 148.5q0 53 23 97.5t60.5 73.5t71.5 46.5t70 28.5h-44v999h150v-999l-12 -4q-12 -5 -33 -15t-45 -23.5t-49.5 -33.5t-45.5 -42.5t-33 -52.5t-13 -62 +q0 -51 26 -82t64 -31q80 0 127 65z" /> + <glyph glyph-name="Idotaccent" unicode="İ" horiz-adv-x="573" +d="M207 1643v184h152v-184h-152zM219 0v1413h135v-1413h-135z" /> + <glyph glyph-name="dotlessi" unicode="ı" horiz-adv-x="498" +d="M174 0v999h150v-999h-150z" /> + <glyph glyph-name="IJ" unicode="IJ" horiz-adv-x="1687" +d="M219 0v1413h135v-1413h-135zM1069 -20q-182 0 -291.5 114.5t-122.5 290.5l131 18q4 -59 22 -111.5t50.5 -97.5t87 -71.5t123.5 -26.5q70 0 121.5 20.5t82.5 54.5t50 85t25.5 103.5t6.5 119.5v821h-532v113h668v-913q0 -520 -422 -520z" /> + <glyph glyph-name="Kcommaaccent" unicode="Ķ" horiz-adv-x="1442" +d="M219 0v1413h135v-852l805 852h170l-526 -551l565 -862h-160l-493 768l-361 -373v-395h-135zM475 -442l120 329h201l-223 -329h-98z" /> + <glyph glyph-name="kcommaaccent" unicode="ķ" horiz-adv-x="1030" +d="M176 0v1413h127v-983l463 569h154l-314 -362l385 -637h-149l-310 547l-229 -254v-293h-127zM373 -442l120 329h201l-223 -329h-98z" /> + <glyph glyph-name="kgreenlandic" unicode="ĸ" horiz-adv-x="1026" +d="M174 0v999h125v-550l463 550h153l-313 -362l385 -637h-151l-308 543l-229 -254v-289h-125z" /> + <glyph glyph-name="Lacute" unicode="Ĺ" horiz-adv-x="1030" +d="M221 1538l215 289h176l-268 -289h-123zM219 0v1413h135v-1292h604v-121h-739z" /> + <glyph glyph-name="lacute" unicode="ĺ" horiz-adv-x="504" +d="M137 1538l215 289h176l-268 -289h-123zM322 -20q-32 0 -56 7t-40 15.5t-26.5 27t-16 31.5t-8.5 40t-3 40v44v18v1210h127v-1272q0 -42 28 -51q6 -2 13 -2q54 0 104 10v-98q-52 -20 -122 -20z" /> + <glyph glyph-name="Lcommaaccent" unicode="Ļ" horiz-adv-x="1030" +d="M219 0v1413h135v-1292h604v-121h-739zM312 -442l120 329h201l-223 -329h-98z" /> + <glyph glyph-name="lcommaaccent" unicode="ļ" horiz-adv-x="504" +d="M322 -20q-32 0 -56 7t-40 15.5t-26.5 27t-16 31.5t-8.5 40t-3 40v44v18v1210h127v-1272q0 -42 28 -51q6 -2 13 -2q54 0 104 10v-98q-52 -20 -122 -20zM131 -442l120 329h201l-223 -329h-98z" /> + <glyph glyph-name="Lcaron" unicode="Ľ" horiz-adv-x="1038" +d="M219 0v1413h135v-1292h604v-121h-739zM584 1032l100 381h201l-203 -381h-98z" /> + <glyph glyph-name="lcaron" unicode="ľ" horiz-adv-x="543" +d="M322 -20q-32 0 -56 7t-40 15.5t-26.5 27t-16 31.5t-8.5 40t-3 40v44v18v1210h127v-1272q0 -42 28 -51q6 -2 13 -2q54 0 104 10v-98q-52 -20 -122 -20zM424 1032l100 381h201l-203 -381h-98z" /> + <glyph glyph-name="Lslash" unicode="Ł" horiz-adv-x="1051" +d="M370 121h604v-121h-739v317l-104 -114v164l104 118v928h135v-774l398 453v-191l-398 -436v-344z" /> + <glyph glyph-name="lslash" unicode="ł" horiz-adv-x="504" +d="M299 141q0 -42 28 -51q6 -2 13 -2q54 0 104 10v-98q-52 -20 -122 -20q-32 0 -56 7t-40 15.5t-26.5 27t-16 31.5t-8.5 40t-3 40v44v18v305l-180 -203v127l180 203v778h127v-635l199 224v-127l-199 -224v-510z" /> + <glyph glyph-name="Nacute" unicode="Ń" horiz-adv-x="1409" +d="M612 1538l215 289h176l-268 -289h-123zM219 0v1413h223l613 -1309v1309h135v-1413h-227l-607 1311v-1311h-137z" /> + <glyph glyph-name="nacute" unicode="ń" horiz-adv-x="1108" +d="M451 1124l215 289h176l-268 -289h-123zM174 0v999h125v-188q50 95 133 150t197 55q111 0 186.5 -56.5t108 -146t32.5 -205.5v-608h-125v598q0 57 -11 108.5t-35.5 100t-73 77.5t-115.5 29q-128 0 -212.5 -105t-84.5 -296v-512h-125z" /> + <glyph glyph-name="Ncommaaccent" unicode="Ņ" horiz-adv-x="1409" +d="M219 0v1413h223l613 -1309v1309h135v-1413h-227l-607 1311v-1311h-137zM479 -442l120 329h201l-223 -329h-98z" /> + <glyph glyph-name="ncommaaccent" unicode="ņ" horiz-adv-x="1108" +d="M174 0v999h125v-188q50 95 133 150t197 55q111 0 186.5 -56.5t108 -146t32.5 -205.5v-608h-125v598q0 57 -11 108.5t-35.5 100t-73 77.5t-115.5 29q-128 0 -212.5 -105t-84.5 -296v-512h-125zM318 -442l120 329h201l-223 -329h-98z" /> + <glyph glyph-name="Ncaron" unicode="Ň" horiz-adv-x="1409" +d="M702 1495l-332 332h156l176 -192l178 192h154zM219 0v1413h223l613 -1309v1309h135v-1413h-227l-607 1311v-1311h-137z" /> + <glyph glyph-name="ncaron" unicode="ň" horiz-adv-x="1108" +d="M541 1081l-332 332h156l176 -192l178 192h154zM174 0v999h125v-188q50 95 133 150t197 55q111 0 186.5 -56.5t108 -146t32.5 -205.5v-608h-125v598q0 57 -11 108.5t-35.5 100t-73 77.5t-115.5 29q-128 0 -212.5 -105t-84.5 -296v-512h-125z" /> + <glyph glyph-name="Eng" unicode="Ŋ" horiz-adv-x="1411" +d="M850 -369v111q112 0 158.5 54t11.5 128l-664 1362v-1286h-137v1413h215l621 -1286v1286h135v-1413v-12v-49.5t-5 -60.5t-14.5 -69.5t-29.5 -64.5t-47.5 -58.5t-72.5 -38.5t-101 -16h-70z" /> + <glyph glyph-name="eng" unicode="ŋ" horiz-adv-x="1110" +d="M627 -369v111h51q43 0 73.5 15.5t45 34.5t22.5 49.5t9 46.5t1 40v670q0 291 -215 291q-129 0 -220 -93.5t-91 -222.5v-573h-129v999h129v-165q45 80 132 131t186 51q90 0 157 -32.5t105.5 -90.5t56.5 -129t18 -156v-696q0 -281 -256 -281h-75z" /> + <glyph glyph-name="Omacron" unicode="Ō" horiz-adv-x="1511" +d="M488 1606v121h536v-121h-536zM754 -20q-153 0 -273.5 58t-195.5 158.5t-113.5 230.5t-38.5 280q0 119 24 226.5t74 199t122.5 158.5t175 105t225.5 38q124 0 227.5 -38t176 -104.5t122.5 -158.5t74 -199.5t24 -226.5q0 -120 -24 -227t-74 -199t-122.5 -158.5t-176 -104.5 +t-227.5 -38zM754 106q128 0 226.5 49.5t156.5 135t87 190.5t29 226q0 96 -17.5 182t-56.5 163t-96 133.5t-141.5 89t-187.5 32.5q-101 0 -184.5 -32.5t-140 -89t-95.5 -133.5t-56.5 -163.5t-17.5 -181.5q0 -96 17.5 -182.5t56.5 -163.5t95.5 -133.5t140 -89t184.5 -32.5z +" /> + <glyph glyph-name="omacron" unicode="ō" horiz-adv-x="1116" +d="M291 1192v121h536v-121h-536zM555 -20q-134 0 -240 71t-163.5 190t-57.5 261t57.5 260t163.5 188t240 70t241.5 -70t166.5 -188.5t59 -259.5q0 -142 -59 -261t-166.5 -190t-241.5 -71zM557 82q84 0 151 36t107 96.5t61 134t21 153.5q0 109 -35 201t-113.5 153.5 +t-189.5 61.5q-84 0 -150.5 -35.5t-107 -94.5t-61.5 -132.5t-21 -153.5q0 -81 21 -155t61.5 -134t106.5 -95.5t149 -35.5z" /> + <glyph glyph-name="Ohungarumlaut" unicode="Ő" horiz-adv-x="1511" +d="M502 1542l215 285h180l-272 -285h-123zM827 1542l215 285h177l-269 -285h-123zM754 -20q-153 0 -273.5 58t-195.5 158.5t-113.5 230.5t-38.5 280q0 119 24 226.5t74 199t122.5 158.5t175 105t225.5 38q124 0 227.5 -38t176 -104.5t122.5 -158.5t74 -199.5t24 -226.5 +q0 -120 -24 -227t-74 -199t-122.5 -158.5t-176 -104.5t-227.5 -38zM754 106q128 0 226.5 49.5t156.5 135t87 190.5t29 226q0 96 -17.5 182t-56.5 163t-96 133.5t-141.5 89t-187.5 32.5q-101 0 -184.5 -32.5t-140 -89t-95.5 -133.5t-56.5 -163.5t-17.5 -181.5 +q0 -96 17.5 -182.5t56.5 -163.5t95.5 -133.5t140 -89t184.5 -32.5z" /> + <glyph glyph-name="ohungarumlaut" unicode="ő" horiz-adv-x="1116" +d="M305 1128l215 285h180l-272 -285h-123zM630 1128l215 285h177l-269 -285h-123zM555 -20q-134 0 -240 71t-163.5 190t-57.5 261t57.5 260t163.5 188t240 70t241.5 -70t166.5 -188.5t59 -259.5q0 -142 -59 -261t-166.5 -190t-241.5 -71zM557 82q84 0 151 36t107 96.5 +t61 134t21 153.5q0 109 -35 201t-113.5 153.5t-189.5 61.5q-84 0 -150.5 -35.5t-107 -94.5t-61.5 -132.5t-21 -153.5q0 -81 21 -155t61.5 -134t106.5 -95.5t149 -35.5z" /> + <glyph glyph-name="OE" unicode="Œ" horiz-adv-x="2241" +d="M754 -20q-153 0 -273.5 58t-195.5 158.5t-113.5 230.5t-38.5 280q0 119 24 226.5t74 199t122.5 158.5t175 105t225.5 38q362 0 489 -304v283h889v-113h-754v-538h662v-109h-662v-532h754v-121h-889v283q-121 -303 -489 -303zM754 100q103 0 186.5 33.5t139 90t93 135 +t54 165.5t16.5 183t-16.5 182.5t-54 165t-93 135t-139 90t-186.5 33.5q-101 0 -183.5 -33.5t-138 -90t-93 -135t-54.5 -165t-17 -182.5t17 -183t54.5 -165t93 -135t138 -90.5t183.5 -33.5z" /> + <glyph glyph-name="oe" unicode="œ" horiz-adv-x="1774" +d="M555 -20q-134 0 -240 69.5t-163.5 187t-57.5 259.5q0 141 58 259t164 187.5t239 69.5q128 0 224 -58t151 -163q45 101 133.5 161t216.5 60q92 0 163.5 -29t117 -77t75 -117.5t41 -144t11.5 -161.5v-26h-699q-2 -74 16.5 -139.5t55 -117t96 -82t135.5 -30.5q95 0 161 22 +t124 85l80 -62q-76 -81 -160.5 -113t-202.5 -32q-252 0 -362 219q-53 -105 -149.5 -166t-227.5 -61zM987 565h590q5 151 -71.5 244.5t-225.5 93.5q-140 0 -215 -95.5t-78 -242.5zM557 100q85 0 149 32.5t100 89.5t53.5 125.5t17.5 148.5t-17.5 148.5t-54.5 125.5t-101 90 +t-149 33q-83 0 -145.5 -33t-99 -89.5t-54.5 -125.5t-18 -149t18 -149t55 -125.5t100 -89t146 -32.5z" /> + <glyph glyph-name="Racute" unicode="Ŕ" horiz-adv-x="1208" +d="M518 1538l215 289h176l-268 -289h-123zM219 -2v1413h391q188 0 310 -105t122 -282q0 -144 -83 -242t-224 -123l381 -661h-160l-354 641h-248v-641h-135zM356 770h281q123 6 198.5 72t75.5 184q0 126 -83 196t-216 70h-256v-522z" /> + <glyph glyph-name="racute" unicode="ŕ" horiz-adv-x="791" +d="M256 1124l215 289h176l-268 -289h-123zM174 0v999h127v-180q40 92 122 146.5t179 54.5q87 0 156 -47l-51 -111q-44 39 -125 39q-137 0 -210 -101t-73 -282v-518h-125z" /> + <glyph glyph-name="Rcommaaccent" unicode="Ŗ" horiz-adv-x="1208" +d="M219 -2v1413h391q188 0 310 -105t122 -282q0 -144 -83 -242t-224 -123l381 -661h-160l-354 641h-248v-641h-135zM356 770h281q123 6 198.5 72t75.5 184q0 126 -83 196t-216 70h-256v-522zM465 -442l120 329h201l-223 -329h-98z" /> + <glyph glyph-name="rcommaaccent" unicode="ŗ" horiz-adv-x="791" +d="M174 0v999h127v-180q40 92 122 146.5t179 54.5q87 0 156 -47l-51 -111q-44 39 -125 39q-137 0 -210 -101t-73 -282v-518h-125zM15 -442l120 329h201l-223 -329h-98z" /> + <glyph glyph-name="Rcaron" unicode="Ř" horiz-adv-x="1208" +d="M608 1495l-332 332h156l176 -192l178 192h154zM219 -2v1413h391q188 0 310 -105t122 -282q0 -144 -83 -242t-224 -123l381 -661h-160l-354 641h-248v-641h-135zM356 770h281q123 6 198.5 72t75.5 184q0 126 -83 196t-216 70h-256v-522z" /> + <glyph glyph-name="rcaron" unicode="ř" horiz-adv-x="791" +d="M346 1081l-332 332h156l176 -192l178 192h154zM174 0v999h127v-180q40 92 122 146.5t179 54.5q87 0 156 -47l-51 -111q-44 39 -125 39q-137 0 -210 -101t-73 -282v-518h-125z" /> + <glyph glyph-name="Sacute" unicode="Ś" +d="M457 1538l215 289h176l-268 -289h-123zM567 -16q-179 0 -313 96t-162 272l123 39q15 -139 115 -213t237 -74t218 67.5t81 203.5q0 61 -23.5 111t-62.5 84.5t-90 64t-107.5 55l-113 51t-107.5 57.5t-90 70t-62.5 93t-23.5 122q0 154 107 252.5t262 98.5q257 0 383 -213 +l-96 -68q-43 83 -119 124.5t-168 41.5q-97 0 -168.5 -60.5t-71.5 -160.5q0 -67 37.5 -119t97.5 -88t132.5 -69t145 -71t132.5 -84t97.5 -118t37.5 -164q0 -181 -120.5 -291t-307.5 -110z" /> + <glyph glyph-name="sacute" unicode="ś" horiz-adv-x="858" +d="M338 1124l215 289h176l-268 -289h-123zM444 -20q-130 0 -227 69t-133 170l109 60q28 -90 94 -143.5t164 -53.5q89 0 146.5 44.5t57.5 131.5q0 47 -18.5 83.5t-49.5 59.5t-71.5 41t-85 33l-89 30t-85 35.5t-71.5 47.5t-49.5 68.5t-18.5 95.5q0 124 87 196t216 72 +q108 0 189.5 -52.5t125.5 -142.5l-90 -53q-70 146 -229 146q-85 0 -136 -42t-51 -110q0 -45 23.5 -78t62 -52t87.5 -37.5t100.5 -32.5t100.5 -38t87.5 -53.5t62 -80t23.5 -115.5q0 -73 -27.5 -131t-74.5 -94t-106 -55t-124 -19z" /> + <glyph glyph-name="Scedilla" unicode="Ş" +d="M995 385q0 -172 -109.5 -280.5t-283.5 -119.5l-57 -106q90 -1 137 -52t47 -124q0 -79 -56.5 -141t-150.5 -62q-62 0 -110 35.5t-68 87.5l90 49q5 -31 31 -54.5t63 -23.5q46 0 74.5 29.5t28.5 71.5q0 52 -48.5 90.5t-142.5 38.5h-34l86 165q-154 19 -264.5 112.5 +t-135.5 250.5l123 39q15 -139 115 -213t237 -74t218 67.5t81 203.5q0 61 -23.5 111t-62.5 84.5t-90 64t-107.5 55l-113 51t-107.5 57.5t-90 70t-62.5 93t-23.5 122q0 154 107 252.5t262 98.5q257 0 383 -213l-96 -68q-43 83 -119 124.5t-168 41.5q-97 0 -168.5 -60.5 +t-71.5 -160.5q0 -67 37.5 -119t97.5 -88t132.5 -69t145 -71t132.5 -84t97.5 -118t37.5 -164z" /> + <glyph glyph-name="scedilla" unicode="ş" horiz-adv-x="858" +d="M776 279q0 -123 -74 -199t-188 -94l-57 -107q90 -1 137 -52t47 -124q0 -79 -56.5 -141t-150.5 -62q-62 0 -110 35.5t-68 87.5l90 49q5 -31 31 -54.5t63 -23.5q46 0 74.5 29.5t28.5 71.5q0 52 -48.5 90.5t-142.5 38.5h-34l83 158q-115 12 -200 78.5t-117 158.5l109 60 +q28 -90 94 -143.5t164 -53.5q89 0 146.5 44.5t57.5 131.5q0 47 -18.5 83.5t-49.5 59.5t-71.5 41t-85 33l-89 30t-85 35.5t-71.5 47.5t-49.5 68.5t-18.5 95.5q0 124 87 196t216 72q108 0 189.5 -52.5t125.5 -142.5l-90 -53q-70 146 -229 146q-85 0 -136 -42t-51 -110 +q0 -45 23.5 -78t62 -52t87.5 -37.5t100.5 -32.5t100.5 -38t87.5 -53.5t62 -80t23.5 -115.5z" /> + <glyph glyph-name="Scaron" unicode="Š" +d="M547 1495l-332 332h156l176 -192l178 192h154zM567 -16q-179 0 -313 96t-162 272l123 39q15 -139 115 -213t237 -74t218 67.5t81 203.5q0 61 -23.5 111t-62.5 84.5t-90 64t-107.5 55l-113 51t-107.5 57.5t-90 70t-62.5 93t-23.5 122q0 154 107 252.5t262 98.5 +q257 0 383 -213l-96 -68q-43 83 -119 124.5t-168 41.5q-97 0 -168.5 -60.5t-71.5 -160.5q0 -67 37.5 -119t97.5 -88t132.5 -69t145 -71t132.5 -84t97.5 -118t37.5 -164q0 -181 -120.5 -291t-307.5 -110z" /> + <glyph glyph-name="scaron" unicode="š" horiz-adv-x="858" +d="M428 1081l-332 332h156l176 -192l178 192h154zM444 -20q-130 0 -227 69t-133 170l109 60q28 -90 94 -143.5t164 -53.5q89 0 146.5 44.5t57.5 131.5q0 47 -18.5 83.5t-49.5 59.5t-71.5 41t-85 33l-89 30t-85 35.5t-71.5 47.5t-49.5 68.5t-18.5 95.5q0 124 87 196t216 72 +q108 0 189.5 -52.5t125.5 -142.5l-90 -53q-70 146 -229 146q-85 0 -136 -42t-51 -110q0 -45 23.5 -78t62 -52t87.5 -37.5t100.5 -32.5t100.5 -38t87.5 -53.5t62 -80t23.5 -115.5q0 -73 -27.5 -131t-74.5 -94t-106 -55t-124 -19z" /> + <glyph glyph-name="uni0162" unicode="Ţ" horiz-adv-x="1247" +d="M692 1307v-1307l-65 -121q90 -1 137 -52t47 -124q0 -79 -56.5 -141t-150.5 -62q-62 0 -110 35.5t-68 87.5l90 49q5 -31 31 -54.5t63 -23.5q46 0 74.5 29.5t28.5 71.5q0 52 -48.5 90.5t-142.5 38.5h-34l92 176h-25v1307h-485v106h1108v-106h-486z" /> + <glyph glyph-name="uni0163" unicode="ţ" horiz-adv-x="653" +d="M432 -121q90 -1 137 -52t47 -124q0 -79 -56.5 -141t-150.5 -62q-62 0 -110 35.5t-68 87.5l90 49q5 -31 31 -54.5t63 -23.5q46 0 74.5 29.5t28.5 71.5q0 52 -48.5 90.5t-142.5 38.5h-34l84 161q-91 16 -129.5 86.5t-38.5 190.5v635h-160v102h160v220l125 131v-351h254 +v-102h-254v-647q0 -82 36 -126t95 -44q41 0 90 22v-104q-23 -9 -67 -15z" /> + <glyph glyph-name="Tcaron" unicode="Ť" horiz-adv-x="1247" +d="M629 1495l-332 332h156l176 -192l178 192h154zM555 0v1307h-485v106h1108v-106h-486v-1307h-137z" /> + <glyph glyph-name="tcaron" unicode="ť" horiz-adv-x="653" +d="M465 1094l117 352h182l-217 -352h-82zM440 -20q-235 0 -235 282v635h-156v102h156v220l129 131v-351h254v-102h-254v-647q0 -162 112 -162q32 0 59 3.5t39 6.5l11 4v-104q-49 -18 -115 -18z" /> + <glyph glyph-name="Tbar" unicode="Ŧ" horiz-adv-x="1247" +d="M1178 1307h-486v-549h255v-105h-255v-653h-137v653h-243v105h243v549h-485v106h1108v-106z" /> + <glyph glyph-name="tbar" unicode="ŧ" horiz-adv-x="653" +d="M627 446h-293v-196q0 -82 36 -126t95 -44q41 0 90 22v-104q-41 -18 -123 -18q-122 0 -172.5 73t-50.5 209v184h-217v105h217v346h-160v102h160v220l125 131v-351h254v-102h-254v-346h293v-105z" /> + <glyph glyph-name="Utilde" unicode="Ũ" horiz-adv-x="1346" +d="M797 1571q-36 0 -68 16.5t-54.5 40t-43 47t-43 40t-45.5 16.5q-70 0 -70 -137h-90q0 108 41 174.5t117 66.5q41 0 75 -17t56.5 -41t42 -48t41 -41t43.5 -17q74 0 74 158h96q0 -125 -44.5 -191.5t-127.5 -66.5zM672 -20q-124 0 -219 44.5t-150 120.5t-82.5 168.5 +t-27.5 196.5v903h135v-854q0 -453 344 -453q77 0 137.5 23.5t99.5 64t64.5 99t36 124t10.5 142.5v854h135v-893q0 -86 -17 -163.5t-54.5 -147t-92.5 -120t-137 -80t-182 -29.5z" /> + <glyph glyph-name="utilde" unicode="ũ" +d="M674 1157q-36 0 -68 16.5t-54.5 40t-43 47t-43 40t-45.5 16.5q-70 0 -70 -137h-90q0 108 41 174.5t117 66.5q41 0 75 -17t56.5 -41t42 -48t41 -41t43.5 -17q74 0 74 158h96q0 -125 -44.5 -191.5t-127.5 -66.5zM487 -23q-88 0 -154.5 33.5t-105.5 93t-58 135.5t-19 167 +v593h124v-604q0 -45 5.5 -86.5t20.5 -84.5t38.5 -73.5t63 -50.5t90.5 -20q127 0 221 104.5t94 235.5v579h123v-999h-123v182q-29 -75 -117 -140t-203 -65z" /> + <glyph glyph-name="Umacron" unicode="Ū" horiz-adv-x="1346" +d="M412 1606v121h536v-121h-536zM672 -20q-124 0 -219 44.5t-150 120.5t-82.5 168.5t-27.5 196.5v903h135v-854q0 -453 344 -453q77 0 137.5 23.5t99.5 64t64.5 99t36 124t10.5 142.5v854h135v-893q0 -86 -17 -163.5t-54.5 -147t-92.5 -120t-137 -80t-182 -29.5z" /> + <glyph glyph-name="umacron" unicode="ū" +d="M289 1192v121h536v-121h-536zM487 -23q-88 0 -154.5 33.5t-105.5 93t-58 135.5t-19 167v593h124v-604q0 -45 5.5 -86.5t20.5 -84.5t38.5 -73.5t63 -50.5t90.5 -20q127 0 221 104.5t94 235.5v579h123v-999h-123v182q-29 -75 -117 -140t-203 -65z" /> + <glyph glyph-name="Uring" unicode="Ů" horiz-adv-x="1346" +d="M676 1495q-83 0 -139.5 57.5t-56.5 139.5q0 81 57 139t139 58q81 0 139 -57t58 -140q0 -82 -57.5 -139.5t-139.5 -57.5zM676 1592q41 0 71 29t30 71q0 41 -29 69.5t-72 28.5q-44 0 -71 -27t-27 -71t28 -72t70 -28zM672 -20q-124 0 -219 44.5t-150 120.5t-82.5 168.5 +t-27.5 196.5v903h135v-854q0 -453 344 -453q77 0 137.5 23.5t99.5 64t64.5 99t36 124t10.5 142.5v854h135v-893q0 -86 -17 -163.5t-54.5 -147t-92.5 -120t-137 -80t-182 -29.5z" /> + <glyph glyph-name="uring" unicode="ů" +d="M553 1081q-83 0 -139.5 57.5t-56.5 139.5q0 81 57 139t139 58q81 0 139 -57t58 -140q0 -82 -57.5 -139.5t-139.5 -57.5zM553 1178q41 0 71 29t30 71q0 41 -29 69.5t-72 28.5q-44 0 -71 -27t-27 -71t28 -72t70 -28zM487 -23q-88 0 -154.5 33.5t-105.5 93t-58 135.5 +t-19 167v593h124v-604q0 -45 5.5 -86.5t20.5 -84.5t38.5 -73.5t63 -50.5t90.5 -20q127 0 221 104.5t94 235.5v579h123v-999h-123v182q-29 -75 -117 -140t-203 -65z" /> + <glyph glyph-name="Uhungarumlaut" unicode="Ű" horiz-adv-x="1346" +d="M426 1542l215 285h180l-272 -285h-123zM751 1542l215 285h177l-269 -285h-123zM672 -20q-124 0 -219 44.5t-150 120.5t-82.5 168.5t-27.5 196.5v903h135v-854q0 -453 344 -453q77 0 137.5 23.5t99.5 64t64.5 99t36 124t10.5 142.5v854h135v-893q0 -86 -17 -163.5 +t-54.5 -147t-92.5 -120t-137 -80t-182 -29.5z" /> + <glyph glyph-name="uhungarumlaut" unicode="ű" +d="M303 1128l215 285h180l-272 -285h-123zM628 1128l215 285h177l-269 -285h-123zM487 -23q-88 0 -154.5 33.5t-105.5 93t-58 135.5t-19 167v593h124v-604q0 -45 5.5 -86.5t20.5 -84.5t38.5 -73.5t63 -50.5t90.5 -20q127 0 221 104.5t94 235.5v579h123v-999h-123v182 +q-29 -75 -117 -140t-203 -65z" /> + <glyph glyph-name="Uogonek" unicode="Ų" horiz-adv-x="1346" +d="M1020 1413h135v-893q0 -114 -29.5 -212t-97 -178t-167.5 -118h3l-12 -4q-12 -5 -33 -15t-45 -23.5t-49.5 -33.5t-45.5 -42.5t-33 -52.5t-13 -62q0 -51 26 -82t64 -31q80 0 127 65l86 -59q-37 -54 -84.5 -82.5t-118.5 -28.5q-87 0 -143.5 56.5t-56.5 148.5q0 136 148 214 +h-9q-124 0 -219 44.5t-150 120.5t-82.5 168.5t-27.5 196.5v903h135v-854q0 -453 344 -453q77 0 137.5 23.5t99.5 64t64.5 99t36 124t10.5 142.5v854z" /> + <glyph glyph-name="uogonek" unicode="ų" +d="M916 -281l86 -59q-37 -54 -84.5 -82.5t-118.5 -28.5q-87 0 -143.5 56.5t-56.5 148.5q0 53 23 97.5t60.5 73.5t71.5 46.5t70 28.5h-17v182q-29 -75 -117 -140t-203 -65q-88 0 -154.5 33.5t-105.5 93t-58 135.5t-19 167v593h124v-604q0 -45 5.5 -86.5t20.5 -84.5 +t38.5 -73.5t63 -50.5t90.5 -20q127 0 221 104.5t94 235.5v579h123v-999l-12 -4q-12 -5 -33 -15t-45 -23.5t-49.5 -33.5t-45.5 -42.5t-33 -52.5t-13 -62q0 -51 26 -82t64 -31q80 0 127 65z" /> + <glyph glyph-name="Wcircumflex" unicode="Ŵ" horiz-adv-x="1966" +d="M655 1481l332 356l332 -356h-154l-178 196l-176 -196h-156zM477 0l-391 1413h137l344 -1263l361 1181h110l363 -1181l342 1263h137l-391 -1413h-156l-346 1112l-354 -1112h-156z" /> + <glyph glyph-name="wcircumflex" unicode="ŵ" horiz-adv-x="1407" +d="M375 1098l332 356l332 -356h-154l-178 196l-176 -196h-156zM332 0l-273 999h134l213 -845l239 845h119l240 -843l210 843h134l-273 -999h-127l-241 850l-248 -850h-127z" /> + <glyph glyph-name="Ycircumflex" unicode="Ŷ" horiz-adv-x="1315" +d="M325 1512l332 356l332 -356h-154l-178 196l-176 -196h-156zM594 0v553l-528 860h155l436 -719l439 719h153l-526 -860v-553h-129z" /> + <glyph glyph-name="ycircumflex" unicode="ŷ" horiz-adv-x="961" +d="M143 1098l332 356l332 -356h-154l-178 196l-176 -196h-156zM260 -430l168 430l-383 999h139l303 -847l291 847h137l-526 -1429h-129z" /> + <glyph glyph-name="Ydieresis" unicode="Ÿ" horiz-adv-x="1315" +d="M409 1643v184h160v-184h-160zM741 1643v184h160v-184h-160zM594 0v553l-528 860h155l436 -719l439 719h153l-526 -860v-553h-129z" /> + <glyph glyph-name="Zacute" unicode="Ź" horiz-adv-x="1274" +d="M549 1538l215 289h176l-268 -289h-123zM94 0v111l922 1189h-877v113h1030v-117l-917 -1173h917v-123h-1075z" /> + <glyph glyph-name="zacute" unicode="ź" horiz-adv-x="911" +d="M750 1413l-268 -289h-123l215 289h176zM831 999v-110l-613 -780h613v-109h-761v100l622 797h-594v102h733z" /> + <glyph glyph-name="Zdotaccent" unicode="Ż" horiz-adv-x="1274" +d="M561 1643v184h152v-184h-152zM94 0v111l922 1189h-877v113h1030v-117l-917 -1173h917v-123h-1075z" /> + <glyph glyph-name="zdotaccent" unicode="ż" horiz-adv-x="911" +d="M523 1413v-184h-152v184h152zM831 999v-110l-613 -780h613v-109h-761v100l622 797h-594v102h733z" /> + <glyph glyph-name="Zcaron" unicode="Ž" horiz-adv-x="1274" +d="M639 1495l-332 332h156l176 -192l178 192h154zM94 0v111l922 1189h-877v113h1030v-117l-917 -1173h917v-123h-1075z" /> + <glyph glyph-name="zcaron" unicode="ž" horiz-adv-x="911" +d="M781 1413l-332 -332l-332 332h156l176 -192l178 192h154zM831 999v-110l-613 -780h613v-109h-761v100l622 797h-594v102h733z" /> + <glyph glyph-name="florin" unicode="ƒ" horiz-adv-x="1051" +d="M127 -457v117q172 0 255 79.5t83 246.5v899h-178v114h178v170q0 122 75 201.5t183 79.5q107 0 184 -68l-76 -90q-22 20 -53 30.5t-55 10.5q-59 0 -100 -43t-41 -121v-170h305v-114h-305v-899q0 -214 -124 -328.5t-331 -114.5z" /> + <glyph glyph-name="uni01C3" unicode="ǃ" horiz-adv-x="659" +d="M283 367l-29 1069h152l-29 -1069h-94zM242 0v174h176v-174h-176z" /> + <glyph glyph-name="uni01C4" unicode="DŽ" horiz-adv-x="2659" +d="M2024 1495l-332 332h156l176 -192l178 192h154zM219 0v1413h348q341 0 524 -184.5t183 -532.5q0 -334 -185 -515t-524 -181h-346zM1479 0v111l922 1189h-877v113h1030v-117l-917 -1173h917v-123h-1075zM354 123h187q127 0 234.5 36t189 106t128 183.5t46.5 258.5 +q0 282 -147 434.5t-429 152.5h-209v-1171z" /> + <glyph glyph-name="uni01C5" unicode="Dž" horiz-adv-x="2316" +d="M567 1413q341 0 524 -184.5t183 -532.5q0 -334 -185 -515t-524 -181h-346v1413h348zM2186 1413l-332 -332l-332 332h156l176 -192l178 192h154zM541 123q127 0 234.5 36t189 106t128 183.5t46.5 258.5q0 282 -147 434.5t-429 152.5h-209v-1171h187zM2236 999v-110 +l-613 -780h613v-109h-761v100l622 797h-594v102h733z" /> + <glyph glyph-name="uni01C6" unicode="dž" horiz-adv-x="2029" +d="M817 854v559h125v-1413h-125v146q-55 -78 -130.5 -122t-188.5 -44q-121 0 -212 70.5t-136.5 187.5t-45.5 262t45.5 262t136.5 187.5t212 70.5q209 0 319 -166zM1899 1413l-332 -332l-332 332h156l176 -192l178 192h154zM1949 999v-110l-613 -780h613v-109h-761v100 +l622 797h-594v102h733zM530 82q77 0 136 35t93 95t51 132.5t17 155.5q0 82 -17 154.5t-51 133t-93 95.5t-136 35q-75 0 -133.5 -35t-93.5 -95t-52.5 -133t-17.5 -155t17.5 -155.5t52.5 -133t93.5 -94.5t133.5 -35z" /> + <glyph glyph-name="uni01C7" unicode="LJ" horiz-adv-x="2185" +d="M219 0v1413h135v-1292h604v-121h-739zM1567 -20q-182 0 -291.5 114.5t-122.5 290.5l131 18q4 -59 22 -111.5t50.5 -97.5t87 -71.5t123.5 -26.5q70 0 121.5 20.5t82.5 54.5t50 85t25.5 103.5t6.5 119.5v821h-532v113h668v-913q0 -520 -422 -520z" /> + <glyph glyph-name="uni01C8" unicode="Lj" horiz-adv-x="1511" +d="M219 0v1413h135v-1292h604v-121h-739zM1196 1237v176h149v-176h-149zM1087 -438q-64 0 -145 30l25 89q53 -17 122 -17q63 0 90 42.5t27 103.5v1189h129v-1167q0 -126 -60.5 -198t-187.5 -72z" /> + <glyph glyph-name="uni01C9" unicode="lj" horiz-adv-x="985" +d="M322 -20q-32 0 -56 7t-40 15.5t-26.5 27t-16 31.5t-8.5 40t-3 40v44v18v1210h127v-1272q0 -42 28 -51q6 -2 13 -2q54 0 104 10v-98q-52 -20 -122 -20zM670 1237v176h149v-176h-149zM561 -438q-64 0 -145 30l25 89q53 -17 122 -17q63 0 90 42.5t27 103.5v1189h129v-1167 +q0 -126 -60.5 -198t-187.5 -72z" /> + <glyph glyph-name="uni01CA" unicode="NJ" horiz-adv-x="2523" +d="M219 0v1413h223l613 -1309v1309h135v-1413h-227l-607 1311v-1311h-137zM1905 -20q-182 0 -291.5 114.5t-122.5 290.5l131 18q4 -59 22 -111.5t50.5 -97.5t87 -71.5t123.5 -26.5q70 0 121.5 20.5t82.5 54.5t50 85t25.5 103.5t6.5 119.5v821h-532v113h668v-913 +q0 -520 -422 -520z" /> + <glyph glyph-name="uni01CB" unicode="Nj" horiz-adv-x="1890" +d="M219 0v1413h223l613 -1309v1309h135v-1413h-227l-607 1311v-1311h-137zM1575 1237v176h149v-176h-149zM1466 -438q-64 0 -145 30l25 89q53 -17 122 -17q63 0 90 42.5t27 103.5v1189h129v-1167q0 -126 -60.5 -198t-187.5 -72z" /> + <glyph glyph-name="uni01CC" unicode="nj" horiz-adv-x="1589" +d="M1274 1237v176h149v-176h-149zM174 0v999h125v-188q50 95 133 150t197 55q111 0 186.5 -56.5t108 -146t32.5 -205.5v-608h-125v598q0 57 -11 108.5t-35.5 100t-73 77.5t-115.5 29q-128 0 -212.5 -105t-84.5 -296v-512h-125zM1165 -438q-64 0 -145 30l25 89 +q53 -17 122 -17q63 0 90 42.5t27 103.5v1189h129v-1167q0 -126 -60.5 -198t-187.5 -72z" /> + <glyph glyph-name="uni01CD" unicode="Ǎ" horiz-adv-x="1296" +d="M649 1495l-332 332h156l176 -192l178 192h154zM76 0l522 1413h104l519 -1413h-144l-108 307h-639l-107 -307h-147zM375 434h549l-273 780z" /> + <glyph glyph-name="uni01CE" unicode="ǎ" horiz-adv-x="1016" +d="M502 1081l-332 332h156l176 -192l178 192h154zM397 -20q-140 0 -227.5 78t-87.5 212q0 295 450 295h222q0 346 -258 346q-175 0 -287 -153l-90 71q137 191 366 191q184 0 282.5 -109.5t98.5 -296.5v-614h-108v205q-50 -112 -147 -168.5t-214 -56.5zM410 86q79 0 146 35.5 +t109 91.5t65.5 122.5t23.5 131.5h-207q-171 0 -252.5 -45t-81.5 -154q0 -94 54.5 -138t142.5 -44z" /> + <glyph glyph-name="uni01CF" unicode="Ǐ" horiz-adv-x="573" +d="M285 1495l-332 332h156l176 -192l178 192h154zM219 0v1413h135v-1413h-135z" /> + <glyph glyph-name="uni01D0" unicode="ǐ" horiz-adv-x="498" +d="M248 1081l-332 332h156l176 -192l178 192h154zM174 0v999h150v-999h-150z" /> + <glyph glyph-name="uni01D1" unicode="Ǒ" horiz-adv-x="1511" +d="M754 1495l-332 332h156l176 -192l178 192h154zM754 -20q-153 0 -273.5 58t-195.5 158.5t-113.5 230.5t-38.5 280q0 119 24 226.5t74 199t122.5 158.5t175 105t225.5 38q124 0 227.5 -38t176 -104.5t122.5 -158.5t74 -199.5t24 -226.5q0 -120 -24 -227t-74 -199 +t-122.5 -158.5t-176 -104.5t-227.5 -38zM754 106q128 0 226.5 49.5t156.5 135t87 190.5t29 226q0 96 -17.5 182t-56.5 163t-96 133.5t-141.5 89t-187.5 32.5q-101 0 -184.5 -32.5t-140 -89t-95.5 -133.5t-56.5 -163.5t-17.5 -181.5q0 -96 17.5 -182.5t56.5 -163.5 +t95.5 -133.5t140 -89t184.5 -32.5z" /> + <glyph glyph-name="uni01D2" unicode="ǒ" horiz-adv-x="1116" +d="M557 1081l-332 332h156l176 -192l178 192h154zM555 -20q-134 0 -240 71t-163.5 190t-57.5 261t57.5 260t163.5 188t240 70t241.5 -70t166.5 -188.5t59 -259.5q0 -142 -59 -261t-166.5 -190t-241.5 -71zM557 82q84 0 151 36t107 96.5t61 134t21 153.5q0 109 -35 201 +t-113.5 153.5t-189.5 61.5q-84 0 -150.5 -35.5t-107 -94.5t-61.5 -132.5t-21 -153.5q0 -81 21 -155t61.5 -134t106.5 -95.5t149 -35.5z" /> + <glyph glyph-name="uni01D3" unicode="Ǔ" horiz-adv-x="1346" +d="M678 1495l-332 332h156l176 -192l178 192h154zM672 -20q-124 0 -219 44.5t-150 120.5t-82.5 168.5t-27.5 196.5v903h135v-854q0 -453 344 -453q77 0 137.5 23.5t99.5 64t64.5 99t36 124t10.5 142.5v854h135v-893q0 -86 -17 -163.5t-54.5 -147t-92.5 -120t-137 -80 +t-182 -29.5z" /> + <glyph glyph-name="uni01D4" unicode="ǔ" +d="M555 1081l-332 332h156l176 -192l178 192h154zM487 -23q-88 0 -154.5 33.5t-105.5 93t-58 135.5t-19 167v593h124v-604q0 -45 5.5 -86.5t20.5 -84.5t38.5 -73.5t63 -50.5t90.5 -20q127 0 221 104.5t94 235.5v579h123v-999h-123v182q-29 -75 -117 -140t-203 -65z" /> + <glyph glyph-name="uni01D5" unicode="Ǖ" horiz-adv-x="1346" +d="M412 2020v121h536v-121h-536zM430 1643v184h160v-184h-160zM762 1643v184h160v-184h-160zM672 -20q-124 0 -219 44.5t-150 120.5t-82.5 168.5t-27.5 196.5v903h135v-854q0 -453 344 -453q77 0 137.5 23.5t99.5 64t64.5 99t36 124t10.5 142.5v854h135v-893 +q0 -86 -17 -163.5t-54.5 -147t-92.5 -120t-137 -80t-182 -29.5z" /> + <glyph glyph-name="uni01D6" unicode="ǖ" +d="M289 1606v121h536v-121h-536zM307 1229v184h160v-184h-160zM639 1229v184h160v-184h-160zM487 -23q-88 0 -154.5 33.5t-105.5 93t-58 135.5t-19 167v593h124v-604q0 -45 5.5 -86.5t20.5 -84.5t38.5 -73.5t63 -50.5t90.5 -20q127 0 221 104.5t94 235.5v579h123v-999h-123 +v182q-29 -75 -117 -140t-203 -65z" /> + <glyph glyph-name="uni01D7" unicode="Ǘ" horiz-adv-x="1346" +d="M588 1952l215 289h176l-268 -289h-123zM430 1643v184h160v-184h-160zM762 1643v184h160v-184h-160zM672 -20q-124 0 -219 44.5t-150 120.5t-82.5 168.5t-27.5 196.5v903h135v-854q0 -453 344 -453q77 0 137.5 23.5t99.5 64t64.5 99t36 124t10.5 142.5v854h135v-893 +q0 -86 -17 -163.5t-54.5 -147t-92.5 -120t-137 -80t-182 -29.5z" /> + <glyph glyph-name="uni01D8" unicode="ǘ" +d="M465 1538l215 289h176l-268 -289h-123zM307 1229v184h160v-184h-160zM639 1229v184h160v-184h-160zM487 -23q-88 0 -154.5 33.5t-105.5 93t-58 135.5t-19 167v593h124v-604q0 -45 5.5 -86.5t20.5 -84.5t38.5 -73.5t63 -50.5t90.5 -20q127 0 221 104.5t94 235.5v579h123 +v-999h-123v182q-29 -75 -117 -140t-203 -65z" /> + <glyph glyph-name="uni01D9" unicode="Ǚ" horiz-adv-x="1346" +d="M678 1909l-332 332h156l176 -192l178 192h154zM430 1643v184h160v-184h-160zM762 1643v184h160v-184h-160zM672 -20q-124 0 -219 44.5t-150 120.5t-82.5 168.5t-27.5 196.5v903h135v-854q0 -453 344 -453q77 0 137.5 23.5t99.5 64t64.5 99t36 124t10.5 142.5v854h135 +v-893q0 -86 -17 -163.5t-54.5 -147t-92.5 -120t-137 -80t-182 -29.5z" /> + <glyph glyph-name="uni01DA" unicode="ǚ" +d="M555 1495l-332 332h156l176 -192l178 192h154zM307 1229v184h160v-184h-160zM639 1229v184h160v-184h-160zM487 -23q-88 0 -154.5 33.5t-105.5 93t-58 135.5t-19 167v593h124v-604q0 -45 5.5 -86.5t20.5 -84.5t38.5 -73.5t63 -50.5t90.5 -20q127 0 221 104.5t94 235.5 +v579h123v-999h-123v182q-29 -75 -117 -140t-203 -65z" /> + <glyph glyph-name="uni01DB" unicode="Ǜ" horiz-adv-x="1346" +d="M604 1954l-245 287h176l215 -287h-146zM430 1643v184h160v-184h-160zM762 1643v184h160v-184h-160zM672 -20q-124 0 -219 44.5t-150 120.5t-82.5 168.5t-27.5 196.5v903h135v-854q0 -453 344 -453q77 0 137.5 23.5t99.5 64t64.5 99t36 124t10.5 142.5v854h135v-893 +q0 -86 -17 -163.5t-54.5 -147t-92.5 -120t-137 -80t-182 -29.5z" /> + <glyph glyph-name="uni01DC" unicode="ǜ" +d="M481 1540l-245 287h176l215 -287h-146zM307 1229v184h160v-184h-160zM639 1229v184h160v-184h-160zM487 -23q-88 0 -154.5 33.5t-105.5 93t-58 135.5t-19 167v593h124v-604q0 -45 5.5 -86.5t20.5 -84.5t38.5 -73.5t63 -50.5t90.5 -20q127 0 221 104.5t94 235.5v579h123 +v-999h-123v182q-29 -75 -117 -140t-203 -65z" /> + <glyph glyph-name="uni01DD" unicode="ǝ" horiz-adv-x="1022" +d="M504 -12q-93 0 -164.5 28.5t-117.5 77t-75 118t-41 144.5t-12 164q0 2 1 9.5t1 13.5h699q1 165 -83 263.5t-223 98.5q-93 0 -162 -24.5t-128 -85.5l-84 65q78 82 166 117t204 35q108 0 194 -40.5t139.5 -110.5t81.5 -160.5t28 -194.5t-26.5 -196t-77.5 -165t-133.5 -115 +t-186.5 -42zM504 102q140 0 214.5 94.5t76.5 235.5h-584q-2 -147 73.5 -238.5t219.5 -91.5z" /> + <glyph glyph-name="uni01E3" unicode="ǣ" horiz-adv-x="1667" +d="M561 1208v111h526v-111h-526zM391 -20q-130 0 -219.5 81t-89.5 211q0 150 94.5 222.5t259.5 72.5h324q0 78 -14.5 140t-45.5 110.5t-84.5 74.5t-126.5 26q-86 0 -157 -43.5t-115 -108.5l-98 61q70 95 162 142t217 47q250 0 327 -197q94 193 326 193q95 0 168.5 -28.5 +t120 -77t76 -118t41.5 -145t12 -164.5q0 -14 2 -22h-701q-1 -165 83 -264t223 -99q92 0 161 25t131 88l82 -68q-76 -81 -165 -116t-207 -35q-162 0 -259.5 82.5t-136.5 226.5q-97 -317 -391 -317zM870 567h584q1 155 -77 242.5t-218 87.5q-138 0 -212.5 -94.5t-76.5 -235.5z +M430 90q137 0 234 108t96 259h-309q-98 0 -164 -49.5t-66 -137.5q0 -73 69 -126.5t140 -53.5z" /> + <glyph glyph-name="uni01EB" unicode="ǫ" horiz-adv-x="1116" +d="M641 -12q-30 -13 -59 -30t-64.5 -44.5t-57 -66t-21.5 -80.5q0 -51 26 -82t64 -31q80 0 127 65l86 -59q-37 -54 -84.5 -82.5t-118.5 -28.5q-87 0 -143.5 56.5t-56.5 148.5q0 83 51.5 139.5t124.5 88.5q-186 16 -303.5 164.5t-117.5 355.5q0 142 57.5 260t163.5 188t240 70 +t241.5 -70t166.5 -188.5t59 -259.5q0 -192 -106 -336.5t-275 -177.5zM219 502q0 -81 21 -155t61.5 -134t106.5 -95.5t149 -35.5q84 0 151 36t107 96.5t61 134t21 153.5q0 109 -35 201t-113.5 153.5t-189.5 61.5q-84 0 -150.5 -35.5t-107 -94.5t-61.5 -132.5t-21 -153.5z" /> + <glyph glyph-name="uni01F1" unicode="DZ" horiz-adv-x="2659" +d="M219 0v1413h348q341 0 524 -184.5t183 -532.5q0 -334 -185 -515t-524 -181h-346zM1479 0v111l922 1189h-877v113h1030v-117l-917 -1173h917v-123h-1075zM354 123h187q127 0 234.5 36t189 106t128 183.5t46.5 258.5q0 282 -147 434.5t-429 152.5h-209v-1171z" /> + <glyph glyph-name="uni01F2" unicode="Dz" horiz-adv-x="2316" +d="M567 1413q341 0 524 -184.5t183 -532.5q0 -334 -185 -515t-524 -181h-346v1413h348zM541 123q127 0 234.5 36t189 106t128 183.5t46.5 258.5q0 282 -147 434.5t-429 152.5h-209v-1171h187zM2236 999v-110l-613 -780h613v-109h-761v100l622 797h-594v102h733z" /> + <glyph glyph-name="uni01F3" unicode="dz" horiz-adv-x="2029" +d="M817 854v559h125v-1413h-125v146q-55 -78 -130.5 -122t-188.5 -44q-121 0 -212 70.5t-136.5 187.5t-45.5 262t45.5 262t136.5 187.5t212 70.5q209 0 319 -166zM1949 999v-110l-613 -780h613v-109h-761v100l622 797h-594v102h733zM530 82q77 0 136 35t93 95t51 132.5 +t17 155.5q0 82 -17 154.5t-51 133t-93 95.5t-136 35q-75 0 -133.5 -35t-93.5 -95t-52.5 -133t-17.5 -155t17.5 -155.5t52.5 -133t93.5 -94.5t133.5 -35z" /> + <glyph glyph-name="Scommaaccent" unicode="Ș" +d="M567 -16q-179 0 -313 96t-162 272l123 39q15 -139 115 -213t237 -74t218 67.5t81 203.5q0 61 -23.5 111t-62.5 84.5t-90 64t-107.5 55l-113 51t-107.5 57.5t-90 70t-62.5 93t-23.5 122q0 154 107 252.5t262 98.5q257 0 383 -213l-96 -68q-43 83 -119 124.5t-168 41.5 +q-97 0 -168.5 -60.5t-71.5 -160.5q0 -67 37.5 -119t97.5 -88t132.5 -69t145 -71t132.5 -84t97.5 -118t37.5 -164q0 -181 -120.5 -291t-307.5 -110zM324 -442l120 329h201l-223 -329h-98z" /> + <glyph glyph-name="scommaaccent" unicode="ș" horiz-adv-x="858" +d="M444 -20q-130 0 -227 69t-133 170l109 60q28 -90 94 -143.5t164 -53.5q89 0 146.5 44.5t57.5 131.5q0 47 -18.5 83.5t-49.5 59.5t-71.5 41t-85 33l-89 30t-85 35.5t-71.5 47.5t-49.5 68.5t-18.5 95.5q0 124 87 196t216 72q108 0 189.5 -52.5t125.5 -142.5l-90 -53 +q-70 146 -229 146q-85 0 -136 -42t-51 -110q0 -45 23.5 -78t62 -52t87.5 -37.5t100.5 -32.5t100.5 -38t87.5 -53.5t62 -80t23.5 -115.5q0 -73 -27.5 -131t-74.5 -94t-106 -55t-124 -19zM236 -442l120 329h201l-223 -329h-98z" /> + <glyph glyph-name="uni021A" unicode="Ț" horiz-adv-x="1247" +d="M555 0v1307h-485v106h1108v-106h-486v-1307h-137zM406 -442l120 329h201l-223 -329h-98z" /> + <glyph glyph-name="uni021B" unicode="ț" horiz-adv-x="653" +d="M432 -20q-122 0 -172.5 73t-50.5 209v635h-160v102h160v220l125 131v-351h254v-102h-254v-647q0 -82 36 -126t95 -44q41 0 90 22v-104q-41 -18 -123 -18zM211 -442l120 329h201l-223 -329h-98z" /> + <glyph glyph-name="uni0237" unicode="ȷ" horiz-adv-x="481" +d="M57 -438q-64 0 -145 30l25 89q53 -17 122 -17q63 0 90 42.5t27 103.5v1189h129v-1167q0 -126 -60.5 -198t-187.5 -72z" /> + <glyph glyph-name="uni0250" unicode="ɐ" horiz-adv-x="1044" +d="M545 -20q-176 0 -273.5 107t-97.5 292v616h107l4 -186q69 106 156 156.5t212 50.5q129 0 217 -81t88 -210q0 -149 -93.5 -223t-258.5 -74h-323q0 -165 62 -250.5t208 -85.5q88 0 160.5 41.5t117.5 104.5l91 -72q-69 -96 -159 -141t-218 -45zM283 539h309q101 0 168 48 +t67 138q0 93 -59.5 133.5t-151.5 40.5q-94 0 -172 -53t-119.5 -135t-41.5 -172z" /> + <glyph glyph-name="uni0254" unicode="ɔ" horiz-adv-x="963" +d="M449 -20q-131 0 -229 66t-150 187l118 54q25 -93 96.5 -149t164.5 -56q63 0 113.5 25.5t82.5 66.5t54 96t31 112t9 116q0 76 -15 145.5t-47 132t-91 100t-137 37.5q-95 0 -165.5 -56t-95.5 -148l-106 49q43 124 137.5 191t226.5 67q103 0 185 -42t133 -114t77.5 -164.5 +t26.5 -197.5q0 -104 -26.5 -196.5t-77 -165t-132 -114.5t-183.5 -42z" /> + <glyph glyph-name="uni0258" unicode="ɘ" horiz-adv-x="1022" +d="M485 -12q-116 0 -204 35t-166 116l84 68q59 -63 128 -88t162 -25q139 0 223 99t83 264h-699q0 4 -1 11t-1 11q0 89 12 164.5t41 145t75 118t117.5 77t164.5 28.5q104 0 186.5 -42t133.5 -114.5t77.5 -164.5t26.5 -197t-28 -195.5t-81.5 -160.5t-139.5 -110t-194 -40z +M211 567h584q-2 141 -76.5 235.5t-214.5 94.5q-144 0 -219.5 -91t-73.5 -239z" /> + <glyph glyph-name="uni0259" unicode="ə" horiz-adv-x="1022" +d="M504 -12q-93 0 -164.5 28.5t-117.5 77t-75 118t-41 144.5t-12 164q0 2 1 9.5t1 13.5h699q1 165 -83 263.5t-223 98.5q-93 0 -162 -24.5t-128 -85.5l-84 65q78 82 166 117t204 35q108 0 194 -40.5t139.5 -110.5t81.5 -160.5t28 -194.5t-26.5 -196t-77.5 -165t-133.5 -115 +t-186.5 -42zM504 102q140 0 214.5 94.5t76.5 235.5h-584q-2 -147 73.5 -238.5t219.5 -91.5z" /> + <glyph glyph-name="uni0261" unicode="ɡ" horiz-adv-x="1108" +d="M932 0q0 -201 -106.5 -316.5t-303.5 -115.5q-123 0 -222 48t-159 144l99 74q96 -158 280 -158q139 0 213 89.5t74 234.5v145q-48 -72 -127.5 -108.5t-177.5 -36.5q-197 0 -302.5 141.5t-105.5 366.5q0 148 45 262t136.5 182t218.5 68q203 0 313 -166v145h127zM522 109 +q76 0 134.5 32.5t92.5 89.5t51 127t17 152t-17 152t-51 126.5t-92.5 88.5t-134.5 32q-101 0 -170.5 -56.5t-99 -144t-29.5 -198.5t29.5 -199t99 -145t170.5 -57z" /> + <glyph glyph-name="circumflex" unicode="ˆ" horiz-adv-x="774" +d="M51 1098l332 356l332 -356h-154l-178 196l-176 -196h-156z" /> + <glyph glyph-name="caron" unicode="ˇ" horiz-adv-x="774" +d="M387 1081l-332 332h156l176 -192l178 192h154z" /> + <glyph glyph-name="uni02D0" unicode="ː" horiz-adv-x="524" +d="M287 666l-226 333l377 48zM86 -47l152 381l225 -334z" /> + <glyph glyph-name="uni02D1" unicode="ˑ" horiz-adv-x="551" +d="M301 279l-225 333l377 47z" /> + <glyph glyph-name="breve" unicode="˘" horiz-adv-x="836" +d="M414 1143q-132 0 -218.5 72t-86.5 198h127q0 -71 51.5 -117.5t126.5 -46.5q74 0 125 46t51 118h127q0 -127 -85.5 -198.5t-217.5 -71.5z" /> + <glyph glyph-name="dotaccent" unicode="˙" horiz-adv-x="492" +d="M170 1229v184h152v-184h-152z" /> + <glyph glyph-name="ring" unicode="˚" horiz-adv-x="635" +d="M313 1081q-83 0 -139.5 57.5t-56.5 139.5q0 81 57 139t139 58q81 0 139 -57t58 -140q0 -82 -57.5 -139.5t-139.5 -57.5zM313 1178q41 0 71 29t30 71q0 41 -29 69.5t-72 28.5q-44 0 -71 -27t-27 -71t28 -72t70 -28z" /> + <glyph glyph-name="ogonek" unicode="˛" horiz-adv-x="596" +d="M313 -451q-87 0 -143.5 56.5t-56.5 148.5q0 53 23 97.5t60.5 73.5t71.5 46.5t70 28.5h106l-12 -4q-12 -5 -33 -15t-45 -23.5t-49.5 -33.5t-45.5 -42.5t-33 -52.5t-13 -62q0 -51 26 -82t64 -31q80 0 127 65l86 -59q-37 -54 -84.5 -82.5t-118.5 -28.5z" /> + <glyph glyph-name="tilde" unicode="˜" horiz-adv-x="856" +d="M588 1155q-36 0 -68 16.5t-54.5 40t-43 47t-43 40t-45.5 16.5q-70 0 -70 -137h-90q0 108 41 174.5t117 66.5q41 0 75 -17t56.5 -41t42 -48t41 -41t43.5 -17q74 0 74 158h96q0 -125 -44.5 -191.5t-127.5 -66.5z" /> + <glyph glyph-name="hungarumlaut" unicode="˝" horiz-adv-x="860" +d="M76 1128l215 285h180l-272 -285h-123zM401 1128l215 285h177l-269 -285h-123z" /> + <glyph glyph-name="uni02F5" unicode="˵" horiz-adv-x="1343" +d="M389 729l-227 270h182l209 -270h-164zM1016 729l-228 270h183l209 -270h-164z" /> + <glyph glyph-name="uni02F6" unicode="˶" horiz-adv-x="1343" +d="M164 729l211 270h180l-227 -270h-164zM791 729l210 270h181l-228 -270h-163z" /> + <glyph glyph-name="gravecomb" unicode="̀" horiz-adv-x="0" +d="M-222 1126l-245 287h176l215 -287h-146z" /> + <glyph glyph-name="acutecomb" unicode="́" horiz-adv-x="0" +d="M-456 1124l215 289h176l-268 -289h-123z" /> + <glyph glyph-name="uni0302" unicode="̂" horiz-adv-x="0" +d="M-719 1098l332 356l332 -356h-154l-178 196l-176 -196h-156z" /> + <glyph glyph-name="tildecomb" unicode="̃" horiz-adv-x="0" +d="M-307 1155q-36 0 -68 16.5t-54.5 40t-43 47t-43 40t-45.5 16.5q-70 0 -70 -137h-90q0 108 41 174.5t117 66.5q41 0 75 -17t56.5 -41t42 -48t41 -41t43.5 -17q74 0 74 158h96q0 -125 -44.5 -191.5t-127.5 -66.5z" /> + <glyph glyph-name="uni0304" unicode="̄" horiz-adv-x="0" +d="M-702 1192v121h536v-121h-536z" /> + <glyph glyph-name="uni0306" unicode="̆" horiz-adv-x="0" +d="M-418 1143q-132 0 -218.5 72t-86.5 198h127q0 -71 51.5 -117.5t126.5 -46.5q74 0 125 46t51 118h127q0 -127 -85.5 -198.5t-217.5 -71.5z" /> + <glyph glyph-name="uni0307" unicode="̇" horiz-adv-x="0" +d="M-322 1229v184h152v-184h-152z" /> + <glyph glyph-name="uni0308" unicode="̈" horiz-adv-x="0" +d="M-661 1229v184h160v-184h-160zM-329 1229v184h160v-184h-160z" /> + <glyph glyph-name="uni030A" unicode="̊" horiz-adv-x="0" +d="M-318 1081q-83 0 -139.5 57.5t-56.5 139.5q0 81 57 139t139 58q81 0 139 -57t58 -140q0 -82 -57.5 -139.5t-139.5 -57.5zM-318 1178q41 0 71 29t30 71q0 41 -29 69.5t-72 28.5q-44 0 -71 -27t-27 -71t28 -72t70 -28z" /> + <glyph glyph-name="uni030B" unicode="̋" horiz-adv-x="0" +d="M-784 1128l215 285h180l-272 -285h-123zM-459 1128l215 285h177l-269 -285h-123z" /> + <glyph glyph-name="uni030C" unicode="̌" horiz-adv-x="0" +d="M-387 1081l-332 332h156l176 -192l178 192h154z" /> + <glyph glyph-name="uni030F" unicode="̏" horiz-adv-x="0" +d="M-568 1128l-245 285h198l215 -285h-168zM-246 1128l-244 285h199l215 -285h-170z" /> + <glyph glyph-name="uni0312" unicode="̒" horiz-adv-x="0" +d="M-115 1419l-120 -294h-201l223 294h98z" /> + <glyph glyph-name="uni031B" unicode="̛" horiz-adv-x="0" +d="M-395 999l120 414h201l-223 -414h-98z" /> + <glyph glyph-name="uni0326" unicode="̦" horiz-adv-x="0" +d="M-395 -442l120 329h201l-223 -329h-98z" /> + <glyph glyph-name="uni0327" unicode="̧" horiz-adv-x="0" +d="M-314 -500q-62 0 -110 35.5t-68 87.5l90 49q5 -31 31 -54.5t63 -23.5q46 0 74.5 29.5t28.5 71.5q0 52 -48.5 90.5t-142.5 38.5h-34l92 176h112l-65 -121q90 -1 137 -52t47 -124q0 -79 -56.5 -141t-150.5 -62z" /> + <glyph glyph-name="uni0328" unicode="̨" horiz-adv-x="0" +d="M-283 -451q-87 0 -143.5 56.5t-56.5 148.5q0 53 23 97.5t60.5 73.5t71.5 46.5t70 28.5h106l-12 -4q-12 -5 -33 -15t-45 -23.5t-49.5 -33.5t-45.5 -42.5t-33 -52.5t-13 -62q0 -51 26 -82t64 -31q80 0 127 65l86 -59q-37 -54 -84.5 -82.5t-118.5 -28.5z" /> + <glyph glyph-name="pi" unicode="π" horiz-adv-x="985" +d="M825 -20q-87 0 -143.5 68t-56.5 155v659h-295v-862h-137v862h-82v137h733v-137h-82v-659q0 -51 21.5 -81t58.5 -30q28 0 57 19l33 -101q-52 -30 -107 -30z" /> + <glyph glyph-name="uni0400" unicode="Ѐ" horiz-adv-x="1237" +d="M604 1540l-245 287h176l215 -287h-146zM219 0v1413h909v-113h-774v-538h662v-109h-662v-532h774v-121h-909z" /> + <glyph glyph-name="uni0401" unicode="Ё" horiz-adv-x="1237" +d="M430 1643v184h160v-184h-160zM762 1643v184h160v-184h-160zM219 0v1413h909v-113h-774v-538h662v-109h-662v-532h774v-121h-909z" /> + <glyph glyph-name="uni0402" unicode="Ђ" horiz-adv-x="1636" +d="M1151 -16q-215 0 -322 127l99 88q76 -95 227 -95q96 0 162.5 102t66.5 259q0 213 -76.5 311t-271.5 98q-104 0 -197 -41.5t-147 -111.5v-721h-135v1309h-487v104h1108v-104h-486v-447q142 139 344 139q247 0 365.5 -134.5t118.5 -401.5q0 -125 -46 -235t-132 -178 +t-191 -68z" /> + <glyph glyph-name="uni0403" unicode="Ѓ" horiz-adv-x="1069" +d="M459 1538l211 289h149l-258 -289h-102zM219 0v1413h780v-110h-647v-1303h-133z" /> + <glyph glyph-name="uni0404" unicode="Є" horiz-adv-x="1417" +d="M758 -20q-155 0 -275.5 57t-195.5 157.5t-113.5 230.5t-38.5 282t38 282.5t112.5 231t195.5 158t275 57.5q195 0 339 -93.5t224 -275.5l-123 -51q-29 103 -97.5 171.5t-154 97t-190.5 28.5q-119 0 -211.5 -44.5t-149.5 -122.5t-88 -175.5t-37 -212.5h647v-88h-647 +q5 -120 36.5 -221t89 -179.5t151 -123t213.5 -44.5q327 0 438 299l125 -51q-77 -181 -222.5 -275.5t-340.5 -94.5z" /> + <glyph glyph-name="uni0405" unicode="Ѕ" +d="M567 -16q-179 0 -313 96t-162 272l123 39q15 -139 115 -213t237 -74t218 67.5t81 203.5q0 61 -23.5 111t-62.5 84.5t-90 64t-107.5 55l-113 51t-107.5 57.5t-90 70t-62.5 93t-23.5 122q0 154 107 252.5t262 98.5q257 0 383 -213l-96 -68q-43 83 -119 124.5t-168 41.5 +q-97 0 -168.5 -60.5t-71.5 -160.5q0 -67 37.5 -119t97.5 -88t132.5 -69t145 -71t132.5 -84t97.5 -118t37.5 -164q0 -181 -120.5 -291t-307.5 -110z" /> + <glyph glyph-name="uni0406" unicode="І" horiz-adv-x="573" +d="M219 0v1413h135v-1413h-135z" /> + <glyph glyph-name="uni0407" unicode="Ї" horiz-adv-x="571" +d="M49 1606v159h144v-159h-144zM375 1606v159h143v-159h-143zM219 0v1413h133v-1413h-133z" /> + <glyph glyph-name="uni0408" unicode="Ј" horiz-adv-x="1114" +d="M498 -20q-182 0 -292.5 115t-123.5 290l131 21q4 -60 22.5 -113.5t51.5 -98.5t87.5 -71.5t123.5 -26.5q85 0 143 29.5t87.5 85t41.5 120t12 150.5v822h-532v110h668v-919q0 -514 -420 -514z" /> + <glyph glyph-name="uni0409" unicode="Љ" horiz-adv-x="2040" +d="M225 -20q-91 0 -157 38l61 136q62 -25 102 -25q37 0 67.5 35t50.5 95.5t35 135t23 161.5t11.5 166t3.5 157v534h827v-649h252q204 0 321 -99t117 -280q0 -180 -118 -282.5t-320 -102.5h-385v1303h-561v-424q0 -84 -1 -139t-7.5 -158.5t-18 -174.5t-36 -158.5t-58.5 -141 +t-87.5 -90.5t-121.5 -37zM1249 117h252q145 0 227 70.5t82 197.5t-81 194.5t-228 67.5h-252v-530z" /> + <glyph glyph-name="uni040A" unicode="Њ" horiz-adv-x="2017" +d="M219 0v1413h133v-651h740v651h135v-649h252q204 0 321 -99t117 -280q0 -180 -118 -282.5t-320 -102.5h-387v651h-740v-651h-133zM1227 117h252q143 0 225 70.5t82 197.5t-81 194.5t-226 67.5h-252v-530z" /> + <glyph glyph-name="uni040B" unicode="Ћ" horiz-adv-x="1657" +d="M557 0v1309h-487v104h1108v-104h-486v-447q120 139 344 139q126 0 220.5 -46t151 -129.5t84.5 -193.5t28 -245v-387h-136v401q0 107 -17 189t-55.5 148t-108 101t-167.5 35q-104 0 -197 -41.5t-147 -111.5v-721h-135z" /> + <glyph glyph-name="uni040C" unicode="Ќ" horiz-adv-x="1245" +d="M479 1538l211 289h150l-258 -289h-103zM219 0v1413h133v-590h172l394 590h165l-407 -602q89 0 159.5 -52.5t88.5 -101.5l237 -657h-157l-211 586q-14 41 -69 85t-122 44h-250v-715h-133z" /> + <glyph glyph-name="uni040D" unicode="Ѝ" horiz-adv-x="1444" +d="M715 1546l-226 281h150l209 -281h-133zM219 0v1413h133v-1091q0 -48 -12 -142l16 -2l695 1235h174v-1413h-133v1090q0 72 12 143l-17 2l-694 -1235h-174z" /> + <glyph glyph-name="uni040E" unicode="Ў" horiz-adv-x="1116" +d="M563 1556q-122 0 -210.5 72.5t-88.5 198.5h111q0 -73 55.5 -123.5t132.5 -50.5t133 50t56 124h110q0 -123 -87 -197t-212 -74zM272 0l199 457l-395 956h149l316 -817l346 817h153l-622 -1413h-146z" /> + <glyph glyph-name="uni040F" unicode="Џ" horiz-adv-x="1444" +d="M655 -307v307h-436v1413h133v-1300h740v1300h133v-1413h-437v-307h-133z" /> + <glyph glyph-name="uni0410" unicode="А" horiz-adv-x="1294" +d="M76 0l520 1413h104l519 -1413h-144l-110 307h-633l-111 -307h-145zM373 434h551l-275 783z" /> + <glyph glyph-name="uni0411" unicode="Б" horiz-adv-x="1237" +d="M219 0v1413h727v-121h-594v-512h340q191 0 304.5 -100.5t113.5 -296.5q0 -177 -122 -280t-326 -103h-443zM352 123h314q121 0 214 76t93 192q0 84 -44 145t-111 89t-146 28h-320v-530z" /> + <glyph glyph-name="uni0412" unicode="В" horiz-adv-x="1235" +d="M219 0v1413h367q90 0 168 -19t143 -58t103 -107t38 -158q0 -117 -49 -194.5t-139 -131.5q60 -27 104 -58t80.5 -75t55 -105t18.5 -138q0 -83 -25.5 -148t-68 -106t-101.5 -67.5t-120.5 -37t-130.5 -10.5h-443zM350 778h230q138 0 224.5 68.5t86.5 202.5q0 58 -16.5 102 +t-43.5 70.5t-67 42.5t-82 22t-94 6h-238v-514zM350 123h316q309 0 309 250q0 282 -303 282h-322v-532z" /> + <glyph glyph-name="uni0413" unicode="Г" horiz-adv-x="1069" +d="M219 0v1413h780v-110h-647v-1303h-133z" /> + <glyph glyph-name="uni0414" unicode="Д" horiz-adv-x="1458" +d="M70 -240v346h116l482 1307h123l481 -1307h117v-346h-134v240h-1052v-240h-133zM322 106h817l-408 1147z" /> + <glyph glyph-name="uni0415" unicode="Е" horiz-adv-x="1237" +d="M219 0v1413h909v-113h-774v-538h662v-109h-662v-532h774v-121h-909z" /> + <glyph glyph-name="uni0416" unicode="Ж" horiz-adv-x="1919" +d="M84 0l238 657q17 50 86.5 102t160.5 52l-407 602h164l395 -590h172v590h133v-590h172l393 590h166l-407 -602q90 0 160 -52.5t87 -101.5l238 -657h-158l-209 586q-18 52 -70 90.5t-122 38.5h-250v-715h-133v715h-250q-73 0 -121.5 -35t-68.5 -94l-211 -586h-158z" /> + <glyph glyph-name="uni0417" unicode="З" horiz-adv-x="1112" +d="M522 -20q-148 0 -262.5 59t-165.5 174l113 74q34 -95 121.5 -147t193.5 -52q64 0 123 19.5t106 57t75 97.5t28 135q0 72 -27 129t-74 92.5t-105.5 53.5t-125.5 18h-176v121h182q113 0 189 65.5t76 180.5q0 123 -77 193.5t-190 70.5q-106 0 -185.5 -67t-78.5 -181h-129 +q-1 167 111 264t280 97q166 0 277.5 -96.5t111.5 -262.5q0 -100 -47.5 -182.5t-136.5 -130.5q124 -52 190 -150.5t66 -226.5q0 -100 -36.5 -178.5t-100.5 -127.5t-147 -74t-179 -25z" /> + <glyph glyph-name="uni0418" unicode="И" horiz-adv-x="1409" +d="M1190 0h-137v1311l-607 -1311h-227v1413h135v-1309l613 1309h223v-1413z" /> + <glyph glyph-name="uni0419" unicode="Й" horiz-adv-x="1444" +d="M754 1556q-123 0 -211 72.5t-88 198.5h110q0 -73 55.5 -123.5t133.5 -50.5q77 0 132.5 50t55.5 124h113q0 -123 -88 -197t-213 -74zM219 0v1413h133v-1091q0 -48 -12 -142l16 -2l695 1235h174v-1413h-133v1090q0 72 12 143l-17 2l-694 -1235h-174z" /> + <glyph glyph-name="uni041A" unicode="К" horiz-adv-x="1245" +d="M219 0v1413h133v-590h172l394 590h165l-407 -602q89 0 159.5 -52.5t88.5 -101.5l237 -657h-157l-211 586q-14 41 -69 85t-122 44h-250v-715h-133z" /> + <glyph glyph-name="uni041B" unicode="Л" horiz-adv-x="1321" +d="M76 0l522 1413h123l524 -1413h-135l-448 1253l-447 -1253h-139z" /> + <glyph glyph-name="uni041C" unicode="М" horiz-adv-x="1753" +d="M219 0v1413h238l415 -1167l424 1167h238v-1413h-135v1331l-445 -1208h-155l-443 1208v-1331h-137z" /> + <glyph glyph-name="uni041D" unicode="Н" horiz-adv-x="1446" +d="M219 0v1413h135v-651h738v651h135v-1413h-135v653h-738v-653h-135z" /> + <glyph glyph-name="uni041E" unicode="О" horiz-adv-x="1511" +d="M754 -20q-153 0 -273.5 58t-195.5 158.5t-113.5 230.5t-38.5 280q0 119 24 226.5t74 199t122.5 158.5t175 105t225.5 38q124 0 227.5 -38t176 -104.5t122.5 -158.5t74 -199.5t24 -226.5q0 -120 -24 -227t-74 -199t-122.5 -158.5t-176 -104.5t-227.5 -38zM754 106 +q128 0 226.5 49.5t156.5 135t87 190.5t29 226q0 96 -17.5 182t-56.5 163t-96 133.5t-141.5 89t-187.5 32.5q-101 0 -184.5 -32.5t-140 -89t-95.5 -133.5t-56.5 -163.5t-17.5 -181.5q0 -96 17.5 -182.5t56.5 -163.5t95.5 -133.5t140 -89t184.5 -32.5z" /> + <glyph glyph-name="uni041F" unicode="П" horiz-adv-x="1444" +d="M219 0v1413h1006v-1413h-133v1303h-740v-1303h-133z" /> + <glyph glyph-name="uni0420" unicode="Р" horiz-adv-x="1143" +d="M219 0v1413h385q204 0 322 -101.5t118 -281.5q0 -182 -117.5 -281.5t-322.5 -99.5h-250v-649h-135zM354 768h250q147 0 228 66.5t81 195.5q0 126 -82 197t-227 71h-250v-530z" /> + <glyph glyph-name="uni0421" unicode="С" horiz-adv-x="1417" +d="M758 -20q-155 0 -275.5 57t-195.5 157.5t-113.5 230.5t-38.5 282t38 282.5t112.5 231t195.5 158t275 57.5q195 0 339 -93.5t224 -275.5l-123 -51q-29 103 -97.5 171.5t-154 97t-190.5 28.5q-125 0 -220.5 -48.5t-152 -133t-85 -189t-28.5 -225.5q0 -127 28.5 -235 +t85.5 -194.5t153.5 -136t222.5 -49.5q327 0 438 299l125 -51q-77 -181 -222.5 -275.5t-340.5 -94.5z" /> + <glyph glyph-name="uni0422" unicode="Т" horiz-adv-x="1247" +d="M557 0v1309h-487v104h1108v-104h-488v-1309h-133z" /> + <glyph glyph-name="uni0423" unicode="У" horiz-adv-x="1116" +d="M272 0l199 457l-395 956h149l316 -817l346 817h153l-622 -1413h-146z" /> + <glyph glyph-name="uni0424" unicode="Ф" horiz-adv-x="1667" +d="M766 0v119q-320 0 -476.5 144.5t-156.5 443.5q0 606 633 606v100h135v-100q633 0 633 -606q0 -300 -156 -444t-477 -144v-119h-135zM766 244v944q-261 0 -383.5 -120t-122.5 -361q0 -239 121.5 -351t384.5 -112zM901 244q262 0 384 112t122 351q0 241 -123.5 361 +t-382.5 120v-944z" /> + <glyph glyph-name="uni0425" unicode="Х" horiz-adv-x="1239" +d="M84 0l465 707l-463 706h160l372 -598l377 598h158l-461 -706l463 -707h-158l-381 588l-372 -588h-160z" /> + <glyph glyph-name="uni0426" unicode="Ц" horiz-adv-x="1466" +d="M1235 -240v240h-1016v1413h133v-1300h740v1300h133v-1300h141v-353h-131z" /> + <glyph glyph-name="uni0427" unicode="Ч" horiz-adv-x="1319" +d="M965 0v551q-120 -139 -347 -139q-125 0 -219 46t-150.5 129.5t-84 193.5t-27.5 245v387h135v-401q0 -107 17 -189t55.5 -148t107.5 -101t166 -35q105 0 198.5 42t148.5 111v721h135v-1413h-135z" /> + <glyph glyph-name="uni0428" unicode="Ш" horiz-adv-x="1731" +d="M219 0v1413h133v-1300h443v1300h135v-1300h448v1300h133v-1413h-1292z" /> + <glyph glyph-name="uni0429" unicode="Щ" horiz-adv-x="1753" +d="M1522 -240v240h-1303v1413h133v-1300h443v1300h135v-1300h448v1300h133v-1300h142v-353h-131z" /> + <glyph glyph-name="uni042A" unicode="Ъ" horiz-adv-x="1360" +d="M436 0v1311h-366v102h499v-649h252q204 0 321.5 -99t117.5 -280q0 -180 -118 -282.5t-321 -102.5h-385zM569 117h252q145 0 227 70.5t82 197.5t-81 194.5t-228 67.5h-252v-530z" /> + <glyph glyph-name="uni042B" unicode="Ы" horiz-adv-x="1597" +d="M219 0v1413h135v-649h250q205 0 322.5 -99t117.5 -280q0 -180 -118 -282.5t-322 -102.5h-385zM1245 0v1413h133v-1413h-133zM354 117h250q145 0 227 70.5t82 197.5t-81 194.5t-228 67.5h-250v-530z" /> + <glyph glyph-name="uni042C" unicode="Ь" horiz-adv-x="1143" +d="M219 0v1413h135v-649h250q205 0 322.5 -99t117.5 -280q0 -180 -118 -282.5t-322 -102.5h-385zM354 117h250q145 0 227 70.5t82 197.5t-81 194.5t-228 67.5h-250v-530z" /> + <glyph glyph-name="uni042D" unicode="Э" horiz-adv-x="1417" +d="M659 -20q-195 0 -340 94t-223 276l125 51q111 -299 438 -299q120 0 213.5 44.5t151.5 123t89 179.5t36 221h-647v88h645q-5 115 -35.5 212.5t-87.5 175.5t-149 122.5t-211 44.5q-105 0 -191 -28.5t-154 -96.5t-98 -172l-123 51q80 182 224 275.5t340 93.5 +q154 0 274.5 -57.5t195 -158t112.5 -231t38 -282.5t-38.5 -282t-113.5 -230.5t-195.5 -157.5t-275.5 -57z" /> + <glyph glyph-name="uni042E" unicode="Ю" horiz-adv-x="1864" +d="M1104 -20q-147 0 -264 52t-191.5 144.5t-116.5 212.5t-49 262h-131v-651h-133v1413h133v-651h131q7 142 49 262t116.5 212.5t191.5 145t264 52.5q156 0 277.5 -57.5t196.5 -158t113 -230t38 -281.5q0 -120 -23.5 -227.5t-73.5 -199.5t-122.5 -158.5t-176.5 -104 +t-229 -37.5zM1104 106q101 0 184.5 32.5t140.5 88.5t96 133t56.5 164t17.5 183t-17.5 182.5t-56.5 163.5t-96 133t-140.5 88.5t-184.5 32.5q-126 0 -223 -49t-155 -134t-87 -190.5t-29 -226.5q0 -96 17.5 -183t56.5 -164t95.5 -133t140 -88.5t184.5 -32.5z" /> + <glyph glyph-name="uni042F" unicode="Я" horiz-adv-x="1208" +d="M989 -2h-135v641h-248l-354 -641h-160l381 661q-141 25 -224 123t-83 242q0 177 122 282t310 105h391v-1413zM852 770v522h-256q-133 0 -216 -70t-83 -196q0 -118 75.5 -184t198.5 -72h281z" /> + <glyph glyph-name="uni0430" unicode="а" horiz-adv-x="1016" +d="M397 -20q-140 0 -227.5 78t-87.5 212q0 295 450 295h222q0 346 -258 346q-175 0 -287 -153l-90 71q137 191 366 191q184 0 282.5 -109.5t98.5 -296.5v-614h-108v205q-50 -112 -147 -168.5t-214 -56.5zM410 86q79 0 146 35.5t109 91.5t65.5 122.5t23.5 131.5h-207 +q-171 0 -252.5 -45t-81.5 -154q0 -94 54.5 -138t142.5 -44z" /> + <glyph glyph-name="uni0431" unicode="б" horiz-adv-x="1110" +d="M596 958q127 0 224 -67t146.5 -178t49.5 -246q0 -205 -126.5 -346t-320.5 -141q-127 0 -226.5 66.5t-151.5 176.5t-52 242v377q0 291 219 407q177 93 428 185v-121q-36 -15 -97 -40t-90.5 -38t-70.5 -31t-70 -34t-55 -33q-80 -54 -113.5 -127.5t-33.5 -194.5v-32 +q53 73 142.5 124t197.5 51zM569 82q82 0 143 31.5t96 87t52 122.5t17 146q0 77 -17 144t-52.5 122t-96.5 87t-142 32t-141.5 -31.5t-95 -86.5t-51.5 -121.5t-17 -145.5q0 -62 10.5 -117.5t33.5 -105.5t58 -86t87 -57t116 -21z" /> + <glyph glyph-name="uni0432" unicode="в" horiz-adv-x="1135" +d="M582 -20q-155 0 -248.5 49t-140 162t-46.5 303v489q0 99 21.5 178t68 142t127.5 97t193 34q185 0 291 -83.5t106 -256.5q0 -70 -56.5 -156.5t-158.5 -114.5q82 -3 145 -60t93.5 -139t30.5 -171q0 -217 -116 -345t-310 -128zM567 88q166 0 233.5 93t67.5 268 +q0 80 -23.5 142t-63.5 98.5t-88 54.5t-101 18q-142 0 -209 -60v109q81 48 262 55q44 1 78 25t52.5 60t28 73t9.5 72q0 115 -63.5 170t-192.5 55q-87 0 -145 -22t-87 -66.5t-40 -96t-11 -126.5v-518q0 -164 30 -251.5t90.5 -120t172.5 -32.5z" /> + <glyph glyph-name="uni0433" unicode="г" horiz-adv-x="858" +d="M416 -20q-94 0 -167.5 26.5t-121 86.5t-47.5 147q0 68 23.5 120.5t61.5 84t87 57.5t99.5 42t99.5 36t87 40.5t61.5 55t23.5 80.5q0 137 -172 137q-152 0 -220 -129l-102 59q46 86 127.5 138.5t194.5 52.5q124 0 211.5 -69.5t87.5 -184.5q0 -77 -30 -133t-78 -87.5 +t-105.5 -55t-115.5 -43t-106 -42.5t-78 -63t-30 -96q0 -46 17 -77t48.5 -45t63 -19t74.5 -5q84 0 157 53.5t99 133.5l106 -64q-32 -100 -129.5 -168.5t-226.5 -68.5z" /> + <glyph glyph-name="uni0434" unicode="д" horiz-adv-x="1108" +d="M932 0q0 -201 -106.5 -316.5t-303.5 -115.5q-123 0 -222 48t-159 144l99 74q96 -158 280 -158q139 0 213 89.5t74 234.5v145q-48 -72 -127.5 -108.5t-177.5 -36.5q-197 0 -302.5 141.5t-105.5 366.5q0 148 45 262t136.5 182t218.5 68q203 0 313 -166v145h127zM522 109 +q76 0 134.5 32.5t92.5 89.5t51 127t17 152t-17 152t-51 126.5t-92.5 88.5t-134.5 32q-101 0 -170.5 -56.5t-99 -144t-29.5 -198.5t29.5 -199t99 -145t170.5 -57z" /> + <glyph glyph-name="uni0435" unicode="е" horiz-adv-x="1030" +d="M537 -12q-107 0 -192 40.5t-137.5 110.5t-80 160.5t-27.5 194.5q0 82 16.5 157.5t51.5 141.5t84 114.5t118 76.5t150 28q92 0 165 -28.5t118.5 -75t76 -110.5t42.5 -130.5t12 -139.5q0 -35 -4 -71h-699q-5 -151 76 -256t228 -105q96 0 164.5 23.5t125.5 83.5l86 -66 +q-81 -79 -168.5 -114t-205.5 -35zM231 565h584q0 66 -15 124t-47.5 109t-92 81t-140.5 30q-70 0 -125 -28t-90 -76.5t-53.5 -109.5t-20.5 -130z" /> + <glyph glyph-name="uni0436" unicode="ж" horiz-adv-x="1407" +d="M55 0l160 430q24 66 63.5 114t88.5 48l-246 407h158l217 -374h145v788h127v-788h143l219 374h158l-246 -407q49 0 87.5 -47.5t62.5 -114.5l160 -430h-144l-123 360q-27 82 -65.5 117t-104.5 35h-147v-512h-127v512h-149q-64 0 -102.5 -35.5t-65.5 -116.5l-123 -360h-146z +" /> + <glyph glyph-name="uni0437" unicode="з" horiz-adv-x="901" +d="M397 -461q-70 0 -124 11t-100.5 38.5t-76 51t-80.5 71.5l88 74q51 -69 117 -103t160 -34q103 0 170.5 51t96 133.5t28.5 194.5q0 81 -23.5 143t-64 98t-88.5 54t-103 18h-207v111h261q72 19 121 87t49 136q0 131 -61 186t-193 55q-83 0 -147 -42t-99 -107l-88 51 +q48 89 134.5 142t199.5 53q183 0 282 -83t99 -257q0 -31 -10.5 -68.5t-32 -78t-62 -75t-92.5 -49.5q80 -3 140.5 -60.5t89 -139t28.5 -170.5q0 -221 -111 -356.5t-301 -135.5z" /> + <glyph glyph-name="uni0438" unicode="и" +d="M487 -23q-88 0 -154.5 33.5t-105.5 93t-58 135.5t-19 167v593h124v-604q0 -45 5.5 -86.5t20.5 -84.5t38.5 -73.5t63 -50.5t90.5 -20q127 0 221 104.5t94 235.5v579h123v-999h-123v182q-29 -75 -117 -140t-203 -65z" /> + <glyph glyph-name="uni0439" unicode="й" horiz-adv-x="1128" +d="M547 1143q-123 0 -211 72t-88 198h110q0 -73 55.5 -123.5t133.5 -50.5q76 0 132 50t56 124h111q0 -123 -87 -196.5t-212 -73.5zM512 -23q-90 0 -157 34t-105.5 94t-57 134.5t-18.5 163.5v596h125v-602q0 -59 9.5 -110.5t32.5 -100.5t68 -77.5t109 -28.5q127 0 220 104.5 +t93 237.5v577h123v-999h-123v180q-29 -71 -117.5 -137t-201.5 -66z" /> + <glyph glyph-name="uni043A" unicode="к" horiz-adv-x="944" +d="M174 0v1413h127v-788h143l220 374h157l-246 -407q49 0 87 -47t65 -115l160 -430h-146l-123 360q-27 82 -65.5 117t-103.5 35h-148v-512h-127z" /> + <glyph glyph-name="uni043B" unicode="л" horiz-adv-x="932" +d="M45 0l363 999h116l363 -999h-137l-285 836l-285 -836h-135z" /> + <glyph glyph-name="uni043C" unicode="м" horiz-adv-x="1374" +d="M174 0v999h184l330 -841l328 839h184v-997h-129v840l-334 -840h-100l-334 838v-838h-129z" /> + <glyph glyph-name="uni043D" unicode="н" horiz-adv-x="1128" +d="M174 0v999h127v-399h528v399h125v-999h-125v498h-528v-498h-127z" /> + <glyph glyph-name="uni043E" unicode="о" horiz-adv-x="1116" +d="M555 -20q-134 0 -240 71t-163.5 190t-57.5 261t57.5 260t163.5 188t240 70t241.5 -70t166.5 -188.5t59 -259.5q0 -142 -59 -261t-166.5 -190t-241.5 -71zM557 82q84 0 151 36t107 96.5t61 134t21 153.5q0 109 -35 201t-113.5 153.5t-189.5 61.5q-84 0 -150.5 -35.5 +t-107 -94.5t-61.5 -132.5t-21 -153.5q0 -81 21 -155t61.5 -134t106.5 -95.5t149 -35.5z" /> + <glyph glyph-name="uni043F" unicode="п" horiz-adv-x="1108" +d="M174 0v999h125v-170q45 82 131.5 134.5t185.5 52.5q90 0 157.5 -32t106 -89t57.5 -127.5t19 -155.5v-612h-125v596q0 58 -10.5 108t-34.5 94.5t-69.5 70.5t-108.5 26q-127 0 -218 -96.5t-91 -227.5v-571h-125z" /> + <glyph glyph-name="uni0440" unicode="р" horiz-adv-x="1108" +d="M174 -438v1437h125v-147q107 168 317 168q185 0 291.5 -146.5t106.5 -373.5t-106.5 -373.5t-291.5 -146.5q-210 0 -317 167v-585h-125zM584 88q76 0 135.5 33.5t94.5 92t53 130.5t18 154q0 83 -18 155.5t-53 130.5t-94.5 91.5t-135.5 33.5t-134.5 -33.5t-92.5 -92 +t-51 -130.5t-17 -155q0 -112 28.5 -201.5t97 -149t169.5 -59.5z" /> + <glyph glyph-name="uni0441" unicode="с" horiz-adv-x="967" +d="M522 -20q-134 0 -231.5 73.5t-144 189t-46.5 255.5q0 103 27 196t78 166t132.5 116.5t182.5 43.5q129 0 227 -69t152 -189l-119 -53q-22 95 -94 152t-166 57q-78 0 -136.5 -38.5t-91 -102t-48 -134t-15.5 -145.5q0 -76 15.5 -146t47.5 -132.5t91 -100t137 -37.5 +q96 0 167 56t93 149l107 -49q-44 -122 -139 -190t-226 -68z" /> + <glyph glyph-name="uni0442" unicode="т" horiz-adv-x="1688" +d="M174 0v999h127v-188q30 92 104.5 149.5t172.5 57.5q111 0 194 -55t119 -160q87 213 303 213q91 0 158.5 -32t106.5 -89t58 -127.5t19 -155.5v-612h-127v596q0 59 -10.5 111t-34 101t-70 78t-110.5 29q-121 0 -193.5 -102t-72.5 -240v-573h-127v600q0 60 -10 111.5 +t-33.5 99.5t-69.5 76t-111 28q-62 0 -113.5 -29t-84.5 -77.5t-50.5 -109.5t-17.5 -126v-573h-127z" /> + <glyph glyph-name="uni0443" unicode="у" horiz-adv-x="961" +d="M264 -430l162 432l-381 997h139l299 -847l293 847h139l-526 -1429h-125z" /> + <glyph glyph-name="uni0444" unicode="ф" horiz-adv-x="1372" +d="M623 -430v416q-31 -6 -68 -6q-133 0 -239 69.5t-164 187t-58 259.5q0 141 58 259t164 187.5t239 69.5q37 0 68 -6v407h127v-407q30 6 65 6q101 0 188 -41t147 -110.5t94 -164t34 -200.5q0 -142 -57.5 -259.5t-164.5 -187t-241 -69.5q-35 0 -65 6v-416h-127zM555 92 +q47 0 68 4v797q-32 6 -68 6q-84 0 -146.5 -33t-99 -90t-54 -127.5t-17.5 -152.5t17.5 -152.5t54 -128t99 -90.5t146.5 -33zM815 92q84 0 147.5 33t100 90.5t54.5 128t18 152.5t-18 152.5t-54.5 127.5t-100 90t-147.5 33q-35 0 -65 -6v-797q20 -4 65 -4z" /> + <glyph glyph-name="uni0445" unicode="х" horiz-adv-x="895" +d="M55 0l334 504l-334 495h154l240 -383l241 383h150l-330 -495l330 -504h-150l-241 389l-240 -389h-154z" /> + <glyph glyph-name="uni0446" unicode="ц" horiz-adv-x="1135" +d="M954 -307v284q-58 0 -102 58t-43 145q-30 -71 -118.5 -137t-201.5 -66q-90 0 -157 34t-106 94t-57.5 134.5t-18.5 163.5v596h126v-602q0 -47 5.5 -88.5t20.5 -84.5t39 -74t63.5 -50.5t91.5 -19.5q127 0 220 104.5t93 237.5v577h127v-794q0 -74 41 -113t102 -39l-32 -360 +h-93z" /> + <glyph glyph-name="uni0447" unicode="ч" horiz-adv-x="1067" +d="M766 0v446q-13 -31 -41 -64.5t-68.5 -65t-96 -52t-114.5 -20.5q-90 0 -157 33.5t-106 93.5t-58 135t-19 164v329h127v-335q0 -47 5.5 -89t20.5 -85t39 -74t63.5 -50.5t91.5 -19.5q127 0 220 104.5t93 237.5v311h127v-999h-127z" /> + <glyph glyph-name="uni0448" unicode="ш" horiz-adv-x="1710" +d="M1133 -18q-112 0 -195 54.5t-119 160.5q-90 -213 -303 -213q-91 0 -158.5 32t-106.5 89t-58 128t-19 156v610h127v-596q0 -59 10.5 -111t34 -101t69 -78t109.5 -29q82 0 145 50t93.5 127t30.5 165v573h127v-600q0 -47 5.5 -89t21 -84.5t39.5 -73t64 -49.5t91 -19 +q82 0 144.5 50t93 127t30.5 165v573h127v-999h-127v188q-30 -90 -104.5 -148t-171.5 -58z" /> + <glyph glyph-name="uni0449" unicode="щ" horiz-adv-x="1712" +d="M1532 -307v284q-58 0 -102.5 62t-43.5 147q-29 -90 -104 -147t-172 -57q-112 0 -194.5 55t-118.5 160q-91 -213 -303 -213q-91 0 -158.5 32t-106.5 89t-58 128t-19 156v610h127v-596q0 -59 10.5 -111t34 -101t69 -78t109.5 -29q82 0 144.5 50t93 127t30.5 165v573h127 +v-600q0 -47 5.5 -89t21 -84.5t39.5 -73t64 -49.5t91 -19q82 0 144.5 50t93 127t30.5 165v573h127v-794q0 -75 41.5 -113.5t102.5 -38.5l-33 -360h-92z" /> + <glyph glyph-name="uni044A" unicode="ъ" horiz-adv-x="1145" +d="M618 -20q-77 0 -145.5 22.5t-125 67t-89.5 119t-33 169.5v533h-188v108h317v-348q33 60 120.5 107t189.5 47q79 0 147 -24.5t122.5 -72.5t86 -129t31.5 -186q0 -106 -35 -187t-96 -129.5t-137 -72.5t-165 -24zM641 92q123 0 194.5 84.5t71.5 216.5q0 131 -76 215t-200 84 +q-118 0 -197.5 -73t-79.5 -187v-80q0 -112 78.5 -186t208.5 -74z" /> + <glyph glyph-name="uni044B" unicode="ы" horiz-adv-x="1397" +d="M596 -20q-77 0 -147.5 22.5t-128.5 67t-92.5 119t-34.5 169.5v641h129v-348q33 63 103 108.5t169 45.5q80 0 153.5 -24.5t135 -72.5t98.5 -129.5t37 -185.5q0 -105 -36.5 -186.5t-97.5 -129.5t-134.5 -72.5t-153.5 -24.5zM1176 0v999h127v-999h-127zM596 92q124 0 201 85 +t77 216t-76.5 215t-201.5 84q-114 0 -188.5 -73t-85.5 -187v-80q11 -115 85.5 -187.5t188.5 -72.5z" /> + <glyph glyph-name="uni044C" unicode="ь" horiz-adv-x="1102" +d="M575 -20q-77 0 -147 22.5t-128.5 67t-93 119t-34.5 169.5v641h129v-348q34 64 103.5 109t168.5 45q80 0 153.5 -24.5t135 -72.5t98.5 -129.5t37 -185.5q0 -105 -36.5 -186.5t-97.5 -129.5t-134.5 -72.5t-153.5 -24.5zM575 92q125 0 202 85t77 216q0 130 -77 214.5 +t-202 84.5q-113 0 -188 -73t-86 -187v-80q11 -115 86 -187.5t188 -72.5z" /> + <glyph glyph-name="uni044D" unicode="э" horiz-adv-x="961" +d="M444 -20q-132 0 -226.5 67t-137.5 191l106 49q25 -92 95.5 -148.5t164.5 -56.5q70 0 125 30.5t89 83t52.5 113.5t24.5 131h-415v95h415q-4 72 -21.5 136t-51 120t-89.5 89t-129 33q-93 0 -164 -55.5t-96 -148.5l-118 53q52 121 149.5 187.5t228.5 66.5q103 0 184.5 -42 +t132 -114.5t77 -164.5t26.5 -197q0 -83 -16.5 -159.5t-51 -142t-83.5 -113.5t-118.5 -75.5t-152.5 -27.5z" /> + <glyph glyph-name="uni044E" unicode="ю" horiz-adv-x="1405" +d="M850 -20q-134 0 -240.5 69.5t-164 187.5t-56.5 261h-88v-498h-127v1413h127v-813h94q32 180 155.5 296t299.5 116q133 0 239 -69.5t164 -187.5t58 -259q0 -142 -58 -259.5t-164 -187t-239 -69.5zM850 92q84 0 147 33t99.5 90.5t54.5 128t18 152.5t-18 152.5t-54.5 127.5 +t-99.5 90t-147 33t-147.5 -33t-100 -90t-54.5 -127.5t-18 -152.5t18 -152.5t54.5 -128t100 -90.5t147.5 -33z" /> + <glyph glyph-name="uni044F" unicode="я" horiz-adv-x="961" +d="M82 0l137 354q65 162 150 162q-119 20 -179.5 77t-60.5 173q0 97 73.5 165t227.5 68h356v-999h-127v471h-153q-64 0 -103 -35.5t-67 -116.5l-111 -319h-143zM502 586h157v317h-225q-77 0 -118.5 -38.5t-41.5 -104.5q0 -85 52.5 -129.5t175.5 -44.5z" /> + <glyph glyph-name="uni0450" unicode="ѐ" horiz-adv-x="1030" +d="M434 1126l-245 287h176l215 -287h-146zM537 -12q-107 0 -192 40.5t-137.5 110.5t-80 160.5t-27.5 194.5q0 82 16.5 157.5t51.5 141.5t84 114.5t118 76.5t150 28q92 0 165 -28.5t118.5 -75t76 -110.5t42.5 -130.5t12 -139.5q0 -35 -4 -71h-699q-5 -151 76 -256t228 -105 +q96 0 164.5 23.5t125.5 83.5l86 -66q-81 -79 -168.5 -114t-205.5 -35zM231 565h584q0 66 -15 124t-47.5 109t-92 81t-140.5 30q-70 0 -125 -28t-90 -76.5t-53.5 -109.5t-20.5 -130z" /> + <glyph glyph-name="uni0451" unicode="ё" horiz-adv-x="1030" +d="M260 1229v184h160v-184h-160zM592 1229v184h160v-184h-160zM537 -12q-107 0 -192 40.5t-137.5 110.5t-80 160.5t-27.5 194.5q0 82 16.5 157.5t51.5 141.5t84 114.5t118 76.5t150 28q92 0 165 -28.5t118.5 -75t76 -110.5t42.5 -130.5t12 -139.5q0 -35 -4 -71h-699 +q-5 -151 76 -256t228 -105q96 0 164.5 23.5t125.5 83.5l86 -66q-81 -79 -168.5 -114t-205.5 -35zM231 565h584q0 66 -15 124t-47.5 109t-92 81t-140.5 30q-70 0 -125 -28t-90 -76.5t-53.5 -109.5t-20.5 -130z" /> + <glyph glyph-name="uni0452" unicode="ђ" horiz-adv-x="1112" +d="M612 -461q-106 0 -186 45t-170 140l92 71q45 -51 74 -78t75 -49t99 -22t92.5 12.5t65 38t42 56.5t24.5 77.5t11 90t3 104.5v569q0 47 -5.5 87.5t-21 81.5t-40 69.5t-65 46.5t-92.5 18q-130 0 -220.5 -103.5t-90.5 -246.5v-547h-123v1151h-192v104h192v158h123v-158h319 +v-104h-319v-328q46 84 138.5 137.5t191.5 53.5q86 0 151.5 -31.5t104 -86.5t57.5 -124.5t19 -150.5v-609q0 -220 -84.5 -346.5t-264.5 -126.5z" /> + <glyph glyph-name="uni0453" unicode="ѓ" horiz-adv-x="756" +d="M328 1124l209 289h149l-256 -289h-102zM172 0v999h549v-102h-424v-897h-125z" /> + <glyph glyph-name="uni0454" unicode="є" horiz-adv-x="961" +d="M516 -20q-83 0 -152.5 27.5t-118.5 75.5t-83.5 113.5t-51 142t-16.5 159.5q0 105 26.5 197t77 164.5t132 114.5t184.5 42q131 0 228.5 -66.5t150.5 -187.5l-119 -53q-25 94 -95.5 149t-164.5 55q-73 0 -129 -33t-89.5 -89t-51 -120t-21.5 -136h416v-95h-416 +q6 -70 25 -131t52.5 -113.5t88.5 -83t125 -30.5q94 0 164.5 56.5t95.5 148.5l107 -49q-43 -124 -138 -191t-227 -67z" /> + <glyph glyph-name="uni0455" unicode="ѕ" horiz-adv-x="858" +d="M440 -20q-129 0 -226.5 68.5t-129.5 168.5l106 64q25 -80 98.5 -133.5t157.5 -53.5q40 0 74.5 8.5t66 27.5t50 55.5t18.5 86.5q0 56 -30.5 93t-78.5 55.5t-106.5 32t-117.5 31t-107 44t-78.5 79.5t-30.5 130q0 117 89 197t211 80q112 0 193.5 -52.5t127.5 -138.5 +l-102 -59q-68 129 -219 129q-80 0 -133.5 -41t-53.5 -119q0 -37 19 -63.5t51.5 -42t74 -26.5t88 -21.5t92.5 -23t87.5 -34.5t74 -52t51.5 -79.5t19 -114.5q0 -130 -98 -213t-238 -83z" /> + <glyph glyph-name="uni0456" unicode="і" horiz-adv-x="483" +d="M164 1231v182h155v-182h-155zM176 0v999h127v-999h-127z" /> + <glyph glyph-name="uni0457" unicode="ї" horiz-adv-x="475" +d="M0 1192v160h143v-160h-143zM326 1192v160h143v-160h-143zM162 0v999h147v-999h-147z" /> + <glyph glyph-name="uni0458" unicode="ј" horiz-adv-x="479" +d="M158 1239v184h155v-184h-155zM57 -438q-30 0 -66.5 7.5t-58.5 14.5l-22 8l24 89q62 -17 119 -17q65 0 94 43.5t29 104.5v1187h127v-1165q0 -126 -61.5 -199t-184.5 -73z" /> + <glyph glyph-name="uni0459" unicode="љ" horiz-adv-x="1602" +d="M203 -23q-38 0 -127 41l43 99q2 -1 15 -8.5t23 -12.5t25 -9.5t29 -4.5q9 0 16 1.5t20 12.5t22.5 30t21.5 59.5t19.5 95.5t12.5 142.5t5 197.5v378h596v-344h196q67 0 118.5 -7t102 -29t83.5 -58t53 -98t20 -146q0 -144 -109 -230.5t-268 -86.5h-321v897h-348v-279 +q0 -162 -18 -284t-43.5 -188t-61.5 -106.5t-65 -51.5t-60 -11zM924 100h196q234 0 234 217q0 70 -18 118.5t-52 73.5t-73.5 35.5t-90.5 10.5h-196v-455z" /> + <glyph glyph-name="uni045A" unicode="њ" horiz-adv-x="1634" +d="M174 0v999h125v-399h532v399h123v-399h199q69 0 119 -5.5t101.5 -24t83.5 -50.5t52.5 -88t20.5 -133q0 -143 -107.5 -221t-269.5 -78h-322v498h-532v-498h-125zM954 100h199q53 0 91 7.5t72.5 27.5t52 61t17.5 103q0 56 -13 95t-31.5 59.5t-52.5 31.5t-62 13t-74 2h-199 +v-400z" /> + <glyph glyph-name="uni045B" unicode="ћ" horiz-adv-x="1112" +d="M633 1016q85 0 149.5 -31.5t102.5 -86.5t57 -125t19 -152v-621h-127v598q0 57 -9.5 106t-32.5 94.5t-68.5 72t-109.5 26.5q-133 0 -224 -103.5t-91 -246.5v-547h-123v1132h-190v105h190v176h123v-176h322v-105h-322v-309q48 85 140 139t194 54z" /> + <glyph glyph-name="uni045C" unicode="ќ" horiz-adv-x="942" +d="M424 1124l209 289h151l-258 -289h-102zM174 0v999h127v-374h143l220 374h157l-246 -407q49 0 87 -47t65 -115l160 -430h-146l-123 360q-27 82 -65.5 117t-103.5 35h-148v-512h-127z" /> + <glyph glyph-name="uni045D" unicode="ѝ" horiz-adv-x="1128" +d="M502 1133l-226 280h150l209 -280h-133zM512 -23q-90 0 -157 34t-105.5 94t-57 134.5t-18.5 163.5v596h125v-602q0 -59 9.5 -110.5t32.5 -100.5t68 -77.5t109 -28.5q127 0 220 104.5t93 237.5v577h123v-999h-123v180q-29 -71 -117.5 -137t-201.5 -66z" /> + <glyph glyph-name="uni045E" unicode="ў" horiz-adv-x="961" +d="M473 1143q-123 0 -211 72t-88 198h111q0 -73 55.5 -123.5t132.5 -50.5t133 50t56 124h110q0 -123 -87 -196.5t-212 -73.5zM264 -430l162 432l-381 997h139l299 -847l293 847h139l-526 -1429h-125z" /> + <glyph glyph-name="uni045F" unicode="џ" horiz-adv-x="1128" +d="M502 -307v307h-328v999h125v-895h532v895h123v-999h-329v-307h-123z" /> + <glyph glyph-name="uni0462" unicode="Ѣ" horiz-adv-x="1352" +d="M426 0v1112h-350v111h350v190h135v-190h363v-111h-363v-348h252q204 0 321 -99t117 -280q0 -180 -118 -282.5t-320 -102.5h-387zM561 117h252q145 0 226 70.5t81 197.5t-81 194.5t-226 67.5h-252v-530z" /> + <glyph glyph-name="uni0463" unicode="ѣ" horiz-adv-x="979" +d="M176 0v1151h-201v104h201v158h123v-158h213v-104h-213v-496h197q68 0 119.5 -7t102 -29t83.5 -58t53 -98t20 -146q0 -144 -109 -230.5t-269 -86.5h-320zM299 100h197q235 0 235 217q0 70 -18 118.5t-52 73.5t-73.5 35.5t-91.5 10.5h-197v-455z" /> + <glyph glyph-name="uni0464" unicode="Ѥ" horiz-adv-x="1784" +d="M1124 -20q-148 0 -265 51.5t-192.5 143.5t-117.5 212.5t-49 263.5h-148v-651h-133v1413h133v-651h148q7 143 48.5 263.5t116.5 213t192 145t265 52.5q195 0 339.5 -94t221.5 -275l-122 -51q-30 104 -97.5 172t-153 96.5t-190.5 28.5q-119 0 -211.5 -44t-150 -121 +t-88 -174t-35.5 -212h645v-111h-645q5 -119 36 -217t89 -173t151 -117t213 -42q326 0 437 299l125 -51q-77 -181 -222 -275.5t-340 -94.5z" /> + <glyph glyph-name="uni0465" unicode="ѥ" horiz-adv-x="1300" +d="M856 -20q-104 0 -187 42t-134 115t-77.5 166.5t-25.5 200.5h-133v-504h-125v999h125v-393h143q26 180 132 295t280 115q131 0 228.5 -66.5t150.5 -187.5l-119 -53q-26 94 -96 149t-164 55q-58 0 -108 -24t-83 -60t-56.5 -78.5t-34 -80t-9.5 -64.5h416v-94h-416 +q-2 -193 73 -311.5t218 -118.5q93 0 163 56.5t97 148.5l105 -49q-42 -124 -136.5 -191t-226.5 -67z" /> + <glyph glyph-name="uni0466" unicode="Ѧ" horiz-adv-x="1294" +d="M76 0l520 1413h104l519 -1413h-144l-239 680h-123v-680h-131v680h-121l-240 -680h-145zM500 793h297l-148 424z" /> + <glyph glyph-name="uni0467" unicode="ѧ" horiz-adv-x="1016" +d="M76 0l381 999h104l379 -999h-147l-134 414h-88v-414h-127v414h-82l-159 -414h-127zM397 514h230l-117 326z" /> + <glyph glyph-name="uni0468" unicode="Ѩ" horiz-adv-x="1653" +d="M219 0v1413h133v-651h363l239 651h105l518 -1413h-143l-240 680h-123v-680h-131v680h-121l-239 -680h-146l240 651h-322v-651h-133zM858 793h297l-147 424z" /> + <glyph glyph-name="uni0469" unicode="ѩ" horiz-adv-x="1319" +d="M174 0v999h125v-505h266l193 505h106l379 -999h-149l-131 414h-89v-414h-129v414h-79l-160 -414h-129l149 391h-227v-391h-125zM700 514h230l-117 326z" /> + <glyph glyph-name="uni046A" unicode="Ѫ" horiz-adv-x="1554" +d="M74 0l243 582q40 96 121 133t215 37l-401 551v110h1042v-110l-403 -551q139 0 220.5 -38t119.5 -132l239 -582h-159l-211 510q-8 22 -11.5 30.5t-16.5 31.5t-26.5 34.5t-38 22t-53.5 10.5h-114v-639h-133v639h-113q-35 0 -62 -13t-43.5 -37.5t-24 -40t-15.5 -38.5 +l-211 -510h-164zM772 801l371 502h-740z" /> + <glyph glyph-name="uni046B" unicode="ѫ" horiz-adv-x="1249" +d="M1014 430l160 -430h-146l-123 360q-28 81 -74.5 111.5t-140.5 28.5v-500h-131v500q-98 1 -142.5 -28.5t-72.5 -111.5l-123 -360h-145l160 430q15 42 40.5 75.5t78.5 60t124 26.5l-250 305v102h791v-102l-248 -305q102 0 159.5 -47t82.5 -115zM624 593l240 304h-481z" /> + <glyph glyph-name="uni046C" unicode="Ѭ" horiz-adv-x="1876" +d="M219 0v1413h133v-659h643l-401 549v110h1042v-110l-403 -551q135 0 207.5 -37t111.5 -133l240 -582h-139l-211 510q-1 2 -6 15t-7.5 18t-9 18.5t-12 19.5t-14 17t-18 17t-21.5 12.5t-26.5 9t-31.5 2.5h-112v-639h-135v639h-111q-19 0 -35.5 -4.5t-28.5 -9.5t-23.5 -16.5 +l-18.5 -18.5t-15.5 -21.5t-11.5 -20.5t-9.5 -21t-7.5 -17l-208 -510h-142l246 588q23 46 33 59h-365v-647h-133zM1114 801l371 502h-740z" /> + <glyph glyph-name="uni046D" unicode="ѭ" horiz-adv-x="1538" +d="M1303 430l159 -430h-143l-123 360q-34 98 -76.5 126t-142.5 28v-514h-129v514q-101 0 -141.5 -28t-73.5 -126l-123 -360h-145l165 442q11 40 41 76h-272v-518h-125v999h125v-376h442l-223 274v102h791v-102l-234 -285q44 0 79.5 -12.5t58 -29.5t42 -45t28.5 -47t20 -48z +M912 593l241 304h-483z" /> + <glyph glyph-name="uni0472" unicode="Ѳ" horiz-adv-x="1511" +d="M754 -20q-124 0 -227 37.5t-175 104t-122 158.5t-73.5 199.5t-23.5 227.5q0 152 38 281.5t112.5 230t195.5 158t275 57.5q156 0 277.5 -57.5t196 -158t112.5 -230t38 -281.5q0 -121 -23.5 -228t-73.5 -199t-122.5 -158.5t-176 -104t-228.5 -37.5zM262 774h985 +q-8 111 -41 205t-91.5 168.5t-151 117t-209.5 42.5t-209.5 -42.5t-151 -117t-91.5 -168.5t-40 -205zM754 106q99 0 180.5 30.5t138 83.5t96 126.5t59 157t21.5 176.5h-989q2 -94 21.5 -177t59 -156.5t96 -126.5t137.5 -83.5t180 -30.5z" /> + <glyph glyph-name="uni0473" unicode="ѳ" horiz-adv-x="1112" +d="M555 -20q-133 0 -239 69.5t-164 187t-58 259.5q0 141 58 259t164 187.5t239 69.5q134 0 240.5 -69.5t164.5 -187.5t58 -259q0 -217 -130.5 -366.5t-332.5 -149.5zM238 565h632q-6 71 -27 130t-58.5 105.5t-96 72.5t-133.5 26q-145 0 -223.5 -92.5t-93.5 -241.5zM555 92 +q65 0 118 20t88.5 54.5t60.5 83.5t36.5 103.5t13.5 117.5h-636q2 -79 21.5 -145.5t56.5 -120t98.5 -83.5t142.5 -30z" /> + <glyph glyph-name="uni0474" unicode="Ѵ" horiz-adv-x="1272" +d="M494 0l-457 1413h137l381 -1253l307 837q65 180 158.5 281t222.5 135v-131q-47 -23 -87 -53t-64.5 -57t-45.5 -59t-30.5 -51.5t-18.5 -42.5t-10 -24l-371 -995h-122z" /> + <glyph glyph-name="uni0475" unicode="ѵ" horiz-adv-x="958" +d="M365 0l-318 999h137l240 -833l149 416q77 211 167 316t171 101v-135q-21 -6 -30.5 -10t-33 -21t-41 -42.5t-44 -76t-53.5 -120.5l-228 -594h-116z" /> + <glyph glyph-name="uni0478" unicode="Ѹ" horiz-adv-x="2472" +d="M754 -20q-153 0 -273.5 58t-195.5 158.5t-113.5 230.5t-38.5 280q0 119 24 226.5t74 199t122.5 158.5t175 105t225.5 38q124 0 227.5 -38t176 -104.5t122.5 -158.5t74 -199.5t24 -226.5q0 -120 -24 -227t-74 -199t-122.5 -158.5t-176 -104.5t-227.5 -38zM754 106 +q128 0 226.5 49.5t156.5 135t87 190.5t29 226q0 96 -17.5 182t-56.5 163t-96 133.5t-141.5 89t-187.5 32.5q-101 0 -184.5 -32.5t-140 -89t-95.5 -133.5t-56.5 -163.5t-17.5 -181.5q0 -96 17.5 -182.5t56.5 -163.5t95.5 -133.5t140 -89t184.5 -32.5zM1771 -430l168 430 +l-383 999h139l303 -847l291 847h137l-526 -1429h-129z" /> + <glyph glyph-name="uni0479" unicode="ѹ" horiz-adv-x="2036" +d="M555 -20q-134 0 -240 71t-163.5 190t-57.5 261t57.5 260t163.5 188t240 70t241.5 -70t166.5 -188.5t59 -259.5q0 -142 -59 -261t-166.5 -190t-241.5 -71zM1335 -430l168 430l-383 999h139l303 -847l291 847h137l-526 -1429h-129zM557 82q84 0 151 36t107 96.5t61 134 +t21 153.5q0 109 -35 201t-113.5 153.5t-189.5 61.5q-84 0 -150.5 -35.5t-107 -94.5t-61.5 -132.5t-21 -153.5q0 -81 21 -155t61.5 -134t106.5 -95.5t149 -35.5z" /> + <glyph glyph-name="uni0483" unicode="҃" horiz-adv-x="0" +d="M-922 1540v238h692v139h101v-217h-701v-160h-92z" /> + <glyph glyph-name="uni0490" unicode="Ґ" horiz-adv-x="1069" +d="M219 0v1413h649v307h131v-417h-647v-1303h-133z" /> + <glyph glyph-name="uni0491" unicode="ґ" horiz-adv-x="758" +d="M172 0v999h426v308h123v-410h-424v-897h-125z" /> + <glyph glyph-name="uni0492" unicode="Ғ" horiz-adv-x="1122" +d="M1053 1303h-647v-488h291v-110h-291v-705h-134v705h-292v110h292v598h781v-110z" /> + <glyph glyph-name="uni0493" unicode="ғ" horiz-adv-x="758" +d="M174 0v999h549v-102h-424v-897h-125z" /> + <glyph glyph-name="uni0496" unicode="Җ" horiz-adv-x="1919" +d="M1774 168h126v-406h-127v238h-96l-209 586q-18 52 -70 90.5t-122 38.5h-250v-715h-133v715h-250q-73 0 -121.5 -35t-68.5 -94l-211 -586h-158l238 657q17 50 86.5 102t160.5 52l-407 602h164l395 -590h172v590h133v-590h172l393 590h166l-407 -602q90 0 160 -52.5 +t87 -101.5z" /> + <glyph glyph-name="uni0497" unicode="җ" horiz-adv-x="1409" +d="M1291 168h126v-406h-127v238h-82l-123 360q-27 82 -65.5 117t-104.5 35h-147v-512h-127v512h-147q-65 0 -104 -35.5t-66 -116.5l-123 -360h-146l160 430q24 66 63.5 114t88.5 48l-246 407h158l219 -374h143v374h127v-374h143l219 374h158l-246 -407q49 0 88.5 -48 +t63.5 -114z" /> + <glyph glyph-name="uni049A" unicode="Қ" horiz-adv-x="1245" +d="M1100 168h126v-406h-127v238h-95l-211 586q-14 41 -69 85t-122 44h-250v-715h-133v1413h133v-590h172l394 590h165l-407 -602q89 0 159.5 -52.5t88.5 -101.5z" /> + <glyph glyph-name="uni049B" unicode="қ" horiz-adv-x="944" +d="M824 168h126v-406h-127v238h-82l-123 360q-27 82 -65.5 117t-103.5 35h-148v-512h-127v1413h127v-788h143l220 374h157l-246 -407q49 0 87 -47t65 -115z" /> + <glyph glyph-name="uni04A2" unicode="Ң" horiz-adv-x="1446" +d="M1227 168h124v-406h-127v238h-132v653h-738v-653h-135v1413h135v-651h738v651h135v-1245z" /> + <glyph glyph-name="uni04A3" unicode="ң" horiz-adv-x="1128" +d="M954 168h125v-406h-127v238h-123v498h-528v-498h-127v999h127v-399h528v399h125v-831z" /> + <glyph glyph-name="uni04AE" unicode="Ү" horiz-adv-x="1315" +d="M594 0v553l-528 860h155l436 -719l439 719h153l-526 -860v-553h-129z" /> + <glyph glyph-name="uni04AF" unicode="ү" horiz-adv-x="942" +d="M408 0v446l-342 553h155l250 -411l252 411h154l-340 -553v-446h-129z" /> + <glyph glyph-name="uni04B0" unicode="Ұ" horiz-adv-x="1319" +d="M723 553v-107h201v-110h-201v-336h-129v336h-387v110h387v107l-528 860h155l436 -719l439 719h153z" /> + <glyph glyph-name="uni04B1" unicode="ұ" horiz-adv-x="965" +d="M537 446v-104h239v-110h-239v-232h-129v232h-349v110h349v104l-342 553h155l250 -411l252 411h154z" /> + <glyph glyph-name="uni04B2" unicode="Ҳ" horiz-adv-x="1239" +d="M1045 168h118v-406h-127v238h-39l-381 588l-372 -588h-160l465 707l-463 706h160l372 -598l377 598h158l-461 -706z" /> + <glyph glyph-name="uni04B3" unicode="ҳ" horiz-adv-x="895" +d="M730 168h119v-406h-127v238h-32l-241 389l-240 -389h-154l334 504l-334 495h154l240 -383l241 383h150l-330 -495z" /> + <glyph glyph-name="uni04B6" unicode="Ҷ" horiz-adv-x="1319" +d="M1100 168h120v-406h-127v238h-128v551q-120 -139 -347 -139q-125 0 -219 46t-150.5 129.5t-84 193.5t-27.5 245v387h135v-401q0 -107 17 -189t55.5 -148t107.5 -101t166 -35q105 0 198.5 42t148.5 111v721h135v-1245z" /> + <glyph glyph-name="uni04B7" unicode="ҷ" horiz-adv-x="1067" +d="M893 168h118v-406h-127v238h-118v446q-13 -31 -41 -64.5t-68.5 -65t-96 -52t-114.5 -20.5q-90 0 -157 33.5t-106 93.5t-58 135t-19 164v329h127v-335q0 -47 5.5 -89t20.5 -85t39 -74t63.5 -50.5t91.5 -19.5q127 0 220 104.5t93 237.5v311h127v-831z" /> + <glyph glyph-name="uni04BA" unicode="Һ" horiz-adv-x="1319" +d="M354 1413v-551q120 139 347 139q125 0 219 -46t150.5 -129.5t84 -193.5t27.5 -245v-387h-135v401q0 107 -17 189t-55.5 148t-107.5 101t-166 35q-105 0 -198.5 -42t-148.5 -111v-721h-135v1413h135z" /> + <glyph glyph-name="uni04BB" unicode="һ" horiz-adv-x="1112" +d="M176 0v1413h123v-590q48 85 140 139t194 54q85 0 149.5 -31.5t102.5 -86.5t57 -125t19 -152v-621h-127v598q0 57 -9.5 106t-32.5 94.5t-68.5 72t-109.5 26.5q-133 0 -224 -103.5t-91 -246.5v-547h-123z" /> + <glyph glyph-name="uni04C0" unicode="Ӏ" horiz-adv-x="573" +d="M219 0v1413h135v-1413h-135z" /> + <glyph glyph-name="uni04CF" unicode="ӏ" horiz-adv-x="475" +d="M174 0v1413h127v-1413h-127z" /> + <glyph glyph-name="uni04D8" unicode="Ә" horiz-adv-x="1511" +d="M754 -20q-124 0 -227 37.5t-175 104t-122 158.5t-73.5 199.5t-23.5 227.5q0 11 1 33.5t1 33.5h1112q-8 111 -41 205t-91.5 168.5t-151 117t-209.5 42.5q-266 0 -400 -213l-110 67q78 129 206 201t304 72q156 0 277.5 -57.5t196 -158t112.5 -230t38 -281.5 +q0 -121 -23.5 -228t-73.5 -199t-122.5 -158.5t-176 -104t-228.5 -37.5zM754 106q99 0 180.5 30.5t138 83.5t96 126.5t59 157t21.5 176.5h-989q2 -94 21.5 -177t59 -156.5t96 -126.5t137.5 -83.5t180 -30.5z" /> + <glyph glyph-name="uni04D9" unicode="ә" horiz-adv-x="1030" +d="M493 1011q107 0 192 -40.5t137.5 -110.5t80 -160.5t27.5 -194.5q0 -82 -16.5 -157.5t-51.5 -141.5t-84 -114.5t-118 -76.5t-150 -28q-92 0 -165 28.5t-118.5 75t-76 110.5t-42.5 130.5t-12 139.5q0 35 4 71h699q5 151 -76 256t-228 105q-96 0 -164.5 -23.5t-125.5 -83.5 +l-86 66q81 79 168.5 114t205.5 35zM799 434h-584q0 -66 15 -124t47.5 -109t92 -81t140.5 -30q70 0 125 28t90 76.5t53.5 109.5t20.5 130z" /> + <glyph glyph-name="uni04E2" unicode="Ӣ" horiz-adv-x="1409" +d="M441 1606v121h536v-121h-536zM1190 0h-137v1311l-607 -1311h-227v1413h135v-1309l613 1309h223v-1413z" /> + <glyph glyph-name="uni04E3" unicode="ӣ" +d="M289 1192v121h536v-121h-536zM487 -23q-88 0 -154.5 33.5t-105.5 93t-58 135.5t-19 167v593h124v-604q0 -45 5.5 -86.5t20.5 -84.5t38.5 -73.5t63 -50.5t90.5 -20q127 0 221 104.5t94 235.5v579h123v-999h-123v182q-29 -75 -117 -140t-203 -65z" /> + <glyph glyph-name="uni04E8" unicode="Ө" horiz-adv-x="1511" +d="M754 -20q-124 0 -227 37.5t-175 104t-122 158.5t-73.5 199.5t-23.5 227.5q0 152 38 281.5t112.5 230t195.5 158t275 57.5q156 0 277.5 -57.5t196 -158t112.5 -230t38 -281.5q0 -121 -23.5 -228t-73.5 -199t-122.5 -158.5t-176 -104t-228.5 -37.5zM262 774h985 +q-8 111 -41 205t-91.5 168.5t-151 117t-209.5 42.5t-209.5 -42.5t-151 -117t-91.5 -168.5t-40 -205zM754 106q99 0 180.5 30.5t138 83.5t96 126.5t59 157t21.5 176.5h-989q2 -94 21.5 -177t59 -156.5t96 -126.5t137.5 -83.5t180 -30.5z" /> + <glyph glyph-name="uni04E9" unicode="ө" horiz-adv-x="1112" +d="M555 -20q-133 0 -239 69.5t-164 187t-58 259.5q0 141 58 259t164 187.5t239 69.5q134 0 240.5 -69.5t164.5 -187.5t58 -259q0 -217 -130.5 -366.5t-332.5 -149.5zM238 565h632q-6 71 -27 130t-58.5 105.5t-96 72.5t-133.5 26q-145 0 -223.5 -92.5t-93.5 -241.5zM555 92 +q65 0 118 20t88.5 54.5t60.5 83.5t36.5 103.5t13.5 117.5h-636q2 -79 21.5 -145.5t56.5 -120t98.5 -83.5t142.5 -30z" /> + <glyph glyph-name="uni04EE" unicode="Ӯ" horiz-adv-x="1116" +d="M293 1606v121h536v-121h-536zM272 0l199 457l-395 956h149l316 -817l346 817h153l-622 -1413h-146z" /> + <glyph glyph-name="uni04EF" unicode="ӯ" horiz-adv-x="961" +d="M215 1192v121h536v-121h-536zM264 -430l162 432l-381 997h139l299 -847l293 847h139l-526 -1429h-125z" /> + <glyph glyph-name="Wgrave" unicode="Ẁ" horiz-adv-x="1966" +d="M913 1509l-245 287h176l215 -287h-146zM477 0l-391 1413h137l344 -1263l361 1181h110l363 -1181l342 1263h137l-391 -1413h-156l-346 1112l-354 -1112h-156z" /> + <glyph glyph-name="wgrave" unicode="ẁ" horiz-adv-x="1407" +d="M633 1126l-245 287h176l215 -287h-146zM332 0l-273 999h134l213 -845l239 845h119l240 -843l210 843h134l-273 -999h-127l-241 850l-248 -850h-127z" /> + <glyph glyph-name="Wacute" unicode="Ẃ" horiz-adv-x="1966" +d="M897 1507l215 289h176l-268 -289h-123zM477 0l-391 1413h137l344 -1263l361 1181h110l363 -1181l342 1263h137l-391 -1413h-156l-346 1112l-354 -1112h-156z" /> + <glyph glyph-name="wacute" unicode="ẃ" horiz-adv-x="1407" +d="M617 1124l215 289h176l-268 -289h-123zM332 0l-273 999h134l213 -845l239 845h119l240 -843l210 843h134l-273 -999h-127l-241 850l-248 -850h-127z" /> + <glyph glyph-name="Wdieresis" unicode="Ẅ" horiz-adv-x="1966" +d="M739 1612v184h160v-184h-160zM1071 1612v184h160v-184h-160zM477 0l-391 1413h137l344 -1263l361 1181h110l363 -1181l342 1263h137l-391 -1413h-156l-346 1112l-354 -1112h-156z" /> + <glyph glyph-name="wdieresis" unicode="ẅ" horiz-adv-x="1407" +d="M459 1229v184h160v-184h-160zM791 1229v184h160v-184h-160zM332 0l-273 999h134l213 -845l239 845h119l240 -843l210 843h134l-273 -999h-127l-241 850l-248 -850h-127z" /> + <glyph glyph-name="uni1EA4" unicode="Ấ" horiz-adv-x="1296" +d="M559 1952l215 289h176l-268 -289h-123zM317 1512l332 356l332 -356h-154l-178 196l-176 -196h-156zM76 0l522 1413h104l519 -1413h-144l-108 307h-639l-107 -307h-147zM375 434h549l-273 780z" /> + <glyph glyph-name="uni1EA5" unicode="ấ" horiz-adv-x="1016" +d="M412 1538l215 289h176l-268 -289h-123zM170 1098l332 356l332 -356h-154l-178 196l-176 -196h-156zM397 -20q-140 0 -227.5 78t-87.5 212q0 295 450 295h222q0 346 -258 346q-175 0 -287 -153l-90 71q137 191 366 191q184 0 282.5 -109.5t98.5 -296.5v-614h-108v205 +q-50 -112 -147 -168.5t-214 -56.5zM410 86q79 0 146 35.5t109 91.5t65.5 122.5t23.5 131.5h-207q-171 0 -252.5 -45t-81.5 -154q0 -94 54.5 -138t142.5 -44z" /> + <glyph glyph-name="uni1EA6" unicode="Ầ" horiz-adv-x="1296" +d="M575 1954l-245 287h176l215 -287h-146zM317 1512l332 356l332 -356h-154l-178 196l-176 -196h-156zM76 0l522 1413h104l519 -1413h-144l-108 307h-639l-107 -307h-147zM375 434h549l-273 780z" /> + <glyph glyph-name="uni1EA7" unicode="ầ" horiz-adv-x="1016" +d="M428 1540l-245 287h176l215 -287h-146zM170 1098l332 356l332 -356h-154l-178 196l-176 -196h-156zM397 -20q-140 0 -227.5 78t-87.5 212q0 295 450 295h222q0 346 -258 346q-175 0 -287 -153l-90 71q137 191 366 191q184 0 282.5 -109.5t98.5 -296.5v-614h-108v205 +q-50 -112 -147 -168.5t-214 -56.5zM410 86q79 0 146 35.5t109 91.5t65.5 122.5t23.5 131.5h-207q-171 0 -252.5 -45t-81.5 -154q0 -94 54.5 -138t142.5 -44z" /> + <glyph glyph-name="uni1EAA" unicode="Ẫ" horiz-adv-x="1296" +d="M768 1985q-36 0 -68 16.5t-54.5 40t-43 47t-43 40t-45.5 16.5q-70 0 -70 -137h-90q0 108 41 174.5t117 66.5q41 0 75 -17t56.5 -41t42 -48t41 -41t43.5 -17q74 0 74 158h96q0 -125 -44.5 -191.5t-127.5 -66.5zM317 1512l332 356l332 -356h-154l-178 196l-176 -196h-156z +M76 0l522 1413h104l519 -1413h-144l-108 307h-639l-107 -307h-147zM375 434h549l-273 780z" /> + <glyph glyph-name="uni1EAB" unicode="ẫ" horiz-adv-x="1016" +d="M621 1571q-36 0 -68 16.5t-54.5 40t-43 47t-43 40t-45.5 16.5q-70 0 -70 -137h-90q0 108 41 174.5t117 66.5q41 0 75 -17t56.5 -41t42 -48t41 -41t43.5 -17q74 0 74 158h96q0 -125 -44.5 -191.5t-127.5 -66.5zM170 1098l332 356l332 -356h-154l-178 196l-176 -196h-156z +M397 -20q-140 0 -227.5 78t-87.5 212q0 295 450 295h222q0 346 -258 346q-175 0 -287 -153l-90 71q137 191 366 191q184 0 282.5 -109.5t98.5 -296.5v-614h-108v205q-50 -112 -147 -168.5t-214 -56.5zM410 86q79 0 146 35.5t109 91.5t65.5 122.5t23.5 131.5h-207 +q-171 0 -252.5 -45t-81.5 -154q0 -94 54.5 -138t142.5 -44z" /> + <glyph glyph-name="uni1EAE" unicode="Ắ" horiz-adv-x="1296" +d="M559 1952l215 289h176l-268 -289h-123zM649 1557q-132 0 -218.5 72t-86.5 198h127q0 -71 51.5 -117.5t126.5 -46.5q74 0 125 46t51 118h127q0 -127 -85.5 -198.5t-217.5 -71.5zM76 0l522 1413h104l519 -1413h-144l-108 307h-639l-107 -307h-147zM375 434h549l-273 780z +" /> + <glyph glyph-name="uni1EAF" unicode="ắ" horiz-adv-x="1016" +d="M412 1538l215 289h176l-268 -289h-123zM502 1143q-132 0 -218.5 72t-86.5 198h127q0 -71 51.5 -117.5t126.5 -46.5q74 0 125 46t51 118h127q0 -127 -85.5 -198.5t-217.5 -71.5zM397 -20q-140 0 -227.5 78t-87.5 212q0 295 450 295h222q0 346 -258 346q-175 0 -287 -153 +l-90 71q137 191 366 191q184 0 282.5 -109.5t98.5 -296.5v-614h-108v205q-50 -112 -147 -168.5t-214 -56.5zM410 86q79 0 146 35.5t109 91.5t65.5 122.5t23.5 131.5h-207q-171 0 -252.5 -45t-81.5 -154q0 -94 54.5 -138t142.5 -44z" /> + <glyph glyph-name="uni1EB0" unicode="Ằ" horiz-adv-x="1296" +d="M575 1954l-245 287h176l215 -287h-146zM649 1557q-132 0 -218.5 72t-86.5 198h127q0 -71 51.5 -117.5t126.5 -46.5q74 0 125 46t51 118h127q0 -127 -85.5 -198.5t-217.5 -71.5zM76 0l522 1413h104l519 -1413h-144l-108 307h-639l-107 -307h-147zM375 434h549l-273 780z +" /> + <glyph glyph-name="uni1EB1" unicode="ằ" horiz-adv-x="1016" +d="M428 1540l-245 287h176l215 -287h-146zM502 1143q-132 0 -218.5 72t-86.5 198h127q0 -71 51.5 -117.5t126.5 -46.5q74 0 125 46t51 118h127q0 -127 -85.5 -198.5t-217.5 -71.5zM397 -20q-140 0 -227.5 78t-87.5 212q0 295 450 295h222q0 346 -258 346q-175 0 -287 -153 +l-90 71q137 191 366 191q184 0 282.5 -109.5t98.5 -296.5v-614h-108v205q-50 -112 -147 -168.5t-214 -56.5zM410 86q79 0 146 35.5t109 91.5t65.5 122.5t23.5 131.5h-207q-171 0 -252.5 -45t-81.5 -154q0 -94 54.5 -138t142.5 -44z" /> + <glyph glyph-name="uni1EB4" unicode="Ẵ" horiz-adv-x="1296" +d="M768 1985q-36 0 -68 16.5t-54.5 40t-43 47t-43 40t-45.5 16.5q-70 0 -70 -137h-90q0 108 41 174.5t117 66.5q41 0 75 -17t56.5 -41t42 -48t41 -41t43.5 -17q74 0 74 158h96q0 -125 -44.5 -191.5t-127.5 -66.5zM649 1557q-132 0 -218.5 72t-86.5 198h127 +q0 -71 51.5 -117.5t126.5 -46.5q74 0 125 46t51 118h127q0 -127 -85.5 -198.5t-217.5 -71.5zM76 0l522 1413h104l519 -1413h-144l-108 307h-639l-107 -307h-147zM375 434h549l-273 780z" /> + <glyph glyph-name="uni1EB5" unicode="ẵ" horiz-adv-x="1016" +d="M621 1571q-36 0 -68 16.5t-54.5 40t-43 47t-43 40t-45.5 16.5q-70 0 -70 -137h-90q0 108 41 174.5t117 66.5q41 0 75 -17t56.5 -41t42 -48t41 -41t43.5 -17q74 0 74 158h96q0 -125 -44.5 -191.5t-127.5 -66.5zM502 1143q-132 0 -218.5 72t-86.5 198h127 +q0 -71 51.5 -117.5t126.5 -46.5q74 0 125 46t51 118h127q0 -127 -85.5 -198.5t-217.5 -71.5zM397 -20q-140 0 -227.5 78t-87.5 212q0 295 450 295h222q0 346 -258 346q-175 0 -287 -153l-90 71q137 191 366 191q184 0 282.5 -109.5t98.5 -296.5v-614h-108v205 +q-50 -112 -147 -168.5t-214 -56.5zM410 86q79 0 146 35.5t109 91.5t65.5 122.5t23.5 131.5h-207q-171 0 -252.5 -45t-81.5 -154q0 -94 54.5 -138t142.5 -44z" /> + <glyph glyph-name="uni1EBC" unicode="Ẽ" horiz-adv-x="1237" +d="M797 1571q-36 0 -68 16.5t-54.5 40t-43 47t-43 40t-45.5 16.5q-70 0 -70 -137h-90q0 108 41 174.5t117 66.5q41 0 75 -17t56.5 -41t42 -48t41 -41t43.5 -17q74 0 74 158h96q0 -125 -44.5 -191.5t-127.5 -66.5zM219 0v1413h909v-113h-774v-538h662v-109h-662v-532h774 +v-121h-909z" /> + <glyph glyph-name="uni1EBD" unicode="ẽ" horiz-adv-x="1030" +d="M627 1157q-36 0 -68 16.5t-54.5 40t-43 47t-43 40t-45.5 16.5q-70 0 -70 -137h-90q0 108 41 174.5t117 66.5q41 0 75 -17t56.5 -41t42 -48t41 -41t43.5 -17q74 0 74 158h96q0 -125 -44.5 -191.5t-127.5 -66.5zM537 -12q-107 0 -192 40.5t-137.5 110.5t-80 160.5 +t-27.5 194.5q0 82 16.5 157.5t51.5 141.5t84 114.5t118 76.5t150 28q92 0 165 -28.5t118.5 -75t76 -110.5t42.5 -130.5t12 -139.5q0 -35 -4 -71h-699q-5 -151 76 -256t228 -105q96 0 164.5 23.5t125.5 83.5l86 -66q-81 -79 -168.5 -114t-205.5 -35zM231 565h584 +q0 66 -15 124t-47.5 109t-92 81t-140.5 30q-70 0 -125 -28t-90 -76.5t-53.5 -109.5t-20.5 -130z" /> + <glyph glyph-name="uni1EBE" unicode="Ế" horiz-adv-x="1237" +d="M588 1952l215 289h176l-268 -289h-123zM346 1512l332 356l332 -356h-154l-178 196l-176 -196h-156zM219 0v1413h909v-113h-774v-538h662v-109h-662v-532h774v-121h-909z" /> + <glyph glyph-name="uni1EBF" unicode="ế" horiz-adv-x="1030" +d="M418 1538l215 289h176l-268 -289h-123zM176 1098l332 356l332 -356h-154l-178 196l-176 -196h-156zM537 -12q-107 0 -192 40.5t-137.5 110.5t-80 160.5t-27.5 194.5q0 82 16.5 157.5t51.5 141.5t84 114.5t118 76.5t150 28q92 0 165 -28.5t118.5 -75t76 -110.5 +t42.5 -130.5t12 -139.5q0 -35 -4 -71h-699q-5 -151 76 -256t228 -105q96 0 164.5 23.5t125.5 83.5l86 -66q-81 -79 -168.5 -114t-205.5 -35zM231 565h584q0 66 -15 124t-47.5 109t-92 81t-140.5 30q-70 0 -125 -28t-90 -76.5t-53.5 -109.5t-20.5 -130z" /> + <glyph glyph-name="uni1EC0" unicode="Ề" horiz-adv-x="1237" +d="M604 1954l-245 287h176l215 -287h-146zM346 1512l332 356l332 -356h-154l-178 196l-176 -196h-156zM219 0v1413h909v-113h-774v-538h662v-109h-662v-532h774v-121h-909z" /> + <glyph glyph-name="uni1EC1" unicode="ề" horiz-adv-x="1030" +d="M434 1540l-245 287h176l215 -287h-146zM176 1098l332 356l332 -356h-154l-178 196l-176 -196h-156zM537 -12q-107 0 -192 40.5t-137.5 110.5t-80 160.5t-27.5 194.5q0 82 16.5 157.5t51.5 141.5t84 114.5t118 76.5t150 28q92 0 165 -28.5t118.5 -75t76 -110.5 +t42.5 -130.5t12 -139.5q0 -35 -4 -71h-699q-5 -151 76 -256t228 -105q96 0 164.5 23.5t125.5 83.5l86 -66q-81 -79 -168.5 -114t-205.5 -35zM231 565h584q0 66 -15 124t-47.5 109t-92 81t-140.5 30q-70 0 -125 -28t-90 -76.5t-53.5 -109.5t-20.5 -130z" /> + <glyph glyph-name="uni1EC4" unicode="Ễ" horiz-adv-x="1237" +d="M797 1985q-36 0 -68 16.5t-54.5 40t-43 47t-43 40t-45.5 16.5q-70 0 -70 -137h-90q0 108 41 174.5t117 66.5q41 0 75 -17t56.5 -41t42 -48t41 -41t43.5 -17q74 0 74 158h96q0 -125 -44.5 -191.5t-127.5 -66.5zM346 1512l332 356l332 -356h-154l-178 196l-176 -196h-156z +M219 0v1413h909v-113h-774v-538h662v-109h-662v-532h774v-121h-909z" /> + <glyph glyph-name="uni1EC5" unicode="ễ" horiz-adv-x="1030" +d="M627 1571q-36 0 -68 16.5t-54.5 40t-43 47t-43 40t-45.5 16.5q-70 0 -70 -137h-90q0 108 41 174.5t117 66.5q41 0 75 -17t56.5 -41t42 -48t41 -41t43.5 -17q74 0 74 158h96q0 -125 -44.5 -191.5t-127.5 -66.5zM176 1098l332 356l332 -356h-154l-178 196l-176 -196h-156z +M537 -12q-107 0 -192 40.5t-137.5 110.5t-80 160.5t-27.5 194.5q0 82 16.5 157.5t51.5 141.5t84 114.5t118 76.5t150 28q92 0 165 -28.5t118.5 -75t76 -110.5t42.5 -130.5t12 -139.5q0 -35 -4 -71h-699q-5 -151 76 -256t228 -105q96 0 164.5 23.5t125.5 83.5l86 -66 +q-81 -79 -168.5 -114t-205.5 -35zM231 565h584q0 66 -15 124t-47.5 109t-92 81t-140.5 30q-70 0 -125 -28t-90 -76.5t-53.5 -109.5t-20.5 -130z" /> + <glyph glyph-name="uni1ED0" unicode="Ố" horiz-adv-x="1511" +d="M664 1952l215 289h176l-268 -289h-123zM422 1512l332 356l332 -356h-154l-178 196l-176 -196h-156zM754 -20q-153 0 -273.5 58t-195.5 158.5t-113.5 230.5t-38.5 280q0 119 24 226.5t74 199t122.5 158.5t175 105t225.5 38q124 0 227.5 -38t176 -104.5t122.5 -158.5 +t74 -199.5t24 -226.5q0 -120 -24 -227t-74 -199t-122.5 -158.5t-176 -104.5t-227.5 -38zM754 106q128 0 226.5 49.5t156.5 135t87 190.5t29 226q0 96 -17.5 182t-56.5 163t-96 133.5t-141.5 89t-187.5 32.5q-101 0 -184.5 -32.5t-140 -89t-95.5 -133.5t-56.5 -163.5 +t-17.5 -181.5q0 -96 17.5 -182.5t56.5 -163.5t95.5 -133.5t140 -89t184.5 -32.5z" /> + <glyph glyph-name="uni1ED1" unicode="ố" horiz-adv-x="1116" +d="M467 1538l215 289h176l-268 -289h-123zM225 1098l332 356l332 -356h-154l-178 196l-176 -196h-156zM555 -20q-134 0 -240 71t-163.5 190t-57.5 261t57.5 260t163.5 188t240 70t241.5 -70t166.5 -188.5t59 -259.5q0 -142 -59 -261t-166.5 -190t-241.5 -71zM557 82 +q84 0 151 36t107 96.5t61 134t21 153.5q0 109 -35 201t-113.5 153.5t-189.5 61.5q-84 0 -150.5 -35.5t-107 -94.5t-61.5 -132.5t-21 -153.5q0 -81 21 -155t61.5 -134t106.5 -95.5t149 -35.5z" /> + <glyph glyph-name="uni1ED2" unicode="Ồ" horiz-adv-x="1511" +d="M680 1954l-245 287h176l215 -287h-146zM422 1512l332 356l332 -356h-154l-178 196l-176 -196h-156zM754 -20q-153 0 -273.5 58t-195.5 158.5t-113.5 230.5t-38.5 280q0 119 24 226.5t74 199t122.5 158.5t175 105t225.5 38q124 0 227.5 -38t176 -104.5t122.5 -158.5 +t74 -199.5t24 -226.5q0 -120 -24 -227t-74 -199t-122.5 -158.5t-176 -104.5t-227.5 -38zM754 106q128 0 226.5 49.5t156.5 135t87 190.5t29 226q0 96 -17.5 182t-56.5 163t-96 133.5t-141.5 89t-187.5 32.5q-101 0 -184.5 -32.5t-140 -89t-95.5 -133.5t-56.5 -163.5 +t-17.5 -181.5q0 -96 17.5 -182.5t56.5 -163.5t95.5 -133.5t140 -89t184.5 -32.5z" /> + <glyph glyph-name="uni1ED3" unicode="ồ" horiz-adv-x="1116" +d="M483 1540l-245 287h176l215 -287h-146zM225 1098l332 356l332 -356h-154l-178 196l-176 -196h-156zM555 -20q-134 0 -240 71t-163.5 190t-57.5 261t57.5 260t163.5 188t240 70t241.5 -70t166.5 -188.5t59 -259.5q0 -142 -59 -261t-166.5 -190t-241.5 -71zM557 82 +q84 0 151 36t107 96.5t61 134t21 153.5q0 109 -35 201t-113.5 153.5t-189.5 61.5q-84 0 -150.5 -35.5t-107 -94.5t-61.5 -132.5t-21 -153.5q0 -81 21 -155t61.5 -134t106.5 -95.5t149 -35.5z" /> + <glyph glyph-name="uni1ED6" unicode="Ỗ" horiz-adv-x="1511" +d="M873 1985q-36 0 -68 16.5t-54.5 40t-43 47t-43 40t-45.5 16.5q-70 0 -70 -137h-90q0 108 41 174.5t117 66.5q41 0 75 -17t56.5 -41t42 -48t41 -41t43.5 -17q74 0 74 158h96q0 -125 -44.5 -191.5t-127.5 -66.5zM422 1512l332 356l332 -356h-154l-178 196l-176 -196h-156z +M754 -20q-153 0 -273.5 58t-195.5 158.5t-113.5 230.5t-38.5 280q0 119 24 226.5t74 199t122.5 158.5t175 105t225.5 38q124 0 227.5 -38t176 -104.5t122.5 -158.5t74 -199.5t24 -226.5q0 -120 -24 -227t-74 -199t-122.5 -158.5t-176 -104.5t-227.5 -38zM754 106 +q128 0 226.5 49.5t156.5 135t87 190.5t29 226q0 96 -17.5 182t-56.5 163t-96 133.5t-141.5 89t-187.5 32.5q-101 0 -184.5 -32.5t-140 -89t-95.5 -133.5t-56.5 -163.5t-17.5 -181.5q0 -96 17.5 -182.5t56.5 -163.5t95.5 -133.5t140 -89t184.5 -32.5z" /> + <glyph glyph-name="uni1ED7" unicode="ỗ" horiz-adv-x="1116" +d="M676 1571q-36 0 -68 16.5t-54.5 40t-43 47t-43 40t-45.5 16.5q-70 0 -70 -137h-90q0 108 41 174.5t117 66.5q41 0 75 -17t56.5 -41t42 -48t41 -41t43.5 -17q74 0 74 158h96q0 -125 -44.5 -191.5t-127.5 -66.5zM225 1098l332 356l332 -356h-154l-178 196l-176 -196h-156z +M555 -20q-134 0 -240 71t-163.5 190t-57.5 261t57.5 260t163.5 188t240 70t241.5 -70t166.5 -188.5t59 -259.5q0 -142 -59 -261t-166.5 -190t-241.5 -71zM557 82q84 0 151 36t107 96.5t61 134t21 153.5q0 109 -35 201t-113.5 153.5t-189.5 61.5q-84 0 -150.5 -35.5 +t-107 -94.5t-61.5 -132.5t-21 -153.5q0 -81 21 -155t61.5 -134t106.5 -95.5t149 -35.5z" /> + <glyph glyph-name="Ygrave" unicode="Ỳ" horiz-adv-x="1315" +d="M583 1540l-245 287h176l215 -287h-146zM594 0v553l-528 860h155l436 -719l439 719h153l-526 -860v-553h-129z" /> + <glyph glyph-name="ygrave" unicode="ỳ" horiz-adv-x="961" +d="M401 1126l-245 287h176l215 -287h-146zM260 -430l168 430l-383 999h139l303 -847l291 847h137l-526 -1429h-129z" /> + <glyph glyph-name="uni1EF8" unicode="Ỹ" horiz-adv-x="1315" +d="M776 1571q-36 0 -68 16.5t-54.5 40t-43 47t-43 40t-45.5 16.5q-70 0 -70 -137h-90q0 108 41 174.5t117 66.5q41 0 75 -17t56.5 -41t42 -48t41 -41t43.5 -17q74 0 74 158h96q0 -125 -44.5 -191.5t-127.5 -66.5zM594 0v553l-528 860h155l436 -719l439 719h153l-526 -860 +v-553h-129z" /> + <glyph glyph-name="uni1EF9" unicode="ỹ" horiz-adv-x="961" +d="M594 1157q-36 0 -68 16.5t-54.5 40t-43 47t-43 40t-45.5 16.5q-70 0 -70 -137h-90q0 108 41 174.5t117 66.5q41 0 75 -17t56.5 -41t42 -48t41 -41t43.5 -17q74 0 74 158h96q0 -125 -44.5 -191.5t-127.5 -66.5zM260 -430l168 430l-383 999h139l303 -847l291 847h137 +l-526 -1429h-129z" /> + <glyph glyph-name="endash" unicode="–" horiz-adv-x="1012" +d="M166 596v96h680v-96h-680z" /> + <glyph glyph-name="emdash" unicode="—" horiz-adv-x="2048" +d="M0 596v96h2048v-96h-2048z" /> + <glyph glyph-name="uni2015" unicode="―" horiz-adv-x="1503" +d="M166 596v96h1171v-96h-1171z" /> + <glyph glyph-name="quoteleft" unicode="‘" horiz-adv-x="555" +d="M326 944l-213 469h176l114 -469h-77z" /> + <glyph glyph-name="quoteright" unicode="’" horiz-adv-x="555" +d="M152 944l116 469h174l-215 -469h-75z" /> + <glyph glyph-name="quotesinglbase" unicode="‚" horiz-adv-x="563" +d="M150 -225l118 489h183l-215 -489h-86z" /> + <glyph glyph-name="quotedblleft" unicode="“" horiz-adv-x="844" +d="M326 944l-213 469h176l114 -469h-77zM616 944l-215 469h174l117 -469h-76z" /> + <glyph glyph-name="quotedblright" unicode="”" horiz-adv-x="844" +d="M152 944l116 469h174l-215 -469h-75zM440 944l119 469h172l-213 -469h-78z" /> + <glyph glyph-name="quotedblbase" unicode="„" horiz-adv-x="870" +d="M150 -225l118 489h183l-215 -489h-86zM457 -225l118 489h183l-215 -489h-86z" /> + <glyph glyph-name="dagger" unicode="†" horiz-adv-x="813" +d="M340 -205v1059h-221v131h221v428h133v-428h221v-131h-221v-1059h-133z" /> + <glyph glyph-name="daggerdbl" unicode="‡" horiz-adv-x="874" +d="M371 -205v426h-221v135h221v498h-221v131h221v428h133v-428h221v-131h-221v-498h221v-135h-221v-426h-133z" /> + <glyph glyph-name="bullet" unicode="•" horiz-adv-x="840" +d="M420 244q-98 0 -168 69.5t-70 167.5t70 168t168 70t167.5 -70t69.5 -168t-69.5 -167.5t-167.5 -69.5z" /> + <glyph glyph-name="uni2023" unicode="‣" horiz-adv-x="768" +d="M244 260v436l391 -217z" /> + <glyph glyph-name="twodotenleader" unicode="‥" horiz-adv-x="1079" +d="M240 0v176h186v-176h-186zM653 0v176h187v-176h-187z" /> + <glyph glyph-name="ellipsis" unicode="…" horiz-adv-x="1493" +d="M240 0v176h186v-176h-186zM653 0v176h187v-176h-187zM1067 0v176h186v-176h-186z" /> + <glyph glyph-name="perthousand" unicode="‰" horiz-adv-x="2167" +d="M383 813q-65 0 -114 29.5t-75 77.5t-38.5 99t-12.5 103q0 42 7 84t24.5 84t43.5 74t67 52t92 20q78 0 134 -47.5t80.5 -116.5t24.5 -150q0 -79 -24 -147.5t-78.5 -115t-130.5 -46.5zM358 8l744 1387h112l-743 -1387h-113zM381 895q49 0 82 37.5t46 87t13 104.5 +q0 56 -13.5 105.5t-47.5 86t-84 36.5q-38 0 -67.5 -21t-46 -55t-24.5 -73t-8 -81q0 -56 13.5 -105t49 -85.5t87.5 -36.5zM1210 6q-65 0 -113.5 29t-74.5 76t-38.5 98t-12.5 104q0 42 7 83t24.5 82.5t43 73t66.5 51.5t92 20q114 0 177 -93t63 -219q0 -79 -24 -146.5t-79 -113 +t-131 -45.5zM1790 6q-65 0 -114 29t-75 76t-38.5 98t-12.5 104t12.5 104.5t38 99t73 77t110.5 29.5q78 0 134.5 -47t81.5 -116t25 -149q0 -79 -24.5 -146.5t-79.5 -113t-131 -45.5zM1208 88q37 0 66.5 21.5t45.5 55.5t24 72t8 76q0 56 -13.5 105t-48.5 85t-86 36 +q-50 0 -84 -36t-47.5 -85t-13.5 -105q0 -88 37 -156.5t112 -68.5zM1790 88q48 0 81 37.5t45.5 86t12.5 101.5q0 56 -13.5 105t-47.5 85t-84 36q-72 0 -108 -68.5t-36 -157.5q0 -55 13.5 -103.5t49 -85t87.5 -36.5z" /> + <glyph glyph-name="uni2031" unicode="‱" horiz-adv-x="2728" +d="M383 813q-52 0 -94.5 20t-69 51.5t-44.5 73.5t-25 83t-7 83t7 83t24.5 83t43 74t67 52t92.5 20q76 0 131.5 -47.5t80.5 -117t25 -149.5q0 -79 -24.5 -147.5t-78.5 -115t-128 -46.5zM358 8l744 1385h110l-741 -1385h-113zM381 895q49 0 82 37.5t46 87t13 104.5 +q0 57 -13.5 106.5t-47.5 86.5t-84 37q-51 0 -86 -37t-48.5 -87t-13.5 -106q0 -90 37.5 -159.5t114.5 -69.5zM1210 6q-65 0 -113.5 29t-74.5 76t-38.5 98t-12.5 104q0 42 7 83t24.5 82.5t43 73t66.5 51.5t92 20q76 0 132 -47t81 -116.5t25 -148.5q0 -123 -61 -214t-171 -91z +M1788 6q-65 0 -114 29t-75 76t-38.5 98t-12.5 104t12.5 104.5t38 99t73 77t110.5 29.5q78 0 133.5 -47.5t79.5 -116t24 -148.5q0 -124 -60 -214.5t-171 -90.5zM2355 6q-65 0 -113.5 29t-74.5 76t-38.5 98t-12.5 104q0 42 7 83t24.5 82.5t43 73t66.5 51.5t92 20q59 0 106 -27 +t75 -72t42.5 -99.5t14.5 -113.5q0 -124 -60.5 -214.5t-171.5 -90.5zM1208 86q37 0 66 21.5t45.5 56t24.5 72.5t8 77q0 56 -13.5 105.5t-48.5 86t-86 36.5t-85.5 -36.5t-48 -86t-13.5 -105.5q0 -55 13.5 -104t49 -86t88.5 -37zM1786 86q49 0 82.5 37.5t47 86.5t13.5 103 +q0 56 -13.5 105.5t-48 86t-85.5 36.5t-86 -36.5t-48.5 -86t-13.5 -105.5q0 -55 13.5 -104t49.5 -86t89 -37zM2353 86q37 0 66 21.5t45.5 56t24.5 72.5t8 77q0 56 -13.5 105.5t-48.5 86t-86 36.5t-85.5 -36.5t-48 -86t-13.5 -105.5q0 -55 13.5 -104t49 -86t88.5 -37z" /> + <glyph glyph-name="guilsinglleft" unicode="‹" horiz-adv-x="600" +d="M430 193l-354 319l354 317v-149l-197 -168l197 -170v-149z" /> + <glyph glyph-name="guilsinglright" unicode="›" horiz-adv-x="600" +d="M168 193v149l197 170l-197 168v149l354 -317z" /> + <glyph glyph-name="fraction" unicode="⁄" horiz-adv-x="723" +d="M-82 0l748 1413h139l-746 -1413h-141z" /> + <glyph glyph-name="Euro" unicode="€" horiz-adv-x="1280" +d="M774 -20q-199 0 -324 136t-165 363h-127l49 115h61q-2 37 -2 113q0 79 6 124h-114l49 109h80q27 146 88 255t163 175t234 66q225 0 363 -189l-95 -80q-88 148 -272 148q-138 0 -230 -104.5t-128 -270.5h524l-49 -115h-494q-4 -68 -4 -112q0 -45 4 -123h543l-49 -117h-475 +q17 -79 47.5 -144.5t74.5 -117.5t106 -81.5t136 -29.5q177 0 262 150l86 -98q-131 -172 -348 -172z" /> + <glyph glyph-name="uni20B1" unicode="₱" horiz-adv-x="1343" +d="M1204 1079v-88h-79q-13 -164 -129 -252t-310 -88h-250v-651h-135v991h-145v88h145v334h385q188 0 304.5 -88.5t132.5 -245.5h81zM436 1296v-217h554q-16 104 -95 160.5t-209 56.5h-250zM686 768q136 0 214.5 56t90.5 167h-555v-223h250z" /> + <glyph glyph-name="uni20B3" unicode="₳" horiz-adv-x="1296" +d="M1108 307l113 -307h-144l-108 307h-639l-107 -307h-147l113 307h-99v103h137l81 219h-218v102h256l252 682h104l251 -682h251v-102h-214l80 -219h134v-103h-96zM649 1255l-184 -524h365zM429 629l-76 -219h588l-75 219h-437z" /> + <glyph glyph-name="uni20B4" unicode="₴" horiz-adv-x="1241" +d="M963 391l122 -39q-18 -119 -89.5 -204t-170.5 -124.5t-215 -39.5q-187 0 -307.5 110.5t-120.5 290.5q0 51 12 96t31 78t51 64t61.5 52t73 44t76 37.5t80 35.5t76.5 35h-393v88h531q81 76 81 183q0 100 -71 160.5t-168 60.5q-92 0 -168 -41.5t-119 -124.5l-96 68 +q126 213 383 213q155 0 261.5 -98.5t106.5 -252.5q0 -65 -22.5 -118.5t-55.5 -89t-87 -70.5t-99 -55.5t-111 -50.5t-104 -50h432v-88h-557q-76 -78 -76 -186q0 -136 81 -203.5t218 -67.5q89 0 163.5 30.5t127 97t62.5 159.5z" /> + <glyph glyph-name="uni20B8" unicode="₸" horiz-adv-x="1436" +d="M164 1305v106h1108v-106h-1108zM651 0v1028h-487v105h1108v-105h-488v-1028h-133z" /> + <glyph glyph-name="uni20BD" unicode="₽" horiz-adv-x="1327" +d="M342 0v381h-174v119h174v149h-174v119h174v645h385q202 0 320 -102t118 -281q0 -182 -117 -281.5t-321 -99.5h-252v-149h395v-119h-395v-381h-133zM475 768h252q147 0 228 66.5t81 195.5q0 126 -82 196t-227 70h-252v-528z" /> + <glyph glyph-name="uni2116" unicode="№" horiz-adv-x="2300" +d="M219 0v1413h223l613 -1309v1309h135v-1413h-227l-607 1311v-1311h-137zM1763 290q-174 0 -286 131t-112 319t112 318t286 130q175 0 289 -130t114 -318q0 -122 -50.5 -225t-143.5 -164t-209 -61zM1765 378q73 0 130.5 31t92 83.5t52.5 115.5t18 132q0 70 -18 133 +t-52 114.5t-91.5 82t-129.5 30.5t-129.5 -30.5t-92.5 -82t-53.5 -114.5t-18.5 -133t18 -133.5t53 -115.5t92 -82.5t129 -30.5zM1430 0v113h667v-113h-667z" /> + <glyph glyph-name="trademark" unicode="™" horiz-adv-x="1268" +d="M301 877v485h-145v51h354v-51h-145v-485h-64zM567 877v536h78l143 -362l144 362h74v-536h-64v415l-123 -334h-63l-125 336v-417h-64z" /> + <glyph glyph-name="uni2126" unicode="Ω" horiz-adv-x="1679" +d="M190 0v115h363q-163 84 -260.5 247t-97.5 353q0 133 46 260.5t124 212.5q89 101 216.5 160t258.5 59q129 0 257 -59.5t220 -159.5q76 -84 122 -212t46 -259q0 -194 -92.5 -356.5t-247.5 -241.5h342v-119h-492v121q167 59 266 230t99 403q0 94 -34.5 189.5t-90.5 160.5 +q-73 85 -181 135.5t-214 50.5q-108 0 -214.5 -50.5t-179.5 -135.5q-57 -67 -92 -161t-35 -189q0 -209 98.5 -379.5t264.5 -253.5v-121h-492z" /> + <glyph glyph-name="arrowleft" unicode="←" horiz-adv-x="2177" +d="M987 154l-868 485l868 481l53 -96l-649 -346h1655v-86h-1640l634 -346z" /> + <glyph glyph-name="arrowright" unicode="→" horiz-adv-x="2177" +d="M1190 154l-53 92l635 346h-1641v86h1653l-647 346l53 96l868 -481z" /> + <glyph glyph-name="partialdiff" unicode="∂" horiz-adv-x="1313" +d="M561 -10q-181 0 -292 120t-111 314q0 168 70 306t199.5 219t291.5 81q85 0 157 -35t117 -100q-12 204 -97 310t-228 106q-88 0 -151.5 -38t-104.5 -126l-133 31q48 119 150.5 184t244.5 65q452 0 452 -696q0 -113 -19.5 -218t-63.5 -201t-108 -167t-160.5 -113 +t-213.5 -42zM571 106q122 0 215.5 70.5t140 181.5t46.5 242q0 142 -69.5 226.5t-201.5 84.5q-73 0 -138 -28.5t-113 -77t-83.5 -111t-53 -133t-17.5 -141.5q0 -138 74 -226t200 -88z" /> + <glyph glyph-name="uni2206" unicode="∆" horiz-adv-x="1309" +d="M119 0l536 1413l535 -1413h-1071zM291 117h727l-363 956z" /> + <glyph glyph-name="product" unicode="∏" horiz-adv-x="1333" +d="M274 0v1296h-81v117h948v-117h-82v-1296h-117v1296h-551v-1296h-117z" /> + <glyph glyph-name="summation" unicode="∑" horiz-adv-x="1270" +d="M133 0v53l584 654l-584 653v53h993v-117h-774l535 -587l-535 -592h774v-117h-993z" /> + <glyph glyph-name="minus" unicode="−" horiz-adv-x="1108" +d="M254 580v96h600v-96h-600z" /> + <glyph glyph-name="radical" unicode="√" horiz-adv-x="1219" +d="M514 -158l-250 744h-147v116h229l174 -550l469 1261l111 -41z" /> + <glyph glyph-name="infinity" unicode="∞" horiz-adv-x="1903" +d="M547 354q-166 0 -260 104t-94 277q0 174 94 277.5t260 103.5q113 0 218 -64t187 -178q82 115 186.5 178.5t219.5 63.5q165 0 258.5 -104t93.5 -277t-93.5 -277t-258.5 -104q-115 0 -219.5 63.5t-186.5 178.5q-82 -114 -187 -178t-218 -64zM578 463q89 0 173.5 74.5 +t139.5 197.5q-54 119 -140 196t-173 77q-115 0 -185.5 -73.5t-70.5 -199.5t70.5 -199t185.5 -73zM1327 463q114 0 184 73t70 199t-70 199.5t-184 73.5q-91 0 -176 -75t-139 -198q55 -120 140.5 -196t174.5 -76z" /> + <glyph glyph-name="integral" unicode="∫" horiz-adv-x="1016" +d="M109 -457v117q184 0 268 78t84 254v1171q0 126 74 206.5t182 80.5q101 0 196 -76l-77 -92q-54 51 -119 51q-58 0 -98.5 -43.5t-40.5 -122.5v-1173q0 -220 -124.5 -335.5t-344.5 -115.5z" /> + <glyph glyph-name="approxequal" unicode="≈" horiz-adv-x="1171" +d="M741 733q-43 0 -81.5 19.5t-67 47.5t-56 55.5t-60.5 47t-68 19.5q-56 0 -80.5 -46.5t-22.5 -115.5h-82q0 106 46.5 175t136.5 69q52 0 95 -19.5t72 -47t55 -54.5t56 -46.5t64 -19.5q112 0 112 182h88q0 -126 -55 -196t-152 -70zM743 389q-43 0 -81.5 19.5t-67 48 +l-56.5 56.5t-61.5 47.5t-68.5 19.5q-38 0 -62.5 -24.5t-33 -60t-7.5 -79.5h-82q0 106 46.5 176t136.5 70q52 0 95 -19.5t72 -47t55 -54.5t56 -46.5t64 -19.5q112 0 112 180h88q0 -125 -54 -195.5t-151 -70.5z" /> + <glyph glyph-name="notequal" unicode="≠" horiz-adv-x="1182" +d="M150 0l229 434h-168v129h235l117 217h-352v129h422l266 504h141l-266 -504h189v-129h-256l-117 -217h373v-129h-443l-227 -434h-143z" /> + <glyph glyph-name="lessequal" unicode="≤" horiz-adv-x="1321" +d="M1079 111l-876 491l876 488l60 -103l-723 -385l723 -389zM125 -96v96h1036v-96h-1036z" /> + <glyph glyph-name="greaterequal" unicode="≥" horiz-adv-x="1321" +d="M242 111l-60 102l723 389l-723 385l60 103l876 -488zM160 -96v96h1036v-96h-1036z" /> + <glyph glyph-name="lozenge" unicode="◊" horiz-adv-x="1135" +d="M492 0l-363 717l363 717h151l363 -717l-363 -717h-151zM567 131l295 586l-295 586l-295 -586z" /> + <glyph glyph-name="uniF8FF" unicode="" horiz-adv-x="1815" +d="M907 -61q-158 0 -301 61t-247 165t-165 247t-61 301t61 301t165 247t247 165t301 61t301 -61t247 -165t165 -247t61 -301t-61 -301t-165 -247t-247 -165t-301 -61zM907 10q191 0 353 94t256 256t94 353q0 143 -55.5 273t-149.5 224t-224.5 149.5t-273.5 55.5t-273 -55.5 +t-224 -149.5t-149.5 -224t-55.5 -273t55.5 -273.5t149.5 -224.5t224 -149.5t273 -55.5zM504 410q-15 0 -25 9.5t-10 24.5v537q0 15 10.5 26t24.5 11q15 0 26 -11t11 -26v-537q0 -15 -11 -24.5t-26 -9.5zM907 410q-15 0 -25 9.5t-10 24.5v537q0 15 10 26t25 11t25 -11t10 -26 +v-537q0 -15 -9.5 -24.5t-25.5 -9.5zM1309 410q-15 0 -23 10l-270 268q-8 11 -8 25q0 16 8 24l272 269q6 12 21 12q13 0 25 -12t12 -25t-11 -25l-243 -243l243 -244q11 -11 11 -25q0 -13 -11.5 -23.5t-25.5 -10.5zM639 678q-16 0 -25.5 9.5t-9.5 25.5q0 15 9.5 25t25.5 10 +h133q16 0 26.5 -10t10.5 -25q0 -16 -10.5 -25.5t-26.5 -9.5h-133z" /> + <glyph glyph-name="c.001" horiz-adv-x="967" +d="M522 -20q-134 0 -231.5 73.5t-144 189t-46.5 255.5q0 103 27 196t78 166t132.5 116.5t182.5 43.5q129 0 227 -69t152 -189l-119 -53q-22 95 -94 152t-166 57q-78 0 -136.5 -38.5t-91 -102t-48 -134t-15.5 -145.5q0 -76 15.5 -146t47.5 -132.5t91 -100t137 -37.5 +q96 0 167 56t93 149l107 -49q-44 -122 -139 -190t-226 -68z" /> + <glyph glyph-name="g.ss01" horiz-adv-x="1108" +d="M932 0q0 -201 -106.5 -316.5t-303.5 -115.5q-123 0 -222 48t-159 144l99 74q96 -158 280 -158q139 0 213 89.5t74 234.5v145q-48 -72 -127.5 -108.5t-177.5 -36.5q-197 0 -302.5 141.5t-105.5 366.5q0 148 45 262t136.5 182t218.5 68q203 0 313 -166v145h127zM522 109 +q76 0 134.5 32.5t92.5 89.5t51 127t17 152t-17 152t-51 126.5t-92.5 88.5t-134.5 32q-101 0 -170.5 -56.5t-99 -144t-29.5 -198.5t29.5 -199t99 -145t170.5 -57z" /> + <glyph glyph-name="g.ss04" horiz-adv-x="1059" +d="M666 131q145 0 230 -70t85 -202q0 -145 -110 -230.5t-310 -85.5q-215 0 -345 87t-130 245q0 38 8 66l159 110q-58 27 -94 77t-38 122q-3 118 96 190q-76 93 -76 219q0 156 109 255.5t274 99.5q155 0 259 -88l149 133l63 -82l-145 -126q55 -88 55 -196q0 -155 -108 -251.5 +t-273 -96.5q-134 0 -234 67q-53 -42 -50 -114q1 -67 50.5 -98t151.5 -31h224zM526 913q-117 0 -188.5 -72t-71.5 -184q0 -109 71 -178t189 -69q116 0 186 68.5t70 178.5q0 112 -70 184t-186 72zM559 -354q135 0 217 49.5t82 154.5q0 173 -240 173h-237q-26 0 -47 4 +l-129 -127q-1 -6 0.5 -17t1.5 -14q16 -223 352 -223z" /> + <glyph glyph-name="gbreve.ss01" horiz-adv-x="1108" +d="M530 1143q-132 0 -218.5 72t-86.5 198h127q0 -71 51.5 -117.5t126.5 -46.5q74 0 125 46t51 118h127q0 -127 -85.5 -198.5t-217.5 -71.5zM932 0q0 -201 -106.5 -316.5t-303.5 -115.5q-123 0 -222 48t-159 144l99 74q96 -158 280 -158q139 0 213 89.5t74 234.5v145 +q-48 -72 -127.5 -108.5t-177.5 -36.5q-197 0 -302.5 141.5t-105.5 366.5q0 148 45 262t136.5 182t218.5 68q203 0 313 -166v145h127zM522 109q76 0 134.5 32.5t92.5 89.5t51 127t17 152t-17 152t-51 126.5t-92.5 88.5t-134.5 32q-101 0 -170.5 -56.5t-99 -144t-29.5 -198.5 +t29.5 -199t99 -145t170.5 -57z" /> + <glyph glyph-name="gbreve.ss04" horiz-adv-x="1059" +d="M526 1143q-132 0 -218.5 72t-86.5 198h127q0 -71 51.5 -117.5t126.5 -46.5q74 0 125 46t51 118h127q0 -127 -85.5 -198.5t-217.5 -71.5zM666 131q145 0 230 -70t85 -202q0 -145 -110 -230.5t-310 -85.5q-215 0 -345 87t-130 245q0 38 8 66l159 110q-58 27 -94 77t-38 122 +q-3 118 96 190q-76 93 -76 219q0 156 109 255.5t274 99.5q155 0 259 -88l149 133l63 -82l-145 -126q55 -88 55 -196q0 -155 -108 -251.5t-273 -96.5q-134 0 -234 67q-53 -42 -50 -114q1 -67 50.5 -98t151.5 -31h224zM526 913q-117 0 -188.5 -72t-71.5 -184q0 -109 71 -178 +t189 -69q116 0 186 68.5t70 178.5q0 112 -70 184t-186 72zM559 -354q135 0 217 49.5t82 154.5q0 173 -240 173h-237q-26 0 -47 4l-129 -127q-1 -6 0.5 -17t1.5 -14q16 -223 352 -223z" /> + <glyph glyph-name="gcommaaccent.ss01" horiz-adv-x="1108" +d="M753 1394l-120 -294h-201l223 294h98zM932 0q0 -201 -106.5 -316.5t-303.5 -115.5q-123 0 -222 48t-159 144l99 74q96 -158 280 -158q139 0 213 89.5t74 234.5v145q-48 -72 -127.5 -108.5t-177.5 -36.5q-197 0 -302.5 141.5t-105.5 366.5q0 148 45 262t136.5 182 +t218.5 68q203 0 313 -166v145h127zM522 109q76 0 134.5 32.5t92.5 89.5t51 127t17 152t-17 152t-51 126.5t-92.5 88.5t-134.5 32q-101 0 -170.5 -56.5t-99 -144t-29.5 -198.5t29.5 -199t99 -145t170.5 -57z" /> + <glyph glyph-name="gcommaaccent.ss04" horiz-adv-x="1059" +d="M790 1419l-120 -294h-201l223 294h98zM666 131q145 0 230 -70t85 -202q0 -145 -110 -230.5t-310 -85.5q-215 0 -345 87t-130 245q0 38 8 66l159 110q-58 27 -94 77t-38 122q-3 118 96 190q-76 93 -76 219q0 156 109 255.5t274 99.5q155 0 259 -88l149 133l63 -82 +l-145 -126q55 -88 55 -196q0 -155 -108 -251.5t-273 -96.5q-134 0 -234 67q-53 -42 -50 -114q1 -67 50.5 -98t151.5 -31h224zM526 913q-117 0 -188.5 -72t-71.5 -184q0 -109 71 -178t189 -69q116 0 186 68.5t70 178.5q0 112 -70 184t-186 72zM559 -354q135 0 217 49.5 +t82 154.5q0 173 -240 173h-237q-26 0 -47 4l-129 -127q-1 -6 0.5 -17t1.5 -14q16 -223 352 -223z" /> + <glyph glyph-name="gdotaccent.ss01" horiz-adv-x="1108" +d="M452 1229v184h152v-184h-152zM932 0q0 -201 -106.5 -316.5t-303.5 -115.5q-123 0 -222 48t-159 144l99 74q96 -158 280 -158q139 0 213 89.5t74 234.5v145q-48 -72 -127.5 -108.5t-177.5 -36.5q-197 0 -302.5 141.5t-105.5 366.5q0 148 45 262t136.5 182t218.5 68 +q203 0 313 -166v145h127zM522 109q76 0 134.5 32.5t92.5 89.5t51 127t17 152t-17 152t-51 126.5t-92.5 88.5t-134.5 32q-101 0 -170.5 -56.5t-99 -144t-29.5 -198.5t29.5 -199t99 -145t170.5 -57z" /> + <glyph glyph-name="gdotaccent.ss04" horiz-adv-x="1059" +d="M600 1413v-184h-152v184h152zM666 131q145 0 230 -70t85 -202q0 -145 -110 -230.5t-310 -85.5q-215 0 -345 87t-130 245q0 38 8 66l159 110q-58 27 -94 77t-38 122q-3 118 96 190q-76 93 -76 219q0 156 109 255.5t274 99.5q155 0 259 -88l149 133l63 -82l-145 -126 +q55 -88 55 -196q0 -155 -108 -251.5t-273 -96.5q-134 0 -234 67q-53 -42 -50 -114q1 -67 50.5 -98t151.5 -31h224zM526 913q-117 0 -188.5 -72t-71.5 -184q0 -109 71 -178t189 -69q116 0 186 68.5t70 178.5q0 112 -70 184t-186 72zM559 -354q135 0 217 49.5t82 154.5 +q0 173 -240 173h-237q-26 0 -47 4l-129 -127q-1 -6 0.5 -17t1.5 -14q16 -223 352 -223z" /> + <glyph glyph-name="i.loclTRK" horiz-adv-x="498" +d="M170 1229v184h152v-184h-152zM174 0v999h150v-999h-150z" /> + <glyph glyph-name="f_t" horiz-adv-x="1182" +d="M961 -20q-123 0 -175.5 73.5t-52.5 208.5v635h-393v-897h-123v897h-182v100h182v179q0 126 73 192t185 66q84 0 160 -37l-25 -99q-71 33 -127 33q-66 0 -104.5 -40.5t-38.5 -119.5v-172h393v220l129 131v-351h254v-102h-254v-647q0 -82 36 -126t95 -44q43 0 90 22v-104 +q-41 -18 -122 -18z" /> + <glyph glyph-name="uni0414.loclRUS" horiz-adv-x="1442" +d="M72 -307v409h123q102 195 145 367t43 455v489h823v-1311h111v-409h-131v307h-981v-307h-133zM326 102h747v1201h-557v-379q0 -195 -23 -341.5t-60.5 -248t-106.5 -232.5z" /> + <glyph glyph-name="uni0414.loclSRB" horiz-adv-x="1442" +d="M72 -307v413h123q69 132 105.5 231.5t59.5 245.5t23 341v489h823v-1307h111v-413h-131v307h-981v-307h-133zM326 106h747v1197h-557v-379q0 -195 -23 -341t-60.5 -245.5t-106.5 -231.5z" /> + <glyph glyph-name="uni041B.loclRUS" horiz-adv-x="1475" +d="M236 -20q-91 0 -160 38l59 132q47 -33 92 -33q48 0 84.5 41.5t57.5 128t34.5 169.5t18.5 220t6.5 221t1.5 227v289h825v-1413h-131v1303h-561v-168q0 -129 -1 -202t-4.5 -197t-12.5 -198.5t-23.5 -174t-39 -158.5t-58 -116t-81.5 -83t-107 -26z" /> + <glyph glyph-name="uni041B.loclSRB" horiz-adv-x="1475" +d="M236 -20q-91 0 -160 38l59 132q47 -33 92 -33q48 0 84.5 41.5t57.5 128t34.5 169.5t18.5 220t6.5 221t1.5 227v289h825v-1413h-131v1303h-561v-168q0 -129 -1 -202t-4.5 -197t-12.5 -198.5t-23.5 -174t-39 -158.5t-58 -116t-81.5 -83t-107 -26z" /> + <glyph glyph-name="uni042E.loclRUS" horiz-adv-x="1864" +d="M1104 -20q-147 0 -264 52t-191.5 144.5t-116.5 212.5t-49 262h-131v-651h-133v1413h133v-651h131q7 142 49 262t116.5 212.5t191.5 145t264 52.5q156 0 277.5 -57.5t196.5 -158t113 -230t38 -281.5q0 -120 -23.5 -227.5t-73.5 -199.5t-122.5 -158.5t-176.5 -104 +t-229 -37.5zM1104 106q101 0 184.5 32.5t140.5 88.5t96 133t56.5 164t17.5 183t-17.5 182.5t-56.5 163.5t-96 133t-140.5 88.5t-184.5 32.5q-126 0 -223 -49t-155 -134t-87 -190.5t-29 -226.5q0 -96 17.5 -183t56.5 -164t95.5 -133t140 -88.5t184.5 -32.5z" /> + <glyph glyph-name="uni0431.loclSRB" horiz-adv-x="1124" +d="M551 -16q-139 0 -245.5 70.5t-160 183t-53.5 245.5q0 73 17.5 143t53 135.5t97 117.5t141.5 79q-15 11 -44.5 32.5t-40.5 29.5t-33 25t-29.5 25t-22 23t-19 25.5t-11.5 25.5t-9 29.5t-2 32.5q0 102 78 165t213 63q174 0 357 -93l-35 -118q-175 106 -316 106 +q-143 0 -143 -100q0 -63 57 -108.5t199 -102.5q94 -30 165 -69.5t130 -99t90 -146t31 -197.5q0 -232 -129 -377t-336 -145zM551 92q70 0 126.5 26t92 67t59.5 96t33.5 108.5t9.5 108.5q0 86 -25.5 155t-64.5 111.5t-90.5 72.5t-98 43t-93.5 17q-132 -47 -198 -145.5 +t-66 -259.5q0 -192 86.5 -296t228.5 -104z" /> + <glyph glyph-name="uni0432.loclRUS" horiz-adv-x="1047" +d="M172 0v999h418q142 0 215.5 -54.5t73.5 -182.5q0 -89 -46.5 -153t-148.5 -77q128 -9 193 -69.5t65 -155.5q0 -94 -18 -153t-62 -93.5t-107.5 -47.5t-164.5 -13h-418zM283 582h258q80 0 145.5 46t65.5 113q0 88 -49.5 125t-161.5 37h-258v-321zM283 109h258 +q161 0 217.5 40t56.5 154q0 50 -21.5 84.5t-61.5 52t-85.5 24.5t-105.5 7h-258v-362z" /> + <glyph glyph-name="uni0432.loclSRB" horiz-adv-x="1047" +d="M172 0v999h418q142 0 215.5 -54.5t73.5 -182.5q0 -89 -46.5 -153t-148.5 -77q128 -9 193 -69.5t65 -155.5q0 -94 -18 -153t-62 -93.5t-107.5 -47.5t-164.5 -13h-418zM283 582h258q80 0 145.5 46t65.5 113q0 88 -49.5 125t-161.5 37h-258v-321zM283 109h258 +q161 0 217.5 40t56.5 154q0 50 -21.5 84.5t-61.5 52t-85.5 24.5t-105.5 7h-258v-362z" /> + <glyph glyph-name="uni0433.loclRUS" horiz-adv-x="756" +d="M172 0v999h549v-102h-424v-897h-125z" /> + <glyph glyph-name="uni0433.loclSRB" horiz-adv-x="756" +d="M172 0v999h549v-102h-424v-897h-125z" /> + <glyph glyph-name="uni0434.loclRUS" horiz-adv-x="1055" +d="M37 -307v411h94q139 172 139 517v378h594v-895h82v-411h-125v307h-659v-307h-125zM274 104h465v793h-344v-279q0 -351 -121 -514z" /> + <glyph glyph-name="uni0434.loclSRB" horiz-adv-x="1055" +d="M37 -307v411h94q139 172 139 517v378h594v-895h82v-411h-125v307h-659v-307h-125zM274 104h465v793h-344v-279q0 -351 -121 -514z" /> + <glyph glyph-name="uni0436.loclRUS" horiz-adv-x="1409" +d="M55 0l160 430q24 66 63.5 114t88.5 48l-246 407h158l219 -374h143v374h127v-374h143l219 374h158l-246 -407q49 0 88.5 -48t63.5 -114l160 -430h-146l-123 360q-27 82 -65.5 117t-104.5 35h-147v-512h-127v512h-147q-65 0 -104 -35.5t-66 -116.5l-123 -360h-146z" /> + <glyph glyph-name="uni0436.loclSRB" horiz-adv-x="1409" +d="M55 0l160 430q24 66 63.5 114t88.5 48l-246 407h158l219 -374h143v374h127v-374h143l219 374h158l-246 -407q49 0 88.5 -48t63.5 -114l160 -430h-146l-123 360q-27 82 -65.5 117t-104.5 35h-147v-512h-127v512h-147q-65 0 -104 -35.5t-66 -116.5l-123 -360h-146z" /> + <glyph glyph-name="uni0437.loclRUS" horiz-adv-x="922" +d="M434 -20q-57 0 -104.5 9t-81 21.5t-71 39t-60.5 46t-64 58.5l88 73q109 -149 277 -149q278 0 278 196q0 40 -14 70.5t-37.5 48.5t-58 29.5t-70.5 15.5t-80 4h-133v109h164q82 22 127 65.5t45 122.5q0 81 -46 127.5t-165 46.5q-89 0 -162.5 -44t-105.5 -109l-90 51 +q42 87 140 144t218 57q338 0 338 -275q0 -209 -174 -235q104 -7 167.5 -73.5t63.5 -149.5q0 -141 -100 -220t-289 -79z" /> + <glyph glyph-name="uni0437.loclSRB" horiz-adv-x="922" +d="M434 -20q-57 0 -104.5 9t-81 21.5t-71 39t-60.5 46t-64 58.5l88 73q109 -149 277 -149q278 0 278 196q0 40 -14 70.5t-37.5 48.5t-58 29.5t-70.5 15.5t-80 4h-133v109h164q82 22 127 65.5t45 122.5q0 81 -46 127.5t-165 46.5q-89 0 -162.5 -44t-105.5 -109l-90 51 +q42 87 140 144t218 57q338 0 338 -275q0 -209 -174 -235q104 -7 167.5 -73.5t63.5 -149.5q0 -141 -100 -220t-289 -79z" /> + <glyph glyph-name="uni0438.loclRUS" horiz-adv-x="1128" +d="M174 0v999h125v-708q0 -17 -10 -115h10l512 823h143v-999h-123v709q0 43 11 114h-11l-512 -823h-145z" /> + <glyph glyph-name="uni0438.loclSRB" horiz-adv-x="1128" +d="M174 0v999h125v-708q0 -17 -10 -115h10l512 823h143v-999h-123v709q0 43 11 114h-11l-512 -823h-145z" /> + <glyph glyph-name="uni0439.loclRUS" horiz-adv-x="1128" +d="M547 1143q-123 0 -211 72t-88 198h110q0 -73 55.5 -123.5t133.5 -50.5q76 0 132 50t56 124h111q0 -123 -87 -196.5t-212 -73.5zM174 0v999h125v-708q0 -17 -10 -115h10l512 823h143v-999h-123v709q0 43 11 114h-11l-512 -823h-145z" /> + <glyph glyph-name="uni0439.loclSRB" horiz-adv-x="1128" +d="M547 1143q-123 0 -211 72t-88 198h110q0 -73 55.5 -123.5t133.5 -50.5q76 0 132 50t56 124h111q0 -123 -87 -196.5t-212 -73.5zM174 0v999h125v-708q0 -17 -10 -115h10l512 823h143v-999h-123v709q0 43 11 114h-11l-512 -823h-145z" /> + <glyph glyph-name="uni045D.loclRUS" horiz-adv-x="1128" +d="M518 1130l-225 281h149l209 -281h-133zM174 0v999h125v-708q0 -17 -10 -115h10l512 823h143v-999h-123v709q0 43 11 114h-11l-512 -823h-145z" /> + <glyph glyph-name="uni045D.loclSRB" horiz-adv-x="1128" +d="M518 1130l-225 281h149l209 -281h-133zM174 0v999h125v-708q0 -17 -10 -115h10l512 823h143v-999h-123v709q0 43 11 114h-11l-512 -823h-145z" /> + <glyph glyph-name="uni043A.loclRUS" horiz-adv-x="944" +d="M174 0v999h127v-374h143l220 374h157l-246 -407q49 0 87 -47t65 -115l160 -430h-146l-123 360q-27 82 -65.5 117t-103.5 35h-148v-512h-127z" /> + <glyph glyph-name="uni043A.loclSRB" horiz-adv-x="944" +d="M174 0v999h127v-374h143l220 374h157l-246 -407q49 0 87 -47t65 -115l160 -430h-146l-123 360q-27 82 -65.5 117t-103.5 35h-148v-512h-127z" /> + <glyph glyph-name="uni043B.loclRUS" horiz-adv-x="1051" +d="M193 -23q-39 0 -87.5 13t-76.5 28l43 99q3 -1 15.5 -8.5t22 -12.5t23.5 -9.5t25 -4.5q123 0 123 539v378h596v-999h-125v897h-349v-279q0 -168 -14 -291t-34.5 -189t-51 -104t-55 -47.5t-55.5 -9.5z" /> + <glyph glyph-name="uni043B.loclSRB" horiz-adv-x="1051" +d="M193 -23q-39 0 -87.5 13t-76.5 28l43 99q3 -1 15.5 -8.5t22 -12.5t23.5 -9.5t25 -4.5q123 0 123 539v378h596v-999h-125v897h-349v-279q0 -168 -14 -291t-34.5 -189t-51 -104t-55 -47.5t-55.5 -9.5z" /> + <glyph glyph-name="uni043F.loclRUS" horiz-adv-x="1128" +d="M174 0v999h780v-999h-123v897h-532v-897h-125z" /> + <glyph glyph-name="uni043F.loclSRB" horiz-adv-x="1128" +d="M174 0v999h780v-999h-123v897h-532v-897h-125z" /> + <glyph glyph-name="uni0442.loclRUS" horiz-adv-x="850" +d="M362 0v897h-327v102h780v-102h-330v-897h-123z" /> + <glyph glyph-name="uni0442.loclSRB" horiz-adv-x="850" +d="M362 0v897h-327v102h780v-102h-330v-897h-123z" /> + <glyph glyph-name="uni0446.loclRUS" horiz-adv-x="1157" +d="M963 -307v307h-789v999h125v-895h532v895h123v-895h131v-411h-122z" /> + <glyph glyph-name="uni0446.loclSRB" horiz-adv-x="1157" +d="M963 -307v307h-789v999h125v-895h532v895h123v-895h131v-411h-122z" /> + <glyph glyph-name="uni0448.loclRUS" horiz-adv-x="1509" +d="M174 0v999h125v-895h395v895h123v-895h395v895h123v-999h-1161z" /> + <glyph glyph-name="uni0448.loclSRB" horiz-adv-x="1509" +d="M174 0v999h125v-895h395v895h123v-895h395v895h123v-999h-1161z" /> + <glyph glyph-name="uni0449.loclRUS" horiz-adv-x="1538" +d="M1343 -307v307h-1169v999h125v-895h395v895h123v-895h395v895h123v-895h131v-411h-123z" /> + <glyph glyph-name="uni0449.loclSRB" horiz-adv-x="1538" +d="M1343 -307v307h-1169v999h125v-895h395v895h123v-895h395v895h123v-895h131v-411h-123z" /> + <glyph glyph-name="uni044C.loclRUS" horiz-adv-x="977" +d="M174 0v999h125v-344h197q67 0 118 -7t101.5 -29t83.5 -58t53 -98t20 -146q0 -144 -108.5 -230.5t-267.5 -86.5h-322zM299 100h197q233 0 233 217q0 70 -18 118.5t-51.5 73.5t-73 35.5t-90.5 10.5h-197v-455z" /> + <glyph glyph-name="uni044A.loclRUS" horiz-adv-x="1092" +d="M289 0v897h-254v102h377v-344h196q68 0 119.5 -7t102.5 -29t84 -58t53 -98t20 -146q0 -144 -109 -230.5t-270 -86.5h-319zM412 100h196q234 0 234 217q0 70 -18 118.5t-52 73.5t-73.5 35.5t-90.5 10.5h-196v-455z" /> + <glyph glyph-name="uni044B.loclRUS" horiz-adv-x="1356" +d="M174 0v999h125v-344h197q67 0 118 -7t101.5 -29t83.5 -58t53 -98t20 -146q0 -144 -108.5 -230.5t-267.5 -86.5h-322zM1053 0v999h129v-999h-129zM299 100h197q233 0 233 217q0 70 -18 118.5t-51.5 73.5t-73 35.5t-90.5 10.5h-197v-455z" /> + <glyph glyph-name="uni044E.loclRUS" horiz-adv-x="1403" +d="M848 -20q-134 0 -240.5 69.5t-164 187.5t-56.5 261h-88v-498h-125v999h125v-399h94q32 180 155 296t300 116q133 0 239 -69.5t164 -187.5t58 -259q0 -142 -58 -259.5t-164 -187t-239 -69.5zM848 92q84 0 147 33t99.5 90.5t54.5 128t18 152.5t-18 152.5t-54.5 127.5 +t-99.5 90t-147 33t-147.5 -33t-100 -90t-54.5 -127.5t-18 -152.5t18 -152.5t54.5 -128t100 -90.5t147.5 -33z" /> + <glyph glyph-name="strokecy" horiz-adv-x="1135" +d="M209 336v110h717v-110h-717z" /> + <hkern u1=" " u2="&" k="82" /> + <hkern u1=""" u2="ï" k="-82" /> + <hkern u1=""" u2="î" k="-82" /> + <hkern u1=""" u2="ì" k="-82" /> + <hkern u1="#" u2="9" k="41" /> + <hkern u1="#" u2="8" k="41" /> + <hkern u1="#" u2="7" k="20" /> + <hkern u1="#" u2="5" k="61" /> + <hkern u1="#" u2="4" k="82" /> + <hkern u1="#" u2="3" k="61" /> + <hkern u1="#" u2="2" k="20" /> + <hkern u1="#" u2="1" k="20" /> + <hkern u1="$" u2="9" k="20" /> + <hkern u1="$" u2="8" k="20" /> + <hkern u1="$" u2="7" k="20" /> + <hkern u1="$" u2="5" k="20" /> + <hkern u1="$" u2="4" k="20" /> + <hkern u1="$" u2="3" k="20" /> + <hkern u1="%" u2="1" k="20" /> + <hkern u1="&" u2="V" k="154" /> + <hkern u1="&" u2="5" k="20" /> + <hkern u1="&" u2="4" k="20" /> + <hkern u1="&" u2="3" k="20" /> + <hkern u1="&" u2="1" k="20" /> + <hkern u1="&" u2=" " k="82" /> + <hkern u1="'" u2="ï" k="-82" /> + <hkern u1="'" u2="î" k="-82" /> + <hkern u1="'" u2="ì" k="-82" /> + <hkern u1="(" u2="ƒ" k="-102" /> + <hkern u1="(" u2="ì" k="-41" /> + <hkern u1="(" u2="v" k="41" /> + <hkern u1="(" u2="X" k="-41" /> + <hkern u1="(" u2="V" k="-41" /> + <hkern u1="(" u2="−" k="82" /> + <hkern u1="(" u2="7" k="-82" /> + <hkern u1="(" u2="5" k="51" /> + <hkern u1="(" u2="4" k="41" /> + <hkern u1="(" u2="2" k="-10" /> + <hkern u1="(" u2="1" k="10" /> + <hkern u1="(" u2="+" k="102" /> + <hkern u1=")" u2="Ł" k="-41" /> + <hkern u1="*" u2="î" k="-41" /> + <hkern u1="*" u2="v" k="-20" /> + <hkern u1="*" u2="V" k="-41" /> + <hkern u1="*" u2="7" k="-82" /> + <hkern u1="*" u2="4" k="143" /> + <hkern u1="+" u2="X" k="20" /> + <hkern u1="+" u2="V" k="82" /> + <hkern u1="+" u2="9" k="20" /> + <hkern u1="+" u2="7" k="20" /> + <hkern u1="+" u2="3" k="41" /> + <hkern u1="+" u2="2" k="20" /> + <hkern u1="+" u2="1" k="61" /> + <hkern u1="+" u2=")" k="102" /> + <hkern u1="," u2="g" k="20" /> + <hkern u1="." u2="g" k="20" /> + <hkern u1="/" u2="ž" k="102" /> + <hkern u1="/" u2="š" k="123" /> + <hkern u1="/" u2="ð" k="184" /> + <hkern u1="/" u2="ï" k="-61" /> + <hkern u1="/" u2="î" k="-61" /> + <hkern u1="/" u2="í" k="20" /> + <hkern u1="/" u2="ì" k="-143" /> + <hkern u1="/" u2="ë" k="215" /> + <hkern u1="/" u2="è" k="215" /> + <hkern u1="/" u2="å" k="225" /> + <hkern u1="/" u2="ä" k="195" /> + <hkern u1="/" u2="ã" k="205" /> + <hkern u1="/" u2="â" k="215" /> + <hkern u1="/" u2="à" k="195" /> + <hkern u1="/" u2="x" k="41" /> + <hkern u1="/" u2="v" k="20" /> + <hkern u1="/" u2="X" k="-20" /> + <hkern u1="/" u2="V" k="-41" /> + <hkern u1="/" u2="9" k="41" /> + <hkern u1="/" u2="8" k="61" /> + <hkern u1="/" u2="7" k="-61" /> + <hkern u1="/" u2="5" k="41" /> + <hkern u1="/" u2="4" k="164" /> + <hkern u1="/" u2="2" k="41" /> + <hkern u1="/" u2="/" k="287" /> + <hkern u1="1" u2="≥" k="-20" /> + <hkern u1="1" u2="≠" k="-41" /> + <hkern u1="1" u2="≈" k="-41" /> + <hkern u1="1" u2="∞" k="-41" /> + <hkern u1="1" u2="÷" k="20" /> + <hkern u1="1" u2="°" k="20" /> + <hkern u1="1" u2="|" k="-20" /> + <hkern u1="1" u2=">" k="-61" /> + <hkern u1="1" u2="<" k="20" /> + <hkern u1="1" u2="7" k="-10" /> + <hkern u1="1" u2="2" k="-10" /> + <hkern u1="1" u2="%" k="20" /> + <hkern u1="1" u2="#" k="41" /> + <hkern u1="2" u2="≥" k="-20" /> + <hkern u1="2" u2="≠" k="-20" /> + <hkern u1="2" u2="≈" k="-41" /> + <hkern u1="2" u2="×" k="-20" /> + <hkern u1="2" u2="±" k="-20" /> + <hkern u1="2" u2="°" k="-20" /> + <hkern u1="2" u2="_" k="-20" /> + <hkern u1="2" u2="\" k="20" /> + <hkern u1="2" u2=">" k="-61" /> + <hkern u1="2" u2="4" k="31" /> + <hkern u1="2" u2="1" k="-20" /> + <hkern u1="3" u2="≥" k="-41" /> + <hkern u1="3" u2="≈" k="-41" /> + <hkern u1="3" u2="−" k="-20" /> + <hkern u1="3" u2="‰" k="20" /> + <hkern u1="3" u2="×" k="-20" /> + <hkern u1="3" u2="±" k="-20" /> + <hkern u1="3" u2="°" k="-20" /> + <hkern u1="3" u2="¦" k="-41" /> + <hkern u1="3" u2="~" k="-20" /> + <hkern u1="3" u2="|" k="-41" /> + <hkern u1="3" u2="_" k="20" /> + <hkern u1="3" u2=">" k="-61" /> + <hkern u1="3" u2="7" k="-20" /> + <hkern u1="3" u2="1" k="10" /> + <hkern u1="3" u2="/" k="20" /> + <hkern u1="3" u2="*" k="-20" /> + <hkern u1="3" u2="%" k="20" /> + <hkern u1="3" u2="#" k="41" /> + <hkern u1="4" u2="º" k="82" /> + <hkern u1="4" u2="ª" k="82" /> + <hkern u1="4" u2="≥" k="-61" /> + <hkern u1="4" u2="≤" k="-61" /> + <hkern u1="4" u2="≠" k="-20" /> + <hkern u1="4" u2="≈" k="-61" /> + <hkern u1="4" u2="∞" k="-20" /> + <hkern u1="4" u2="™" k="143" /> + <hkern u1="4" u2="‰" k="61" /> + <hkern u1="4" u2="×" k="-20" /> + <hkern u1="4" u2="±" k="-20" /> + <hkern u1="4" u2="°" k="20" /> + <hkern u1="4" u2="¦" k="-20" /> + <hkern u1="4" u2="~" k="-41" /> + <hkern u1="4" u2=">" k="-61" /> + <hkern u1="4" u2="=" k="-41" /> + <hkern u1="4" u2="7" k="10" /> + <hkern u1="4" u2="*" k="41" /> + <hkern u1="4" u2="%" k="20" /> + <hkern u1="5" u2="≥" k="-41" /> + <hkern u1="5" u2="≤" k="-20" /> + <hkern u1="5" u2="≠" k="-20" /> + <hkern u1="5" u2="≈" k="-41" /> + <hkern u1="5" u2="−" k="-20" /> + <hkern u1="5" u2="‰" k="20" /> + <hkern u1="5" u2="°" k="-20" /> + <hkern u1="5" u2="~" k="-20" /> + <hkern u1="5" u2="_" k="20" /> + <hkern u1="5" u2="@" k="10" /> + <hkern u1="5" u2=">" k="-41" /> + <hkern u1="5" u2="=" k="-20" /> + <hkern u1="5" u2="<" k="-20" /> + <hkern u1="5" u2="7" k="-10" /> + <hkern u1="5" u2="/" k="41" /> + <hkern u1="5" u2="%" k="20" /> + <hkern u1="6" u2="≈" k="-20" /> + <hkern u1="6" u2="−" k="-20" /> + <hkern u1="6" u2="‰" k="41" /> + <hkern u1="6" u2="~" k="-20" /> + <hkern u1="6" u2="_" k="41" /> + <hkern u1="6" u2="\" k="20" /> + <hkern u1="6" u2="@" k="20" /> + <hkern u1="6" u2=">" k="-20" /> + <hkern u1="6" u2="=" k="-20" /> + <hkern u1="6" u2="7" k="-10" /> + <hkern u1="6" u2="+" k="-20" /> + <hkern u1="6" u2="#" k="41" /> + <hkern u1="7" u2="≥" k="-41" /> + <hkern u1="7" u2="≠" k="20" /> + <hkern u1="7" u2="∞" k="20" /> + <hkern u1="7" u2="−" k="61" /> + <hkern u1="7" u2="™" k="-41" /> + <hkern u1="7" u2="‰" k="-20" /> + <hkern u1="7" u2="‡" k="-102" /> + <hkern u1="7" u2="†" k="-102" /> + <hkern u1="7" u2="÷" k="41" /> + <hkern u1="7" u2="¿" k="123" /> + <hkern u1="7" u2="·" k="82" /> + <hkern u1="7" u2="±" k="20" /> + <hkern u1="7" u2="°" k="-61" /> + <hkern u1="7" u2="¦" k="-41" /> + <hkern u1="7" u2="~" k="82" /> + <hkern u1="7" u2="|" k="-41" /> + <hkern u1="7" u2="_" k="184" /> + <hkern u1="7" u2="\" k="-61" /> + <hkern u1="7" u2="@" k="10" /> + <hkern u1="7" u2="?" k="-41" /> + <hkern u1="7" u2=">" k="-61" /> + <hkern u1="7" u2="=" k="-10" /> + <hkern u1="7" u2="<" k="61" /> + <hkern u1="7" u2="9" k="-20" /> + <hkern u1="7" u2="7" k="-61" /> + <hkern u1="7" u2="5" k="31" /> + <hkern u1="7" u2="4" k="113" /> + <hkern u1="7" u2="1" k="-10" /> + <hkern u1="7" u2="/" k="123" /> + <hkern u1="7" u2="+" k="102" /> + <hkern u1="7" u2="*" k="-41" /> + <hkern u1="7" u2="#" k="82" /> + <hkern u1="8" u2="≥" k="-20" /> + <hkern u1="8" u2="≠" k="-20" /> + <hkern u1="8" u2="≈" k="-41" /> + <hkern u1="8" u2="£" k="41" /> + <hkern u1="8" u2="_" k="20" /> + <hkern u1="8" u2="\" k="82" /> + <hkern u1="8" u2=">" k="-20" /> + <hkern u1="8" u2="&" k="20" /> + <hkern u1="8" u2="%" k="10" /> + <hkern u1="8" u2="#" k="20" /> + <hkern u1="<" u2="9" k="-61" /> + <hkern u1="<" u2="8" k="-61" /> + <hkern u1="<" u2="7" k="-143" /> + <hkern u1="<" u2="5" k="-41" /> + <hkern u1="<" u2="3" k="-20" /> + <hkern u1="<" u2="2" k="-61" /> + <hkern u1="<" u2="1" k="-61" /> + <hkern u1="=" u2="X" k="20" /> + <hkern u1="=" u2="V" k="20" /> + <hkern u1="=" u2="7" k="20" /> + <hkern u1="=" u2="5" k="-20" /> + <hkern u1=">" u2="X" k="41" /> + <hkern u1=">" u2="V" k="41" /> + <hkern u1=">" u2="3" k="41" /> + <hkern u1=">" u2="2" k="20" /> + <hkern u1=">" u2="1" k="20" /> + <hkern u1="?" u2="v" k="-41" /> + <hkern u1="?" u2="7" k="-61" /> + <hkern u1="?" u2="4" k="41" /> + <hkern u1="?" u2="1" k="-20" /> + <hkern u1="@" u2="Ł" k="-20" /> + <hkern u1="@" u2="x" k="-10" /> + <hkern u1="@" u2="v" k="-31" /> + <hkern u1="@" u2="X" k="41" /> + <hkern u1="@" u2="V" k="41" /> + <hkern u1="@" u2="7" k="-20" /> + <hkern u1="@" u2="4" k="20" /> + <hkern u1="@" u2="3" k="20" /> + <hkern u1="B" u2="™" k="20" /> + <hkern u1="B" u2="•" k="20" /> + <hkern u1="B" u2="ß" k="31" /> + <hkern u1="B" u2="¿" k="51" /> + <hkern u1="B" u2="º" k="20" /> + <hkern u1="B" u2="ª" k="31" /> + <hkern u1="B" u2="v" k="10" /> + <hkern u1="B" u2="_" k="20" /> + <hkern u1="B" u2="\" k="51" /> + <hkern u1="B" u2=">" k="-20" /> + <hkern u1="B" u2="/" k="31" /> + <hkern u1="B" u2="+" k="10" /> + <hkern u1="B" u2="&" k="10" /> + <hkern u1="C" u2="î" k="-31" /> + <hkern u1="E" u2="ì" k="-20" /> + <hkern u1="F" u2="™" k="-41" /> + <hkern u1="F" u2="•" k="20" /> + <hkern u1="F" u2="‡" k="-41" /> + <hkern u1="F" u2="†" k="-41" /> + <hkern u1="F" u2="ƒ" k="143" /> + <hkern u1="F" u2="ï" k="-41" /> + <hkern u1="F" u2="î" k="-51" /> + <hkern u1="F" u2="ì" k="-72" /> + <hkern u1="F" u2="ß" k="41" /> + <hkern u1="F" u2="¿" k="143" /> + <hkern u1="F" u2="¶" k="-41" /> + <hkern u1="F" u2="ª" k="31" /> + <hkern u1="F" u2="§" k="-41" /> + <hkern u1="F" u2="¦" k="-41" /> + <hkern u1="F" u2="~" k="41" /> + <hkern u1="F" u2="|" k="-41" /> + <hkern u1="F" u2="{" k="41" /> + <hkern u1="F" u2="x" k="31" /> + <hkern u1="F" u2="v" k="41" /> + <hkern u1="F" u2="_" k="205" /> + <hkern u1="F" u2="^" k="-20" /> + <hkern u1="F" u2="\" k="-61" /> + <hkern u1="F" u2="@" k="20" /> + <hkern u1="F" u2="?" k="-20" /> + <hkern u1="F" u2=">" k="-20" /> + <hkern u1="F" u2="/" k="113" /> + <hkern u1="F" u2="+" k="41" /> + <hkern u1="F" u2="*" k="-31" /> + <hkern u1="F" u2=")" k="-61" /> + <hkern u1="F" u2="&" k="20" /> + <hkern u1="G" u2="î" k="-10" /> + <hkern u1="J" u2="î" k="-10" /> + <hkern u1="K" u2="ì" k="-61" /> + <hkern u1="P" u2="•" k="41" /> + <hkern u1="P" u2="‡" k="-41" /> + <hkern u1="P" u2="†" k="-41" /> + <hkern u1="P" u2="ƒ" k="123" /> + <hkern u1="P" u2="š" k="31" /> + <hkern u1="P" u2="ł" k="10" /> + <hkern u1="P" u2="ü" k="41" /> + <hkern u1="P" u2="û" k="41" /> + <hkern u1="P" u2="ú" k="41" /> + <hkern u1="P" u2="ù" k="41" /> + <hkern u1="P" u2="÷" k="20" /> + <hkern u1="P" u2="ï" k="-41" /> + <hkern u1="P" u2="î" k="-82" /> + <hkern u1="P" u2="ì" k="-31" /> + <hkern u1="P" u2="ß" k="31" /> + <hkern u1="P" u2="×" k="-20" /> + <hkern u1="P" u2="¿" k="164" /> + <hkern u1="P" u2="·" k="41" /> + <hkern u1="P" u2="¶" k="-41" /> + <hkern u1="P" u2="§" k="-20" /> + <hkern u1="P" u2="~" k="41" /> + <hkern u1="P" u2="{" k="41" /> + <hkern u1="P" u2="_" k="184" /> + <hkern u1="P" u2="X" k="10" /> + <hkern u1="P" u2="@" k="10" /> + <hkern u1="P" u2="?" k="-41" /> + <hkern u1="P" u2=">" k="-41" /> + <hkern u1="P" u2="/" k="143" /> + <hkern u1="P" u2="+" k="61" /> + <hkern u1="P" u2="*" k="-20" /> + <hkern u1="P" u2="&" k="20" /> + <hkern u1="Q" u2="™" k="41" /> + <hkern u1="Q" u2="ƒ" k="41" /> + <hkern u1="Q" u2="Ł" k="-10" /> + <hkern u1="Q" u2="ß" k="20" /> + <hkern u1="Q" u2="\" k="72" /> + <hkern u1="Q" u2="X" k="31" /> + <hkern u1="Q" u2="V" k="51" /> + <hkern u1="Q" u2=">" k="-41" /> + <hkern u1="Q" u2="<" k="-20" /> + <hkern u1="Q" u2=")" k="20" /> + <hkern u1="R" u2="î" k="-20" /> + <hkern u1="T" u2="ž" k="61" /> + <hkern u1="T" u2="š" k="20" /> + <hkern u1="T" u2="ÿ" k="102" /> + <hkern u1="T" u2="ü" k="143" /> + <hkern u1="T" u2="û" k="133" /> + <hkern u1="T" u2="ï" k="-61" /> + <hkern u1="T" u2="î" k="-31" /> + <hkern u1="T" u2="í" k="102" /> + <hkern u1="T" u2="ì" k="-82" /> + <hkern u1="T" u2="å" k="133" /> + <hkern u1="T" u2="ä" k="92" /> + <hkern u1="T" u2="ã" k="92" /> + <hkern u1="T" u2="â" k="113" /> + <hkern u1="T" u2="à" k="82" /> + <hkern u1="U" u2="î" k="-10" /> + <hkern u1="V" u2="™" k="-61" /> + <hkern u1="V" u2="•" k="82" /> + <hkern u1="V" u2="‡" k="-20" /> + <hkern u1="V" u2="†" k="-41" /> + <hkern u1="V" u2="ƒ" k="123" /> + <hkern u1="V" u2="÷" k="82" /> + <hkern u1="V" u2="ï" k="-20" /> + <hkern u1="V" u2="î" k="-20" /> + <hkern u1="V" u2="ì" k="-72" /> + <hkern u1="V" u2="ß" k="31" /> + <hkern u1="V" u2="×" k="20" /> + <hkern u1="V" u2="¿" k="123" /> + <hkern u1="V" u2="·" k="61" /> + <hkern u1="V" u2="¦" k="-41" /> + <hkern u1="V" u2="¡" k="41" /> + <hkern u1="V" u2="~" k="82" /> + <hkern u1="V" u2="|" k="-41" /> + <hkern u1="V" u2="{" k="61" /> + <hkern u1="V" u2="x" k="10" /> + <hkern u1="V" u2="v" k="10" /> + <hkern u1="V" u2="_" k="102" /> + <hkern u1="V" u2="\" k="-41" /> + <hkern u1="V" u2="X" k="-20" /> + <hkern u1="V" u2="V" k="-20" /> + <hkern u1="V" u2="@" k="41" /> + <hkern u1="V" u2="?" k="-20" /> + <hkern u1="V" u2="=" k="20" /> + <hkern u1="V" u2="<" k="41" /> + <hkern u1="V" u2="/" k="123" /> + <hkern u1="V" u2="+" k="82" /> + <hkern u1="V" u2="*" k="-41" /> + <hkern u1="V" u2=")" k="-41" /> + <hkern u1="V" u2="&" k="92" /> + <hkern u1="W" u2="ï" k="-41" /> + <hkern u1="W" u2="î" k="-20" /> + <hkern u1="W" u2="ì" k="-51" /> + <hkern u1="X" u2="•" k="61" /> + <hkern u1="X" u2="÷" k="20" /> + <hkern u1="X" u2="ï" k="-20" /> + <hkern u1="X" u2="î" k="-20" /> + <hkern u1="X" u2="ì" k="-82" /> + <hkern u1="X" u2="×" k="20" /> + <hkern u1="X" u2="·" k="61" /> + <hkern u1="X" u2="¦" k="-20" /> + <hkern u1="X" u2="~" k="41" /> + <hkern u1="X" u2="|" k="-41" /> + <hkern u1="X" u2="{" k="61" /> + <hkern u1="X" u2="x" k="-41" /> + <hkern u1="X" u2="v" k="31" /> + <hkern u1="X" u2="_" k="-31" /> + <hkern u1="X" u2="\" k="-20" /> + <hkern u1="X" u2="V" k="-20" /> + <hkern u1="X" u2="@" k="51" /> + <hkern u1="X" u2="=" k="20" /> + <hkern u1="X" u2="<" k="41" /> + <hkern u1="X" u2="/" k="-20" /> + <hkern u1="X" u2="+" k="20" /> + <hkern u1="X" u2=")" k="-41" /> + <hkern u1="X" u2="&" k="20" /> + <hkern u1="Y" u2="š" k="92" /> + <hkern u1="Y" u2="õ" k="174" /> + <hkern u1="Y" u2="ò" k="154" /> + <hkern u1="Y" u2="ð" k="154" /> + <hkern u1="Y" u2="ï" k="-20" /> + <hkern u1="Y" u2="í" k="61" /> + <hkern u1="Y" u2="ì" k="-82" /> + <hkern u1="Z" u2="ï" k="-10" /> + <hkern u1="Z" u2="î" k="-10" /> + <hkern u1="Z" u2="ì" k="-31" /> + <hkern u1="[" u2="ì" k="-82" /> + <hkern u1="\" u2="x" k="-20" /> + <hkern u1="\" u2="v" k="20" /> + <hkern u1="\" u2="X" k="-20" /> + <hkern u1="\" u2="V" k="123" /> + <hkern u1="\" u2="8" k="41" /> + <hkern u1="\" u2="4" k="20" /> + <hkern u1="\" u2="3" k="20" /> + <hkern u1="\" u2="2" k="-20" /> + <hkern u1="_" u2="ƒ" k="-123" /> + <hkern u1="_" u2="x" k="-61" /> + <hkern u1="_" u2="v" k="82" /> + <hkern u1="_" u2="X" k="-31" /> + <hkern u1="_" u2="V" k="102" /> + <hkern u1="_" u2="8" k="20" /> + <hkern u1="_" u2="4" k="102" /> + <hkern u1="f" u2="ï" k="-41" /> + <hkern u1="f" u2="î" k="-41" /> + <hkern u1="f" u2="ì" k="-61" /> + <hkern u1="v" u2="‡" k="-61" /> + <hkern u1="v" u2="†" k="-61" /> + <hkern u1="v" u2="ł" k="-10" /> + <hkern u1="v" u2="¿" k="41" /> + <hkern u1="v" u2="¶" k="-41" /> + <hkern u1="v" u2="¦" k="-41" /> + <hkern u1="v" u2="x" k="-20" /> + <hkern u1="v" u2="v" k="-10" /> + <hkern u1="v" u2="_" k="82" /> + <hkern u1="v" u2="\" k="41" /> + <hkern u1="v" u2="@" k="-20" /> + <hkern u1="v" u2="?" k="-41" /> + <hkern u1="v" u2="/" k="41" /> + <hkern u1="v" u2="*" k="-20" /> + <hkern u1="v" u2=")" k="41" /> + <hkern u1="x" u2="™" k="20" /> + <hkern u1="x" u2="‡" k="-20" /> + <hkern u1="x" u2="†" k="-20" /> + <hkern u1="x" u2="·" k="20" /> + <hkern u1="x" u2="¡" k="-20" /> + <hkern u1="x" u2="|" k="-41" /> + <hkern u1="x" u2="x" k="-10" /> + <hkern u1="x" u2="v" k="-20" /> + <hkern u1="x" u2="_" k="-61" /> + <hkern u1="x" u2="\" k="41" /> + <hkern u1="x" u2="@" k="-10" /> + <hkern u1="x" u2="/" k="-41" /> + <hkern u1="x" u2="&" k="20" /> + <hkern u1="{" u2="ì" k="-82" /> + <hkern u1="{" u2="æ" k="10" /> + <hkern u1="{" u2="å" k="10" /> + <hkern u1="{" u2="ä" k="10" /> + <hkern u1="{" u2="ã" k="10" /> + <hkern u1="{" u2="â" k="10" /> + <hkern u1="{" u2="á" k="10" /> + <hkern u1="{" u2="à" k="10" /> + <hkern u1="{" u2="a" k="10" /> + <hkern u1="|" u2="x" k="-41" /> + <hkern u1="|" u2="X" k="-41" /> + <hkern u1="|" u2="V" k="-41" /> + <hkern u1="|" u2="7" k="-41" /> + <hkern u1="}" u2="Ł" k="-20" /> + <hkern u1="}" u2="X" k="20" /> + <hkern u1="}" u2="V" k="20" /> + <hkern u1="~" u2="X" k="41" /> + <hkern u1="~" u2="V" k="82" /> + <hkern u1="~" u2="7" k="41" /> + <hkern u1="~" u2="2" k="20" /> + <hkern u1="~" u2="1" k="20" /> + <hkern u1="¡" u2="x" k="-20" /> + <hkern u1="¡" u2="V" k="41" /> + <hkern u1="¡" u2="7" k="-20" /> + <hkern u1="¢" u2="3" k="20" /> + <hkern u1="¥" u2="7" k="-61" /> + <hkern u1="¥" u2="4" k="20" /> + <hkern u1="¦" u2="v" k="-41" /> + <hkern u1="¦" u2="X" k="-20" /> + <hkern u1="¦" u2="V" k="-41" /> + <hkern u1="¦" u2="8" k="20" /> + <hkern u1="¦" u2="7" k="-20" /> + <hkern u1="¬" u2="3" k="20" /> + <hkern u1="°" u2="7" k="-82" /> + <hkern u1="°" u2="4" k="82" /> + <hkern u1="°" u2="1" k="-61" /> + <hkern u1="±" u2="7" k="20" /> + <hkern u1="±" u2="3" k="20" /> + <hkern u1="·" u2="x" k="20" /> + <hkern u1="·" u2="X" k="61" /> + <hkern u1="·" u2="V" k="61" /> + <hkern u1="·" u2="7" k="41" /> + <hkern u1="·" u2="1" k="61" /> + <hkern u1="¿" u2="v" k="61" /> + <hkern u1="¿" u2="V" k="123" /> + <hkern u1="¿" u2="4" k="41" /> + <hkern u1="¿" u2="3" k="20" /> + <hkern u1="¿" u2="1" k="20" /> + <hkern u1="Æ" u2="ì" k="-20" /> + <hkern u1="Ç" u2="î" k="-31" /> + <hkern u1="È" u2="ì" k="-20" /> + <hkern u1="É" u2="ì" k="-20" /> + <hkern u1="Ê" u2="ì" k="-20" /> + <hkern u1="Ë" u2="ì" k="-20" /> + <hkern u1="Í" u2="Ï" k="-102" /> + <hkern u1="Í" u2="Ì" k="-184" /> + <hkern u1="Î" u2="Ï" k="-82" /> + <hkern u1="Î" u2="Î" k="-123" /> + <hkern u1="Î" u2="Ì" k="-61" /> + <hkern u1="Ï" u2="Ï" k="-41" /> + <hkern u1="Ï" u2="Î" k="-72" /> + <hkern u1="Ï" u2="Ì" k="-82" /> + <hkern u1="×" u2="X" k="20" /> + <hkern u1="×" u2="V" k="20" /> + <hkern u1="Ù" u2="î" k="-10" /> + <hkern u1="Ú" u2="î" k="-10" /> + <hkern u1="Û" u2="î" k="-10" /> + <hkern u1="Ü" u2="î" k="-10" /> + <hkern u1="Ý" u2="š" k="92" /> + <hkern u1="Ý" u2="õ" k="174" /> + <hkern u1="Ý" u2="ò" k="154" /> + <hkern u1="Ý" u2="ð" k="154" /> + <hkern u1="Ý" u2="ï" k="-20" /> + <hkern u1="Ý" u2="í" k="61" /> + <hkern u1="Ý" u2="ì" k="-82" /> + <hkern u1="Þ" u2="™" k="61" /> + <hkern u1="Þ" u2="‡" k="-20" /> + <hkern u1="Þ" u2="†" k="-20" /> + <hkern u1="Þ" u2="ƒ" k="82" /> + <hkern u1="Þ" u2="ł" k="-41" /> + <hkern u1="Þ" u2="Ł" k="-31" /> + <hkern u1="Þ" u2="ß" k="31" /> + <hkern u1="Þ" u2="¿" k="41" /> + <hkern u1="Þ" u2="·" k="-20" /> + <hkern u1="Þ" u2="~" k="-20" /> + <hkern u1="Þ" u2="x" k="-20" /> + <hkern u1="Þ" u2="v" k="-20" /> + <hkern u1="Þ" u2="_" k="61" /> + <hkern u1="Þ" u2="\" k="82" /> + <hkern u1="Þ" u2="X" k="41" /> + <hkern u1="Þ" u2="V" k="31" /> + <hkern u1="Þ" u2="@" k="-10" /> + <hkern u1="Þ" u2="?" k="-20" /> + <hkern u1="Þ" u2=">" k="-20" /> + <hkern u1="Þ" u2="/" k="82" /> + <hkern u1="Þ" u2=")" k="20" /> + <hkern u1="Þ" u2="&" k="20" /> + <hkern u1="ß" u2="ł" k="-10" /> + <hkern u1="ß" u2="ß" k="31" /> + <hkern u1="ß" u2="º" k="20" /> + <hkern u1="ß" u2="ª" k="41" /> + <hkern u1="ß" u2="\" k="20" /> + <hkern u1="ß" u2="/" k="-20" /> + <hkern u1="ß" u2=")" k="-41" /> + <hkern u1="ì" u2="\" k="41" /> + <hkern u1="í" u2="”" k="-123" /> + <hkern u1="í" u2="“" k="-61" /> + <hkern u1="í" u2="’" k="-123" /> + <hkern u1="í" u2="‘" k="-61" /> + <hkern u1="í" u2="ï" k="-82" /> + <hkern u1="í" u2="î" k="-82" /> + <hkern u1="í" u2="ì" k="-164" /> + <hkern u1="í" u2="}" k="-82" /> + <hkern u1="í" u2="]" k="-82" /> + <hkern u1="í" u2="\" k="-143" /> + <hkern u1="í" u2="?" k="-61" /> + <hkern u1="í" u2=")" k="-61" /> + <hkern u1="í" u2="'" k="-82" /> + <hkern u1="í" u2=""" k="-82" /> + <hkern u1="î" u2="”" k="-61" /> + <hkern u1="î" u2="“" k="-72" /> + <hkern u1="î" u2="’" k="-61" /> + <hkern u1="î" u2="‘" k="-72" /> + <hkern u1="î" u2="ï" k="-102" /> + <hkern u1="î" u2="î" k="-143" /> + <hkern u1="î" u2="\" k="-41" /> + <hkern u1="î" u2="?" k="-82" /> + <hkern u1="î" u2="*" k="-61" /> + <hkern u1="î" u2="'" k="-82" /> + <hkern u1="î" u2=""" k="-82" /> + <hkern u1="ï" u2="”" k="-61" /> + <hkern u1="ï" u2="“" k="-51" /> + <hkern u1="ï" u2="’" k="-61" /> + <hkern u1="ï" u2="‘" k="-51" /> + <hkern u1="ï" u2="ï" k="-72" /> + <hkern u1="ï" u2="î" k="-82" /> + <hkern u1="ï" u2="ì" k="-72" /> + <hkern u1="ï" u2="\" k="-20" /> + <hkern u1="ï" u2="?" k="-61" /> + <hkern u1="ï" u2="*" k="-51" /> + <hkern u1="ï" u2="'" k="-82" /> + <hkern u1="ï" u2=""" k="-82" /> + <hkern u1="ð" u2="\" k="82" /> + <hkern u1="÷" u2="X" k="20" /> + <hkern u1="÷" u2="V" k="82" /> + <hkern u1="÷" u2="4" k="20" /> + <hkern u1="÷" u2="3" k="41" /> + <hkern u1="÷" u2="1" k="20" /> + <hkern u1="ł" u2="‡" k="-41" /> + <hkern u1="ł" u2="ł" k="-20" /> + <hkern u1="ł" u2="·" k="-20" /> + <hkern u1="ł" u2="¶" k="-41" /> + <hkern u1="ł" u2="x" k="-41" /> + <hkern u1="ł" u2="v" k="-61" /> + <hkern u1="ł" u2="@" k="-61" /> + <hkern u1="ł" u2="/" k="-20" /> + <hkern u1="Œ" u2="ì" k="-20" /> + <hkern u1="Ÿ" u2="š" k="92" /> + <hkern u1="Ÿ" u2="õ" k="174" /> + <hkern u1="Ÿ" u2="ò" k="154" /> + <hkern u1="Ÿ" u2="ð" k="154" /> + <hkern u1="Ÿ" u2="ï" k="-20" /> + <hkern u1="Ÿ" u2="í" k="61" /> + <hkern u1="Ÿ" u2="ì" k="-82" /> + <hkern u1="Ž" u2="ï" k="-10" /> + <hkern u1="Ž" u2="î" k="-10" /> + <hkern u1="Ž" u2="ì" k="-31" /> + <hkern u1="ƒ" u2="‡" k="-41" /> + <hkern u1="ƒ" u2="†" k="-41" /> + <hkern u1="ƒ" u2="ƒ" k="184" /> + <hkern u1="ƒ" u2="÷" k="61" /> + <hkern u1="ƒ" u2="¶" k="20" /> + <hkern u1="ƒ" u2="~" k="41" /> + <hkern u1="ƒ" u2="x" k="20" /> + <hkern u1="ƒ" u2="v" k="20" /> + <hkern u1="ƒ" u2="_" k="143" /> + <hkern u1="ƒ" u2="\" k="-82" /> + <hkern u1="ƒ" u2="@" k="41" /> + <hkern u1="ƒ" u2=">" k="-82" /> + <hkern u1="ƒ" u2="=" k="20" /> + <hkern u1="ƒ" u2="<" k="41" /> + <hkern u1="ƒ" u2="/" k="82" /> + <hkern u1="ƒ" u2="+" k="41" /> + <hkern u1="ƒ" u2="*" k="-61" /> + <hkern u1="ƒ" u2=")" k="-20" /> + <hkern u1="ƒ" u2="&" k="41" /> + <hkern u1="‘" u2="ï" k="-61" /> + <hkern u1="‘" u2="î" k="-61" /> + <hkern u1="‘" u2="ì" k="-82" /> + <hkern u1="’" u2="ï" k="-61" /> + <hkern u1="’" u2="î" k="-82" /> + <hkern u1="’" u2="ì" k="-61" /> + <hkern u1="‚" u2="g" k="-20" /> + <hkern u1="“" u2="ï" k="-61" /> + <hkern u1="“" u2="î" k="-61" /> + <hkern u1="“" u2="ì" k="-82" /> + <hkern u1="”" u2="ï" k="-61" /> + <hkern u1="”" u2="î" k="-82" /> + <hkern u1="”" u2="ì" k="-61" /> + <hkern u1="„" u2="g" k="-20" /> + <hkern u1="†" u2="x" k="-20" /> + <hkern u1="†" u2="v" k="-61" /> + <hkern u1="†" u2="V" k="-41" /> + <hkern u1="‡" u2="x" k="-20" /> + <hkern u1="‡" u2="v" k="-61" /> + <hkern u1="‡" u2="V" k="-20" /> + <hkern u1="•" u2="X" k="61" /> + <hkern u1="•" u2="V" k="82" /> + <hkern u1="…" u2="g" k="20" /> + <hkern u1="−" u2="3" k="41" /> + <hkern u1="−" u2="2" k="20" /> + <hkern u1="−" u2=")" k="82" /> + <hkern u1="√" u2="9" k="82" /> + <hkern u1="√" u2="8" k="82" /> + <hkern u1="√" u2="5" k="102" /> + <hkern u1="√" u2="4" k="205" /> + <hkern u1="√" u2="3" k="82" /> + <hkern u1="√" u2="2" k="102" /> + <hkern u1="√" u2="1" k="61" /> + <hkern u1="∞" u2="7" k="20" /> + <hkern u1="∫" u2="9" k="-41" /> + <hkern u1="∫" u2="8" k="-20" /> + <hkern u1="∫" u2="7" k="-184" /> + <hkern u1="∫" u2="5" k="-41" /> + <hkern u1="∫" u2="3" k="-82" /> + <hkern u1="∫" u2="2" k="-82" /> + <hkern u1="∫" u2="1" k="-82" /> + <hkern u1="≈" u2="8" k="-41" /> + <hkern u1="≈" u2="7" k="41" /> + <hkern u1="≈" u2="4" k="-20" /> + <hkern u1="≠" u2="8" k="-20" /> + <hkern u1="≥" u2="1" k="20" /> + <hkern g1="approxequal" + g2="zero,six" + k="-41" /> + <hkern g1="asciitilde" + g2="zero,six" + k="-20" /> + <hkern g1="cent" + g2="zero,six" + k="20" /> + <hkern g1="copyright,registered" + g2="five" + k="20" /> + <hkern g1="copyright,registered" + g2="four" + k="20" /> + <hkern g1="copyright,registered" + g2="one" + k="20" /> + <hkern g1="copyright,registered" + g2="three" + k="61" /> + <hkern g1="dollar" + g2="zero,six" + k="20" /> + <hkern g1="equal" + g2="zero,six" + k="-20" /> + <hkern g1="greaterequal" + g2="zero,six" + k="-20" /> + <hkern g1="infinity" + g2="zero,six" + k="-20" /> + <hkern g1="less" + g2="zero,six" + k="-41" /> + <hkern g1="lessequal" + g2="zero,six" + k="-20" /> + <hkern g1="minus" + g2="zero,six" + k="-20" /> + <hkern g1="minus" + g2="bracketright,braceright" + k="82" /> + <hkern g1="notequal" + g2="zero,six" + k="-20" /> + <hkern g1="percent" + g2="zero,six" + k="41" /> + <hkern g1="plus" + g2="bracketright,braceright" + k="82" /> + <hkern g1="radical" + g2="zero,six" + k="205" /> + <hkern g1="sterling" + g2="zero,six" + k="20" /> + <hkern g1="backslash" + g2="zero,six" + k="82" /> + <hkern g1="bracketleft,braceleft" + g2="five" + k="41" /> + <hkern g1="bracketleft,braceleft" + g2="four" + k="61" /> + <hkern g1="bracketleft,braceleft" + g2="hyphen,endash,emdash" + k="41" /> + <hkern g1="bracketleft,braceleft" + g2="minus" + k="82" /> + <hkern g1="bracketleft,braceleft" + g2="nine" + k="-20" /> + <hkern g1="bracketleft,braceleft" + g2="plus" + k="82" /> + <hkern g1="bracketleft,braceleft" + g2="seven" + k="-102" /> + <hkern g1="colon,semicolon" + g2="nine" + k="-31" /> + <hkern g1="colon,semicolon" + g2="seven" + k="-20" /> + <hkern g1="comma,period,ellipsis" + g2="zero,six" + k="41" /> + <hkern g1="comma,period,ellipsis" + g2="four" + k="102" /> + <hkern g1="comma,period,ellipsis" + g2="seven" + k="41" /> + <hkern g1="comma,period,ellipsis" + g2="eight" + k="20" /> + <hkern g1="comma,period,ellipsis" + g2="one" + k="143" /> + <hkern g1="guilsinglleft" + g2="one" + k="-41" /> + <hkern g1="guilsinglleft" + g2="two" + k="-31" /> + <hkern g1="guilsinglright" + g2="seven" + k="61" /> + <hkern g1="guilsinglright" + g2="one" + k="61" /> + <hkern g1="guilsinglright" + g2="two" + k="20" /> + <hkern g1="guilsinglright" + g2="three" + k="20" /> + <hkern g1="hyphen,endash,emdash" + g2="five" + k="20" /> + <hkern g1="hyphen,endash,emdash" + g2="four" + k="10" /> + <hkern g1="hyphen,endash,emdash" + g2="seven" + k="61" /> + <hkern g1="hyphen,endash,emdash" + g2="one" + k="41" /> + <hkern g1="hyphen,endash,emdash" + g2="three" + k="41" /> + <hkern g1="hyphen,endash,emdash" + g2="bracketright,braceright" + k="41" /> + <hkern g1="hyphen,endash,emdash" + g2="parenright" + k="82" /> + <hkern g1="hyphen,endash,emdash" + g2="space" + k="102" /> + <hkern g1="numbersign" + g2="zero,six" + k="41" /> + <hkern g1="parenleft" + g2="zero,six" + k="41" /> + <hkern g1="parenleft" + g2="hyphen,endash,emdash" + k="82" /> + <hkern g1="questiondown" + g2="zero,six" + k="41" /> + <hkern g1="questiondown" + g2="quoteleft,quotedblleft" + k="61" /> + <hkern g1="questiondown" + g2="quotesinglbase,quotedblbase" + k="-82" /> + <hkern g1="quotedbl,quotesingle" + g2="four" + k="102" /> + <hkern g1="quotedbl,quotesingle" + g2="seven" + k="-41" /> + <hkern g1="quotedbl,quotesingle" + g2="one" + k="-61" /> + <hkern g1="quotedbl,quotesingle" + g2="two" + k="-20" /> + <hkern g1="quoteleft,quotedblleft" + g2="zero,six" + k="20" /> + <hkern g1="quoteleft,quotedblleft" + g2="four" + k="143" /> + <hkern g1="quoteleft,quotedblleft" + g2="seven" + k="-41" /> + <hkern g1="quoteleft,quotedblleft" + g2="one" + k="-41" /> + <hkern g1="quoteright,quotedblright" + g2="zero,six" + k="41" /> + <hkern g1="quoteright,quotedblright" + g2="five" + k="61" /> + <hkern g1="quoteright,quotedblright" + g2="four" + k="143" /> + <hkern g1="quoteright,quotedblright" + g2="seven" + k="-41" /> + <hkern g1="quoteright,quotedblright" + g2="eight" + k="20" /> + <hkern g1="quoteright,quotedblright" + g2="one" + k="-20" /> + <hkern g1="quoteright,quotedblright" + g2="two" + k="20" /> + <hkern g1="quoteright,quotedblright" + g2="comma,period,ellipsis" + k="143" /> + <hkern g1="quoteright,quotedblright" + g2="question" + k="-41" /> + <hkern g1="quoteright,quotedblright" + g2="questiondown" + k="123" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="zero,six" + k="61" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="four" + k="61" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="seven" + k="41" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="one" + k="82" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="two" + k="-20" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="three" + k="41" /> + <hkern g1="slash" + g2="zero,six" + k="82" /> + <hkern g1="underscore" + g2="zero,six" + k="41" /> + <hkern g1="eight" + g2="comma,period,ellipsis" + k="20" /> + <hkern g1="eight" + g2="zero,six" + k="10" /> + <hkern g1="five" + g2="comma,period,ellipsis" + k="20" /> + <hkern g1="five" + g2="quoteleft,quotedblleft" + k="20" /> + <hkern g1="five" + g2="quotesinglbase,quotedblbase" + k="20" /> + <hkern g1="four" + g2="quoteleft,quotedblleft" + k="41" /> + <hkern g1="four" + g2="quoteright,quotedblright" + k="41" /> + <hkern g1="one" + g2="comma,period,ellipsis" + k="20" /> + <hkern g1="one" + g2="zero,six" + k="-10" /> + <hkern g1="one" + g2="quoteright,quotedblright" + k="20" /> + <hkern g1="one" + g2="bracketright,braceright" + k="-20" /> + <hkern g1="one" + g2="copyright,registered" + k="20" /> + <hkern g1="one" + g2="quotedbl,quotesingle" + k="20" /> + <hkern g1="seven" + g2="comma,period,ellipsis" + k="225" /> + <hkern g1="seven" + g2="quoteleft,quotedblleft" + k="-61" /> + <hkern g1="seven" + g2="quotesinglbase,quotedblbase" + k="143" /> + <hkern g1="seven" + g2="quoteright,quotedblright" + k="-41" /> + <hkern g1="seven" + g2="copyright,registered" + k="20" /> + <hkern g1="seven" + g2="quotedbl,quotesingle" + k="-41" /> + <hkern g1="seven" + g2="colon,semicolon" + k="61" /> + <hkern g1="seven" + g2="guilsinglleft" + k="123" /> + <hkern g1="seven" + g2="guilsinglright" + k="41" /> + <hkern g1="seven" + g2="hyphen,endash,emdash" + k="102" /> + <hkern g1="six" + g2="comma,period,ellipsis" + k="20" /> + <hkern g1="six" + g2="quotesinglbase,quotedblbase" + k="20" /> + <hkern g1="six" + g2="copyright,registered" + k="20" /> + <hkern g1="three" + g2="comma,period,ellipsis" + k="20" /> + <hkern g1="three" + g2="quoteright,quotedblright" + k="10" /> + <hkern g1="three" + g2="hyphen,endash,emdash" + k="20" /> + <hkern g1="two" + g2="guilsinglright" + k="10" /> + <hkern g1="zero,nine" + g2="comma,period,ellipsis" + k="82" /> + <hkern g1="zero,nine" + g2="zero,six" + k="10" /> + <hkern g1="zero,nine" + g2="quoteleft,quotedblleft" + k="20" /> + <hkern g1="zero,nine" + g2="quotesinglbase,quotedblbase" + k="41" /> + <hkern g1="zero,nine" + g2="quoteright,quotedblright" + k="20" /> + <hkern g1="zero,nine" + g2="approxequal" + k="-41" /> + <hkern g1="zero,nine" + g2="asciitilde" + k="-20" /> + <hkern g1="zero,nine" + g2="backslash" + k="82" /> + <hkern g1="zero,nine" + g2="eight" + k="10" /> + <hkern g1="zero,nine" + g2="equal" + k="-20" /> + <hkern g1="zero,nine" + g2="five" + k="10" /> + <hkern g1="zero,nine" + g2="greaterequal" + k="-20" /> + <hkern g1="zero,nine" + g2="infinity" + k="-20" /> + <hkern g1="zero,nine" + g2="lessequal" + k="-20" /> + <hkern g1="zero,nine" + g2="minus" + k="-20" /> + <hkern g1="zero,nine" + g2="notequal" + k="-20" /> + <hkern g1="zero,nine" + g2="numbersign" + k="41" /> + <hkern g1="zero,nine" + g2="one" + k="10" /> + <hkern g1="zero,nine" + g2="parenright" + k="41" /> + <hkern g1="zero,nine" + g2="percent" + k="41" /> + <hkern g1="zero,nine" + g2="slash" + k="82" /> + <hkern g1="zero,nine" + g2="summation" + k="41" /> + <hkern g1="zero,nine" + g2="three" + k="10" /> + <hkern g1="zero,nine" + g2="underscore" + k="41" /> + <hkern g1="space" + g2="hyphen,endash,emdash" + k="102" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="51" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="J" + k="-20" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="Oslash" + k="41" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="S,Scaron,uni0405" + k="20" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="133" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="31" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="V,uni0423,uni0474" + k="113" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="92" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="Y,Yacute,Ydieresis,uni040E" + k="133" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="10" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="ampersand" + k="10" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="asciicircum" + k="41" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="asciitilde" + k="41" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="asterisk" + k="225" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="at" + k="61" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="backslash" + k="143" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="braceleft" + k="41" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="bullet" + k="61" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="20" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="copyright,registered" + k="51" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="dagger" + k="61" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="divide" + k="20" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="germandbls" + k="10" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="guilsinglleft" + k="41" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="hyphen,endash,emdash" + k="41" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="less" + k="41" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="m,n,p,r,ntilde" + k="10" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="ordfeminine" + k="225" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="ordmasculine" + k="184" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="oslash" + k="10" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="paragraph" + k="41" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="parenleft" + k="20" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="periodcentered" + k="41" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="plus" + k="31" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="question" + k="92" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="questiondown" + k="-61" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="quotedbl,quotesingle" + k="82" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="quoteleft,quotedblleft" + k="225" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="quoteright,quotedblright" + k="225" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="quotesinglbase,quotedblbase" + k="-20" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="slash" + k="-41" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="t" + k="51" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="trademark" + k="164" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="51" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="underscore" + k="-61" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="61" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="w" + k="61" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="51" /> + <hkern g1="B,uni0411,uni0412,uni0417,uni0432" + g2="J" + k="-31" /> + <hkern g1="B,uni0411,uni0412,uni0417,uni0432" + g2="Y,Yacute,Ydieresis,uni040E" + k="10" /> + <hkern g1="B,uni0411,uni0412,uni0417,uni0432" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="20" /> + <hkern g1="B,uni0411,uni0412,uni0417,uni0432" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="-10" /> + <hkern g1="B,uni0411,uni0412,uni0417,uni0432" + g2="guilsinglleft" + k="20" /> + <hkern g1="B,uni0411,uni0412,uni0417,uni0432" + g2="m,n,p,r,ntilde" + k="10" /> + <hkern g1="B,uni0411,uni0412,uni0417,uni0432" + g2="oslash" + k="10" /> + <hkern g1="B,uni0411,uni0412,uni0417,uni0432" + g2="quoteright,quotedblright" + k="31" /> + <hkern g1="B,uni0411,uni0412,uni0417,uni0432" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="41" /> + <hkern g1="B,uni0411,uni0412,uni0417,uni0432" + g2="w" + k="10" /> + <hkern g1="B,uni0411,uni0412,uni0417,uni0432" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="10" /> + <hkern g1="B,uni0411,uni0412,uni0417,uni0432" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="41" /> + <hkern g1="B,uni0411,uni0412,uni0417,uni0432" + g2="comma,period,ellipsis" + k="31" /> + <hkern g1="B,uni0411,uni0412,uni0417,uni0432" + g2="f,fi,fl,f_f_i,f_f_l" + k="10" /> + <hkern g1="B,uni0411,uni0412,uni0417,uni0432" + g2="s,scaron,uni0455" + k="10" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="20" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="Oslash" + k="10" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="10" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="V,uni0423,uni0474" + k="20" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="31" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="Y,Yacute,Ydieresis,uni040E" + k="51" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="41" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="ampersand" + k="31" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="asciicircum" + k="20" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="at" + k="61" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="backslash" + k="51" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="braceleft" + k="41" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="41" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="copyright,registered" + k="10" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="germandbls" + k="41" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="guilsinglleft" + k="20" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="m,n,p,r,ntilde" + k="31" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="ordfeminine" + k="41" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="ordmasculine" + k="10" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="oslash" + k="31" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="questiondown" + k="41" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="slash" + k="51" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="t" + k="10" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="trademark" + k="20" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="41" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="underscore" + k="20" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="20" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="w" + k="20" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="31" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="41" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="comma,period,ellipsis" + k="20" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="f,fi,fl,f_f_i,f_f_l" + k="20" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="s,scaron,uni0455" + k="20" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="X,uni0416,uni0425,uni046A" + k="31" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="b,h,k,l,thorn" + k="20" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="bracketright,braceright" + k="-20" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="florin" + k="82" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="greater" + k="-20" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="section" + k="10" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="x,uni0445,uni04B3" + k="20" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="z,zcaron" + k="20" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="S,Scaron,uni0405" + k="10" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="51" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="V,uni0423,uni0474" + k="51" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="41" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="Y,Yacute,Ydieresis,uni040E" + k="92" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="ampersand" + k="41" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="asciicircum" + k="-20" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="asciitilde" + k="-20" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="asterisk" + k="10" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="backslash" + k="72" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="copyright,registered" + k="-20" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="guilsinglleft" + k="10" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="ordfeminine" + k="20" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="questiondown" + k="41" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="quoteleft,quotedblleft" + k="10" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="quoteright,quotedblright" + k="20" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="quotesinglbase,quotedblbase" + k="102" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="slash" + k="72" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="t" + k="-51" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="trademark" + k="72" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="underscore" + k="82" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="51" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="comma,period,ellipsis" + k="61" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="f,fi,fl,f_f_i,f_f_l" + k="-10" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="X,uni0416,uni0425,uni046A" + k="61" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="bracketright,braceright" + k="41" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="florin" + k="123" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="greater" + k="-20" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="Lslash" + k="-20" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="Z,Zcaron" + k="20" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="bracketleft" + k="10" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="guilsinglright" + k="20" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="lslash" + k="-10" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="parenright" + k="41" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="10" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="J" + k="20" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="Oslash" + k="10" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="31" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="at" + k="51" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="braceleft" + k="61" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="41" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="germandbls" + k="41" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="guilsinglleft" + k="41" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="hyphen,endash,emdash" + k="10" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="m,n,p,r,ntilde" + k="31" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="ordfeminine" + k="20" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="ordmasculine" + k="20" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="oslash" + k="41" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="quoteright,quotedblright" + k="10" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="31" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="31" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="w" + k="31" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="31" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="f,fi,fl,f_f_i,f_f_l" + k="10" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="s,scaron,uni0455" + k="10" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="bracketright,braceright" + k="-31" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="greater" + k="-20" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="guilsinglright" + k="20" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="parenright" + k="-20" /> + <hkern g1="F" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="10" /> + <hkern g1="F" + g2="J" + k="82" /> + <hkern g1="F" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="-61" /> + <hkern g1="F" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="10" /> + <hkern g1="F" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="72" /> + <hkern g1="F" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="72" /> + <hkern g1="F" + g2="guilsinglleft" + k="41" /> + <hkern g1="F" + g2="hyphen,endash,emdash" + k="20" /> + <hkern g1="F" + g2="m,n,p,r,ntilde" + k="51" /> + <hkern g1="F" + g2="oslash" + k="82" /> + <hkern g1="F" + g2="quotedbl,quotesingle" + k="-41" /> + <hkern g1="F" + g2="quoteleft,quotedblleft" + k="-41" /> + <hkern g1="F" + g2="quoteright,quotedblright" + k="-31" /> + <hkern g1="F" + g2="quotesinglbase,quotedblbase" + k="102" /> + <hkern g1="F" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="92" /> + <hkern g1="F" + g2="w" + k="41" /> + <hkern g1="F" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="31" /> + <hkern g1="F" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="92" /> + <hkern g1="F" + g2="comma,period,ellipsis" + k="205" /> + <hkern g1="F" + g2="f,fi,fl,f_f_i,f_f_l" + k="20" /> + <hkern g1="F" + g2="s,scaron,uni0455" + k="31" /> + <hkern g1="F" + g2="b,h,k,l,thorn" + k="-10" /> + <hkern g1="F" + g2="bracketright,braceright" + k="-61" /> + <hkern g1="F" + g2="z,zcaron" + k="20" /> + <hkern g1="F" + g2="Z,Zcaron" + k="-20" /> + <hkern g1="F" + g2="guilsinglright" + k="20" /> + <hkern g1="F" + g2="Eth" + k="-10" /> + <hkern g1="F" + g2="i,igrave,iacute,icircumflex,idieresis,uni0469" + k="10" /> + <hkern g1="F" + g2="j" + k="10" /> + <hkern g1="G" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="10" /> + <hkern g1="G" + g2="V,uni0423,uni0474" + k="31" /> + <hkern g1="G" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="20" /> + <hkern g1="G" + g2="Y,Yacute,Ydieresis,uni040E" + k="61" /> + <hkern g1="G" + g2="ampersand" + k="31" /> + <hkern g1="G" + g2="asciitilde" + k="-10" /> + <hkern g1="G" + g2="backslash" + k="41" /> + <hkern g1="G" + g2="braceleft" + k="20" /> + <hkern g1="G" + g2="guilsinglleft" + k="10" /> + <hkern g1="G" + g2="questiondown" + k="-41" /> + <hkern g1="G" + g2="quoteright,quotedblright" + k="10" /> + <hkern g1="G" + g2="slash" + k="-10" /> + <hkern g1="G" + g2="t" + k="-51" /> + <hkern g1="G" + g2="trademark" + k="20" /> + <hkern g1="G" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="10" /> + <hkern g1="G" + g2="underscore" + k="-20" /> + <hkern g1="G" + g2="greater" + k="-41" /> + <hkern g1="G" + g2="lslash" + k="-41" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="10" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="at" + k="20" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="braceleft" + k="61" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="bullet" + k="20" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="guilsinglleft" + k="20" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="questiondown" + k="61" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="greater" + k="-20" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="ampersand" + k="10" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="asciitilde" + k="10" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="at" + k="10" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="braceleft" + k="41" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="bullet" + k="41" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="10" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="divide" + k="10" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="germandbls" + k="20" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="guilsinglleft" + k="20" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="hyphen,endash,emdash" + k="10" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="less" + k="10" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="m,n,p,r,ntilde" + k="10" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="oslash" + k="10" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="periodcentered" + k="20" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="plus" + k="10" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="questiondown" + k="41" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="quotesinglbase,quotedblbase" + k="82" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="slash" + k="41" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="underscore" + k="31" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="61" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="comma,period,ellipsis" + k="51" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="florin" + k="102" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="colon,semicolon" + k="10" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="exclamdown" + k="20" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="113" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="J" + k="10" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="Oslash" + k="41" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="S,Scaron,uni0405" + k="20" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="20" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="V,uni0423,uni0474" + k="31" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="31" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="31" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="ampersand" + k="113" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="asciicircum" + k="41" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="asciitilde" + k="123" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="asterisk" + k="20" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="at" + k="113" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="braceleft" + k="82" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="bullet" + k="102" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="72" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="copyright,registered" + k="113" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="divide" + k="61" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="germandbls" + k="72" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="guilsinglleft" + k="133" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="hyphen,endash,emdash" + k="143" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="less" + k="102" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="m,n,p,r,ntilde" + k="31" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="ordfeminine" + k="82" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="ordmasculine" + k="61" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="oslash" + k="51" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="periodcentered" + k="82" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="plus" + k="82" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="question" + k="10" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="questiondown" + k="-20" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="slash" + k="-41" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="t" + k="61" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="113" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="underscore" + k="-41" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="92" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="w" + k="92" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="123" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="20" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="f,fi,fl,f_f_i,f_f_l" + k="41" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="s,scaron,uni0455" + k="20" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="bracketright,braceright" + k="-10" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="florin" + k="102" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="section" + k="31" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="x,uni0445,uni04B3" + k="20" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="guilsinglright" + k="51" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="parenright" + k="-10" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="colon,semicolon" + k="20" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="equal" + k="102" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="multiply" + k="20" /> + <hkern g1="L,Lslash" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="72" /> + <hkern g1="L,Lslash" + g2="J" + k="-41" /> + <hkern g1="L,Lslash" + g2="Oslash" + k="41" /> + <hkern g1="L,Lslash" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="143" /> + <hkern g1="L,Lslash" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="20" /> + <hkern g1="L,Lslash" + g2="V,uni0423,uni0474" + k="123" /> + <hkern g1="L,Lslash" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="102" /> + <hkern g1="L,Lslash" + g2="Y,Yacute,Ydieresis,uni040E" + k="133" /> + <hkern g1="L,Lslash" + g2="ampersand" + k="51" /> + <hkern g1="L,Lslash" + g2="asciicircum" + k="102" /> + <hkern g1="L,Lslash" + g2="asciitilde" + k="102" /> + <hkern g1="L,Lslash" + g2="asterisk" + k="143" /> + <hkern g1="L,Lslash" + g2="at" + k="41" /> + <hkern g1="L,Lslash" + g2="backslash" + k="143" /> + <hkern g1="L,Lslash" + g2="braceleft" + k="61" /> + <hkern g1="L,Lslash" + g2="bullet" + k="41" /> + <hkern g1="L,Lslash" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="10" /> + <hkern g1="L,Lslash" + g2="copyright,registered" + k="41" /> + <hkern g1="L,Lslash" + g2="divide" + k="20" /> + <hkern g1="L,Lslash" + g2="germandbls" + k="10" /> + <hkern g1="L,Lslash" + g2="guilsinglleft" + k="41" /> + <hkern g1="L,Lslash" + g2="hyphen,endash,emdash" + k="82" /> + <hkern g1="L,Lslash" + g2="less" + k="82" /> + <hkern g1="L,Lslash" + g2="ordfeminine" + k="164" /> + <hkern g1="L,Lslash" + g2="ordmasculine" + k="164" /> + <hkern g1="L,Lslash" + g2="oslash" + k="10" /> + <hkern g1="L,Lslash" + g2="paragraph" + k="102" /> + <hkern g1="L,Lslash" + g2="plus" + k="41" /> + <hkern g1="L,Lslash" + g2="question" + k="92" /> + <hkern g1="L,Lslash" + g2="questiondown" + k="-61" /> + <hkern g1="L,Lslash" + g2="quotedbl,quotesingle" + k="164" /> + <hkern g1="L,Lslash" + g2="quoteleft,quotedblleft" + k="143" /> + <hkern g1="L,Lslash" + g2="quoteright,quotedblright" + k="123" /> + <hkern g1="L,Lslash" + g2="quotesinglbase,quotedblbase" + k="-41" /> + <hkern g1="L,Lslash" + g2="slash" + k="-82" /> + <hkern g1="L,Lslash" + g2="t" + k="31" /> + <hkern g1="L,Lslash" + g2="trademark" + k="225" /> + <hkern g1="L,Lslash" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="41" /> + <hkern g1="L,Lslash" + g2="underscore" + k="-61" /> + <hkern g1="L,Lslash" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="82" /> + <hkern g1="L,Lslash" + g2="w" + k="82" /> + <hkern g1="L,Lslash" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="92" /> + <hkern g1="L,Lslash" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="-41" /> + <hkern g1="L,Lslash" + g2="comma,period,ellipsis" + k="-20" /> + <hkern g1="L,Lslash" + g2="f,fi,fl,f_f_i,f_f_l" + k="20" /> + <hkern g1="L,Lslash" + g2="bracketright,braceright" + k="-20" /> + <hkern g1="L,Lslash" + g2="parenright" + k="-20" /> + <hkern g1="L,Lslash" + g2="equal" + k="41" /> + <hkern g1="L,Lslash" + g2="bar" + k="-41" /> + <hkern g1="L,Lslash" + g2="brokenbar" + k="-41" /> + <hkern g1="Oslash" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="41" /> + <hkern g1="Oslash" + g2="V,uni0423,uni0474" + k="41" /> + <hkern g1="Oslash" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="31" /> + <hkern g1="Oslash" + g2="Y,Yacute,Ydieresis,uni040E" + k="72" /> + <hkern g1="Oslash" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="10" /> + <hkern g1="Oslash" + g2="backslash" + k="51" /> + <hkern g1="Oslash" + g2="germandbls" + k="31" /> + <hkern g1="Oslash" + g2="ordfeminine" + k="20" /> + <hkern g1="Oslash" + g2="questiondown" + k="72" /> + <hkern g1="Oslash" + g2="quotesinglbase,quotedblbase" + k="61" /> + <hkern g1="Oslash" + g2="slash" + k="72" /> + <hkern g1="Oslash" + g2="underscore" + k="82" /> + <hkern g1="Oslash" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="51" /> + <hkern g1="Oslash" + g2="comma,period,ellipsis" + k="61" /> + <hkern g1="Oslash" + g2="X,uni0416,uni0425,uni046A" + k="31" /> + <hkern g1="Oslash" + g2="bracketright,braceright" + k="41" /> + <hkern g1="Oslash" + g2="florin" + k="82" /> + <hkern g1="Oslash" + g2="Z,Zcaron" + k="20" /> + <hkern g1="Oslash" + g2="lslash" + k="-10" /> + <hkern g1="Oslash" + g2="parenright" + k="41" /> + <hkern g1="P,uni0420" + g2="J" + k="143" /> + <hkern g1="P,uni0420" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="10" /> + <hkern g1="P,uni0420" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="10" /> + <hkern g1="P,uni0420" + g2="Y,Yacute,Ydieresis,uni040E" + k="10" /> + <hkern g1="P,uni0420" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="61" /> + <hkern g1="P,uni0420" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="82" /> + <hkern g1="P,uni0420" + g2="guilsinglleft" + k="61" /> + <hkern g1="P,uni0420" + g2="hyphen,endash,emdash" + k="20" /> + <hkern g1="P,uni0420" + g2="m,n,p,r,ntilde" + k="31" /> + <hkern g1="P,uni0420" + g2="oslash" + k="72" /> + <hkern g1="P,uni0420" + g2="quotedbl,quotesingle" + k="-20" /> + <hkern g1="P,uni0420" + g2="quoteleft,quotedblleft" + k="-31" /> + <hkern g1="P,uni0420" + g2="quoteright,quotedblright" + k="-20" /> + <hkern g1="P,uni0420" + g2="quotesinglbase,quotedblbase" + k="102" /> + <hkern g1="P,uni0420" + g2="t" + k="-20" /> + <hkern g1="P,uni0420" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="41" /> + <hkern g1="P,uni0420" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-20" /> + <hkern g1="P,uni0420" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="123" /> + <hkern g1="P,uni0420" + g2="comma,period,ellipsis" + k="246" /> + <hkern g1="P,uni0420" + g2="f,fi,fl,f_f_i,f_f_l" + k="-10" /> + <hkern g1="P,uni0420" + g2="s,scaron,uni0455" + k="51" /> + <hkern g1="P,uni0420" + g2="b,h,k,l,thorn" + k="20" /> + <hkern g1="P,uni0420" + g2="z,zcaron" + k="20" /> + <hkern g1="P,uni0420" + g2="Z,Zcaron" + k="20" /> + <hkern g1="P,uni0420" + g2="guilsinglright" + k="-20" /> + <hkern g1="P,uni0420" + g2="Eth" + k="-20" /> + <hkern g1="P,uni0420" + g2="j" + k="10" /> + <hkern g1="Q" + g2="J" + k="-10" /> + <hkern g1="Q" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="41" /> + <hkern g1="Q" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="41" /> + <hkern g1="Q" + g2="Y,Yacute,Ydieresis,uni040E" + k="82" /> + <hkern g1="Q" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="10" /> + <hkern g1="Q" + g2="quoteright,quotedblright" + k="20" /> + <hkern g1="Q" + g2="w" + k="10" /> + <hkern g1="Q" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="10" /> + <hkern g1="Q" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="31" /> + <hkern g1="Q" + g2="comma,period,ellipsis" + k="20" /> + <hkern g1="Q" + g2="bracketright,braceright" + k="20" /> + <hkern g1="Q" + g2="guilsinglright" + k="31" /> + <hkern g1="Q" + g2="Eth" + k="-10" /> + <hkern g1="R" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="10" /> + <hkern g1="R" + g2="J" + k="31" /> + <hkern g1="R" + g2="Oslash" + k="10" /> + <hkern g1="R" + g2="V,uni0423,uni0474" + k="10" /> + <hkern g1="R" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="10" /> + <hkern g1="R" + g2="Y,Yacute,Ydieresis,uni040E" + k="20" /> + <hkern g1="R" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="10" /> + <hkern g1="R" + g2="ampersand" + k="10" /> + <hkern g1="R" + g2="asciicircum" + k="-20" /> + <hkern g1="R" + g2="asciitilde" + k="20" /> + <hkern g1="R" + g2="asterisk" + k="-20" /> + <hkern g1="R" + g2="at" + k="31" /> + <hkern g1="R" + g2="backslash" + k="10" /> + <hkern g1="R" + g2="braceleft" + k="20" /> + <hkern g1="R" + g2="bullet" + k="41" /> + <hkern g1="R" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="41" /> + <hkern g1="R" + g2="dagger" + k="-20" /> + <hkern g1="R" + g2="germandbls" + k="31" /> + <hkern g1="R" + g2="guilsinglleft" + k="31" /> + <hkern g1="R" + g2="hyphen,endash,emdash" + k="41" /> + <hkern g1="R" + g2="less" + k="10" /> + <hkern g1="R" + g2="m,n,p,r,ntilde" + k="10" /> + <hkern g1="R" + g2="ordfeminine" + k="41" /> + <hkern g1="R" + g2="oslash" + k="61" /> + <hkern g1="R" + g2="periodcentered" + k="10" /> + <hkern g1="R" + g2="plus" + k="20" /> + <hkern g1="R" + g2="quoteleft,quotedblleft" + k="-20" /> + <hkern g1="R" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="41" /> + <hkern g1="R" + g2="underscore" + k="-10" /> + <hkern g1="R" + g2="w" + k="20" /> + <hkern g1="R" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="10" /> + <hkern g1="R" + g2="comma,period,ellipsis" + k="10" /> + <hkern g1="R" + g2="s,scaron,uni0455" + k="10" /> + <hkern g1="R" + g2="bracketright,braceright" + k="-20" /> + <hkern g1="R" + g2="florin" + k="102" /> + <hkern g1="R" + g2="greater" + k="-51" /> + <hkern g1="R" + g2="x,uni0445,uni04B3" + k="-20" /> + <hkern g1="R" + g2="lslash" + k="10" /> + <hkern g1="R" + g2="parenright" + k="-10" /> + <hkern g1="R" + g2="multiply" + k="-31" /> + <hkern g1="R" + g2="daggerdbl" + k="-20" /> + <hkern g1="S,Scaron,uni0405" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="10" /> + <hkern g1="S,Scaron,uni0405" + g2="J" + k="-20" /> + <hkern g1="S,Scaron,uni0405" + g2="Oslash" + k="10" /> + <hkern g1="S,Scaron,uni0405" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="10" /> + <hkern g1="S,Scaron,uni0405" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="10" /> + <hkern g1="S,Scaron,uni0405" + g2="Y,Yacute,Ydieresis,uni040E" + k="20" /> + <hkern g1="S,Scaron,uni0405" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="10" /> + <hkern g1="S,Scaron,uni0405" + g2="asciicircum" + k="10" /> + <hkern g1="S,Scaron,uni0405" + g2="backslash" + k="51" /> + <hkern g1="S,Scaron,uni0405" + g2="braceleft" + k="41" /> + <hkern g1="S,Scaron,uni0405" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="20" /> + <hkern g1="S,Scaron,uni0405" + g2="germandbls" + k="61" /> + <hkern g1="S,Scaron,uni0405" + g2="guilsinglleft" + k="10" /> + <hkern g1="S,Scaron,uni0405" + g2="hyphen,endash,emdash" + k="10" /> + <hkern g1="S,Scaron,uni0405" + g2="m,n,p,r,ntilde" + k="61" /> + <hkern g1="S,Scaron,uni0405" + g2="ordfeminine" + k="20" /> + <hkern g1="S,Scaron,uni0405" + g2="ordmasculine" + k="20" /> + <hkern g1="S,Scaron,uni0405" + g2="oslash" + k="20" /> + <hkern g1="S,Scaron,uni0405" + g2="t" + k="20" /> + <hkern g1="S,Scaron,uni0405" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="51" /> + <hkern g1="S,Scaron,uni0405" + g2="underscore" + k="20" /> + <hkern g1="S,Scaron,uni0405" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="41" /> + <hkern g1="S,Scaron,uni0405" + g2="w" + k="41" /> + <hkern g1="S,Scaron,uni0405" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="51" /> + <hkern g1="S,Scaron,uni0405" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="10" /> + <hkern g1="S,Scaron,uni0405" + g2="f,fi,fl,f_f_i,f_f_l" + k="31" /> + <hkern g1="S,Scaron,uni0405" + g2="b,h,k,l,thorn" + k="10" /> + <hkern g1="S,Scaron,uni0405" + g2="bracketright,braceright" + k="-31" /> + <hkern g1="S,Scaron,uni0405" + g2="florin" + k="102" /> + <hkern g1="S,Scaron,uni0405" + g2="greater" + k="-51" /> + <hkern g1="S,Scaron,uni0405" + g2="x,uni0445,uni04B3" + k="31" /> + <hkern g1="S,Scaron,uni0405" + g2="z,zcaron" + k="10" /> + <hkern g1="S,Scaron,uni0405" + g2="Lslash" + k="-10" /> + <hkern g1="S,Scaron,uni0405" + g2="guilsinglright" + k="10" /> + <hkern g1="S,Scaron,uni0405" + g2="i,igrave,iacute,icircumflex,idieresis,uni0469" + k="10" /> + <hkern g1="S,Scaron,uni0405" + g2="j" + k="10" /> + <hkern g1="S,Scaron,uni0405" + g2="multiply" + k="10" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="51" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="J" + k="133" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="Oslash" + k="41" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="-41" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="V,uni0423,uni0474" + k="-41" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-41" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="Y,Yacute,Ydieresis,uni040E" + k="-41" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="174" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="ampersand" + k="61" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="asciitilde" + k="143" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="asterisk" + k="-41" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="at" + k="51" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="backslash" + k="-82" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="braceleft" + k="61" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="bullet" + k="143" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="195" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="copyright,registered" + k="20" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="dagger" + k="-41" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="divide" + k="123" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="germandbls" + k="72" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="guilsinglleft" + k="246" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="hyphen,endash,emdash" + k="123" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="less" + k="82" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="m,n,p,r,ntilde" + k="123" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="oslash" + k="154" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="paragraph" + k="-20" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="periodcentered" + k="102" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="plus" + k="102" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="question" + k="-41" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="questiondown" + k="123" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="quotedbl,quotesingle" + k="-61" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="quoteleft,quotedblleft" + k="-61" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="quoteright,quotedblright" + k="-61" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="quotesinglbase,quotedblbase" + k="164" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="slash" + k="143" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="t" + k="51" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="trademark" + k="-61" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="195" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="underscore" + k="82" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="143" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="w" + k="154" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="143" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="133" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="comma,period,ellipsis" + k="205" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="f,fi,fl,f_f_i,f_f_l" + k="82" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="s,scaron,uni0455" + k="143" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="X,uni0416,uni0425,uni046A" + k="-31" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="bracketright,braceright" + k="-41" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="florin" + k="225" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="greater" + k="20" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="section" + k="-41" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="x,uni0445,uni04B3" + k="154" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="z,zcaron" + k="92" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="guilsinglright" + k="164" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="lslash" + k="41" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="parenright" + k="-41" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="i,igrave,iacute,icircumflex,idieresis,uni0469" + k="41" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="j" + k="20" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="colon,semicolon" + k="123" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="exclamdown" + k="61" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="equal" + k="61" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="multiply" + k="82" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="bar" + k="-41" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="brokenbar" + k="-41" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="daggerdbl" + k="-20" /> + <hkern g1="Thorn" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="-10" /> + <hkern g1="Thorn" + g2="J" + k="10" /> + <hkern g1="Thorn" + g2="Oslash" + k="-10" /> + <hkern g1="Thorn" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="41" /> + <hkern g1="Thorn" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="31" /> + <hkern g1="Thorn" + g2="Y,Yacute,Ydieresis,uni040E" + k="41" /> + <hkern g1="Thorn" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="-20" /> + <hkern g1="Thorn" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="-20" /> + <hkern g1="Thorn" + g2="oslash" + k="10" /> + <hkern g1="Thorn" + g2="quotesinglbase,quotedblbase" + k="51" /> + <hkern g1="Thorn" + g2="t" + k="-51" /> + <hkern g1="Thorn" + g2="w" + k="-20" /> + <hkern g1="Thorn" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-20" /> + <hkern g1="Thorn" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="51" /> + <hkern g1="Thorn" + g2="comma,period,ellipsis" + k="61" /> + <hkern g1="Thorn" + g2="f,fi,fl,f_f_i,f_f_l" + k="-41" /> + <hkern g1="Thorn" + g2="s,scaron,uni0455" + k="-20" /> + <hkern g1="Thorn" + g2="bracketright,braceright" + k="20" /> + <hkern g1="Thorn" + g2="z,zcaron" + k="-41" /> + <hkern g1="Thorn" + g2="Z,Zcaron" + k="20" /> + <hkern g1="Thorn" + g2="Eth" + k="-31" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="51" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="J" + k="113" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="Oslash" + k="51" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="S,Scaron,uni0405" + k="10" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="-41" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-20" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="Y,Yacute,Ydieresis,uni040E" + k="-20" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="113" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="113" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="copyright,registered" + k="20" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="guilsinglleft" + k="123" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="hyphen,endash,emdash" + k="113" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="m,n,p,r,ntilde" + k="61" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="oslash" + k="113" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="quotedbl,quotesingle" + k="-41" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="quoteleft,quotedblleft" + k="-20" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="quoteright,quotedblright" + k="-41" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="quotesinglbase,quotedblbase" + k="164" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="t" + k="10" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="72" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="w" + k="20" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="10" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="113" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="comma,period,ellipsis" + k="205" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="s,scaron,uni0455" + k="41" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="bracketright,braceright" + k="-41" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="z,zcaron" + k="41" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="guilsinglright" + k="82" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="colon,semicolon" + k="82" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="41" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="J" + k="102" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="Oslash" + k="41" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="-41" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="V,uni0423,uni0474" + k="-20" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-20" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="Y,Yacute,Ydieresis,uni040E" + k="-20" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="61" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="asciitilde" + k="41" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="asterisk" + k="-20" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="at" + k="41" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="backslash" + k="-41" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="braceleft" + k="61" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="bullet" + k="61" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="72" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="divide" + k="41" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="germandbls" + k="31" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="guilsinglleft" + k="61" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="hyphen,endash,emdash" + k="82" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="less" + k="41" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="m,n,p,r,ntilde" + k="61" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="oslash" + k="92" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="periodcentered" + k="61" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="plus" + k="61" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="questiondown" + k="123" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="quotedbl,quotesingle" + k="-41" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="quoteleft,quotedblleft" + k="-41" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="quoteright,quotedblright" + k="-41" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="quotesinglbase,quotedblbase" + k="164" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="slash" + k="123" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="t" + k="10" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="trademark" + k="-41" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="61" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="underscore" + k="92" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="10" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="w" + k="20" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="10" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="92" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="comma,period,ellipsis" + k="205" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="s,scaron,uni0455" + k="41" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="X,uni0416,uni0425,uni046A" + k="-20" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="bracketright,braceright" + k="-41" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="florin" + k="123" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="z,zcaron" + k="10" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="guilsinglright" + k="20" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="parenright" + k="-41" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="colon,semicolon" + k="20" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="exclamdown" + k="20" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="equal" + k="20" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="bar" + k="-41" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="brokenbar" + k="-41" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="41" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="J" + k="20" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="Oslash" + k="31" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="-31" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-20" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="Y,Yacute,Ydieresis,uni040E" + k="-20" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="51" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="copyright,registered" + k="31" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="guilsinglleft" + k="164" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="hyphen,endash,emdash" + k="82" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="oslash" + k="20" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="quotedbl,quotesingle" + k="-20" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="quoteleft,quotedblleft" + k="-20" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="quoteright,quotedblright" + k="-20" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="20" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="w" + k="20" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="31" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="bracketright,braceright" + k="-41" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="z,zcaron" + k="-10" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="Z,Zcaron" + k="-20" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="guilsinglright" + k="61" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="92" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="J" + k="154" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="Oslash" + k="82" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="S,Scaron,uni0405" + k="20" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="-41" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="V,uni0423,uni0474" + k="-20" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-20" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="Y,Yacute,Ydieresis,uni040E" + k="-20" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="133" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="ampersand" + k="102" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="asciitilde" + k="123" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="at" + k="82" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="backslash" + k="-20" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="braceleft" + k="41" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="bullet" + k="143" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="184" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="copyright,registered" + k="51" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="divide" + k="102" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="germandbls" + k="82" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="guilsinglleft" + k="164" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="hyphen,endash,emdash" + k="164" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="less" + k="123" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="m,n,p,r,ntilde" + k="123" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="oslash" + k="184" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="periodcentered" + k="123" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="plus" + k="102" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="questiondown" + k="205" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="quotedbl,quotesingle" + k="-20" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="quoteleft,quotedblleft" + k="-41" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="quoteright,quotedblright" + k="-41" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="quotesinglbase,quotedblbase" + k="205" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="slash" + k="174" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="t" + k="20" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="123" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="underscore" + k="123" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="82" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="w" + k="102" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="92" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="133" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="comma,period,ellipsis" + k="266" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="f,fi,fl,f_f_i,f_f_l" + k="51" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="s,scaron,uni0455" + k="133" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="X,uni0416,uni0425,uni046A" + k="-20" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="bracketright,braceright" + k="-41" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="florin" + k="184" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="x,uni0445,uni04B3" + k="61" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="z,zcaron" + k="72" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="Z,Zcaron" + k="-10" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="guilsinglright" + k="61" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="parenright" + k="-41" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="i,igrave,iacute,icircumflex,idieresis,uni0469" + k="10" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="j" + k="10" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="colon,semicolon" + k="123" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="exclamdown" + k="61" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="equal" + k="61" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="multiply" + k="61" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="bar" + k="-20" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="brokenbar" + k="-20" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="41" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="Oslash" + k="41" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="-31" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="Y,Yacute,Ydieresis,uni040E" + k="-10" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="at" + k="31" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="bullet" + k="20" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="10" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="germandbls" + k="10" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="guilsinglleft" + k="51" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="hyphen,endash,emdash" + k="92" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="periodcentered" + k="20" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="plus" + k="20" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="question" + k="-10" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="10" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="underscore" + k="-20" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="w" + k="10" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="41" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="X,uni0416,uni0425,uni046A" + k="-20" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="florin" + k="41" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="ampersand" + k="20" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="asterisk" + k="41" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="at" + k="20" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="backslash" + k="123" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="ordfeminine" + k="20" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="ordmasculine" + k="31" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="quoteleft,quotedblleft" + k="82" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="quoteright,quotedblright" + k="41" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="trademark" + k="143" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="20" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="underscore" + k="-61" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="20" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="ampersand" + k="20" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="asterisk" + k="82" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="backslash" + k="205" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="ordfeminine" + k="41" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="ordmasculine" + k="61" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="quoteleft,quotedblleft" + k="82" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="quoteright,quotedblright" + k="82" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="trademark" + k="102" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="10" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="underscore" + k="41" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="41" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="bracketright,braceright" + k="41" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="colon,semicolon" + k="10" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="comma,period,ellipsis" + k="31" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="germandbls" + k="10" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="lslash" + k="-41" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="parenright" + k="41" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="question" + k="51" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="quotedbl,quotesingle" + k="41" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="quotesinglbase,quotedblbase" + k="20" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="slash" + k="102" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="t" + k="10" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="31" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="w" + k="20" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="x,uni0445,uni04B3" + k="20" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="z,zcaron" + k="10" /> + <hkern g1="c,ccedilla,uni0441" + g2="ampersand" + k="10" /> + <hkern g1="c,ccedilla,uni0441" + g2="asterisk" + k="20" /> + <hkern g1="c,ccedilla,uni0441" + g2="at" + k="10" /> + <hkern g1="c,ccedilla,uni0441" + g2="backslash" + k="143" /> + <hkern g1="c,ccedilla,uni0441" + g2="ordfeminine" + k="20" /> + <hkern g1="c,ccedilla,uni0441" + g2="ordmasculine" + k="20" /> + <hkern g1="c,ccedilla,uni0441" + g2="quoteleft,quotedblleft" + k="20" /> + <hkern g1="c,ccedilla,uni0441" + g2="trademark" + k="61" /> + <hkern g1="c,ccedilla,uni0441" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="10" /> + <hkern g1="c,ccedilla,uni0441" + g2="underscore" + k="20" /> + <hkern g1="c,ccedilla,uni0441" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="10" /> + <hkern g1="c,ccedilla,uni0441" + g2="quotesinglbase,quotedblbase" + k="20" /> + <hkern g1="c,ccedilla,uni0441" + g2="slash" + k="31" /> + <hkern g1="c,ccedilla,uni0441" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="10" /> + <hkern g1="c,ccedilla,uni0441" + g2="w" + k="10" /> + <hkern g1="c,ccedilla,uni0441" + g2="x,uni0445,uni04B3" + k="10" /> + <hkern g1="c,ccedilla,uni0441" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="10" /> + <hkern g1="c,ccedilla,uni0441" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="10" /> + <hkern g1="c,ccedilla,uni0441" + g2="oslash" + k="10" /> + <hkern g1="c,ccedilla,uni0441" + g2="questiondown" + k="20" /> + <hkern g1="d,l,fl" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="10" /> + <hkern g1="d,l,fl" + g2="germandbls" + k="10" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="ampersand" + k="31" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="asterisk" + k="41" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="backslash" + k="143" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="ordfeminine" + k="31" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="ordmasculine" + k="61" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="quoteleft,quotedblleft" + k="82" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="quoteright,quotedblright" + k="82" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="trademark" + k="143" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="31" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="underscore" + k="20" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="20" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="bracketright,braceright" + k="20" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="comma,period,ellipsis" + k="31" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="germandbls" + k="10" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="lslash" + k="-20" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="parenright" + k="20" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="question" + k="51" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="quotedbl,quotesingle" + k="20" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="quotesinglbase,quotedblbase" + k="20" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="20" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="w" + k="10" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="x,uni0445,uni04B3" + k="10" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="questiondown" + k="41" /> + <hkern g1="f" + g2="asterisk" + k="-82" /> + <hkern g1="f" + g2="backslash" + k="-61" /> + <hkern g1="f" + g2="quoteleft,quotedblleft" + k="-82" /> + <hkern g1="f" + g2="quoteright,quotedblright" + k="-41" /> + <hkern g1="f" + g2="trademark" + k="-41" /> + <hkern g1="f" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="10" /> + <hkern g1="f" + g2="underscore" + k="41" /> + <hkern g1="f" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-31" /> + <hkern g1="f" + g2="bracketright,braceright" + k="-51" /> + <hkern g1="f" + g2="comma,period,ellipsis" + k="102" /> + <hkern g1="f" + g2="lslash" + k="-20" /> + <hkern g1="f" + g2="parenright" + k="-61" /> + <hkern g1="f" + g2="question" + k="-41" /> + <hkern g1="f" + g2="quotedbl,quotesingle" + k="-102" /> + <hkern g1="f" + g2="quotesinglbase,quotedblbase" + k="82" /> + <hkern g1="f" + g2="slash" + k="31" /> + <hkern g1="f" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="-20" /> + <hkern g1="f" + g2="w" + k="-20" /> + <hkern g1="f" + g2="x,uni0445,uni04B3" + k="-20" /> + <hkern g1="f" + g2="z,zcaron" + k="-20" /> + <hkern g1="f" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="31" /> + <hkern g1="f" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="41" /> + <hkern g1="f" + g2="oslash" + k="41" /> + <hkern g1="f" + g2="questiondown" + k="51" /> + <hkern g1="f" + g2="asciicircum" + k="-41" /> + <hkern g1="f" + g2="asciitilde" + k="20" /> + <hkern g1="f" + g2="bar" + k="-61" /> + <hkern g1="f" + g2="brokenbar" + k="-82" /> + <hkern g1="f" + g2="bullet" + k="20" /> + <hkern g1="f" + g2="copyright,registered" + k="-20" /> + <hkern g1="f" + g2="dagger" + k="-82" /> + <hkern g1="f" + g2="daggerdbl" + k="-61" /> + <hkern g1="f" + g2="exclam" + k="-31" /> + <hkern g1="f" + g2="f,fi,fl,f_f_i,f_f_l" + k="10" /> + <hkern g1="f" + g2="greater" + k="-61" /> + <hkern g1="f" + g2="guilsinglleft" + k="20" /> + <hkern g1="f" + g2="hyphen,endash,emdash" + k="10" /> + <hkern g1="f" + g2="j" + k="-51" /> + <hkern g1="f" + g2="multiply" + k="-41" /> + <hkern g1="f" + g2="paragraph" + k="-61" /> + <hkern g1="f" + g2="plus" + k="20" /> + <hkern g1="f" + g2="section" + k="-41" /> + <hkern g1="g" + g2="ampersand" + k="10" /> + <hkern g1="g" + g2="backslash" + k="82" /> + <hkern g1="g" + g2="ordfeminine" + k="41" /> + <hkern g1="g" + g2="trademark" + k="61" /> + <hkern g1="g" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="10" /> + <hkern g1="g" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="10" /> + <hkern g1="g" + g2="w" + k="10" /> + <hkern g1="g" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="10" /> + <hkern g1="g" + g2="divide" + k="10" /> + <hkern g1="germandbls" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="10" /> + <hkern g1="germandbls" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="10" /> + <hkern g1="germandbls" + g2="bracketright,braceright" + k="-41" /> + <hkern g1="h,m,n,ntilde,uni04BB" + g2="asterisk" + k="20" /> + <hkern g1="h,m,n,ntilde,uni04BB" + g2="at" + k="10" /> + <hkern g1="h,m,n,ntilde,uni04BB" + g2="backslash" + k="133" /> + <hkern g1="h,m,n,ntilde,uni04BB" + g2="ordfeminine" + k="20" /> + <hkern g1="h,m,n,ntilde,uni04BB" + g2="quoteleft,quotedblleft" + k="82" /> + <hkern g1="h,m,n,ntilde,uni04BB" + g2="quoteright,quotedblright" + k="102" /> + <hkern g1="h,m,n,ntilde,uni04BB" + g2="trademark" + k="82" /> + <hkern g1="h,m,n,ntilde,uni04BB" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="20" /> + <hkern g1="h,m,n,ntilde,uni04BB" + g2="germandbls" + k="20" /> + <hkern g1="h,m,n,ntilde,uni04BB" + g2="question" + k="31" /> + <hkern g1="h,m,n,ntilde,uni04BB" + g2="copyright,registered" + k="10" /> + <hkern g1="h,m,n,ntilde,uni04BB" + g2="equal" + k="10" /> + <hkern g1="i,q,igrave,iacute,icircumflex,idieresis,fi,f_f_i" + g2="backslash" + k="123" /> + <hkern g1="j" + g2="at" + k="10" /> + <hkern g1="j" + g2="germandbls" + k="10" /> + <hkern g1="j" + g2="daggerdbl" + k="-102" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="ampersand" + k="10" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="asterisk" + k="20" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="at" + k="10" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="backslash" + k="51" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="quoteright,quotedblright" + k="-10" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="trademark" + k="41" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="10" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="underscore" + k="-61" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="colon,semicolon" + k="10" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="quotesinglbase,quotedblbase" + k="-41" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="slash" + k="-41" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="z,zcaron" + k="-10" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="31" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="51" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="asciitilde" + k="41" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="bullet" + k="41" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="dagger" + k="-20" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="daggerdbl" + k="-20" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="greater" + k="-82" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="guilsinglleft" + k="61" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="hyphen,endash,emdash" + k="61" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="multiply" + k="-41" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="plus" + k="20" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="divide" + k="20" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="braceleft" + k="20" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="exclamdown" + k="-20" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="less" + k="41" /> + <hkern g1="lslash" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-41" /> + <hkern g1="lslash" + g2="t" + k="-41" /> + <hkern g1="lslash" + g2="w" + k="-51" /> + <hkern g1="lslash" + g2="z,zcaron" + k="-41" /> + <hkern g1="lslash" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="-20" /> + <hkern g1="lslash" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="-20" /> + <hkern g1="lslash" + g2="oslash" + k="-10" /> + <hkern g1="lslash" + g2="copyright,registered" + k="-41" /> + <hkern g1="lslash" + g2="f,fi,fl,f_f_i,f_f_l" + k="-51" /> + <hkern g1="lslash" + g2="guilsinglleft" + k="-10" /> + <hkern g1="lslash" + g2="s,scaron,uni0455" + k="-20" /> + <hkern g1="oslash" + g2="ampersand" + k="20" /> + <hkern g1="oslash" + g2="backslash" + k="143" /> + <hkern g1="oslash" + g2="quoteleft,quotedblleft" + k="41" /> + <hkern g1="oslash" + g2="quoteright,quotedblright" + k="41" /> + <hkern g1="oslash" + g2="underscore" + k="41" /> + <hkern g1="oslash" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="20" /> + <hkern g1="oslash" + g2="bracketright,braceright" + k="20" /> + <hkern g1="oslash" + g2="comma,period,ellipsis" + k="31" /> + <hkern g1="oslash" + g2="lslash" + k="-10" /> + <hkern g1="oslash" + g2="parenright" + k="20" /> + <hkern g1="oslash" + g2="quotedbl,quotesingle" + k="41" /> + <hkern g1="oslash" + g2="quotesinglbase,quotedblbase" + k="20" /> + <hkern g1="oslash" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="20" /> + <hkern g1="oslash" + g2="w" + k="20" /> + <hkern g1="oslash" + g2="x,uni0445,uni04B3" + k="10" /> + <hkern g1="r" + g2="asterisk" + k="-82" /> + <hkern g1="r" + g2="at" + k="-41" /> + <hkern g1="r" + g2="backslash" + k="20" /> + <hkern g1="r" + g2="quoteright,quotedblright" + k="-61" /> + <hkern g1="r" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="-10" /> + <hkern g1="r" + g2="underscore" + k="20" /> + <hkern g1="r" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-31" /> + <hkern g1="r" + g2="bracketright,braceright" + k="-41" /> + <hkern g1="r" + g2="comma,period,ellipsis" + k="184" /> + <hkern g1="r" + g2="question" + k="-41" /> + <hkern g1="r" + g2="quotedbl,quotesingle" + k="-61" /> + <hkern g1="r" + g2="quotesinglbase,quotedblbase" + k="61" /> + <hkern g1="r" + g2="t" + k="-51" /> + <hkern g1="r" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="-31" /> + <hkern g1="r" + g2="w" + k="-20" /> + <hkern g1="r" + g2="x,uni0445,uni04B3" + k="-61" /> + <hkern g1="r" + g2="z,zcaron" + k="-20" /> + <hkern g1="r" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="92" /> + <hkern g1="r" + g2="oslash" + k="10" /> + <hkern g1="r" + g2="questiondown" + k="20" /> + <hkern g1="r" + g2="bar" + k="-61" /> + <hkern g1="r" + g2="brokenbar" + k="-61" /> + <hkern g1="r" + g2="copyright,registered" + k="-61" /> + <hkern g1="r" + g2="dagger" + k="-61" /> + <hkern g1="r" + g2="daggerdbl" + k="-61" /> + <hkern g1="r" + g2="exclam" + k="-61" /> + <hkern g1="r" + g2="f,fi,fl,f_f_i,f_f_l" + k="-51" /> + <hkern g1="r" + g2="paragraph" + k="-82" /> + <hkern g1="r" + g2="section" + k="-61" /> + <hkern g1="r" + g2="exclamdown" + k="-41" /> + <hkern g1="r" + g2="s,scaron,uni0455" + k="61" /> + <hkern g1="r" + g2="guilsinglright" + k="-61" /> + <hkern g1="s,scaron,uni0455" + g2="asterisk" + k="20" /> + <hkern g1="s,scaron,uni0455" + g2="backslash" + k="123" /> + <hkern g1="s,scaron,uni0455" + g2="ordfeminine" + k="41" /> + <hkern g1="s,scaron,uni0455" + g2="ordmasculine" + k="41" /> + <hkern g1="s,scaron,uni0455" + g2="quoteleft,quotedblleft" + k="20" /> + <hkern g1="s,scaron,uni0455" + g2="quoteright,quotedblright" + k="113" /> + <hkern g1="s,scaron,uni0455" + g2="trademark" + k="82" /> + <hkern g1="s,scaron,uni0455" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="10" /> + <hkern g1="s,scaron,uni0455" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="10" /> + <hkern g1="s,scaron,uni0455" + g2="germandbls" + k="10" /> + <hkern g1="s,scaron,uni0455" + g2="quotedbl,quotesingle" + k="20" /> + <hkern g1="s,scaron,uni0455" + g2="slash" + k="-20" /> + <hkern g1="s,scaron,uni0455" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="10" /> + <hkern g1="s,scaron,uni0455" + g2="w" + k="10" /> + <hkern g1="s,scaron,uni0455" + g2="x,uni0445,uni04B3" + k="10" /> + <hkern g1="s,scaron,uni0455" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="20" /> + <hkern g1="s,scaron,uni0455" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="10" /> + <hkern g1="s,scaron,uni0455" + g2="oslash" + k="10" /> + <hkern g1="s,scaron,uni0455" + g2="greater" + k="-20" /> + <hkern g1="t" + g2="quoteleft,quotedblleft" + k="20" /> + <hkern g1="t" + g2="quoteright,quotedblright" + k="51" /> + <hkern g1="t" + g2="underscore" + k="-61" /> + <hkern g1="t" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-10" /> + <hkern g1="t" + g2="bracketright,braceright" + k="-20" /> + <hkern g1="t" + g2="parenright" + k="-20" /> + <hkern g1="t" + g2="question" + k="-10" /> + <hkern g1="t" + g2="quotesinglbase,quotedblbase" + k="-20" /> + <hkern g1="t" + g2="slash" + k="-41" /> + <hkern g1="t" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="-20" /> + <hkern g1="t" + g2="w" + k="-20" /> + <hkern g1="t" + g2="x,uni0445,uni04B3" + k="-41" /> + <hkern g1="t" + g2="z,zcaron" + k="-41" /> + <hkern g1="t" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="10" /> + <hkern g1="t" + g2="s,scaron,uni0455" + k="-10" /> + <hkern g1="t" + g2="guilsinglright" + k="-20" /> + <hkern g1="t" + g2="m,n,p,r,ntilde" + k="20" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="at" + k="10" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="backslash" + k="102" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="ordfeminine" + k="41" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="ordmasculine" + k="31" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="quoteleft,quotedblleft" + k="20" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="trademark" + k="41" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="10" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="germandbls" + k="10" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="10" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="oslash" + k="10" /> + <hkern g1="v,wcircumflex,ycircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-20" /> + <hkern g1="v,wcircumflex,ycircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="comma,period,ellipsis" + k="184" /> + <hkern g1="v,wcircumflex,ycircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="quotedbl,quotesingle" + k="-20" /> + <hkern g1="v,wcircumflex,ycircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="quotesinglbase,quotedblbase" + k="82" /> + <hkern g1="v,wcircumflex,ycircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="t" + k="-31" /> + <hkern g1="v,wcircumflex,ycircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="w" + k="-10" /> + <hkern g1="v,wcircumflex,ycircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="z,zcaron" + k="-20" /> + <hkern g1="v,wcircumflex,ycircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="10" /> + <hkern g1="v,wcircumflex,ycircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="31" /> + <hkern g1="v,wcircumflex,ycircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="oslash" + k="20" /> + <hkern g1="v,wcircumflex,ycircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="f,fi,fl,f_f_i,f_f_l" + k="-31" /> + <hkern g1="v,wcircumflex,ycircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="hyphen,endash,emdash" + k="10" /> + <hkern g1="v,wcircumflex,ycircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="guilsinglright" + k="-41" /> + <hkern g1="w" + g2="ampersand" + k="20" /> + <hkern g1="w" + g2="at" + k="-31" /> + <hkern g1="w" + g2="backslash" + k="41" /> + <hkern g1="w" + g2="underscore" + k="82" /> + <hkern g1="w" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-10" /> + <hkern g1="w" + g2="bracketright,braceright" + k="41" /> + <hkern g1="w" + g2="comma,period,ellipsis" + k="82" /> + <hkern g1="w" + g2="parenright" + k="41" /> + <hkern g1="w" + g2="quotedbl,quotesingle" + k="-20" /> + <hkern g1="w" + g2="quotesinglbase,quotedblbase" + k="82" /> + <hkern g1="w" + g2="slash" + k="41" /> + <hkern g1="w" + g2="t" + k="-31" /> + <hkern g1="w" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="-10" /> + <hkern g1="w" + g2="x,uni0445,uni04B3" + k="-10" /> + <hkern g1="w" + g2="z,zcaron" + k="-10" /> + <hkern g1="w" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="10" /> + <hkern g1="w" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="20" /> + <hkern g1="w" + g2="oslash" + k="20" /> + <hkern g1="w" + g2="questiondown" + k="41" /> + <hkern g1="w" + g2="bar" + k="-41" /> + <hkern g1="w" + g2="brokenbar" + k="-41" /> + <hkern g1="w" + g2="copyright,registered" + k="-20" /> + <hkern g1="w" + g2="dagger" + k="-61" /> + <hkern g1="w" + g2="daggerdbl" + k="-82" /> + <hkern g1="w" + g2="f,fi,fl,f_f_i,f_f_l" + k="-31" /> + <hkern g1="w" + g2="guilsinglleft" + k="20" /> + <hkern g1="w" + g2="hyphen,endash,emdash" + k="10" /> + <hkern g1="x,uni0445,uni04B3" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="10" /> + <hkern g1="x,uni0445,uni04B3" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-10" /> + <hkern g1="x,uni0445,uni04B3" + g2="quotedbl,quotesingle" + k="-20" /> + <hkern g1="x,uni0445,uni04B3" + g2="quotesinglbase,quotedblbase" + k="-20" /> + <hkern g1="x,uni0445,uni04B3" + g2="t" + k="-10" /> + <hkern g1="x,uni0445,uni04B3" + g2="w" + k="-10" /> + <hkern g1="x,uni0445,uni04B3" + g2="z,zcaron" + k="-41" /> + <hkern g1="x,uni0445,uni04B3" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="20" /> + <hkern g1="x,uni0445,uni04B3" + g2="oslash" + k="10" /> + <hkern g1="x,uni0445,uni04B3" + g2="f,fi,fl,f_f_i,f_f_l" + k="-31" /> + <hkern g1="x,uni0445,uni04B3" + g2="guilsinglleft" + k="20" /> + <hkern g1="x,uni0445,uni04B3" + g2="hyphen,endash,emdash" + k="20" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="ampersand" + k="41" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="at" + k="-20" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="backslash" + k="61" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="10" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="underscore" + k="102" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-10" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="comma,period,ellipsis" + k="225" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="question" + k="-20" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="quotedbl,quotesingle" + k="-20" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="quotesinglbase,quotedblbase" + k="143" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="slash" + k="20" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="t" + k="-10" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="-10" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="31" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="41" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="oslash" + k="31" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="questiondown" + k="61" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="bar" + k="-31" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="brokenbar" + k="-20" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="dagger" + k="-41" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="daggerdbl" + k="-41" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="f,fi,fl,f_f_i,f_f_l" + k="-20" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="guilsinglleft" + k="20" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="hyphen,endash,emdash" + k="41" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="s,scaron,uni0455" + k="20" /> + <hkern g1="z,zcaron" + g2="backslash" + k="72" /> + <hkern g1="z,zcaron" + g2="underscore" + k="-20" /> + <hkern g1="z,zcaron" + g2="lslash" + k="-20" /> + <hkern g1="z,zcaron" + g2="x,uni0445,uni04B3" + k="-10" /> + <hkern g1="z,zcaron" + g2="bar" + k="-31" /> + <hkern g1="z,zcaron" + g2="dagger" + k="-20" /> + <hkern g1="z,zcaron" + g2="daggerdbl" + k="-20" /> + <hkern g1="z,zcaron" + g2="guilsinglleft" + k="20" /> + <hkern g1="ampersand" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="143" /> + <hkern g1="ampersand" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="20" /> + <hkern g1="ampersand" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="72" /> + <hkern g1="ampersand" + g2="Y,Yacute,Ydieresis,uni040E" + k="154" /> + <hkern g1="asciicircum" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="41" /> + <hkern g1="asciicircum" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="-20" /> + <hkern g1="asciitilde" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="143" /> + <hkern g1="asciitilde" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="10" /> + <hkern g1="asciitilde" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="41" /> + <hkern g1="asciitilde" + g2="Y,Yacute,Ydieresis,uni040E" + k="123" /> + <hkern g1="asciitilde" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="41" /> + <hkern g1="asciitilde" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="-20" /> + <hkern g1="at" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="51" /> + <hkern g1="at" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="41" /> + <hkern g1="at" + g2="Y,Yacute,Ydieresis,uni040E" + k="82" /> + <hkern g1="at" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="61" /> + <hkern g1="at" + g2="Eth" + k="-20" /> + <hkern g1="at" + g2="J" + k="20" /> + <hkern g1="at" + g2="Z,Zcaron" + k="41" /> + <hkern g1="at" + g2="w" + k="-31" /> + <hkern g1="at" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-31" /> + <hkern g1="at" + g2="z,zcaron" + k="-10" /> + <hkern g1="bar" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="-41" /> + <hkern g1="bar" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-41" /> + <hkern g1="bar" + g2="Y,Yacute,Ydieresis,uni040E" + k="-20" /> + <hkern g1="bar" + g2="w" + k="-41" /> + <hkern g1="bar" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-31" /> + <hkern g1="bar" + g2="z,zcaron" + k="-20" /> + <hkern g1="brokenbar" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="-41" /> + <hkern g1="brokenbar" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-41" /> + <hkern g1="brokenbar" + g2="Y,Yacute,Ydieresis,uni040E" + k="-20" /> + <hkern g1="brokenbar" + g2="w" + k="-41" /> + <hkern g1="brokenbar" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-20" /> + <hkern g1="copyright,registered" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="20" /> + <hkern g1="copyright,registered" + g2="Y,Yacute,Ydieresis,uni040E" + k="51" /> + <hkern g1="copyright,registered" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="51" /> + <hkern g1="copyright,registered" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="-20" /> + <hkern g1="copyright,registered" + g2="Eth" + k="-20" /> + <hkern g1="copyright,registered" + g2="w" + k="-20" /> + <hkern g1="copyright,registered" + g2="z,zcaron" + k="10" /> + <hkern g1="copyright,registered" + g2="Lslash" + k="-20" /> + <hkern g1="copyright,registered" + g2="V,uni0423,uni0474" + k="20" /> + <hkern g1="copyright,registered" + g2="X,uni0416,uni0425,uni046A" + k="31" /> + <hkern g1="copyright,registered" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="41" /> + <hkern g1="dagger" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="61" /> + <hkern g1="dagger" + g2="w" + k="-82" /> + <hkern g1="dagger" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-41" /> + <hkern g1="daggerdbl" + g2="w" + k="-82" /> + <hkern g1="daggerdbl" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-41" /> + <hkern g1="divide" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="123" /> + <hkern g1="divide" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="10" /> + <hkern g1="divide" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="41" /> + <hkern g1="divide" + g2="Y,Yacute,Ydieresis,uni040E" + k="102" /> + <hkern g1="divide" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="20" /> + <hkern g1="equal" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="61" /> + <hkern g1="equal" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="20" /> + <hkern g1="equal" + g2="Y,Yacute,Ydieresis,uni040E" + k="61" /> + <hkern g1="florin" + g2="w" + k="20" /> + <hkern g1="florin" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="123" /> + <hkern g1="florin" + g2="bracketright,braceright" + k="-41" /> + <hkern g1="florin" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="123" /> + <hkern g1="florin" + g2="colon,semicolon" + k="41" /> + <hkern g1="florin" + g2="comma,period,ellipsis" + k="164" /> + <hkern g1="florin" + g2="guilsinglleft" + k="41" /> + <hkern g1="florin" + g2="hyphen,endash,emdash" + k="61" /> + <hkern g1="florin" + g2="m,n,p,r,ntilde" + k="82" /> + <hkern g1="florin" + g2="oslash" + k="102" /> + <hkern g1="florin" + g2="quotedbl,quotesingle" + k="-82" /> + <hkern g1="florin" + g2="quoteleft,quotedblleft" + k="-82" /> + <hkern g1="florin" + g2="quoteright,quotedblright" + k="-82" /> + <hkern g1="florin" + g2="quotesinglbase,quotedblbase" + k="123" /> + <hkern g1="florin" + g2="s,scaron,uni0455" + k="61" /> + <hkern g1="florin" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="82" /> + <hkern g1="greater" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="82" /> + <hkern g1="greater" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="10" /> + <hkern g1="greater" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="41" /> + <hkern g1="greater" + g2="Y,Yacute,Ydieresis,uni040E" + k="123" /> + <hkern g1="greater" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="41" /> + <hkern g1="greater" + g2="Z,Zcaron" + k="31" /> + <hkern g1="less" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="20" /> + <hkern g1="less" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="-20" /> + <hkern g1="less" + g2="Z,Zcaron" + k="-20" /> + <hkern g1="less" + g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Ntilde,Thorn,IJ,uni01C4,uni01C7,uni01CA,uni01F1" + k="-20" /> + <hkern g1="multiply" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="82" /> + <hkern g1="multiply" + g2="Y,Yacute,Ydieresis,uni040E" + k="61" /> + <hkern g1="paragraph" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="-61" /> + <hkern g1="plus" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="102" /> + <hkern g1="plus" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="10" /> + <hkern g1="plus" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="61" /> + <hkern g1="plus" + g2="Y,Yacute,Ydieresis,uni040E" + k="102" /> + <hkern g1="plus" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="31" /> + <hkern g1="plus" + g2="Z,Zcaron" + k="41" /> + <hkern g1="trademark" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="-61" /> + <hkern g1="asterisk" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="225" /> + <hkern g1="asterisk" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="10" /> + <hkern g1="asterisk" + g2="J" + k="102" /> + <hkern g1="asterisk" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="-41" /> + <hkern g1="asterisk" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-20" /> + <hkern g1="asterisk" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="61" /> + <hkern g1="asterisk" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="82" /> + <hkern g1="asterisk" + g2="s,scaron,uni0455" + k="20" /> + <hkern g1="backslash" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="72" /> + <hkern g1="backslash" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="102" /> + <hkern g1="backslash" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="123" /> + <hkern g1="backslash" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="-20" /> + <hkern g1="backslash" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="31" /> + <hkern g1="backslash" + g2="Oslash" + k="41" /> + <hkern g1="backslash" + g2="S,Scaron,uni0405" + k="10" /> + <hkern g1="backslash" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="41" /> + <hkern g1="backslash" + g2="Y,Yacute,Ydieresis,uni040E" + k="133" /> + <hkern g1="backslash" + g2="w" + k="20" /> + <hkern g1="backslash" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="20" /> + <hkern g1="braceright" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="20" /> + <hkern g1="braceright" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="41" /> + <hkern g1="braceright" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="20" /> + <hkern g1="braceright" + g2="Y,Yacute,Ydieresis,uni040E" + k="82" /> + <hkern g1="braceright" + g2="Z,Zcaron" + k="41" /> + <hkern g1="bracketleft,braceleft" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="41" /> + <hkern g1="bracketleft,braceleft" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="-41" /> + <hkern g1="bracketleft,braceleft" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-41" /> + <hkern g1="bracketleft,braceleft" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="20" /> + <hkern g1="bracketleft,braceleft" + g2="Oslash" + k="41" /> + <hkern g1="bracketleft,braceleft" + g2="Y,Yacute,Ydieresis,uni040E" + k="-82" /> + <hkern g1="bracketleft,braceleft" + g2="w" + k="41" /> + <hkern g1="bracketleft,braceleft" + g2="V,uni0423,uni0474" + k="-41" /> + <hkern g1="bracketleft,braceleft" + g2="X,uni0416,uni0425,uni046A" + k="-41" /> + <hkern g1="bracketleft,braceleft" + g2="f,fi,fl,f_f_i,f_f_l" + k="20" /> + <hkern g1="bracketleft,braceleft" + g2="florin" + k="-123" /> + <hkern g1="bracketleft,braceleft" + g2="j" + k="-102" /> + <hkern g1="bracketleft,braceleft" + g2="oslash" + k="20" /> + <hkern g1="bullet" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="61" /> + <hkern g1="bullet" + g2="J" + k="20" /> + <hkern g1="bullet" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="143" /> + <hkern g1="bullet" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="82" /> + <hkern g1="bullet" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="20" /> + <hkern g1="bullet" + g2="Y,Yacute,Ydieresis,uni040E" + k="143" /> + <hkern g1="bullet" + g2="Z,Zcaron" + k="41" /> + <hkern g1="bullet" + g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Ntilde,Thorn,IJ,uni01C4,uni01C7,uni01CA,uni01F1" + k="20" /> + <hkern g1="colon,semicolon" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="123" /> + <hkern g1="colon,semicolon" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="20" /> + <hkern g1="colon,semicolon" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="10" /> + <hkern g1="colon,semicolon" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="10" /> + <hkern g1="colon,semicolon" + g2="Y,Yacute,Ydieresis,uni040E" + k="123" /> + <hkern g1="colon,semicolon" + g2="V,uni0423,uni0474" + k="82" /> + <hkern g1="comma,period,ellipsis" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="61" /> + <hkern g1="comma,period,ellipsis" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="205" /> + <hkern g1="comma,period,ellipsis" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="205" /> + <hkern g1="comma,period,ellipsis" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="31" /> + <hkern g1="comma,period,ellipsis" + g2="Oslash" + k="41" /> + <hkern g1="comma,period,ellipsis" + g2="S,Scaron,uni0405" + k="20" /> + <hkern g1="comma,period,ellipsis" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="51" /> + <hkern g1="comma,period,ellipsis" + g2="Y,Yacute,Ydieresis,uni040E" + k="266" /> + <hkern g1="comma,period,ellipsis" + g2="w" + k="82" /> + <hkern g1="comma,period,ellipsis" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="184" /> + <hkern g1="comma,period,ellipsis" + g2="V,uni0423,uni0474" + k="205" /> + <hkern g1="comma,period,ellipsis" + g2="t" + k="41" /> + <hkern g1="comma,period,ellipsis" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="20" /> + <hkern g1="comma,period,ellipsis" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="184" /> + <hkern g1="exclamdown" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="164" /> + <hkern g1="exclamdown" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="20" /> + <hkern g1="exclamdown" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="20" /> + <hkern g1="exclamdown" + g2="Y,Yacute,Ydieresis,uni040E" + k="102" /> + <hkern g1="exclamdown" + g2="j" + k="-61" /> + <hkern g1="guilsinglleft" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="20" /> + <hkern g1="guilsinglleft" + g2="J" + k="-20" /> + <hkern g1="guilsinglleft" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="164" /> + <hkern g1="guilsinglleft" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="20" /> + <hkern g1="guilsinglleft" + g2="Y,Yacute,Ydieresis,uni040E" + k="61" /> + <hkern g1="guilsinglleft" + g2="V,uni0423,uni0474" + k="82" /> + <hkern g1="guilsinglleft" + g2="X,uni0416,uni0425,uni046A" + k="61" /> + <hkern g1="guilsinglleft" + g2="f,fi,fl,f_f_i,f_f_l" + k="-20" /> + <hkern g1="guilsinglleft" + g2="t" + k="-20" /> + <hkern g1="guilsinglleft" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="-41" /> + <hkern g1="guilsinglright" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="61" /> + <hkern g1="guilsinglright" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="10" /> + <hkern g1="guilsinglright" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="246" /> + <hkern g1="guilsinglright" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="61" /> + <hkern g1="guilsinglright" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="20" /> + <hkern g1="guilsinglright" + g2="Y,Yacute,Ydieresis,uni040E" + k="164" /> + <hkern g1="guilsinglright" + g2="w" + k="20" /> + <hkern g1="guilsinglright" + g2="Z,Zcaron" + k="61" /> + <hkern g1="guilsinglright" + g2="V,uni0423,uni0474" + k="123" /> + <hkern g1="guilsinglright" + g2="X,uni0416,uni0425,uni046A" + k="164" /> + <hkern g1="guilsinglright" + g2="florin" + k="61" /> + <hkern g1="guilsinglright" + g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Ntilde,Thorn,IJ,uni01C4,uni01C7,uni01CA,uni01F1" + k="20" /> + <hkern g1="guilsinglright" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="20" /> + <hkern g1="guilsinglright" + g2="lslash" + k="-41" /> + <hkern g1="guilsinglright" + g2="x,uni0445,uni04B3" + k="20" /> + <hkern g1="hyphen,endash,emdash" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="41" /> + <hkern g1="hyphen,endash,emdash" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="123" /> + <hkern g1="hyphen,endash,emdash" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="82" /> + <hkern g1="hyphen,endash,emdash" + g2="S,Scaron,uni0405" + k="20" /> + <hkern g1="hyphen,endash,emdash" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="10" /> + <hkern g1="hyphen,endash,emdash" + g2="Y,Yacute,Ydieresis,uni040E" + k="164" /> + <hkern g1="hyphen,endash,emdash" + g2="w" + k="10" /> + <hkern g1="hyphen,endash,emdash" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="41" /> + <hkern g1="hyphen,endash,emdash" + g2="Z,Zcaron" + k="92" /> + <hkern g1="hyphen,endash,emdash" + g2="V,uni0423,uni0474" + k="113" /> + <hkern g1="hyphen,endash,emdash" + g2="X,uni0416,uni0425,uni046A" + k="82" /> + <hkern g1="hyphen,endash,emdash" + g2="j" + k="20" /> + <hkern g1="hyphen,endash,emdash" + g2="t" + k="20" /> + <hkern g1="hyphen,endash,emdash" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="10" /> + <hkern g1="hyphen,endash,emdash" + g2="lslash" + k="-82" /> + <hkern g1="hyphen,endash,emdash" + g2="x,uni0445,uni04B3" + k="20" /> + <hkern g1="hyphen,endash,emdash" + g2="Lslash" + k="-102" /> + <hkern g1="hyphen,endash,emdash" + g2="z,zcaron" + k="10" /> + <hkern g1="parenleft" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="41" /> + <hkern g1="parenleft" + g2="J" + k="31" /> + <hkern g1="parenleft" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="-41" /> + <hkern g1="parenleft" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-41" /> + <hkern g1="parenleft" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="10" /> + <hkern g1="parenleft" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="41" /> + <hkern g1="parenleft" + g2="Oslash" + k="41" /> + <hkern g1="parenleft" + g2="Y,Yacute,Ydieresis,uni040E" + k="-41" /> + <hkern g1="parenleft" + g2="w" + k="41" /> + <hkern g1="parenleft" + g2="f,fi,fl,f_f_i,f_f_l" + k="20" /> + <hkern g1="parenleft" + g2="j" + k="-102" /> + <hkern g1="parenleft" + g2="oslash" + k="20" /> + <hkern g1="periodcentered" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="41" /> + <hkern g1="periodcentered" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="102" /> + <hkern g1="periodcentered" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="61" /> + <hkern g1="periodcentered" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="20" /> + <hkern g1="periodcentered" + g2="Y,Yacute,Ydieresis,uni040E" + k="123" /> + <hkern g1="periodcentered" + g2="Z,Zcaron" + k="10" /> + <hkern g1="question" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="10" /> + <hkern g1="question" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="41" /> + <hkern g1="questiondown" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="-41" /> + <hkern g1="questiondown" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="82" /> + <hkern g1="questiondown" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="246" /> + <hkern g1="questiondown" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="123" /> + <hkern g1="questiondown" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="41" /> + <hkern g1="questiondown" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="41" /> + <hkern g1="questiondown" + g2="S,Scaron,uni0405" + k="20" /> + <hkern g1="questiondown" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="61" /> + <hkern g1="questiondown" + g2="Y,Yacute,Ydieresis,uni040E" + k="246" /> + <hkern g1="questiondown" + g2="w" + k="61" /> + <hkern g1="questiondown" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="20" /> + <hkern g1="questiondown" + g2="f,fi,fl,f_f_i,f_f_l" + k="20" /> + <hkern g1="questiondown" + g2="j" + k="-82" /> + <hkern g1="questiondown" + g2="t" + k="20" /> + <hkern g1="questiondown" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="20" /> + <hkern g1="questiondown" + g2="b,h,k,l,thorn" + k="20" /> + <hkern g1="questiondown" + g2="m,n,p,r,ntilde" + k="20" /> + <hkern g1="quotedbl,quotesingle" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="123" /> + <hkern g1="quotedbl,quotesingle" + g2="J" + k="82" /> + <hkern g1="quotedbl,quotesingle" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="-61" /> + <hkern g1="quotedbl,quotesingle" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-41" /> + <hkern g1="quotedbl,quotesingle" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="20" /> + <hkern g1="quotedbl,quotesingle" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="41" /> + <hkern g1="quotedbl,quotesingle" + g2="Y,Yacute,Ydieresis,uni040E" + k="-20" /> + <hkern g1="quotedbl,quotesingle" + g2="w" + k="-20" /> + <hkern g1="quotedbl,quotesingle" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-20" /> + <hkern g1="quotedbl,quotesingle" + g2="V,uni0423,uni0474" + k="-41" /> + <hkern g1="quotedbl,quotesingle" + g2="X,uni0416,uni0425,uni046A" + k="-20" /> + <hkern g1="quotedbl,quotesingle" + g2="f,fi,fl,f_f_i,f_f_l" + k="-41" /> + <hkern g1="quotedbl,quotesingle" + g2="oslash" + k="41" /> + <hkern g1="quotedbl,quotesingle" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="-20" /> + <hkern g1="quotedbl,quotesingle" + g2="x,uni0445,uni04B3" + k="-20" /> + <hkern g1="quoteleft,quotedblleft" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="225" /> + <hkern g1="quoteleft,quotedblleft" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="20" /> + <hkern g1="quoteleft,quotedblleft" + g2="J" + k="195" /> + <hkern g1="quoteleft,quotedblleft" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="-61" /> + <hkern g1="quoteleft,quotedblleft" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-41" /> + <hkern g1="quoteleft,quotedblleft" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="92" /> + <hkern g1="quoteleft,quotedblleft" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="82" /> + <hkern g1="quoteleft,quotedblleft" + g2="s,scaron,uni0455" + k="20" /> + <hkern g1="quoteleft,quotedblleft" + g2="Y,Yacute,Ydieresis,uni040E" + k="-41" /> + <hkern g1="quoteleft,quotedblleft" + g2="V,uni0423,uni0474" + k="-41" /> + <hkern g1="quoteleft,quotedblleft" + g2="X,uni0416,uni0425,uni046A" + k="-20" /> + <hkern g1="quoteleft,quotedblleft" + g2="f,fi,fl,f_f_i,f_f_l" + k="20" /> + <hkern g1="quoteleft,quotedblleft" + g2="oslash" + k="41" /> + <hkern g1="quoteleft,quotedblleft" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="20" /> + <hkern g1="quoteleft,quotedblleft" + g2="m,n,p,r,ntilde" + k="41" /> + <hkern g1="quoteright,quotedblright" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="225" /> + <hkern g1="quoteright,quotedblright" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="20" /> + <hkern g1="quoteright,quotedblright" + g2="J" + k="123" /> + <hkern g1="quoteright,quotedblright" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="-61" /> + <hkern g1="quoteright,quotedblright" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-41" /> + <hkern g1="quoteright,quotedblright" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="82" /> + <hkern g1="quoteright,quotedblright" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="123" /> + <hkern g1="quoteright,quotedblright" + g2="s,scaron,uni0455" + k="113" /> + <hkern g1="quoteright,quotedblright" + g2="Y,Yacute,Ydieresis,uni040E" + k="-41" /> + <hkern g1="quoteright,quotedblright" + g2="V,uni0423,uni0474" + k="-41" /> + <hkern g1="quoteright,quotedblright" + g2="X,uni0416,uni0425,uni046A" + k="-20" /> + <hkern g1="quoteright,quotedblright" + g2="oslash" + k="41" /> + <hkern g1="quoteright,quotedblright" + g2="lslash" + k="61" /> + <hkern g1="quoteright,quotedblright" + g2="m,n,p,r,ntilde" + k="82" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="-61" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="102" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="164" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="164" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="20" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="Oslash" + k="20" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="S,Scaron,uni0405" + k="20" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="82" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="Y,Yacute,Ydieresis,uni040E" + k="225" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="w" + k="82" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="102" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="V,uni0423,uni0474" + k="164" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="f,fi,fl,f_f_i,f_f_l" + k="61" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="florin" + k="-41" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="j" + k="-20" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="t" + k="61" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="82" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="x,uni0445,uni04B3" + k="-20" /> + <hkern g1="slash" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="143" /> + <hkern g1="slash" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="72" /> + <hkern g1="slash" + g2="J" + k="246" /> + <hkern g1="slash" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="-82" /> + <hkern g1="slash" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-41" /> + <hkern g1="slash" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="236" /> + <hkern g1="slash" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="123" /> + <hkern g1="slash" + g2="s,scaron,uni0455" + k="164" /> + <hkern g1="slash" + g2="Oslash" + k="72" /> + <hkern g1="slash" + g2="S,Scaron,uni0405" + k="20" /> + <hkern g1="slash" + g2="Y,Yacute,Ydieresis,uni040E" + k="-20" /> + <hkern g1="slash" + g2="w" + k="41" /> + <hkern g1="slash" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="20" /> + <hkern g1="slash" + g2="f,fi,fl,f_f_i,f_f_l" + k="20" /> + <hkern g1="slash" + g2="oslash" + k="164" /> + <hkern g1="slash" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="92" /> + <hkern g1="slash" + g2="z,zcaron" + k="123" /> + <hkern g1="slash" + g2="m,n,p,r,ntilde" + k="123" /> + <hkern g1="underscore" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="-61" /> + <hkern g1="underscore" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="82" /> + <hkern g1="underscore" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="82" /> + <hkern g1="underscore" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="92" /> + <hkern g1="underscore" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="41" /> + <hkern g1="underscore" + g2="Oslash" + k="61" /> + <hkern g1="underscore" + g2="S,Scaron,uni0405" + k="20" /> + <hkern g1="underscore" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="31" /> + <hkern g1="underscore" + g2="Y,Yacute,Ydieresis,uni040E" + k="123" /> + <hkern g1="underscore" + g2="w" + k="82" /> + <hkern g1="underscore" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="82" /> + <hkern g1="underscore" + g2="Z,Zcaron" + k="-20" /> + <hkern g1="underscore" + g2="f,fi,fl,f_f_i,f_f_l" + k="20" /> + <hkern g1="underscore" + g2="j" + k="-102" /> + <hkern g1="underscore" + g2="oslash" + k="20" /> + <hkern g1="underscore" + g2="t" + k="31" /> + <hkern g1="underscore" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="31" /> + <hkern g1="ordmasculine" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="61" /> + </font> +</defs></svg> diff --git a/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-Light.ttf b/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-Light.ttf new file mode 100755 index 0000000000000000000000000000000000000000..669b9ee88a86a297576f182d628d45dd649f0f01 Binary files /dev/null and b/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-Light.ttf differ diff --git a/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-Light.woff b/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-Light.woff new file mode 100755 index 0000000000000000000000000000000000000000..5d463cff39dd681102c1173e264ff2835dffae55 Binary files /dev/null and b/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-Light.woff differ diff --git a/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-Light.woff2 b/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-Light.woff2 new file mode 100755 index 0000000000000000000000000000000000000000..517c8eaac89282dc27feb557eb9684dc914ac7f2 Binary files /dev/null and b/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-Light.woff2 differ diff --git a/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-LightItalic.eot b/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-LightItalic.eot new file mode 100755 index 0000000000000000000000000000000000000000..0a614762a2444389b0b698599e1ba518e78ac489 Binary files /dev/null and b/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-LightItalic.eot differ diff --git a/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-LightItalic.svg b/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-LightItalic.svg new file mode 100755 index 0000000000000000000000000000000000000000..1f6e38beacc011092b4dce002b5c4ebb2365646a --- /dev/null +++ b/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-LightItalic.svg @@ -0,0 +1,6642 @@ +<?xml version="1.0" standalone="no"?> +<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" > +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1"> +<metadata> +Created by FontForge 20161013 at Sun Mar 19 13:47:33 2017 + By ,,, +Copyright (c)2015, HK Grotesk Latin by Alfredo Marco Pradil (ammpradil@gmail.com) and HK Grotesk Cyrillic by Stefan Peev (http://www.contextbg.net/). HK Grotesk is a trademark of Alfredo Marco Pradil. +</metadata> +<defs> +<font id="HKGrotesk-LightItalic" horiz-adv-x="0" > + <font-face + font-family="HK Grotesk Light Italic" + font-weight="300" + font-style="italic" + font-stretch="normal" + units-per-em="2048" + panose-1="0 0 4 0 0 0 0 0 0 0" + ascent="1434" + descent="-614" + x-height="999" + cap-height="1413" + bbox="-682 -512 2767 2249" + underline-thickness="82" + underline-position="-410" + slope="-13" + unicode-range="U+0020-FB02" + /> +<missing-glyph horiz-adv-x="1257" +d="M104 0l220 954h819l-219 -954h-820zM229 102h615l174 750h-615z" /> + <glyph glyph-name="fi" unicode="fi" horiz-adv-x="958" +d="M66 0l206 897h-145l23 102l149 7q16 69 39.5 129t59.5 116t81 95.5t106 63.5t132 24q190 0 264 -121l-70 -78q-41 57 -84.5 76.5t-93.5 19.5q-246 0 -323 -338l501 6l-229 -999h-111l207 897h-391l-207 -897h-114z" /> + <glyph glyph-name="fl" unicode="fl" horiz-adv-x="961" +d="M711 -20q-46 0 -72 18t-32.5 52.5t-3.5 71t15 87.5l246 1059q0 6 -3.5 13t-13.5 16t-26 16t-44.5 11.5t-65.5 4.5q-117 0 -182.5 -48t-88.5 -153l-30 -129h227l-23 -102h-227l-207 -897h-114l206 897h-145l23 102h147l39 162q33 138 131 205.5t242 67.5q71 0 137 -27 +t133 -107l-262 -1155q-11 -53 26 -53q28 0 76 23l-26 -115q-34 -20 -82 -20z" /> + <glyph glyph-name="f_f_i" unicode="ffi" horiz-adv-x="1481" +d="M956 1124l-28 -125h506l-230 -999h-110l206 897h-395l-207 -897h-114l207 897h-410l-207 -897h-119l207 897h-135l23 102h137l32 142q30 131 135.5 212t235.5 81q166 0 254 -111q56 49 133.5 80t153.5 31q143 0 270 -121l-79 -85q-3 8 -15 23t-34 34t-59.5 32.5 +t-80.5 13.5q-97 0 -175.5 -57t-101.5 -150zM848 1141q22 82 33 108q-2 6 -14 18.5t-33.5 27.5t-58 25.5t-79.5 10.5q-98 0 -169.5 -56t-94.5 -151l-29 -125h412zM1422 1228l-1 -1z" /> + <glyph glyph-name="f_f_l" unicode="ffl" horiz-adv-x="1487" +d="M1223 -20q-37 0 -60 11t-33 26.5t-11 43.5t3 51.5t13 59.5l249 1083q-9 33 -48 54.5t-89 21.5q-98 0 -172 -61t-96 -156l-27 -115h162l-22 -102h-162l-207 -897h-115l207 897h-434l-207 -897h-119l207 897h-135l23 102h137l30 129q31 133 137.5 219.5t241.5 86.5 +q57 0 103.5 -11t81 -32.5t50.5 -34.5t38 -35q59 54 124 83.5t154 29.5t139 -26t115 -105l-262 -1153q-14 -56 27 -56q28 0 67 21l-16 -117q-49 -18 -94 -18zM403 999l439 7q43 188 63 225q-21 38 -69.5 69t-120.5 31q-101 0 -180.5 -58t-102.5 -155z" /> + <glyph glyph-name=".notdef" horiz-adv-x="1257" +d="M104 0l220 954h819l-219 -954h-820zM229 102h615l174 750h-615z" /> + <glyph glyph-name=".null" + /> + <glyph glyph-name="nonmarkingreturn" horiz-adv-x="682" + /> + <glyph glyph-name="space" unicode=" " horiz-adv-x="553" + /> + <glyph glyph-name="exclam" unicode="!" horiz-adv-x="637" +d="M240 369l219 1067h153l-276 -1067h-96zM115 0l41 176h178l-41 -176h-178z" /> + <glyph glyph-name="quotedbl" unicode=""" horiz-adv-x="903" +d="M367 1014l92 399h116l-92 -399h-116zM655 1014l93 399h118l-92 -399h-119z" /> + <glyph glyph-name="numbersign" unicode="#" horiz-adv-x="1374" +d="M154 0l192 444h-240l23 99h260l152 350h-250l22 92h269l198 449h105l-195 -437h336l193 437h104l-195 -445h240l-22 -96h-259l-153 -350h250l-23 -92h-268l-197 -451h-104l192 436h-335l-191 -436h-104zM494 543h335l152 350h-334z" /> + <glyph glyph-name="dollar" unicode="$" horiz-adv-x="1108" +d="M340 -246l59 234q-76 7 -139.5 35.5t-110 76t-70.5 117t-18 152.5l136 26q-18 -138 60.5 -210t213.5 -72q138 0 239 70.5t132 205.5q17 75 -7.5 132.5t-76 95t-116.5 70t-129.5 67t-115 76.5t-73 108t-2.5 152q33 141 143.5 232.5t255.5 107.5l59 229h84l-59 -227 +q111 -9 188.5 -65t110.5 -161l-113 -59q-25 84 -87 125t-146 41q-101 0 -190 -64.5t-111 -167.5q-13 -56 -0.5 -102t44.5 -77t76.5 -59.5t95 -51t101 -51t94 -58.5t73 -74.5t39.5 -99t-7 -131.5q-39 -173 -175.5 -279.5t-314.5 -111.5l-59 -232h-84z" /> + <glyph glyph-name="percent" unicode="%" horiz-adv-x="1585" +d="M467 813q-54 0 -93.5 20.5t-59.5 53.5t-29 76t-6.5 86t12.5 86q11 51 34 101t57.5 96.5t86.5 75t113 28.5t104 -28.5t61.5 -74.5t22.5 -104.5t-12 -118.5q-19 -77 -56 -142t-99.5 -110t-135.5 -45zM244 8l1063 1387h116l-1063 -1387h-116zM461 895q52 0 97 39.5t71.5 92 +t40.5 110.5q9 51 10 98.5t-23.5 82t-72.5 34.5q-77 0 -134 -74t-77 -168q-10 -51 -11 -98.5t24.5 -82t74.5 -34.5zM1108 6q-45 0 -80.5 14t-56.5 38.5t-34 55.5t-16.5 67.5t-1 72.5t10.5 72q9 40 24.5 79t41 79t57.5 70.5t75.5 49.5t92.5 19q61 0 103.5 -28t61 -74t23 -104 +t-11.5 -118q-27 -120 -104 -206.5t-185 -86.5zM1102 88q52 0 97.5 39t72.5 91t39 108q9 51 10 98t-23.5 81t-72.5 34q-78 0 -134 -72t-77 -166q-10 -50 -11 -97t24.5 -81.5t74.5 -34.5z" /> + <glyph glyph-name="ampersand" unicode="&" horiz-adv-x="1372" +d="M1190 672q-76 -233 -206 -397l159 -255l-92 -69l-146 236q-210 -207 -487 -207q-174 0 -267.5 84.5t-58.5 242.5q15 64 50 123t75 102.5t103 90.5t112 77t123 72q-13 22 -22.5 38.5t-23 41.5t-22.5 45.5t-19.5 46.5t-16 49.5t-9.5 48.5t-3.5 50t5.5 49q31 133 140.5 211 +t244.5 78q134 0 204 -90t38 -224q-14 -61 -48 -115t-89.5 -101.5t-108 -83t-128.5 -79.5l229 -368q94 133 161 327zM543 1114q-24 -103 97 -294q73 42 120.5 72.5t98.5 71.5t81 84.5t41 92.5q18 79 -28 130.5t-124 51.5q-93 0 -178 -56t-108 -153zM426 94q249 0 424 183 +l-250 404q-69 -39 -112 -65.5t-99 -67.5t-90.5 -77t-64 -84t-41.5 -100t3 -91t51 -60.5t80.5 -31.5t98.5 -10z" /> + <glyph glyph-name="quotesingle" unicode="'" horiz-adv-x="612" +d="M373 1042l92 400h117l-93 -400h-116z" /> + <glyph glyph-name="parenleft" unicode="(" horiz-adv-x="565" +d="M264 -4q-53 80 -79.5 212t-24 265.5t27.5 243.5q42 177 144.5 370.5t251.5 335.5l112 -8q-150 -154 -256.5 -343t-152.5 -382q-26 -118 -29 -238t22 -242.5t78 -221.5z" /> + <glyph glyph-name="parenright" unicode=")" horiz-adv-x="567" +d="M-31 -4q147 150 254.5 345t149.5 376q41 173 22 366t-92 340l94 -8q59 -95 86 -221.5t23 -251.5t-33 -248q-40 -172 -153 -382t-244 -324z" /> + <glyph glyph-name="asterisk" unicode="*" horiz-adv-x="872" +d="M395 854l-67 59l223 207l-244 43l51 99l213 -105l29 256h92l-90 -256l258 105l8 -99l-266 -43l131 -207l-86 -59l-72 238z" /> + <glyph glyph-name="plus" unicode="+" horiz-adv-x="1282" +d="M623 106v472h-457v96h457v469h96v-469h457v-96h-457v-472h-96z" /> + <glyph glyph-name="comma" unicode="," horiz-adv-x="629" +d="M29 -225l215 489h174l-312 -489h-77z" /> + <glyph glyph-name="hyphen" unicode="-" horiz-adv-x="831" +d="M201 643l22 96h496l-23 -96h-495z" /> + <glyph glyph-name="period" unicode="." horiz-adv-x="674" +d="M129 0l41 176h186l-41 -176h-186z" /> + <glyph glyph-name="slash" unicode="/" horiz-adv-x="938" +d="M-188 -430l1198 1946h135l-1194 -1946h-139z" /> + <glyph glyph-name="zero" unicode="0" horiz-adv-x="1167" +d="M483 -20q-94 0 -166.5 32t-115.5 87.5t-69 127.5t-31.5 156t1.5 167.5t27 168.5q23 100 60.5 197t96 192t129.5 167t166.5 116.5t200.5 44.5q101 0 177.5 -41t121 -112.5t66 -166.5t17.5 -203t-31 -223q-25 -110 -68 -213t-104 -193.5t-133.5 -158t-161.5 -106.5 +t-183 -39zM483 100q81 0 155.5 41t130.5 105.5t103 148.5t77 165t48 161q19 79 26.5 157t0 157.5t-33 139.5t-80 98t-134.5 38q-83 0 -159 -39.5t-132.5 -102.5t-104 -146t-77.5 -164.5t-49 -164.5q-18 -79 -26 -156.5t0 -158t34 -141.5t82.5 -99.5t138.5 -38.5z" /> + <glyph glyph-name="one" unicode="1" horiz-adv-x="1167" +d="M477 0l252 1094h-338l27 114h166q85 0 148.5 54.5t80.5 132.5l4 18h121l-326 -1413h-135z" /> + <glyph glyph-name="two" unicode="2" horiz-adv-x="1167" +d="M-10 0l24 131q148 82 262.5 158.5t167.5 120t117 102.5q178 149 277.5 271t130.5 259q31 133 -21 202t-162 69q-133 0 -236 -95t-151 -262l-129 27q53 222 189 335.5t327 113.5q194 0 279.5 -112t42.5 -300q-35 -150 -146 -289t-325 -319q-60 -48 -115 -89t-90 -65.5 +t-79.5 -53t-60.5 -38t-58 -33t-48 -27.5l781 5l-25 -111h-952z" /> + <glyph glyph-name="three" unicode="3" horiz-adv-x="1167" +d="M463 -20q-207 0 -317 108.5t-64 304.5l121 2q-32 -141 47 -221t217 -80q91 0 178 35t156.5 109t91.5 174q15 72 3 124.5t-49.5 86.5t-90 50.5t-117.5 16.5h-90l29 119h77q111 0 197 69t115 191q27 115 -32.5 181.5t-166.5 66.5q-119 0 -219 -74t-129 -190l-111 28 +q37 166 166.5 259.5t296.5 93.5q111 0 192 -44t115.5 -130t7.5 -199q-22 -97 -83.5 -176.5t-161.5 -128.5q111 -37 152.5 -136.5t13.5 -234.5q-45 -195 -196 -300t-349 -105z" /> + <glyph glyph-name="four" unicode="4" horiz-adv-x="1167" +d="M616 0l91 393h-652l17 76l876 944h125l-211 -909h225l-24 -111h-225l-90 -393h-132zM236 504h495l166 706z" /> + <glyph glyph-name="five" unicode="5" horiz-adv-x="1167" +d="M467 -20q-119 0 -204.5 53t-125.5 139.5t-39 196.5l121 30q-1 -46 3.5 -86.5t20.5 -83t42 -72t72.5 -48.5t107.5 -19q83 0 157 33t127 88t89 121t53 137q17 65 10 125.5t-30.5 107t-75.5 75t-125 28.5q-97 0 -187.5 -45t-156.5 -123l-101 72l283 704h676l-27 -115h-575 +l-201 -499q126 112 307 112q132 0 219.5 -65t116.5 -170.5t0 -231.5q-45 -193 -203.5 -328.5t-353.5 -135.5z" /> + <glyph glyph-name="six" unicode="6" horiz-adv-x="1167" +d="M477 -20q-96 0 -174 37.5t-124 102.5t-64 152t6 185q30 130 117 237l577 719h148l-445 -539q67 15 146 15q196 0 301 -130t61 -325q-44 -185 -201 -319.5t-348 -134.5zM481 98q141 0 264.5 106t157.5 253q32 139 -37 236.5t-202 97.5q-140 0 -263.5 -105.5t-158.5 -253.5 +q-31 -137 38.5 -235.5t200.5 -98.5z" /> + <glyph glyph-name="seven" unicode="7" horiz-adv-x="1167" +d="M172 0l899 1298h-766l27 115h919l-14 -65l-913 -1348h-152z" /> + <glyph glyph-name="eight" unicode="8" horiz-adv-x="1167" +d="M475 -20q-98 0 -177 26.5t-133 78.5t-72.5 130.5t3.5 181.5q31 129 118.5 223t227.5 146q-76 45 -107 130.5t-7 190.5q37 161 168.5 254t294.5 93q170 0 261.5 -100.5t51.5 -270.5q-22 -99 -87 -178t-167 -127q108 -47 153 -148.5t15 -236.5q-30 -129 -113.5 -219.5 +t-193 -132t-236.5 -41.5zM647 799q115 0 211.5 74.5t124.5 195.5q28 118 -29.5 185t-165.5 67q-109 0 -208 -71t-127 -191q-28 -118 26 -189t168 -71zM477 88q90 0 174 35t151.5 110t90.5 177q32 138 -42.5 216.5t-207.5 78.5q-145 0 -265.5 -86t-154.5 -234 +q-33 -142 44.5 -219.5t209.5 -77.5z" /> + <glyph glyph-name="nine" unicode="9" horiz-adv-x="1167" +d="M305 0l440 539q-64 -15 -147 -15q-128 0 -221 59t-130.5 163.5t-8.5 232.5q42 186 200 320.5t350 134.5q127 0 219 -64t128 -174t6 -240q-28 -126 -113 -237l-579 -719h-144zM598 623q141 0 264.5 105t157.5 253q32 137 -37.5 235.5t-202.5 98.5q-139 0 -263.5 -106 +t-158.5 -253q-31 -138 38.5 -235.5t201.5 -97.5z" /> + <glyph glyph-name="colon" unicode=":" horiz-adv-x="678" +d="M313 778l41 176h178l-40 -176h-179zM135 0l41 176h178l-41 -176h-178z" /> + <glyph glyph-name="semicolon" unicode=";" horiz-adv-x="657" +d="M354 778l41 176h178l-41 -176h-178zM41 -225l215 489h174l-311 -489h-78z" /> + <glyph glyph-name="less" unicode="<" horiz-adv-x="1264" +d="M1032 174l-876 500l876 500l60 -103l-723 -397l723 -398z" /> + <glyph glyph-name="equal" unicode="=" horiz-adv-x="1229" +d="M266 780v119h742v-119h-742zM266 444v119h742v-119h-742z" /> + <glyph glyph-name="greater" unicode=">" horiz-adv-x="1264" +d="M311 174l-59 102l723 398l-723 397l59 103l877 -500z" /> + <glyph glyph-name="question" unicode="?" horiz-adv-x="1038" +d="M422 365l59 256q13 57 41 98.5t63 66.5t75 45t80.5 41t76 47t64.5 70.5t43 104.5q26 112 -34.5 168.5t-176.5 56.5q-115 0 -215 -67t-127 -179l-125 12q26 106 98.5 187t167.5 121.5t197 40.5q180 0 276.5 -97.5t56.5 -269.5q-15 -66 -45.5 -117t-67.5 -81.5t-79 -54.5 +t-82.5 -43.5t-75.5 -40t-61 -52t-35 -72.5l-55 -241h-119zM311 0l41 176h178l-41 -176h-178z" /> + <glyph glyph-name="at" unicode="@" horiz-adv-x="2079" +d="M848 -348q-181 0 -327 59t-241 171.5t-127 274.5t15 369q44 191 146.5 357.5t243.5 287.5t322.5 191t376.5 70q256 0 431 -115t239 -315.5t6 -450.5q-27 -116 -76 -219.5t-119 -190t-167 -137.5t-207 -51q-143 0 -201 79t-6 206q-72 -80 -166 -123t-186 -43 +q-78 0 -132.5 30.5t-80 83t-31.5 121.5t14 146q18 78 56 158.5t93.5 156t121.5 134.5t147 94.5t162 35.5q108 0 173 -58.5t58 -150.5l68 160l137 -6q-25 -62 -100.5 -218.5t-136 -297t-80.5 -228.5q-19 -78 2 -108.5t90 -30.5q74 0 140 30.5t113 79t86 113.5t63 129t40 132 +q48 208 -3.5 373.5t-196 259.5t-359.5 94q-172 0 -332 -62t-283.5 -169.5t-212 -254t-126.5 -313.5q-40 -174 -14 -308t106 -225t200.5 -137.5t270.5 -46.5q130 0 264 41l33 -129q-151 -49 -307 -49zM834 209q86 0 168.5 45.5t142.5 116.5t102.5 152t59.5 157 +q49 215 -138 215q-87 0 -169.5 -45t-143 -116t-103 -151.5t-59.5 -156.5q-50 -217 140 -217z" /> + <glyph glyph-name="A" unicode="A" horiz-adv-x="1296" +d="M-39 0l848 1413h104l193 -1413h-141l-37 307h-639l-178 -307h-150zM362 434h549l-90 780z" /> + <glyph glyph-name="B" unicode="B" horiz-adv-x="1235" +d="M104 0l326 1413h361q71 0 133 -12t115.5 -38.5t87 -68t46.5 -100t-6 -135.5q-26 -114 -91.5 -190t-170.5 -130q41 -20 72 -43t58 -56.5t38.5 -73t15 -93t-13.5 -117.5q-23 -101 -77 -173t-128.5 -110.5t-152.5 -55.5t-166 -17h-447zM414 778h225q139 0 244.5 72.5 +t136.5 210.5q12 41 9.5 73.5t-9.5 57t-26 42t-40 29t-51 18t-60 9t-67 2.5h-244zM264 123h309q63 0 118.5 12t109 40t92 81.5t55.5 128.5q10 56 11 97.5t-15 71.5t-37 49.5t-54 31t-66 16t-74 4.5h-326z" /> + <glyph glyph-name="C" unicode="C" horiz-adv-x="1423" +d="M649 -20q-127 0 -223.5 38.5t-154.5 106t-87 161t-28 202.5t30 231q35 149 101 276.5t161 227t227 156.5t286 57q206 0 337.5 -95.5t149.5 -279.5l-127 -39q-28 291 -369 291q-127 0 -236 -50t-187 -136t-131.5 -192.5t-82.5 -229.5q-19 -82 -24 -156t3 -142.5 +t34.5 -123.5t69 -95.5t108 -63t149.5 -22.5q334 0 521 310l112 -68q-119 -178 -284 -271t-355 -93z" /> + <glyph glyph-name="D" unicode="D" horiz-adv-x="1405" +d="M104 0l326 1413h342q341 0 483.5 -188.5t61.5 -540.5q-77 -330 -300.5 -507t-561.5 -177h-351zM268 123h181q127 0 243.5 37t216 109t173.5 187.5t108 262.5q64 277 -46.5 426t-391.5 149h-213z" /> + <glyph glyph-name="E" unicode="E" horiz-adv-x="1235" +d="M104 0l326 1413h909l-26 -113h-774l-123 -538h661l-26 -109h-662l-123 -532h774l-26 -121h-910z" /> + <glyph glyph-name="F" unicode="F" horiz-adv-x="1186" +d="M104 0l326 1413h883l-27 -113h-747l-123 -538h659l-26 -109h-660l-149 -653h-136z" /> + <glyph glyph-name="G" unicode="G" horiz-adv-x="1503" +d="M649 -20q-127 0 -223.5 38.5t-154.5 106t-87 161t-28 202.5t30 231q34 149 101.5 277t163.5 227t227.5 156t282.5 57q199 0 323 -97t164 -278l-131 -43q-73 287 -367 287q-127 0 -235.5 -48.5t-186 -133t-131 -190t-82.5 -228.5q-22 -98 -25.5 -185t15.5 -163t61 -130.5 +t115.5 -86t173.5 -31.5q130 0 248.5 56t210 170.5t127.5 268.5l-326 -6l25 104h449l-162 -702h-115l68 266q-72 -119 -214.5 -202.5t-316.5 -83.5z" /> + <glyph glyph-name="H" unicode="H" horiz-adv-x="1446" +d="M104 0l326 1413h135l-149 -651h737l150 651h135l-326 -1413h-135l149 653h-737l-149 -653h-136z" /> + <glyph glyph-name="I" unicode="I" horiz-adv-x="573" +d="M104 0l326 1413h135l-325 -1413h-136z" /> + <glyph glyph-name="J" unicode="J" horiz-adv-x="1114" +d="M387 -20q-125 0 -207 56.5t-111 148t-12 206.5l131 6q-12 -56 -4.5 -110t27.5 -96.5t66.5 -68.5t113.5 -26q89 0 157 31t112 88.5t71.5 121.5t46.5 148l189 815h-533l27 113h667l-213 -919q-56 -249 -184 -381.5t-344 -132.5z" /> + <glyph glyph-name="K" unicode="K" horiz-adv-x="1440" +d="M104 0l326 1413h135l-198 -852l1001 852h174l-655 -551l364 -862h-147l-313 780l-459 -385l-92 -395h-136z" /> + <glyph glyph-name="L" unicode="L" horiz-adv-x="1030" +d="M104 0l326 1413h135l-299 -1292h604l-26 -121h-740z" /> + <glyph glyph-name="M" unicode="M" horiz-adv-x="1753" +d="M104 0l326 1413h236l145 -1167l694 1167h240l-326 -1413h-135l309 1331l-725 -1208h-155l-162 1208l-309 -1331h-138z" /> + <glyph glyph-name="N" unicode="N" horiz-adv-x="1409" +d="M104 0l326 1413h213l324 -1288l299 1288h135l-326 -1413h-217l-317 1290l-299 -1290h-138z" /> + <glyph glyph-name="O" unicode="O" horiz-adv-x="1511" +d="M645 -20q-125 0 -220 38.5t-153 106.5t-87.5 161t-29 202.5t28.5 230.5q34 148 101 275.5t163 226.5t228 156t282 57q126 0 222.5 -38.5t154.5 -106.5t88 -161.5t29 -203t-29 -230.5q-27 -118 -75 -223t-118 -195.5t-156 -156t-196.5 -102.5t-232.5 -37zM651 106 +q105 0 199 33.5t166 90.5t130.5 136t97 167t61.5 186q21 94 23.5 178.5t-18 160t-64 130.5t-119 87t-177.5 32q-127 0 -237.5 -50.5t-190 -137.5t-134 -194.5t-83.5 -230.5q-21 -94 -23.5 -178.5t17.5 -160t62.5 -130.5t116 -87t173.5 -32z" /> + <glyph glyph-name="P" unicode="P" horiz-adv-x="1143" +d="M104 0l326 1413h379q204 0 300.5 -106.5t53.5 -288.5q-41 -178 -177 -272.5t-341 -94.5h-256l-149 -651h-136zM416 768h246q147 0 245.5 70t128.5 204q28 122 -34.5 188t-206.5 66h-256z" /> + <glyph glyph-name="Q" unicode="Q" horiz-adv-x="1536" +d="M1200 -92l-145 194q-167 -122 -410 -122q-125 0 -220 38.5t-153 106.5t-87.5 161t-29 202.5t28.5 230.5q34 148 101 275.5t163 226.5t228 156t282 57q126 0 222.5 -38.5t154.5 -106t88 -161t29 -203t-29 -231.5q-77 -325 -276 -510l147 -194zM651 100q178 0 328 97 +l-152 206l91 84l157 -206q154 164 219 438q22 94 25.5 179t-15.5 161.5t-60.5 132.5t-116 88.5t-175.5 32.5q-128 0 -238 -51.5t-187.5 -139.5t-131 -196t-82.5 -232q-21 -94 -24.5 -179t15 -161.5t59.5 -132.5t114.5 -88.5t173.5 -32.5z" /> + <glyph glyph-name="R" unicode="R" horiz-adv-x="1206" +d="M102 -2l328 1413h385q189 0 288 -109.5t58 -289.5q-32 -140 -135.5 -235t-249.5 -120l221 -659h-145l-205 641h-260l-149 -641h-136zM418 770h276q125 6 219.5 75.5t122.5 192.5q27 122 -38 188t-197 66h-262z" /> + <glyph glyph-name="S" unicode="S" horiz-adv-x="1106" +d="M475 -16q-176 0 -296 99t-120 275l129 27q0 -133 74 -207t217 -74q163 0 263 88.5t100 215.5q0 51 -18 92t-48.5 70.5t-70.5 54.5t-83.5 46.5t-87.5 43.5t-84 50t-70.5 61.5t-48.5 81.5t-18 106q0 112 61 208.5t166 154t228 57.5q122 0 209.5 -57.5t124.5 -162.5 +l-105 -55q-22 77 -86 118.5t-147 41.5q-125 0 -222.5 -82.5t-97.5 -200.5q0 -53 22.5 -96t60 -70.5t85 -55t97 -49t97 -52.5t85 -66t60 -90t22.5 -123q0 -186 -144.5 -318t-353.5 -132z" /> + <glyph glyph-name="T" unicode="T" horiz-adv-x="1247" +d="M440 0l301 1307h-485l25 106h1108l-25 -106h-485l-301 -1307h-138z" /> + <glyph glyph-name="U" unicode="U" horiz-adv-x="1346" +d="M561 -20q-102 0 -178 30t-120 81t-66 120.5t-21.5 145.5t19.5 159l206 897h136l-199 -860q-103 -447 229 -447q98 0 178 36t135.5 101t92.5 144.5t59 177.5l197 848h135l-207 -899q-25 -108 -74 -201.5t-121 -169.5t-175.5 -119.5t-225.5 -43.5z" /> + <glyph glyph-name="V" unicode="V" horiz-adv-x="1319" +d="M483 0l-196 1413h133l158 -1253l739 1253h137l-848 -1413h-123z" /> + <glyph glyph-name="W" unicode="W" horiz-adv-x="1966" +d="M360 0l-63 1413h133l51 -1263l635 1181h111l88 -1181l635 1263h141l-719 -1413h-155l-87 1112l-614 -1112h-156z" /> + <glyph glyph-name="X" unicode="X" horiz-adv-x="1241" +d="M-31 0l631 707l-299 706h156l235 -596l516 596h160l-627 -706l299 -707h-151l-244 586l-512 -586h-164z" /> + <glyph glyph-name="Y" unicode="Y" horiz-adv-x="1315" +d="M477 0l129 553l-330 860h152l268 -719l607 719h157l-725 -860l-129 -553h-129z" /> + <glyph glyph-name="Z" unicode="Z" horiz-adv-x="1278" +d="M-18 0l22 111l1186 1189h-864l26 113h1030l-24 -117l-1180 -1173h907l-28 -123h-1075z" /> + <glyph glyph-name="bracketleft" unicode="[" horiz-adv-x="641" +d="M82 -76l360 1563h344l-16 -74h-235l-326 -1413h235l-18 -76h-344z" /> + <glyph glyph-name="backslash" unicode="\" horiz-adv-x="938" +d="M563 -430l-299 1946h133l295 -1946h-129z" /> + <glyph glyph-name="bracketright" unicode="]" horiz-adv-x="641" +d="M-51 -76l18 76h236l325 1413h-235l16 74h344l-360 -1563h-344z" /> + <glyph glyph-name="asciicircum" unicode="^" horiz-adv-x="973" +d="M219 848l475 563l221 -563h-133l-131 342l-291 -342h-141z" /> + <glyph glyph-name="underscore" unicode="_" horiz-adv-x="1241" +d="M102 -96l23 96h762l-23 -96h-762z" /> + <glyph glyph-name="grave" unicode="`" horiz-adv-x="541" +d="M463 1126l-180 287h172l149 -287h-141z" /> + <glyph glyph-name="a" unicode="a" horiz-adv-x="1118" +d="M932 999h125l-230 -999h-125l29 134q-145 -154 -342 -154q-94 0 -162 42t-101 114t-40 169t20 207q33 143 103.5 257t174 182.5t222.5 68.5q214 0 289 -170zM829 512q19 80 19 148t-20 123.5t-69 87.5t-124 32q-152 0 -257.5 -119.5t-146.5 -296.5q-21 -77 -19 -148 +t22 -125.5t69 -87t123 -32.5q105 0 190 60t136 151.5t77 206.5z" /> + <glyph glyph-name="b" unicode="b" horiz-adv-x="1114" +d="M506 -20q-214 0 -287 172l-37 -152h-123l326 1413h123l-131 -555q150 164 346 164q96 0 164.5 -42.5t101 -115t40 -170t-20.5 -207.5q-34 -143 -103 -256t-173.5 -182t-225.5 -69zM475 88q78 0 147.5 35t121 95t88 135t55.5 159q20 77 17 149t-23 128t-70 90t-123 34 +q-103 0 -188.5 -62.5t-137 -156t-77.5 -207.5q-19 -80 -19 -149.5t19.5 -126.5t68 -90t121.5 -33z" /> + <glyph glyph-name="c" unicode="c" horiz-adv-x="965" +d="M414 -20q-83 0 -147.5 28.5t-104 78t-60 116.5t-20 145t19.5 162q24 101 70.5 191t112.5 161t155 112.5t189 41.5q132 0 216.5 -70t110.5 -190l-125 -41q-1 93 -57.5 145.5t-146.5 52.5q-65 0 -123.5 -26t-102 -68.5t-79.5 -99t-59.5 -115t-37.5 -119.5 +q-13 -58 -17 -112.5t4 -108.5t30 -93.5t65 -64t105 -24.5q99 0 187 58.5t132 152.5l96 -62q-72 -121 -179 -186t-234 -65z" /> + <glyph glyph-name="d" unicode="d" horiz-adv-x="1118" +d="M1028 1413h125l-326 -1413h-125l29 134q-145 -154 -342 -154q-94 0 -162 42t-101 114t-40 169t20 207q33 143 103.5 257t174 182.5t222.5 68.5q214 0 289 -170zM829 512q19 80 19 148t-20 123.5t-69 87.5t-124 32q-152 0 -257.5 -119.5t-146.5 -296.5q-21 -77 -19 -148 +t22 -125.5t69 -87t123 -32.5q105 0 190 60t136 151.5t77 206.5z" /> + <glyph glyph-name="e" unicode="e" horiz-adv-x="1028" +d="M430 -12q-108 0 -185 40t-114 110t-46.5 164.5t17.5 203.5q23 101 69.5 191t112.5 161t155 112.5t188 41.5q94 0 161 -29.5t103.5 -79t51.5 -119.5t10 -146.5t-25 -164.5l-3 -7l-5 -15h-699q-21 -72 -16.5 -136t27.5 -113t74 -77.5t124 -28.5q99 0 175.5 25t146.5 86 +l79 -74q-98 -78 -191.5 -111.5t-209.5 -33.5zM246 559h585q40 158 -11.5 248t-196.5 90q-141 0 -241 -97t-136 -241z" /> + <glyph glyph-name="f" unicode="f" horiz-adv-x="676" +d="M102 0l207 897h-182l23 100h182l47 205q27 112 110 172t191 60q85 0 158 -39l-43 -90q-56 26 -115 26q-68 0 -117 -36.5t-65 -108.5l-43 -187h301l-23 -102h-301l-207 -897h-123z" /> + <glyph glyph-name="g" unicode="g" horiz-adv-x="1120" +d="M825 -6q-46 -201 -174.5 -313.5t-322.5 -112.5q-125 0 -215 51t-129 148l108 61q58 -152 238 -152q141 0 239.5 92.5t132.5 237.5l35 135q-147 -161 -340 -161q-98 0 -168 41.5t-103 113.5t-40.5 169t20.5 208q52 222 187.5 365t320.5 143q105 0 176 -46.5t105 -125.5 +l37 151h127zM426 88q78 0 147 35.5t118.5 96t84 134.5t53.5 158q19 80 19 149t-19 126t-67.5 89.5t-122.5 32.5q-79 0 -148 -34.5t-119.5 -94.5t-86 -134t-54.5 -159q-19 -80 -18.5 -150t20.5 -126.5t69.5 -89.5t123.5 -33z" /> + <glyph glyph-name="h" unicode="h" horiz-adv-x="1108" +d="M59 0l326 1413h123l-137 -584q66 85 167 136t201 51q86 0 145.5 -33t85 -88.5t31 -128t-15.5 -152.5l-141 -614h-127l139 604q65 293 -141 293q-137 0 -256 -106.5t-152 -249.5l-125 -541h-123z" /> + <glyph glyph-name="i" unicode="i" horiz-adv-x="477" +d="M332 1229l43 184h151l-43 -184h-151zM59 0l230 999h129l-230 -999h-129z" /> + <glyph glyph-name="j" unicode="j" horiz-adv-x="481" +d="M334 1239l43 180h153l-43 -180h-153zM-145 -438q-64 0 -146 32l35 84q47 -14 113 -14q67 0 108 45.5t55 106.5l273 1183h129l-270 -1173q-61 -264 -297 -264z" /> + <glyph glyph-name="k" unicode="k" horiz-adv-x="1026" +d="M59 0l326 1413h127l-229 -983l594 569h157l-399 -362l237 -637h-145l-182 547l-289 -254l-70 -293h-127z" /> + <glyph glyph-name="l" unicode="l" horiz-adv-x="504" +d="M213 -20q-120 0 -128 90q-4 38 19 139l279 1204h127l-293 -1266q-14 -65 39 -65q20 0 90 18l-12 -102q-52 -18 -121 -18z" /> + <glyph glyph-name="m" unicode="m" horiz-adv-x="1686" +d="M59 0l230 999h127l-43 -182q46 90 132 145.5t181 55.5q117 0 189.5 -55t78.5 -160q142 213 349 213q91 0 153 -33t88.5 -89.5t32.5 -132t-16 -159.5l-140 -602h-127l140 604q67 311 -146 311q-84 0 -160 -51t-125 -129t-69 -166l-131 -569h-127l139 608q71 307 -141 307 +q-127 0 -226.5 -104t-130.5 -242l-131 -569h-127z" /> + <glyph glyph-name="n" unicode="n" horiz-adv-x="1106" +d="M59 0l230 999h125l-39 -161q64 80 159.5 129t192.5 49q91 0 152.5 -33t87.5 -89.5t31 -132t-17 -159.5l-139 -602h-125l139 604q65 291 -147 291q-129 0 -246.5 -99t-147.5 -229l-131 -567h-125z" /> + <glyph glyph-name="o" unicode="o" horiz-adv-x="1116" +d="M449 -20q-83 0 -151.5 27t-114 75t-73.5 114.5t-30 145t16 166.5q32 139 114 253.5t202 182.5t252 68q136 0 229 -71.5t125.5 -192t-0.5 -265.5q-32 -138 -115.5 -253t-203.5 -182.5t-250 -67.5zM453 92q86 0 159 34.5t125 93.5t87.5 131.5t54.5 156.5q15 63 17.5 119 +t-9 106.5t-38 86.5t-75 57.5t-115.5 21.5q-84 0 -156.5 -34.5t-124.5 -93.5t-87.5 -132t-54.5 -156q-21 -76 -18 -146.5t24 -125t75 -87t136 -32.5z" /> + <glyph glyph-name="p" unicode="p" horiz-adv-x="1118" +d="M-41 -438l332 1437h125l-35 -139q143 160 346 160q77 0 136.5 -27t96.5 -76t56 -115.5t17.5 -146.5t-21.5 -168q-34 -143 -103 -256t-173.5 -182t-225.5 -69q-214 0 -287 172l-139 -590h-125zM477 88q106 0 194 61.5t141 155t79 207.5q20 77 17.5 148.5t-22 127t-70 88.5 +t-126.5 33t-144.5 -35t-118.5 -94.5t-85.5 -134t-54.5 -158.5q-21 -77 -19 -149t21 -127.5t67.5 -89t120.5 -33.5z" /> + <glyph glyph-name="q" unicode="q" horiz-adv-x="1116" +d="M598 -438l137 579q-72 -77 -155 -119t-193 -42q-94 0 -162 42t-101 114t-40 169t20 207q51 220 187 364t315 144q212 0 287 -170l37 149h127l-332 -1437h-127zM422 88q79 0 148 35t119 95.5t84.5 134.5t53.5 159q18 80 18.5 149t-19 126t-68 89.5t-123.5 32.5 +q-78 0 -146.5 -35t-119 -94.5t-86 -134t-54.5 -158.5q-19 -80 -18.5 -150t20.5 -126.5t69 -89.5t122 -33z" /> + <glyph glyph-name="r" unicode="r" horiz-adv-x="788" +d="M59 0l230 999h131l-41 -176q59 92 147.5 141.5t175.5 49.5q46 0 90.5 -12.5t69.5 -32.5l-55 -113q-59 37 -125 37q-68 0 -132.5 -37t-113.5 -98t-85 -136t-54 -153l-109 -469h-129z" /> + <glyph glyph-name="s" unicode="s" horiz-adv-x="864" +d="M358 -20q-135 0 -227.5 73.5t-105.5 171.5l118 47q7 -79 73.5 -127.5t156.5 -48.5q104 0 171.5 61.5t67.5 145.5q0 48 -25 80.5t-65 50t-88 31.5t-96 31t-88 42t-65 72t-25 113q0 93 46.5 160t120.5 99t165 32q122 0 202.5 -57.5t108.5 -137.5l-107 -47q-20 61 -74 96 +t-137 35q-92 0 -151.5 -44.5t-59.5 -133.5q0 -47 25.5 -78.5t66.5 -49t90 -31t98.5 -31.5t90.5 -43.5t66.5 -72.5t25.5 -114q0 -126 -111.5 -225.5t-267.5 -99.5z" /> + <glyph glyph-name="t" unicode="t" horiz-adv-x="649" +d="M322 -20q-239 0 -172 288l145 629h-156l23 102h155l50 220l159 131l-80 -351h254l-22 -102h-254l-152 -653q-19 -82 4.5 -123t77.5 -41q43 0 103 24l-15 -108q-40 -16 -120 -16z" /> + <glyph glyph-name="u" unicode="u" horiz-adv-x="1102" +d="M377 -23q-91 0 -152 35t-86.5 94t-30 138.5t18.5 167.5l135 587h125l-139 -610q-11 -46 -15.5 -86t-0.5 -82.5t19 -72.5t48 -49t82 -19q131 0 253.5 107t153.5 239l132 573h122l-229 -999h-123l43 176q-47 -74 -146 -136.5t-210 -62.5z" /> + <glyph glyph-name="v" unicode="v" horiz-adv-x="936" +d="M295 0l-133 999h135l90 -835l481 835h136l-594 -999h-115z" /> + <glyph glyph-name="w" unicode="w" horiz-adv-x="1407" +d="M215 0l-41 999h131l17 -845l436 845h119l43 -843l407 843h135l-504 -999h-127l-43 850l-446 -850h-127z" /> + <glyph glyph-name="x" unicode="x" horiz-adv-x="899" +d="M-59 0l452 504l-219 495h150l149 -381l332 381h151l-446 -495l213 -504h-143l-150 389l-332 -389h-157z" /> + <glyph glyph-name="y" unicode="y" horiz-adv-x="961" +d="M41 -430l270 430l-151 999h137l104 -847l490 847h139l-856 -1429h-133z" /> + <glyph glyph-name="z" unicode="z" horiz-adv-x="915" +d="M948 999l-22 -110l-791 -780h608l-24 -109h-762l20 100l805 797h-589l22 102h733z" /> + <glyph glyph-name="braceleft" unicode="{" horiz-adv-x="600" +d="M272 -111q-91 0 -127 86q-30 34 -8 131l84 369q19 75 -96 121l12 104q69 16 114.5 58t59.5 102l99 428q22 100 76 148.5t163 48.5h53l19 1q19 0 20 -1l-4 -70q-11 2 -49 2q-61 0 -100.5 -20t-46.5 -56l-117 -505q-17 -72 -69.5 -116.5t-166.5 -84.5q87 -30 125.5 -69 +t24.5 -99l-84 -365q-18 -77 6.5 -112t89.5 -35q21 0 41 8l-6 -74h-41h-72z" /> + <glyph glyph-name="bar" unicode="|" horiz-adv-x="621" +d="M31 -512l473 2046h92l-473 -2046h-92z" /> + <glyph glyph-name="braceright" unicode="}" horiz-adv-x="600" +d="M-12 -111q-5 0 -14 -0.5t-16 -0.5t-13 1l4 70q12 -4 26 -4q74 0 123.5 40.5t67.5 119.5l84 364q13 60 68 96.5t157 67.5q-93 39 -125 87t-16 118l117 506q9 34 -14.5 48.5t-78.5 14.5q-36 0 -61 -4l4 72h41h51q208 0 160 -209l-100 -428q-29 -122 90 -152l-13 -104 +q-59 -20 -107.5 -52.5t-57.5 -76.5l-86 -369q-25 -104 -56 -141q-41 -32 -77 -48t-87 -16h-71z" /> + <glyph glyph-name="asciitilde" unicode="~" horiz-adv-x="1161" +d="M743 379q-43 0 -82 19.5t-68 47.5t-56.5 56t-60 47.5t-66.5 19.5q-57 0 -82 -47t-23 -116h-82q0 105 47.5 175t137.5 70q52 0 94.5 -19t71 -46.5t54.5 -55t56.5 -46.5t65.5 -19q108 0 108 180h90q0 -126 -54 -196t-151 -70z" /> + <glyph glyph-name="uni00A0" unicode=" " horiz-adv-x="563" + /> + <glyph glyph-name="exclamdown" unicode="¡" horiz-adv-x="635" +d="M301 823l41 176h178l-41 -176h-178zM23 -436l276 1067h96l-219 -1067h-153z" /> + <glyph glyph-name="cent" unicode="¢" horiz-adv-x="1137" +d="M393 -205l51 191q-72 7 -127.5 38.5t-89.5 80.5t-51 113.5t-15.5 138t19.5 153.5q30 129 94 235.5t167.5 180t228.5 86.5l49 188h92l-49 -188q108 -13 183.5 -82t96.5 -174l-137 -43q-3 80 -58.5 128t-139.5 48q-79 0 -147.5 -36t-116 -96t-80 -128.5t-50.5 -143.5 +q-16 -71 -16 -134.5t17.5 -120.5t65.5 -90.5t124 -33.5q90 0 176 53t125 136l108 -64q-64 -110 -162.5 -174t-215.5 -73l-48 -189h-94z" /> + <glyph glyph-name="sterling" unicode="£" horiz-adv-x="1251" +d="M55 0l21 90q95 69 154.5 123.5t106.5 120.5t67 142t20 173h-219l26 109h193q-22 123 1.5 244.5t82.5 216t156 153t213 58.5q133 0 221.5 -82.5t105.5 -202.5l-112 -29q-11 90 -72 144.5t-148 54.5q-91 0 -165 -48t-117 -126t-59.5 -178.5t-0.5 -204.5h474l-27 -109h-445 +q0 -184 -62 -309.5t-212 -228.5l834 4l-27 -115h-1010z" /> + <glyph glyph-name="currency" unicode="¤" horiz-adv-x="1384" +d="M248 176l-68 88l133 107q-42 76 -43 170t40.5 189t119.5 169l-78 96l101 90l77 -102q139 92 288 89.5t243 -95.5l129 106l67 -84l-127 -106q64 -115 31.5 -266t-149.5 -267l78 -96l-101 -88l-80 100q-139 -91 -287 -87.5t-243 96.5zM444 395q87 -93 222 -88t243 105 +q111 90 135 223.5t-55 230.5q-87 92 -220 86.5t-241 -104.5q-107 -89 -132 -223.5t48 -229.5z" /> + <glyph glyph-name="yen" unicode="¥" horiz-adv-x="1303" +d="M471 0l74 322h-299l22 100h299l29 119h-299l22 98h254l-297 774h144l274 -708l604 708h150l-653 -772h252l-23 -100h-301l-29 -119h301l-22 -100h-301l-74 -322h-127z" /> + <glyph glyph-name="brokenbar" unicode="¦" horiz-adv-x="612" +d="M317 731l172 744h84l-172 -744h-84zM78 -307l168 727h84l-168 -727h-84z" /> + <glyph glyph-name="section" unicode="§" horiz-adv-x="1128" +d="M461 -18q-153 0 -244.5 73.5t-101.5 212.5l121 29q1 -110 61 -155.5t168 -45.5q48 0 92 8.5t88 28.5t76.5 59.5t44.5 94.5q10 44 -8.5 75t-57 46t-89.5 28.5t-104.5 23.5t-102.5 30t-84.5 48.5t-49.5 79t2 121.5q15 60 55.5 116.5t100.5 98.5q-38 29 -55 84t-2 117 +q20 86 82.5 151t143 96.5t165.5 31.5q133 0 214 -68.5t99 -200.5l-123 -16q-8 170 -196 170q-93 0 -174 -49.5t-103 -143.5q-10 -42 9 -71t58 -43t89.5 -27t104.5 -22.5t103 -30t84 -50t49 -81.5t-3 -125q-33 -134 -150 -211q85 -68 54 -205q-23 -96 -90 -160.5t-149.5 -91 +t-176.5 -26.5zM694 522q140 52 170 187q9 39 -4 69.5t-37 48.5t-62.5 32t-70.5 20.5t-71.5 14t-55.5 11.5q-69 -25 -117 -74.5t-63 -113.5q-10 -44 10 -77t62 -52t83 -30t90 -21t66 -15z" /> + <glyph glyph-name="dieresis" unicode="¨" horiz-adv-x="834" +d="M328 1229l43 184h160l-43 -184h-160zM660 1229l43 184h159l-43 -184h-159z" /> + <glyph glyph-name="copyright" unicode="©" horiz-adv-x="1794" +d="M944 -51q-152 0 -289.5 60t-237 161.5t-158 242t-58.5 294.5t58.5 294t158 241.5t237 161.5t289.5 60q151 0 289 -60t237.5 -161.5t158.5 -241.5t59 -294q0 -123 -37.5 -239t-106.5 -209t-160.5 -163t-205 -108.5t-234.5 -38.5zM944 51q171 0 319 89.5t235 241t87 325.5 +q0 130 -51.5 251t-138 209.5t-205 141.5t-246.5 53t-247 -53t-205.5 -141.5t-138.5 -209.5t-52 -251q0 -174 87.5 -325.5t236 -241t319.5 -89.5zM961 309q-166 0 -255.5 111.5t-89.5 284.5q0 112 37.5 200t117 141.5t190.5 53.5q96 0 175.5 -46.5t118.5 -129.5l-92 -39 +q-28 53 -82 83.5t-120 30.5q-83 0 -140 -43t-81.5 -107.5t-24.5 -143.5t24 -143t80.5 -107t138.5 -43q64 0 120 30.5t83 85.5l94 -41q-39 -85 -117.5 -131.5t-176.5 -46.5z" /> + <glyph glyph-name="ordfeminine" unicode="ª" horiz-adv-x="907" +d="M428 709q-99 0 -154 61.5t-32 159.5q44 194 297 194l223 6q52 216 -117 216q-61 0 -119 -32t-94 -75l-78 64q67 68 136.5 99.5t156.5 31.5q134 0 190.5 -78.5t26.5 -208.5l-98 -424h-88l24 119q-62 -72 -126.5 -102.5t-147.5 -30.5zM453 801q96 0 182.5 76t105.5 165 +l-202 -6q-66 0 -119.5 -36t-67.5 -95q-11 -46 21.5 -75t79.5 -29z" /> + <glyph glyph-name="guillemotleft" unicode="«" horiz-adv-x="977" +d="M369 193l-283 319l426 317l-31 -149l-237 -168l155 -170zM733 193l-284 319l428 317l-31 -149l-240 -168l158 -170z" /> + <glyph glyph-name="logicalnot" unicode="¬" horiz-adv-x="1329" +d="M961 291v393h-744v113h860v-506h-116z" /> + <glyph glyph-name="uni00AD" unicode="­" horiz-adv-x="975" +d="M190 596l23 96h639l-23 -96h-639z" /> + <glyph glyph-name="registered" unicode="®" horiz-adv-x="1794" +d="M946 -49q-151 0 -289 60t-237 161.5t-158 242t-59 294.5q0 205 99.5 379.5t270.5 276t373 101.5q151 0 289 -60t237.5 -161.5t158.5 -241.5t59 -294q0 -123 -37.5 -239t-106.5 -209t-160.5 -163t-205 -108.5t-234.5 -38.5zM946 45q174 0 323.5 89.5t237.5 243t88 331.5 +t-88 331t-237.5 242.5t-323.5 89.5t-324 -89.5t-238.5 -242.5t-88.5 -331t88.5 -331.5t238.5 -243t324 -89.5zM702 307v789h297q256 0 256 -228q0 -96 -48.5 -149.5t-123.5 -65.5l203 -346h-125l-178 338h-174v-338h-107zM799 739h200q160 0 160 129q0 69 -39 100t-121 31 +h-200v-260z" /> + <glyph glyph-name="macron" unicode="¯" horiz-adv-x="879" +d="M447 1192l28 121h537l-29 -121h-536z" /> + <glyph glyph-name="degree" unicode="°" horiz-adv-x="979" +d="M637 848q-121 0 -207 86t-86 207t86 207t207 86q120 0 205.5 -86t85.5 -207t-85.5 -207t-205.5 -86zM637 924q88 0 151.5 64t63.5 153t-63.5 153t-151.5 64q-89 0 -153 -64t-64 -153t64 -153t153 -64z" /> + <glyph glyph-name="plusminus" unicode="±" horiz-adv-x="1423" +d="M618 106v472h-456v96h456v469h97v-469h456v-96h-456v-472h-97zM162 -96v96h1009v-96h-1009z" /> + <glyph glyph-name="acute" unicode="´" horiz-adv-x="537" +d="M213 1124l283 289h180l-336 -289h-127z" /> + <glyph glyph-name="uni00B5" unicode="µ" horiz-adv-x="1296" +d="M86 -266l291 1265h139l-139 -606q-68 -293 135 -293q127 0 245 101t148 229l131 569h140l-230 -999h-139l43 180q-48 -77 -149.5 -140t-208.5 -63q-113 0 -191 60l-96 -303h-119z" /> + <glyph glyph-name="paragraph" unicode="¶" horiz-adv-x="1350" +d="M414 -246l207 869q-88 0 -164 27.5t-128.5 80t-73.5 128t1 171.5q26 118 110.5 206.5t195 132.5t229.5 44h133l-383 -1659h-127zM786 -246l383 1659h127l-383 -1659h-127z" /> + <glyph glyph-name="periodcentered" unicode="·" horiz-adv-x="659" +d="M389 711q-53 0 -82.5 38.5t-15.5 92.5q10 47 47 76.5t84 29.5q55 0 84 -37.5t16 -93.5q-11 -45 -49 -75.5t-84 -30.5z" /> + <glyph glyph-name="cedilla" unicode="¸" horiz-adv-x="565" +d="M49 -500q-65 0 -108 38t-52 91l99 37q-3 -30 15 -51t52 -21q49 0 88.5 33.5t51.5 79.5q10 47 -26.5 82t-127.5 35h-41l127 176h117l-103 -121q90 -1 128 -56t20 -132q-19 -75 -84.5 -133t-155.5 -58z" /> + <glyph glyph-name="ordmasculine" unicode="º" horiz-adv-x="872" +d="M496 711q-150 0 -223.5 108.5t-36.5 265.5q34 147 148.5 248t256.5 101q150 0 222 -108.5t36 -264.5q-34 -149 -147.5 -249.5t-255.5 -100.5zM498 811q110 0 184 78.5t100 195.5q13 49 11 94.5t-15.5 80t-48.5 55t-88 20.5q-113 0 -187.5 -78.5t-101.5 -195.5 +q-25 -110 8 -180t138 -70z" /> + <glyph glyph-name="guillemotright" unicode="»" horiz-adv-x="977" +d="M102 193l31 149l238 170l-156 168l31 149l282 -317zM465 193l31 149l237 170l-155 168l30 149l285 -317z" /> + <glyph glyph-name="questiondown" unicode="¿" horiz-adv-x="1038" +d="M508 823l41 176h178l-41 -176h-178zM328 -434q-87 0 -156.5 23.5t-116 70t-63 114.5t3.5 158q15 67 46 118t68 81.5t78.5 54.5t82 43.5t75.5 40t61 52t35 73.5l56 240h118l-57 -254q-13 -58 -41 -100t-63.5 -67t-75.5 -45t-80.5 -41t-76.5 -47t-64.5 -71t-42.5 -106 +q-26 -111 34 -167t177 -56q120 0 218 70t128 188l123 -13q-39 -167 -170.5 -263.5t-296.5 -96.5z" /> + <glyph glyph-name="Agrave" unicode="À" horiz-adv-x="1296" +d="M821 1540l-180 287h172l149 -287h-141zM-39 0l848 1413h104l193 -1413h-141l-37 307h-639l-178 -307h-150zM362 434h549l-90 780z" /> + <glyph glyph-name="Aacute" unicode="Á" horiz-adv-x="1296" +d="M798 1538l283 289h180l-336 -289h-127zM-39 0l848 1413h104l193 -1413h-141l-37 307h-639l-178 -307h-150zM362 434h549l-90 780z" /> + <glyph glyph-name="Acircumflex" unicode="Â" horiz-adv-x="1296" +d="M551 1512l413 356l250 -356h-149l-129 196l-226 -196h-159zM-39 0l848 1413h104l193 -1413h-141l-37 307h-639l-178 -307h-150zM362 434h549l-90 780z" /> + <glyph glyph-name="Atilde" unicode="Ã" horiz-adv-x="1296" +d="M1028 1571q-37 0 -66 16.5t-46.5 40t-32 47t-32.5 40t-40 16.5q-40 0 -69.5 -40.5t-43.5 -96.5h-88q26 112 77.5 176.5t123.5 64.5q42 0 73.5 -17t48.5 -41t31 -48t30.5 -41t37.5 -17q42 0 73 43.5t50 114.5h92q-58 -258 -219 -258zM-39 0l848 1413h104l193 -1413h-141 +l-37 307h-639l-178 -307h-150zM362 434h549l-90 780z" /> + <glyph glyph-name="Adieresis" unicode="Ä" horiz-adv-x="1296" +d="M668 1643l43 184h160l-43 -184h-160zM1000 1643l43 184h159l-43 -184h-159zM-39 0l848 1413h104l193 -1413h-141l-37 307h-639l-178 -307h-150zM362 434h549l-90 780z" /> + <glyph glyph-name="Aring" unicode="Å" horiz-adv-x="1296" +d="M930 1341l176 -1341h-129l-37 307h-651l-178 -307h-150l809 1341q-47 24 -69 76.5t-7 116.5q20 82 84.5 133t141.5 51q83 0 132.5 -60t28.5 -149q-14 -56 -54 -101t-97 -67zM784 1509q-4 -40 17 -64t59 -24q46 0 83.5 33t43.5 80q5 38 -16 62t-62 24q-49 0 -84.5 -33 +t-40.5 -78zM362 434h562l-92 800z" /> + <glyph glyph-name="AE" unicode="Æ" horiz-adv-x="1806" +d="M-39 0l844 1413h1102l-25 -108h-747l-125 -541h659l-27 -115h-659l-123 -534h748l-27 -115h-883l70 307h-481l-183 -307h-143zM356 434h443l200 871h-127z" /> + <glyph glyph-name="Ccedilla" unicode="Ç" horiz-adv-x="1423" +d="M952 1313q-127 0 -236 -50t-187 -136t-131.5 -192.5t-82.5 -229.5q-19 -82 -24 -156t3 -142.5t34.5 -123.5t69 -95.5t108 -63t149.5 -22.5q334 0 521 310l112 -68q-106 -158 -249 -249.5t-308 -109.5l-90 -106q90 -1 128 -56t20 -132q-19 -75 -84.5 -133t-155.5 -58 +q-65 0 -108 38t-52 91l99 37q-3 -30 15 -51t52 -21q49 0 88.5 33.5t51.5 79.5q10 47 -26.5 82t-127.5 35h-41l113 157q-119 5 -208.5 46t-143.5 109t-80.5 159.5t-24.5 198t30 225.5q35 149 101 276.5t161 227t227 156.5t286 57q206 0 337.5 -95.5t149.5 -279.5l-127 -39 +q-28 291 -369 291z" /> + <glyph glyph-name="Egrave" unicode="È" horiz-adv-x="1235" +d="M848 1540l-180 287h172l149 -287h-141zM104 0l326 1413h909l-26 -113h-774l-123 -538h661l-26 -109h-662l-123 -532h774l-26 -121h-910z" /> + <glyph glyph-name="Eacute" unicode="É" horiz-adv-x="1235" +d="M825 1538l283 289h180l-336 -289h-127zM104 0l326 1413h909l-26 -113h-774l-123 -538h661l-26 -109h-662l-123 -532h774l-26 -121h-910z" /> + <glyph glyph-name="Ecircumflex" unicode="Ê" horiz-adv-x="1235" +d="M578 1512l413 356l250 -356h-149l-129 196l-226 -196h-159zM104 0l326 1413h909l-26 -113h-774l-123 -538h661l-26 -109h-662l-123 -532h774l-26 -121h-910z" /> + <glyph glyph-name="Edieresis" unicode="Ë" horiz-adv-x="1235" +d="M695 1643l43 184h160l-43 -184h-160zM1027 1643l43 184h159l-43 -184h-159zM104 0l326 1413h909l-26 -113h-774l-123 -538h661l-26 -109h-662l-123 -532h774l-26 -121h-910z" /> + <glyph glyph-name="Igrave" unicode="Ì" horiz-adv-x="573" +d="M455 1540l-180 287h172l149 -287h-141zM104 0l326 1413h135l-325 -1413h-136z" /> + <glyph glyph-name="Iacute" unicode="Í" horiz-adv-x="573" +d="M432 1538l283 289h180l-336 -289h-127zM104 0l326 1413h135l-325 -1413h-136z" /> + <glyph glyph-name="Icircumflex" unicode="Î" horiz-adv-x="573" +d="M185 1512l413 356l250 -356h-149l-129 196l-226 -196h-159zM104 0l326 1413h135l-325 -1413h-136z" /> + <glyph glyph-name="Idieresis" unicode="Ï" horiz-adv-x="573" +d="M302 1643l43 184h160l-43 -184h-160zM634 1643l43 184h159l-43 -184h-159zM104 0l326 1413h135l-325 -1413h-136z" /> + <glyph glyph-name="Eth" unicode="Ð" horiz-adv-x="1421" +d="M121 0l151 664h-112l24 98h113l149 651h351q338 0 478 -188.5t58 -540.5q-76 -330 -297.5 -507t-556.5 -177h-358zM293 129h180q126 0 239.5 35.5t210 106t168 185t105.5 263.5q64 279 -41 423t-381 144h-213l-121 -524h381l-24 -98h-381z" /> + <glyph glyph-name="Ntilde" unicode="Ñ" horiz-adv-x="1409" +d="M1079 1571q-37 0 -66 16.5t-46.5 40t-32 47t-32.5 40t-40 16.5q-40 0 -69.5 -40.5t-43.5 -96.5h-88q26 112 77.5 176.5t123.5 64.5q42 0 73.5 -17t48.5 -41t31 -48t30.5 -41t37.5 -17q42 0 73 43.5t50 114.5h92q-58 -258 -219 -258zM104 0l326 1413h213l324 -1288 +l299 1288h135l-326 -1413h-217l-317 1290l-299 -1290h-138z" /> + <glyph glyph-name="Ograve" unicode="Ò" horiz-adv-x="1511" +d="M924 1540l-180 287h172l149 -287h-141zM645 -20q-125 0 -220 38.5t-153 106.5t-87.5 161t-29 202.5t28.5 230.5q34 148 101 275.5t163 226.5t228 156t282 57q126 0 222.5 -38.5t154.5 -106.5t88 -161.5t29 -203t-29 -230.5q-27 -118 -75 -223t-118 -195.5t-156 -156 +t-196.5 -102.5t-232.5 -37zM651 106q105 0 199 33.5t166 90.5t130.5 136t97 167t61.5 186q21 94 23.5 178.5t-18 160t-64 130.5t-119 87t-177.5 32q-127 0 -237.5 -50.5t-190 -137.5t-134 -194.5t-83.5 -230.5q-21 -94 -23.5 -178.5t17.5 -160t62.5 -130.5t116 -87 +t173.5 -32z" /> + <glyph glyph-name="Oacute" unicode="Ó" horiz-adv-x="1511" +d="M901 1538l283 289h180l-336 -289h-127zM645 -20q-125 0 -220 38.5t-153 106.5t-87.5 161t-29 202.5t28.5 230.5q34 148 101 275.5t163 226.5t228 156t282 57q126 0 222.5 -38.5t154.5 -106.5t88 -161.5t29 -203t-29 -230.5q-27 -118 -75 -223t-118 -195.5t-156 -156 +t-196.5 -102.5t-232.5 -37zM651 106q105 0 199 33.5t166 90.5t130.5 136t97 167t61.5 186q21 94 23.5 178.5t-18 160t-64 130.5t-119 87t-177.5 32q-127 0 -237.5 -50.5t-190 -137.5t-134 -194.5t-83.5 -230.5q-21 -94 -23.5 -178.5t17.5 -160t62.5 -130.5t116 -87 +t173.5 -32z" /> + <glyph glyph-name="Ocircumflex" unicode="Ô" horiz-adv-x="1511" +d="M654 1512l413 356l250 -356h-149l-129 196l-226 -196h-159zM645 -20q-125 0 -220 38.5t-153 106.5t-87.5 161t-29 202.5t28.5 230.5q34 148 101 275.5t163 226.5t228 156t282 57q126 0 222.5 -38.5t154.5 -106.5t88 -161.5t29 -203t-29 -230.5q-27 -118 -75 -223 +t-118 -195.5t-156 -156t-196.5 -102.5t-232.5 -37zM651 106q105 0 199 33.5t166 90.5t130.5 136t97 167t61.5 186q21 94 23.5 178.5t-18 160t-64 130.5t-119 87t-177.5 32q-127 0 -237.5 -50.5t-190 -137.5t-134 -194.5t-83.5 -230.5q-21 -94 -23.5 -178.5t17.5 -160 +t62.5 -130.5t116 -87t173.5 -32z" /> + <glyph glyph-name="Otilde" unicode="Õ" horiz-adv-x="1511" +d="M1131 1571q-37 0 -66 16.5t-46.5 40t-32 47t-32.5 40t-40 16.5q-40 0 -69.5 -40.5t-43.5 -96.5h-88q26 112 77.5 176.5t123.5 64.5q42 0 73.5 -17t48.5 -41t31 -48t30.5 -41t37.5 -17q42 0 73 43.5t50 114.5h92q-58 -258 -219 -258zM645 -20q-125 0 -220 38.5t-153 106.5 +t-87.5 161t-29 202.5t28.5 230.5q34 148 101 275.5t163 226.5t228 156t282 57q126 0 222.5 -38.5t154.5 -106.5t88 -161.5t29 -203t-29 -230.5q-27 -118 -75 -223t-118 -195.5t-156 -156t-196.5 -102.5t-232.5 -37zM651 106q105 0 199 33.5t166 90.5t130.5 136t97 167 +t61.5 186q21 94 23.5 178.5t-18 160t-64 130.5t-119 87t-177.5 32q-127 0 -237.5 -50.5t-190 -137.5t-134 -194.5t-83.5 -230.5q-21 -94 -23.5 -178.5t17.5 -160t62.5 -130.5t116 -87t173.5 -32z" /> + <glyph glyph-name="Odieresis" unicode="Ö" horiz-adv-x="1511" +d="M771 1643l43 184h160l-43 -184h-160zM1103 1643l43 184h159l-43 -184h-159zM645 -20q-125 0 -220 38.5t-153 106.5t-87.5 161t-29 202.5t28.5 230.5q34 148 101 275.5t163 226.5t228 156t282 57q126 0 222.5 -38.5t154.5 -106.5t88 -161.5t29 -203t-29 -230.5 +q-27 -118 -75 -223t-118 -195.5t-156 -156t-196.5 -102.5t-232.5 -37zM651 106q105 0 199 33.5t166 90.5t130.5 136t97 167t61.5 186q21 94 23.5 178.5t-18 160t-64 130.5t-119 87t-177.5 32q-127 0 -237.5 -50.5t-190 -137.5t-134 -194.5t-83.5 -230.5 +q-21 -94 -23.5 -178.5t17.5 -160t62.5 -130.5t116 -87t173.5 -32z" /> + <glyph glyph-name="multiply" unicode="×" horiz-adv-x="1196" +d="M303 233l-70 68l324 324l-332 331l68 70l334 -334l321 324l70 -68l-324 -323l332 -332l-68 -70l-331 334z" /> + <glyph glyph-name="Oslash" unicode="Ø" horiz-adv-x="1511" +d="M1327 1297q93 -99 117 -260t-21 -343q-27 -118 -75 -223t-118 -195.5t-156 -156t-196.5 -102.5t-232.5 -37q-179 0 -296 78l-45 -58h-119l93 118q-92 100 -115 260t21 341q34 148 101 275.5t163 226.5t228 156t282 57q179 0 297 -77l44 56h119zM305 694 +q-33 -134 -20 -262t77 -207l810 1027q-88 55 -222 55q-127 0 -237.5 -50.5t-190 -137.5t-134 -194.5t-83.5 -230.5zM1305 719q34 136 19.5 264.5t-81.5 207.5l-811 -1029q86 -56 219 -56q105 0 199 33.5t166 90.5t130.5 136t97 167t61.5 186z" /> + <glyph glyph-name="Ugrave" unicode="Ù" horiz-adv-x="1346" +d="M846 1540l-180 287h172l149 -287h-141zM561 -20q-102 0 -178 30t-120 81t-66 120.5t-21.5 145.5t19.5 159l206 897h136l-199 -860q-103 -447 229 -447q98 0 178 36t135.5 101t92.5 144.5t59 177.5l197 848h135l-207 -899q-25 -108 -74 -201.5t-121 -169.5t-175.5 -119.5 +t-225.5 -43.5z" /> + <glyph glyph-name="Uacute" unicode="Ú" horiz-adv-x="1346" +d="M823 1538l283 289h180l-336 -289h-127zM561 -20q-102 0 -178 30t-120 81t-66 120.5t-21.5 145.5t19.5 159l206 897h136l-199 -860q-103 -447 229 -447q98 0 178 36t135.5 101t92.5 144.5t59 177.5l197 848h135l-207 -899q-25 -108 -74 -201.5t-121 -169.5t-175.5 -119.5 +t-225.5 -43.5z" /> + <glyph glyph-name="Ucircumflex" unicode="Û" horiz-adv-x="1346" +d="M576 1512l413 356l250 -356h-149l-129 196l-226 -196h-159zM561 -20q-102 0 -178 30t-120 81t-66 120.5t-21.5 145.5t19.5 159l206 897h136l-199 -860q-103 -447 229 -447q98 0 178 36t135.5 101t92.5 144.5t59 177.5l197 848h135l-207 -899q-25 -108 -74 -201.5 +t-121 -169.5t-175.5 -119.5t-225.5 -43.5z" /> + <glyph glyph-name="Udieresis" unicode="Ü" horiz-adv-x="1346" +d="M693 1643l43 184h160l-43 -184h-160zM1025 1643l43 184h159l-43 -184h-159zM561 -20q-102 0 -178 30t-120 81t-66 120.5t-21.5 145.5t19.5 159l206 897h136l-199 -860q-103 -447 229 -447q98 0 178 36t135.5 101t92.5 144.5t59 177.5l197 848h135l-207 -899 +q-25 -108 -74 -201.5t-121 -169.5t-175.5 -119.5t-225.5 -43.5z" /> + <glyph glyph-name="Yacute" unicode="Ý" horiz-adv-x="1315" +d="M802 1538l283 289h180l-336 -289h-127zM477 0l129 553l-330 860h152l268 -719l607 719h157l-725 -860l-129 -553h-129z" /> + <glyph glyph-name="Thorn" unicode="Þ" horiz-adv-x="1149" +d="M104 0l326 1413h141l-47 -201h244q201 0 299 -108.5t55 -296.5q-41 -174 -180.5 -270.5t-341.5 -96.5h-254l-100 -440h-142zM377 571h241q144 0 241 66.5t126 191.5q28 116 -35 178t-205 62h-253z" /> + <glyph glyph-name="germandbls" unicode="ß" horiz-adv-x="1176" +d="M608 -18q-73 0 -135.5 19t-134.5 56l74 119q95 -63 204 -63q79 0 159.5 55.5t96.5 130.5q11 44 2 83t-30.5 68t-49.5 59t-56 56.5t-49 61t-29.5 71t2.5 88.5q10 45 42.5 79.5t72.5 58t80.5 48t73.5 63t44 89.5q20 83 -34 137t-165 54q-132 0 -233.5 -104t-155.5 -339 +l-201 -872h-125l205 887q126 547 514 547q72 0 137 -25t112 -68.5t67 -109.5t2 -141q-12 -52 -44.5 -91t-71.5 -63.5t-78 -47t-70 -54.5t-41 -74q-8 -37 7.5 -71t44.5 -60t62 -59.5t60 -69.5t38 -89t-4 -118q-32 -136 -144 -223.5t-249 -87.5z" /> + <glyph glyph-name="agrave" unicode="à" horiz-adv-x="1118" +d="M786 1126h-141l-180 287h172zM932 999h125l-230 -999h-125l29 134q-145 -154 -342 -154q-94 0 -162 42t-101 114t-40 169t20 207q33 143 103.5 257t174 182.5t222.5 68.5q214 0 289 -170zM829 512q19 80 19 148t-20 123.5t-69 87.5t-124 32q-152 0 -257.5 -119.5 +t-146.5 -296.5q-21 -77 -19 -148t22 -125.5t69 -87t123 -32.5q105 0 190 60t136 151.5t77 206.5z" /> + <glyph glyph-name="aacute" unicode="á" horiz-adv-x="1118" +d="M1085 1413l-336 -289h-127l283 289h180zM895 850l37 149h125l-230 -999h-125l29 134q-145 -154 -342 -154q-94 0 -162 42t-101 114t-40 169t20 207q33 143 103.5 257t174 182.5t222.5 68.5q214 0 289 -170zM829 512q19 80 19 148t-20 123.5t-69 87.5t-124 32 +q-152 0 -257.5 -119.5t-146.5 -296.5q-21 -77 -19 -148t22 -125.5t69 -87t123 -32.5q105 0 190 60t136 151.5t77 206.5z" /> + <glyph glyph-name="acircumflex" unicode="â" horiz-adv-x="1118" +d="M760 1294l-226 -196h-159l413 356l250 -356h-149zM932 999h125l-230 -999h-125l29 134q-145 -154 -342 -154q-94 0 -162 42t-101 114t-40 169t20 207q33 143 103.5 257t174 182.5t222.5 68.5q214 0 289 -170zM829 512q19 80 19 148t-20 123.5t-69 87.5t-124 32 +q-152 0 -257.5 -119.5t-146.5 -296.5q-21 -77 -19 -148t22 -125.5t69 -87t123 -32.5q105 0 190 60t136 151.5t77 206.5z" /> + <glyph glyph-name="atilde" unicode="ã" horiz-adv-x="1118" +d="M635 1317q-40 0 -69.5 -40.5t-43.5 -96.5h-88q26 112 77.5 176.5t123.5 64.5q42 0 73.5 -17t48.5 -41t31 -48t30.5 -41t37.5 -17q42 0 73 43.5t50 114.5h92q-58 -258 -219 -258q-37 0 -66 16.5t-46.5 40t-32 47t-32.5 40t-40 16.5zM895 850l37 149h125l-230 -999h-125 +l29 134q-145 -154 -342 -154q-94 0 -162 42t-101 114t-40 169t20 207q33 143 103.5 257t174 182.5t222.5 68.5q214 0 289 -170zM829 512q19 80 19 148t-20 123.5t-69 87.5t-124 32q-152 0 -257.5 -119.5t-146.5 -296.5q-21 -77 -19 -148t22 -125.5t69 -87t123 -32.5 +q105 0 190 60t136 151.5t77 206.5z" /> + <glyph glyph-name="adieresis" unicode="ä" horiz-adv-x="1118" +d="M695 1413l-43 -184h-160l43 184h160zM1026 1413l-43 -184h-159l43 184h159zM932 999h125l-230 -999h-125l29 134q-145 -154 -342 -154q-94 0 -162 42t-101 114t-40 169t20 207q33 143 103.5 257t174 182.5t222.5 68.5q214 0 289 -170zM829 512q19 80 19 148t-20 123.5 +t-69 87.5t-124 32q-152 0 -257.5 -119.5t-146.5 -296.5q-21 -77 -19 -148t22 -125.5t69 -87t123 -32.5q105 0 190 60t136 151.5t77 206.5z" /> + <glyph glyph-name="aring" unicode="å" horiz-adv-x="1118" +d="M715 1081q-88 0 -134 61t-26 148q19 78 84.5 131.5t143.5 53.5q85 0 133 -61.5t26 -147.5q-16 -77 -83 -131t-144 -54zM649 1266q-6 -40 15 -64t59 -24q45 0 83.5 32.5t45.5 79.5q5 37 -17 61.5t-61 24.5q-49 0 -83.5 -30.5t-41.5 -79.5zM932 999h125l-230 -999h-125 +l29 134q-145 -154 -342 -154q-94 0 -162 42t-101 114t-40 169t20 207q33 143 103.5 257t174 182.5t222.5 68.5q214 0 289 -170zM829 512q19 80 19 148t-20 123.5t-69 87.5t-124 32q-152 0 -257.5 -119.5t-146.5 -296.5q-21 -77 -19 -148t22 -125.5t69 -87t123 -32.5 +q105 0 190 60t136 151.5t77 206.5z" /> + <glyph glyph-name="ae" unicode="æ" horiz-adv-x="1667" +d="M285 -20q-137 0 -210.5 84.5t-43.5 216.5q65 284 418 284h325q22 107 18.5 185.5t-51.5 123t-141 44.5t-175.5 -46t-137.5 -112l-92 74q97 94 193.5 138t219.5 44q127 0 200 -52t87 -145q133 193 365 193q96 0 164 -29.5t104.5 -79t51.5 -120t10 -146.5t-25 -164l-3 -7 +q-2 -7 -3 -9h-697q-23 -101 -13.5 -181t67 -130t153.5 -50q100 0 175.5 25t152.5 86l73 -74q-96 -78 -191 -111.5t-210 -33.5q-163 0 -245 85.5t-85 225.5q-166 -319 -454 -319zM885 565h585q40 154 -12 243t-198 89q-138 0 -239.5 -96.5t-135.5 -235.5zM326 90 +q143 0 271.5 115.5t152.5 251.5h-301q-100 -2 -179 -52.5t-104 -148.5q-16 -65 38.5 -115.5t121.5 -50.5z" /> + <glyph glyph-name="ccedilla" unicode="ç" horiz-adv-x="965" +d="M627 913q-65 0 -123.5 -26t-102 -68.5t-79.5 -99t-59.5 -115t-37.5 -119.5q-13 -58 -17 -112.5t4 -108.5t30 -93.5t65 -64t105 -24.5q99 0 187 58.5t132 152.5l96 -62q-65 -110 -159.5 -174t-208.5 -75l-88 -103q90 -1 128 -56t20 -132q-19 -75 -84.5 -133t-155.5 -58 +q-65 0 -108 38t-52 91l99 37q-3 -30 15 -51t52 -21q49 0 88.5 33.5t51.5 79.5q10 47 -26.5 82t-127.5 35h-41l116 161q-84 13 -143.5 61.5t-87 119t-32.5 159.5t19 185q24 101 70.5 191t112.5 161t155 112.5t189 41.5q132 0 216.5 -70t110.5 -190l-125 -41 +q-1 93 -57.5 145.5t-146.5 52.5z" /> + <glyph glyph-name="egrave" unicode="è" horiz-adv-x="1028" +d="M582 1126l-180 287h172l149 -287h-141zM430 -12q-108 0 -185 40t-114 110t-46.5 164.5t17.5 203.5q23 101 69.5 191t112.5 161t155 112.5t188 41.5q94 0 161 -29.5t103.5 -79t51.5 -119.5t10 -146.5t-25 -164.5l-3 -7l-5 -15h-699q-21 -72 -16.5 -136t27.5 -113t74 -77.5 +t124 -28.5q99 0 175.5 25t146.5 86l79 -74q-98 -78 -191.5 -111.5t-209.5 -33.5zM246 559h585q40 158 -11.5 248t-196.5 90q-141 0 -241 -97t-136 -241z" /> + <glyph glyph-name="eacute" unicode="é" horiz-adv-x="1028" +d="M559 1124l283 289h180l-336 -289h-127zM430 -12q-108 0 -185 40t-114 110t-46.5 164.5t17.5 203.5q23 101 69.5 191t112.5 161t155 112.5t188 41.5q94 0 161 -29.5t103.5 -79t51.5 -119.5t10 -146.5t-25 -164.5l-3 -7l-5 -15h-699q-21 -72 -16.5 -136t27.5 -113t74 -77.5 +t124 -28.5q99 0 175.5 25t146.5 86l79 -74q-98 -78 -191.5 -111.5t-209.5 -33.5zM246 559h585q40 158 -11.5 248t-196.5 90q-141 0 -241 -97t-136 -241z" /> + <glyph glyph-name="ecircumflex" unicode="ê" horiz-adv-x="1028" +d="M312 1098l413 356l250 -356h-149l-129 196l-226 -196h-159zM430 -12q-108 0 -185 40t-114 110t-46.5 164.5t17.5 203.5q23 101 69.5 191t112.5 161t155 112.5t188 41.5q94 0 161 -29.5t103.5 -79t51.5 -119.5t10 -146.5t-25 -164.5l-3 -7l-5 -15h-699q-21 -72 -16.5 -136 +t27.5 -113t74 -77.5t124 -28.5q99 0 175.5 25t146.5 86l79 -74q-98 -78 -191.5 -111.5t-209.5 -33.5zM246 559h585q40 158 -11.5 248t-196.5 90q-141 0 -241 -97t-136 -241z" /> + <glyph glyph-name="edieresis" unicode="ë" horiz-adv-x="1028" +d="M429 1229l43 184h160l-43 -184h-160zM761 1229l43 184h159l-43 -184h-159zM430 -12q-108 0 -185 40t-114 110t-46.5 164.5t17.5 203.5q23 101 69.5 191t112.5 161t155 112.5t188 41.5q94 0 161 -29.5t103.5 -79t51.5 -119.5t10 -146.5t-25 -164.5l-3 -7l-5 -15h-699 +q-21 -72 -16.5 -136t27.5 -113t74 -77.5t124 -28.5q99 0 175.5 25t146.5 86l79 -74q-98 -78 -191.5 -111.5t-209.5 -33.5zM246 559h585q40 158 -11.5 248t-196.5 90q-141 0 -241 -97t-136 -241z" /> + <glyph glyph-name="igrave" unicode="ì" horiz-adv-x="477" +d="M313 1126l-180 287h172l149 -287h-141zM59 0l230 999h129l-230 -999h-129z" /> + <glyph glyph-name="iacute" unicode="í" horiz-adv-x="477" +d="M290 1124l283 289h180l-336 -289h-127zM59 0l230 999h129l-230 -999h-129z" /> + <glyph glyph-name="icircumflex" unicode="î" horiz-adv-x="477" +d="M43 1098l413 356l250 -356h-149l-129 196l-226 -196h-159zM59 0l230 999h129l-230 -999h-129z" /> + <glyph glyph-name="idieresis" unicode="ï" horiz-adv-x="477" +d="M160 1229l43 184h160l-43 -184h-160zM492 1229l43 184h159l-43 -184h-159zM59 0l230 999h129l-230 -999h-129z" /> + <glyph glyph-name="eth" unicode="ð" horiz-adv-x="1151" +d="M832 1374q173 -137 222 -345.5t-22 -528.5q-23 -101 -75.5 -193.5t-125.5 -164.5t-171.5 -115t-204.5 -43q-87 0 -157.5 29t-114.5 80t-71 120t-27 148.5t17 166.5q49 212 201 352t350 140q94 0 167.5 -32t97.5 -73q19 199 -173 363l-127 -141l-79 57l127 143 +q-74 48 -154 84l82 92q86 -37 156 -81l84 94l84 -56zM893 528q21 78 16.5 149.5t-27.5 127t-77 88.5t-131 33q-83 0 -157 -36t-127.5 -96.5t-91 -134.5t-56.5 -155q-20 -75 -15.5 -146.5t27 -127.5t76.5 -90t133 -34q83 0 156.5 36t126.5 96.5t90.5 134.5t56.5 155z" /> + <glyph glyph-name="ntilde" unicode="ñ" horiz-adv-x="1106" +d="M821 1157q-37 0 -66 16.5t-46.5 40t-32 47t-32.5 40t-40 16.5q-40 0 -69.5 -40.5t-43.5 -96.5h-88q26 112 77.5 176.5t123.5 64.5q42 0 73.5 -17t48.5 -41t31 -48t30.5 -41t37.5 -17q42 0 73 43.5t50 114.5h92q-58 -258 -219 -258zM59 0l230 999h125l-39 -161 +q64 80 159.5 129t192.5 49q91 0 152.5 -33t87.5 -89.5t31 -132t-17 -159.5l-139 -602h-125l139 604q65 291 -147 291q-129 0 -246.5 -99t-147.5 -229l-131 -567h-125z" /> + <glyph glyph-name="ograve" unicode="ò" horiz-adv-x="1116" +d="M631 1126l-180 287h172l149 -287h-141zM449 -20q-83 0 -151.5 27t-114 75t-73.5 114.5t-30 145t16 166.5q32 139 114 253.5t202 182.5t252 68q136 0 229 -71.5t125.5 -192t-0.5 -265.5q-32 -138 -115.5 -253t-203.5 -182.5t-250 -67.5zM453 92q86 0 159 34.5t125 93.5 +t87.5 131.5t54.5 156.5q15 63 17.5 119t-9 106.5t-38 86.5t-75 57.5t-115.5 21.5q-84 0 -156.5 -34.5t-124.5 -93.5t-87.5 -132t-54.5 -156q-21 -76 -18 -146.5t24 -125t75 -87t136 -32.5z" /> + <glyph glyph-name="oacute" unicode="ó" horiz-adv-x="1116" +d="M608 1124l283 289h180l-336 -289h-127zM449 -20q-83 0 -151.5 27t-114 75t-73.5 114.5t-30 145t16 166.5q32 139 114 253.5t202 182.5t252 68q136 0 229 -71.5t125.5 -192t-0.5 -265.5q-32 -138 -115.5 -253t-203.5 -182.5t-250 -67.5zM453 92q86 0 159 34.5t125 93.5 +t87.5 131.5t54.5 156.5q15 63 17.5 119t-9 106.5t-38 86.5t-75 57.5t-115.5 21.5q-84 0 -156.5 -34.5t-124.5 -93.5t-87.5 -132t-54.5 -156q-21 -76 -18 -146.5t24 -125t75 -87t136 -32.5z" /> + <glyph glyph-name="ocircumflex" unicode="ô" horiz-adv-x="1116" +d="M361 1098l413 356l250 -356h-149l-129 196l-226 -196h-159zM449 -20q-83 0 -151.5 27t-114 75t-73.5 114.5t-30 145t16 166.5q32 139 114 253.5t202 182.5t252 68q136 0 229 -71.5t125.5 -192t-0.5 -265.5q-32 -138 -115.5 -253t-203.5 -182.5t-250 -67.5zM453 92 +q86 0 159 34.5t125 93.5t87.5 131.5t54.5 156.5q15 63 17.5 119t-9 106.5t-38 86.5t-75 57.5t-115.5 21.5q-84 0 -156.5 -34.5t-124.5 -93.5t-87.5 -132t-54.5 -156q-21 -76 -18 -146.5t24 -125t75 -87t136 -32.5z" /> + <glyph glyph-name="otilde" unicode="õ" horiz-adv-x="1116" +d="M838 1157q-37 0 -66 16.5t-46.5 40t-32 47t-32.5 40t-40 16.5q-40 0 -69.5 -40.5t-43.5 -96.5h-88q26 112 77.5 176.5t123.5 64.5q42 0 73.5 -17t48.5 -41t31 -48t30.5 -41t37.5 -17q42 0 73 43.5t50 114.5h92q-58 -258 -219 -258zM449 -20q-83 0 -151.5 27t-114 75 +t-73.5 114.5t-30 145t16 166.5q32 139 114 253.5t202 182.5t252 68q136 0 229 -71.5t125.5 -192t-0.5 -265.5q-32 -138 -115.5 -253t-203.5 -182.5t-250 -67.5zM453 92q86 0 159 34.5t125 93.5t87.5 131.5t54.5 156.5q15 63 17.5 119t-9 106.5t-38 86.5t-75 57.5 +t-115.5 21.5q-84 0 -156.5 -34.5t-124.5 -93.5t-87.5 -132t-54.5 -156q-21 -76 -18 -146.5t24 -125t75 -87t136 -32.5z" /> + <glyph glyph-name="odieresis" unicode="ö" horiz-adv-x="1116" +d="M478 1229l43 184h160l-43 -184h-160zM810 1229l43 184h159l-43 -184h-159zM449 -20q-83 0 -151.5 27t-114 75t-73.5 114.5t-30 145t16 166.5q32 139 114 253.5t202 182.5t252 68q136 0 229 -71.5t125.5 -192t-0.5 -265.5q-32 -138 -115.5 -253t-203.5 -182.5t-250 -67.5z +M453 92q86 0 159 34.5t125 93.5t87.5 131.5t54.5 156.5q15 63 17.5 119t-9 106.5t-38 86.5t-75 57.5t-115.5 21.5q-84 0 -156.5 -34.5t-124.5 -93.5t-87.5 -132t-54.5 -156q-21 -76 -18 -146.5t24 -125t75 -87t136 -32.5z" /> + <glyph glyph-name="divide" unicode="÷" horiz-adv-x="920" +d="M393 920v176h178v-176h-178zM182 580v96h600v-96h-600zM393 141v176h178v-176h-178z" /> + <glyph glyph-name="oslash" unicode="ø" horiz-adv-x="1116" +d="M925 913q73 -73 98 -185t-5 -245q-32 -138 -115.5 -253t-203.5 -182.5t-250 -67.5q-125 0 -213 59l-30 -38h-84l63 80q-72 72 -95.5 183.5t6.5 243.5q32 139 114 253.5t202 182.5t252 68q121 0 209 -58l35 44h84zM236 483q-48 -201 25 -306l541 686q-56 36 -143 36 +q-84 0 -156.5 -34.5t-124.5 -93.5t-87.5 -132t-54.5 -156zM879 508q48 208 -29 310l-542 -688q57 -38 145 -38q86 0 159 34.5t125 93.5t87.5 131.5t54.5 156.5z" /> + <glyph glyph-name="ugrave" unicode="ù" horiz-adv-x="1102" +d="M627 1126l-180 287h172l149 -287h-141zM377 -23q-91 0 -152 35t-86.5 94t-30 138.5t18.5 167.5l135 587h125l-139 -610q-11 -46 -15.5 -86t-0.5 -82.5t19 -72.5t48 -49t82 -19q131 0 253.5 107t153.5 239l132 573h122l-229 -999h-123l43 176q-47 -74 -146 -136.5 +t-210 -62.5z" /> + <glyph glyph-name="uacute" unicode="ú" horiz-adv-x="1102" +d="M604 1124l283 289h180l-336 -289h-127zM377 -23q-91 0 -152 35t-86.5 94t-30 138.5t18.5 167.5l135 587h125l-139 -610q-11 -46 -15.5 -86t-0.5 -82.5t19 -72.5t48 -49t82 -19q131 0 253.5 107t153.5 239l132 573h122l-229 -999h-123l43 176q-47 -74 -146 -136.5 +t-210 -62.5z" /> + <glyph glyph-name="ucircumflex" unicode="û" horiz-adv-x="1102" +d="M357 1098l413 356l250 -356h-149l-129 196l-226 -196h-159zM377 -23q-91 0 -152 35t-86.5 94t-30 138.5t18.5 167.5l135 587h125l-139 -610q-11 -46 -15.5 -86t-0.5 -82.5t19 -72.5t48 -49t82 -19q131 0 253.5 107t153.5 239l132 573h122l-229 -999h-123l43 176 +q-47 -74 -146 -136.5t-210 -62.5z" /> + <glyph glyph-name="udieresis" unicode="ü" horiz-adv-x="1102" +d="M474 1229l43 184h160l-43 -184h-160zM806 1229l43 184h159l-43 -184h-159zM377 -23q-91 0 -152 35t-86.5 94t-30 138.5t18.5 167.5l135 587h125l-139 -610q-11 -46 -15.5 -86t-0.5 -82.5t19 -72.5t48 -49t82 -19q131 0 253.5 107t153.5 239l132 573h122l-229 -999h-123 +l43 176q-47 -74 -146 -136.5t-210 -62.5z" /> + <glyph glyph-name="yacute" unicode="ý" horiz-adv-x="961" +d="M524 1124l283 289h180l-336 -289h-127zM41 -430l270 430l-151 999h137l104 -847l490 847h139l-856 -1429h-133z" /> + <glyph glyph-name="thorn" unicode="þ" horiz-adv-x="1116" +d="M-43 -438l428 1851h123l-135 -575q67 87 161.5 134.5t204.5 47.5q92 0 158 -42t97 -114t37 -168.5t-21 -206.5q-33 -143 -101.5 -257t-170 -183t-216.5 -69q-119 0 -193.5 52t-103.5 142l-145 -612h-123zM483 82q104 0 191 61t140.5 155.5t80.5 211.5q21 81 19 154.5 +t-21.5 130t-70 90t-126.5 33.5q-104 0 -191.5 -61.5t-142.5 -156.5t-81 -211q-22 -81 -20 -155t23 -130t72 -89t127 -33z" /> + <glyph glyph-name="ydieresis" unicode="ÿ" horiz-adv-x="961" +d="M394 1229l43 184h160l-43 -184h-160zM726 1229l43 184h159l-43 -184h-159zM41 -430l270 430l-151 999h137l104 -847l490 847h139l-856 -1429h-133z" /> + <glyph glyph-name="Amacron" unicode="Ā" horiz-adv-x="1296" +d="M641 1606l28 121h537l-29 -121h-536zM-39 0l848 1413h104l193 -1413h-141l-37 307h-639l-178 -307h-150zM362 434h549l-90 780z" /> + <glyph glyph-name="amacron" unicode="ā" horiz-adv-x="1118" +d="M1030 1313l-29 -121h-536l28 121h537zM932 999h125l-230 -999h-125l29 134q-145 -154 -342 -154q-94 0 -162 42t-101 114t-40 169t20 207q33 143 103.5 257t174 182.5t222.5 68.5q214 0 289 -170zM829 512q19 80 19 148t-20 123.5t-69 87.5t-124 32q-152 0 -257.5 -119.5 +t-146.5 -296.5q-21 -77 -19 -148t22 -125.5t69 -87t123 -32.5q105 0 190 60t136 151.5t77 206.5z" /> + <glyph glyph-name="Abreve" unicode="Ă" horiz-adv-x="1296" +d="M907 1557q-136 0 -209 73.5t-43 196.5h123q-17 -74 21.5 -119t109.5 -45q77 0 143.5 47.5t83.5 116.5h123q-28 -130 -126 -200t-226 -70zM-39 0l848 1413h104l193 -1413h-141l-37 307h-639l-178 -307h-150zM362 434h549l-90 780z" /> + <glyph glyph-name="abreve" unicode="ă" horiz-adv-x="1118" +d="M731 1143q-136 0 -209 73.5t-43 196.5h123q-17 -74 21.5 -119t109.5 -45q77 0 143.5 47.5t83.5 116.5h123q-28 -130 -126 -200t-226 -70zM895 850l37 149h125l-230 -999h-125l29 134q-145 -154 -342 -154q-94 0 -162 42t-101 114t-40 169t20 207q33 143 103.5 257 +t174 182.5t222.5 68.5q214 0 289 -170zM829 512q19 80 19 148t-20 123.5t-69 87.5t-124 32q-152 0 -257.5 -119.5t-146.5 -296.5q-21 -77 -19 -148t22 -125.5t69 -87t123 -32.5q105 0 190 60t136 151.5t77 206.5z" /> + <glyph glyph-name="Aogonek" unicode="Ą" horiz-adv-x="1296" +d="M1106 0h-4l-13 -5q-13 -5 -36 -15.5t-50 -25t-56.5 -35.5t-55 -45t-45 -55.5t-27.5 -64.5q-10 -46 6 -73t49 -27q87 0 150 70l78 -68q-48 -53 -99.5 -80t-119.5 -27q-91 0 -137 60t-25 158q12 49 43 90.5t72 69t77.5 45t74.5 28.5h-23l-37 307h-639l-178 -307h-150 +l848 1413h104zM362 434h549l-90 780z" /> + <glyph glyph-name="aogonek" unicode="ą" horiz-adv-x="1116" +d="M1057 999l-230 -999h-79l-13 -5q-13 -5 -36 -15.5t-50 -25t-56.5 -35.5t-55 -45t-45 -55.5t-27.5 -64.5q-10 -46 6 -73t49 -27q87 0 150 70l78 -68q-48 -53 -99.5 -80t-119.5 -27q-91 0 -137 60t-25 158q12 50 44 92.5t75 70t80 44.5t75 28l61 -1l29 133 +q-145 -154 -342 -154q-94 0 -162 42t-101 114t-40 169t20 207q33 143 103.5 257t174 182.5t222.5 68.5q214 0 289 -170l37 149h125zM426 94q105 0 190 60t136 151.5t77 206.5q19 80 19 148t-20 123.5t-69 87.5t-124 32q-152 0 -257.5 -119.5t-146.5 -296.5q-21 -77 -19 -148 +t22 -125.5t69 -87t123 -32.5z" /> + <glyph glyph-name="Cacute" unicode="Ć" horiz-adv-x="1423" +d="M866 1538l283 289h180l-336 -289h-127zM649 -20q-127 0 -223.5 38.5t-154.5 106t-87 161t-28 202.5t30 231q35 149 101 276.5t161 227t227 156.5t286 57q206 0 337.5 -95.5t149.5 -279.5l-127 -39q-28 291 -369 291q-127 0 -236 -50t-187 -136t-131.5 -192.5 +t-82.5 -229.5q-19 -82 -24 -156t3 -142.5t34.5 -123.5t69 -95.5t108 -63t149.5 -22.5q334 0 521 310l112 -68q-119 -178 -284 -271t-355 -93z" /> + <glyph glyph-name="cacute" unicode="ć" horiz-adv-x="965" +d="M573 1124l283 289h180l-336 -289h-127zM414 -20q-83 0 -147.5 28.5t-104 78t-60 116.5t-20 145t19.5 162q24 101 70.5 191t112.5 161t155 112.5t189 41.5q132 0 216.5 -70t110.5 -190l-125 -41q-1 93 -57.5 145.5t-146.5 52.5q-65 0 -123.5 -26t-102 -68.5t-79.5 -99 +t-59.5 -115t-37.5 -119.5q-13 -58 -17 -112.5t4 -108.5t30 -93.5t65 -64t105 -24.5q99 0 187 58.5t132 152.5l96 -62q-72 -121 -179 -186t-234 -65z" /> + <glyph glyph-name="Cdotaccent" unicode="Ċ" horiz-adv-x="1423" +d="M905 1643l43 184h152l-43 -184h-152zM649 -20q-127 0 -223.5 38.5t-154.5 106t-87 161t-28 202.5t30 231q35 149 101 276.5t161 227t227 156.5t286 57q206 0 337.5 -95.5t149.5 -279.5l-127 -39q-28 291 -369 291q-127 0 -236 -50t-187 -136t-131.5 -192.5t-82.5 -229.5 +q-19 -82 -24 -156t3 -142.5t34.5 -123.5t69 -95.5t108 -63t149.5 -22.5q334 0 521 310l112 -68q-119 -178 -284 -271t-355 -93z" /> + <glyph glyph-name="cdotaccent" unicode="ċ" horiz-adv-x="965" +d="M612 1229l43 184h152l-43 -184h-152zM414 -20q-83 0 -147.5 28.5t-104 78t-60 116.5t-20 145t19.5 162q24 101 70.5 191t112.5 161t155 112.5t189 41.5q132 0 216.5 -70t110.5 -190l-125 -41q-1 93 -57.5 145.5t-146.5 52.5q-65 0 -123.5 -26t-102 -68.5t-79.5 -99 +t-59.5 -115t-37.5 -119.5q-13 -58 -17 -112.5t4 -108.5t30 -93.5t65 -64t105 -24.5q99 0 187 58.5t132 152.5l96 -62q-72 -121 -179 -186t-234 -65z" /> + <glyph glyph-name="Ccaron" unicode="Č" horiz-adv-x="1423" +d="M952 1495l-256 332h152l129 -192l225 192h158zM649 -20q-127 0 -223.5 38.5t-154.5 106t-87 161t-28 202.5t30 231q35 149 101 276.5t161 227t227 156.5t286 57q206 0 337.5 -95.5t149.5 -279.5l-127 -39q-28 291 -369 291q-127 0 -236 -50t-187 -136t-131.5 -192.5 +t-82.5 -229.5q-19 -82 -24 -156t3 -142.5t34.5 -123.5t69 -95.5t108 -63t149.5 -22.5q334 0 521 310l112 -68q-119 -178 -284 -271t-355 -93z" /> + <glyph glyph-name="ccaron" unicode="č" horiz-adv-x="965" +d="M659 1081l-256 332h152l129 -192l225 192h158zM414 -20q-83 0 -147.5 28.5t-104 78t-60 116.5t-20 145t19.5 162q24 101 70.5 191t112.5 161t155 112.5t189 41.5q132 0 216.5 -70t110.5 -190l-125 -41q-1 93 -57.5 145.5t-146.5 52.5q-65 0 -123.5 -26t-102 -68.5 +t-79.5 -99t-59.5 -115t-37.5 -119.5q-13 -58 -17 -112.5t4 -108.5t30 -93.5t65 -64t105 -24.5q99 0 187 58.5t132 152.5l96 -62q-72 -121 -179 -186t-234 -65z" /> + <glyph glyph-name="Dcaron" unicode="Ď" horiz-adv-x="1405" +d="M954 1495l-256 332h152l129 -192l225 192h158zM104 0l326 1413h342q341 0 483.5 -188.5t61.5 -540.5q-77 -330 -300.5 -507t-561.5 -177h-351zM268 123h181q127 0 243.5 37t216 109t173.5 187.5t108 262.5q64 277 -46.5 426t-391.5 149h-213z" /> + <glyph glyph-name="dcaron" unicode="ď" horiz-adv-x="1174" +d="M389 -20q-94 0 -162 42t-101 114t-40 169t20 207q33 143 103.5 257t174 182.5t222.5 68.5q214 0 289 -170l133 563h125l-326 -1413h-125l35 141q-72 -77 -155 -119t-193 -42zM1174 1032l188 381h205l-291 -381h-102zM426 94q105 0 190 60t136 151.5t77 206.5 +q19 80 19 148t-20 123.5t-69 87.5t-124 32q-152 0 -257.5 -119.5t-146.5 -296.5q-21 -77 -19 -148t22 -125.5t69 -87t123 -32.5z" /> + <glyph glyph-name="Dcroat" unicode="Đ" horiz-adv-x="1421" +d="M121 0l151 664h-112l24 98h113l149 651h351q338 0 478 -188.5t58 -540.5q-76 -330 -297.5 -507t-556.5 -177h-358zM293 129h180q126 0 239.5 35.5t210 106t168 185t105.5 263.5q64 279 -41 423t-381 144h-213l-121 -524h381l-24 -98h-381z" /> + <glyph glyph-name="dcroat" unicode="đ" horiz-adv-x="1118" +d="M1323 1268l-25 -105h-203l-268 -1163h-125l29 134q-145 -154 -342 -154q-94 0 -162 42t-101 114t-40 169t20 207q33 143 103.5 257t174 182.5t222.5 68.5q214 0 289 -170l74 313h-306l25 105h306l34 145h125l-33 -145h203zM829 512q19 80 19 148t-20 123.5t-69 87.5 +t-124 32q-152 0 -257.5 -119.5t-146.5 -296.5q-21 -77 -19 -148t22 -125.5t69 -87t123 -32.5q105 0 190 60t136 151.5t77 206.5z" /> + <glyph glyph-name="Emacron" unicode="Ē" horiz-adv-x="1235" +d="M668 1606l28 121h537l-29 -121h-536zM104 0l326 1413h909l-26 -113h-774l-123 -538h661l-26 -109h-662l-123 -532h774l-26 -121h-910z" /> + <glyph glyph-name="emacron" unicode="ē" horiz-adv-x="1028" +d="M402 1192l28 121h537l-29 -121h-536zM430 -12q-108 0 -185 40t-114 110t-46.5 164.5t17.5 203.5q23 101 69.5 191t112.5 161t155 112.5t188 41.5q94 0 161 -29.5t103.5 -79t51.5 -119.5t10 -146.5t-25 -164.5l-3 -7l-5 -15h-699q-21 -72 -16.5 -136t27.5 -113t74 -77.5 +t124 -28.5q99 0 175.5 25t146.5 86l79 -74q-98 -78 -191.5 -111.5t-209.5 -33.5zM246 559h585q40 158 -11.5 248t-196.5 90q-141 0 -241 -97t-136 -241z" /> + <glyph glyph-name="Edotaccent" unicode="Ė" horiz-adv-x="1235" +d="M864 1643l43 184h152l-43 -184h-152zM104 0l326 1413h909l-26 -113h-774l-123 -538h661l-26 -109h-662l-123 -532h774l-26 -121h-910z" /> + <glyph glyph-name="edotaccent" unicode="ė" horiz-adv-x="1028" +d="M598 1229l43 184h152l-43 -184h-152zM430 -12q-108 0 -185 40t-114 110t-46.5 164.5t17.5 203.5q23 101 69.5 191t112.5 161t155 112.5t188 41.5q94 0 161 -29.5t103.5 -79t51.5 -119.5t10 -146.5t-25 -164.5l-3 -7l-5 -15h-699q-21 -72 -16.5 -136t27.5 -113t74 -77.5 +t124 -28.5q99 0 175.5 25t146.5 86l79 -74q-98 -78 -191.5 -111.5t-209.5 -33.5zM246 559h585q40 158 -11.5 248t-196.5 90q-141 0 -241 -97t-136 -241z" /> + <glyph glyph-name="Eogonek" unicode="Ę" horiz-adv-x="1235" +d="M1313 1300h-774l-123 -538h661l-26 -109h-662l-123 -532h774l-26 -121h-6l-13 -5q-13 -5 -36 -15.5t-50 -25t-56.5 -35.5t-55 -45t-45 -55.5t-27.5 -64.5q-10 -46 6 -73t49 -27q87 0 150 70l78 -68q-48 -53 -99.5 -80t-119.5 -27q-91 0 -137 60t-25 158q12 49 43 90.5 +t72 69t77.5 45t74.5 28.5h-790l326 1413h909z" /> + <glyph glyph-name="eogonek" unicode="ę" horiz-adv-x="1028" +d="M627 1012q94 0 161 -29.5t103.5 -79t51.5 -119.5t10 -146.5t-25 -164.5l-3 -7l-5 -15h-699q-21 -72 -16.5 -136t27.5 -113t74 -77.5t124 -28.5q99 0 175.5 25t146.5 86l79 -74q-125 -100 -255 -130q-164 -89 -191 -204q-10 -46 6 -73t49 -27q87 0 150 70l78 -68 +q-48 -53 -99.5 -80t-119.5 -27q-91 0 -137 60t-25 158q26 107 139 176q-107 1 -183 41t-113 110t-46 164t18 203q23 101 69.5 191t112.5 161t155 112.5t188 41.5zM831 559q40 158 -11.5 248t-196.5 90q-141 0 -241 -97t-136 -241h585z" /> + <glyph glyph-name="Ecaron" unicode="Ě" horiz-adv-x="1235" +d="M911 1495l-256 332h152l129 -192l225 192h158zM104 0l326 1413h909l-26 -113h-774l-123 -538h661l-26 -109h-662l-123 -532h774l-26 -121h-910z" /> + <glyph glyph-name="ecaron" unicode="ě" horiz-adv-x="1028" +d="M645 1081l-256 332h152l129 -192l225 192h158zM430 -12q-108 0 -185 40t-114 110t-46.5 164.5t17.5 203.5q23 101 69.5 191t112.5 161t155 112.5t188 41.5q94 0 161 -29.5t103.5 -79t51.5 -119.5t10 -146.5t-25 -164.5l-3 -7l-5 -15h-699q-21 -72 -16.5 -136t27.5 -113 +t74 -77.5t124 -28.5q99 0 175.5 25t146.5 86l79 -74q-98 -78 -191.5 -111.5t-209.5 -33.5zM246 559h585q40 158 -11.5 248t-196.5 90q-141 0 -241 -97t-136 -241z" /> + <glyph glyph-name="Gbreve" unicode="Ğ" horiz-adv-x="1503" +d="M1016 1557q-136 0 -209 73.5t-43 196.5h123q-17 -74 21.5 -119t109.5 -45q77 0 143.5 47.5t83.5 116.5h123q-28 -130 -126 -200t-226 -70zM649 -20q-127 0 -223.5 38.5t-154.5 106t-87 161t-28 202.5t30 231q34 149 101.5 277t163.5 227t227.5 156t282.5 57 +q199 0 323 -97t164 -278l-131 -43q-73 287 -367 287q-127 0 -235.5 -48.5t-186 -133t-131 -190t-82.5 -228.5q-22 -98 -25.5 -185t15.5 -163t61 -130.5t115.5 -86t173.5 -31.5q130 0 248.5 56t210 170.5t127.5 268.5l-326 -6l25 104h449l-162 -702h-115l68 266 +q-72 -119 -214.5 -202.5t-316.5 -83.5z" /> + <glyph glyph-name="gbreve" unicode="ğ" horiz-adv-x="1120" +d="M700 1143q-136 0 -209 73.5t-43 196.5h123q-17 -74 21.5 -119t109.5 -45q77 0 143.5 47.5t83.5 116.5h123q-28 -130 -126 -200t-226 -70zM825 -6q-46 -201 -174.5 -313.5t-322.5 -112.5q-125 0 -215 51t-129 148l108 61q58 -152 238 -152q141 0 239.5 92.5t132.5 237.5 +l35 135q-147 -161 -340 -161q-98 0 -168 41.5t-103 113.5t-40.5 169t20.5 208q52 222 187.5 365t320.5 143q105 0 176 -46.5t105 -125.5l37 151h127zM426 88q78 0 147 35.5t118.5 96t84 134.5t53.5 158q19 80 19 149t-19 126t-67.5 89.5t-122.5 32.5q-79 0 -148 -34.5 +t-119.5 -94.5t-86 -134t-54.5 -159q-19 -80 -18.5 -150t20.5 -126.5t69.5 -89.5t123.5 -33z" /> + <glyph glyph-name="Gdotaccent" unicode="Ġ" horiz-adv-x="1503" +d="M946 1643l43 184h152l-43 -184h-152zM649 -20q-127 0 -223.5 38.5t-154.5 106t-87 161t-28 202.5t30 231q34 149 101.5 277t163.5 227t227.5 156t282.5 57q199 0 323 -97t164 -278l-131 -43q-73 287 -367 287q-127 0 -235.5 -48.5t-186 -133t-131 -190t-82.5 -228.5 +q-22 -98 -25.5 -185t15.5 -163t61 -130.5t115.5 -86t173.5 -31.5q130 0 248.5 56t210 170.5t127.5 268.5l-326 -6l25 104h449l-162 -702h-115l68 266q-72 -119 -214.5 -202.5t-316.5 -83.5z" /> + <glyph glyph-name="gdotaccent" unicode="ġ" horiz-adv-x="1120" +d="M630 1229l43 184h152l-43 -184h-152zM825 -6q-46 -201 -174.5 -313.5t-322.5 -112.5q-125 0 -215 51t-129 148l108 61q58 -152 238 -152q141 0 239.5 92.5t132.5 237.5l35 135q-147 -161 -340 -161q-98 0 -168 41.5t-103 113.5t-40.5 169t20.5 208q52 222 187.5 365 +t320.5 143q105 0 176 -46.5t105 -125.5l37 151h127zM426 88q78 0 147 35.5t118.5 96t84 134.5t53.5 158q19 80 19 149t-19 126t-67.5 89.5t-122.5 32.5q-79 0 -148 -34.5t-119.5 -94.5t-86 -134t-54.5 -159q-19 -80 -18.5 -150t20.5 -126.5t69.5 -89.5t123.5 -33z" /> + <glyph glyph-name="Gcommaaccent" unicode="Ģ" horiz-adv-x="1503" +d="M649 -20q-127 0 -223.5 38.5t-154.5 106t-87 161t-28 202.5t30 231q34 149 101.5 277t163.5 227t227.5 156t282.5 57q199 0 323 -97t164 -278l-131 -43q-73 287 -367 287q-127 0 -235.5 -48.5t-186 -133t-131 -190t-82.5 -228.5q-22 -98 -25.5 -185t15.5 -163t61 -130.5 +t115.5 -86t173.5 -31.5q130 0 248.5 56t210 170.5t127.5 268.5l-326 -6l25 104h449l-162 -702h-115l68 266q-72 -119 -214.5 -202.5t-316.5 -83.5zM345 -442l196 329h205l-299 -329h-102z" /> + <glyph glyph-name="gcommaaccent" unicode="ģ" horiz-adv-x="1120" +d="M923 1419l-196 -294h-205l299 294h102zM825 -6q-46 -201 -174.5 -313.5t-322.5 -112.5q-125 0 -215 51t-129 148l108 61q58 -152 238 -152q141 0 239.5 92.5t132.5 237.5l35 135q-147 -161 -340 -161q-98 0 -168 41.5t-103 113.5t-40.5 169t20.5 208q52 222 187.5 365 +t320.5 143q105 0 176 -46.5t105 -125.5l37 151h127zM426 88q78 0 147 35.5t118.5 96t84 134.5t53.5 158q19 80 19 149t-19 126t-67.5 89.5t-122.5 32.5q-79 0 -148 -34.5t-119.5 -94.5t-86 -134t-54.5 -159q-19 -80 -18.5 -150t20.5 -126.5t69.5 -89.5t123.5 -33z" /> + <glyph glyph-name="Hbar" unicode="Ħ" horiz-adv-x="1446" +d="M1491 1153l-17 -76h-114l-248 -1077h-135l149 653h-737l-149 -653h-136l248 1077h-119l17 76h120l60 260h135l-60 -260h738l60 260h135l-60 -260h113zM1153 762l73 315h-738l-72 -315h737z" /> + <glyph glyph-name="hbar" unicode="ħ" horiz-adv-x="1108" +d="M739 1016q86 0 145.5 -33t85 -88.5t31 -128t-15.5 -152.5l-141 -614h-127l139 604q65 293 -141 293q-137 0 -256 -106.5t-152 -249.5l-125 -541h-123l261 1132h-191l25 105h190l41 176h123l-41 -176h322l-25 -105h-322l-71 -303q66 85 167 136t201 51z" /> + <glyph glyph-name="Itilde" unicode="Ĩ" horiz-adv-x="573" +d="M662 1571q-37 0 -66 16.5t-46.5 40t-32 47t-32.5 40t-40 16.5q-40 0 -69.5 -40.5t-43.5 -96.5h-88q26 112 77.5 176.5t123.5 64.5q42 0 73.5 -17t48.5 -41t31 -48t30.5 -41t37.5 -17q42 0 73 43.5t50 114.5h92q-58 -258 -219 -258zM104 0l326 1413h135l-325 -1413h-136z +" /> + <glyph glyph-name="itilde" unicode="ĩ" horiz-adv-x="477" +d="M520 1157q-37 0 -66 16.5t-46.5 40t-32 47t-32.5 40t-40 16.5q-40 0 -69.5 -40.5t-43.5 -96.5h-88q26 112 77.5 176.5t123.5 64.5q42 0 73.5 -17t48.5 -41t31 -48t30.5 -41t37.5 -17q42 0 73 43.5t50 114.5h92q-58 -258 -219 -258zM59 0l230 999h129l-230 -999h-129z" /> + <glyph glyph-name="Imacron" unicode="Ī" horiz-adv-x="573" +d="M275 1606l28 121h537l-29 -121h-536zM104 0l326 1413h135l-325 -1413h-136z" /> + <glyph glyph-name="imacron" unicode="ī" horiz-adv-x="477" +d="M133 1192l28 121h537l-29 -121h-536zM59 0l230 999h129l-230 -999h-129z" /> + <glyph glyph-name="Iogonek" unicode="Į" horiz-adv-x="573" +d="M565 1413l-325 -1413h-6l-13 -5q-13 -5 -36 -15.5t-50 -25t-56.5 -35.5t-55 -45t-45 -55.5t-27.5 -64.5q-10 -46 6 -73t49 -27q87 0 150 70l78 -68q-48 -53 -99.5 -80t-119.5 -27q-91 0 -137 60t-25 158q12 49 43 90.5t72 69t77.5 45t74.5 28.5h-16l326 1413h135z" /> + <glyph glyph-name="iogonek" unicode="į" horiz-adv-x="477" +d="M372 1413h152l-43 -184h-152zM59 0l230 999h129l-230 -999h-6l-13 -5q-13 -5 -36 -15.5t-50 -25t-56.5 -35.5t-55 -45t-45 -55.5t-27.5 -64.5q-10 -46 6 -73t49 -27q87 0 150 70l78 -68q-48 -53 -99.5 -80t-119.5 -27q-91 0 -137 60t-25 158q12 49 43 90.5t72 69t77.5 45 +t74.5 28.5h-9z" /> + <glyph glyph-name="Idotaccent" unicode="İ" horiz-adv-x="573" +d="M471 1643l43 184h152l-43 -184h-152zM104 0l326 1413h135l-325 -1413h-136z" /> + <glyph glyph-name="dotlessi" unicode="ı" horiz-adv-x="477" +d="M59 0l230 999h129l-230 -999h-129z" /> + <glyph glyph-name="IJ" unicode="IJ" horiz-adv-x="1687" +d="M104 0l326 1413h135l-325 -1413h-136zM960 -20q-125 0 -207 56.5t-111 148t-12 206.5l131 6q-12 -56 -4.5 -110t27.5 -96.5t66.5 -68.5t113.5 -26q89 0 157 31t112 88.5t71.5 121.5t46.5 148l189 815h-533l27 113h667l-213 -919q-56 -249 -184 -381.5t-344 -132.5z" /> + <glyph glyph-name="Kcommaaccent" unicode="Ķ" horiz-adv-x="1440" +d="M104 0l326 1413h135l-198 -852l1001 852h174l-655 -551l364 -862h-147l-313 780l-459 -385l-92 -395h-136zM257 -442l196 329h205l-299 -329h-102z" /> + <glyph glyph-name="kcommaaccent" unicode="ķ" horiz-adv-x="1026" +d="M59 0l326 1413h127l-229 -983l594 569h157l-399 -362l237 -637h-145l-182 547l-289 -254l-70 -293h-127zM152 -442l196 329h205l-299 -329h-102z" /> + <glyph glyph-name="kgreenlandic" unicode="ĸ" horiz-adv-x="1024" +d="M59 0l230 999h125l-129 -550l589 550h158l-399 -362l237 -637h-147l-180 543l-291 -254l-68 -289h-125z" /> + <glyph glyph-name="Lacute" unicode="Ĺ" horiz-adv-x="1030" +d="M458 1538l283 289h180l-336 -289h-127zM104 0l326 1413h135l-299 -1292h604l-26 -121h-740z" /> + <glyph glyph-name="lacute" unicode="ĺ" horiz-adv-x="504" +d="M374 1538l283 289h180l-336 -289h-127zM213 -20q-120 0 -128 90q-4 38 19 139l279 1204h127l-293 -1266q-14 -65 39 -65q20 0 90 18l-12 -102q-52 -18 -121 -18z" /> + <glyph glyph-name="Lcommaaccent" unicode="Ļ" horiz-adv-x="1030" +d="M104 0l326 1413h135l-299 -1292h604l-26 -121h-740zM93 -442l196 329h205l-299 -329h-102z" /> + <glyph glyph-name="lcommaaccent" unicode="ļ" horiz-adv-x="504" +d="M213 -20q-120 0 -128 90q-4 38 19 139l279 1204h127l-293 -1266q-14 -65 39 -65q20 0 90 18l-12 -102q-52 -18 -121 -18zM-87 -442l196 329h205l-299 -329h-102z" /> + <glyph glyph-name="Lcaron" unicode="Ľ" horiz-adv-x="1040" +d="M104 0l326 1413h135l-299 -1292h604l-26 -121h-740zM705 1032l188 381h205l-291 -381h-102z" /> + <glyph glyph-name="lcaron" unicode="ľ" horiz-adv-x="545" +d="M213 -20q-120 0 -128 90q-4 38 19 139l279 1204h127l-293 -1266v5q-7 -10 -7 -35q2 -28 23 -29q53 0 113 12l-12 -102q-52 -18 -121 -18zM545 1032l188 381h205l-291 -381h-102z" /> + <glyph glyph-name="Lslash" unicode="Ł" horiz-adv-x="1079" +d="M311 121h604l-26 -121h-740l111 482l-219 -140l37 137l214 143l183 791h135l-159 -685l430 286l-43 -162l-420 -269z" /> + <glyph glyph-name="lslash" unicode="ł" horiz-adv-x="504" +d="M334 650l-117 -503q-14 -65 39 -65q20 0 90 18l-12 -102q-52 -18 -121 -18q-120 0 -128 90q-4 38 19 139l63 270l-187 -192l55 178l169 174l179 774h127l-139 -602l199 205l-55 -179z" /> + <glyph glyph-name="Nacute" unicode="Ń" horiz-adv-x="1409" +d="M849 1538l283 289h180l-336 -289h-127zM104 0l326 1413h213l324 -1288l299 1288h135l-326 -1413h-217l-317 1290l-299 -1290h-138z" /> + <glyph glyph-name="nacute" unicode="ń" horiz-adv-x="1106" +d="M591 1124l283 289h180l-336 -289h-127zM59 0l230 999h125l-39 -161q64 80 159.5 129t192.5 49q91 0 152.5 -33t87.5 -89.5t31 -132t-17 -159.5l-139 -602h-125l139 604q65 291 -147 291q-129 0 -246.5 -99t-147.5 -229l-131 -567h-125z" /> + <glyph glyph-name="Ncommaaccent" unicode="Ņ" horiz-adv-x="1409" +d="M104 0l326 1413h213l324 -1288l299 1288h135l-326 -1413h-217l-317 1290l-299 -1290h-138zM261 -442l196 329h205l-299 -329h-102z" /> + <glyph glyph-name="ncommaaccent" unicode="ņ" horiz-adv-x="1106" +d="M59 0l230 999h125l-39 -161q64 80 159.5 129t192.5 49q91 0 152.5 -33t87.5 -89.5t31 -132t-17 -159.5l-139 -602h-125l139 604q65 291 -147 291q-129 0 -246.5 -99t-147.5 -229l-131 -567h-125zM99 -442l196 329h205l-299 -329h-102z" /> + <glyph glyph-name="Ncaron" unicode="Ň" horiz-adv-x="1409" +d="M935 1495l-256 332h152l129 -192l225 192h158zM104 0l326 1413h213l324 -1288l299 1288h135l-326 -1413h-217l-317 1290l-299 -1290h-138z" /> + <glyph glyph-name="ncaron" unicode="ň" horiz-adv-x="1106" +d="M677 1081l-256 332h152l129 -192l225 192h158zM59 0l230 999h125l-39 -161q64 80 159.5 129t192.5 49q91 0 152.5 -33t87.5 -89.5t31 -132t-17 -159.5l-139 -602h-125l139 604q65 291 -147 291q-129 0 -246.5 -99t-147.5 -229l-131 -567h-125z" /> + <glyph glyph-name="Eng" unicode="Ŋ" horiz-adv-x="1407" +d="M649 -369l21 111q112 0 175.5 57t47.5 131l-352 1356l-299 -1286h-138l326 1413h213l324 -1286l299 1286h135l-328 -1419q-22 -103 -43 -153q-89 -210 -305 -210h-76z" /> + <glyph glyph-name="eng" unicode="ŋ" horiz-adv-x="1108" +d="M426 -369l27 111h45q43 0 78 15.5t55 37t35.5 50.5t21.5 49t10 40l156 670q13 59 15.5 104.5t-8.5 89t-47.5 67.5t-98.5 24q-131 0 -249 -96t-147 -226l-131 -567h-129l230 999h129l-39 -159q64 79 159 127.5t191 48.5q74 0 128.5 -22.5t85 -60.5t45 -91.5t12.5 -113 +t-17 -126.5l-162 -696q-7 -32 -15.5 -58t-24 -60.5t-39 -60t-55 -48.5t-77.5 -35.5t-102 -12.5h-82z" /> + <glyph glyph-name="Omacron" unicode="Ō" horiz-adv-x="1511" +d="M744 1606l28 121h537l-29 -121h-536zM645 -20q-125 0 -220 38.5t-153 106.5t-87.5 161t-29 202.5t28.5 230.5q34 148 101 275.5t163 226.5t228 156t282 57q126 0 222.5 -38.5t154.5 -106.5t88 -161.5t29 -203t-29 -230.5q-27 -118 -75 -223t-118 -195.5t-156 -156 +t-196.5 -102.5t-232.5 -37zM651 106q105 0 199 33.5t166 90.5t130.5 136t97 167t61.5 186q21 94 23.5 178.5t-18 160t-64 130.5t-119 87t-177.5 32q-127 0 -237.5 -50.5t-190 -137.5t-134 -194.5t-83.5 -230.5q-21 -94 -23.5 -178.5t17.5 -160t62.5 -130.5t116 -87 +t173.5 -32z" /> + <glyph glyph-name="omacron" unicode="ō" horiz-adv-x="1116" +d="M451 1192l28 121h537l-29 -121h-536zM449 -20q-83 0 -151.5 27t-114 75t-73.5 114.5t-30 145t16 166.5q32 139 114 253.5t202 182.5t252 68q136 0 229 -71.5t125.5 -192t-0.5 -265.5q-32 -138 -115.5 -253t-203.5 -182.5t-250 -67.5zM453 92q86 0 159 34.5t125 93.5 +t87.5 131.5t54.5 156.5q15 63 17.5 119t-9 106.5t-38 86.5t-75 57.5t-115.5 21.5q-84 0 -156.5 -34.5t-124.5 -93.5t-87.5 -132t-54.5 -156q-21 -76 -18 -146.5t24 -125t75 -87t136 -32.5z" /> + <glyph glyph-name="Ohungarumlaut" unicode="Ő" horiz-adv-x="1511" +d="M742 1542l281 285h184l-338 -285h-127zM1068 1542l280 285h181l-334 -285h-127zM645 -20q-125 0 -220 38.5t-153 106.5t-87.5 161t-29 202.5t28.5 230.5q34 148 101 275.5t163 226.5t228 156t282 57q126 0 222.5 -38.5t154.5 -106.5t88 -161.5t29 -203t-29 -230.5 +q-27 -118 -75 -223t-118 -195.5t-156 -156t-196.5 -102.5t-232.5 -37zM651 106q105 0 199 33.5t166 90.5t130.5 136t97 167t61.5 186q21 94 23.5 178.5t-18 160t-64 130.5t-119 87t-177.5 32q-127 0 -237.5 -50.5t-190 -137.5t-134 -194.5t-83.5 -230.5 +q-21 -94 -23.5 -178.5t17.5 -160t62.5 -130.5t116 -87t173.5 -32z" /> + <glyph glyph-name="ohungarumlaut" unicode="ő" horiz-adv-x="1116" +d="M449 1128l281 285h184l-338 -285h-127zM775 1128l280 285h181l-334 -285h-127zM449 -20q-83 0 -151.5 27t-114 75t-73.5 114.5t-30 145t16 166.5q32 139 114 253.5t202 182.5t252 68q136 0 229 -71.5t125.5 -192t-0.5 -265.5q-32 -138 -115.5 -253t-203.5 -182.5 +t-250 -67.5zM453 92q86 0 159 34.5t125 93.5t87.5 131.5t54.5 156.5q15 63 17.5 119t-9 106.5t-38 86.5t-75 57.5t-115.5 21.5q-84 0 -156.5 -34.5t-124.5 -93.5t-87.5 -132t-54.5 -156q-21 -76 -18 -146.5t24 -125t75 -87t136 -32.5z" /> + <glyph glyph-name="OE" unicode="Œ" horiz-adv-x="2238" +d="M651 -20q-127 0 -223.5 38.5t-155 106.5t-88.5 161.5t-29 202t29 230.5q34 148 100.5 275t163 226.5t230 156.5t287.5 57q183 0 288 -80.5t131 -229.5l70 289h889l-27 -113h-753l-123 -538h661l-26 -109h-662l-123 -532h754l-27 -121h-889l66 276q-186 -296 -543 -296z +M653 100q128 0 238.5 51t188.5 139t132 196.5t82 232.5q22 95 25 180t-16 161.5t-60.5 132t-115 88t-173.5 32.5q-104 0 -197 -34t-163 -92.5t-127 -138.5t-94.5 -168.5t-59.5 -185.5q-21 -94 -24.5 -178.5t15 -161.5t59.5 -132.5t115 -88.5t175 -33z" /> + <glyph glyph-name="oe" unicode="œ" horiz-adv-x="1784" +d="M446 -20q-103 0 -182.5 41.5t-123 113.5t-57.5 168t13 205q49 212 209 358t357 146q131 0 215 -59.5t114 -161.5q153 221 395 221q95 0 163 -32.5t103.5 -86t50 -123.5t8.5 -142t-28 -145q1 4 0 -2q-1 -2 -3 -10l-5 -20h-696q-21 -72 -17 -138t26 -116t73 -79.5 +t125 -29.5q97 0 170.5 24t144.5 87l74 -70q-93 -81 -182.5 -111t-204.5 -30q-258 0 -320 219q-78 -108 -185.5 -167.5t-236.5 -59.5zM1001 559h592q40 159 -12 251.5t-197 92.5q-144 0 -245 -98.5t-138 -245.5zM455 100q85 0 157.5 33t124.5 91t87.5 129.5t54.5 154.5 +q20 75 16.5 144.5t-24.5 123t-76 85.5t-138 32q-163 0 -273 -117.5t-151 -292.5q-20 -74 -16 -143.5t25.5 -122.5t76 -85t136.5 -32z" /> + <glyph glyph-name="Racute" unicode="Ŕ" horiz-adv-x="1206" +d="M755 1538l283 289h180l-336 -289h-127zM102 -2l328 1413h385q189 0 288 -109.5t58 -289.5q-32 -140 -135.5 -235t-249.5 -120l221 -659h-145l-205 641h-260l-149 -641h-136zM418 770h276q125 6 219.5 75.5t122.5 192.5q27 122 -38 188t-197 66h-262z" /> + <glyph glyph-name="racute" unicode="ŕ" horiz-adv-x="788" +d="M448 1124l283 289h180l-336 -289h-127zM59 0l230 999h131l-41 -176q59 92 147.5 141.5t175.5 49.5q46 0 90.5 -12.5t69.5 -32.5l-55 -113q-59 37 -125 37q-68 0 -132.5 -37t-113.5 -98t-85 -136t-54 -153l-109 -469h-129z" /> + <glyph glyph-name="Rcommaaccent" unicode="Ŗ" horiz-adv-x="1206" +d="M102 -2l328 1413h385q189 0 288 -109.5t58 -289.5q-32 -140 -135.5 -235t-249.5 -120l221 -659h-145l-205 641h-260l-149 -641h-136zM418 770h276q125 6 219.5 75.5t122.5 192.5q27 122 -38 188t-197 66h-262zM246 -442l196 329h205l-299 -329h-102z" /> + <glyph glyph-name="rcommaaccent" unicode="ŗ" horiz-adv-x="788" +d="M59 0l230 999h131l-41 -176q59 92 147.5 141.5t175.5 49.5q46 0 90.5 -12.5t69.5 -32.5l-55 -113q-59 37 -125 37q-68 0 -132.5 -37t-113.5 -98t-85 -136t-54 -153l-109 -469h-129zM-204 -442l196 329h205l-299 -329h-102z" /> + <glyph glyph-name="Rcaron" unicode="Ř" horiz-adv-x="1206" +d="M841 1495l-256 332h152l129 -192l225 192h158zM102 -2l328 1413h385q189 0 288 -109.5t58 -289.5q-32 -140 -135.5 -235t-249.5 -120l221 -659h-145l-205 641h-260l-149 -641h-136zM418 770h276q125 6 219.5 75.5t122.5 192.5q27 122 -38 188t-197 66h-262z" /> + <glyph glyph-name="rcaron" unicode="ř" horiz-adv-x="788" +d="M534 1081l-256 332h152l129 -192l225 192h158zM59 0l230 999h131l-41 -176q59 92 147.5 141.5t175.5 49.5q46 0 90.5 -12.5t69.5 -32.5l-55 -113q-59 37 -125 37q-68 0 -132.5 -37t-113.5 -98t-85 -136t-54 -153l-109 -469h-129z" /> + <glyph glyph-name="Sacute" unicode="Ś" horiz-adv-x="1106" +d="M694 1538l283 289h180l-336 -289h-127zM475 -16q-176 0 -296 99t-120 275l129 27q0 -133 74 -207t217 -74q163 0 263 88.5t100 215.5q0 51 -18 92t-48.5 70.5t-70.5 54.5t-83.5 46.5t-87.5 43.5t-84 50t-70.5 61.5t-48.5 81.5t-18 106q0 112 61 208.5t166 154t228 57.5 +q122 0 209.5 -57.5t124.5 -162.5l-105 -55q-22 77 -86 118.5t-147 41.5q-125 0 -222.5 -82.5t-97.5 -200.5q0 -53 22.5 -96t60 -70.5t85 -55t97 -49t97 -52.5t85 -66t60 -90t22.5 -123q0 -186 -144.5 -318t-353.5 -132z" /> + <glyph glyph-name="sacute" unicode="ś" horiz-adv-x="864" +d="M483 1124l283 289h180l-336 -289h-127zM358 -20q-135 0 -227.5 73.5t-105.5 171.5l118 47q7 -79 73.5 -127.5t156.5 -48.5q104 0 171.5 61.5t67.5 145.5q0 48 -25 80.5t-65 50t-88 31.5t-96 31t-88 42t-65 72t-25 113q0 93 46.5 160t120.5 99t165 32q122 0 202.5 -57.5 +t108.5 -137.5l-107 -47q-20 61 -74 96t-137 35q-92 0 -151.5 -44.5t-59.5 -133.5q0 -47 25.5 -78.5t66.5 -49t90 -31t98.5 -31.5t90.5 -43.5t66.5 -72.5t25.5 -114q0 -126 -111.5 -225.5t-267.5 -99.5z" /> + <glyph glyph-name="Scedilla" unicode="Ş" horiz-adv-x="1106" +d="M764 1319q-125 0 -222.5 -82.5t-97.5 -200.5q0 -53 22.5 -96t60 -70.5t85 -55t97 -49t97 -52.5t85 -66t60 -90t22.5 -123q0 -183 -141.5 -314.5t-347.5 -135.5l-89 -105q90 -1 128 -56t20 -132q-19 -75 -84.5 -133t-155.5 -58q-65 0 -108 38t-52 91l99 37q-3 -30 15 -51 +t52 -21q49 0 88.5 33.5t51.5 79.5q10 47 -26.5 82t-127.5 35h-41l122 169q-141 26 -229 120.5t-88 244.5l129 27q0 -133 74 -207t217 -74q163 0 263 88.5t100 215.5q0 51 -18 92t-48.5 70.5t-70.5 54.5t-83.5 46.5t-87.5 43.5t-84 50t-70.5 61.5t-48.5 81.5t-18 106 +q0 112 61 208.5t166 154t228 57.5q122 0 209.5 -57.5t124.5 -162.5l-105 -55q-22 77 -86 118.5t-147 41.5z" /> + <glyph glyph-name="scedilla" unicode="ş" horiz-adv-x="864" +d="M274 725q0 -47 25.5 -78.5t66.5 -49t90 -31t98.5 -31.5t90.5 -43.5t66.5 -72.5t25.5 -114q0 -117 -98 -213t-240 -110l-88 -103q90 -1 128 -56t20 -132q-19 -75 -84.5 -133t-155.5 -58q-65 0 -108 38t-52 91l99 37q-3 -30 15 -51t52 -21q49 0 88.5 33.5t51.5 79.5 +q10 47 -26.5 82t-127.5 35h-41l117 162q-108 19 -179.5 87t-82.5 152l118 47q7 -79 73.5 -127.5t156.5 -48.5q104 0 171.5 61.5t67.5 145.5q0 48 -25 80.5t-65 50t-88 31.5t-96 31t-88 42t-65 72t-25 113q0 93 46.5 160t120.5 99t165 32q122 0 202.5 -57.5t108.5 -137.5 +l-107 -47q-20 61 -74 96t-137 35q-92 0 -151.5 -44.5t-59.5 -133.5z" /> + <glyph glyph-name="Scaron" unicode="Š" horiz-adv-x="1106" +d="M780 1495l-256 332h152l129 -192l225 192h158zM475 -16q-176 0 -296 99t-120 275l129 27q0 -133 74 -207t217 -74q163 0 263 88.5t100 215.5q0 51 -18 92t-48.5 70.5t-70.5 54.5t-83.5 46.5t-87.5 43.5t-84 50t-70.5 61.5t-48.5 81.5t-18 106q0 112 61 208.5t166 154 +t228 57.5q122 0 209.5 -57.5t124.5 -162.5l-105 -55q-22 77 -86 118.5t-147 41.5q-125 0 -222.5 -82.5t-97.5 -200.5q0 -53 22.5 -96t60 -70.5t85 -55t97 -49t97 -52.5t85 -66t60 -90t22.5 -123q0 -186 -144.5 -318t-353.5 -132z" /> + <glyph glyph-name="scaron" unicode="š" horiz-adv-x="864" +d="M569 1081l-256 332h152l129 -192l225 192h158zM358 -20q-135 0 -227.5 73.5t-105.5 171.5l118 47q7 -79 73.5 -127.5t156.5 -48.5q104 0 171.5 61.5t67.5 145.5q0 48 -25 80.5t-65 50t-88 31.5t-96 31t-88 42t-65 72t-25 113q0 93 46.5 160t120.5 99t165 32 +q122 0 202.5 -57.5t108.5 -137.5l-107 -47q-20 61 -74 96t-137 35q-92 0 -151.5 -44.5t-59.5 -133.5q0 -47 25.5 -78.5t66.5 -49t90 -31t98.5 -31.5t90.5 -43.5t66.5 -72.5t25.5 -114q0 -126 -111.5 -225.5t-267.5 -99.5z" /> + <glyph glyph-name="uni0162" unicode="Ţ" horiz-adv-x="1247" +d="M281 1413h1108l-25 -106h-485l-301 -1307h2l-103 -121q90 -1 128 -56t20 -132q-19 -75 -84.5 -133t-155.5 -58q-65 0 -108 38t-52 91l99 37q-3 -30 15 -51t52 -21q49 0 88.5 33.5t51.5 79.5q10 47 -26.5 82t-127.5 35h-41l127 176h-23l301 1307h-485z" /> + <glyph glyph-name="uni0163" unicode="ţ" horiz-adv-x="649" +d="M424 897l-152 -653q-19 -82 4.5 -123t77.5 -41q43 0 103 24l-15 -108q-22 -9 -74 -14l-88 -103q90 -1 128 -56t20 -132q-19 -75 -84.5 -133t-155.5 -58q-65 0 -108 38t-52 91l99 37q-3 -30 15 -51t52 -21q49 0 88.5 33.5t51.5 79.5q10 47 -26.5 82t-127.5 35h-41l117 163 +q-163 37 -106 281l145 629h-156l23 102h155l50 220l159 131l-80 -351h254l-22 -102h-254z" /> + <glyph glyph-name="Tcaron" unicode="Ť" horiz-adv-x="1247" +d="M862 1495l-256 332h152l129 -192l225 192h158zM440 0l301 1307h-485l25 106h1108l-25 -106h-485l-301 -1307h-138z" /> + <glyph glyph-name="tcaron" unicode="ť" horiz-adv-x="649" +d="M598 1094l199 352h186l-299 -352h-86zM330 -20q-246 0 -180 288l145 629h-156l23 102h155l50 220l159 131l-80 -351h254l-22 -102h-254l-152 -653q-18 -85 -2 -120.5t68 -35.5q35 0 64.5 4t41.5 8l13 4l-19 -100q-49 -24 -108 -24z" /> + <glyph glyph-name="Tbar" unicode="Ŧ" horiz-adv-x="1247" +d="M1364 1307h-485l-126 -549h253l-25 -105h-253l-150 -653h-138l150 653h-244l25 105h244l126 549h-485l25 106h1108z" /> + <glyph glyph-name="tbar" unicode="ŧ" horiz-adv-x="649" +d="M678 897h-254l-81 -346h294l-25 -105h-293l-47 -202q-19 -82 4.5 -123t77.5 -41q43 0 103 24l-15 -108q-40 -16 -120 -16q-239 0 -172 288l41 178h-214l25 105h213l80 346h-156l23 102h155l50 220l159 131l-80 -351h254z" /> + <glyph glyph-name="Utilde" unicode="Ũ" horiz-adv-x="1346" +d="M1053 1571q-37 0 -66 16.5t-46.5 40t-32 47t-32.5 40t-40 16.5q-40 0 -69.5 -40.5t-43.5 -96.5h-88q26 112 77.5 176.5t123.5 64.5q42 0 73.5 -17t48.5 -41t31 -48t30.5 -41t37.5 -17q42 0 73 43.5t50 114.5h92q-58 -258 -219 -258zM561 -20q-102 0 -178 30t-120 81 +t-66 120.5t-21.5 145.5t19.5 159l206 897h136l-199 -860q-103 -447 229 -447q98 0 178 36t135.5 101t92.5 144.5t59 177.5l197 848h135l-207 -899q-25 -108 -74 -201.5t-121 -169.5t-175.5 -119.5t-225.5 -43.5z" /> + <glyph glyph-name="utilde" unicode="ũ" horiz-adv-x="1102" +d="M834 1157q-37 0 -66 16.5t-46.5 40t-32 47t-32.5 40t-40 16.5q-40 0 -69.5 -40.5t-43.5 -96.5h-88q26 112 77.5 176.5t123.5 64.5q42 0 73.5 -17t48.5 -41t31 -48t30.5 -41t37.5 -17q42 0 73 43.5t50 114.5h92q-58 -258 -219 -258zM377 -23q-91 0 -152 35t-86.5 94 +t-30 138.5t18.5 167.5l135 587h125l-139 -610q-11 -46 -15.5 -86t-0.5 -82.5t19 -72.5t48 -49t82 -19q131 0 253.5 107t153.5 239l132 573h122l-229 -999h-123l43 176q-47 -74 -146 -136.5t-210 -62.5z" /> + <glyph glyph-name="Umacron" unicode="Ū" horiz-adv-x="1346" +d="M666 1606l28 121h537l-29 -121h-536zM561 -20q-102 0 -178 30t-120 81t-66 120.5t-21.5 145.5t19.5 159l206 897h136l-199 -860q-103 -447 229 -447q98 0 178 36t135.5 101t92.5 144.5t59 177.5l197 848h135l-207 -899q-25 -108 -74 -201.5t-121 -169.5t-175.5 -119.5 +t-225.5 -43.5z" /> + <glyph glyph-name="umacron" unicode="ū" horiz-adv-x="1102" +d="M447 1192l28 121h537l-29 -121h-536zM377 -23q-91 0 -152 35t-86.5 94t-30 138.5t18.5 167.5l135 587h125l-139 -610q-11 -46 -15.5 -86t-0.5 -82.5t19 -72.5t48 -49t82 -19q131 0 253.5 107t153.5 239l132 573h122l-229 -999h-123l43 176q-47 -74 -146 -136.5 +t-210 -62.5z" /> + <glyph glyph-name="Uring" unicode="Ů" horiz-adv-x="1346" +d="M916 1495q-88 0 -134 61t-26 148q19 78 84.5 131.5t143.5 53.5q85 0 133 -61.5t26 -147.5q-16 -77 -83 -131t-144 -54zM924 1592q45 0 83.5 32.5t45.5 79.5q5 37 -17 61.5t-61 24.5q-49 0 -83.5 -30.5t-41.5 -79.5q-6 -40 15 -64t59 -24zM561 -20q-102 0 -178 30t-120 81 +t-66 120.5t-21.5 145.5t19.5 159l206 897h136l-199 -860q-103 -447 229 -447q98 0 178 36t135.5 101t92.5 144.5t59 177.5l197 848h135l-207 -899q-25 -108 -74 -201.5t-121 -169.5t-175.5 -119.5t-225.5 -43.5z" /> + <glyph glyph-name="uring" unicode="ů" horiz-adv-x="1102" +d="M697 1081q-88 0 -134 61t-26 148q19 78 84.5 131.5t143.5 53.5q85 0 133 -61.5t26 -147.5q-16 -77 -83 -131t-144 -54zM705 1178q45 0 83.5 32.5t45.5 79.5q5 37 -17 61.5t-61 24.5q-49 0 -83.5 -30.5t-41.5 -79.5q-6 -40 15 -64t59 -24zM377 -23q-91 0 -152 35t-86.5 94 +t-30 138.5t18.5 167.5l135 587h125l-139 -610q-11 -46 -15.5 -86t-0.5 -82.5t19 -72.5t48 -49t82 -19q131 0 253.5 107t153.5 239l132 573h122l-229 -999h-123l43 176q-47 -74 -146 -136.5t-210 -62.5z" /> + <glyph glyph-name="Uhungarumlaut" unicode="Ű" horiz-adv-x="1346" +d="M664 1542l281 285h184l-338 -285h-127zM990 1542l280 285h181l-334 -285h-127zM561 -20q-102 0 -178 30t-120 81t-66 120.5t-21.5 145.5t19.5 159l206 897h136l-199 -860q-103 -447 229 -447q98 0 178 36t135.5 101t92.5 144.5t59 177.5l197 848h135l-207 -899 +q-25 -108 -74 -201.5t-121 -169.5t-175.5 -119.5t-225.5 -43.5z" /> + <glyph glyph-name="uhungarumlaut" unicode="ű" horiz-adv-x="1102" +d="M445 1128l281 285h184l-338 -285h-127zM771 1128l280 285h181l-334 -285h-127zM377 -23q-91 0 -152 35t-86.5 94t-30 138.5t18.5 167.5l135 587h125l-139 -610q-11 -46 -15.5 -86t-0.5 -82.5t19 -72.5t48 -49t82 -19q131 0 253.5 107t153.5 239l132 573h122l-229 -999 +h-123l43 176q-47 -74 -146 -136.5t-210 -62.5z" /> + <glyph glyph-name="Uogonek" unicode="Ų" horiz-adv-x="1346" +d="M1229 1413h135l-207 -899q-44 -189 -158 -330t-289 -186q-33 -14 -65.5 -32.5t-73.5 -47.5t-70.5 -68.5t-39.5 -83.5q-10 -46 6 -73t49 -27q87 0 150 70l78 -68q-48 -53 -99.5 -80t-119.5 -27q-91 0 -137 60t-25 158q31 127 185 201q-99 2 -172.5 33t-116 82t-63.5 120 +t-20.5 144t19.5 157l206 897h136l-199 -860q-103 -447 229 -447q98 0 178 36t135.5 101t92.5 144.5t59 177.5z" /> + <glyph glyph-name="uogonek" unicode="ų" horiz-adv-x="1102" +d="M1042 999l-229 -999h-6l-13 -5q-13 -5 -36 -15.5t-50 -25t-56.5 -35.5t-55 -45t-45 -55.5t-27.5 -64.5q-10 -46 6 -73t49 -27q87 0 150 70l78 -68q-48 -53 -99.5 -80t-119.5 -27q-91 0 -137 60t-25 158q12 49 43 90.5t72 69t77.5 45t74.5 28.5h-3l43 176 +q-47 -74 -146 -136.5t-210 -62.5q-91 0 -152 35t-86.5 94t-30 138.5t18.5 167.5l135 587h125l-139 -610q-11 -46 -15.5 -86t-0.5 -82.5t19 -72.5t48 -49t82 -19q131 0 253.5 107t153.5 239l132 573h122z" /> + <glyph glyph-name="Wcircumflex" unicode="Ŵ" horiz-adv-x="1966" +d="M879 1481l413 356l250 -356h-149l-129 196l-226 -196h-159zM360 0l-63 1413h133l51 -1263l635 1181h111l88 -1181l635 1263h141l-719 -1413h-155l-87 1112l-614 -1112h-156z" /> + <glyph glyph-name="wcircumflex" unicode="ŵ" horiz-adv-x="1407" +d="M508 1098l413 356l250 -356h-149l-129 196l-226 -196h-159zM215 0l-41 999h131l17 -845l436 845h119l43 -843l407 843h135l-504 -999h-127l-43 850l-446 -850h-127z" /> + <glyph glyph-name="Ycircumflex" unicode="Ŷ" horiz-adv-x="1315" +d="M555 1512l413 356l250 -356h-149l-129 196l-226 -196h-159zM477 0l129 553l-330 860h152l268 -719l607 719h157l-725 -860l-129 -553h-129z" /> + <glyph glyph-name="ycircumflex" unicode="ŷ" horiz-adv-x="961" +d="M277 1098l413 356l250 -356h-149l-129 196l-226 -196h-159zM41 -430l270 430l-151 999h137l104 -847l490 847h139l-856 -1429h-133z" /> + <glyph glyph-name="Ydieresis" unicode="Ÿ" horiz-adv-x="1315" +d="M672 1643l43 184h160l-43 -184h-160zM1004 1643l43 184h159l-43 -184h-159zM477 0l129 553l-330 860h152l268 -719l607 719h157l-725 -860l-129 -553h-129z" /> + <glyph glyph-name="Zacute" unicode="Ź" horiz-adv-x="1278" +d="M788 1538l283 289h180l-336 -289h-127zM-18 0l22 111l1186 1189h-864l26 113h1030l-24 -117l-1180 -1173h907l-28 -123h-1075z" /> + <glyph glyph-name="zacute" unicode="ź" horiz-adv-x="915" +d="M964 1413l-336 -289h-127l283 289h180zM193 897l22 102h733l-22 -110l-791 -780h608l-24 -109h-762l20 100l805 797h-589z" /> + <glyph glyph-name="Zdotaccent" unicode="Ż" horiz-adv-x="1278" +d="M827 1643l43 184h152l-43 -184h-152zM-18 0l22 111l1186 1189h-864l26 113h1030l-24 -117l-1180 -1173h907l-28 -123h-1075z" /> + <glyph glyph-name="zdotaccent" unicode="ż" horiz-adv-x="915" +d="M735 1413l-43 -184h-152l43 184h152zM948 999l-22 -110l-791 -780h608l-24 -109h-762l20 100l805 797h-589l22 102h733z" /> + <glyph glyph-name="Zcaron" unicode="Ž" horiz-adv-x="1278" +d="M874 1495l-256 332h152l129 -192l225 192h158zM-18 0l22 111l1186 1189h-864l26 113h1030l-24 -117l-1180 -1173h907l-28 -123h-1075z" /> + <glyph glyph-name="zcaron" unicode="ž" horiz-adv-x="915" +d="M995 1413l-408 -332l-256 332h152l129 -192l225 192h158zM193 897l22 102h733l-22 -110l-791 -780h608l-24 -109h-762l20 100l805 797h-589z" /> + <glyph glyph-name="florin" unicode="ƒ" horiz-adv-x="1049" +d="M-86 -457l16 117q344 0 420 332l205 893h-178l26 114h179l41 177q29 122 117.5 198t193.5 76q49 0 96.5 -19t79.5 -53l-88 -82q-34 37 -94 37q-62 0 -117.5 -46t-73.5 -124l-39 -164h306l-27 -114h-305l-209 -905q-50 -214 -196 -325.5t-353 -111.5z" /> + <glyph glyph-name="uni01C3" unicode="ǃ" horiz-adv-x="483" +d="M164 367l219 1069h152l-277 -1069h-94zM39 0l39 174h176l-39 -174h-176z" /> + <glyph glyph-name="uni01C4" unicode="DŽ" horiz-adv-x="2663" +d="M2259 1495l-256 332h152l129 -192l225 192h158zM104 0l326 1413h342q341 0 483.5 -188.5t61.5 -540.5q-77 -330 -300.5 -507t-561.5 -177h-351zM1367 0l22 111l1186 1189h-864l26 113h1030l-24 -117l-1180 -1173h907l-28 -123h-1075zM268 123h181q127 0 243.5 37t216 109 +t173.5 187.5t108 262.5q64 277 -46.5 426t-391.5 149h-213z" /> + <glyph glyph-name="uni01C5" unicode="Dž" horiz-adv-x="2320" +d="M772 1413q341 0 483.5 -188.5t61.5 -540.5q-77 -330 -300.5 -507t-561.5 -177h-351l326 1413h342zM2400 1413l-408 -332l-256 332h152l129 -192l225 192h158zM1190 719q64 277 -46.5 426t-391.5 149h-213l-271 -1171h181q127 0 243.5 37t216 109t173.5 187.5t108 262.5z +M1598 897l22 102h733l-22 -110l-791 -780h608l-24 -109h-762l20 100l805 797h-589z" /> + <glyph glyph-name="uni01C6" unicode="dž" horiz-adv-x="2033" +d="M1028 1413h125l-326 -1413h-125l29 134q-145 -154 -342 -154q-94 0 -162 42t-101 114t-40 169t20 207q33 143 103.5 257t174 182.5t222.5 68.5q214 0 289 -170zM2113 1413l-408 -332l-256 332h152l129 -192l225 192h158zM1311 897l22 102h733l-22 -110l-791 -780h608 +l-24 -109h-762l20 100l805 797h-589zM829 512q19 80 19 148t-20 123.5t-69 87.5t-124 32q-152 0 -257.5 -119.5t-146.5 -296.5q-21 -77 -19 -148t22 -125.5t69 -87t123 -32.5q105 0 190 60t136 151.5t77 206.5z" /> + <glyph glyph-name="uni01C7" unicode="LJ" horiz-adv-x="2185" +d="M104 0l326 1413h135l-299 -1292h604l-26 -121h-740zM1458 -20q-125 0 -207 56.5t-111 148t-12 206.5l131 6q-12 -56 -4.5 -110t27.5 -96.5t66.5 -68.5t113.5 -26q89 0 157 31t112 88.5t71.5 121.5t46.5 148l189 815h-533l27 113h667l-213 -919q-56 -249 -184 -381.5 +t-344 -132.5z" /> + <glyph glyph-name="uni01C8" unicode="Lj" horiz-adv-x="1511" +d="M1364 1239l43 180h153l-43 -180h-153zM104 0l326 1413h135l-299 -1292h604l-26 -121h-740zM885 -438q-64 0 -146 32l35 84q47 -14 113 -14q67 0 108 45.5t55 106.5l273 1183h129l-270 -1173q-61 -264 -297 -264z" /> + <glyph glyph-name="uni01C9" unicode="lj" horiz-adv-x="985" +d="M838 1239l43 180h153l-43 -180h-153zM213 -20q-120 0 -128 90q-4 38 19 139l279 1204h127l-293 -1266q-14 -65 39 -65q20 0 90 18l-12 -102q-52 -18 -121 -18zM359 -438q-64 0 -146 32l35 84q47 -14 113 -14q67 0 108 45.5t55 106.5l273 1183h129l-270 -1173 +q-61 -264 -297 -264z" /> + <glyph glyph-name="uni01CA" unicode="NJ" horiz-adv-x="2523" +d="M104 0l326 1413h213l324 -1288l299 1288h135l-326 -1413h-217l-317 1290l-299 -1290h-138zM1796 -20q-125 0 -207 56.5t-111 148t-12 206.5l131 6q-12 -56 -4.5 -110t27.5 -96.5t66.5 -68.5t113.5 -26q89 0 157 31t112 88.5t71.5 121.5t46.5 148l189 815h-533l27 113h667 +l-213 -919q-56 -249 -184 -381.5t-344 -132.5z" /> + <glyph glyph-name="uni01CB" unicode="Nj" horiz-adv-x="1890" +d="M1743 1239l43 180h153l-43 -180h-153zM104 0l326 1413h213l324 -1288l299 1288h135l-326 -1413h-217l-317 1290l-299 -1290h-138zM1264 -438q-64 0 -146 32l35 84q47 -14 113 -14q67 0 108 45.5t55 106.5l273 1183h129l-270 -1173q-61 -264 -297 -264z" /> + <glyph glyph-name="uni01CC" unicode="nj" horiz-adv-x="1587" +d="M1440 1239l43 180h153l-43 -180h-153zM59 0l230 999h125l-39 -161q64 80 159.5 129t192.5 49q91 0 152.5 -33t87.5 -89.5t31 -132t-17 -159.5l-139 -602h-125l139 604q65 291 -147 291q-129 0 -246.5 -99t-147.5 -229l-131 -567h-125zM961 -438q-64 0 -146 32l35 84 +q47 -14 113 -14q67 0 108 45.5t55 106.5l273 1183h129l-270 -1173q-61 -264 -297 -264z" /> + <glyph glyph-name="uni01CD" unicode="Ǎ" horiz-adv-x="1296" +d="M884 1495l-256 332h152l129 -192l225 192h158zM-39 0l848 1413h104l193 -1413h-141l-37 307h-639l-178 -307h-150zM362 434h549l-90 780z" /> + <glyph glyph-name="uni01CE" unicode="ǎ" horiz-adv-x="1118" +d="M1116 1413l-408 -332l-256 332h152l129 -192l225 192h158zM895 850l37 149h125l-230 -999h-125l29 134q-145 -154 -342 -154q-94 0 -162 42t-101 114t-40 169t20 207q33 143 103.5 257t174 182.5t222.5 68.5q214 0 289 -170zM829 512q19 80 19 148t-20 123.5t-69 87.5 +t-124 32q-152 0 -257.5 -119.5t-146.5 -296.5q-21 -77 -19 -148t22 -125.5t69 -87t123 -32.5q105 0 190 60t136 151.5t77 206.5z" /> + <glyph glyph-name="uni01CF" unicode="Ǐ" horiz-adv-x="573" +d="M518 1495l-256 332h152l129 -192l225 192h158zM104 0l326 1413h135l-325 -1413h-136z" /> + <glyph glyph-name="uni01D0" unicode="ǐ" horiz-adv-x="477" +d="M376 1081l-256 332h152l129 -192l225 192h158zM59 0l230 999h129l-230 -999h-129z" /> + <glyph glyph-name="uni01D1" unicode="Ǒ" horiz-adv-x="1511" +d="M987 1495l-256 332h152l129 -192l225 192h158zM645 -20q-125 0 -220 38.5t-153 106.5t-87.5 161t-29 202.5t28.5 230.5q34 148 101 275.5t163 226.5t228 156t282 57q126 0 222.5 -38.5t154.5 -106.5t88 -161.5t29 -203t-29 -230.5q-27 -118 -75 -223t-118 -195.5 +t-156 -156t-196.5 -102.5t-232.5 -37zM651 106q105 0 199 33.5t166 90.5t130.5 136t97 167t61.5 186q21 94 23.5 178.5t-18 160t-64 130.5t-119 87t-177.5 32q-127 0 -237.5 -50.5t-190 -137.5t-134 -194.5t-83.5 -230.5q-21 -94 -23.5 -178.5t17.5 -160t62.5 -130.5 +t116 -87t173.5 -32z" /> + <glyph glyph-name="uni01D2" unicode="ǒ" horiz-adv-x="1116" +d="M694 1081l-256 332h152l129 -192l225 192h158zM449 -20q-83 0 -151.5 27t-114 75t-73.5 114.5t-30 145t16 166.5q32 139 114 253.5t202 182.5t252 68q136 0 229 -71.5t125.5 -192t-0.5 -265.5q-32 -138 -115.5 -253t-203.5 -182.5t-250 -67.5zM453 92q86 0 159 34.5 +t125 93.5t87.5 131.5t54.5 156.5q15 63 17.5 119t-9 106.5t-38 86.5t-75 57.5t-115.5 21.5q-84 0 -156.5 -34.5t-124.5 -93.5t-87.5 -132t-54.5 -156q-21 -76 -18 -146.5t24 -125t75 -87t136 -32.5z" /> + <glyph glyph-name="uni01D3" unicode="Ǔ" horiz-adv-x="1346" +d="M909 1495l-256 332h152l129 -192l225 192h158zM561 -20q-102 0 -178 30t-120 81t-66 120.5t-21.5 145.5t19.5 159l206 897h136l-199 -860q-103 -447 229 -447q98 0 178 36t135.5 101t92.5 144.5t59 177.5l197 848h135l-207 -899q-25 -108 -74 -201.5t-121 -169.5 +t-175.5 -119.5t-225.5 -43.5z" /> + <glyph glyph-name="uni01D4" unicode="ǔ" horiz-adv-x="1102" +d="M690 1081l-256 332h152l129 -192l225 192h158zM377 -23q-91 0 -152 35t-86.5 94t-30 138.5t18.5 167.5l135 587h125l-139 -610q-11 -46 -15.5 -86t-0.5 -82.5t19 -72.5t48 -49t82 -19q131 0 253.5 107t153.5 239l132 573h122l-229 -999h-123l43 176q-47 -74 -146 -136.5 +t-210 -62.5z" /> + <glyph glyph-name="uni01D5" unicode="Ǖ" horiz-adv-x="1346" +d="M763 2020l28 121h537l-29 -121h-536zM693 1643l43 184h160l-43 -184h-160zM1025 1643l43 184h159l-43 -184h-159zM561 -20q-102 0 -178 30t-120 81t-66 120.5t-21.5 145.5t19.5 159l206 897h136l-199 -860q-103 -447 229 -447q98 0 178 36t135.5 101t92.5 144.5t59 177.5 +l197 848h135l-207 -899q-25 -108 -74 -201.5t-121 -169.5t-175.5 -119.5t-225.5 -43.5z" /> + <glyph glyph-name="uni01D6" unicode="ǖ" horiz-adv-x="1102" +d="M544 1606l28 121h537l-29 -121h-536zM474 1229l43 184h160l-43 -184h-160zM806 1229l43 184h159l-43 -184h-159zM377 -23q-91 0 -152 35t-86.5 94t-30 138.5t18.5 167.5l135 587h125l-139 -610q-11 -46 -15.5 -86t-0.5 -82.5t19 -72.5t48 -49t82 -19q131 0 253.5 107 +t153.5 239l132 573h122l-229 -999h-123l43 176q-47 -74 -146 -136.5t-210 -62.5z" /> + <glyph glyph-name="uni01D7" unicode="Ǘ" horiz-adv-x="1346" +d="M920 1952l283 289h180l-336 -289h-127zM693 1643l43 184h160l-43 -184h-160zM1025 1643l43 184h159l-43 -184h-159zM561 -20q-102 0 -178 30t-120 81t-66 120.5t-21.5 145.5t19.5 159l206 897h136l-199 -860q-103 -447 229 -447q98 0 178 36t135.5 101t92.5 144.5 +t59 177.5l197 848h135l-207 -899q-25 -108 -74 -201.5t-121 -169.5t-175.5 -119.5t-225.5 -43.5z" /> + <glyph glyph-name="uni01D8" unicode="ǘ" horiz-adv-x="1102" +d="M701 1538l283 289h180l-336 -289h-127zM474 1229l43 184h160l-43 -184h-160zM806 1229l43 184h159l-43 -184h-159zM377 -23q-91 0 -152 35t-86.5 94t-30 138.5t18.5 167.5l135 587h125l-139 -610q-11 -46 -15.5 -86t-0.5 -82.5t19 -72.5t48 -49t82 -19q131 0 253.5 107 +t153.5 239l132 573h122l-229 -999h-123l43 176q-47 -74 -146 -136.5t-210 -62.5z" /> + <glyph glyph-name="uni01D9" unicode="Ǚ" horiz-adv-x="1346" +d="M1006 1909l-256 332h152l129 -192l225 192h158zM693 1643l43 184h160l-43 -184h-160zM1025 1643l43 184h159l-43 -184h-159zM561 -20q-102 0 -178 30t-120 81t-66 120.5t-21.5 145.5t19.5 159l206 897h136l-199 -860q-103 -447 229 -447q98 0 178 36t135.5 101 +t92.5 144.5t59 177.5l197 848h135l-207 -899q-25 -108 -74 -201.5t-121 -169.5t-175.5 -119.5t-225.5 -43.5z" /> + <glyph glyph-name="uni01DA" unicode="ǚ" horiz-adv-x="1102" +d="M787 1495l-256 332h152l129 -192l225 192h158zM474 1229l43 184h160l-43 -184h-160zM806 1229l43 184h159l-43 -184h-159zM377 -23q-91 0 -152 35t-86.5 94t-30 138.5t18.5 167.5l135 587h125l-139 -610q-11 -46 -15.5 -86t-0.5 -82.5t19 -72.5t48 -49t82 -19 +q131 0 253.5 107t153.5 239l132 573h122l-229 -999h-123l43 176q-47 -74 -146 -136.5t-210 -62.5z" /> + <glyph glyph-name="uni01DB" unicode="Ǜ" horiz-adv-x="1346" +d="M943 1954l-180 287h172l149 -287h-141zM693 1643l43 184h160l-43 -184h-160zM1025 1643l43 184h159l-43 -184h-159zM561 -20q-102 0 -178 30t-120 81t-66 120.5t-21.5 145.5t19.5 159l206 897h136l-199 -860q-103 -447 229 -447q98 0 178 36t135.5 101t92.5 144.5 +t59 177.5l197 848h135l-207 -899q-25 -108 -74 -201.5t-121 -169.5t-175.5 -119.5t-225.5 -43.5z" /> + <glyph glyph-name="uni01DC" unicode="ǜ" horiz-adv-x="1102" +d="M724 1540l-180 287h172l149 -287h-141zM474 1229l43 184h160l-43 -184h-160zM806 1229l43 184h159l-43 -184h-159zM377 -23q-91 0 -152 35t-86.5 94t-30 138.5t18.5 167.5l135 587h125l-139 -610q-11 -46 -15.5 -86t-0.5 -82.5t19 -72.5t48 -49t82 -19q131 0 253.5 107 +t153.5 239l132 573h122l-229 -999h-123l43 176q-47 -74 -146 -136.5t-210 -62.5z" /> + <glyph glyph-name="uni01DD" unicode="ǝ" horiz-adv-x="1022" +d="M397 -12q-94 0 -160.5 29.5t-102.5 79t-50 120t-8.5 148t26.5 167.5q2 7 7 17h698q38 165 -20.5 260.5t-192.5 95.5q-96 0 -173.5 -26t-150.5 -88l-75 73q97 81 190.5 114.5t206.5 33.5q89 0 157.5 -27t109.5 -74.5t64.5 -113t22 -142t-19.5 -161.5q-24 -102 -70 -192 +t-111.5 -161t-155.5 -112t-192 -41zM401 102q143 0 243.5 97t135.5 239l-585 -12q-37 -147 14 -235.5t192 -88.5z" /> + <glyph glyph-name="uni01E3" unicode="ǣ" horiz-adv-x="1688" +d="M748 1208l24 111h526l-24 -111h-526zM305 -20q-134 0 -207.5 85t-42.5 220q33 145 140.5 213.5t273.5 68.5l330 6q81 345 -178 345q-90 0 -173.5 -46t-142.5 -112l-90 71q92 95 191.5 140t222.5 45q128 0 200.5 -52t88.5 -145q132 193 362 193q97 0 165.5 -29.5t105 -79 +t50.5 -120.5t8.5 -148t-26.5 -168l-1 -5q-1 -6 -1 -11h-700q-39 -165 19.5 -261t193.5 -96q96 0 172.5 26.5t152.5 90.5l74 -76q-95 -80 -190 -113.5t-209 -33.5q-165 0 -246 84.5t-86 224.5q-172 -317 -457 -317zM907 561l586 12q38 155 -17 239.5t-192 84.5 +q-142 0 -242 -97t-135 -239zM346 90q141 0 267.5 111t160.5 262l-305 -6q-98 0 -179 -53.5t-102 -145.5q-15 -69 38.5 -118.5t119.5 -49.5z" /> + <glyph glyph-name="uni01EB" unicode="ǫ" horiz-adv-x="1116" +d="M664 1012q136 0 229 -71.5t125.5 -192t-0.5 -265.5q-45 -194 -187 -335t-321 -164q-34 -15 -65.5 -33.5t-71.5 -47.5t-68.5 -67.5t-38.5 -81.5q-10 -46 6 -73t49 -27q87 0 150 70l78 -68q-48 -53 -99.5 -80t-119.5 -27q-91 0 -137 60t-25 158q20 79 81.5 132.5 +t139.5 84.5q-179 23 -259.5 171t-33.5 353q32 139 114 253.5t202 182.5t252 68zM879 508q15 63 17.5 119t-9 106.5t-38 86.5t-75 57.5t-115.5 21.5q-84 0 -156.5 -34.5t-124.5 -93.5t-87.5 -132t-54.5 -156q-21 -76 -18 -146.5t24 -125t75 -87t136 -32.5q86 0 159 34.5 +t125 93.5t87.5 131.5t54.5 156.5z" /> + <glyph glyph-name="uni01F1" unicode="DZ" horiz-adv-x="2663" +d="M104 0l326 1413h342q341 0 483.5 -188.5t61.5 -540.5q-77 -330 -300.5 -507t-561.5 -177h-351zM1367 0l22 111l1186 1189h-864l26 113h1030l-24 -117l-1180 -1173h907l-28 -123h-1075zM268 123h181q127 0 243.5 37t216 109t173.5 187.5t108 262.5q64 277 -46.5 426 +t-391.5 149h-213z" /> + <glyph glyph-name="uni01F2" unicode="Dz" horiz-adv-x="2320" +d="M772 1413q341 0 483.5 -188.5t61.5 -540.5q-77 -330 -300.5 -507t-561.5 -177h-351l326 1413h342zM1190 719q64 277 -46.5 426t-391.5 149h-213l-271 -1171h181q127 0 243.5 37t216 109t173.5 187.5t108 262.5zM2353 999l-22 -110l-791 -780h608l-24 -109h-762l20 100 +l805 797h-589l22 102h733z" /> + <glyph glyph-name="uni01F3" unicode="dz" horiz-adv-x="2033" +d="M1028 1413h125l-326 -1413h-125l29 134q-145 -154 -342 -154q-94 0 -162 42t-101 114t-40 169t20 207q33 143 103.5 257t174 182.5t222.5 68.5q214 0 289 -170zM2066 999l-22 -110l-791 -780h608l-24 -109h-762l20 100l805 797h-589l22 102h733zM829 512q19 80 19 148 +t-20 123.5t-69 87.5t-124 32q-152 0 -257.5 -119.5t-146.5 -296.5q-21 -77 -19 -148t22 -125.5t69 -87t123 -32.5q105 0 190 60t136 151.5t77 206.5z" /> + <glyph glyph-name="Scommaaccent" unicode="Ș" horiz-adv-x="1106" +d="M475 -16q-176 0 -296 99t-120 275l129 27q0 -133 74 -207t217 -74q163 0 263 88.5t100 215.5q0 51 -18 92t-48.5 70.5t-70.5 54.5t-83.5 46.5t-87.5 43.5t-84 50t-70.5 61.5t-48.5 81.5t-18 106q0 112 61 208.5t166 154t228 57.5q122 0 209.5 -57.5t124.5 -162.5 +l-105 -55q-22 77 -86 118.5t-147 41.5q-125 0 -222.5 -82.5t-97.5 -200.5q0 -53 22.5 -96t60 -70.5t85 -55t97 -49t97 -52.5t85 -66t60 -90t22.5 -123q0 -186 -144.5 -318t-353.5 -132zM105 -442l196 329h205l-299 -329h-102z" /> + <glyph glyph-name="scommaaccent" unicode="ș" horiz-adv-x="864" +d="M358 -20q-135 0 -227.5 73.5t-105.5 171.5l118 47q7 -79 73.5 -127.5t156.5 -48.5q104 0 171.5 61.5t67.5 145.5q0 48 -25 80.5t-65 50t-88 31.5t-96 31t-88 42t-65 72t-25 113q0 93 46.5 160t120.5 99t165 32q122 0 202.5 -57.5t108.5 -137.5l-107 -47q-20 61 -74 96 +t-137 35q-92 0 -151.5 -44.5t-59.5 -133.5q0 -47 25.5 -78.5t66.5 -49t90 -31t98.5 -31.5t90.5 -43.5t66.5 -72.5t25.5 -114q0 -126 -111.5 -225.5t-267.5 -99.5zM21 -442l196 329h205l-299 -329h-102z" /> + <glyph glyph-name="uni021A" unicode="Ț" horiz-adv-x="1247" +d="M440 0l301 1307h-485l25 106h1108l-25 -106h-485l-301 -1307h-138zM187 -442l196 329h205l-299 -329h-102z" /> + <glyph glyph-name="uni021B" unicode="ț" horiz-adv-x="649" +d="M322 -20q-239 0 -172 288l145 629h-156l23 102h155l50 220l159 131l-80 -351h254l-22 -102h-254l-152 -653q-19 -82 4.5 -123t77.5 -41q43 0 103 24l-15 -108q-40 -16 -120 -16zM-10 -442l196 329h205l-299 -329h-102z" /> + <glyph glyph-name="uni0237" unicode="ȷ" horiz-adv-x="496" +d="M-133 -438q-70 0 -150 32l45 111q47 -14 105 -14q67 0 106 43t52 104l268 1161h143l-268 -1165q-65 -272 -301 -272z" /> + <glyph glyph-name="uni0250" unicode="ɐ" horiz-adv-x="1044" +d="M436 -20q-180 0 -255.5 109.5t-33.5 295.5l142 610h106l-41 -180q93 105 189 153t219 48q132 0 205 -85t41 -218q-33 -145 -140 -215t-272 -70l-332 -6q-37 -166 2.5 -248t182.5 -82q90 0 174.5 43t144.5 107l78 -80q-89 -95 -187 -138.5t-223 -43.5zM291 532l305 7 +q101 0 183 52t104 146q19 89 -28.5 125.5t-135.5 36.5q-145 0 -270.5 -113t-157.5 -254z" /> + <glyph glyph-name="uni0254" unicode="ɔ" horiz-adv-x="961" +d="M338 -20q-134 0 -218.5 69t-111.5 191l127 41q3 -92 58 -145.5t145 -53.5q80 0 149.5 38.5t118.5 103t82 136.5t51 150q17 74 18.5 141.5t-15 128t-65 97t-124.5 36.5q-98 0 -185 -58.5t-132 -152.5l-97 62q72 124 178 188t236 64q84 0 148.5 -28t103.5 -77.5t59 -116.5 +t19 -145t-21 -164q-32 -137 -100.5 -249t-179.5 -184t-244 -72z" /> + <glyph glyph-name="uni0258" unicode="ɘ" horiz-adv-x="1022" +d="M379 -12q-119 0 -201 36.5t-143 118.5l92 60q43 -62 105 -85.5t153 -23.5q143 0 253.5 101.5t147.5 267.5h-698q1 3 1.5 12t2.5 17q121 520 518 520q86 0 151.5 -28.5t105 -77.5t59.5 -116.5t19 -145.5t-21 -163q-24 -102 -71 -190.5t-115 -156.5t-160.5 -107t-198.5 -39 +zM225 561l586 12q17 66 11.5 125t-27 103.5t-70.5 70t-119 25.5q-147 0 -248 -94t-133 -242z" /> + <glyph glyph-name="uni0259" unicode="ə" horiz-adv-x="1022" +d="M397 -12q-94 0 -160.5 29.5t-102.5 79t-50 120t-8.5 148t26.5 167.5q2 7 7 17h698q38 165 -20.5 260.5t-192.5 95.5q-96 0 -173.5 -26t-150.5 -88l-75 73q97 81 190.5 114.5t206.5 33.5q89 0 157.5 -27t109.5 -74.5t64.5 -113t22 -142t-19.5 -161.5q-24 -102 -70 -192 +t-111.5 -161t-155.5 -112t-192 -41zM401 102q143 0 243.5 97t135.5 239l-585 -12q-37 -147 14 -235.5t192 -88.5z" /> + <glyph glyph-name="uni0261" unicode="ɡ" horiz-adv-x="1120" +d="M825 -6q-46 -201 -174.5 -313.5t-322.5 -112.5q-125 0 -215 51t-129 148l108 61q58 -152 238 -152q141 0 239.5 92.5t132.5 237.5l35 135q-147 -161 -340 -161q-98 0 -168 41.5t-103 113.5t-40.5 169t20.5 208q52 222 187.5 365t320.5 143q105 0 176 -46.5t105 -125.5 +l37 151h127zM426 88q78 0 147 35.5t118.5 96t84 134.5t53.5 158q19 80 19 149t-19 126t-67.5 89.5t-122.5 32.5q-79 0 -148 -34.5t-119.5 -94.5t-86 -134t-54.5 -159q-19 -80 -18.5 -150t20.5 -126.5t69.5 -89.5t123.5 -33z" /> + <glyph glyph-name="circumflex" unicode="ˆ" horiz-adv-x="784" +d="M256 1098l413 356l250 -356h-149l-129 196l-226 -196h-159z" /> + <glyph glyph-name="caron" unicode="ˇ" horiz-adv-x="786" +d="M524 1081l-256 332h152l129 -192l225 192h158z" /> + <glyph glyph-name="uni02D0" unicode="ː" horiz-adv-x="459" +d="M254 666l-225 333l377 48zM53 -47l152 381l225 -334z" /> + <glyph glyph-name="uni02D1" unicode="ˑ" horiz-adv-x="508" +d="M279 279l-226 333l377 47z" /> + <glyph glyph-name="breve" unicode="˘" horiz-adv-x="842" +d="M578 1143q-136 0 -209 73.5t-43 196.5h123q-17 -74 21.5 -119t109.5 -45q77 0 143.5 47.5t83.5 116.5h123q-28 -130 -126 -200t-226 -70z" /> + <glyph glyph-name="dotaccent" unicode="˙" horiz-adv-x="528" +d="M352 1229l43 184h152l-43 -184h-152z" /> + <glyph glyph-name="ring" unicode="˚" horiz-adv-x="641" +d="M463 1081q-88 0 -134 61t-26 148q19 78 84.5 131.5t143.5 53.5q85 0 133 -61.5t26 -147.5q-16 -77 -83 -131t-144 -54zM471 1178q45 0 83.5 32.5t45.5 79.5q5 37 -17 61.5t-61 24.5q-49 0 -83.5 -30.5t-41.5 -79.5q-6 -40 15 -64t59 -24z" /> + <glyph glyph-name="ogonek" unicode="˛" horiz-adv-x="602" +d="M166 -451q-91 0 -137 60t-25 158q12 50 44 92.5t75 70t80 44.5t75 28l107 -2l-13 -5q-13 -5 -36 -15.5t-50 -25t-56.5 -35.5t-55 -45t-45 -55.5t-27.5 -64.5q-10 -46 6 -73t49 -27q87 0 150 70l78 -68q-48 -53 -99.5 -80t-119.5 -27z" /> + <glyph glyph-name="tilde" unicode="˜" horiz-adv-x="1010" +d="M801 1155q-37 0 -66 16.5t-46.5 40t-32 47t-32.5 40t-40 16.5q-40 0 -69.5 -40.5t-43.5 -96.5h-88q26 112 77.5 176.5t123.5 64.5q42 0 73.5 -17t48.5 -41t31 -48t30.5 -41t37.5 -17q42 0 73 43.5t50 114.5h92q-58 -258 -219 -258z" /> + <glyph glyph-name="hungarumlaut" unicode="˝" horiz-adv-x="862" +d="M219 1128l281 285h184l-338 -285h-127zM545 1128l280 285h181l-334 -285h-127z" /> + <glyph glyph-name="uni02F5" unicode="˵" horiz-adv-x="1145" +d="M494 729l-228 270h183l208 -270h-163zM883 729l-228 270h183l209 -270h-164z" /> + <glyph glyph-name="uni02F6" unicode="˶" horiz-adv-x="1079" +d="M240 729l211 270h180l-228 -270h-163zM621 729l210 270h181l-228 -270h-163z" /> + <glyph glyph-name="gravecomb" unicode="̀" +d="M-76 1126l-180 287h172l149 -287h-141z" /> + <glyph glyph-name="acutecomb" unicode="́" +d="M-318 1124l283 289h180l-336 -289h-127z" /> + <glyph glyph-name="uni0302" unicode="̂" +d="M-587 1098l413 356l250 -356h-149l-129 196l-226 -196h-159z" /> + <glyph glyph-name="tildecomb" unicode="̃" +d="M-106 1155q-37 0 -66 16.5t-46.5 40t-32 47t-32.5 40t-40 16.5q-40 0 -69.5 -40.5t-43.5 -96.5h-88q26 112 77.5 176.5t123.5 64.5q42 0 73.5 -17t48.5 -41t31 -48t30.5 -41t37.5 -17q42 0 73 43.5t50 114.5h92q-58 -258 -219 -258z" /> + <glyph glyph-name="uni0304" unicode="̄" +d="M-547 1192l28 121h537l-29 -121h-536z" /> + <glyph glyph-name="uni0306" unicode="̆" +d="M-260 1143q-136 0 -209 73.5t-43 196.5h123q-17 -74 21.5 -119t109.5 -45q77 0 143.5 47.5t83.5 116.5h123q-28 -130 -126 -200t-226 -70z" /> + <glyph glyph-name="uni0307" unicode="̇" +d="M-172 1229l43 184h152l-43 -184h-152z" /> + <glyph glyph-name="uni0308" unicode="̈" +d="M-493 1229l43 184h160l-43 -184h-160zM-161 1229l43 184h159l-43 -184h-159z" /> + <glyph glyph-name="uni030A" unicode="̊" +d="M-176 1081q-88 0 -134 61t-26 148q19 78 84.5 131.5t143.5 53.5q85 0 133 -61.5t26 -147.5q-16 -77 -83 -131t-144 -54zM-168 1178q45 0 83.5 32.5t45.5 79.5q5 37 -17 61.5t-61 24.5q-49 0 -83.5 -30.5t-41.5 -79.5q-6 -40 15 -64t59 -24z" /> + <glyph glyph-name="uni030B" unicode="̋" +d="M-641 1128l281 285h184l-338 -285h-127zM-315 1128l280 285h181l-334 -285h-127z" /> + <glyph glyph-name="uni030C" unicode="̌" +d="M-254 1081l-256 332h152l129 -192l225 192h158z" /> + <glyph glyph-name="uni030F" unicode="̏" +d="M-422 1128l-180 285h194l150 -285h-164zM-101 1128l-178 285h195l149 -285h-166z" /> + <glyph glyph-name="uni0312" unicode="̒" +d="M129 1419l-196 -294h-205l299 294h102z" /> + <glyph glyph-name="uni031B" unicode="̛" +d="M-285 999l215 414h205l-319 -414h-101z" /> + <glyph glyph-name="uni0326" unicode="̦" +d="M-618 -442l196 329h205l-299 -329h-102z" /> + <glyph glyph-name="uni0327" unicode="̧" +d="M-516 -500q-65 0 -108 38t-52 91l99 37q-3 -30 15 -51t52 -21q49 0 88.5 33.5t51.5 79.5q10 47 -26.5 82t-127.5 35h-41l127 176h117l-103 -121q90 -1 128 -56t20 -132q-19 -75 -84.5 -133t-155.5 -58z" /> + <glyph glyph-name="uni0328" unicode="̨" +d="M-493 -451q-91 0 -137 60t-25 158q12 50 44 92.5t75 70t80 44.5t75 28l107 -2l-13 -5q-13 -5 -36 -15.5t-50 -25t-56.5 -35.5t-55 -45t-45 -55.5t-27.5 -64.5q-10 -46 6 -73t49 -27q87 0 150 70l78 -68q-48 -53 -99.5 -80t-119.5 -27z" /> + <glyph glyph-name="pi" unicode="π" horiz-adv-x="991" +d="M719 -20q-91 0 -135 70.5t-25 158.5l152 653h-295l-199 -862h-137l199 862h-82l30 137h734l-31 -137h-82l-154 -665q-25 -105 45 -105q29 0 66 23l20 -109q-51 -26 -106 -26z" /> + <glyph glyph-name="uni0483" unicode="҃" +d="M-682 1540l55 238h692l33 139h100l-51 -217h-700l-37 -160h-92z" /> + <glyph glyph-name="Wgrave" unicode="Ẁ" horiz-adv-x="1966" +d="M1149 1509l-180 287h172l149 -287h-141zM360 0l-63 1413h133l51 -1263l635 1181h111l88 -1181l635 1263h141l-719 -1413h-155l-87 1112l-614 -1112h-156z" /> + <glyph glyph-name="wgrave" unicode="ẁ" horiz-adv-x="1407" +d="M778 1126l-180 287h172l149 -287h-141zM215 0l-41 999h131l17 -845l436 845h119l43 -843l407 843h135l-504 -999h-127l-43 850l-446 -850h-127z" /> + <glyph glyph-name="Wacute" unicode="Ẃ" horiz-adv-x="1966" +d="M1126 1507l283 289h180l-336 -289h-127zM360 0l-63 1413h133l51 -1263l635 1181h111l88 -1181l635 1263h141l-719 -1413h-155l-87 1112l-614 -1112h-156z" /> + <glyph glyph-name="wacute" unicode="ẃ" horiz-adv-x="1407" +d="M755 1124l283 289h180l-336 -289h-127zM215 0l-41 999h131l17 -845l436 845h119l43 -843l407 843h135l-504 -999h-127l-43 850l-446 -850h-127z" /> + <glyph glyph-name="Wdieresis" unicode="Ẅ" horiz-adv-x="1966" +d="M996 1612l43 184h160l-43 -184h-160zM1328 1612l43 184h159l-43 -184h-159zM360 0l-63 1413h133l51 -1263l635 1181h111l88 -1181l635 1263h141l-719 -1413h-155l-87 1112l-614 -1112h-156z" /> + <glyph glyph-name="wdieresis" unicode="ẅ" horiz-adv-x="1407" +d="M625 1229l43 184h160l-43 -184h-160zM957 1229l43 184h159l-43 -184h-159zM215 0l-41 999h131l17 -845l436 845h119l43 -843l407 843h135l-504 -999h-127l-43 850l-446 -850h-127z" /> + <glyph glyph-name="uni1EA4" unicode="Ấ" horiz-adv-x="1296" +d="M894 1952l283 289h180l-336 -289h-127zM551 1512l413 356l250 -356h-149l-129 196l-226 -196h-159zM-39 0l848 1413h104l193 -1413h-141l-37 307h-639l-178 -307h-150zM362 434h549l-90 780z" /> + <glyph glyph-name="uni1EA5" unicode="ấ" horiz-adv-x="1118" +d="M1181 1827l-336 -289h-127l283 289h180zM760 1294l-226 -196h-159l413 356l250 -356h-149zM895 850l37 149h125l-230 -999h-125l29 134q-145 -154 -342 -154q-94 0 -162 42t-101 114t-40 169t20 207q33 143 103.5 257t174 182.5t222.5 68.5q214 0 289 -170zM829 512 +q19 80 19 148t-20 123.5t-69 87.5t-124 32q-152 0 -257.5 -119.5t-146.5 -296.5q-21 -77 -19 -148t22 -125.5t69 -87t123 -32.5q105 0 190 60t136 151.5t77 206.5z" /> + <glyph glyph-name="uni1EA6" unicode="Ầ" horiz-adv-x="1296" +d="M917 1954l-180 287h172l149 -287h-141zM551 1512l413 356l250 -356h-149l-129 196l-226 -196h-159zM-39 0l848 1413h104l193 -1413h-141l-37 307h-639l-178 -307h-150zM362 434h549l-90 780z" /> + <glyph glyph-name="uni1EA7" unicode="ầ" horiz-adv-x="1118" +d="M882 1540h-141l-180 287h172zM760 1294l-226 -196h-159l413 356l250 -356h-149zM932 999h125l-230 -999h-125l29 134q-145 -154 -342 -154q-94 0 -162 42t-101 114t-40 169t20 207q33 143 103.5 257t174 182.5t222.5 68.5q214 0 289 -170zM829 512q19 80 19 148 +t-20 123.5t-69 87.5t-124 32q-152 0 -257.5 -119.5t-146.5 -296.5q-21 -77 -19 -148t22 -125.5t69 -87t123 -32.5q105 0 190 60t136 151.5t77 206.5z" /> + <glyph glyph-name="uni1EAA" unicode="Ẫ" horiz-adv-x="1296" +d="M1124 1985q-37 0 -66 16.5t-46.5 40t-32 47t-32.5 40t-40 16.5q-40 0 -69.5 -40.5t-43.5 -96.5h-88q26 112 77.5 176.5t123.5 64.5q42 0 73.5 -17t48.5 -41t31 -48t30.5 -41t37.5 -17q42 0 73 43.5t50 114.5h92q-58 -258 -219 -258zM551 1512l413 356l250 -356h-149 +l-129 196l-226 -196h-159zM-39 0l848 1413h104l193 -1413h-141l-37 307h-639l-178 -307h-150zM362 434h549l-90 780z" /> + <glyph glyph-name="uni1EAB" unicode="ẫ" horiz-adv-x="1118" +d="M1075 1829h92q-58 -258 -219 -258q-37 0 -66 16.5t-46.5 40t-32 47t-32.5 40t-40 16.5q-40 0 -69.5 -40.5t-43.5 -96.5h-88q26 112 77.5 176.5t123.5 64.5q42 0 73.5 -17t48.5 -41t31 -48t30.5 -41t37.5 -17q42 0 73 43.5t50 114.5zM889 1098l-129 196l-226 -196h-159 +l413 356l250 -356h-149zM895 850l37 149h125l-230 -999h-125l29 134q-145 -154 -342 -154q-94 0 -162 42t-101 114t-40 169t20 207q33 143 103.5 257t174 182.5t222.5 68.5q214 0 289 -170zM829 512q19 80 19 148t-20 123.5t-69 87.5t-124 32q-152 0 -257.5 -119.5 +t-146.5 -296.5q-21 -77 -19 -148t22 -125.5t69 -87t123 -32.5q105 0 190 60t136 151.5t77 206.5z" /> + <glyph glyph-name="uni1EAE" unicode="Ắ" horiz-adv-x="1296" +d="M894 1952l283 289h180l-336 -289h-127zM907 1557q-136 0 -209 73.5t-43 196.5h123q-17 -74 21.5 -119t109.5 -45q77 0 143.5 47.5t83.5 116.5h123q-28 -130 -126 -200t-226 -70zM-39 0l848 1413h104l193 -1413h-141l-37 307h-639l-178 -307h-150zM362 434h549l-90 780z +" /> + <glyph glyph-name="uni1EAF" unicode="ắ" horiz-adv-x="1118" +d="M1181 1827l-336 -289h-127l283 289h180zM733 1249q77 0 143.5 47.5t83.5 116.5h123q-28 -130 -126 -200t-226 -70q-136 0 -209 73.5t-43 196.5h123q-17 -74 21.5 -119t109.5 -45zM895 850l37 149h125l-230 -999h-125l29 134q-145 -154 -342 -154q-94 0 -162 42t-101 114 +t-40 169t20 207q33 143 103.5 257t174 182.5t222.5 68.5q214 0 289 -170zM829 512q19 80 19 148t-20 123.5t-69 87.5t-124 32q-152 0 -257.5 -119.5t-146.5 -296.5q-21 -77 -19 -148t22 -125.5t69 -87t123 -32.5q105 0 190 60t136 151.5t77 206.5z" /> + <glyph glyph-name="uni1EB0" unicode="Ằ" horiz-adv-x="1296" +d="M917 1954l-180 287h172l149 -287h-141zM907 1557q-136 0 -209 73.5t-43 196.5h123q-17 -74 21.5 -119t109.5 -45q77 0 143.5 47.5t83.5 116.5h123q-28 -130 -126 -200t-226 -70zM-39 0l848 1413h104l193 -1413h-141l-37 307h-639l-178 -307h-150zM362 434h549l-90 780z +" /> + <glyph glyph-name="uni1EB1" unicode="ằ" horiz-adv-x="1118" +d="M882 1540h-141l-180 287h172zM731 1143q-136 0 -209 73.5t-43 196.5h123q-17 -74 21.5 -119t109.5 -45q77 0 143.5 47.5t83.5 116.5h123q-28 -130 -126 -200t-226 -70zM895 850l37 149h125l-230 -999h-125l29 134q-145 -154 -342 -154q-94 0 -162 42t-101 114t-40 169 +t20 207q33 143 103.5 257t174 182.5t222.5 68.5q214 0 289 -170zM829 512q19 80 19 148t-20 123.5t-69 87.5t-124 32q-152 0 -257.5 -119.5t-146.5 -296.5q-21 -77 -19 -148t22 -125.5t69 -87t123 -32.5q105 0 190 60t136 151.5t77 206.5z" /> + <glyph glyph-name="uni1EB4" unicode="Ẵ" horiz-adv-x="1296" +d="M1124 1985q-37 0 -66 16.5t-46.5 40t-32 47t-32.5 40t-40 16.5q-40 0 -69.5 -40.5t-43.5 -96.5h-88q26 112 77.5 176.5t123.5 64.5q42 0 73.5 -17t48.5 -41t31 -48t30.5 -41t37.5 -17q42 0 73 43.5t50 114.5h92q-58 -258 -219 -258zM907 1557q-136 0 -209 73.5t-43 196.5 +h123q-17 -74 21.5 -119t109.5 -45q77 0 143.5 47.5t83.5 116.5h123q-28 -130 -126 -200t-226 -70zM-39 0l848 1413h104l193 -1413h-141l-37 307h-639l-178 -307h-150zM362 434h549l-90 780z" /> + <glyph glyph-name="uni1EB5" unicode="ẵ" horiz-adv-x="1118" +d="M731 1731q-40 0 -69.5 -40.5t-43.5 -96.5h-88q26 112 77.5 176.5t123.5 64.5q42 0 73.5 -17t48.5 -41t31 -48t30.5 -41t37.5 -17q42 0 73 43.5t50 114.5h92q-58 -258 -219 -258q-37 0 -66 16.5t-46.5 40t-32 47t-32.5 40t-40 16.5zM733 1249q77 0 143.5 47.5t83.5 116.5 +h123q-28 -130 -126 -200t-226 -70q-136 0 -209 73.5t-43 196.5h123q-17 -74 21.5 -119t109.5 -45zM895 850l37 149h125l-230 -999h-125l29 134q-145 -154 -342 -154q-94 0 -162 42t-101 114t-40 169t20 207q33 143 103.5 257t174 182.5t222.5 68.5q214 0 289 -170zM829 512 +q19 80 19 148t-20 123.5t-69 87.5t-124 32q-152 0 -257.5 -119.5t-146.5 -296.5q-21 -77 -19 -148t22 -125.5t69 -87t123 -32.5q105 0 190 60t136 151.5t77 206.5z" /> + <glyph glyph-name="uni1EBC" unicode="Ẽ" horiz-adv-x="1235" +d="M1055 1571q-37 0 -66 16.5t-46.5 40t-32 47t-32.5 40t-40 16.5q-40 0 -69.5 -40.5t-43.5 -96.5h-88q26 112 77.5 176.5t123.5 64.5q42 0 73.5 -17t48.5 -41t31 -48t30.5 -41t37.5 -17q42 0 73 43.5t50 114.5h92q-58 -258 -219 -258zM104 0l326 1413h909l-26 -113h-774 +l-123 -538h661l-26 -109h-662l-123 -532h774l-26 -121h-910z" /> + <glyph glyph-name="uni1EBD" unicode="ẽ" horiz-adv-x="1028" +d="M789 1157q-37 0 -66 16.5t-46.5 40t-32 47t-32.5 40t-40 16.5q-40 0 -69.5 -40.5t-43.5 -96.5h-88q26 112 77.5 176.5t123.5 64.5q42 0 73.5 -17t48.5 -41t31 -48t30.5 -41t37.5 -17q42 0 73 43.5t50 114.5h92q-58 -258 -219 -258zM430 -12q-108 0 -185 40t-114 110 +t-46.5 164.5t17.5 203.5q23 101 69.5 191t112.5 161t155 112.5t188 41.5q94 0 161 -29.5t103.5 -79t51.5 -119.5t10 -146.5t-25 -164.5l-3 -7l-5 -15h-699q-21 -72 -16.5 -136t27.5 -113t74 -77.5t124 -28.5q99 0 175.5 25t146.5 86l79 -74q-98 -78 -191.5 -111.5 +t-209.5 -33.5zM246 559h585q40 158 -11.5 248t-196.5 90q-141 0 -241 -97t-136 -241z" /> + <glyph glyph-name="uni1EBE" unicode="Ế" horiz-adv-x="1235" +d="M921 1952l283 289h180l-336 -289h-127zM578 1512l413 356l250 -356h-149l-129 196l-226 -196h-159zM104 0l326 1413h909l-26 -113h-774l-123 -538h661l-26 -109h-662l-123 -532h774l-26 -121h-910z" /> + <glyph glyph-name="uni1EBF" unicode="ế" horiz-adv-x="1028" +d="M655 1538l283 289h180l-336 -289h-127zM312 1098l413 356l250 -356h-149l-129 196l-226 -196h-159zM430 -12q-108 0 -185 40t-114 110t-46.5 164.5t17.5 203.5q23 101 69.5 191t112.5 161t155 112.5t188 41.5q94 0 161 -29.5t103.5 -79t51.5 -119.5t10 -146.5t-25 -164.5 +l-3 -7l-5 -15h-699q-21 -72 -16.5 -136t27.5 -113t74 -77.5t124 -28.5q99 0 175.5 25t146.5 86l79 -74q-98 -78 -191.5 -111.5t-209.5 -33.5zM246 559h585q40 158 -11.5 248t-196.5 90q-141 0 -241 -97t-136 -241z" /> + <glyph glyph-name="uni1EC0" unicode="Ề" horiz-adv-x="1235" +d="M944 1954l-180 287h172l149 -287h-141zM578 1512l413 356l250 -356h-149l-129 196l-226 -196h-159zM104 0l326 1413h909l-26 -113h-774l-123 -538h661l-26 -109h-662l-123 -532h774l-26 -121h-910z" /> + <glyph glyph-name="uni1EC1" unicode="ề" horiz-adv-x="1028" +d="M678 1540l-180 287h172l149 -287h-141zM312 1098l413 356l250 -356h-149l-129 196l-226 -196h-159zM430 -12q-108 0 -185 40t-114 110t-46.5 164.5t17.5 203.5q23 101 69.5 191t112.5 161t155 112.5t188 41.5q94 0 161 -29.5t103.5 -79t51.5 -119.5t10 -146.5t-25 -164.5 +l-3 -7l-5 -15h-699q-21 -72 -16.5 -136t27.5 -113t74 -77.5t124 -28.5q99 0 175.5 25t146.5 86l79 -74q-98 -78 -191.5 -111.5t-209.5 -33.5zM246 559h585q40 158 -11.5 248t-196.5 90q-141 0 -241 -97t-136 -241z" /> + <glyph glyph-name="uni1EC4" unicode="Ễ" horiz-adv-x="1235" +d="M1151 1985q-37 0 -66 16.5t-46.5 40t-32 47t-32.5 40t-40 16.5q-40 0 -69.5 -40.5t-43.5 -96.5h-88q26 112 77.5 176.5t123.5 64.5q42 0 73.5 -17t48.5 -41t31 -48t30.5 -41t37.5 -17q42 0 73 43.5t50 114.5h92q-58 -258 -219 -258zM578 1512l413 356l250 -356h-149 +l-129 196l-226 -196h-159zM104 0l326 1413h909l-26 -113h-774l-123 -538h661l-26 -109h-662l-123 -532h774l-26 -121h-910z" /> + <glyph glyph-name="uni1EC5" unicode="ễ" horiz-adv-x="1028" +d="M885 1571q-37 0 -66 16.5t-46.5 40t-32 47t-32.5 40t-40 16.5q-40 0 -69.5 -40.5t-43.5 -96.5h-88q26 112 77.5 176.5t123.5 64.5q42 0 73.5 -17t48.5 -41t31 -48t30.5 -41t37.5 -17q42 0 73 43.5t50 114.5h92q-58 -258 -219 -258zM312 1098l413 356l250 -356h-149 +l-129 196l-226 -196h-159zM430 -12q-108 0 -185 40t-114 110t-46.5 164.5t17.5 203.5q23 101 69.5 191t112.5 161t155 112.5t188 41.5q94 0 161 -29.5t103.5 -79t51.5 -119.5t10 -146.5t-25 -164.5l-3 -7l-5 -15h-699q-21 -72 -16.5 -136t27.5 -113t74 -77.5t124 -28.5 +q99 0 175.5 25t146.5 86l79 -74q-98 -78 -191.5 -111.5t-209.5 -33.5zM246 559h585q40 158 -11.5 248t-196.5 90q-141 0 -241 -97t-136 -241z" /> + <glyph glyph-name="uni1ED0" unicode="Ố" horiz-adv-x="1511" +d="M997 1952l283 289h180l-336 -289h-127zM654 1512l413 356l250 -356h-149l-129 196l-226 -196h-159zM645 -20q-125 0 -220 38.5t-153 106.5t-87.5 161t-29 202.5t28.5 230.5q34 148 101 275.5t163 226.5t228 156t282 57q126 0 222.5 -38.5t154.5 -106.5t88 -161.5t29 -203 +t-29 -230.5q-27 -118 -75 -223t-118 -195.5t-156 -156t-196.5 -102.5t-232.5 -37zM651 106q105 0 199 33.5t166 90.5t130.5 136t97 167t61.5 186q21 94 23.5 178.5t-18 160t-64 130.5t-119 87t-177.5 32q-127 0 -237.5 -50.5t-190 -137.5t-134 -194.5t-83.5 -230.5 +q-21 -94 -23.5 -178.5t17.5 -160t62.5 -130.5t116 -87t173.5 -32z" /> + <glyph glyph-name="uni1ED1" unicode="ố" horiz-adv-x="1116" +d="M704 1538l283 289h180l-336 -289h-127zM361 1098l413 356l250 -356h-149l-129 196l-226 -196h-159zM449 -20q-83 0 -151.5 27t-114 75t-73.5 114.5t-30 145t16 166.5q32 139 114 253.5t202 182.5t252 68q136 0 229 -71.5t125.5 -192t-0.5 -265.5q-32 -138 -115.5 -253 +t-203.5 -182.5t-250 -67.5zM453 92q86 0 159 34.5t125 93.5t87.5 131.5t54.5 156.5q15 63 17.5 119t-9 106.5t-38 86.5t-75 57.5t-115.5 21.5q-84 0 -156.5 -34.5t-124.5 -93.5t-87.5 -132t-54.5 -156q-21 -76 -18 -146.5t24 -125t75 -87t136 -32.5z" /> + <glyph glyph-name="uni1ED2" unicode="Ồ" horiz-adv-x="1511" +d="M1020 1954l-180 287h172l149 -287h-141zM654 1512l413 356l250 -356h-149l-129 196l-226 -196h-159zM645 -20q-125 0 -220 38.5t-153 106.5t-87.5 161t-29 202.5t28.5 230.5q34 148 101 275.5t163 226.5t228 156t282 57q126 0 222.5 -38.5t154.5 -106.5t88 -161.5 +t29 -203t-29 -230.5q-27 -118 -75 -223t-118 -195.5t-156 -156t-196.5 -102.5t-232.5 -37zM651 106q105 0 199 33.5t166 90.5t130.5 136t97 167t61.5 186q21 94 23.5 178.5t-18 160t-64 130.5t-119 87t-177.5 32q-127 0 -237.5 -50.5t-190 -137.5t-134 -194.5t-83.5 -230.5 +q-21 -94 -23.5 -178.5t17.5 -160t62.5 -130.5t116 -87t173.5 -32z" /> + <glyph glyph-name="uni1ED3" unicode="ồ" horiz-adv-x="1116" +d="M727 1540l-180 287h172l149 -287h-141zM361 1098l413 356l250 -356h-149l-129 196l-226 -196h-159zM449 -20q-83 0 -151.5 27t-114 75t-73.5 114.5t-30 145t16 166.5q32 139 114 253.5t202 182.5t252 68q136 0 229 -71.5t125.5 -192t-0.5 -265.5q-32 -138 -115.5 -253 +t-203.5 -182.5t-250 -67.5zM453 92q86 0 159 34.5t125 93.5t87.5 131.5t54.5 156.5q15 63 17.5 119t-9 106.5t-38 86.5t-75 57.5t-115.5 21.5q-84 0 -156.5 -34.5t-124.5 -93.5t-87.5 -132t-54.5 -156q-21 -76 -18 -146.5t24 -125t75 -87t136 -32.5z" /> + <glyph glyph-name="uni1ED6" unicode="Ỗ" horiz-adv-x="1511" +d="M1227 1985q-37 0 -66 16.5t-46.5 40t-32 47t-32.5 40t-40 16.5q-40 0 -69.5 -40.5t-43.5 -96.5h-88q26 112 77.5 176.5t123.5 64.5q42 0 73.5 -17t48.5 -41t31 -48t30.5 -41t37.5 -17q42 0 73 43.5t50 114.5h92q-58 -258 -219 -258zM654 1512l413 356l250 -356h-149 +l-129 196l-226 -196h-159zM645 -20q-125 0 -220 38.5t-153 106.5t-87.5 161t-29 202.5t28.5 230.5q34 148 101 275.5t163 226.5t228 156t282 57q126 0 222.5 -38.5t154.5 -106.5t88 -161.5t29 -203t-29 -230.5q-27 -118 -75 -223t-118 -195.5t-156 -156t-196.5 -102.5 +t-232.5 -37zM651 106q105 0 199 33.5t166 90.5t130.5 136t97 167t61.5 186q21 94 23.5 178.5t-18 160t-64 130.5t-119 87t-177.5 32q-127 0 -237.5 -50.5t-190 -137.5t-134 -194.5t-83.5 -230.5q-21 -94 -23.5 -178.5t17.5 -160t62.5 -130.5t116 -87t173.5 -32z" /> + <glyph glyph-name="uni1ED7" unicode="ỗ" horiz-adv-x="1116" +d="M934 1571q-37 0 -66 16.5t-46.5 40t-32 47t-32.5 40t-40 16.5q-40 0 -69.5 -40.5t-43.5 -96.5h-88q26 112 77.5 176.5t123.5 64.5q42 0 73.5 -17t48.5 -41t31 -48t30.5 -41t37.5 -17q42 0 73 43.5t50 114.5h92q-58 -258 -219 -258zM361 1098l413 356l250 -356h-149 +l-129 196l-226 -196h-159zM449 -20q-83 0 -151.5 27t-114 75t-73.5 114.5t-30 145t16 166.5q32 139 114 253.5t202 182.5t252 68q136 0 229 -71.5t125.5 -192t-0.5 -265.5q-32 -138 -115.5 -253t-203.5 -182.5t-250 -67.5zM453 92q86 0 159 34.5t125 93.5t87.5 131.5 +t54.5 156.5q15 63 17.5 119t-9 106.5t-38 86.5t-75 57.5t-115.5 21.5q-84 0 -156.5 -34.5t-124.5 -93.5t-87.5 -132t-54.5 -156q-21 -76 -18 -146.5t24 -125t75 -87t136 -32.5z" /> + <glyph glyph-name="Ygrave" unicode="Ỳ" horiz-adv-x="1315" +d="M825 1540l-180 287h172l149 -287h-141zM477 0l129 553l-330 860h152l268 -719l607 719h157l-725 -860l-129 -553h-129z" /> + <glyph glyph-name="ygrave" unicode="ỳ" horiz-adv-x="961" +d="M547 1126l-180 287h172l149 -287h-141zM41 -430l270 430l-151 999h137l104 -847l490 847h139l-856 -1429h-133z" /> + <glyph glyph-name="uni1EF8" unicode="Ỹ" horiz-adv-x="1315" +d="M1032 1571q-37 0 -66 16.5t-46.5 40t-32 47t-32.5 40t-40 16.5q-40 0 -69.5 -40.5t-43.5 -96.5h-88q26 112 77.5 176.5t123.5 64.5q42 0 73.5 -17t48.5 -41t31 -48t30.5 -41t37.5 -17q42 0 73 43.5t50 114.5h92q-58 -258 -219 -258zM477 0l129 553l-330 860h152l268 -719 +l607 719h157l-725 -860l-129 -553h-129z" /> + <glyph glyph-name="uni1EF9" unicode="ỹ" horiz-adv-x="961" +d="M754 1157q-37 0 -66 16.5t-46.5 40t-32 47t-32.5 40t-40 16.5q-40 0 -69.5 -40.5t-43.5 -96.5h-88q26 112 77.5 176.5t123.5 64.5q42 0 73.5 -17t48.5 -41t31 -48t30.5 -41t37.5 -17q42 0 73 43.5t50 114.5h92q-58 -258 -219 -258zM41 -430l270 430l-151 999h137 +l104 -847l490 847h139l-856 -1429h-133z" /> + <glyph glyph-name="endash" unicode="–" horiz-adv-x="1016" +d="M190 596l23 96h680l-23 -96h-680z" /> + <glyph glyph-name="emdash" unicode="—" horiz-adv-x="1671" +d="M190 596l23 96h1335l-22 -96h-1336z" /> + <glyph glyph-name="uni2015" unicode="―" horiz-adv-x="1507" +d="M190 596l23 96h1171l-22 -96h-1172z" /> + <glyph glyph-name="quoteleft" unicode="‘" horiz-adv-x="563" +d="M434 944l-104 469h172l6 -469h-74z" /> + <glyph glyph-name="quoteright" unicode="’" horiz-adv-x="561" +d="M254 944l225 469h178l-323 -469h-80z" /> + <glyph glyph-name="quotesinglbase" unicode="‚" horiz-adv-x="571" +d="M-14 -225l231 489h184l-327 -489h-88z" /> + <glyph glyph-name="quotedblleft" unicode="“" horiz-adv-x="850" +d="M434 944l-104 469h172l6 -469h-74zM725 944l-107 469h170l9 -469h-72z" /> + <glyph glyph-name="quotedblright" unicode="”" horiz-adv-x="850" +d="M254 944l225 469h178l-323 -469h-80zM543 944l227 469h176l-321 -469h-82z" /> + <glyph glyph-name="quotedblbase" unicode="„" horiz-adv-x="877" +d="M-14 -225l231 489h184l-327 -489h-88zM293 -225l231 489h185l-328 -489h-88z" /> + <glyph glyph-name="dagger" unicode="†" horiz-adv-x="813" +d="M178 -205l244 1059h-221l30 131h222l98 428h133l-98 -428h221l-31 -131h-221l-244 -1059h-133z" /> + <glyph glyph-name="daggerdbl" unicode="‡" horiz-adv-x="874" +d="M209 -205l98 426h-221l31 135h221l115 498h-222l31 131h221l99 428h133l-99 -428h222l-31 -131h-221l-115 -498h221l-30 -135h-222l-98 -426h-133z" /> + <glyph glyph-name="bullet" unicode="•" horiz-adv-x="848" +d="M377 244q-103 0 -159.5 73t-33.5 177q22 93 103.5 159t175.5 66q103 0 159 -73.5t33 -176.5q-23 -94 -103.5 -159.5t-174.5 -65.5z" /> + <glyph glyph-name="uni2023" unicode="‣" horiz-adv-x="774" +d="M195 260l98 436l342 -217z" /> + <glyph glyph-name="twodotenleader" unicode="‥" horiz-adv-x="1087" +d="M129 0l41 176h186l-41 -176h-186zM543 0l41 176h186l-41 -176h-186z" /> + <glyph glyph-name="ellipsis" unicode="…" horiz-adv-x="1501" +d="M129 0l41 176h186l-41 -176h-186zM543 0l41 176h186l-41 -176h-186zM956 0l41 176h187l-41 -176h-187z" /> + <glyph glyph-name="perthousand" unicode="‰" horiz-adv-x="2167" +d="M467 813q-54 0 -93.5 20.5t-59.5 53.5t-29 76t-6.5 86t12.5 86q11 51 34 101t57.5 96.5t86.5 75t113 28.5t104 -28.5t61.5 -74.5t22.5 -104.5t-12 -118.5q-19 -77 -56 -142t-99.5 -110t-135.5 -45zM244 8l1063 1387h116l-1063 -1387h-116zM461 895q52 0 97 39.5t71.5 92 +t40.5 110.5q9 51 10 98.5t-23.5 82t-72.5 34.5q-77 0 -134 -74t-77 -168q-10 -51 -11 -98.5t24.5 -82t74.5 -34.5zM1108 6q-45 0 -80.5 14t-56.5 38.5t-34 55.5t-16.5 67.5t-1 72.5t10.5 72q9 40 24.5 79t41 79t57.5 70.5t75.5 49.5t92.5 19q61 0 103.5 -28t61 -74t23 -104 +t-11.5 -118q-27 -120 -104 -206.5t-185 -86.5zM1688 6q-54 0 -93.5 20t-60 52.5t-29.5 75.5t-7.5 85.5t11.5 86.5q12 51 34.5 100t57.5 95t86.5 74t112.5 28t104.5 -28t62 -74t23 -104t-11.5 -118q-26 -119 -104 -206t-186 -87zM1102 88q52 0 97.5 39t72.5 91t39 108 +q9 51 10 98t-23.5 81t-72.5 34q-78 0 -134 -72t-77 -166q-10 -50 -11 -97t24.5 -81.5t74.5 -34.5zM1683 88q51 0 96 39t71 91t38 108q10 51 11 98t-23.5 81t-71.5 34q-76 0 -132 -72t-77 -166q-9 -50 -10 -97t24 -81.5t74 -34.5z" /> + <glyph glyph-name="uni2031" unicode="‱" horiz-adv-x="2728" +d="M467 813q-54 0 -93.5 20.5t-59.5 53.5t-29 76.5t-6.5 86.5t12.5 87q11 51 33.5 100t57 95.5t87 75t113.5 28.5q60 0 102.5 -28.5t60.5 -74.5t22.5 -104.5t-11.5 -118.5q-18 -76 -56.5 -141.5t-100 -110.5t-132.5 -45zM244 8l1063 1385h114l-1061 -1385h-116zM461 895 +q52 0 97 39.5t71.5 92t40.5 110.5q9 52 10 100t-23 82.5t-71 34.5q-79 0 -136.5 -74t-78.5 -168q-10 -51 -11 -99t25 -83t76 -35zM1108 6q-45 0 -80.5 14t-56.5 38.5t-34 55.5t-16.5 67.5t-1 72.5t10.5 72q9 40 24.5 79t41 79t57.5 70.5t75.5 49.5t92.5 19q60 0 102 -28.5 +t60.5 -74.5t23 -104t-11.5 -117q-27 -119 -104.5 -206t-182.5 -87zM1686 6q-54 0 -93.5 20t-60 52.5t-29.5 75.5t-7.5 85.5t11.5 86.5q12 51 34.5 100t57.5 95t86.5 74t112.5 28t104 -28.5t60.5 -74.5t21.5 -104t-12 -117q-27 -120 -103.5 -206.5t-182.5 -86.5zM2253 6 +q-54 0 -93.5 20t-60 52.5t-29.5 75.5t-7 85.5t12 86.5q11 51 33.5 100t57.5 95t86.5 74t112.5 28t104 -28.5t61 -74.5t22 -104t-12 -117q-27 -119 -104 -206t-183 -87zM1102 86q76 0 132.5 74.5t76.5 165.5q9 51 10 98.5t-23.5 82t-72.5 34.5q-79 0 -135.5 -73t-77.5 -167 +q-9 -38 -10.5 -74t6.5 -68.5t32 -52.5t62 -20zM1679 86q52 0 98 39t72.5 92t38.5 109q10 51 11 98.5t-24 82t-73 34.5q-79 0 -135 -73t-78 -167q-9 -50 -10 -97.5t24.5 -82.5t75.5 -35zM2247 86q76 0 132.5 74.5t76.5 165.5q9 51 10 98.5t-23.5 82t-72.5 34.5 +q-79 0 -135.5 -73t-77.5 -167q-9 -38 -10.5 -74t6.5 -68.5t32 -52.5t62 -20z" /> + <glyph glyph-name="guilsinglleft" unicode="‹" horiz-adv-x="612" +d="M369 193l-283 319l426 317l-31 -149l-237 -168l155 -170z" /> + <glyph glyph-name="guilsinglright" unicode="›" horiz-adv-x="612" +d="M102 193l31 149l238 170l-156 168l31 149l282 -317z" /> + <glyph glyph-name="fraction" unicode="⁄" horiz-adv-x="723" +d="M-82 0l748 1413h139l-746 -1413h-141z" /> + <glyph glyph-name="Euro" unicode="€" horiz-adv-x="1282" +d="M668 -20q-104 0 -181.5 38t-123 106.5t-65 159.5t-13.5 201l-131 -6l75 115l64 6l26 119q17 75 33 119l-119 -7l76 109l82 6q94 223 245 356.5t343 133.5q229 0 328 -193l-107 -69q-29 79 -87 110t-144 31q-141 0 -261 -107.5t-194 -273.5l526 6l-75 -115l-498 -6 +q-25 -89 -31 -119q-1 -4 -24 -116l546 6l-75 -117l-480 -6q-1 -106 24.5 -186t88 -130.5t158.5 -50.5q182 0 303 156l70 -109q-168 -167 -379 -167z" /> + <glyph glyph-name="uni20B1" unicode="₱" horiz-adv-x="1354" +d="M1350 1079l-21 -88h-91q-47 -165 -180.5 -252.5t-330.5 -87.5h-256l-149 -651h-136l229 991h-134l20 88h134l77 334h379q186 0 283.5 -89t81.5 -245h94zM621 1296l-51 -217h554q13 105 -51 161t-196 56h-256zM744 768q132 0 225.5 57t133.5 166h-553l-52 -223h246z" /> + <glyph glyph-name="uni20B3" unicode="₳" horiz-adv-x="1296" +d="M1237 629h-217l30 -219h136l-25 -103h-97l42 -307h-141l-37 307h-639l-178 -307h-150l184 307h-98l25 103h135l131 219h-215l22 102h255l409 682h104l93 -682h254zM829 1255l-306 -524h365zM924 410l-25 219h-436l-128 -219h589z" /> + <glyph glyph-name="uni20B4" unicode="₴" horiz-adv-x="1241" +d="M1122 1071q-14 -62 -48 -114.5t-72.5 -87t-99 -68.5t-107 -54t-119.5 -49.5t-113 -48.5h416l-21 -88h-546q-104 -81 -131 -199q-31 -131 31.5 -194.5t195.5 -63.5q141 0 262 77t168 216l113 -51q-47 -119 -136 -202.5t-194 -121.5t-219 -38q-190 0 -288.5 114t-55.5 299 +q11 49 33 92.5t47 75.5t63 62.5t70 50.5t81 43.5t81.5 37t86.5 35t83 33.5h-377l20 88h521q110 79 137 195q22 95 -33 152t-148 57q-95 0 -184 -44t-150 -128l-86 80q173 207 424 207q160 0 246.5 -102.5t48.5 -260.5z" /> + <glyph glyph-name="uni20B8" unicode="₸" horiz-adv-x="1436" +d="M350 1305l25 106h1108l-25 -106h-1108zM537 0l237 1028h-487l22 105h1108l-22 -105h-488l-237 -1028h-133z" /> + <glyph glyph-name="uni20BD" unicode="₽" horiz-adv-x="1327" +d="M227 0l88 381h-174l27 119h174l35 149h-174l26 119h174l150 645h379q202 0 298 -106t54 -289q-41 -178 -177 -273.5t-339 -95.5h-258l-35 -149h395l-26 -119h-395l-89 -381h-133zM537 768h247q147 0 247 70.5t130 203.5q28 122 -35.5 188t-207.5 66h-259z" /> + <glyph glyph-name="uni2116" unicode="№" horiz-adv-x="2345" +d="M104 0l326 1413h213l324 -1288l299 1288h135l-326 -1413h-217l-317 1290l-299 -1290h-138zM1672 290q-90 0 -159 36t-107 97.5t-50.5 145t11.5 177.5q42 184 180 309.5t310 125.5q117 0 198 -62t109 -166t-1 -229q-42 -182 -181.5 -308t-309.5 -126zM1675 386 +q74 0 137.5 29.5t108 81t75 114.5t47.5 135q18 66 15.5 126.5t-20.5 107.5t-65.5 75t-119.5 28q-73 0 -135.5 -29.5t-107 -80.5t-75.5 -114t-47 -135q-13 -54 -15.5 -102t7.5 -92t32.5 -75.5t64 -50t98.5 -18.5zM1430 0v113h667v-113h-667z" /> + <glyph glyph-name="trademark" unicode="™" horiz-adv-x="1268" +d="M387 877l113 485h-146l13 51h354l-12 -51h-146l-112 -485h-64zM653 877l125 536h76l57 -362l230 362h76l-125 -536h-64l98 415l-198 -334h-64l-49 336l-98 -417h-64z" /> + <glyph glyph-name="uni2126" unicode="Ω" horiz-adv-x="1677" +d="M76 0l26 115l367 2q-144 85 -205.5 251t-15.5 359q29 128 102 254.5t168 216.5q115 96 254.5 152.5t265.5 56.5q134 0 248 -62t180 -165q61 -81 79.5 -209.5t-13.5 -265.5q-43 -189 -170.5 -349t-300.5 -239l338 2l-27 -119h-491l22 123q181 59 322.5 233.5t195.5 409.5 +q21 91 11 184.5t-48 163.5q-58 80 -153.5 128t-196.5 48q-111 0 -231.5 -53.5t-210.5 -142.5q-76 -62 -135 -157t-82 -196q-47 -205 10.5 -372.5t204.5 -249.5l-23 -119h-491z" /> + <glyph glyph-name="arrowleft" unicode="←" horiz-adv-x="2185" +d="M1020 154l-868 485l868 481l53 -96l-649 -346h1655v-86h-1641l635 -346z" /> + <glyph glyph-name="arrowright" unicode="→" horiz-adv-x="2179" +d="M1227 154l-53 92l634 346h-1640v86h1653l-647 346l53 96l868 -481z" /> + <glyph glyph-name="partialdiff" unicode="∂" horiz-adv-x="1313" +d="M455 -10q-186 0 -272 124t-40 322q38 165 138 300.5t244.5 214.5t303.5 79q88 0 153.5 -35.5t98.5 -97.5q40 206 -17.5 310t-197.5 104q-187 0 -303 -170l-129 43q76 118 190 180.5t253 62.5q462 0 301 -708q-26 -112 -69 -215t-108 -197.5t-144 -164t-183 -111 +t-219 -41.5zM469 106q125 0 237.5 72t187 186t105.5 248q32 138 -15.5 218.5t-174.5 80.5q-93 0 -183.5 -44.5t-159.5 -116.5t-119 -161.5t-71 -180.5q-31 -134 20 -218t173 -84z" /> + <glyph glyph-name="uni2206" unicode="∆" horiz-adv-x="1309" +d="M4 0l860 1413l211 -1413h-1071zM207 117h727l-141 956z" /> + <glyph glyph-name="product" unicode="∏" horiz-adv-x="1333" +d="M160 0l299 1296h-82l26 117h949l-27 -117h-82l-299 -1296h-117l299 1296h-551l-299 -1296h-116z" /> + <glyph glyph-name="summation" unicode="∑" horiz-adv-x="1270" +d="M18 0l11 53l735 654l-430 653l10 53h993l-26 -117h-776l401 -587l-670 -592h772l-26 -117h-994z" /> + <glyph glyph-name="minus" unicode="−" horiz-adv-x="1108" +d="M285 580v96h600v-96h-600z" /> + <glyph glyph-name="radical" unicode="√" horiz-adv-x="1221" +d="M367 -158l-82 744h-148l27 116h227l45 -550l762 1261l105 -41z" /> + <glyph glyph-name="infinity" unicode="∞" horiz-adv-x="1917" +d="M608 354q-166 0 -260 104t-94 277q0 174 94 277.5t260 103.5q113 0 218 -63.5t188 -178.5q81 114 186 178t219 64q165 0 259 -104t94 -277t-94 -277t-259 -104q-114 0 -219 64t-186 178q-83 -115 -188 -178.5t-218 -63.5zM639 463q90 0 174.5 74.5t138.5 197.5 +q-53 119 -139 196t-174 77q-115 0 -185.5 -73.5t-70.5 -199.5t70.5 -199t185.5 -73zM1389 463q113 0 183 73t70 199t-70 199.5t-183 73.5q-91 0 -176 -75t-140 -198q56 -120 142 -196t174 -76z" /> + <glyph glyph-name="integral" unicode="∫" horiz-adv-x="1016" +d="M-104 -457l16 117q184 0 289 81t145 257l270 1171q30 125 118.5 203t193.5 78q103 0 186 -80l-90 -84q-39 47 -102 47q-61 0 -116 -46.5t-73 -125.5l-272 -1173q-50 -220 -197.5 -332.5t-367.5 -112.5z" /> + <glyph glyph-name="approxequal" unicode="≈" horiz-adv-x="1176" +d="M791 733q-44 0 -82.5 19.5t-67 47.5t-56 55.5t-60.5 47t-68 19.5q-56 0 -80.5 -46.5t-22.5 -115.5h-82q0 106 46.5 175t136.5 69q52 0 95 -19.5t72 -47t55 -54.5t56.5 -46.5t63.5 -19.5q112 0 112 182h88q0 -126 -54.5 -196t-151.5 -70zM793 389q-43 0 -81.5 19.5 +t-67.5 48t-57 56.5t-61.5 47.5t-68.5 19.5q-38 0 -62.5 -24.5t-33 -60t-7.5 -79.5h-82q0 106 46.5 176t136.5 70q52 0 95 -19.5t72 -47t55 -54.5t56.5 -46.5t63.5 -19.5q112 0 112 180h88q0 -125 -54 -195.5t-150 -70.5z" /> + <glyph glyph-name="notequal" unicode="≠" horiz-adv-x="1122" +d="M164 0l229 434h-168v129h236l117 217h-353v129h422l266 504h142l-267 -504h189v-129h-256l-117 -217h373v-129h-442l-228 -434h-143z" /> + <glyph glyph-name="lessequal" unicode="≤" horiz-adv-x="1372" +d="M1030 111l-876 491l876 488l60 -103l-723 -385l723 -389zM76 -96v96h1036v-96h-1036z" /> + <glyph glyph-name="greaterequal" unicode="≥" horiz-adv-x="1495" +d="M289 111l-60 102l723 389l-723 385l60 103l876 -488zM207 -96v96h1036v-96h-1036z" /> + <glyph glyph-name="lozenge" unicode="◊" horiz-adv-x="1135" +d="M379 0l-201 717l527 717h151l199 -717l-525 -717h-151zM477 131l434 586l-155 586l-434 -586z" /> + <glyph glyph-name="uniF8FF" unicode="" horiz-adv-x="1855" +d="M977 -61q-158 0 -301 61t-247 165t-165 247t-61 301t61 301t165 247t247 165t301 61t301 -61t247 -165t165 -247t61 -301t-61 -301t-165 -247t-247 -165t-301 -61zM977 10q143 0 273 55.5t224 149.5t149.5 224.5t55.5 273.5t-55.5 273t-149.5 224t-224 149.5t-273 55.5 +t-273.5 -55.5t-224.5 -149.5t-149.5 -224t-55.5 -273q0 -191 94 -353t256 -256t353 -94zM573 410q-14 0 -24 9.5t-10 24.5v537q0 15 10 26t24 11q16 0 26.5 -11t10.5 -26v-537q0 -15 -10.5 -24.5t-26.5 -9.5zM977 410q-16 0 -25.5 9.5t-9.5 24.5v537q0 15 10 26t25 11 +t25 -11t10 -26v-537q0 -15 -10 -24.5t-25 -9.5zM1378 410q-14 0 -22 10l-271 268q-8 11 -8 25q0 16 8 24l273 269q6 12 20 12t25.5 -11.5t11.5 -25.5t-10 -25l-244 -243l244 -244q10 -10 10 -25q0 -13 -11.5 -23.5t-25.5 -10.5zM709 678q-16 0 -25.5 9.5t-9.5 25.5 +q0 15 9.5 25t25.5 10h133q15 0 26 -10t11 -25t-11 -25t-26 -10h-133z" /> + <glyph glyph-name="i.loclTRK" horiz-adv-x="477" +d="M329 1229l43 184h152l-43 -184h-152zM59 0l230 999h129l-230 -999h-129z" /> + <glyph glyph-name="f_t" horiz-adv-x="1212" +d="M987 897l-152 -653q-19 -82 4.5 -123t77.5 -41q43 0 103 24l-15 -108q-40 -16 -120 -16q-239 0 -172 288l145 629h-426l-207 -897h-123l207 897h-182l23 100h182l47 205q27 112 110 172t191 60q85 0 158 -39l-43 -90q-56 26 -115 26q-68 0 -117 -36.5t-65 -108.5 +l-43 -187h425l50 220l159 131l-80 -351h254l-22 -102h-254z" /> + <hkern u1=" " u2="&" k="82" /> + <hkern u1=""" u2="ï" k="-82" /> + <hkern u1=""" u2="î" k="-82" /> + <hkern u1=""" u2="ì" k="-82" /> + <hkern u1="#" u2="9" k="41" /> + <hkern u1="#" u2="8" k="41" /> + <hkern u1="#" u2="7" k="20" /> + <hkern u1="#" u2="5" k="61" /> + <hkern u1="#" u2="4" k="82" /> + <hkern u1="#" u2="3" k="61" /> + <hkern u1="#" u2="2" k="20" /> + <hkern u1="#" u2="1" k="20" /> + <hkern u1="$" u2="9" k="20" /> + <hkern u1="$" u2="8" k="20" /> + <hkern u1="$" u2="7" k="20" /> + <hkern u1="$" u2="5" k="20" /> + <hkern u1="$" u2="4" k="20" /> + <hkern u1="$" u2="3" k="20" /> + <hkern u1="%" u2="1" k="20" /> + <hkern u1="&" u2="V" k="154" /> + <hkern u1="&" u2="5" k="20" /> + <hkern u1="&" u2="4" k="20" /> + <hkern u1="&" u2="3" k="20" /> + <hkern u1="&" u2="1" k="20" /> + <hkern u1="&" u2=" " k="82" /> + <hkern u1="'" u2="ï" k="-82" /> + <hkern u1="'" u2="î" k="-82" /> + <hkern u1="'" u2="ì" k="-82" /> + <hkern u1="(" u2="ƒ" k="-102" /> + <hkern u1="(" u2="ì" k="-41" /> + <hkern u1="(" u2="v" k="41" /> + <hkern u1="(" u2="X" k="-41" /> + <hkern u1="(" u2="V" k="-41" /> + <hkern u1="(" u2="−" k="82" /> + <hkern u1="(" u2="7" k="-82" /> + <hkern u1="(" u2="5" k="51" /> + <hkern u1="(" u2="4" k="41" /> + <hkern u1="(" u2="2" k="-10" /> + <hkern u1="(" u2="1" k="10" /> + <hkern u1="(" u2="+" k="102" /> + <hkern u1=")" u2="Ł" k="-41" /> + <hkern u1="*" u2="î" k="-41" /> + <hkern u1="*" u2="v" k="-20" /> + <hkern u1="*" u2="V" k="-41" /> + <hkern u1="*" u2="7" k="-82" /> + <hkern u1="*" u2="4" k="143" /> + <hkern u1="+" u2="X" k="20" /> + <hkern u1="+" u2="V" k="82" /> + <hkern u1="+" u2="9" k="20" /> + <hkern u1="+" u2="7" k="20" /> + <hkern u1="+" u2="3" k="41" /> + <hkern u1="+" u2="2" k="20" /> + <hkern u1="+" u2="1" k="61" /> + <hkern u1="+" u2=")" k="102" /> + <hkern u1="," u2="g" k="20" /> + <hkern u1="." u2="g" k="20" /> + <hkern u1="/" u2="ž" k="102" /> + <hkern u1="/" u2="š" k="123" /> + <hkern u1="/" u2="ð" k="184" /> + <hkern u1="/" u2="ï" k="-61" /> + <hkern u1="/" u2="î" k="-61" /> + <hkern u1="/" u2="í" k="20" /> + <hkern u1="/" u2="ì" k="-143" /> + <hkern u1="/" u2="ë" k="215" /> + <hkern u1="/" u2="è" k="215" /> + <hkern u1="/" u2="å" k="225" /> + <hkern u1="/" u2="ä" k="195" /> + <hkern u1="/" u2="ã" k="205" /> + <hkern u1="/" u2="â" k="215" /> + <hkern u1="/" u2="à" k="195" /> + <hkern u1="/" u2="x" k="41" /> + <hkern u1="/" u2="v" k="20" /> + <hkern u1="/" u2="X" k="-20" /> + <hkern u1="/" u2="V" k="-41" /> + <hkern u1="/" u2="9" k="41" /> + <hkern u1="/" u2="8" k="61" /> + <hkern u1="/" u2="7" k="-61" /> + <hkern u1="/" u2="5" k="41" /> + <hkern u1="/" u2="4" k="164" /> + <hkern u1="/" u2="2" k="41" /> + <hkern u1="/" u2="/" k="287" /> + <hkern u1="1" u2="≥" k="-20" /> + <hkern u1="1" u2="≠" k="-41" /> + <hkern u1="1" u2="≈" k="-41" /> + <hkern u1="1" u2="∞" k="-41" /> + <hkern u1="1" u2="÷" k="20" /> + <hkern u1="1" u2="°" k="20" /> + <hkern u1="1" u2="|" k="-20" /> + <hkern u1="1" u2=">" k="-61" /> + <hkern u1="1" u2="<" k="20" /> + <hkern u1="1" u2="7" k="-10" /> + <hkern u1="1" u2="2" k="-10" /> + <hkern u1="1" u2="%" k="20" /> + <hkern u1="1" u2="#" k="41" /> + <hkern u1="2" u2="≥" k="-20" /> + <hkern u1="2" u2="≠" k="-20" /> + <hkern u1="2" u2="≈" k="-41" /> + <hkern u1="2" u2="×" k="-20" /> + <hkern u1="2" u2="±" k="-20" /> + <hkern u1="2" u2="°" k="-20" /> + <hkern u1="2" u2="_" k="-20" /> + <hkern u1="2" u2="\" k="20" /> + <hkern u1="2" u2=">" k="-61" /> + <hkern u1="2" u2="4" k="31" /> + <hkern u1="2" u2="1" k="-20" /> + <hkern u1="3" u2="≥" k="-41" /> + <hkern u1="3" u2="≈" k="-41" /> + <hkern u1="3" u2="−" k="-20" /> + <hkern u1="3" u2="‰" k="20" /> + <hkern u1="3" u2="×" k="-20" /> + <hkern u1="3" u2="±" k="-20" /> + <hkern u1="3" u2="°" k="-20" /> + <hkern u1="3" u2="¦" k="-41" /> + <hkern u1="3" u2="~" k="-20" /> + <hkern u1="3" u2="|" k="-41" /> + <hkern u1="3" u2="_" k="20" /> + <hkern u1="3" u2=">" k="-61" /> + <hkern u1="3" u2="7" k="-20" /> + <hkern u1="3" u2="1" k="10" /> + <hkern u1="3" u2="/" k="20" /> + <hkern u1="3" u2="*" k="-20" /> + <hkern u1="3" u2="%" k="20" /> + <hkern u1="3" u2="#" k="41" /> + <hkern u1="4" u2="º" k="82" /> + <hkern u1="4" u2="ª" k="82" /> + <hkern u1="4" u2="≥" k="-61" /> + <hkern u1="4" u2="≤" k="-61" /> + <hkern u1="4" u2="≠" k="-20" /> + <hkern u1="4" u2="≈" k="-61" /> + <hkern u1="4" u2="∞" k="-20" /> + <hkern u1="4" u2="™" k="143" /> + <hkern u1="4" u2="‰" k="61" /> + <hkern u1="4" u2="×" k="-20" /> + <hkern u1="4" u2="±" k="-20" /> + <hkern u1="4" u2="°" k="20" /> + <hkern u1="4" u2="¦" k="-20" /> + <hkern u1="4" u2="~" k="-41" /> + <hkern u1="4" u2=">" k="-61" /> + <hkern u1="4" u2="=" k="-41" /> + <hkern u1="4" u2="7" k="10" /> + <hkern u1="4" u2="*" k="41" /> + <hkern u1="4" u2="%" k="20" /> + <hkern u1="5" u2="≥" k="-41" /> + <hkern u1="5" u2="≤" k="-20" /> + <hkern u1="5" u2="≠" k="-20" /> + <hkern u1="5" u2="≈" k="-41" /> + <hkern u1="5" u2="−" k="-20" /> + <hkern u1="5" u2="‰" k="20" /> + <hkern u1="5" u2="°" k="-20" /> + <hkern u1="5" u2="~" k="-20" /> + <hkern u1="5" u2="_" k="20" /> + <hkern u1="5" u2="@" k="10" /> + <hkern u1="5" u2=">" k="-41" /> + <hkern u1="5" u2="=" k="-20" /> + <hkern u1="5" u2="<" k="-20" /> + <hkern u1="5" u2="7" k="-10" /> + <hkern u1="5" u2="/" k="41" /> + <hkern u1="5" u2="%" k="20" /> + <hkern u1="6" u2="≈" k="-20" /> + <hkern u1="6" u2="−" k="-20" /> + <hkern u1="6" u2="‰" k="41" /> + <hkern u1="6" u2="~" k="-20" /> + <hkern u1="6" u2="_" k="41" /> + <hkern u1="6" u2="\" k="20" /> + <hkern u1="6" u2="@" k="20" /> + <hkern u1="6" u2=">" k="-20" /> + <hkern u1="6" u2="=" k="-20" /> + <hkern u1="6" u2="7" k="-10" /> + <hkern u1="6" u2="+" k="-20" /> + <hkern u1="6" u2="#" k="41" /> + <hkern u1="7" u2="≥" k="-41" /> + <hkern u1="7" u2="≠" k="20" /> + <hkern u1="7" u2="∞" k="20" /> + <hkern u1="7" u2="−" k="61" /> + <hkern u1="7" u2="™" k="-41" /> + <hkern u1="7" u2="‰" k="-20" /> + <hkern u1="7" u2="‡" k="-102" /> + <hkern u1="7" u2="†" k="-102" /> + <hkern u1="7" u2="÷" k="41" /> + <hkern u1="7" u2="¿" k="123" /> + <hkern u1="7" u2="·" k="82" /> + <hkern u1="7" u2="±" k="20" /> + <hkern u1="7" u2="°" k="-61" /> + <hkern u1="7" u2="¦" k="-41" /> + <hkern u1="7" u2="~" k="82" /> + <hkern u1="7" u2="|" k="-41" /> + <hkern u1="7" u2="_" k="184" /> + <hkern u1="7" u2="\" k="-61" /> + <hkern u1="7" u2="@" k="10" /> + <hkern u1="7" u2="?" k="-41" /> + <hkern u1="7" u2=">" k="-61" /> + <hkern u1="7" u2="=" k="-10" /> + <hkern u1="7" u2="<" k="61" /> + <hkern u1="7" u2="9" k="-20" /> + <hkern u1="7" u2="7" k="-61" /> + <hkern u1="7" u2="5" k="31" /> + <hkern u1="7" u2="4" k="113" /> + <hkern u1="7" u2="1" k="-10" /> + <hkern u1="7" u2="/" k="123" /> + <hkern u1="7" u2="+" k="102" /> + <hkern u1="7" u2="*" k="-41" /> + <hkern u1="7" u2="#" k="82" /> + <hkern u1="8" u2="≥" k="-20" /> + <hkern u1="8" u2="≠" k="-20" /> + <hkern u1="8" u2="≈" k="-41" /> + <hkern u1="8" u2="£" k="41" /> + <hkern u1="8" u2="_" k="20" /> + <hkern u1="8" u2="\" k="82" /> + <hkern u1="8" u2=">" k="-20" /> + <hkern u1="8" u2="&" k="20" /> + <hkern u1="8" u2="%" k="10" /> + <hkern u1="8" u2="#" k="20" /> + <hkern u1="<" u2="9" k="-61" /> + <hkern u1="<" u2="8" k="-61" /> + <hkern u1="<" u2="7" k="-143" /> + <hkern u1="<" u2="5" k="-41" /> + <hkern u1="<" u2="3" k="-20" /> + <hkern u1="<" u2="2" k="-61" /> + <hkern u1="<" u2="1" k="-61" /> + <hkern u1="=" u2="X" k="20" /> + <hkern u1="=" u2="V" k="20" /> + <hkern u1="=" u2="7" k="20" /> + <hkern u1="=" u2="5" k="-20" /> + <hkern u1=">" u2="X" k="41" /> + <hkern u1=">" u2="V" k="41" /> + <hkern u1=">" u2="3" k="41" /> + <hkern u1=">" u2="2" k="20" /> + <hkern u1=">" u2="1" k="20" /> + <hkern u1="?" u2="v" k="-41" /> + <hkern u1="?" u2="7" k="-61" /> + <hkern u1="?" u2="4" k="41" /> + <hkern u1="?" u2="1" k="-20" /> + <hkern u1="@" u2="Ł" k="-20" /> + <hkern u1="@" u2="x" k="-10" /> + <hkern u1="@" u2="v" k="-31" /> + <hkern u1="@" u2="X" k="41" /> + <hkern u1="@" u2="V" k="41" /> + <hkern u1="@" u2="7" k="-20" /> + <hkern u1="@" u2="4" k="20" /> + <hkern u1="@" u2="3" k="20" /> + <hkern u1="B" u2="™" k="20" /> + <hkern u1="B" u2="•" k="20" /> + <hkern u1="B" u2="ß" k="31" /> + <hkern u1="B" u2="¿" k="51" /> + <hkern u1="B" u2="º" k="20" /> + <hkern u1="B" u2="ª" k="31" /> + <hkern u1="B" u2="v" k="10" /> + <hkern u1="B" u2="_" k="20" /> + <hkern u1="B" u2="\" k="51" /> + <hkern u1="B" u2=">" k="-20" /> + <hkern u1="B" u2="/" k="31" /> + <hkern u1="B" u2="+" k="10" /> + <hkern u1="B" u2="&" k="10" /> + <hkern u1="C" u2="î" k="-31" /> + <hkern u1="E" u2="ì" k="-20" /> + <hkern u1="F" u2="™" k="-41" /> + <hkern u1="F" u2="•" k="20" /> + <hkern u1="F" u2="‡" k="-41" /> + <hkern u1="F" u2="†" k="-41" /> + <hkern u1="F" u2="ƒ" k="143" /> + <hkern u1="F" u2="ï" k="-41" /> + <hkern u1="F" u2="î" k="-51" /> + <hkern u1="F" u2="ì" k="-72" /> + <hkern u1="F" u2="ß" k="41" /> + <hkern u1="F" u2="¿" k="143" /> + <hkern u1="F" u2="¶" k="-41" /> + <hkern u1="F" u2="ª" k="31" /> + <hkern u1="F" u2="§" k="-41" /> + <hkern u1="F" u2="¦" k="-41" /> + <hkern u1="F" u2="~" k="41" /> + <hkern u1="F" u2="|" k="-41" /> + <hkern u1="F" u2="{" k="41" /> + <hkern u1="F" u2="x" k="31" /> + <hkern u1="F" u2="v" k="41" /> + <hkern u1="F" u2="_" k="205" /> + <hkern u1="F" u2="^" k="-20" /> + <hkern u1="F" u2="\" k="-61" /> + <hkern u1="F" u2="@" k="20" /> + <hkern u1="F" u2="?" k="-20" /> + <hkern u1="F" u2=">" k="-20" /> + <hkern u1="F" u2="/" k="113" /> + <hkern u1="F" u2="+" k="41" /> + <hkern u1="F" u2="*" k="-31" /> + <hkern u1="F" u2=")" k="-61" /> + <hkern u1="F" u2="&" k="20" /> + <hkern u1="G" u2="î" k="-10" /> + <hkern u1="J" u2="î" k="-10" /> + <hkern u1="K" u2="ì" k="-61" /> + <hkern u1="P" u2="•" k="41" /> + <hkern u1="P" u2="‡" k="-41" /> + <hkern u1="P" u2="†" k="-41" /> + <hkern u1="P" u2="ƒ" k="123" /> + <hkern u1="P" u2="š" k="31" /> + <hkern u1="P" u2="ł" k="10" /> + <hkern u1="P" u2="ü" k="41" /> + <hkern u1="P" u2="û" k="41" /> + <hkern u1="P" u2="ú" k="41" /> + <hkern u1="P" u2="ù" k="41" /> + <hkern u1="P" u2="÷" k="20" /> + <hkern u1="P" u2="ï" k="-41" /> + <hkern u1="P" u2="î" k="-82" /> + <hkern u1="P" u2="ì" k="-31" /> + <hkern u1="P" u2="ß" k="31" /> + <hkern u1="P" u2="×" k="-20" /> + <hkern u1="P" u2="¿" k="164" /> + <hkern u1="P" u2="·" k="41" /> + <hkern u1="P" u2="¶" k="-41" /> + <hkern u1="P" u2="§" k="-20" /> + <hkern u1="P" u2="~" k="41" /> + <hkern u1="P" u2="{" k="41" /> + <hkern u1="P" u2="_" k="184" /> + <hkern u1="P" u2="X" k="10" /> + <hkern u1="P" u2="@" k="10" /> + <hkern u1="P" u2="?" k="-41" /> + <hkern u1="P" u2=">" k="-41" /> + <hkern u1="P" u2="/" k="143" /> + <hkern u1="P" u2="+" k="61" /> + <hkern u1="P" u2="*" k="-20" /> + <hkern u1="P" u2="&" k="20" /> + <hkern u1="Q" u2="™" k="41" /> + <hkern u1="Q" u2="ƒ" k="41" /> + <hkern u1="Q" u2="Ł" k="-10" /> + <hkern u1="Q" u2="ß" k="20" /> + <hkern u1="Q" u2="\" k="72" /> + <hkern u1="Q" u2="X" k="31" /> + <hkern u1="Q" u2="V" k="51" /> + <hkern u1="Q" u2=">" k="-41" /> + <hkern u1="Q" u2="<" k="-20" /> + <hkern u1="Q" u2=")" k="20" /> + <hkern u1="R" u2="î" k="-20" /> + <hkern u1="T" u2="ž" k="61" /> + <hkern u1="T" u2="š" k="20" /> + <hkern u1="T" u2="ÿ" k="102" /> + <hkern u1="T" u2="ü" k="143" /> + <hkern u1="T" u2="û" k="133" /> + <hkern u1="T" u2="ï" k="-61" /> + <hkern u1="T" u2="î" k="-31" /> + <hkern u1="T" u2="í" k="102" /> + <hkern u1="T" u2="ì" k="-82" /> + <hkern u1="T" u2="å" k="133" /> + <hkern u1="T" u2="ä" k="92" /> + <hkern u1="T" u2="ã" k="92" /> + <hkern u1="T" u2="â" k="113" /> + <hkern u1="T" u2="à" k="82" /> + <hkern u1="U" u2="î" k="-10" /> + <hkern u1="V" u2="™" k="-61" /> + <hkern u1="V" u2="•" k="82" /> + <hkern u1="V" u2="‡" k="-20" /> + <hkern u1="V" u2="†" k="-41" /> + <hkern u1="V" u2="ƒ" k="123" /> + <hkern u1="V" u2="÷" k="82" /> + <hkern u1="V" u2="ï" k="-20" /> + <hkern u1="V" u2="î" k="-20" /> + <hkern u1="V" u2="ì" k="-72" /> + <hkern u1="V" u2="ß" k="31" /> + <hkern u1="V" u2="×" k="20" /> + <hkern u1="V" u2="¿" k="123" /> + <hkern u1="V" u2="·" k="61" /> + <hkern u1="V" u2="¦" k="-41" /> + <hkern u1="V" u2="¡" k="41" /> + <hkern u1="V" u2="~" k="82" /> + <hkern u1="V" u2="|" k="-41" /> + <hkern u1="V" u2="{" k="61" /> + <hkern u1="V" u2="x" k="10" /> + <hkern u1="V" u2="v" k="10" /> + <hkern u1="V" u2="_" k="102" /> + <hkern u1="V" u2="\" k="-41" /> + <hkern u1="V" u2="X" k="-20" /> + <hkern u1="V" u2="V" k="-20" /> + <hkern u1="V" u2="@" k="41" /> + <hkern u1="V" u2="?" k="-20" /> + <hkern u1="V" u2="=" k="20" /> + <hkern u1="V" u2="<" k="41" /> + <hkern u1="V" u2="/" k="123" /> + <hkern u1="V" u2="+" k="82" /> + <hkern u1="V" u2="*" k="-41" /> + <hkern u1="V" u2=")" k="-41" /> + <hkern u1="V" u2="&" k="92" /> + <hkern u1="W" u2="ï" k="-41" /> + <hkern u1="W" u2="î" k="-20" /> + <hkern u1="W" u2="ì" k="-51" /> + <hkern u1="X" u2="•" k="61" /> + <hkern u1="X" u2="÷" k="20" /> + <hkern u1="X" u2="ï" k="-20" /> + <hkern u1="X" u2="î" k="-20" /> + <hkern u1="X" u2="ì" k="-82" /> + <hkern u1="X" u2="×" k="20" /> + <hkern u1="X" u2="·" k="61" /> + <hkern u1="X" u2="¦" k="-20" /> + <hkern u1="X" u2="~" k="41" /> + <hkern u1="X" u2="|" k="-41" /> + <hkern u1="X" u2="{" k="61" /> + <hkern u1="X" u2="x" k="-41" /> + <hkern u1="X" u2="v" k="31" /> + <hkern u1="X" u2="_" k="-31" /> + <hkern u1="X" u2="\" k="-20" /> + <hkern u1="X" u2="V" k="-20" /> + <hkern u1="X" u2="@" k="51" /> + <hkern u1="X" u2="=" k="20" /> + <hkern u1="X" u2="<" k="41" /> + <hkern u1="X" u2="/" k="-20" /> + <hkern u1="X" u2="+" k="20" /> + <hkern u1="X" u2=")" k="-41" /> + <hkern u1="X" u2="&" k="20" /> + <hkern u1="Y" u2="š" k="92" /> + <hkern u1="Y" u2="õ" k="174" /> + <hkern u1="Y" u2="ò" k="154" /> + <hkern u1="Y" u2="ð" k="154" /> + <hkern u1="Y" u2="ï" k="-20" /> + <hkern u1="Y" u2="í" k="61" /> + <hkern u1="Y" u2="ì" k="-82" /> + <hkern u1="Z" u2="ï" k="-10" /> + <hkern u1="Z" u2="î" k="-10" /> + <hkern u1="Z" u2="ì" k="-31" /> + <hkern u1="[" u2="ì" k="-82" /> + <hkern u1="\" u2="x" k="-20" /> + <hkern u1="\" u2="v" k="20" /> + <hkern u1="\" u2="X" k="-20" /> + <hkern u1="\" u2="V" k="123" /> + <hkern u1="\" u2="8" k="41" /> + <hkern u1="\" u2="4" k="20" /> + <hkern u1="\" u2="3" k="20" /> + <hkern u1="\" u2="2" k="-20" /> + <hkern u1="_" u2="ƒ" k="-123" /> + <hkern u1="_" u2="x" k="-61" /> + <hkern u1="_" u2="v" k="82" /> + <hkern u1="_" u2="X" k="-31" /> + <hkern u1="_" u2="V" k="102" /> + <hkern u1="_" u2="8" k="20" /> + <hkern u1="_" u2="4" k="102" /> + <hkern u1="f" u2="ï" k="-41" /> + <hkern u1="f" u2="î" k="-41" /> + <hkern u1="f" u2="ì" k="-61" /> + <hkern u1="v" u2="‡" k="-61" /> + <hkern u1="v" u2="†" k="-61" /> + <hkern u1="v" u2="ł" k="-10" /> + <hkern u1="v" u2="¿" k="41" /> + <hkern u1="v" u2="¶" k="-41" /> + <hkern u1="v" u2="¦" k="-41" /> + <hkern u1="v" u2="x" k="-20" /> + <hkern u1="v" u2="v" k="-10" /> + <hkern u1="v" u2="_" k="82" /> + <hkern u1="v" u2="\" k="41" /> + <hkern u1="v" u2="@" k="-20" /> + <hkern u1="v" u2="?" k="-41" /> + <hkern u1="v" u2="/" k="41" /> + <hkern u1="v" u2="*" k="-20" /> + <hkern u1="v" u2=")" k="41" /> + <hkern u1="x" u2="™" k="20" /> + <hkern u1="x" u2="‡" k="-20" /> + <hkern u1="x" u2="†" k="-20" /> + <hkern u1="x" u2="·" k="20" /> + <hkern u1="x" u2="¡" k="-20" /> + <hkern u1="x" u2="|" k="-41" /> + <hkern u1="x" u2="x" k="-10" /> + <hkern u1="x" u2="v" k="-20" /> + <hkern u1="x" u2="_" k="-61" /> + <hkern u1="x" u2="\" k="41" /> + <hkern u1="x" u2="@" k="-10" /> + <hkern u1="x" u2="/" k="-41" /> + <hkern u1="x" u2="&" k="20" /> + <hkern u1="{" u2="ì" k="-82" /> + <hkern u1="{" u2="æ" k="10" /> + <hkern u1="{" u2="å" k="10" /> + <hkern u1="{" u2="ä" k="10" /> + <hkern u1="{" u2="ã" k="10" /> + <hkern u1="{" u2="â" k="10" /> + <hkern u1="{" u2="á" k="10" /> + <hkern u1="{" u2="à" k="10" /> + <hkern u1="{" u2="a" k="10" /> + <hkern u1="|" u2="x" k="-41" /> + <hkern u1="|" u2="X" k="-41" /> + <hkern u1="|" u2="V" k="-41" /> + <hkern u1="|" u2="7" k="-41" /> + <hkern u1="}" u2="Ł" k="-20" /> + <hkern u1="}" u2="X" k="20" /> + <hkern u1="}" u2="V" k="20" /> + <hkern u1="~" u2="X" k="41" /> + <hkern u1="~" u2="V" k="82" /> + <hkern u1="~" u2="7" k="41" /> + <hkern u1="~" u2="2" k="20" /> + <hkern u1="~" u2="1" k="20" /> + <hkern u1="¡" u2="x" k="-20" /> + <hkern u1="¡" u2="V" k="41" /> + <hkern u1="¡" u2="7" k="-20" /> + <hkern u1="¢" u2="3" k="20" /> + <hkern u1="¥" u2="7" k="-61" /> + <hkern u1="¥" u2="4" k="20" /> + <hkern u1="¦" u2="v" k="-41" /> + <hkern u1="¦" u2="X" k="-20" /> + <hkern u1="¦" u2="V" k="-41" /> + <hkern u1="¦" u2="8" k="20" /> + <hkern u1="¦" u2="7" k="-20" /> + <hkern u1="¬" u2="3" k="20" /> + <hkern u1="°" u2="7" k="-82" /> + <hkern u1="°" u2="4" k="82" /> + <hkern u1="°" u2="1" k="-61" /> + <hkern u1="±" u2="7" k="20" /> + <hkern u1="±" u2="3" k="20" /> + <hkern u1="·" u2="x" k="20" /> + <hkern u1="·" u2="X" k="61" /> + <hkern u1="·" u2="V" k="61" /> + <hkern u1="·" u2="7" k="41" /> + <hkern u1="·" u2="1" k="61" /> + <hkern u1="¿" u2="v" k="61" /> + <hkern u1="¿" u2="V" k="123" /> + <hkern u1="¿" u2="4" k="41" /> + <hkern u1="¿" u2="3" k="20" /> + <hkern u1="¿" u2="1" k="20" /> + <hkern u1="Æ" u2="ì" k="-20" /> + <hkern u1="Ç" u2="î" k="-31" /> + <hkern u1="È" u2="ì" k="-20" /> + <hkern u1="É" u2="ì" k="-20" /> + <hkern u1="Ê" u2="ì" k="-20" /> + <hkern u1="Ë" u2="ì" k="-20" /> + <hkern u1="Í" u2="Ï" k="-102" /> + <hkern u1="Í" u2="Ì" k="-184" /> + <hkern u1="Î" u2="Ï" k="-82" /> + <hkern u1="Î" u2="Î" k="-123" /> + <hkern u1="Î" u2="Ì" k="-61" /> + <hkern u1="Ï" u2="Ï" k="-41" /> + <hkern u1="Ï" u2="Î" k="-72" /> + <hkern u1="Ï" u2="Ì" k="-82" /> + <hkern u1="×" u2="X" k="20" /> + <hkern u1="×" u2="V" k="20" /> + <hkern u1="Ù" u2="î" k="-10" /> + <hkern u1="Ú" u2="î" k="-10" /> + <hkern u1="Û" u2="î" k="-10" /> + <hkern u1="Ü" u2="î" k="-10" /> + <hkern u1="Ý" u2="š" k="92" /> + <hkern u1="Ý" u2="õ" k="174" /> + <hkern u1="Ý" u2="ò" k="154" /> + <hkern u1="Ý" u2="ð" k="154" /> + <hkern u1="Ý" u2="ï" k="-20" /> + <hkern u1="Ý" u2="í" k="61" /> + <hkern u1="Ý" u2="ì" k="-82" /> + <hkern u1="Þ" u2="™" k="61" /> + <hkern u1="Þ" u2="‡" k="-20" /> + <hkern u1="Þ" u2="†" k="-20" /> + <hkern u1="Þ" u2="ƒ" k="82" /> + <hkern u1="Þ" u2="ł" k="-41" /> + <hkern u1="Þ" u2="Ł" k="-31" /> + <hkern u1="Þ" u2="ß" k="31" /> + <hkern u1="Þ" u2="¿" k="41" /> + <hkern u1="Þ" u2="·" k="-20" /> + <hkern u1="Þ" u2="~" k="-20" /> + <hkern u1="Þ" u2="x" k="-20" /> + <hkern u1="Þ" u2="v" k="-20" /> + <hkern u1="Þ" u2="_" k="61" /> + <hkern u1="Þ" u2="\" k="82" /> + <hkern u1="Þ" u2="X" k="41" /> + <hkern u1="Þ" u2="V" k="31" /> + <hkern u1="Þ" u2="@" k="-10" /> + <hkern u1="Þ" u2="?" k="-20" /> + <hkern u1="Þ" u2=">" k="-20" /> + <hkern u1="Þ" u2="/" k="82" /> + <hkern u1="Þ" u2=")" k="20" /> + <hkern u1="Þ" u2="&" k="20" /> + <hkern u1="ß" u2="ł" k="-10" /> + <hkern u1="ß" u2="ß" k="31" /> + <hkern u1="ß" u2="º" k="20" /> + <hkern u1="ß" u2="ª" k="41" /> + <hkern u1="ß" u2="\" k="20" /> + <hkern u1="ß" u2="/" k="-20" /> + <hkern u1="ß" u2=")" k="-41" /> + <hkern u1="ì" u2="\" k="41" /> + <hkern u1="í" u2="”" k="-123" /> + <hkern u1="í" u2="“" k="-61" /> + <hkern u1="í" u2="’" k="-123" /> + <hkern u1="í" u2="‘" k="-61" /> + <hkern u1="í" u2="ï" k="-82" /> + <hkern u1="í" u2="î" k="-82" /> + <hkern u1="í" u2="ì" k="-164" /> + <hkern u1="í" u2="}" k="-82" /> + <hkern u1="í" u2="]" k="-82" /> + <hkern u1="í" u2="\" k="-143" /> + <hkern u1="í" u2="?" k="-61" /> + <hkern u1="í" u2=")" k="-61" /> + <hkern u1="í" u2="'" k="-82" /> + <hkern u1="í" u2=""" k="-82" /> + <hkern u1="î" u2="”" k="-61" /> + <hkern u1="î" u2="“" k="-72" /> + <hkern u1="î" u2="’" k="-61" /> + <hkern u1="î" u2="‘" k="-72" /> + <hkern u1="î" u2="ï" k="-102" /> + <hkern u1="î" u2="î" k="-143" /> + <hkern u1="î" u2="\" k="-41" /> + <hkern u1="î" u2="?" k="-82" /> + <hkern u1="î" u2="*" k="-61" /> + <hkern u1="î" u2="'" k="-82" /> + <hkern u1="î" u2=""" k="-82" /> + <hkern u1="ï" u2="”" k="-61" /> + <hkern u1="ï" u2="“" k="-51" /> + <hkern u1="ï" u2="’" k="-61" /> + <hkern u1="ï" u2="‘" k="-51" /> + <hkern u1="ï" u2="ï" k="-72" /> + <hkern u1="ï" u2="î" k="-82" /> + <hkern u1="ï" u2="ì" k="-72" /> + <hkern u1="ï" u2="\" k="-20" /> + <hkern u1="ï" u2="?" k="-61" /> + <hkern u1="ï" u2="*" k="-51" /> + <hkern u1="ï" u2="'" k="-82" /> + <hkern u1="ï" u2=""" k="-82" /> + <hkern u1="ð" u2="\" k="82" /> + <hkern u1="÷" u2="X" k="20" /> + <hkern u1="÷" u2="V" k="82" /> + <hkern u1="÷" u2="4" k="20" /> + <hkern u1="÷" u2="3" k="41" /> + <hkern u1="÷" u2="1" k="20" /> + <hkern u1="ł" u2="‡" k="-41" /> + <hkern u1="ł" u2="ł" k="-20" /> + <hkern u1="ł" u2="·" k="-20" /> + <hkern u1="ł" u2="¶" k="-41" /> + <hkern u1="ł" u2="x" k="-41" /> + <hkern u1="ł" u2="v" k="-61" /> + <hkern u1="ł" u2="@" k="-61" /> + <hkern u1="ł" u2="/" k="-20" /> + <hkern u1="Œ" u2="ì" k="-20" /> + <hkern u1="Ÿ" u2="š" k="92" /> + <hkern u1="Ÿ" u2="õ" k="174" /> + <hkern u1="Ÿ" u2="ò" k="154" /> + <hkern u1="Ÿ" u2="ð" k="154" /> + <hkern u1="Ÿ" u2="ï" k="-20" /> + <hkern u1="Ÿ" u2="í" k="61" /> + <hkern u1="Ÿ" u2="ì" k="-82" /> + <hkern u1="Ž" u2="ï" k="-10" /> + <hkern u1="Ž" u2="î" k="-10" /> + <hkern u1="Ž" u2="ì" k="-31" /> + <hkern u1="ƒ" u2="‡" k="-41" /> + <hkern u1="ƒ" u2="†" k="-41" /> + <hkern u1="ƒ" u2="ƒ" k="184" /> + <hkern u1="ƒ" u2="÷" k="61" /> + <hkern u1="ƒ" u2="¶" k="20" /> + <hkern u1="ƒ" u2="~" k="41" /> + <hkern u1="ƒ" u2="x" k="20" /> + <hkern u1="ƒ" u2="v" k="20" /> + <hkern u1="ƒ" u2="_" k="143" /> + <hkern u1="ƒ" u2="\" k="-82" /> + <hkern u1="ƒ" u2="@" k="41" /> + <hkern u1="ƒ" u2=">" k="-82" /> + <hkern u1="ƒ" u2="=" k="20" /> + <hkern u1="ƒ" u2="<" k="41" /> + <hkern u1="ƒ" u2="/" k="82" /> + <hkern u1="ƒ" u2="+" k="41" /> + <hkern u1="ƒ" u2="*" k="-61" /> + <hkern u1="ƒ" u2=")" k="-20" /> + <hkern u1="ƒ" u2="&" k="41" /> + <hkern u1="‘" u2="ï" k="-61" /> + <hkern u1="‘" u2="î" k="-61" /> + <hkern u1="‘" u2="ì" k="-82" /> + <hkern u1="’" u2="ï" k="-61" /> + <hkern u1="’" u2="î" k="-82" /> + <hkern u1="’" u2="ì" k="-61" /> + <hkern u1="‚" u2="g" k="-20" /> + <hkern u1="“" u2="ï" k="-61" /> + <hkern u1="“" u2="î" k="-61" /> + <hkern u1="“" u2="ì" k="-82" /> + <hkern u1="”" u2="ï" k="-61" /> + <hkern u1="”" u2="î" k="-82" /> + <hkern u1="”" u2="ì" k="-61" /> + <hkern u1="„" u2="g" k="-20" /> + <hkern u1="†" u2="x" k="-20" /> + <hkern u1="†" u2="v" k="-61" /> + <hkern u1="†" u2="V" k="-41" /> + <hkern u1="‡" u2="x" k="-20" /> + <hkern u1="‡" u2="v" k="-61" /> + <hkern u1="‡" u2="V" k="-20" /> + <hkern u1="•" u2="X" k="61" /> + <hkern u1="•" u2="V" k="82" /> + <hkern u1="…" u2="g" k="20" /> + <hkern u1="−" u2="3" k="41" /> + <hkern u1="−" u2="2" k="20" /> + <hkern u1="−" u2=")" k="82" /> + <hkern u1="√" u2="9" k="82" /> + <hkern u1="√" u2="8" k="82" /> + <hkern u1="√" u2="5" k="102" /> + <hkern u1="√" u2="4" k="205" /> + <hkern u1="√" u2="3" k="82" /> + <hkern u1="√" u2="2" k="102" /> + <hkern u1="√" u2="1" k="61" /> + <hkern u1="∞" u2="7" k="20" /> + <hkern u1="∫" u2="9" k="-41" /> + <hkern u1="∫" u2="8" k="-20" /> + <hkern u1="∫" u2="7" k="-184" /> + <hkern u1="∫" u2="5" k="-41" /> + <hkern u1="∫" u2="3" k="-82" /> + <hkern u1="∫" u2="2" k="-82" /> + <hkern u1="∫" u2="1" k="-82" /> + <hkern u1="≈" u2="8" k="-41" /> + <hkern u1="≈" u2="7" k="41" /> + <hkern u1="≈" u2="4" k="-20" /> + <hkern u1="≠" u2="8" k="-20" /> + <hkern u1="≥" u2="1" k="20" /> + <hkern g1="approxequal" + g2="zero,six" + k="-41" /> + <hkern g1="asciitilde" + g2="zero,six" + k="-20" /> + <hkern g1="cent" + g2="zero,six" + k="20" /> + <hkern g1="copyright,registered" + g2="five" + k="20" /> + <hkern g1="copyright,registered" + g2="four" + k="20" /> + <hkern g1="copyright,registered" + g2="one" + k="20" /> + <hkern g1="copyright,registered" + g2="three" + k="61" /> + <hkern g1="dollar" + g2="zero,six" + k="20" /> + <hkern g1="equal" + g2="zero,six" + k="-20" /> + <hkern g1="greaterequal" + g2="zero,six" + k="-20" /> + <hkern g1="infinity" + g2="zero,six" + k="-20" /> + <hkern g1="less" + g2="zero,six" + k="-41" /> + <hkern g1="lessequal" + g2="zero,six" + k="-20" /> + <hkern g1="minus" + g2="zero,six" + k="-20" /> + <hkern g1="minus" + g2="bracketright,braceright" + k="82" /> + <hkern g1="notequal" + g2="zero,six" + k="-20" /> + <hkern g1="percent" + g2="zero,six" + k="41" /> + <hkern g1="plus" + g2="bracketright,braceright" + k="82" /> + <hkern g1="radical" + g2="zero,six" + k="205" /> + <hkern g1="sterling" + g2="zero,six" + k="20" /> + <hkern g1="backslash" + g2="zero,six" + k="82" /> + <hkern g1="bracketleft,braceleft" + g2="five" + k="41" /> + <hkern g1="bracketleft,braceleft" + g2="four" + k="61" /> + <hkern g1="bracketleft,braceleft" + g2="hyphen,endash,emdash" + k="41" /> + <hkern g1="bracketleft,braceleft" + g2="minus" + k="82" /> + <hkern g1="bracketleft,braceleft" + g2="nine" + k="-20" /> + <hkern g1="bracketleft,braceleft" + g2="plus" + k="82" /> + <hkern g1="bracketleft,braceleft" + g2="seven" + k="-102" /> + <hkern g1="colon,semicolon" + g2="nine" + k="-31" /> + <hkern g1="colon,semicolon" + g2="seven" + k="-20" /> + <hkern g1="comma,period,ellipsis" + g2="zero,six" + k="41" /> + <hkern g1="comma,period,ellipsis" + g2="four" + k="102" /> + <hkern g1="comma,period,ellipsis" + g2="seven" + k="41" /> + <hkern g1="comma,period,ellipsis" + g2="eight" + k="20" /> + <hkern g1="comma,period,ellipsis" + g2="one" + k="143" /> + <hkern g1="guilsinglleft" + g2="one" + k="-41" /> + <hkern g1="guilsinglleft" + g2="two" + k="-31" /> + <hkern g1="guilsinglright" + g2="seven" + k="61" /> + <hkern g1="guilsinglright" + g2="one" + k="61" /> + <hkern g1="guilsinglright" + g2="two" + k="20" /> + <hkern g1="guilsinglright" + g2="three" + k="20" /> + <hkern g1="hyphen,endash,emdash" + g2="five" + k="20" /> + <hkern g1="hyphen,endash,emdash" + g2="four" + k="10" /> + <hkern g1="hyphen,endash,emdash" + g2="seven" + k="61" /> + <hkern g1="hyphen,endash,emdash" + g2="one" + k="41" /> + <hkern g1="hyphen,endash,emdash" + g2="three" + k="41" /> + <hkern g1="hyphen,endash,emdash" + g2="bracketright,braceright" + k="41" /> + <hkern g1="hyphen,endash,emdash" + g2="parenright" + k="82" /> + <hkern g1="hyphen,endash,emdash" + g2="space" + k="102" /> + <hkern g1="numbersign" + g2="zero,six" + k="41" /> + <hkern g1="parenleft" + g2="zero,six" + k="41" /> + <hkern g1="parenleft" + g2="hyphen,endash,emdash" + k="82" /> + <hkern g1="questiondown" + g2="zero,six" + k="41" /> + <hkern g1="questiondown" + g2="quoteleft,quotedblleft" + k="61" /> + <hkern g1="questiondown" + g2="quotesinglbase,quotedblbase" + k="-82" /> + <hkern g1="quotedbl,quotesingle" + g2="four" + k="102" /> + <hkern g1="quotedbl,quotesingle" + g2="seven" + k="-41" /> + <hkern g1="quotedbl,quotesingle" + g2="one" + k="-61" /> + <hkern g1="quotedbl,quotesingle" + g2="two" + k="-20" /> + <hkern g1="quoteleft,quotedblleft" + g2="zero,six" + k="20" /> + <hkern g1="quoteleft,quotedblleft" + g2="four" + k="143" /> + <hkern g1="quoteleft,quotedblleft" + g2="seven" + k="-41" /> + <hkern g1="quoteleft,quotedblleft" + g2="one" + k="-41" /> + <hkern g1="quoteright,quotedblright" + g2="zero,six" + k="41" /> + <hkern g1="quoteright,quotedblright" + g2="five" + k="61" /> + <hkern g1="quoteright,quotedblright" + g2="four" + k="143" /> + <hkern g1="quoteright,quotedblright" + g2="seven" + k="-41" /> + <hkern g1="quoteright,quotedblright" + g2="eight" + k="20" /> + <hkern g1="quoteright,quotedblright" + g2="one" + k="-20" /> + <hkern g1="quoteright,quotedblright" + g2="two" + k="20" /> + <hkern g1="quoteright,quotedblright" + g2="comma,period,ellipsis" + k="143" /> + <hkern g1="quoteright,quotedblright" + g2="question" + k="-41" /> + <hkern g1="quoteright,quotedblright" + g2="questiondown" + k="123" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="zero,six" + k="61" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="four" + k="61" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="seven" + k="41" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="one" + k="82" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="two" + k="-20" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="three" + k="41" /> + <hkern g1="slash" + g2="zero,six" + k="82" /> + <hkern g1="underscore" + g2="zero,six" + k="41" /> + <hkern g1="eight" + g2="comma,period,ellipsis" + k="20" /> + <hkern g1="eight" + g2="zero,six" + k="10" /> + <hkern g1="five" + g2="comma,period,ellipsis" + k="20" /> + <hkern g1="five" + g2="quoteleft,quotedblleft" + k="20" /> + <hkern g1="five" + g2="quotesinglbase,quotedblbase" + k="20" /> + <hkern g1="four" + g2="quoteleft,quotedblleft" + k="41" /> + <hkern g1="four" + g2="quoteright,quotedblright" + k="41" /> + <hkern g1="one" + g2="comma,period,ellipsis" + k="20" /> + <hkern g1="one" + g2="zero,six" + k="-10" /> + <hkern g1="one" + g2="quoteright,quotedblright" + k="20" /> + <hkern g1="one" + g2="bracketright,braceright" + k="-20" /> + <hkern g1="one" + g2="copyright,registered" + k="20" /> + <hkern g1="one" + g2="quotedbl,quotesingle" + k="20" /> + <hkern g1="seven" + g2="comma,period,ellipsis" + k="225" /> + <hkern g1="seven" + g2="quoteleft,quotedblleft" + k="-61" /> + <hkern g1="seven" + g2="quotesinglbase,quotedblbase" + k="143" /> + <hkern g1="seven" + g2="quoteright,quotedblright" + k="-41" /> + <hkern g1="seven" + g2="copyright,registered" + k="20" /> + <hkern g1="seven" + g2="quotedbl,quotesingle" + k="-41" /> + <hkern g1="seven" + g2="colon,semicolon" + k="61" /> + <hkern g1="seven" + g2="guilsinglleft" + k="123" /> + <hkern g1="seven" + g2="guilsinglright" + k="41" /> + <hkern g1="seven" + g2="hyphen,endash,emdash" + k="102" /> + <hkern g1="six" + g2="comma,period,ellipsis" + k="20" /> + <hkern g1="six" + g2="quotesinglbase,quotedblbase" + k="20" /> + <hkern g1="six" + g2="copyright,registered" + k="20" /> + <hkern g1="three" + g2="comma,period,ellipsis" + k="20" /> + <hkern g1="three" + g2="quoteright,quotedblright" + k="10" /> + <hkern g1="three" + g2="hyphen,endash,emdash" + k="20" /> + <hkern g1="two" + g2="guilsinglright" + k="10" /> + <hkern g1="zero,nine" + g2="comma,period,ellipsis" + k="82" /> + <hkern g1="zero,nine" + g2="zero,six" + k="10" /> + <hkern g1="zero,nine" + g2="quoteleft,quotedblleft" + k="20" /> + <hkern g1="zero,nine" + g2="quotesinglbase,quotedblbase" + k="41" /> + <hkern g1="zero,nine" + g2="quoteright,quotedblright" + k="20" /> + <hkern g1="zero,nine" + g2="approxequal" + k="-41" /> + <hkern g1="zero,nine" + g2="asciitilde" + k="-20" /> + <hkern g1="zero,nine" + g2="backslash" + k="82" /> + <hkern g1="zero,nine" + g2="eight" + k="10" /> + <hkern g1="zero,nine" + g2="equal" + k="-20" /> + <hkern g1="zero,nine" + g2="five" + k="10" /> + <hkern g1="zero,nine" + g2="greaterequal" + k="-20" /> + <hkern g1="zero,nine" + g2="infinity" + k="-20" /> + <hkern g1="zero,nine" + g2="lessequal" + k="-20" /> + <hkern g1="zero,nine" + g2="minus" + k="-20" /> + <hkern g1="zero,nine" + g2="notequal" + k="-20" /> + <hkern g1="zero,nine" + g2="numbersign" + k="41" /> + <hkern g1="zero,nine" + g2="one" + k="10" /> + <hkern g1="zero,nine" + g2="parenright" + k="41" /> + <hkern g1="zero,nine" + g2="percent" + k="41" /> + <hkern g1="zero,nine" + g2="slash" + k="82" /> + <hkern g1="zero,nine" + g2="summation" + k="41" /> + <hkern g1="zero,nine" + g2="three" + k="10" /> + <hkern g1="zero,nine" + g2="underscore" + k="41" /> + <hkern g1="space" + g2="hyphen,endash,emdash" + k="102" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="51" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="J" + k="-20" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="Oslash" + k="41" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="S,Scaron" + k="20" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="133" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="31" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="V" + k="113" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="92" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="Y,Yacute,Ydieresis" + k="133" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="10" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="ampersand" + k="10" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="asciicircum" + k="41" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="asciitilde" + k="41" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="asterisk" + k="225" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="at" + k="61" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="backslash" + k="143" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="braceleft" + k="41" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="bullet" + k="61" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="20" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="copyright,registered" + k="51" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="dagger" + k="61" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="divide" + k="20" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="germandbls" + k="10" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="guilsinglleft" + k="41" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="hyphen,endash,emdash" + k="41" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="less" + k="41" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="m,n,p,r,ntilde" + k="10" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="ordfeminine" + k="225" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="ordmasculine" + k="184" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="oslash" + k="10" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="paragraph" + k="41" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="parenleft" + k="20" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="periodcentered" + k="41" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="plus" + k="31" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="question" + k="92" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="questiondown" + k="-61" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="quotedbl,quotesingle" + k="82" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="quoteleft,quotedblleft" + k="225" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="quoteright,quotedblright" + k="225" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="quotesinglbase,quotedblbase" + k="-20" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="slash" + k="-41" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="t" + k="51" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="trademark" + k="164" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="51" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="underscore" + k="-61" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="61" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="w" + k="61" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="51" /> + <hkern g1="B" + g2="J" + k="-31" /> + <hkern g1="B" + g2="Y,Yacute,Ydieresis" + k="10" /> + <hkern g1="B" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="20" /> + <hkern g1="B" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="-10" /> + <hkern g1="B" + g2="guilsinglleft" + k="20" /> + <hkern g1="B" + g2="m,n,p,r,ntilde" + k="10" /> + <hkern g1="B" + g2="oslash" + k="10" /> + <hkern g1="B" + g2="quoteright,quotedblright" + k="31" /> + <hkern g1="B" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="41" /> + <hkern g1="B" + g2="w" + k="10" /> + <hkern g1="B" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="10" /> + <hkern g1="B" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="41" /> + <hkern g1="B" + g2="comma,period,ellipsis" + k="31" /> + <hkern g1="B" + g2="f,fi,fl,f_f_i,f_f_l" + k="10" /> + <hkern g1="B" + g2="s,scaron" + k="10" /> + <hkern g1="C,Ccedilla" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="20" /> + <hkern g1="C,Ccedilla" + g2="Oslash" + k="10" /> + <hkern g1="C,Ccedilla" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="10" /> + <hkern g1="C,Ccedilla" + g2="V" + k="20" /> + <hkern g1="C,Ccedilla" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="31" /> + <hkern g1="C,Ccedilla" + g2="Y,Yacute,Ydieresis" + k="51" /> + <hkern g1="C,Ccedilla" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="41" /> + <hkern g1="C,Ccedilla" + g2="ampersand" + k="31" /> + <hkern g1="C,Ccedilla" + g2="asciicircum" + k="20" /> + <hkern g1="C,Ccedilla" + g2="at" + k="61" /> + <hkern g1="C,Ccedilla" + g2="backslash" + k="51" /> + <hkern g1="C,Ccedilla" + g2="braceleft" + k="41" /> + <hkern g1="C,Ccedilla" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="41" /> + <hkern g1="C,Ccedilla" + g2="copyright,registered" + k="10" /> + <hkern g1="C,Ccedilla" + g2="germandbls" + k="41" /> + <hkern g1="C,Ccedilla" + g2="guilsinglleft" + k="20" /> + <hkern g1="C,Ccedilla" + g2="m,n,p,r,ntilde" + k="31" /> + <hkern g1="C,Ccedilla" + g2="ordfeminine" + k="41" /> + <hkern g1="C,Ccedilla" + g2="ordmasculine" + k="10" /> + <hkern g1="C,Ccedilla" + g2="oslash" + k="31" /> + <hkern g1="C,Ccedilla" + g2="questiondown" + k="41" /> + <hkern g1="C,Ccedilla" + g2="slash" + k="51" /> + <hkern g1="C,Ccedilla" + g2="t" + k="10" /> + <hkern g1="C,Ccedilla" + g2="trademark" + k="20" /> + <hkern g1="C,Ccedilla" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="41" /> + <hkern g1="C,Ccedilla" + g2="underscore" + k="20" /> + <hkern g1="C,Ccedilla" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="20" /> + <hkern g1="C,Ccedilla" + g2="w" + k="20" /> + <hkern g1="C,Ccedilla" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="31" /> + <hkern g1="C,Ccedilla" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="41" /> + <hkern g1="C,Ccedilla" + g2="comma,period,ellipsis" + k="20" /> + <hkern g1="C,Ccedilla" + g2="f,fi,fl,f_f_i,f_f_l" + k="20" /> + <hkern g1="C,Ccedilla" + g2="s,scaron" + k="20" /> + <hkern g1="C,Ccedilla" + g2="X" + k="31" /> + <hkern g1="C,Ccedilla" + g2="b,h,k,l,thorn" + k="20" /> + <hkern g1="C,Ccedilla" + g2="bracketright,braceright" + k="-20" /> + <hkern g1="C,Ccedilla" + g2="florin" + k="82" /> + <hkern g1="C,Ccedilla" + g2="greater" + k="-20" /> + <hkern g1="C,Ccedilla" + g2="section" + k="10" /> + <hkern g1="C,Ccedilla" + g2="x" + k="20" /> + <hkern g1="C,Ccedilla" + g2="z,zcaron" + k="20" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="S,Scaron" + k="10" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="51" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="V" + k="51" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="41" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="Y,Yacute,Ydieresis" + k="92" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="ampersand" + k="41" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="asciicircum" + k="-20" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="asciitilde" + k="-20" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="asterisk" + k="10" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="backslash" + k="72" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="copyright,registered" + k="-20" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="guilsinglleft" + k="10" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="ordfeminine" + k="20" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="questiondown" + k="41" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="quoteleft,quotedblleft" + k="10" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="quoteright,quotedblright" + k="20" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="quotesinglbase,quotedblbase" + k="102" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="slash" + k="72" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="t" + k="-51" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="trademark" + k="72" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="underscore" + k="82" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="51" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="comma,period,ellipsis" + k="61" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="f,fi,fl,f_f_i,f_f_l" + k="-10" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="X" + k="61" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="bracketright,braceright" + k="41" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="florin" + k="123" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="greater" + k="-20" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="Lslash" + k="-20" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="Z,Zcaron" + k="20" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="bracketleft" + k="10" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="guilsinglright" + k="20" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="lslash" + k="-10" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="parenright" + k="41" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="10" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="J" + k="20" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="Oslash" + k="10" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="31" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="at" + k="51" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="braceleft" + k="61" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="41" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="germandbls" + k="41" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="guilsinglleft" + k="41" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="hyphen,endash,emdash" + k="10" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="m,n,p,r,ntilde" + k="31" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="ordfeminine" + k="20" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="ordmasculine" + k="20" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="oslash" + k="41" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="quoteright,quotedblright" + k="10" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="31" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="31" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="w" + k="31" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="31" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="f,fi,fl,f_f_i,f_f_l" + k="10" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="s,scaron" + k="10" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="bracketright,braceright" + k="-31" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="greater" + k="-20" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="guilsinglright" + k="20" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="parenright" + k="-20" /> + <hkern g1="F" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="10" /> + <hkern g1="F" + g2="J" + k="82" /> + <hkern g1="F" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="-61" /> + <hkern g1="F" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="10" /> + <hkern g1="F" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="72" /> + <hkern g1="F" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="72" /> + <hkern g1="F" + g2="guilsinglleft" + k="41" /> + <hkern g1="F" + g2="hyphen,endash,emdash" + k="20" /> + <hkern g1="F" + g2="m,n,p,r,ntilde" + k="51" /> + <hkern g1="F" + g2="oslash" + k="82" /> + <hkern g1="F" + g2="quotedbl,quotesingle" + k="-41" /> + <hkern g1="F" + g2="quoteleft,quotedblleft" + k="-41" /> + <hkern g1="F" + g2="quoteright,quotedblright" + k="-31" /> + <hkern g1="F" + g2="quotesinglbase,quotedblbase" + k="102" /> + <hkern g1="F" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="92" /> + <hkern g1="F" + g2="w" + k="41" /> + <hkern g1="F" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="31" /> + <hkern g1="F" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="92" /> + <hkern g1="F" + g2="comma,period,ellipsis" + k="205" /> + <hkern g1="F" + g2="f,fi,fl,f_f_i,f_f_l" + k="20" /> + <hkern g1="F" + g2="s,scaron" + k="31" /> + <hkern g1="F" + g2="b,h,k,l,thorn" + k="-10" /> + <hkern g1="F" + g2="bracketright,braceright" + k="-61" /> + <hkern g1="F" + g2="z,zcaron" + k="20" /> + <hkern g1="F" + g2="Z,Zcaron" + k="-20" /> + <hkern g1="F" + g2="guilsinglright" + k="20" /> + <hkern g1="F" + g2="Eth" + k="-10" /> + <hkern g1="F" + g2="i,igrave,iacute,icircumflex,idieresis" + k="10" /> + <hkern g1="F" + g2="j" + k="10" /> + <hkern g1="G" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="10" /> + <hkern g1="G" + g2="V" + k="31" /> + <hkern g1="G" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="20" /> + <hkern g1="G" + g2="Y,Yacute,Ydieresis" + k="61" /> + <hkern g1="G" + g2="ampersand" + k="31" /> + <hkern g1="G" + g2="asciitilde" + k="-10" /> + <hkern g1="G" + g2="backslash" + k="41" /> + <hkern g1="G" + g2="braceleft" + k="20" /> + <hkern g1="G" + g2="guilsinglleft" + k="10" /> + <hkern g1="G" + g2="questiondown" + k="-41" /> + <hkern g1="G" + g2="quoteright,quotedblright" + k="10" /> + <hkern g1="G" + g2="slash" + k="-10" /> + <hkern g1="G" + g2="t" + k="-51" /> + <hkern g1="G" + g2="trademark" + k="20" /> + <hkern g1="G" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="10" /> + <hkern g1="G" + g2="underscore" + k="-20" /> + <hkern g1="G" + g2="greater" + k="-41" /> + <hkern g1="G" + g2="lslash" + k="-41" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="10" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="at" + k="20" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="braceleft" + k="61" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="bullet" + k="20" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="guilsinglleft" + k="20" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="questiondown" + k="61" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="greater" + k="-20" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="ampersand" + k="10" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="asciitilde" + k="10" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="at" + k="10" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="braceleft" + k="41" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="bullet" + k="41" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="10" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="divide" + k="10" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="germandbls" + k="20" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="guilsinglleft" + k="20" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="hyphen,endash,emdash" + k="10" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="less" + k="10" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="m,n,p,r,ntilde" + k="10" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="oslash" + k="10" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="periodcentered" + k="20" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="plus" + k="10" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="questiondown" + k="41" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="quotesinglbase,quotedblbase" + k="82" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="slash" + k="41" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="underscore" + k="31" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="61" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="comma,period,ellipsis" + k="51" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="florin" + k="102" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="colon,semicolon" + k="10" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="exclamdown" + k="20" /> + <hkern g1="K" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="113" /> + <hkern g1="K" + g2="J" + k="10" /> + <hkern g1="K" + g2="Oslash" + k="41" /> + <hkern g1="K" + g2="S,Scaron" + k="20" /> + <hkern g1="K" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="20" /> + <hkern g1="K" + g2="V" + k="31" /> + <hkern g1="K" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="31" /> + <hkern g1="K" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="31" /> + <hkern g1="K" + g2="ampersand" + k="113" /> + <hkern g1="K" + g2="asciicircum" + k="41" /> + <hkern g1="K" + g2="asciitilde" + k="123" /> + <hkern g1="K" + g2="asterisk" + k="20" /> + <hkern g1="K" + g2="at" + k="113" /> + <hkern g1="K" + g2="braceleft" + k="82" /> + <hkern g1="K" + g2="bullet" + k="102" /> + <hkern g1="K" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="72" /> + <hkern g1="K" + g2="copyright,registered" + k="113" /> + <hkern g1="K" + g2="divide" + k="61" /> + <hkern g1="K" + g2="germandbls" + k="72" /> + <hkern g1="K" + g2="guilsinglleft" + k="133" /> + <hkern g1="K" + g2="hyphen,endash,emdash" + k="143" /> + <hkern g1="K" + g2="less" + k="102" /> + <hkern g1="K" + g2="m,n,p,r,ntilde" + k="31" /> + <hkern g1="K" + g2="ordfeminine" + k="82" /> + <hkern g1="K" + g2="ordmasculine" + k="61" /> + <hkern g1="K" + g2="oslash" + k="51" /> + <hkern g1="K" + g2="periodcentered" + k="82" /> + <hkern g1="K" + g2="plus" + k="82" /> + <hkern g1="K" + g2="question" + k="10" /> + <hkern g1="K" + g2="questiondown" + k="-20" /> + <hkern g1="K" + g2="slash" + k="-41" /> + <hkern g1="K" + g2="t" + k="61" /> + <hkern g1="K" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="113" /> + <hkern g1="K" + g2="underscore" + k="-41" /> + <hkern g1="K" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="92" /> + <hkern g1="K" + g2="w" + k="92" /> + <hkern g1="K" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="123" /> + <hkern g1="K" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="20" /> + <hkern g1="K" + g2="f,fi,fl,f_f_i,f_f_l" + k="41" /> + <hkern g1="K" + g2="s,scaron" + k="20" /> + <hkern g1="K" + g2="bracketright,braceright" + k="-10" /> + <hkern g1="K" + g2="florin" + k="102" /> + <hkern g1="K" + g2="section" + k="31" /> + <hkern g1="K" + g2="x" + k="20" /> + <hkern g1="K" + g2="guilsinglright" + k="51" /> + <hkern g1="K" + g2="parenright" + k="-10" /> + <hkern g1="K" + g2="colon,semicolon" + k="20" /> + <hkern g1="K" + g2="equal" + k="102" /> + <hkern g1="K" + g2="multiply" + k="20" /> + <hkern g1="L,Lslash" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="72" /> + <hkern g1="L,Lslash" + g2="J" + k="-41" /> + <hkern g1="L,Lslash" + g2="Oslash" + k="41" /> + <hkern g1="L,Lslash" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="143" /> + <hkern g1="L,Lslash" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="20" /> + <hkern g1="L,Lslash" + g2="V" + k="123" /> + <hkern g1="L,Lslash" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="102" /> + <hkern g1="L,Lslash" + g2="Y,Yacute,Ydieresis" + k="133" /> + <hkern g1="L,Lslash" + g2="ampersand" + k="51" /> + <hkern g1="L,Lslash" + g2="asciicircum" + k="102" /> + <hkern g1="L,Lslash" + g2="asciitilde" + k="102" /> + <hkern g1="L,Lslash" + g2="asterisk" + k="143" /> + <hkern g1="L,Lslash" + g2="at" + k="41" /> + <hkern g1="L,Lslash" + g2="backslash" + k="143" /> + <hkern g1="L,Lslash" + g2="braceleft" + k="61" /> + <hkern g1="L,Lslash" + g2="bullet" + k="41" /> + <hkern g1="L,Lslash" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="10" /> + <hkern g1="L,Lslash" + g2="copyright,registered" + k="41" /> + <hkern g1="L,Lslash" + g2="divide" + k="20" /> + <hkern g1="L,Lslash" + g2="germandbls" + k="10" /> + <hkern g1="L,Lslash" + g2="guilsinglleft" + k="41" /> + <hkern g1="L,Lslash" + g2="hyphen,endash,emdash" + k="82" /> + <hkern g1="L,Lslash" + g2="less" + k="82" /> + <hkern g1="L,Lslash" + g2="ordfeminine" + k="164" /> + <hkern g1="L,Lslash" + g2="ordmasculine" + k="164" /> + <hkern g1="L,Lslash" + g2="oslash" + k="10" /> + <hkern g1="L,Lslash" + g2="paragraph" + k="102" /> + <hkern g1="L,Lslash" + g2="plus" + k="41" /> + <hkern g1="L,Lslash" + g2="question" + k="92" /> + <hkern g1="L,Lslash" + g2="questiondown" + k="-61" /> + <hkern g1="L,Lslash" + g2="quotedbl,quotesingle" + k="164" /> + <hkern g1="L,Lslash" + g2="quoteleft,quotedblleft" + k="143" /> + <hkern g1="L,Lslash" + g2="quoteright,quotedblright" + k="123" /> + <hkern g1="L,Lslash" + g2="quotesinglbase,quotedblbase" + k="-41" /> + <hkern g1="L,Lslash" + g2="slash" + k="-82" /> + <hkern g1="L,Lslash" + g2="t" + k="31" /> + <hkern g1="L,Lslash" + g2="trademark" + k="225" /> + <hkern g1="L,Lslash" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="41" /> + <hkern g1="L,Lslash" + g2="underscore" + k="-61" /> + <hkern g1="L,Lslash" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="82" /> + <hkern g1="L,Lslash" + g2="w" + k="82" /> + <hkern g1="L,Lslash" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="92" /> + <hkern g1="L,Lslash" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="-41" /> + <hkern g1="L,Lslash" + g2="comma,period,ellipsis" + k="-20" /> + <hkern g1="L,Lslash" + g2="f,fi,fl,f_f_i,f_f_l" + k="20" /> + <hkern g1="L,Lslash" + g2="bracketright,braceright" + k="-20" /> + <hkern g1="L,Lslash" + g2="parenright" + k="-20" /> + <hkern g1="L,Lslash" + g2="equal" + k="41" /> + <hkern g1="L,Lslash" + g2="bar" + k="-41" /> + <hkern g1="L,Lslash" + g2="brokenbar" + k="-41" /> + <hkern g1="Oslash" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="41" /> + <hkern g1="Oslash" + g2="V" + k="41" /> + <hkern g1="Oslash" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="31" /> + <hkern g1="Oslash" + g2="Y,Yacute,Ydieresis" + k="72" /> + <hkern g1="Oslash" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="10" /> + <hkern g1="Oslash" + g2="backslash" + k="51" /> + <hkern g1="Oslash" + g2="germandbls" + k="31" /> + <hkern g1="Oslash" + g2="ordfeminine" + k="20" /> + <hkern g1="Oslash" + g2="questiondown" + k="72" /> + <hkern g1="Oslash" + g2="quotesinglbase,quotedblbase" + k="61" /> + <hkern g1="Oslash" + g2="slash" + k="72" /> + <hkern g1="Oslash" + g2="underscore" + k="82" /> + <hkern g1="Oslash" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="51" /> + <hkern g1="Oslash" + g2="comma,period,ellipsis" + k="61" /> + <hkern g1="Oslash" + g2="X" + k="31" /> + <hkern g1="Oslash" + g2="bracketright,braceright" + k="41" /> + <hkern g1="Oslash" + g2="florin" + k="82" /> + <hkern g1="Oslash" + g2="Z,Zcaron" + k="20" /> + <hkern g1="Oslash" + g2="lslash" + k="-10" /> + <hkern g1="Oslash" + g2="parenright" + k="41" /> + <hkern g1="P" + g2="J" + k="143" /> + <hkern g1="P" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="10" /> + <hkern g1="P" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="10" /> + <hkern g1="P" + g2="Y,Yacute,Ydieresis" + k="10" /> + <hkern g1="P" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="61" /> + <hkern g1="P" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="82" /> + <hkern g1="P" + g2="guilsinglleft" + k="61" /> + <hkern g1="P" + g2="hyphen,endash,emdash" + k="20" /> + <hkern g1="P" + g2="m,n,p,r,ntilde" + k="31" /> + <hkern g1="P" + g2="oslash" + k="72" /> + <hkern g1="P" + g2="quotedbl,quotesingle" + k="-20" /> + <hkern g1="P" + g2="quoteleft,quotedblleft" + k="-31" /> + <hkern g1="P" + g2="quoteright,quotedblright" + k="-20" /> + <hkern g1="P" + g2="quotesinglbase,quotedblbase" + k="102" /> + <hkern g1="P" + g2="t" + k="-20" /> + <hkern g1="P" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="41" /> + <hkern g1="P" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-20" /> + <hkern g1="P" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="123" /> + <hkern g1="P" + g2="comma,period,ellipsis" + k="246" /> + <hkern g1="P" + g2="f,fi,fl,f_f_i,f_f_l" + k="-10" /> + <hkern g1="P" + g2="s,scaron" + k="51" /> + <hkern g1="P" + g2="b,h,k,l,thorn" + k="20" /> + <hkern g1="P" + g2="z,zcaron" + k="20" /> + <hkern g1="P" + g2="Z,Zcaron" + k="20" /> + <hkern g1="P" + g2="guilsinglright" + k="-20" /> + <hkern g1="P" + g2="Eth" + k="-20" /> + <hkern g1="P" + g2="j" + k="10" /> + <hkern g1="Q" + g2="J" + k="-10" /> + <hkern g1="Q" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="41" /> + <hkern g1="Q" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="41" /> + <hkern g1="Q" + g2="Y,Yacute,Ydieresis" + k="82" /> + <hkern g1="Q" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="10" /> + <hkern g1="Q" + g2="quoteright,quotedblright" + k="20" /> + <hkern g1="Q" + g2="w" + k="10" /> + <hkern g1="Q" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="10" /> + <hkern g1="Q" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="31" /> + <hkern g1="Q" + g2="comma,period,ellipsis" + k="20" /> + <hkern g1="Q" + g2="bracketright,braceright" + k="20" /> + <hkern g1="Q" + g2="guilsinglright" + k="31" /> + <hkern g1="Q" + g2="Eth" + k="-10" /> + <hkern g1="R" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="10" /> + <hkern g1="R" + g2="J" + k="31" /> + <hkern g1="R" + g2="Oslash" + k="10" /> + <hkern g1="R" + g2="V" + k="10" /> + <hkern g1="R" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="10" /> + <hkern g1="R" + g2="Y,Yacute,Ydieresis" + k="20" /> + <hkern g1="R" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="10" /> + <hkern g1="R" + g2="ampersand" + k="10" /> + <hkern g1="R" + g2="asciicircum" + k="-20" /> + <hkern g1="R" + g2="asciitilde" + k="20" /> + <hkern g1="R" + g2="asterisk" + k="-20" /> + <hkern g1="R" + g2="at" + k="31" /> + <hkern g1="R" + g2="backslash" + k="10" /> + <hkern g1="R" + g2="braceleft" + k="20" /> + <hkern g1="R" + g2="bullet" + k="41" /> + <hkern g1="R" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="41" /> + <hkern g1="R" + g2="dagger" + k="-20" /> + <hkern g1="R" + g2="germandbls" + k="31" /> + <hkern g1="R" + g2="guilsinglleft" + k="31" /> + <hkern g1="R" + g2="hyphen,endash,emdash" + k="41" /> + <hkern g1="R" + g2="less" + k="10" /> + <hkern g1="R" + g2="m,n,p,r,ntilde" + k="10" /> + <hkern g1="R" + g2="ordfeminine" + k="41" /> + <hkern g1="R" + g2="oslash" + k="61" /> + <hkern g1="R" + g2="periodcentered" + k="10" /> + <hkern g1="R" + g2="plus" + k="20" /> + <hkern g1="R" + g2="quoteleft,quotedblleft" + k="-20" /> + <hkern g1="R" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="41" /> + <hkern g1="R" + g2="underscore" + k="-10" /> + <hkern g1="R" + g2="w" + k="20" /> + <hkern g1="R" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="10" /> + <hkern g1="R" + g2="comma,period,ellipsis" + k="10" /> + <hkern g1="R" + g2="s,scaron" + k="10" /> + <hkern g1="R" + g2="bracketright,braceright" + k="-20" /> + <hkern g1="R" + g2="florin" + k="102" /> + <hkern g1="R" + g2="greater" + k="-51" /> + <hkern g1="R" + g2="x" + k="-20" /> + <hkern g1="R" + g2="lslash" + k="10" /> + <hkern g1="R" + g2="parenright" + k="-10" /> + <hkern g1="R" + g2="multiply" + k="-31" /> + <hkern g1="R" + g2="daggerdbl" + k="-20" /> + <hkern g1="S,Scaron" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="10" /> + <hkern g1="S,Scaron" + g2="J" + k="-20" /> + <hkern g1="S,Scaron" + g2="Oslash" + k="10" /> + <hkern g1="S,Scaron" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="10" /> + <hkern g1="S,Scaron" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="10" /> + <hkern g1="S,Scaron" + g2="Y,Yacute,Ydieresis" + k="20" /> + <hkern g1="S,Scaron" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="10" /> + <hkern g1="S,Scaron" + g2="asciicircum" + k="10" /> + <hkern g1="S,Scaron" + g2="backslash" + k="51" /> + <hkern g1="S,Scaron" + g2="braceleft" + k="41" /> + <hkern g1="S,Scaron" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="20" /> + <hkern g1="S,Scaron" + g2="germandbls" + k="61" /> + <hkern g1="S,Scaron" + g2="guilsinglleft" + k="10" /> + <hkern g1="S,Scaron" + g2="hyphen,endash,emdash" + k="10" /> + <hkern g1="S,Scaron" + g2="m,n,p,r,ntilde" + k="61" /> + <hkern g1="S,Scaron" + g2="ordfeminine" + k="20" /> + <hkern g1="S,Scaron" + g2="ordmasculine" + k="20" /> + <hkern g1="S,Scaron" + g2="oslash" + k="20" /> + <hkern g1="S,Scaron" + g2="t" + k="20" /> + <hkern g1="S,Scaron" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="51" /> + <hkern g1="S,Scaron" + g2="underscore" + k="20" /> + <hkern g1="S,Scaron" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="41" /> + <hkern g1="S,Scaron" + g2="w" + k="41" /> + <hkern g1="S,Scaron" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="51" /> + <hkern g1="S,Scaron" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="10" /> + <hkern g1="S,Scaron" + g2="f,fi,fl,f_f_i,f_f_l" + k="31" /> + <hkern g1="S,Scaron" + g2="b,h,k,l,thorn" + k="10" /> + <hkern g1="S,Scaron" + g2="bracketright,braceright" + k="-31" /> + <hkern g1="S,Scaron" + g2="florin" + k="102" /> + <hkern g1="S,Scaron" + g2="greater" + k="-51" /> + <hkern g1="S,Scaron" + g2="x" + k="31" /> + <hkern g1="S,Scaron" + g2="z,zcaron" + k="10" /> + <hkern g1="S,Scaron" + g2="Lslash" + k="-10" /> + <hkern g1="S,Scaron" + g2="guilsinglright" + k="10" /> + <hkern g1="S,Scaron" + g2="i,igrave,iacute,icircumflex,idieresis" + k="10" /> + <hkern g1="S,Scaron" + g2="j" + k="10" /> + <hkern g1="S,Scaron" + g2="multiply" + k="10" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="51" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="J" + k="133" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="Oslash" + k="41" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="-41" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="V" + k="-41" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-41" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="Y,Yacute,Ydieresis" + k="-41" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="174" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="ampersand" + k="61" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="asciitilde" + k="143" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="asterisk" + k="-41" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="at" + k="51" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="backslash" + k="-82" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="braceleft" + k="61" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="bullet" + k="143" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="195" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="copyright,registered" + k="20" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="dagger" + k="-41" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="divide" + k="123" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="germandbls" + k="72" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="guilsinglleft" + k="246" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="hyphen,endash,emdash" + k="123" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="less" + k="82" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="m,n,p,r,ntilde" + k="123" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="oslash" + k="154" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="paragraph" + k="-20" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="periodcentered" + k="102" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="plus" + k="102" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="question" + k="-41" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="questiondown" + k="123" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="quotedbl,quotesingle" + k="-61" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="quoteleft,quotedblleft" + k="-61" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="quoteright,quotedblright" + k="-61" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="quotesinglbase,quotedblbase" + k="164" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="slash" + k="143" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="t" + k="51" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="trademark" + k="-61" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="195" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="underscore" + k="82" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="143" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="w" + k="154" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="143" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="133" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="comma,period,ellipsis" + k="205" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="f,fi,fl,f_f_i,f_f_l" + k="82" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="s,scaron" + k="143" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="X" + k="-31" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="bracketright,braceright" + k="-41" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="florin" + k="225" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="greater" + k="20" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="section" + k="-41" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="x" + k="154" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="z,zcaron" + k="92" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="guilsinglright" + k="164" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="lslash" + k="41" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="parenright" + k="-41" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="i,igrave,iacute,icircumflex,idieresis" + k="41" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="j" + k="20" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="colon,semicolon" + k="123" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="exclamdown" + k="61" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="equal" + k="61" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="multiply" + k="82" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="bar" + k="-41" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="brokenbar" + k="-41" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="daggerdbl" + k="-20" /> + <hkern g1="Thorn" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="-10" /> + <hkern g1="Thorn" + g2="J" + k="10" /> + <hkern g1="Thorn" + g2="Oslash" + k="-10" /> + <hkern g1="Thorn" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="41" /> + <hkern g1="Thorn" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="31" /> + <hkern g1="Thorn" + g2="Y,Yacute,Ydieresis" + k="41" /> + <hkern g1="Thorn" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="-20" /> + <hkern g1="Thorn" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="-20" /> + <hkern g1="Thorn" + g2="oslash" + k="10" /> + <hkern g1="Thorn" + g2="quotesinglbase,quotedblbase" + k="51" /> + <hkern g1="Thorn" + g2="t" + k="-51" /> + <hkern g1="Thorn" + g2="w" + k="-20" /> + <hkern g1="Thorn" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-20" /> + <hkern g1="Thorn" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="51" /> + <hkern g1="Thorn" + g2="comma,period,ellipsis" + k="61" /> + <hkern g1="Thorn" + g2="f,fi,fl,f_f_i,f_f_l" + k="-41" /> + <hkern g1="Thorn" + g2="s,scaron" + k="-20" /> + <hkern g1="Thorn" + g2="bracketright,braceright" + k="20" /> + <hkern g1="Thorn" + g2="z,zcaron" + k="-41" /> + <hkern g1="Thorn" + g2="Z,Zcaron" + k="20" /> + <hkern g1="Thorn" + g2="Eth" + k="-31" /> + <hkern g1="V" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="51" /> + <hkern g1="V" + g2="J" + k="113" /> + <hkern g1="V" + g2="Oslash" + k="51" /> + <hkern g1="V" + g2="S,Scaron" + k="10" /> + <hkern g1="V" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="-41" /> + <hkern g1="V" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-20" /> + <hkern g1="V" + g2="Y,Yacute,Ydieresis" + k="-20" /> + <hkern g1="V" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="113" /> + <hkern g1="V" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="113" /> + <hkern g1="V" + g2="copyright,registered" + k="20" /> + <hkern g1="V" + g2="guilsinglleft" + k="123" /> + <hkern g1="V" + g2="hyphen,endash,emdash" + k="113" /> + <hkern g1="V" + g2="m,n,p,r,ntilde" + k="61" /> + <hkern g1="V" + g2="oslash" + k="113" /> + <hkern g1="V" + g2="quotedbl,quotesingle" + k="-41" /> + <hkern g1="V" + g2="quoteleft,quotedblleft" + k="-20" /> + <hkern g1="V" + g2="quoteright,quotedblright" + k="-41" /> + <hkern g1="V" + g2="quotesinglbase,quotedblbase" + k="164" /> + <hkern g1="V" + g2="t" + k="10" /> + <hkern g1="V" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="72" /> + <hkern g1="V" + g2="w" + k="20" /> + <hkern g1="V" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="10" /> + <hkern g1="V" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="113" /> + <hkern g1="V" + g2="comma,period,ellipsis" + k="205" /> + <hkern g1="V" + g2="s,scaron" + k="41" /> + <hkern g1="V" + g2="bracketright,braceright" + k="-41" /> + <hkern g1="V" + g2="z,zcaron" + k="41" /> + <hkern g1="V" + g2="guilsinglright" + k="82" /> + <hkern g1="V" + g2="colon,semicolon" + k="82" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="41" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="J" + k="102" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="Oslash" + k="41" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="-41" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="V" + k="-20" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-20" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="Y,Yacute,Ydieresis" + k="-20" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="61" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="asciitilde" + k="41" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="asterisk" + k="-20" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="at" + k="41" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="backslash" + k="-41" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="braceleft" + k="61" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="bullet" + k="61" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="72" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="divide" + k="41" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="germandbls" + k="31" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="guilsinglleft" + k="61" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="hyphen,endash,emdash" + k="82" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="less" + k="41" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="m,n,p,r,ntilde" + k="61" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="oslash" + k="92" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="periodcentered" + k="61" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="plus" + k="61" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="questiondown" + k="123" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="quotedbl,quotesingle" + k="-41" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="quoteleft,quotedblleft" + k="-41" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="quoteright,quotedblright" + k="-41" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="quotesinglbase,quotedblbase" + k="164" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="slash" + k="123" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="t" + k="10" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="trademark" + k="-41" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="61" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="underscore" + k="92" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="10" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="w" + k="20" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="10" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="92" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="comma,period,ellipsis" + k="205" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="s,scaron" + k="41" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="X" + k="-20" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="bracketright,braceright" + k="-41" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="florin" + k="123" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="z,zcaron" + k="10" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="guilsinglright" + k="20" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="parenright" + k="-41" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="colon,semicolon" + k="20" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="exclamdown" + k="20" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="equal" + k="20" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="bar" + k="-41" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="brokenbar" + k="-41" /> + <hkern g1="X" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="41" /> + <hkern g1="X" + g2="J" + k="20" /> + <hkern g1="X" + g2="Oslash" + k="31" /> + <hkern g1="X" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="-31" /> + <hkern g1="X" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-20" /> + <hkern g1="X" + g2="Y,Yacute,Ydieresis" + k="-20" /> + <hkern g1="X" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="51" /> + <hkern g1="X" + g2="copyright,registered" + k="31" /> + <hkern g1="X" + g2="guilsinglleft" + k="164" /> + <hkern g1="X" + g2="hyphen,endash,emdash" + k="82" /> + <hkern g1="X" + g2="oslash" + k="20" /> + <hkern g1="X" + g2="quotedbl,quotesingle" + k="-20" /> + <hkern g1="X" + g2="quoteleft,quotedblleft" + k="-20" /> + <hkern g1="X" + g2="quoteright,quotedblright" + k="-20" /> + <hkern g1="X" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="20" /> + <hkern g1="X" + g2="w" + k="20" /> + <hkern g1="X" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="31" /> + <hkern g1="X" + g2="bracketright,braceright" + k="-41" /> + <hkern g1="X" + g2="z,zcaron" + k="-10" /> + <hkern g1="X" + g2="Z,Zcaron" + k="-20" /> + <hkern g1="X" + g2="guilsinglright" + k="61" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="92" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="J" + k="154" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="Oslash" + k="82" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="S,Scaron" + k="20" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="-41" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="V" + k="-20" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-20" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="Y,Yacute,Ydieresis" + k="-20" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="133" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="ampersand" + k="102" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="asciitilde" + k="123" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="at" + k="82" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="backslash" + k="-20" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="braceleft" + k="41" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="bullet" + k="143" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="184" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="copyright,registered" + k="51" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="divide" + k="102" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="germandbls" + k="82" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="guilsinglleft" + k="164" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="hyphen,endash,emdash" + k="164" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="less" + k="123" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="m,n,p,r,ntilde" + k="123" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="oslash" + k="184" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="periodcentered" + k="123" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="plus" + k="102" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="questiondown" + k="205" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="quotedbl,quotesingle" + k="-20" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="quoteleft,quotedblleft" + k="-41" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="quoteright,quotedblright" + k="-41" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="quotesinglbase,quotedblbase" + k="205" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="slash" + k="174" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="t" + k="20" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="123" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="underscore" + k="123" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="82" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="w" + k="102" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="92" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="133" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="comma,period,ellipsis" + k="266" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="f,fi,fl,f_f_i,f_f_l" + k="51" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="s,scaron" + k="133" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="X" + k="-20" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="bracketright,braceright" + k="-41" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="florin" + k="184" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="x" + k="61" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="z,zcaron" + k="72" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="Z,Zcaron" + k="-10" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="guilsinglright" + k="61" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="parenright" + k="-41" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="i,igrave,iacute,icircumflex,idieresis" + k="10" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="j" + k="10" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="colon,semicolon" + k="123" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="exclamdown" + k="61" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="equal" + k="61" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="multiply" + k="61" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="bar" + k="-20" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="brokenbar" + k="-20" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="41" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="Oslash" + k="41" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="-31" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="Y,Yacute,Ydieresis" + k="-10" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="at" + k="31" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="bullet" + k="20" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="10" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="germandbls" + k="10" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="guilsinglleft" + k="51" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="hyphen,endash,emdash" + k="92" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="periodcentered" + k="20" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="plus" + k="20" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="question" + k="-10" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="10" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="underscore" + k="-20" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="w" + k="10" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="41" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="X" + k="-20" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="florin" + k="41" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="ampersand" + k="20" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="asterisk" + k="41" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="at" + k="20" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="backslash" + k="123" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="ordfeminine" + k="20" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="ordmasculine" + k="31" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="quoteleft,quotedblleft" + k="82" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="quoteright,quotedblright" + k="41" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="trademark" + k="143" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="20" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="underscore" + k="-61" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="20" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="ampersand" + k="20" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="asterisk" + k="82" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="backslash" + k="205" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="ordfeminine" + k="41" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="ordmasculine" + k="61" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="quoteleft,quotedblleft" + k="82" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="quoteright,quotedblright" + k="82" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="trademark" + k="102" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="10" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="underscore" + k="41" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="41" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="bracketright,braceright" + k="41" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="colon,semicolon" + k="10" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="comma,period,ellipsis" + k="31" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="germandbls" + k="10" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="lslash" + k="-41" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="parenright" + k="41" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="question" + k="51" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="quotedbl,quotesingle" + k="41" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="quotesinglbase,quotedblbase" + k="20" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="slash" + k="102" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="t" + k="10" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="31" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="w" + k="20" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="x" + k="20" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="z,zcaron" + k="10" /> + <hkern g1="c,ccedilla" + g2="ampersand" + k="10" /> + <hkern g1="c,ccedilla" + g2="asterisk" + k="20" /> + <hkern g1="c,ccedilla" + g2="at" + k="10" /> + <hkern g1="c,ccedilla" + g2="backslash" + k="143" /> + <hkern g1="c,ccedilla" + g2="ordfeminine" + k="20" /> + <hkern g1="c,ccedilla" + g2="ordmasculine" + k="20" /> + <hkern g1="c,ccedilla" + g2="quoteleft,quotedblleft" + k="20" /> + <hkern g1="c,ccedilla" + g2="trademark" + k="61" /> + <hkern g1="c,ccedilla" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="10" /> + <hkern g1="c,ccedilla" + g2="underscore" + k="20" /> + <hkern g1="c,ccedilla" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="10" /> + <hkern g1="c,ccedilla" + g2="quotesinglbase,quotedblbase" + k="20" /> + <hkern g1="c,ccedilla" + g2="slash" + k="31" /> + <hkern g1="c,ccedilla" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="10" /> + <hkern g1="c,ccedilla" + g2="w" + k="10" /> + <hkern g1="c,ccedilla" + g2="x" + k="10" /> + <hkern g1="c,ccedilla" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="10" /> + <hkern g1="c,ccedilla" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="10" /> + <hkern g1="c,ccedilla" + g2="oslash" + k="10" /> + <hkern g1="c,ccedilla" + g2="questiondown" + k="20" /> + <hkern g1="d,l,fl" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="10" /> + <hkern g1="d,l,fl" + g2="germandbls" + k="10" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="ampersand" + k="31" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="asterisk" + k="41" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="backslash" + k="143" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="ordfeminine" + k="31" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="ordmasculine" + k="61" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="quoteleft,quotedblleft" + k="82" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="quoteright,quotedblright" + k="82" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="trademark" + k="143" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="31" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="underscore" + k="20" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="20" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="bracketright,braceright" + k="20" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="comma,period,ellipsis" + k="31" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="germandbls" + k="10" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="lslash" + k="-20" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="parenright" + k="20" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="question" + k="51" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="quotedbl,quotesingle" + k="20" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="quotesinglbase,quotedblbase" + k="20" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="20" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="w" + k="10" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="x" + k="10" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="questiondown" + k="41" /> + <hkern g1="f" + g2="asterisk" + k="-82" /> + <hkern g1="f" + g2="backslash" + k="-61" /> + <hkern g1="f" + g2="quoteleft,quotedblleft" + k="-82" /> + <hkern g1="f" + g2="quoteright,quotedblright" + k="-41" /> + <hkern g1="f" + g2="trademark" + k="-41" /> + <hkern g1="f" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="10" /> + <hkern g1="f" + g2="underscore" + k="41" /> + <hkern g1="f" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-31" /> + <hkern g1="f" + g2="bracketright,braceright" + k="-51" /> + <hkern g1="f" + g2="comma,period,ellipsis" + k="102" /> + <hkern g1="f" + g2="lslash" + k="-20" /> + <hkern g1="f" + g2="parenright" + k="-61" /> + <hkern g1="f" + g2="question" + k="-41" /> + <hkern g1="f" + g2="quotedbl,quotesingle" + k="-102" /> + <hkern g1="f" + g2="quotesinglbase,quotedblbase" + k="82" /> + <hkern g1="f" + g2="slash" + k="31" /> + <hkern g1="f" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="-20" /> + <hkern g1="f" + g2="w" + k="-20" /> + <hkern g1="f" + g2="x" + k="-20" /> + <hkern g1="f" + g2="z,zcaron" + k="-20" /> + <hkern g1="f" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="31" /> + <hkern g1="f" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="41" /> + <hkern g1="f" + g2="oslash" + k="41" /> + <hkern g1="f" + g2="questiondown" + k="51" /> + <hkern g1="f" + g2="asciicircum" + k="-41" /> + <hkern g1="f" + g2="asciitilde" + k="20" /> + <hkern g1="f" + g2="bar" + k="-61" /> + <hkern g1="f" + g2="brokenbar" + k="-82" /> + <hkern g1="f" + g2="bullet" + k="20" /> + <hkern g1="f" + g2="copyright,registered" + k="-20" /> + <hkern g1="f" + g2="dagger" + k="-82" /> + <hkern g1="f" + g2="daggerdbl" + k="-61" /> + <hkern g1="f" + g2="exclam" + k="-31" /> + <hkern g1="f" + g2="f,fi,fl,f_f_i,f_f_l" + k="10" /> + <hkern g1="f" + g2="greater" + k="-61" /> + <hkern g1="f" + g2="guilsinglleft" + k="20" /> + <hkern g1="f" + g2="hyphen,endash,emdash" + k="10" /> + <hkern g1="f" + g2="j" + k="-51" /> + <hkern g1="f" + g2="multiply" + k="-41" /> + <hkern g1="f" + g2="paragraph" + k="-61" /> + <hkern g1="f" + g2="plus" + k="20" /> + <hkern g1="f" + g2="section" + k="-41" /> + <hkern g1="g" + g2="ampersand" + k="10" /> + <hkern g1="g" + g2="backslash" + k="82" /> + <hkern g1="g" + g2="ordfeminine" + k="41" /> + <hkern g1="g" + g2="trademark" + k="61" /> + <hkern g1="g" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="10" /> + <hkern g1="g" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="10" /> + <hkern g1="g" + g2="w" + k="10" /> + <hkern g1="g" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="10" /> + <hkern g1="g" + g2="divide" + k="10" /> + <hkern g1="germandbls" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="10" /> + <hkern g1="germandbls" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="10" /> + <hkern g1="germandbls" + g2="bracketright,braceright" + k="-41" /> + <hkern g1="h,m,n,ntilde" + g2="asterisk" + k="20" /> + <hkern g1="h,m,n,ntilde" + g2="at" + k="10" /> + <hkern g1="h,m,n,ntilde" + g2="backslash" + k="133" /> + <hkern g1="h,m,n,ntilde" + g2="ordfeminine" + k="20" /> + <hkern g1="h,m,n,ntilde" + g2="quoteleft,quotedblleft" + k="82" /> + <hkern g1="h,m,n,ntilde" + g2="quoteright,quotedblright" + k="102" /> + <hkern g1="h,m,n,ntilde" + g2="trademark" + k="82" /> + <hkern g1="h,m,n,ntilde" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="20" /> + <hkern g1="h,m,n,ntilde" + g2="germandbls" + k="20" /> + <hkern g1="h,m,n,ntilde" + g2="question" + k="31" /> + <hkern g1="h,m,n,ntilde" + g2="copyright,registered" + k="10" /> + <hkern g1="h,m,n,ntilde" + g2="equal" + k="10" /> + <hkern g1="i,q,igrave,iacute,icircumflex,idieresis,fi,f_f_i" + g2="backslash" + k="123" /> + <hkern g1="j" + g2="at" + k="10" /> + <hkern g1="j" + g2="germandbls" + k="10" /> + <hkern g1="j" + g2="daggerdbl" + k="-102" /> + <hkern g1="k" + g2="ampersand" + k="10" /> + <hkern g1="k" + g2="asterisk" + k="20" /> + <hkern g1="k" + g2="at" + k="10" /> + <hkern g1="k" + g2="backslash" + k="51" /> + <hkern g1="k" + g2="quoteright,quotedblright" + k="-10" /> + <hkern g1="k" + g2="trademark" + k="41" /> + <hkern g1="k" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="10" /> + <hkern g1="k" + g2="underscore" + k="-61" /> + <hkern g1="k" + g2="colon,semicolon" + k="10" /> + <hkern g1="k" + g2="quotesinglbase,quotedblbase" + k="-41" /> + <hkern g1="k" + g2="slash" + k="-41" /> + <hkern g1="k" + g2="z,zcaron" + k="-10" /> + <hkern g1="k" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="31" /> + <hkern g1="k" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="51" /> + <hkern g1="k" + g2="asciitilde" + k="41" /> + <hkern g1="k" + g2="bullet" + k="41" /> + <hkern g1="k" + g2="dagger" + k="-20" /> + <hkern g1="k" + g2="daggerdbl" + k="-20" /> + <hkern g1="k" + g2="greater" + k="-82" /> + <hkern g1="k" + g2="guilsinglleft" + k="61" /> + <hkern g1="k" + g2="hyphen,endash,emdash" + k="61" /> + <hkern g1="k" + g2="multiply" + k="-41" /> + <hkern g1="k" + g2="plus" + k="20" /> + <hkern g1="k" + g2="divide" + k="20" /> + <hkern g1="k" + g2="braceleft" + k="20" /> + <hkern g1="k" + g2="exclamdown" + k="-20" /> + <hkern g1="k" + g2="less" + k="41" /> + <hkern g1="lslash" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-41" /> + <hkern g1="lslash" + g2="t" + k="-41" /> + <hkern g1="lslash" + g2="w" + k="-51" /> + <hkern g1="lslash" + g2="z,zcaron" + k="-41" /> + <hkern g1="lslash" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="-20" /> + <hkern g1="lslash" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="-20" /> + <hkern g1="lslash" + g2="oslash" + k="-10" /> + <hkern g1="lslash" + g2="copyright,registered" + k="-41" /> + <hkern g1="lslash" + g2="f,fi,fl,f_f_i,f_f_l" + k="-51" /> + <hkern g1="lslash" + g2="guilsinglleft" + k="-10" /> + <hkern g1="lslash" + g2="s,scaron" + k="-20" /> + <hkern g1="oslash" + g2="ampersand" + k="20" /> + <hkern g1="oslash" + g2="backslash" + k="143" /> + <hkern g1="oslash" + g2="quoteleft,quotedblleft" + k="41" /> + <hkern g1="oslash" + g2="quoteright,quotedblright" + k="41" /> + <hkern g1="oslash" + g2="underscore" + k="41" /> + <hkern g1="oslash" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="20" /> + <hkern g1="oslash" + g2="bracketright,braceright" + k="20" /> + <hkern g1="oslash" + g2="comma,period,ellipsis" + k="31" /> + <hkern g1="oslash" + g2="lslash" + k="-10" /> + <hkern g1="oslash" + g2="parenright" + k="20" /> + <hkern g1="oslash" + g2="quotedbl,quotesingle" + k="41" /> + <hkern g1="oslash" + g2="quotesinglbase,quotedblbase" + k="20" /> + <hkern g1="oslash" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="20" /> + <hkern g1="oslash" + g2="w" + k="20" /> + <hkern g1="oslash" + g2="x" + k="10" /> + <hkern g1="r" + g2="asterisk" + k="-82" /> + <hkern g1="r" + g2="at" + k="-41" /> + <hkern g1="r" + g2="backslash" + k="20" /> + <hkern g1="r" + g2="quoteright,quotedblright" + k="-61" /> + <hkern g1="r" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="-10" /> + <hkern g1="r" + g2="underscore" + k="20" /> + <hkern g1="r" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-31" /> + <hkern g1="r" + g2="bracketright,braceright" + k="-41" /> + <hkern g1="r" + g2="comma,period,ellipsis" + k="184" /> + <hkern g1="r" + g2="question" + k="-41" /> + <hkern g1="r" + g2="quotedbl,quotesingle" + k="-61" /> + <hkern g1="r" + g2="quotesinglbase,quotedblbase" + k="61" /> + <hkern g1="r" + g2="t" + k="-51" /> + <hkern g1="r" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="-31" /> + <hkern g1="r" + g2="w" + k="-20" /> + <hkern g1="r" + g2="x" + k="-61" /> + <hkern g1="r" + g2="z,zcaron" + k="-20" /> + <hkern g1="r" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="92" /> + <hkern g1="r" + g2="oslash" + k="10" /> + <hkern g1="r" + g2="questiondown" + k="20" /> + <hkern g1="r" + g2="bar" + k="-61" /> + <hkern g1="r" + g2="brokenbar" + k="-61" /> + <hkern g1="r" + g2="copyright,registered" + k="-61" /> + <hkern g1="r" + g2="dagger" + k="-61" /> + <hkern g1="r" + g2="daggerdbl" + k="-61" /> + <hkern g1="r" + g2="exclam" + k="-61" /> + <hkern g1="r" + g2="f,fi,fl,f_f_i,f_f_l" + k="-51" /> + <hkern g1="r" + g2="paragraph" + k="-82" /> + <hkern g1="r" + g2="section" + k="-61" /> + <hkern g1="r" + g2="exclamdown" + k="-41" /> + <hkern g1="r" + g2="s,scaron" + k="61" /> + <hkern g1="r" + g2="guilsinglright" + k="-61" /> + <hkern g1="s,scaron" + g2="asterisk" + k="20" /> + <hkern g1="s,scaron" + g2="backslash" + k="123" /> + <hkern g1="s,scaron" + g2="ordfeminine" + k="41" /> + <hkern g1="s,scaron" + g2="ordmasculine" + k="41" /> + <hkern g1="s,scaron" + g2="quoteleft,quotedblleft" + k="20" /> + <hkern g1="s,scaron" + g2="quoteright,quotedblright" + k="113" /> + <hkern g1="s,scaron" + g2="trademark" + k="82" /> + <hkern g1="s,scaron" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="10" /> + <hkern g1="s,scaron" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="10" /> + <hkern g1="s,scaron" + g2="germandbls" + k="10" /> + <hkern g1="s,scaron" + g2="quotedbl,quotesingle" + k="20" /> + <hkern g1="s,scaron" + g2="slash" + k="-20" /> + <hkern g1="s,scaron" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="10" /> + <hkern g1="s,scaron" + g2="w" + k="10" /> + <hkern g1="s,scaron" + g2="x" + k="10" /> + <hkern g1="s,scaron" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="20" /> + <hkern g1="s,scaron" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="10" /> + <hkern g1="s,scaron" + g2="oslash" + k="10" /> + <hkern g1="s,scaron" + g2="greater" + k="-20" /> + <hkern g1="t" + g2="quoteleft,quotedblleft" + k="20" /> + <hkern g1="t" + g2="quoteright,quotedblright" + k="51" /> + <hkern g1="t" + g2="underscore" + k="-61" /> + <hkern g1="t" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-10" /> + <hkern g1="t" + g2="bracketright,braceright" + k="-20" /> + <hkern g1="t" + g2="parenright" + k="-20" /> + <hkern g1="t" + g2="question" + k="-10" /> + <hkern g1="t" + g2="quotesinglbase,quotedblbase" + k="-20" /> + <hkern g1="t" + g2="slash" + k="-41" /> + <hkern g1="t" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="-20" /> + <hkern g1="t" + g2="w" + k="-20" /> + <hkern g1="t" + g2="x" + k="-41" /> + <hkern g1="t" + g2="z,zcaron" + k="-41" /> + <hkern g1="t" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="10" /> + <hkern g1="t" + g2="s,scaron" + k="-10" /> + <hkern g1="t" + g2="guilsinglright" + k="-20" /> + <hkern g1="t" + g2="m,n,p,r,ntilde" + k="20" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="at" + k="10" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="backslash" + k="102" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="ordfeminine" + k="41" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="ordmasculine" + k="31" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="quoteleft,quotedblleft" + k="20" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="trademark" + k="41" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="10" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="germandbls" + k="10" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="10" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="oslash" + k="10" /> + <hkern g1="v,wcircumflex,ycircumflex,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-20" /> + <hkern g1="v,wcircumflex,ycircumflex,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="comma,period,ellipsis" + k="184" /> + <hkern g1="v,wcircumflex,ycircumflex,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="quotedbl,quotesingle" + k="-20" /> + <hkern g1="v,wcircumflex,ycircumflex,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="quotesinglbase,quotedblbase" + k="82" /> + <hkern g1="v,wcircumflex,ycircumflex,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="t" + k="-31" /> + <hkern g1="v,wcircumflex,ycircumflex,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="w" + k="-10" /> + <hkern g1="v,wcircumflex,ycircumflex,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="z,zcaron" + k="-20" /> + <hkern g1="v,wcircumflex,ycircumflex,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="10" /> + <hkern g1="v,wcircumflex,ycircumflex,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="31" /> + <hkern g1="v,wcircumflex,ycircumflex,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="oslash" + k="20" /> + <hkern g1="v,wcircumflex,ycircumflex,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="f,fi,fl,f_f_i,f_f_l" + k="-31" /> + <hkern g1="v,wcircumflex,ycircumflex,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="hyphen,endash,emdash" + k="10" /> + <hkern g1="v,wcircumflex,ycircumflex,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="guilsinglright" + k="-41" /> + <hkern g1="w" + g2="ampersand" + k="20" /> + <hkern g1="w" + g2="at" + k="-31" /> + <hkern g1="w" + g2="backslash" + k="41" /> + <hkern g1="w" + g2="underscore" + k="82" /> + <hkern g1="w" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-10" /> + <hkern g1="w" + g2="bracketright,braceright" + k="41" /> + <hkern g1="w" + g2="comma,period,ellipsis" + k="82" /> + <hkern g1="w" + g2="parenright" + k="41" /> + <hkern g1="w" + g2="quotedbl,quotesingle" + k="-20" /> + <hkern g1="w" + g2="quotesinglbase,quotedblbase" + k="82" /> + <hkern g1="w" + g2="slash" + k="41" /> + <hkern g1="w" + g2="t" + k="-31" /> + <hkern g1="w" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="-10" /> + <hkern g1="w" + g2="x" + k="-10" /> + <hkern g1="w" + g2="z,zcaron" + k="-10" /> + <hkern g1="w" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="10" /> + <hkern g1="w" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="20" /> + <hkern g1="w" + g2="oslash" + k="20" /> + <hkern g1="w" + g2="questiondown" + k="41" /> + <hkern g1="w" + g2="bar" + k="-41" /> + <hkern g1="w" + g2="brokenbar" + k="-41" /> + <hkern g1="w" + g2="copyright,registered" + k="-20" /> + <hkern g1="w" + g2="dagger" + k="-61" /> + <hkern g1="w" + g2="daggerdbl" + k="-82" /> + <hkern g1="w" + g2="f,fi,fl,f_f_i,f_f_l" + k="-31" /> + <hkern g1="w" + g2="guilsinglleft" + k="20" /> + <hkern g1="w" + g2="hyphen,endash,emdash" + k="10" /> + <hkern g1="x" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="10" /> + <hkern g1="x" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-10" /> + <hkern g1="x" + g2="quotedbl,quotesingle" + k="-20" /> + <hkern g1="x" + g2="quotesinglbase,quotedblbase" + k="-20" /> + <hkern g1="x" + g2="t" + k="-10" /> + <hkern g1="x" + g2="w" + k="-10" /> + <hkern g1="x" + g2="z,zcaron" + k="-41" /> + <hkern g1="x" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="20" /> + <hkern g1="x" + g2="oslash" + k="10" /> + <hkern g1="x" + g2="f,fi,fl,f_f_i,f_f_l" + k="-31" /> + <hkern g1="x" + g2="guilsinglleft" + k="20" /> + <hkern g1="x" + g2="hyphen,endash,emdash" + k="20" /> + <hkern g1="y,yacute,ydieresis" + g2="ampersand" + k="41" /> + <hkern g1="y,yacute,ydieresis" + g2="at" + k="-20" /> + <hkern g1="y,yacute,ydieresis" + g2="backslash" + k="61" /> + <hkern g1="y,yacute,ydieresis" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="10" /> + <hkern g1="y,yacute,ydieresis" + g2="underscore" + k="102" /> + <hkern g1="y,yacute,ydieresis" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-10" /> + <hkern g1="y,yacute,ydieresis" + g2="comma,period,ellipsis" + k="225" /> + <hkern g1="y,yacute,ydieresis" + g2="question" + k="-20" /> + <hkern g1="y,yacute,ydieresis" + g2="quotedbl,quotesingle" + k="-20" /> + <hkern g1="y,yacute,ydieresis" + g2="quotesinglbase,quotedblbase" + k="143" /> + <hkern g1="y,yacute,ydieresis" + g2="slash" + k="20" /> + <hkern g1="y,yacute,ydieresis" + g2="t" + k="-10" /> + <hkern g1="y,yacute,ydieresis" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="-10" /> + <hkern g1="y,yacute,ydieresis" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="31" /> + <hkern g1="y,yacute,ydieresis" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="41" /> + <hkern g1="y,yacute,ydieresis" + g2="oslash" + k="31" /> + <hkern g1="y,yacute,ydieresis" + g2="questiondown" + k="61" /> + <hkern g1="y,yacute,ydieresis" + g2="bar" + k="-31" /> + <hkern g1="y,yacute,ydieresis" + g2="brokenbar" + k="-20" /> + <hkern g1="y,yacute,ydieresis" + g2="dagger" + k="-41" /> + <hkern g1="y,yacute,ydieresis" + g2="daggerdbl" + k="-41" /> + <hkern g1="y,yacute,ydieresis" + g2="f,fi,fl,f_f_i,f_f_l" + k="-20" /> + <hkern g1="y,yacute,ydieresis" + g2="guilsinglleft" + k="20" /> + <hkern g1="y,yacute,ydieresis" + g2="hyphen,endash,emdash" + k="41" /> + <hkern g1="y,yacute,ydieresis" + g2="s,scaron" + k="20" /> + <hkern g1="z,zcaron" + g2="backslash" + k="72" /> + <hkern g1="z,zcaron" + g2="underscore" + k="-20" /> + <hkern g1="z,zcaron" + g2="lslash" + k="-20" /> + <hkern g1="z,zcaron" + g2="x" + k="-10" /> + <hkern g1="z,zcaron" + g2="bar" + k="-31" /> + <hkern g1="z,zcaron" + g2="dagger" + k="-20" /> + <hkern g1="z,zcaron" + g2="daggerdbl" + k="-20" /> + <hkern g1="z,zcaron" + g2="guilsinglleft" + k="20" /> + <hkern g1="ampersand" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="143" /> + <hkern g1="ampersand" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="20" /> + <hkern g1="ampersand" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="72" /> + <hkern g1="ampersand" + g2="Y,Yacute,Ydieresis" + k="154" /> + <hkern g1="asciicircum" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="41" /> + <hkern g1="asciicircum" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="-20" /> + <hkern g1="asciitilde" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="143" /> + <hkern g1="asciitilde" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="10" /> + <hkern g1="asciitilde" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="41" /> + <hkern g1="asciitilde" + g2="Y,Yacute,Ydieresis" + k="123" /> + <hkern g1="asciitilde" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="41" /> + <hkern g1="asciitilde" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="-20" /> + <hkern g1="at" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="51" /> + <hkern g1="at" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="41" /> + <hkern g1="at" + g2="Y,Yacute,Ydieresis" + k="82" /> + <hkern g1="at" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="61" /> + <hkern g1="at" + g2="Eth" + k="-20" /> + <hkern g1="at" + g2="J" + k="20" /> + <hkern g1="at" + g2="Z,Zcaron" + k="41" /> + <hkern g1="at" + g2="w" + k="-31" /> + <hkern g1="at" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-31" /> + <hkern g1="at" + g2="z,zcaron" + k="-10" /> + <hkern g1="bar" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="-41" /> + <hkern g1="bar" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-41" /> + <hkern g1="bar" + g2="Y,Yacute,Ydieresis" + k="-20" /> + <hkern g1="bar" + g2="w" + k="-41" /> + <hkern g1="bar" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-31" /> + <hkern g1="bar" + g2="z,zcaron" + k="-20" /> + <hkern g1="brokenbar" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="-41" /> + <hkern g1="brokenbar" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-41" /> + <hkern g1="brokenbar" + g2="Y,Yacute,Ydieresis" + k="-20" /> + <hkern g1="brokenbar" + g2="w" + k="-41" /> + <hkern g1="brokenbar" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-20" /> + <hkern g1="copyright,registered" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="20" /> + <hkern g1="copyright,registered" + g2="Y,Yacute,Ydieresis" + k="51" /> + <hkern g1="copyright,registered" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="51" /> + <hkern g1="copyright,registered" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="-20" /> + <hkern g1="copyright,registered" + g2="Eth" + k="-20" /> + <hkern g1="copyright,registered" + g2="w" + k="-20" /> + <hkern g1="copyright,registered" + g2="z,zcaron" + k="10" /> + <hkern g1="copyright,registered" + g2="Lslash" + k="-20" /> + <hkern g1="copyright,registered" + g2="V" + k="20" /> + <hkern g1="copyright,registered" + g2="X" + k="31" /> + <hkern g1="copyright,registered" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="41" /> + <hkern g1="dagger" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="61" /> + <hkern g1="dagger" + g2="w" + k="-82" /> + <hkern g1="dagger" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-41" /> + <hkern g1="daggerdbl" + g2="w" + k="-82" /> + <hkern g1="daggerdbl" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-41" /> + <hkern g1="divide" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="123" /> + <hkern g1="divide" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="10" /> + <hkern g1="divide" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="41" /> + <hkern g1="divide" + g2="Y,Yacute,Ydieresis" + k="102" /> + <hkern g1="divide" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="20" /> + <hkern g1="equal" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="61" /> + <hkern g1="equal" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="20" /> + <hkern g1="equal" + g2="Y,Yacute,Ydieresis" + k="61" /> + <hkern g1="florin" + g2="w" + k="20" /> + <hkern g1="florin" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="123" /> + <hkern g1="florin" + g2="bracketright,braceright" + k="-41" /> + <hkern g1="florin" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="123" /> + <hkern g1="florin" + g2="colon,semicolon" + k="41" /> + <hkern g1="florin" + g2="comma,period,ellipsis" + k="164" /> + <hkern g1="florin" + g2="guilsinglleft" + k="41" /> + <hkern g1="florin" + g2="hyphen,endash,emdash" + k="61" /> + <hkern g1="florin" + g2="m,n,p,r,ntilde" + k="82" /> + <hkern g1="florin" + g2="oslash" + k="102" /> + <hkern g1="florin" + g2="quotedbl,quotesingle" + k="-82" /> + <hkern g1="florin" + g2="quoteleft,quotedblleft" + k="-82" /> + <hkern g1="florin" + g2="quoteright,quotedblright" + k="-82" /> + <hkern g1="florin" + g2="quotesinglbase,quotedblbase" + k="123" /> + <hkern g1="florin" + g2="s,scaron" + k="61" /> + <hkern g1="florin" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="82" /> + <hkern g1="greater" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="82" /> + <hkern g1="greater" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="10" /> + <hkern g1="greater" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="41" /> + <hkern g1="greater" + g2="Y,Yacute,Ydieresis" + k="123" /> + <hkern g1="greater" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="41" /> + <hkern g1="greater" + g2="Z,Zcaron" + k="31" /> + <hkern g1="less" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="20" /> + <hkern g1="less" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="-20" /> + <hkern g1="less" + g2="Z,Zcaron" + k="-20" /> + <hkern g1="less" + g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Ntilde,Thorn,IJ,uni01C4,uni01C7,uni01CA,uni01F1" + k="-20" /> + <hkern g1="multiply" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="82" /> + <hkern g1="multiply" + g2="Y,Yacute,Ydieresis" + k="61" /> + <hkern g1="paragraph" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="-61" /> + <hkern g1="plus" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="102" /> + <hkern g1="plus" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="10" /> + <hkern g1="plus" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="61" /> + <hkern g1="plus" + g2="Y,Yacute,Ydieresis" + k="102" /> + <hkern g1="plus" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="31" /> + <hkern g1="plus" + g2="Z,Zcaron" + k="41" /> + <hkern g1="trademark" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="-61" /> + <hkern g1="asterisk" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="225" /> + <hkern g1="asterisk" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="10" /> + <hkern g1="asterisk" + g2="J" + k="102" /> + <hkern g1="asterisk" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="-41" /> + <hkern g1="asterisk" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-20" /> + <hkern g1="asterisk" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="61" /> + <hkern g1="asterisk" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="82" /> + <hkern g1="asterisk" + g2="s,scaron" + k="20" /> + <hkern g1="backslash" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="72" /> + <hkern g1="backslash" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="102" /> + <hkern g1="backslash" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="123" /> + <hkern g1="backslash" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="-20" /> + <hkern g1="backslash" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="31" /> + <hkern g1="backslash" + g2="Oslash" + k="41" /> + <hkern g1="backslash" + g2="S,Scaron" + k="10" /> + <hkern g1="backslash" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="41" /> + <hkern g1="backslash" + g2="Y,Yacute,Ydieresis" + k="133" /> + <hkern g1="backslash" + g2="w" + k="20" /> + <hkern g1="backslash" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="20" /> + <hkern g1="braceright" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="20" /> + <hkern g1="braceright" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="41" /> + <hkern g1="braceright" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="20" /> + <hkern g1="braceright" + g2="Y,Yacute,Ydieresis" + k="82" /> + <hkern g1="braceright" + g2="Z,Zcaron" + k="41" /> + <hkern g1="bracketleft,braceleft" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="41" /> + <hkern g1="bracketleft,braceleft" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="-41" /> + <hkern g1="bracketleft,braceleft" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-41" /> + <hkern g1="bracketleft,braceleft" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="20" /> + <hkern g1="bracketleft,braceleft" + g2="Oslash" + k="41" /> + <hkern g1="bracketleft,braceleft" + g2="Y,Yacute,Ydieresis" + k="-82" /> + <hkern g1="bracketleft,braceleft" + g2="w" + k="41" /> + <hkern g1="bracketleft,braceleft" + g2="V" + k="-41" /> + <hkern g1="bracketleft,braceleft" + g2="X" + k="-41" /> + <hkern g1="bracketleft,braceleft" + g2="f,fi,fl,f_f_i,f_f_l" + k="20" /> + <hkern g1="bracketleft,braceleft" + g2="florin" + k="-123" /> + <hkern g1="bracketleft,braceleft" + g2="j" + k="-102" /> + <hkern g1="bracketleft,braceleft" + g2="oslash" + k="20" /> + <hkern g1="bullet" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="61" /> + <hkern g1="bullet" + g2="J" + k="20" /> + <hkern g1="bullet" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="143" /> + <hkern g1="bullet" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="82" /> + <hkern g1="bullet" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="20" /> + <hkern g1="bullet" + g2="Y,Yacute,Ydieresis" + k="143" /> + <hkern g1="bullet" + g2="Z,Zcaron" + k="41" /> + <hkern g1="bullet" + g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Ntilde,Thorn,IJ,uni01C4,uni01C7,uni01CA,uni01F1" + k="20" /> + <hkern g1="colon,semicolon" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="123" /> + <hkern g1="colon,semicolon" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="20" /> + <hkern g1="colon,semicolon" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="10" /> + <hkern g1="colon,semicolon" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="10" /> + <hkern g1="colon,semicolon" + g2="Y,Yacute,Ydieresis" + k="123" /> + <hkern g1="colon,semicolon" + g2="V" + k="82" /> + <hkern g1="comma,period,ellipsis" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="61" /> + <hkern g1="comma,period,ellipsis" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="205" /> + <hkern g1="comma,period,ellipsis" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="205" /> + <hkern g1="comma,period,ellipsis" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="31" /> + <hkern g1="comma,period,ellipsis" + g2="Oslash" + k="41" /> + <hkern g1="comma,period,ellipsis" + g2="S,Scaron" + k="20" /> + <hkern g1="comma,period,ellipsis" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="51" /> + <hkern g1="comma,period,ellipsis" + g2="Y,Yacute,Ydieresis" + k="266" /> + <hkern g1="comma,period,ellipsis" + g2="w" + k="82" /> + <hkern g1="comma,period,ellipsis" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="184" /> + <hkern g1="comma,period,ellipsis" + g2="V" + k="205" /> + <hkern g1="comma,period,ellipsis" + g2="t" + k="41" /> + <hkern g1="comma,period,ellipsis" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="20" /> + <hkern g1="comma,period,ellipsis" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="184" /> + <hkern g1="exclamdown" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="164" /> + <hkern g1="exclamdown" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="20" /> + <hkern g1="exclamdown" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="20" /> + <hkern g1="exclamdown" + g2="Y,Yacute,Ydieresis" + k="102" /> + <hkern g1="exclamdown" + g2="j" + k="-61" /> + <hkern g1="guilsinglleft" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="20" /> + <hkern g1="guilsinglleft" + g2="J" + k="-20" /> + <hkern g1="guilsinglleft" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="164" /> + <hkern g1="guilsinglleft" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="20" /> + <hkern g1="guilsinglleft" + g2="Y,Yacute,Ydieresis" + k="61" /> + <hkern g1="guilsinglleft" + g2="V" + k="82" /> + <hkern g1="guilsinglleft" + g2="X" + k="61" /> + <hkern g1="guilsinglleft" + g2="f,fi,fl,f_f_i,f_f_l" + k="-20" /> + <hkern g1="guilsinglleft" + g2="t" + k="-20" /> + <hkern g1="guilsinglleft" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="-41" /> + <hkern g1="guilsinglright" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="61" /> + <hkern g1="guilsinglright" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="10" /> + <hkern g1="guilsinglright" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="246" /> + <hkern g1="guilsinglright" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="61" /> + <hkern g1="guilsinglright" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="20" /> + <hkern g1="guilsinglright" + g2="Y,Yacute,Ydieresis" + k="164" /> + <hkern g1="guilsinglright" + g2="w" + k="20" /> + <hkern g1="guilsinglright" + g2="Z,Zcaron" + k="61" /> + <hkern g1="guilsinglright" + g2="V" + k="123" /> + <hkern g1="guilsinglright" + g2="X" + k="164" /> + <hkern g1="guilsinglright" + g2="florin" + k="61" /> + <hkern g1="guilsinglright" + g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Ntilde,Thorn,IJ,uni01C4,uni01C7,uni01CA,uni01F1" + k="20" /> + <hkern g1="guilsinglright" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="20" /> + <hkern g1="guilsinglright" + g2="lslash" + k="-41" /> + <hkern g1="guilsinglright" + g2="x" + k="20" /> + <hkern g1="hyphen,endash,emdash" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="41" /> + <hkern g1="hyphen,endash,emdash" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="123" /> + <hkern g1="hyphen,endash,emdash" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="82" /> + <hkern g1="hyphen,endash,emdash" + g2="S,Scaron" + k="20" /> + <hkern g1="hyphen,endash,emdash" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="10" /> + <hkern g1="hyphen,endash,emdash" + g2="Y,Yacute,Ydieresis" + k="164" /> + <hkern g1="hyphen,endash,emdash" + g2="w" + k="10" /> + <hkern g1="hyphen,endash,emdash" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="41" /> + <hkern g1="hyphen,endash,emdash" + g2="Z,Zcaron" + k="92" /> + <hkern g1="hyphen,endash,emdash" + g2="V" + k="113" /> + <hkern g1="hyphen,endash,emdash" + g2="X" + k="82" /> + <hkern g1="hyphen,endash,emdash" + g2="j" + k="20" /> + <hkern g1="hyphen,endash,emdash" + g2="t" + k="20" /> + <hkern g1="hyphen,endash,emdash" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="10" /> + <hkern g1="hyphen,endash,emdash" + g2="lslash" + k="-82" /> + <hkern g1="hyphen,endash,emdash" + g2="x" + k="20" /> + <hkern g1="hyphen,endash,emdash" + g2="Lslash" + k="-102" /> + <hkern g1="hyphen,endash,emdash" + g2="z,zcaron" + k="10" /> + <hkern g1="parenleft" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="41" /> + <hkern g1="parenleft" + g2="J" + k="31" /> + <hkern g1="parenleft" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="-41" /> + <hkern g1="parenleft" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-41" /> + <hkern g1="parenleft" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="10" /> + <hkern g1="parenleft" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="41" /> + <hkern g1="parenleft" + g2="Oslash" + k="41" /> + <hkern g1="parenleft" + g2="Y,Yacute,Ydieresis" + k="-41" /> + <hkern g1="parenleft" + g2="w" + k="41" /> + <hkern g1="parenleft" + g2="f,fi,fl,f_f_i,f_f_l" + k="20" /> + <hkern g1="parenleft" + g2="j" + k="-102" /> + <hkern g1="parenleft" + g2="oslash" + k="20" /> + <hkern g1="periodcentered" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="41" /> + <hkern g1="periodcentered" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="102" /> + <hkern g1="periodcentered" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="61" /> + <hkern g1="periodcentered" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="20" /> + <hkern g1="periodcentered" + g2="Y,Yacute,Ydieresis" + k="123" /> + <hkern g1="periodcentered" + g2="Z,Zcaron" + k="10" /> + <hkern g1="question" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="10" /> + <hkern g1="question" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="41" /> + <hkern g1="questiondown" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="-41" /> + <hkern g1="questiondown" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="82" /> + <hkern g1="questiondown" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="246" /> + <hkern g1="questiondown" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="123" /> + <hkern g1="questiondown" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="41" /> + <hkern g1="questiondown" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="41" /> + <hkern g1="questiondown" + g2="S,Scaron" + k="20" /> + <hkern g1="questiondown" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="61" /> + <hkern g1="questiondown" + g2="Y,Yacute,Ydieresis" + k="246" /> + <hkern g1="questiondown" + g2="w" + k="61" /> + <hkern g1="questiondown" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="20" /> + <hkern g1="questiondown" + g2="f,fi,fl,f_f_i,f_f_l" + k="20" /> + <hkern g1="questiondown" + g2="j" + k="-82" /> + <hkern g1="questiondown" + g2="t" + k="20" /> + <hkern g1="questiondown" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="20" /> + <hkern g1="questiondown" + g2="b,h,k,l,thorn" + k="20" /> + <hkern g1="questiondown" + g2="m,n,p,r,ntilde" + k="20" /> + <hkern g1="quotedbl,quotesingle" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="123" /> + <hkern g1="quotedbl,quotesingle" + g2="J" + k="82" /> + <hkern g1="quotedbl,quotesingle" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="-61" /> + <hkern g1="quotedbl,quotesingle" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-41" /> + <hkern g1="quotedbl,quotesingle" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="20" /> + <hkern g1="quotedbl,quotesingle" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="41" /> + <hkern g1="quotedbl,quotesingle" + g2="Y,Yacute,Ydieresis" + k="-20" /> + <hkern g1="quotedbl,quotesingle" + g2="w" + k="-20" /> + <hkern g1="quotedbl,quotesingle" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-20" /> + <hkern g1="quotedbl,quotesingle" + g2="V" + k="-41" /> + <hkern g1="quotedbl,quotesingle" + g2="X" + k="-20" /> + <hkern g1="quotedbl,quotesingle" + g2="f,fi,fl,f_f_i,f_f_l" + k="-41" /> + <hkern g1="quotedbl,quotesingle" + g2="oslash" + k="41" /> + <hkern g1="quotedbl,quotesingle" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="-20" /> + <hkern g1="quotedbl,quotesingle" + g2="x" + k="-20" /> + <hkern g1="quoteleft,quotedblleft" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="225" /> + <hkern g1="quoteleft,quotedblleft" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="20" /> + <hkern g1="quoteleft,quotedblleft" + g2="J" + k="195" /> + <hkern g1="quoteleft,quotedblleft" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="-61" /> + <hkern g1="quoteleft,quotedblleft" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-41" /> + <hkern g1="quoteleft,quotedblleft" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="92" /> + <hkern g1="quoteleft,quotedblleft" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="82" /> + <hkern g1="quoteleft,quotedblleft" + g2="s,scaron" + k="20" /> + <hkern g1="quoteleft,quotedblleft" + g2="Y,Yacute,Ydieresis" + k="-41" /> + <hkern g1="quoteleft,quotedblleft" + g2="V" + k="-41" /> + <hkern g1="quoteleft,quotedblleft" + g2="X" + k="-20" /> + <hkern g1="quoteleft,quotedblleft" + g2="f,fi,fl,f_f_i,f_f_l" + k="20" /> + <hkern g1="quoteleft,quotedblleft" + g2="oslash" + k="41" /> + <hkern g1="quoteleft,quotedblleft" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="20" /> + <hkern g1="quoteleft,quotedblleft" + g2="m,n,p,r,ntilde" + k="41" /> + <hkern g1="quoteright,quotedblright" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="225" /> + <hkern g1="quoteright,quotedblright" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="20" /> + <hkern g1="quoteright,quotedblright" + g2="J" + k="123" /> + <hkern g1="quoteright,quotedblright" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="-61" /> + <hkern g1="quoteright,quotedblright" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-41" /> + <hkern g1="quoteright,quotedblright" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="82" /> + <hkern g1="quoteright,quotedblright" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="123" /> + <hkern g1="quoteright,quotedblright" + g2="s,scaron" + k="113" /> + <hkern g1="quoteright,quotedblright" + g2="Y,Yacute,Ydieresis" + k="-41" /> + <hkern g1="quoteright,quotedblright" + g2="V" + k="-41" /> + <hkern g1="quoteright,quotedblright" + g2="X" + k="-20" /> + <hkern g1="quoteright,quotedblright" + g2="oslash" + k="41" /> + <hkern g1="quoteright,quotedblright" + g2="lslash" + k="61" /> + <hkern g1="quoteright,quotedblright" + g2="m,n,p,r,ntilde" + k="82" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="-61" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="102" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="164" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="164" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="20" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="Oslash" + k="20" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="S,Scaron" + k="20" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="82" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="Y,Yacute,Ydieresis" + k="225" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="w" + k="82" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="102" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="V" + k="164" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="f,fi,fl,f_f_i,f_f_l" + k="61" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="florin" + k="-41" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="j" + k="-20" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="t" + k="61" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="82" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="x" + k="-20" /> + <hkern g1="slash" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="143" /> + <hkern g1="slash" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="72" /> + <hkern g1="slash" + g2="J" + k="246" /> + <hkern g1="slash" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="-82" /> + <hkern g1="slash" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-41" /> + <hkern g1="slash" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="236" /> + <hkern g1="slash" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="123" /> + <hkern g1="slash" + g2="s,scaron" + k="164" /> + <hkern g1="slash" + g2="Oslash" + k="72" /> + <hkern g1="slash" + g2="S,Scaron" + k="20" /> + <hkern g1="slash" + g2="Y,Yacute,Ydieresis" + k="-20" /> + <hkern g1="slash" + g2="w" + k="41" /> + <hkern g1="slash" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="20" /> + <hkern g1="slash" + g2="f,fi,fl,f_f_i,f_f_l" + k="20" /> + <hkern g1="slash" + g2="oslash" + k="164" /> + <hkern g1="slash" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="92" /> + <hkern g1="slash" + g2="z,zcaron" + k="123" /> + <hkern g1="slash" + g2="m,n,p,r,ntilde" + k="123" /> + <hkern g1="underscore" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="-61" /> + <hkern g1="underscore" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="82" /> + <hkern g1="underscore" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="82" /> + <hkern g1="underscore" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="92" /> + <hkern g1="underscore" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="41" /> + <hkern g1="underscore" + g2="Oslash" + k="61" /> + <hkern g1="underscore" + g2="S,Scaron" + k="20" /> + <hkern g1="underscore" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="31" /> + <hkern g1="underscore" + g2="Y,Yacute,Ydieresis" + k="123" /> + <hkern g1="underscore" + g2="w" + k="82" /> + <hkern g1="underscore" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="82" /> + <hkern g1="underscore" + g2="Z,Zcaron" + k="-20" /> + <hkern g1="underscore" + g2="f,fi,fl,f_f_i,f_f_l" + k="20" /> + <hkern g1="underscore" + g2="j" + k="-102" /> + <hkern g1="underscore" + g2="oslash" + k="20" /> + <hkern g1="underscore" + g2="t" + k="31" /> + <hkern g1="underscore" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="31" /> + <hkern g1="ordmasculine" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="61" /> + </font> +</defs></svg> diff --git a/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-LightItalic.ttf b/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-LightItalic.ttf new file mode 100755 index 0000000000000000000000000000000000000000..2ba191149d7592bbac98c1c2ff1163314a0c8050 Binary files /dev/null and b/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-LightItalic.ttf differ diff --git a/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-LightItalic.woff b/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-LightItalic.woff new file mode 100755 index 0000000000000000000000000000000000000000..3098c84fe0a5f607f3d1288610f67922f97467a6 Binary files /dev/null and b/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-LightItalic.woff differ diff --git a/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-LightItalic.woff2 b/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-LightItalic.woff2 new file mode 100755 index 0000000000000000000000000000000000000000..f277bf31fb8aacf84ab671ddbc33e0beb1644de8 Binary files /dev/null and b/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-LightItalic.woff2 differ diff --git a/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-Medium.eot b/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-Medium.eot new file mode 100755 index 0000000000000000000000000000000000000000..e4cdef708535b3fbb15fa174ef90958752c66d9b Binary files /dev/null and b/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-Medium.eot differ diff --git a/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-Medium.svg b/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-Medium.svg new file mode 100755 index 0000000000000000000000000000000000000000..d2b4046435fd9209920086dd417d207a46e2ac31 --- /dev/null +++ b/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-Medium.svg @@ -0,0 +1,9369 @@ +<?xml version="1.0" standalone="no"?> +<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" > +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1"> +<metadata> +Created by FontForge 20161013 at Sun Mar 19 13:47:55 2017 + By ,,, +Copyright (c)2015, HK Grotesk Latin by Alfredo Marco Pradil (ammpradil@gmail.com) and HK Grotesk Cyrillic by Stefan Peev (http://www.contextbg.net/). HK Grotesk is a trademark of Alfredo Marco Pradil. +</metadata> +<defs> +<font id="HKGrotesk-Medium" horiz-adv-x="1042" > + <font-face + font-family="HK Grotesk Medium" + font-weight="500" + font-stretch="normal" + units-per-em="2048" + panose-1="0 0 6 0 0 0 0 0 0 0" + ascent="1434" + descent="-614" + x-height="999" + cap-height="1412" + bbox="-953 -513 2674 2240" + underline-thickness="82" + underline-position="-410" + unicode-range="U+0020-FB02" + /> +<missing-glyph horiz-adv-x="1134" +d="M158 0v954h819v-954h-819zM260 102h614v750h-614v-750z" /> + <glyph glyph-name="fi" unicode="fi" horiz-adv-x="1050" +d="M178 0v838h-151v161h152q0 93 21 168.5t66 137t123.5 95.5t185.5 34q61 0 110 -10.5t87.5 -32.5t58.5 -37t51 -43l-104 -141q-45 47 -92.5 70t-113.5 23q-113 0 -159.5 -69.5t-46.5 -194.5h530v-999h-183v838h-347v-838h-188z" /> + <glyph glyph-name="fl" unicode="fl" horiz-adv-x="1070" +d="M881 -20q-79 0 -123.5 56t-44.5 164v1009q-61 57 -161 57q-186 0 -186 -160v-107h189v-161h-189v-838h-188v838h-151v161h152v120q0 146 103.5 230.5t272.5 84.5q180 0 341 -146v-1047q0 -53 14.5 -68.5t49.5 -15.5q26 0 58 9v-166q-68 -20 -137 -20z" /> + <glyph glyph-name="f_f_i" unicode="ffi" horiz-adv-x="1654" +d="M178 0v838h-151v161h152v99q0 152 108.5 244t267.5 92q177 0 300 -106q54 50 135.5 78t161.5 28q166 0 334 -121l-99 -143q-90 98 -228 98q-100 0 -156 -45.5t-56 -128.5v-95h557v-999h-183v838h-374v-838h-190v838h-388v-838h-191zM369 999h390v99q0 50 6 91 +q-72 86 -200 86q-95 0 -145.5 -48t-50.5 -133v-95z" /> + <glyph glyph-name="f_f_l" unicode="ffl" horiz-adv-x="1674" +d="M1487 -20q-168 0 -168 183v1040q-20 24 -62.5 42t-101.5 18q-91 0 -146 -46t-55 -133v-85h182v-161h-182v-838h-190v838h-395v-838h-192v838h-150v161h152v106q0 155 107 242t266 87q181 0 313 -117q97 117 296 117q116 0 192 -36t150 -109v-1070q0 -35 13 -48.5 +t43 -13.5q33 0 65 9v-166q-80 -20 -137 -20zM369 999h397q0 132 6 176q-77 88 -205 88q-94 0 -146 -45.5t-52 -123.5v-95z" /> + <glyph glyph-name=".notdef" horiz-adv-x="1134" +d="M158 0v954h819v-954h-819zM260 102h614v750h-614v-750z" /> + <glyph glyph-name=".null" horiz-adv-x="0" + /> + <glyph glyph-name="nonmarkingreturn" horiz-adv-x="682" + /> + <glyph glyph-name="space" unicode=" " horiz-adv-x="518" + /> + <glyph glyph-name="exclam" unicode="!" horiz-adv-x="632" +d="M243 403l-29 1031h204l-28 -1031h-147zM202 0v227h229v-227h-229z" /> + <glyph glyph-name="quotedbl" unicode=""" horiz-adv-x="931" +d="M220 929v484h168v-484h-168zM543 929v484h168v-484h-168z" /> + <glyph glyph-name="numbersign" unicode="#" horiz-adv-x="1375" +d="M240 0l90 427h-237v140h267l61 300h-246v143h275l95 424h154l-96 -437h288l92 437h154l-93 -427h237v-140h-266l-61 -300h245v-142h-275l-92 -425h-153l92 436h-288l-90 -436h-153zM513 567h288l60 300h-287z" /> + <glyph glyph-name="dollar" unicode="$" horiz-adv-x="1122" +d="M485 -246v234q-162 23 -278 123.5t-142 263.5l196 48q14 -123 102 -188.5t215 -65.5q123 0 192 55.5t69 167.5q0 50 -23.5 91t-62.5 70.5t-90 55t-107.5 49.5t-113 49t-107.5 58.5t-90 73.5t-62.5 97.5t-23.5 127.5q0 145 92.5 242.5t233.5 121.5v231h151v-227 +q234 -29 341 -227l-161 -100q-39 75 -105 113t-145 38q-85 0 -144.5 -50t-59.5 -129q0 -60 37.5 -106t97.5 -77.5t132.5 -61t145 -65.5t132.5 -81t97.5 -118t37.5 -167q0 -176 -115 -289.5t-291 -127.5v-230h-151z" /> + <glyph glyph-name="percent" unicode="%" horiz-adv-x="1559" +d="M370 787q-59 0 -106 21.5t-76.5 55t-49 78t-27 86.5t-7.5 83q0 42 7.5 84t26.5 86.5t47.5 78t75 55t103.5 21.5q66 0 118 -29t83 -77t47 -104.5t16 -116.5q0 -80 -26 -151t-86.5 -121t-145.5 -50zM303 -8l771 1437h169l-771 -1437h-169zM367 921q56 0 87 57t31 133 +q0 78 -31.5 133.5t-89.5 55.5q-59 0 -90 -55.5t-31 -133.5t32 -134t92 -56zM1197 -3q-59 0 -106 21.5t-76 55t-48.5 78t-27 86.5t-7.5 84t7.5 84.5t26.5 86.5t47.5 78t74.5 55.5t103 21.5q66 0 118 -29t83.5 -77t47.5 -104.5t16 -116.5q0 -81 -26.5 -152.5t-87 -121.5 +t-145.5 -50zM1195 130q56 0 87 58t31 135q0 78 -31.5 134t-90.5 56q-57 0 -88.5 -56.5t-31.5 -134.5q0 -79 31.5 -135.5t92.5 -56.5z" /> + <glyph glyph-name="ampersand" unicode="&" horiz-adv-x="1379" +d="M1297 53l-133 -117l-190 221q-179 -179 -437 -179q-188 0 -310 88.5t-122 248.5q0 78 27 145.5t79.5 123t104.5 95t127 85.5q-34 39 -58 69.5t-55 79t-48 99t-17 99.5q0 96 52.5 170.5t135 111.5t177.5 37q144 0 244 -91.5t100 -226.5q0 -62 -21 -117.5t-61 -102.5 +t-83.5 -83.5t-103.5 -76.5l251 -288q46 112 54 250l182 -20q-14 -208 -110 -375zM445 1108q0 -96 141 -258q106 67 162 126.5t56 133.5q0 70 -49 117.5t-123 47.5q-76 0 -131.5 -44.5t-55.5 -122.5zM535 146q200 0 326 142l-302 351q-51 -32 -85.5 -56t-73 -57.5 +t-61.5 -63.5t-38.5 -68.5t-15.5 -79.5q0 -84 70 -126t180 -42z" /> + <glyph glyph-name="quotesingle" unicode="'" horiz-adv-x="608" +d="M220 958v484h168v-484h-168z" /> + <glyph glyph-name="parenleft" unicode="(" horiz-adv-x="566" +d="M357 -75q-109 117 -175.5 344t-66.5 437q0 238 62 442t177 337h171q-255 -325 -255 -783q0 -233 62 -421t191 -356h-166z" /> + <glyph glyph-name="parenright" unicode=")" horiz-adv-x="566" +d="M43 -75q128 168 190.5 357.5t62.5 420.5q0 220 -65 421t-190 361h170q115 -132 177.5 -334t62.5 -444q0 -213 -66.5 -440t-175.5 -342h-166z" /> + <glyph glyph-name="asterisk" unicode="*" horiz-adv-x="884" +d="M324 842l-123 84l166 180l-239 36l48 138l220 -91l-30 224h152l-30 -224l220 91l47 -138l-239 -36l166 -180l-123 -84l-118 221z" /> + <glyph glyph-name="plus" unicode="+" horiz-adv-x="1259" +d="M556 106v446h-456v147h456v444h147v-444h457v-147h-457v-446h-147z" /> + <glyph glyph-name="comma" unicode="," horiz-adv-x="627" +d="M132 -315l139 579h235l-249 -579h-125z" /> + <glyph glyph-name="hyphen" unicode="-" horiz-adv-x="850" +d="M152 545v147h546v-147h-546z" /> + <glyph glyph-name="period" unicode="." horiz-adv-x="655" +d="M217 0v227h221v-227h-221z" /> + <glyph glyph-name="slash" unicode="/" horiz-adv-x="930" +d="M-12 -430l767 1946h187l-765 -1946h-189z" /> + <glyph glyph-name="zero" unicode="0" horiz-adv-x="1170" +d="M595 -20q-100 0 -184 32t-142.5 88.5t-102.5 127.5t-69.5 154t-37.5 163.5t-12 161.5q0 98 16 195t56 195t99 172t153 120.5t210 46.5q107 0 197.5 -41.5t154 -112t108 -164.5t65.5 -199t21 -215q0 -109 -20.5 -212.5t-64 -196.5t-105 -163t-150 -111t-192.5 -41z +M589 169q86 0 152 51t102.5 133.5t54.5 173t18 182.5q0 95 -18.5 184.5t-56 170t-105 129.5t-155.5 49q-71 0 -129 -33t-95.5 -86.5t-63 -124.5t-36 -143.5t-10.5 -147.5q0 -95 18.5 -185t56.5 -172t107 -131.5t160 -49.5z" /> + <glyph glyph-name="one" unicode="1" horiz-adv-x="1170" +d="M569 0v1060h-375v157h223q78 0 121 44t43 119v33h189v-1413h-201z" /> + <glyph glyph-name="two" unicode="2" horiz-adv-x="1170" +d="M65 0v169q306 198 496 388q121 125 184.5 233t63.5 222q0 110 -59 174t-164 64q-87 0 -147 -45t-87.5 -115.5t-32.5 -163.5l-199 16q0 214 126 352t336 138q193 0 313.5 -114.5t120.5 -295.5q0 -152 -86.5 -295.5t-243.5 -298.5q-152 -150 -310 -249h709v-179h-1020z" /> + <glyph glyph-name="three" unicode="3" horiz-adv-x="1170" +d="M566 -20q-140 0 -251 47.5t-180 149t-69 244.5l190 15q0 -127 89 -200t222 -73q127 0 216.5 67.5t89.5 190.5q0 115 -77 178.5t-201 63.5h-130v173h130q95 0 147.5 53.5t52.5 144.5q0 101 -66.5 158t-165.5 57q-104 0 -172 -61.5t-69 -164.5l-188 17q0 121 58.5 212 +t154.5 136.5t214 45.5q115 0 211 -43.5t155.5 -130.5t59.5 -201q0 -90 -38 -167.5t-107 -126.5q109 -48 163.5 -141t57.5 -213q0 -105 -39.5 -188.5t-108.5 -135.5t-158 -79.5t-191 -27.5z" /> + <glyph glyph-name="four" unicode="4" horiz-adv-x="1170" +d="M680 0v358h-653v117l677 938h175v-875h225v-180h-225v-358h-199zM279 538h401v565z" /> + <glyph glyph-name="five" unicode="5" horiz-adv-x="1170" +d="M580 -20q-181 0 -313.5 117t-170.5 293l185 56q11 -55 31.5 -102.5t54.5 -91.5t88 -69t123 -25q67 0 122.5 27t91 72t55 100.5t19.5 114.5q0 124 -74.5 211t-206.5 87q-80 0 -151.5 -38.5t-113.5 -106.5l-180 61l130 727h740v-183h-581l-65 -366q104 82 249 82 +q196 0 328 -139.5t132 -335.5q0 -131 -64.5 -243.5t-178.5 -180t-250 -67.5z" /> + <glyph glyph-name="six" unicode="6" horiz-adv-x="1170" +d="M589 -20q-100 0 -191 37.5t-156 101.5t-103.5 152.5t-38.5 185.5q0 137 72 248l417 708h229l-309 -497q47 7 81 7q134 0 245.5 -58.5t177.5 -164.5t66 -237q0 -128 -62 -238t-175.5 -177.5t-252.5 -67.5zM590 167q121 0 207 86.5t86 207.5t-86 207.5t-207 86.5t-207 -86 +t-86 -208q0 -121 86 -207.5t207 -86.5z" /> + <glyph glyph-name="seven" unicode="7" horiz-adv-x="1170" +d="M235 0l600 1231h-736v182h977v-102l-617 -1311h-224z" /> + <glyph glyph-name="eight" unicode="8" horiz-adv-x="1170" +d="M585 -20q-100 0 -188.5 26.5t-158 77t-110 131.5t-40.5 182q0 124 60 218t169 148q-76 51 -116.5 128.5t-40.5 168.5q0 115 60 201.5t155.5 129.5t210.5 43q114 0 209.5 -43t155.5 -129.5t60 -200.5q0 -93 -40.5 -170t-114.5 -128q109 -54 167.5 -148.5t58.5 -216.5 +q0 -102 -40.5 -183.5t-110 -132t-158 -76.5t-188.5 -26zM590 833q100 0 164.5 57.5t64.5 156.5q0 102 -65.5 159.5t-164.5 57.5q-95 0 -162.5 -55t-67.5 -153q0 -101 63.5 -162t167.5 -61zM584 150q126 0 211.5 67.5t85.5 191.5q0 122 -84.5 191t-212.5 69 +q-129 0 -213.5 -69t-84.5 -190q0 -125 86.5 -192.5t211.5 -67.5z" /> + <glyph glyph-name="nine" unicode="9" horiz-adv-x="1170" +d="M355 0l306 497q-46 -7 -81 -7q-204 0 -346.5 131.5t-142.5 328.5q0 95 37 183.5t101 154.5t156 106t197 40q203 0 345.5 -140t142.5 -338q0 -136 -70 -247l-419 -709h-226zM580 658q122 0 208 86t86 208t-86 208.5t-208 86.5q-121 0 -206.5 -86.5t-85.5 -208.5t85.5 -208 +t206.5 -86z" /> + <glyph glyph-name="colon" unicode=":" horiz-adv-x="673" +d="M222 728v226h229v-226h-229zM222 0v227h229v-227h-229z" /> + <glyph glyph-name="semicolon" unicode=";" horiz-adv-x="656" +d="M228 728v226h229v-226h-229zM118 -315l139 579h235l-249 -579h-125z" /> + <glyph glyph-name="less" unicode="<" horiz-adv-x="1223" +d="M1014 161l-938 513l938 512l85 -146l-706 -366l706 -367z" /> + <glyph glyph-name="equal" unicode="=" horiz-adv-x="1265" +d="M237 764v169h792v-169h-792zM237 410v170h792v-170h-792z" /> + <glyph glyph-name="greater" unicode=">" horiz-adv-x="1223" +d="M209 161l-85 146l706 367l-706 366l85 146l939 -512z" /> + <glyph glyph-name="question" unicode="?" horiz-adv-x="1010" +d="M412 399v189q0 63 18.5 109.5t48 73.5t65 48.5t71 41t65 43t48 62t18.5 91.5q0 105 -68 158t-182 53q-115 0 -181 -62.5t-67 -176.5h-178q1 187 118 296t300 109q119 0 216 -42.5t157.5 -130.5t60.5 -208q0 -71 -19 -127t-48.5 -90t-66 -60.5t-73 -46t-66 -38.5 +t-48.5 -45t-19 -60v-187h-170zM386 0v227h229v-227h-229z" /> + <glyph glyph-name="at" unicode="@" horiz-adv-x="2042" +d="M1013 -348q-182 0 -343 60.5t-282 169.5t-191.5 274t-70.5 362q0 191 66 359t182.5 290.5t287 193.5t369.5 71q159 0 299.5 -45t247.5 -126t184.5 -190t117.5 -241.5t40 -276.5q0 -94 -17 -182t-53.5 -167.5t-89 -138.5t-128.5 -94t-167 -35q-132 0 -204 68.5t-69 187.5 +q-60 -66 -140.5 -101.5t-165.5 -35.5q-80 0 -143 31.5t-101.5 85.5t-59 123t-20.5 148q0 80 20 164.5t61 163.5t96.5 141t132.5 99.5t163 37.5q96 0 166.5 -45t98.5 -119l23 115h172q-13 -69 -54 -234t-68 -302.5t-27 -223.5q0 -72 24.5 -100.5t87.5 -28.5q80 0 140 40.5 +t93 108t48.5 142t15.5 154.5q0 147 -51 277t-143 227t-228.5 153.5t-299.5 56.5q-166 0 -305.5 -58.5t-234.5 -159t-148 -237.5t-53 -293q0 -131 37.5 -244t104 -195.5t157.5 -141.5t198.5 -88.5t225.5 -29.5q121 0 246 39l59 -158q-145 -52 -307 -52zM903 225q65 0 121 28 +t95.5 74t67.5 104.5t41.5 119.5t13.5 119q0 208 -180 208q-80 0 -147 -42t-108 -108t-63.5 -142t-22.5 -149q0 -101 45 -156.5t137 -55.5z" /> + <glyph glyph-name="A" unicode="A" horiz-adv-x="1323" +d="M39 0l547 1413h154l544 -1413h-219l-108 307h-587l-109 -307h-222zM438 486h450l-224 628z" /> + <glyph glyph-name="B" unicode="B" horiz-adv-x="1257" +d="M198 0v1413h437q87 0 164.5 -20t144 -61t105.5 -114t39 -169q0 -103 -47.5 -179t-123.5 -119q107 -45 173.5 -140t66.5 -219q0 -98 -38 -175t-103 -123.5t-144.5 -70t-168.5 -23.5h-505zM400 816h247q69 0 121.5 19.5t87.5 69.5t35 126q0 105 -69.5 152t-183.5 47h-238 +v-414zM400 191h307q114 0 182 52t68 167q0 112 -70.5 170t-182.5 58h-304v-447z" /> + <glyph glyph-name="C" unicode="C" horiz-adv-x="1425" +d="M760 -20q-131 0 -239 38t-184.5 105t-129 159t-77.5 199.5t-25 226.5t24.5 225.5t77 199t129 159.5t186.5 105.5t244 38.5q206 0 358.5 -98.5t230.5 -291.5l-188 -78q-21 75 -61.5 129.5t-95.5 86t-116.5 46t-132.5 14.5q-117 0 -206.5 -42t-142.5 -116.5t-79.5 -168 +t-26.5 -203.5q0 -91 16 -170.5t52 -148.5t88.5 -118.5t130 -77.5t172.5 -28q298 0 405 279l187 -79q-82 -189 -236 -290t-361 -101z" /> + <glyph glyph-name="D" unicode="D" horiz-adv-x="1407" +d="M198 0v1413h383q352 0 537.5 -185t185.5 -532q0 -333 -188.5 -514.5t-536.5 -181.5h-381zM401 186h154q123 0 221 29.5t172 91t113.5 163t39.5 237.5q0 265 -127 393t-397 128h-176v-1042z" /> + <glyph glyph-name="E" unicode="E" horiz-adv-x="1242" +d="M198 0v1413h927v-182h-724v-434h649v-180h-649v-428h724v-189h-927z" /> + <glyph glyph-name="F" unicode="F" horiz-adv-x="1214" +d="M198 0v1413h951v-182h-748v-434h660v-180h-660v-617h-203z" /> + <glyph glyph-name="G" unicode="G" horiz-adv-x="1521" +d="M762 -20q-163 0 -291 58t-206.5 159.5t-119 230.5t-40.5 279q0 119 25 226t77.5 199t128.5 159.5t184.5 106t239.5 38.5q205 0 358 -100t236 -290l-182 -78q-56 141 -163 213t-251 72q-115 0 -204 -43.5t-142 -119t-79.5 -170t-26.5 -203.5q0 -116 26.5 -213.5t80 -174.5 +t143 -120.5t206.5 -43.5q172 0 291.5 110.5t131.5 300.5h-323v162h517v-738h-164l-11 230q-52 -110 -169 -180t-273 -70z" /> + <glyph glyph-name="H" unicode="H" horiz-adv-x="1472" +d="M198 0v1413h203v-616h669v616h204v-1413h-204v617h-669v-617h-203z" /> + <glyph glyph-name="I" unicode="I" horiz-adv-x="599" +d="M198 0v1413h203v-1413h-203z" /> + <glyph glyph-name="J" unicode="J" horiz-adv-x="1128" +d="M503 -20q-197 0 -317 124.5t-134 312.5l200 24q8 -119 70.5 -197.5t180.5 -78.5q76 0 126.5 23.5t77 70t36.5 102.5t10 134v736h-533v182h736v-907q0 -119 -25 -213t-78 -165t-141.5 -109.5t-208.5 -38.5z" /> + <glyph glyph-name="K" unicode="K" horiz-adv-x="1470" +d="M198 0v1413h203v-786l738 786h268l-549 -567l571 -846h-249l-461 708l-318 -329v-379h-203z" /> + <glyph glyph-name="L" unicode="L" horiz-adv-x="1049" +d="M198 0v1413h203v-1224h605v-189h-808z" /> + <glyph glyph-name="M" unicode="M" horiz-adv-x="1779" +d="M198 0v1413h298l392 -1074l395 1074h298v-1413h-198v1173l-390 -1050h-207l-390 1050v-1173h-198z" /> + <glyph glyph-name="N" unicode="N" horiz-adv-x="1435" +d="M198 0v1413h240l601 -1125v1125h198v-1413h-243l-598 1127v-1127h-198z" /> + <glyph glyph-name="O" unicode="O" horiz-adv-x="1521" +d="M760 -20q-131 0 -239.5 38.5t-185 105.5t-129 159t-77.5 199t-25 225t25 224.5t77.5 199t129 159.5t185 105.5t239.5 38.5t240 -38.5t185.5 -105.5t129 -159.5t77.5 -199t25 -224.5t-25 -225t-77.5 -199t-129 -159t-185.5 -105.5t-240 -38.5zM760 163q117 0 206 44 +t141 121.5t77.5 172.5t25.5 206q0 88 -15.5 166t-50 148t-86 120t-128 79.5t-170.5 29.5t-170 -29.5t-127.5 -79.5t-85.5 -120t-49.5 -148t-15.5 -166q0 -111 25.5 -206t77 -172.5t140 -121.5t205.5 -44z" /> + <glyph glyph-name="P" unicode="P" horiz-adv-x="1157" +d="M198 0v1413h418q214 0 344 -107.5t130 -295.5t-129.5 -292t-344.5 -104h-216v-614h-202zM400 800h216q273 0 273 210q0 104 -69.5 160.5t-203.5 56.5h-216v-427z" /> + <glyph glyph-name="Q" unicode="Q" horiz-adv-x="1558" +d="M1340 -107l-197 201q-152 -114 -383 -114q-131 0 -239.5 38.5t-185 105.5t-129 159t-77.5 199t-25 225t25 224.5t77.5 199t129 159.5t185 105.5t239.5 38.5t240 -38.5t185.5 -106t129 -159.5t77.5 -199t25 -226q0 -143 -37.5 -271.5t-110.5 -222.5l199 -195zM760 169 +q142 0 240 62l-196 191l126 122l195 -190q89 144 89 353q0 110 -26 204.5t-79 170.5t-142.5 119t-206.5 43q-94 0 -170.5 -28.5t-128.5 -78t-87 -118.5t-51 -146.5t-16 -165.5q0 -111 26 -205.5t78.5 -170t142 -119t206.5 -43.5z" /> + <glyph glyph-name="R" unicode="R" horiz-adv-x="1242" +d="M198 -2v1414h429q199 0 332 -109.5t133 -293.5q0 -136 -79.5 -234t-210.5 -133l388 -644h-235l-351 621h-203v-621h-203zM403 794h248q110 5 175 61t65 152q0 104 -71.5 164t-190.5 60h-226v-437z" /> + <glyph glyph-name="S" unicode="S" horiz-adv-x="1123" +d="M578 -16q-123 0 -230 42.5t-184.5 134t-98.5 218.5l197 53q14 -131 102.5 -199t215.5 -68q122 0 192 57.5t70 160.5q0 53 -23.5 95.5t-63 72.5t-90.5 56t-108 49t-113.5 48t-107.5 57.5t-90.5 72.5t-63 98t-23.5 129q0 169 118.5 271t291.5 102q131 0 237 -58t173 -175 +l-162 -103q-40 76 -106.5 116.5t-146.5 40.5q-85 0 -144.5 -50t-59.5 -131q0 -47 23.5 -85t63 -65.5t90.5 -51.5t107.5 -47.5t113 -49.5t107.5 -60.5t90.5 -76.5t63 -103t23.5 -135q0 -188 -132 -302t-332 -114z" /> + <glyph glyph-name="T" unicode="T" horiz-adv-x="1208" +d="M502 0v1237h-461v176h1126v-176h-461v-1237h-204z" /> + <glyph glyph-name="U" unicode="U" horiz-adv-x="1366" +d="M682 -20q-133 0 -233.5 42t-161 118t-90 174.5t-29.5 219.5v879h203v-842q0 -93 15 -162t49 -123.5t96 -82.5t151 -28t151 28t97 82.5t50 123.5t15 162v842h204v-869q0 -124 -30 -225t-91.5 -178t-162 -119t-233.5 -42z" /> + <glyph glyph-name="V" unicode="V" horiz-adv-x="1333" +d="M587 0l-548 1413h220l410 -1108l408 1108h217l-545 -1413h-162z" /> + <glyph glyph-name="W" unicode="W" horiz-adv-x="1987" +d="M461 0l-410 1413h210l319 -1135l334 1053h160l334 -1053l318 1135h211l-410 -1413h-208l-324 1007l-327 -1007h-207z" /> + <glyph glyph-name="X" unicode="X" horiz-adv-x="1299" +d="M50 0l470 707l-468 706h242l356 -566l357 566h240l-466 -706l468 -707h-240l-361 557l-356 -557h-242z" /> + <glyph glyph-name="Y" unicode="Y" horiz-adv-x="1317" +d="M556 0v552l-529 861h242l388 -661l390 661h243l-527 -861v-552h-207z" /> + <glyph glyph-name="Z" unicode="Z" horiz-adv-x="1273" +d="M74 0v148l845 1083h-800v182h1067v-155l-841 -1074h841v-184h-1112z" /> + <glyph glyph-name="bracketleft" unicode="[" horiz-adv-x="637" +d="M191 -126v1662h395v-124h-236v-1412h236v-126h-395z" /> + <glyph glyph-name="backslash" unicode="\" horiz-adv-x="930" +d="M755 -430l-767 1946h189l765 -1946h-187z" /> + <glyph glyph-name="bracketright" unicode="]" horiz-adv-x="637" +d="M51 -126v126h236v1412h-236v124h395v-1662h-395z" /> + <glyph glyph-name="asciicircum" unicode="^" horiz-adv-x="978" +d="M96 823l392 638l395 -638h-198l-197 319l-195 -319h-197z" /> + <glyph glyph-name="underscore" unicode="_" horiz-adv-x="1241" +d="M214 -147v147h813v-147h-813z" /> + <glyph glyph-name="grave" unicode="`" horiz-adv-x="534" +d="M317 1113l-281 300h224l221 -300h-164z" /> + <glyph glyph-name="a" unicode="a" +d="M409 -20q-151 0 -246.5 83.5t-95.5 228.5q0 291 420 291h243q0 125 -55 196.5t-168 71.5q-162 0 -257 -146l-145 108q149 207 397 207q194 0 302 -112t108 -298v-610h-161l-10 169q-108 -189 -332 -189zM434 144q125 0 209.5 91t86.5 205h-229q-235 0 -235 -154 +q0 -69 45.5 -105.5t122.5 -36.5z" /> + <glyph glyph-name="b" unicode="b" horiz-adv-x="1150" +d="M655 -20q-195 0 -298 140v-120h-197v1413h197v-533q105 140 296 140q131 0 227 -72t142.5 -188t46.5 -260q0 -143 -46.5 -259.5t-142 -188.5t-225.5 -72zM606 153q67 0 119.5 28t84.5 76t48.5 110t16.5 133q0 96 -28 173t-90 126.5t-151 49.5q-131 0 -199 -99.5 +t-68 -249.5q0 -97 27.5 -173.5t89 -125t150.5 -48.5z" /> + <glyph glyph-name="c" unicode="c" horiz-adv-x="988" +d="M533 -20q-111 0 -200 43t-144 116t-84 165t-29 194t28.5 194t83.5 166t143.5 118t199.5 44q142 0 248 -72t161 -207l-183 -75q-22 83 -82.5 133t-143.5 50q-68 0 -119.5 -31t-81 -83t-43.5 -111.5t-14 -125.5t14 -125.5t43 -111t80.5 -81.5t120.5 -30q82 0 143 49t83 130 +l172 -69q-47 -132 -151 -206t-245 -74z" /> + <glyph glyph-name="d" unicode="d" horiz-adv-x="1149" +d="M794 1413h195v-1413h-184l-6 125q-105 -145 -303 -145q-129 0 -225 72t-143 188.5t-47 259.5t47 259.5t142.5 188.5t223.5 72q195 0 300 -140v533zM545 150q90 0 151 49t87.5 125.5t26.5 175.5q0 151 -66.5 250t-198.5 99q-89 0 -151 -49.5t-89 -126.5t-27 -173 +q0 -151 67.5 -250.5t199.5 -99.5z" /> + <glyph glyph-name="e" unicode="e" horiz-adv-x="1051" +d="M551 -17q-117 0 -210 41.5t-150.5 113.5t-87 163t-29.5 194q0 101 28.5 193t83.5 166t145 118t203 44q97 0 175 -30t127 -78.5t81.5 -114.5t45.5 -133t13 -139q0 -53 -6 -85h-691q7 -125 75.5 -202.5t196.5 -77.5q163 0 261 107l134 -113q-82 -86 -177.5 -126.5 +t-217.5 -40.5zM279 583h509q-7 122 -70.5 197t-184.5 75q-116 0 -179.5 -76t-74.5 -196z" /> + <glyph glyph-name="f" unicode="f" horiz-adv-x="683" +d="M209 0v838h-182v161h183v152q0 134 84.5 208.5t208.5 74.5q89 0 172 -40l-56 -157q-54 28 -99 28q-51 0 -82.5 -32.5t-31.5 -97.5v-136h262v-161h-262v-838h-197z" /> + <glyph glyph-name="g" unicode="g" horiz-adv-x="1036" +d="M562 142q52 -7 84.5 -12.5t80 -16.5t76.5 -24t63 -35t52.5 -49t31.5 -65.5t13 -86.5q0 -104 -58.5 -177.5t-151 -107t-209.5 -33.5q-204 0 -326 98t-122 249q0 23 3 41l126 121q-114 66 -114 201q0 112 83 184q-84 97 -84 230q0 157 113 257t278 100q144 0 249 -78 +l150 133l105 -130l-154 -122q40 -75 40 -168q0 -159 -111 -256t-275 -97q-103 0 -189 40q-37 -25 -37 -65q0 -23 8.5 -40.5t30.5 -30.5t41.5 -21.5t60 -16.5t65 -11.5t77.5 -10.5zM504 865q-90 0 -142.5 -59t-52.5 -147q0 -91 52 -146.5t143 -55.5q90 0 142 55.5t52 146.5 +q0 89 -52.5 147.5t-141.5 58.5zM551 -305q101 0 167 36.5t66 102.5q0 67 -79 96q-42 14 -189 36q-9 1 -17 2q-93 14 -149 27l-85 -117q5 -80 83 -131.5t203 -51.5z" /> + <glyph glyph-name="h" unicode="h" horiz-adv-x="1145" +d="M160 0v1413h194v-556q53 77 136 119t172 42q90 0 159.5 -34t110.5 -92.5t61.5 -129.5t20.5 -153v-609h-197v582q0 258 -197 258q-121 0 -193.5 -90.5t-72.5 -226.5v-523h-194z" /> + <glyph glyph-name="i" unicode="i" horiz-adv-x="509" +d="M150 1205v208h209v-208h-209zM158 0v999h193v-999h-193z" /> + <glyph glyph-name="j" unicode="j" horiz-adv-x="515" +d="M153 1209v204h212v-204h-212zM84 -438q-84 0 -161 32l45 158q60 -20 103 -20q90 0 90 116v1151h196v-1130q0 -138 -68 -222.5t-205 -84.5z" /> + <glyph glyph-name="k" unicode="k" horiz-adv-x="1081" +d="M160 0v1413h194v-895l413 481h248l-349 -376l403 -623h-230l-299 499l-186 -206v-293h-194z" /> + <glyph glyph-name="l" unicode="l" horiz-adv-x="544" +d="M337 -20q-98 0 -141 54t-43 166v1213h194v-1200q0 -18 15.5 -39.5t48.5 -21.5q45 0 83 8v-160q-82 -20 -157 -20z" /> + <glyph glyph-name="m" unicode="m" horiz-adv-x="1719" +d="M158 0v999h195v-131q39 70 109.5 111t153.5 41q210 0 294 -194q52 95 134.5 144.5t185.5 49.5q91 0 161.5 -34t112.5 -93t63 -132t21 -157v-604h-197v582q0 53 -8.5 96.5t-29 83t-59 62t-92.5 22.5q-72 0 -126 -43t-80.5 -109t-26.5 -143v-551h-196v586q0 260 -186 260 +q-107 0 -170.5 -93t-63.5 -219v-534h-195z" /> + <glyph glyph-name="n" unicode="n" horiz-adv-x="1139" +d="M158 0v999h192v-147q54 80 135 123t174 43q90 0 159 -34t109 -93t60 -131t20 -156v-604h-192v582q0 112 -52 187.5t-158 75.5q-115 0 -185 -79.5t-70 -233.5v-532h-192z" /> + <glyph glyph-name="o" unicode="o" horiz-adv-x="1123" +d="M560 -20q-144 0 -257 71.5t-173.5 190t-60.5 260.5t60.5 259.5t173.5 188t257 70.5q143 0 257 -70.5t175 -188.5t61 -259q0 -142 -61 -260.5t-175 -190t-257 -71.5zM561 144q74 0 131.5 30t91.5 81t51.5 114t17.5 133q0 71 -17 133t-51.5 112t-92 79t-131.5 29 +q-98 0 -165.5 -51t-97 -128.5t-29.5 -173.5q0 -56 10.5 -108t33.5 -97.5t56.5 -79.5t83 -53.5t108.5 -19.5z" /> + <glyph glyph-name="p" unicode="p" horiz-adv-x="1149" +d="M160 -438v1437h195v-119q50 68 126.5 104t167.5 36q132 0 228.5 -71.5t143.5 -188t47 -260.5q0 -143 -46.5 -259t-143 -188.5t-227.5 -72.5q-90 0 -167.5 35.5t-128.5 104.5v-558h-195zM604 153q132 0 200 98t68 249q0 150 -68 250t-200 100q-89 0 -151 -49.5t-89 -126.5 +t-27 -174q0 -151 67.5 -249t199.5 -98z" /> + <glyph glyph-name="q" unicode="q" horiz-adv-x="1149" +d="M794 -438v558q-107 -140 -294 -140q-132 0 -228.5 71.5t-143.5 188t-47 260.5q0 106 27.5 200t79 165.5t131.5 113t179 41.5q91 0 168.5 -36t127.5 -104v119h195v-1437h-195zM545 153q90 0 151 48.5t87.5 124.5t26.5 174q0 151 -66.5 250t-198.5 99t-199.5 -99.5 +t-67.5 -249.5q0 -151 67.5 -249t199.5 -98z" /> + <glyph glyph-name="r" unicode="r" horiz-adv-x="805" +d="M158 0v999h190v-173q35 90 113 142t169 52q104 0 171 -61l-85 -163q-49 37 -116 37q-113 0 -183.5 -95.5t-70.5 -274.5v-463h-188z" /> + <glyph glyph-name="s" unicode="s" horiz-adv-x="888" +d="M446 -20q-144 0 -251 75.5t-144 187.5l158 74q61 -177 232 -177q83 0 131.5 40t48.5 103q0 45 -28.5 76t-74 49t-101 33.5t-110.5 36t-100.5 49t-74 79.5t-28.5 121q0 139 99 216t243 77q119 0 209.5 -55t142.5 -153l-147 -81q-70 135 -212 135q-69 0 -111 -32t-42 -82 +q0 -39 29 -66.5t75 -44.5t102 -33t112 -38.5t102 -54t75 -87t29 -129.5q0 -79 -31 -141.5t-83.5 -100.5t-116.5 -57.5t-133 -19.5z" /> + <glyph glyph-name="t" unicode="t" horiz-adv-x="711" +d="M471 -20q-136 0 -205.5 77t-69.5 213v568h-161v161h163v236l190 156v-392h253v-161h-253v-548q0 -74 33 -109t87 -35q57 0 119 31v-172q-60 -25 -156 -25z" /> + <glyph glyph-name="u" unicode="u" horiz-adv-x="1140" +d="M483 -21q-179 0 -266.5 125t-87.5 340v555h196v-564q0 -62 8.5 -110t29 -89.5t60.5 -64t98 -22.5q113 0 190 88t77 257v505h195v-999h-195v145q-44 -72 -125 -119t-180 -47z" /> + <glyph glyph-name="v" unicode="v" horiz-adv-x="972" +d="M405 0l-390 999h212l260 -748l262 748h208l-388 -999h-164z" /> + <glyph glyph-name="w" unicode="w" horiz-adv-x="1441" +d="M324 -2l-293 1001h206l189 -719l210 719h170l210 -717l189 717h206l-293 -999h-180l-216 738l-218 -740h-180z" /> + <glyph glyph-name="x" unicode="x" horiz-adv-x="972" +d="M29 0l340 504l-340 495h236l221 -351l222 351h234l-338 -495l338 -504h-234l-222 359l-221 -359h-236z" /> + <glyph glyph-name="y" unicode="y" horiz-adv-x="1002" +d="M226 -430l177 445l-387 984h213l274 -759l271 759h212l-552 -1429h-208z" /> + <glyph glyph-name="z" unicode="z" horiz-adv-x="964" +d="M890 999v-147l-573 -688h573v-164h-830v136l590 702h-561v161h801z" /> + <glyph glyph-name="braceleft" unicode="{" horiz-adv-x="608" +d="M406 -136q-105 0 -170 92q-35 48 -35 160v364q0 22 -11 40.5t-33.5 32.5t-40 22t-46.5 19v136q68 21 99.5 54.5t31.5 93.5v426q0 116 53.5 175.5t172.5 59.5h53q43 0 64 -2v-125q-48 10 -82 10q-92 0 -92 -50v-508q0 -74 -40 -122.5t-121 -86.5q161 -62 161 -171v-363 +q0 -139 118 -139q28 0 56 9v-125q-42 -2 -67 -2h-71z" /> + <glyph glyph-name="bar" unicode="|" horiz-adv-x="622" +d="M239 -512v2046h143v-2046h-143z" /> + <glyph glyph-name="braceright" unicode="}" horiz-adv-x="608" +d="M131 -136q-25 0 -67 2v125q30 -9 56 -9q118 0 118 139v363q0 106 161 171q-83 38 -122 86t-39 123v508q0 50 -92 50q-32 0 -82 -10v125q21 2 65 2h52q119 0 172.5 -59.5t53.5 -175.5v-426q0 -60 31.5 -93.5t99.5 -54.5v-136q-29 -11 -46.5 -19t-40 -22t-33.5 -32.5 +t-11 -40.5v-364q0 -114 -33 -161q-66 -91 -171 -91h-72z" /> + <glyph glyph-name="asciitilde" unicode="~" horiz-adv-x="1159" +d="M737 379q-59 0 -112 22t-84 48t-68.5 48t-69.5 22q-46 0 -62.5 -29t-15.5 -84h-133q0 116 54.5 180.5t154.5 64.5q57 0 104 -14t77.5 -33.5t56 -39.5t52 -34t52.5 -14q49 0 66.5 30.5t17.5 98.5h141q0 -130 -59 -198t-172 -68z" /> + <glyph glyph-name="uni00A0" unicode=" " horiz-adv-x="563" + /> + <glyph glyph-name="exclamdown" unicode="¡" horiz-adv-x="631" +d="M201 773v226h229v-226h-229zM213 -435l29 1032h147l28 -1032h-204z" /> + <glyph glyph-name="cent" unicode="¢" horiz-adv-x="1126" +d="M521 -205v187q-124 18 -211.5 95t-127.5 185t-40 236q0 127 40 235t127.5 185.5t211.5 95.5v186h142v-186q237 -34 343 -275l-180 -71q-24 89 -83.5 136t-148.5 47q-69 0 -121.5 -30.5t-82 -82t-44 -112t-14.5 -128.5q0 -69 14 -129.5t43.5 -112t82 -82t122.5 -30.5 +q89 0 148.5 48t83.5 136l167 -68q-88 -246 -330 -279v-186h-142z" /> + <glyph glyph-name="sterling" unicode="£" horiz-adv-x="1222" +d="M151 0v160q10 6 26.5 16.5t58.5 44.5t74.5 68t59 83.5t26.5 95.5q0 31 -6 69.5t-12 61.5l-5 23h-219v166h178q-42 107 -42 237q0 176 109.5 295t301.5 119q138 0 239.5 -84t148.5 -213l-156 -58q-32 87 -92.5 137.5t-139.5 50.5q-115 0 -180 -66t-65 -183q0 -54 12 -113 +t24 -90l11 -32h474v-166h-434q16 -77 16 -151q0 -58 -15.5 -110.5t-37.5 -86.5t-44 -59.5t-38 -36.5l-15 -11h769v-167h-1027z" /> + <glyph glyph-name="currency" unicode="¤" horiz-adv-x="1362" +d="M310 149l-110 115l106 104q-86 116 -86 263t86 263l-104 101l110 116l105 -107q118 86 264.5 86.5t263.5 -84.5l104 103l111 -110l-103 -103q85 -117 85 -264.5t-85 -265.5l103 -102l-109 -115l-106 107q-117 -86 -264.5 -86t-265.5 86zM461 416q91 -92 217.5 -92 +t217.5 92q89 90 89 215.5t-90 213.5q-91 89 -216 88.5t-216 -90.5q-86 -88 -87 -214t85 -213z" /> + <glyph glyph-name="yen" unicode="¥" horiz-adv-x="1314" +d="M570 0v249h-299v148h299v118h-299v149h230l-474 749h206l425 -686l424 686h206l-474 -750h230v-148h-300v-118h300v-148h-300v-249h-174z" /> + <glyph glyph-name="brokenbar" unicode="¦" horiz-adv-x="630" +d="M239 731v744h152v-744h-152zM239 -307v727h152v-727h-152z" /> + <glyph glyph-name="section" unicode="§" horiz-adv-x="1119" +d="M565 -18q-157 0 -273 72.5t-150 215.5l183 58q23 -99 85 -142t164 -43q93 0 153.5 33t60.5 108q0 36 -20.5 62.5t-55 42.5t-79.5 28t-94.5 22.5t-99 23t-94.5 33.5t-79.5 49.5t-55 75t-20.5 106.5q0 124 95 212q-93 72 -93 193q0 71 31 129.5t83 95.5t117 57t136 20 +q130 0 229 -59.5t145 -161.5l-164 -77q-21 70 -77 105.5t-138 35.5q-86 0 -141.5 -41.5t-55.5 -107.5q0 -43 33 -71t85.5 -42.5t116.5 -27t128 -31.5t116.5 -48t85.5 -85t33 -135q0 -127 -88 -209q88 -72 88 -196q0 -78 -33.5 -137.5t-90.5 -94.5t-124 -52t-142 -17z +M691 551q97 37 97 137q0 28 -10 51.5t-32 40.5t-43.5 29.5t-57.5 23t-60 16.5t-65.5 15t-61.5 14q-49 -20 -75 -60t-26 -85q0 -27 11 -49t33 -38t45.5 -28t58.5 -22t61.5 -16.5t65.5 -15t59 -13.5z" /> + <glyph glyph-name="dieresis" unicode="¨" horiz-adv-x="837" +d="M153 1205v208h186v-208h-186zM498 1205v208h186v-208h-186z" /> + <glyph glyph-name="copyright" unicode="©" horiz-adv-x="1745" +d="M873 -50q-157 0 -299.5 60t-245.5 161.5t-163.5 241.5t-60.5 294t60.5 294t163.5 241t245.5 161t299.5 60q209 0 385.5 -101.5t279.5 -275.5t103 -379q0 -206 -103 -380t-279.5 -275.5t-385.5 -101.5zM873 102q123 0 237 49t197 130.5t132.5 193t49.5 232.5 +q0 120 -49.5 232t-132.5 193t-197 130t-237 49t-237 -49t-197.5 -130t-133 -193t-49.5 -232q0 -121 49.5 -232.5t133 -193t197.5 -130.5t237 -49zM889 283q-90 0 -161.5 33.5t-116.5 92t-68.5 134t-23.5 162.5q0 117 40 210.5t125.5 152t204.5 58.5q228 0 329 -215l-139 -59 +q-60 122 -190 122q-109 0 -165 -76.5t-56 -192.5t55 -191.5t164 -75.5q131 0 190 122l141 -60q-100 -217 -329 -217z" /> + <glyph glyph-name="ordfeminine" unicode="ª" horiz-adv-x="899" +d="M365 709q-99 0 -168.5 59.5t-69.5 154.5q0 109 73.5 161.5t195.5 52.5h204q-3 181 -165 181q-58 0 -104 -29.5t-76 -73.5l-104 68q58 79 126 115t162 36q135 0 210 -77t75 -206v-428h-114l-5 101q-89 -115 -240 -115zM392 827q83 0 143 60t65 136h-194q-62 0 -100 -27 +t-38 -73q0 -40 38.5 -68t85.5 -28z" /> + <glyph glyph-name="guillemotleft" unicode="«" horiz-adv-x="959" +d="M438 171l-396 340l396 340v-185l-187 -155l187 -155v-185zM802 171l-398 340l398 340v-185l-188 -155l188 -155v-185z" /> + <glyph glyph-name="logicalnot" unicode="¬" horiz-adv-x="1292" +d="M872 291v333h-727v173h911v-506h-184z" /> + <glyph glyph-name="uni00AD" unicode="­" horiz-adv-x="993" +d="M152 545v147h689v-147h-689z" /> + <glyph glyph-name="registered" unicode="®" horiz-adv-x="1745" +d="M873 -48q-157 0 -299.5 60t-245.5 161.5t-163.5 241.5t-60.5 294t60.5 294t163.5 241t245.5 161t299.5 60q209 0 385.5 -101.5t279.5 -275.5t103 -379q0 -206 -103 -380t-279.5 -275.5t-385.5 -101.5zM873 96q125 0 240.5 49t199.5 131.5t134 196t50 236.5 +q0 164 -84.5 305.5t-228.5 224.5t-311 83q-168 0 -312.5 -83t-229.5 -224.5t-85 -305.5q0 -123 50.5 -236.5t135 -196t200 -131.5t241.5 -49zM615 297v809h311q134 0 203.5 -63.5t69.5 -178.5q0 -91 -43.5 -147t-111.5 -77l201 -343h-175l-174 325h-130v-325h-151zM756 762 +h170q70 0 101 24t31 78q0 55 -30 78t-102 23h-170v-203z" /> + <glyph glyph-name="macron" unicode="¯" horiz-adv-x="851" +d="M149 1166v134h549v-134h-549z" /> + <glyph glyph-name="degree" unicode="°" horiz-adv-x="916" +d="M458 848q-120 0 -206.5 86t-86.5 207t86.5 207t206.5 86q121 0 206.5 -86t85.5 -207t-85.5 -207t-206.5 -86zM458 974q69 0 118 49t49 118q0 68 -49 117t-118 49q-68 0 -117 -49t-49 -117q0 -69 49 -118t117 -49z" /> + <glyph glyph-name="plusminus" unicode="±" horiz-adv-x="1325" +d="M589 106v446h-457v147h457v444h147v-444h457v-147h-457v-446h-147zM134 -147v147h1058v-147h-1058z" /> + <glyph glyph-name="acute" unicode="´" horiz-adv-x="534" +d="M50 1124l221 289h225l-291 -289h-155z" /> + <glyph glyph-name="uni00B5" unicode="µ" horiz-adv-x="1296" +d="M238 -266v1265h190v-589q0 -259 188 -259q114 0 198 85.5t84 198.5v564h190v-999h-190v136q-44 -65 -123.5 -112t-173.5 -47q-98 0 -174 42l-20 -285h-169z" /> + <glyph glyph-name="paragraph" unicode="¶" horiz-adv-x="1299" +d="M547 -246v869q-119 0 -221 45.5t-167 137.5t-65 212t65 212t167 137.5t221 45.5h152v-1659h-152zM907 -246v1659h153v-1659h-153z" /> + <glyph glyph-name="periodcentered" unicode="·" horiz-adv-x="630" +d="M314 677q-57 0 -96 39.5t-39 96.5q0 58 39 96.5t96 38.5t97 -39t40 -96q0 -56 -40 -96t-97 -40z" /> + <glyph glyph-name="cedilla" unicode="¸" horiz-adv-x="569" +d="M260 -513q-62 0 -114 36t-74 91l116 54q6 -25 28 -43t50 -18q40 0 65 25t25 63q0 49 -47.5 83.5t-130.5 34.5h-54l109 186h131l-72 -108q91 -7 139.5 -58.5t48.5 -129.5q0 -89 -62 -152.5t-158 -63.5z" /> + <glyph glyph-name="ordmasculine" unicode="º" horiz-adv-x="942" +d="M471 711q-153 0 -251 105t-98 257q0 151 98 256t251 105q151 0 249 -105t98 -256q0 -152 -98 -257t-249 -105zM471 837q101 0 149.5 65.5t48.5 170.5q0 104 -48.5 170t-149.5 66q-102 0 -151 -66t-49 -170q0 -105 49 -170.5t151 -65.5z" /> + <glyph glyph-name="guillemotright" unicode="»" horiz-adv-x="960" +d="M155 171v185l187 155l-187 155v185l397 -340zM517 171v185l188 155l-188 155v185l398 -340z" /> + <glyph glyph-name="questiondown" unicode="¿" horiz-adv-x="1007" +d="M395 773v226h229v-226h-229zM520 -434q-119 0 -215.5 42t-156.5 129.5t-60 208.5q0 72 19 128t48.5 90.5t66 61t73 45.5t66 38t48.5 45t19 60v187h169v-189q0 -63 -18.5 -109.5t-48 -74t-65 -49t-71 -41t-65 -42.5t-48 -62t-18.5 -92q0 -104 68.5 -157.5t180.5 -53.5 +q109 0 179 60t71 167h177q-1 -179 -121 -285.5t-298 -106.5z" /> + <glyph glyph-name="Agrave" unicode="À" horiz-adv-x="1323" +d="M593 1526l-281 300h224l221 -300h-164zM39 0l547 1413h154l544 -1413h-219l-108 307h-587l-109 -307h-222zM438 486h450l-224 628z" /> + <glyph glyph-name="Aacute" unicode="Á" horiz-adv-x="1323" +d="M555 1537l221 289h225l-291 -289h-155zM39 0l547 1413h154l544 -1413h-219l-108 307h-587l-109 -307h-222zM438 486h450l-224 628z" /> + <glyph glyph-name="Acircumflex" unicode="Â" horiz-adv-x="1323" +d="M338 1511l323 354l323 -354h-173l-150 167l-148 -167h-175zM39 0l547 1413h154l544 -1413h-219l-108 307h-587l-109 -307h-222zM438 486h450l-224 628z" /> + <glyph glyph-name="Atilde" unicode="Ã" horiz-adv-x="1323" +d="M785 1541q-40 0 -74.5 15.5t-57.5 37.5t-42.5 44t-40.5 37.5t-42 15.5q-68 0 -68 -137h-118q0 124 50 195.5t139 71.5q40 0 74 -15.5t57 -37.5t43 -44.5t41 -38t41 -15.5q67 0 67 145h124q0 -132 -51 -203t-142 -71zM39 0l547 1413h154l544 -1413h-219l-108 307h-587 +l-109 -307h-222zM438 486h450l-224 628z" /> + <glyph glyph-name="Adieresis" unicode="Ä" horiz-adv-x="1323" +d="M395 1618v208h186v-208h-186zM740 1618v208h186v-208h-186zM39 0l547 1413h154l544 -1413h-219l-108 307h-587l-109 -307h-222zM438 486h450l-224 628z" /> + <glyph glyph-name="Aring" unicode="Å" horiz-adv-x="1323" +d="M39 0l515 1331q-49 28 -78 78t-29 109q0 90 62.5 153t151.5 63t153.5 -63t64.5 -153q0 -59 -29.5 -108.5t-78.5 -76.5l513 -1333h-219l-108 307h-587l-109 -307h-222zM661 1418q43 0 72 29t29 72t-27.5 70t-73.5 27q-44 0 -71 -27t-27 -70q0 -44 28 -72.5t70 -28.5z +M438 486h450l-224 628z" /> + <glyph glyph-name="AE" unicode="Æ" horiz-adv-x="1835" +d="M39 0l542 1413h1149v-168h-747v-453h659v-171h-659v-446h747v-175h-939v307h-434l-110 -307h-208zM420 474h371v771h-82z" /> + <glyph glyph-name="Ccedilla" unicode="Ç" horiz-adv-x="1425" +d="M1357 371q-73 -168 -204 -267t-306 -119l-63 -94q91 -7 139.5 -58.5t48.5 -129.5q0 -89 -62 -152.5t-158 -63.5q-62 0 -114 36t-74 91l116 54q6 -25 28 -43t50 -18q40 0 65 25t25 63q0 49 -47.5 83.5t-130.5 34.5h-54l99 168q-122 6 -222.5 47.5t-171.5 108.5 +t-120.5 157.5t-72.5 194.5t-23 219q0 119 24.5 225.5t77 199t129 159.5t186.5 105.5t244 38.5q206 0 358.5 -98.5t230.5 -291.5l-188 -78q-21 75 -61.5 129.5t-95.5 86t-116.5 46t-132.5 14.5q-117 0 -206.5 -42t-142.5 -116.5t-79.5 -168t-26.5 -203.5q0 -91 16 -170.5 +t52 -148.5t88.5 -118.5t130 -77.5t172.5 -28q298 0 405 279z" /> + <glyph glyph-name="Egrave" unicode="È" horiz-adv-x="1242" +d="M576 1526l-281 300h224l221 -300h-164zM198 0v1413h927v-182h-724v-434h649v-180h-649v-428h724v-189h-927z" /> + <glyph glyph-name="Eacute" unicode="É" horiz-adv-x="1242" +d="M538 1537l221 289h225l-291 -289h-155zM198 0v1413h927v-182h-724v-434h649v-180h-649v-428h724v-189h-927z" /> + <glyph glyph-name="Ecircumflex" unicode="Ê" horiz-adv-x="1242" +d="M321 1511l323 354l323 -354h-173l-150 167l-148 -167h-175zM198 0v1413h927v-182h-724v-434h649v-180h-649v-428h724v-189h-927z" /> + <glyph glyph-name="Edieresis" unicode="Ë" horiz-adv-x="1242" +d="M378 1618v208h186v-208h-186zM723 1618v208h186v-208h-186zM198 0v1413h927v-182h-724v-434h649v-180h-649v-428h724v-189h-927z" /> + <glyph glyph-name="Igrave" unicode="Ì" horiz-adv-x="599" +d="M230 1526l-281 300h224l221 -300h-164zM198 0v1413h203v-1413h-203z" /> + <glyph glyph-name="Iacute" unicode="Í" horiz-adv-x="599" +d="M192 1537l221 289h225l-291 -289h-155zM198 0v1413h203v-1413h-203z" /> + <glyph glyph-name="Icircumflex" unicode="Î" horiz-adv-x="599" +d="M-25 1511l323 354l323 -354h-173l-150 167l-148 -167h-175zM198 0v1413h203v-1413h-203z" /> + <glyph glyph-name="Idieresis" unicode="Ï" horiz-adv-x="599" +d="M32 1618v208h186v-208h-186zM377 1618v208h186v-208h-186zM198 0v1413h203v-1413h-203z" /> + <glyph glyph-name="Eth" unicode="Ð" horiz-adv-x="1426" +d="M218 0v639h-113v148h113v626h381q349 0 537 -185t188 -532q0 -332 -190.5 -514t-536.5 -182h-379zM413 181h159q123 0 223 30.5t175 93t116 164.5t41 238q0 527 -532 527h-182v-447h381v-148h-381v-458z" /> + <glyph glyph-name="Ntilde" unicode="Ñ" horiz-adv-x="1435" +d="M840 1541q-40 0 -74.5 15.5t-57.5 37.5t-42.5 44t-40.5 37.5t-42 15.5q-68 0 -68 -137h-118q0 124 50 195.5t139 71.5q40 0 74 -15.5t57 -37.5t43 -44.5t41 -38t41 -15.5q67 0 67 145h124q0 -132 -51 -203t-142 -71zM198 0v1413h240l601 -1125v1125h198v-1413h-243 +l-598 1127v-1127h-198z" /> + <glyph glyph-name="Ograve" unicode="Ò" horiz-adv-x="1521" +d="M691 1526l-281 300h224l221 -300h-164zM760 -20q-131 0 -239.5 38.5t-185 105.5t-129 159t-77.5 199t-25 225t25 224.5t77.5 199t129 159.5t185 105.5t239.5 38.5t240 -38.5t185.5 -105.5t129 -159.5t77.5 -199t25 -224.5t-25 -225t-77.5 -199t-129 -159t-185.5 -105.5 +t-240 -38.5zM760 163q117 0 206 44t141 121.5t77.5 172.5t25.5 206q0 88 -15.5 166t-50 148t-86 120t-128 79.5t-170.5 29.5t-170 -29.5t-127.5 -79.5t-85.5 -120t-49.5 -148t-15.5 -166q0 -111 25.5 -206t77 -172.5t140 -121.5t205.5 -44z" /> + <glyph glyph-name="Oacute" unicode="Ó" horiz-adv-x="1521" +d="M653 1537l221 289h225l-291 -289h-155zM760 -20q-131 0 -239.5 38.5t-185 105.5t-129 159t-77.5 199t-25 225t25 224.5t77.5 199t129 159.5t185 105.5t239.5 38.5t240 -38.5t185.5 -105.5t129 -159.5t77.5 -199t25 -224.5t-25 -225t-77.5 -199t-129 -159t-185.5 -105.5 +t-240 -38.5zM760 163q117 0 206 44t141 121.5t77.5 172.5t25.5 206q0 88 -15.5 166t-50 148t-86 120t-128 79.5t-170.5 29.5t-170 -29.5t-127.5 -79.5t-85.5 -120t-49.5 -148t-15.5 -166q0 -111 25.5 -206t77 -172.5t140 -121.5t205.5 -44z" /> + <glyph glyph-name="Ocircumflex" unicode="Ô" horiz-adv-x="1521" +d="M436 1511l323 354l323 -354h-173l-150 167l-148 -167h-175zM760 -20q-131 0 -239.5 38.5t-185 105.5t-129 159t-77.5 199t-25 225t25 224.5t77.5 199t129 159.5t185 105.5t239.5 38.5t240 -38.5t185.5 -105.5t129 -159.5t77.5 -199t25 -224.5t-25 -225t-77.5 -199 +t-129 -159t-185.5 -105.5t-240 -38.5zM760 163q117 0 206 44t141 121.5t77.5 172.5t25.5 206q0 88 -15.5 166t-50 148t-86 120t-128 79.5t-170.5 29.5t-170 -29.5t-127.5 -79.5t-85.5 -120t-49.5 -148t-15.5 -166q0 -111 25.5 -206t77 -172.5t140 -121.5t205.5 -44z" /> + <glyph glyph-name="Otilde" unicode="Õ" horiz-adv-x="1521" +d="M883 1541q-40 0 -74.5 15.5t-57.5 37.5t-42.5 44t-40.5 37.5t-42 15.5q-68 0 -68 -137h-118q0 124 50 195.5t139 71.5q40 0 74 -15.5t57 -37.5t43 -44.5t41 -38t41 -15.5q67 0 67 145h124q0 -132 -51 -203t-142 -71zM760 -20q-131 0 -239.5 38.5t-185 105.5t-129 159 +t-77.5 199t-25 225t25 224.5t77.5 199t129 159.5t185 105.5t239.5 38.5t240 -38.5t185.5 -105.5t129 -159.5t77.5 -199t25 -224.5t-25 -225t-77.5 -199t-129 -159t-185.5 -105.5t-240 -38.5zM760 163q117 0 206 44t141 121.5t77.5 172.5t25.5 206q0 88 -15.5 166t-50 148 +t-86 120t-128 79.5t-170.5 29.5t-170 -29.5t-127.5 -79.5t-85.5 -120t-49.5 -148t-15.5 -166q0 -111 25.5 -206t77 -172.5t140 -121.5t205.5 -44z" /> + <glyph glyph-name="Odieresis" unicode="Ö" horiz-adv-x="1521" +d="M493 1618v208h186v-208h-186zM838 1618v208h186v-208h-186zM760 -20q-131 0 -239.5 38.5t-185 105.5t-129 159t-77.5 199t-25 225t25 224.5t77.5 199t129 159.5t185 105.5t239.5 38.5t240 -38.5t185.5 -105.5t129 -159.5t77.5 -199t25 -224.5t-25 -225t-77.5 -199 +t-129 -159t-185.5 -105.5t-240 -38.5zM760 163q117 0 206 44t141 121.5t77.5 172.5t25.5 206q0 88 -15.5 166t-50 148t-86 120t-128 79.5t-170.5 29.5t-170 -29.5t-127.5 -79.5t-85.5 -120t-49.5 -148t-15.5 -166q0 -111 25.5 -206t77 -172.5t140 -121.5t205.5 -44z" /> + <glyph glyph-name="multiply" unicode="×" horiz-adv-x="1097" +d="M226 198l-104 103l322 324l-314 314l104 105l315 -315l323 322l104 -103l-323 -323l314 -314l-104 -105l-314 315z" /> + <glyph glyph-name="Oslash" unicode="Ø" horiz-adv-x="1521" +d="M1180 1294q117 -98 177 -252t60 -335q0 -118 -25 -225t-77.5 -199t-129 -159t-185.5 -105.5t-240 -38.5q-174 0 -310 68l-28 -48h-154l71 121q-116 99 -175.5 252t-59.5 334q0 118 25 224.5t77.5 199t129 159.5t185 105.5t239.5 38.5q175 0 309 -67l27 46h153zM312 707 +q0 -266 129 -412l532 907q-91 48 -213 48q-94 0 -170 -29.5t-127.5 -79.5t-85.5 -120t-49.5 -148t-15.5 -166zM760 163q117 0 206 44t141 121.5t77.5 172.5t25.5 206q0 268 -132 414l-532 -909q93 -49 214 -49z" /> + <glyph glyph-name="Ugrave" unicode="Ù" horiz-adv-x="1366" +d="M614 1526l-281 300h224l221 -300h-164zM682 -20q-133 0 -233.5 42t-161 118t-90 174.5t-29.5 219.5v879h203v-842q0 -93 15 -162t49 -123.5t96 -82.5t151 -28t151 28t97 82.5t50 123.5t15 162v842h204v-869q0 -124 -30 -225t-91.5 -178t-162 -119t-233.5 -42z" /> + <glyph glyph-name="Uacute" unicode="Ú" horiz-adv-x="1366" +d="M576 1537l221 289h225l-291 -289h-155zM682 -20q-133 0 -233.5 42t-161 118t-90 174.5t-29.5 219.5v879h203v-842q0 -93 15 -162t49 -123.5t96 -82.5t151 -28t151 28t97 82.5t50 123.5t15 162v842h204v-869q0 -124 -30 -225t-91.5 -178t-162 -119t-233.5 -42z" /> + <glyph glyph-name="Ucircumflex" unicode="Û" horiz-adv-x="1366" +d="M359 1511l323 354l323 -354h-173l-150 167l-148 -167h-175zM682 -20q-133 0 -233.5 42t-161 118t-90 174.5t-29.5 219.5v879h203v-842q0 -93 15 -162t49 -123.5t96 -82.5t151 -28t151 28t97 82.5t50 123.5t15 162v842h204v-869q0 -124 -30 -225t-91.5 -178t-162 -119 +t-233.5 -42z" /> + <glyph glyph-name="Udieresis" unicode="Ü" horiz-adv-x="1366" +d="M416 1618v208h186v-208h-186zM761 1618v208h186v-208h-186zM682 -20q-133 0 -233.5 42t-161 118t-90 174.5t-29.5 219.5v879h203v-842q0 -93 15 -162t49 -123.5t96 -82.5t151 -28t151 28t97 82.5t50 123.5t15 162v842h204v-869q0 -124 -30 -225t-91.5 -178t-162 -119 +t-233.5 -42z" /> + <glyph glyph-name="Yacute" unicode="Ý" horiz-adv-x="1317" +d="M550 1537l221 289h225l-291 -289h-155zM556 0v552l-529 861h242l388 -661l390 661h243l-527 -861v-552h-207z" /> + <glyph glyph-name="Thorn" unicode="Þ" horiz-adv-x="1150" +d="M198 0v1413h193v-197h253q206 0 321.5 -106.5t115.5 -290.5q0 -194 -127.5 -298.5t-341.5 -104.5h-221v-416h-193zM391 593h221q276 0 276 221q0 109 -70.5 168t-205.5 59h-221v-448z" /> + <glyph glyph-name="germandbls" unicode="ß" horiz-adv-x="1181" +d="M724 -18q-109 0 -236 52l72 171q85 -41 160 -41q68 0 116.5 41t48.5 101q0 43 -22.5 83t-57 69t-74 63.5t-74 67t-57 79t-22.5 99.5q0 43 16.5 77.5t41.5 55t54.5 42t54.5 40t41.5 47.5t16.5 65q0 70 -57 119.5t-158 49.5q-236 0 -236 -303v-960h-192v961 +q0 120 33.5 212.5t92 148t132.5 84t161 28.5q104 0 199 -42t157.5 -124.5t62.5 -186.5q0 -60 -24 -105t-58 -70.5t-68 -46.5t-58 -45t-24 -54q0 -28 23.5 -56.5t58.5 -52.5t76 -57.5t76 -69t58.5 -90.5t23.5 -119q0 -146 -102.5 -239.5t-255.5 -93.5z" /> + <glyph glyph-name="agrave" unicode="à" +d="M434 1113l-281 300h224l221 -300h-164zM409 -20q-151 0 -246.5 83.5t-95.5 228.5q0 291 420 291h243q0 125 -55 196.5t-168 71.5q-162 0 -257 -146l-145 108q149 207 397 207q194 0 302 -112t108 -298v-610h-161l-10 169q-108 -189 -332 -189zM434 144q125 0 209.5 91 +t86.5 205h-229q-235 0 -235 -154q0 -69 45.5 -105.5t122.5 -36.5z" /> + <glyph glyph-name="aacute" unicode="á" +d="M396 1124l221 289h225l-291 -289h-155zM409 -20q-151 0 -246.5 83.5t-95.5 228.5q0 291 420 291h243q0 125 -55 196.5t-168 71.5q-162 0 -257 -146l-145 108q149 207 397 207q194 0 302 -112t108 -298v-610h-161l-10 169q-108 -189 -332 -189zM434 144q125 0 209.5 91 +t86.5 205h-229q-235 0 -235 -154q0 -69 45.5 -105.5t122.5 -36.5z" /> + <glyph glyph-name="acircumflex" unicode="â" +d="M179 1098l323 354l323 -354h-173l-150 167l-148 -167h-175zM409 -20q-151 0 -246.5 83.5t-95.5 228.5q0 291 420 291h243q0 125 -55 196.5t-168 71.5q-162 0 -257 -146l-145 108q149 207 397 207q194 0 302 -112t108 -298v-610h-161l-10 169q-108 -189 -332 -189z +M434 144q125 0 209.5 91t86.5 205h-229q-235 0 -235 -154q0 -69 45.5 -105.5t122.5 -36.5z" /> + <glyph glyph-name="atilde" unicode="ã" +d="M626 1128q-40 0 -74.5 15.5t-57.5 37.5t-42.5 44t-40.5 37.5t-42 15.5q-68 0 -68 -137h-118q0 124 50 195.5t139 71.5q40 0 74 -15.5t57 -38t43 -44.5t41 -37.5t41 -15.5q67 0 67 145h124q0 -132 -51 -203t-142 -71zM409 -20q-151 0 -246.5 83.5t-95.5 228.5 +q0 291 420 291h243q0 125 -55 196.5t-168 71.5q-162 0 -257 -146l-145 108q149 207 397 207q194 0 302 -112t108 -298v-610h-161l-10 169q-108 -189 -332 -189zM434 144q125 0 209.5 91t86.5 205h-229q-235 0 -235 -154q0 -69 45.5 -105.5t122.5 -36.5z" /> + <glyph glyph-name="adieresis" unicode="ä" +d="M236 1205v208h186v-208h-186zM581 1205v208h186v-208h-186zM409 -20q-151 0 -246.5 83.5t-95.5 228.5q0 291 420 291h243q0 125 -55 196.5t-168 71.5q-162 0 -257 -146l-145 108q149 207 397 207q194 0 302 -112t108 -298v-610h-161l-10 169q-108 -189 -332 -189z +M434 144q125 0 209.5 91t86.5 205h-229q-235 0 -235 -154q0 -69 45.5 -105.5t122.5 -36.5z" /> + <glyph glyph-name="aring" unicode="å" +d="M501 1074q-91 0 -153 64t-62 153t62.5 152t152.5 63q89 0 153 -62.5t64 -152.5t-63 -153.5t-154 -63.5zM501 1191q43 0 72 29t29 72q0 42 -28 69.5t-73 27.5q-44 0 -71 -27t-27 -70q0 -44 28 -72.5t70 -28.5zM409 -20q-151 0 -246.5 83.5t-95.5 228.5q0 291 420 291h243 +q0 125 -55 196.5t-168 71.5q-162 0 -257 -146l-145 108q149 207 397 207q194 0 302 -112t108 -298v-610h-161l-10 169q-108 -189 -332 -189zM434 144q125 0 209.5 91t86.5 205h-229q-235 0 -235 -154q0 -69 45.5 -105.5t122.5 -36.5z" /> + <glyph glyph-name="ae" unicode="æ" horiz-adv-x="1670" +d="M398 -20q-140 0 -238 84t-98 218q0 80 28.5 139.5t80.5 94t119.5 51t152.5 16.5h291q0 134 -56 203t-182 69q-80 0 -146 -39.5t-104 -97.5l-142 98q76 101 172 150.5t228 49.5q117 0 201 -46t129 -132q112 174 328 174q97 0 173.5 -29t125 -77.5t80.5 -117t45 -141.5 +t13 -156l-6 -55h-691q6 -120 75 -195.5t191 -75.5q90 0 152 21t117 77l132 -113q-84 -86 -179.5 -124t-218.5 -38q-270 0 -369 225q-125 -233 -404 -233zM902 583h509q-6 123 -70.5 192.5t-188.5 69.5q-114 0 -177.5 -73t-72.5 -189zM437 142q120 0 207 90.5t90 203.5h-277 +q-90 0 -147 -41t-57 -111q0 -63 55 -102.5t129 -39.5z" /> + <glyph glyph-name="ccedilla" unicode="ç" horiz-adv-x="988" +d="M531 150q82 0 143 49t83 130l172 -69q-42 -119 -130.5 -191t-209.5 -86l-61 -92q91 -7 139.5 -58.5t48.5 -129.5q0 -89 -62 -152.5t-158 -63.5q-62 0 -114 36t-74 91l116 54q6 -25 28 -43t50 -18q40 0 65 25t25 63q0 49 -47.5 83.5t-130.5 34.5h-54l101 172 +q-124 17 -213 94t-130.5 184.5t-41.5 234.5q0 102 28.5 194t83.5 166t143.5 118t199.5 44q142 0 248 -72t161 -207l-183 -75q-22 83 -82.5 133t-143.5 50q-68 0 -119.5 -31t-81 -83t-43.5 -111.5t-14 -125.5t14 -125.5t43 -111t80.5 -81.5t120.5 -30z" /> + <glyph glyph-name="egrave" unicode="è" horiz-adv-x="1051" +d="M450 1113l-281 300h224l221 -300h-164zM551 -17q-117 0 -210 41.5t-150.5 113.5t-87 163t-29.5 194q0 101 28.5 193t83.5 166t145 118t203 44q97 0 175 -30t127 -78.5t81.5 -114.5t45.5 -133t13 -139q0 -53 -6 -85h-691q7 -125 75.5 -202.5t196.5 -77.5q163 0 261 107 +l134 -113q-82 -86 -177.5 -126.5t-217.5 -40.5zM279 583h509q-7 122 -70.5 197t-184.5 75q-116 0 -179.5 -76t-74.5 -196z" /> + <glyph glyph-name="eacute" unicode="é" horiz-adv-x="1051" +d="M412 1124l221 289h225l-291 -289h-155zM551 -17q-117 0 -210 41.5t-150.5 113.5t-87 163t-29.5 194q0 101 28.5 193t83.5 166t145 118t203 44q97 0 175 -30t127 -78.5t81.5 -114.5t45.5 -133t13 -139q0 -53 -6 -85h-691q7 -125 75.5 -202.5t196.5 -77.5q163 0 261 107 +l134 -113q-82 -86 -177.5 -126.5t-217.5 -40.5zM279 583h509q-7 122 -70.5 197t-184.5 75q-116 0 -179.5 -76t-74.5 -196z" /> + <glyph glyph-name="ecircumflex" unicode="ê" horiz-adv-x="1051" +d="M195 1098l323 354l323 -354h-173l-150 167l-148 -167h-175zM551 -17q-117 0 -210 41.5t-150.5 113.5t-87 163t-29.5 194q0 101 28.5 193t83.5 166t145 118t203 44q97 0 175 -30t127 -78.5t81.5 -114.5t45.5 -133t13 -139q0 -53 -6 -85h-691q7 -125 75.5 -202.5 +t196.5 -77.5q163 0 261 107l134 -113q-82 -86 -177.5 -126.5t-217.5 -40.5zM279 583h509q-7 122 -70.5 197t-184.5 75q-116 0 -179.5 -76t-74.5 -196z" /> + <glyph glyph-name="edieresis" unicode="ë" horiz-adv-x="1051" +d="M252 1205v208h186v-208h-186zM597 1205v208h186v-208h-186zM551 -17q-117 0 -210 41.5t-150.5 113.5t-87 163t-29.5 194q0 101 28.5 193t83.5 166t145 118t203 44q97 0 175 -30t127 -78.5t81.5 -114.5t45.5 -133t13 -139q0 -53 -6 -85h-691q7 -125 75.5 -202.5 +t196.5 -77.5q163 0 261 107l134 -113q-82 -86 -177.5 -126.5t-217.5 -40.5zM279 583h509q-7 122 -70.5 197t-184.5 75q-116 0 -179.5 -76t-74.5 -196z" /> + <glyph glyph-name="igrave" unicode="ì" horiz-adv-x="508" +d="M185 1113l-281 300h224l221 -300h-164zM158 0v999h193v-999h-193z" /> + <glyph glyph-name="iacute" unicode="í" horiz-adv-x="508" +d="M147 1124l221 289h225l-291 -289h-155zM158 0v999h193v-999h-193z" /> + <glyph glyph-name="icircumflex" unicode="î" horiz-adv-x="508" +d="M-70 1098l323 354l323 -354h-173l-150 167l-148 -167h-175zM158 0v999h193v-999h-193z" /> + <glyph glyph-name="idieresis" unicode="ï" horiz-adv-x="508" +d="M-13 1205v208h186v-208h-186zM332 1205v208h186v-208h-186zM158 0v999h193v-999h-193z" /> + <glyph glyph-name="eth" unicode="ð" horiz-adv-x="1166" +d="M636 1390q219 -137 324.5 -341t105.5 -505q0 -252 -130.5 -406t-359.5 -154q-119 0 -216 43.5t-159 118t-95 169.5t-33 201q0 105 32.5 196.5t91.5 160t148.5 108t196.5 39.5q170 0 267 -88q-54 190 -269 318l-86 -126l-96 62l80 118q-67 30 -153 61l92 151 +q90 -36 158 -70l65 95l99 -59zM570 165q96 0 164 51t98.5 129t30.5 172q0 96 -32 174t-100 127t-161 49q-142 0 -218 -102.5t-76 -248.5t76 -248.5t218 -102.5z" /> + <glyph glyph-name="ntilde" unicode="ñ" horiz-adv-x="1139" +d="M691 1128q-40 0 -74.5 15.5t-57.5 37.5t-42.5 44t-40.5 37.5t-42 15.5q-68 0 -68 -137h-118q0 124 50 195.5t139 71.5q40 0 74 -15.5t57 -38t43 -44.5t41 -37.5t41 -15.5q67 0 67 145h124q0 -132 -51 -203t-142 -71zM158 0v999h192v-147q54 80 135 123t174 43 +q90 0 159 -34t109 -93t60 -131t20 -156v-604h-192v582q0 112 -52 187.5t-158 75.5q-115 0 -185 -79.5t-70 -233.5v-532h-192z" /> + <glyph glyph-name="ograve" unicode="ò" horiz-adv-x="1123" +d="M492 1113l-281 300h224l221 -300h-164zM560 -20q-144 0 -257 71.5t-173.5 190t-60.5 260.5t60.5 259.5t173.5 188t257 70.5q143 0 257 -70.5t175 -188.5t61 -259q0 -142 -61 -260.5t-175 -190t-257 -71.5zM561 144q74 0 131.5 30t91.5 81t51.5 114t17.5 133q0 71 -17 133 +t-51.5 112t-92 79t-131.5 29q-98 0 -165.5 -51t-97 -128.5t-29.5 -173.5q0 -56 10.5 -108t33.5 -97.5t56.5 -79.5t83 -53.5t108.5 -19.5z" /> + <glyph glyph-name="oacute" unicode="ó" horiz-adv-x="1123" +d="M454 1124l221 289h225l-291 -289h-155zM560 -20q-144 0 -257 71.5t-173.5 190t-60.5 260.5t60.5 259.5t173.5 188t257 70.5q143 0 257 -70.5t175 -188.5t61 -259q0 -142 -61 -260.5t-175 -190t-257 -71.5zM561 144q74 0 131.5 30t91.5 81t51.5 114t17.5 133q0 71 -17 133 +t-51.5 112t-92 79t-131.5 29q-98 0 -165.5 -51t-97 -128.5t-29.5 -173.5q0 -56 10.5 -108t33.5 -97.5t56.5 -79.5t83 -53.5t108.5 -19.5z" /> + <glyph glyph-name="ocircumflex" unicode="ô" horiz-adv-x="1123" +d="M237 1098l323 354l323 -354h-173l-150 167l-148 -167h-175zM560 -20q-144 0 -257 71.5t-173.5 190t-60.5 260.5t60.5 259.5t173.5 188t257 70.5q143 0 257 -70.5t175 -188.5t61 -259q0 -142 -61 -260.5t-175 -190t-257 -71.5zM561 144q74 0 131.5 30t91.5 81t51.5 114 +t17.5 133q0 71 -17 133t-51.5 112t-92 79t-131.5 29q-98 0 -165.5 -51t-97 -128.5t-29.5 -173.5q0 -56 10.5 -108t33.5 -97.5t56.5 -79.5t83 -53.5t108.5 -19.5z" /> + <glyph glyph-name="otilde" unicode="õ" horiz-adv-x="1123" +d="M684 1128q-40 0 -74.5 15.5t-57.5 37.5t-42.5 44t-40.5 37.5t-42 15.5q-68 0 -68 -137h-118q0 124 50 195.5t139 71.5q40 0 74 -15.5t57 -38t43 -44.5t41 -37.5t41 -15.5q67 0 67 145h124q0 -132 -51 -203t-142 -71zM560 -20q-144 0 -257 71.5t-173.5 190t-60.5 260.5 +t60.5 259.5t173.5 188t257 70.5q143 0 257 -70.5t175 -188.5t61 -259q0 -142 -61 -260.5t-175 -190t-257 -71.5zM561 144q74 0 131.5 30t91.5 81t51.5 114t17.5 133q0 71 -17 133t-51.5 112t-92 79t-131.5 29q-98 0 -165.5 -51t-97 -128.5t-29.5 -173.5q0 -56 10.5 -108 +t33.5 -97.5t56.5 -79.5t83 -53.5t108.5 -19.5z" /> + <glyph glyph-name="odieresis" unicode="ö" horiz-adv-x="1123" +d="M294 1205v208h186v-208h-186zM639 1205v208h186v-208h-186zM560 -20q-144 0 -257 71.5t-173.5 190t-60.5 260.5t60.5 259.5t173.5 188t257 70.5q143 0 257 -70.5t175 -188.5t61 -259q0 -142 -61 -260.5t-175 -190t-257 -71.5zM561 144q74 0 131.5 30t91.5 81t51.5 114 +t17.5 133q0 71 -17 133t-51.5 112t-92 79t-131.5 29q-98 0 -165.5 -51t-97 -128.5t-29.5 -173.5q0 -56 10.5 -108t33.5 -97.5t56.5 -79.5t83 -53.5t108.5 -19.5z" /> + <glyph glyph-name="divide" unicode="÷" horiz-adv-x="1102" +d="M434 870v227h229v-227h-229zM106 555v147h886v-147h-886zM434 142v227h229v-227h-229z" /> + <glyph glyph-name="oslash" unicode="ø" horiz-adv-x="1123" +d="M860 920q91 -72 142 -181.5t51 -236.5q0 -142 -61 -260.5t-175 -190t-257 -71.5q-121 0 -220 51l-18 -31h-109l48 81q-91 72 -141.5 182.5t-50.5 238.5q0 142 60.5 259.5t173.5 188t257 70.5q119 0 221 -50l17 29h108zM269 502q0 -166 83 -265l344 587q-59 31 -135 31 +q-98 0 -165.5 -51t-97 -128.5t-29.5 -173.5zM561 144q74 0 131.5 30t91.5 81t51.5 114t17.5 133q0 167 -84 263l-344 -589q61 -32 136 -32z" /> + <glyph glyph-name="ugrave" unicode="ù" horiz-adv-x="1140" +d="M498 1113l-281 300h224l221 -300h-164zM483 -21q-179 0 -266.5 125t-87.5 340v555h196v-564q0 -62 8.5 -110t29 -89.5t60.5 -64t98 -22.5q113 0 190 88t77 257v505h195v-999h-195v145q-44 -72 -125 -119t-180 -47z" /> + <glyph glyph-name="uacute" unicode="ú" horiz-adv-x="1140" +d="M460 1124l221 289h225l-291 -289h-155zM483 -21q-179 0 -266.5 125t-87.5 340v555h196v-564q0 -62 8.5 -110t29 -89.5t60.5 -64t98 -22.5q113 0 190 88t77 257v505h195v-999h-195v145q-44 -72 -125 -119t-180 -47z" /> + <glyph glyph-name="ucircumflex" unicode="û" horiz-adv-x="1140" +d="M243 1098l323 354l323 -354h-173l-150 167l-148 -167h-175zM483 -21q-179 0 -266.5 125t-87.5 340v555h196v-564q0 -62 8.5 -110t29 -89.5t60.5 -64t98 -22.5q113 0 190 88t77 257v505h195v-999h-195v145q-44 -72 -125 -119t-180 -47z" /> + <glyph glyph-name="udieresis" unicode="ü" horiz-adv-x="1140" +d="M300 1205v208h186v-208h-186zM645 1205v208h186v-208h-186zM483 -21q-179 0 -266.5 125t-87.5 340v555h196v-564q0 -62 8.5 -110t29 -89.5t60.5 -64t98 -22.5q113 0 190 88t77 257v505h195v-999h-195v145q-44 -72 -125 -119t-180 -47z" /> + <glyph glyph-name="yacute" unicode="ý" horiz-adv-x="1002" +d="M392 1124l221 289h225l-291 -289h-155zM226 -430l177 445l-387 984h213l274 -759l271 759h212l-552 -1429h-208z" /> + <glyph glyph-name="thorn" unicode="þ" horiz-adv-x="1147" +d="M161 -438v1851h193v-526q107 133 296 133q131 0 227 -72t142.5 -188t46.5 -260t-46.5 -260t-142.5 -188t-227 -72q-188 0 -296 132v-550h-193zM609 152q133 0 201.5 97.5t68.5 250.5q0 151 -68.5 248.5t-201.5 97.5q-132 0 -202 -97.5t-70 -248.5q0 -152 69.5 -250 +t202.5 -98z" /> + <glyph glyph-name="ydieresis" unicode="ÿ" horiz-adv-x="1002" +d="M232 1205v208h186v-208h-186zM577 1205v208h186v-208h-186zM226 -430l177 445l-387 984h213l274 -759l271 759h212l-552 -1429h-208z" /> + <glyph glyph-name="Amacron" unicode="Ā" horiz-adv-x="1323" +d="M388 1579v134h549v-134h-549zM39 0l547 1413h154l544 -1413h-219l-108 307h-587l-109 -307h-222zM438 486h450l-224 628z" /> + <glyph glyph-name="amacron" unicode="ā" +d="M229 1166v134h549v-134h-549zM409 -20q-151 0 -246.5 83.5t-95.5 228.5q0 291 420 291h243q0 125 -55 196.5t-168 71.5q-162 0 -257 -146l-145 108q149 207 397 207q194 0 302 -112t108 -298v-610h-161l-10 169q-108 -189 -332 -189zM434 144q125 0 209.5 91t86.5 205 +h-229q-235 0 -235 -154q0 -69 45.5 -105.5t122.5 -36.5z" /> + <glyph glyph-name="Abreve" unicode="Ă" horiz-adv-x="1323" +d="M662 1556q-150 0 -230.5 70t-80.5 200h153q0 -66 45 -104.5t113 -38.5q69 0 113 38.5t44 104.5h153q0 -132 -81.5 -201t-228.5 -69zM39 0l547 1413h154l544 -1413h-219l-108 307h-587l-109 -307h-222zM438 486h450l-224 628z" /> + <glyph glyph-name="abreve" unicode="ă" +d="M503 1143q-150 0 -230.5 70t-80.5 200h153q0 -66 45 -104.5t113 -38.5q69 0 113 38.5t44 104.5h153q0 -132 -81.5 -201t-228.5 -69zM409 -20q-151 0 -246.5 83.5t-95.5 228.5q0 291 420 291h243q0 125 -55 196.5t-168 71.5q-162 0 -257 -146l-145 108q149 207 397 207 +q194 0 302 -112t108 -298v-610h-161l-10 169q-108 -189 -332 -189zM434 144q125 0 209.5 91t86.5 205h-229q-235 0 -235 -154q0 -69 45.5 -105.5t122.5 -36.5z" /> + <glyph glyph-name="Aogonek" unicode="Ą" horiz-adv-x="1323" +d="M1259 -259l107 -74q-79 -118 -212 -118q-94 0 -154.5 56.5t-60.5 148.5q0 55 24 102.5t59 76.5t62.5 45.5t44.5 21.5h-64l-108 307h-587l-109 -307h-222l547 1413h154l544 -1413q-11 -4 -27.5 -11t-53 -28t-64.5 -45t-50.5 -61t-22.5 -77q0 -50 22.5 -74t57.5 -24 +q70 0 113 61zM438 486h450l-224 628z" /> + <glyph glyph-name="aogonek" unicode="ą" +d="M887 -259l107 -74q-79 -118 -212 -118q-94 0 -154.5 56.5t-60.5 148.5q0 55 24 102.5t59 76.5t62.5 45.5t44.5 21.5h-6l-10 169q-108 -189 -332 -189q-151 0 -246.5 83.5t-95.5 228.5q0 291 420 291h243q0 125 -55 196.5t-168 71.5q-162 0 -257 -146l-145 108 +q149 207 397 207q194 0 302 -112t108 -298v-610q-11 -4 -27.5 -11t-53 -28t-64.5 -45t-50.5 -61t-22.5 -77q0 -50 22.5 -74t57.5 -24q70 0 113 61zM434 144q125 0 209.5 91t86.5 205h-229q-235 0 -235 -154q0 -69 45.5 -105.5t122.5 -36.5z" /> + <glyph glyph-name="Cacute" unicode="Ć" horiz-adv-x="1425" +d="M608 1537l221 289h225l-291 -289h-155zM760 -20q-131 0 -239 38t-184.5 105t-129 159t-77.5 199.5t-25 226.5t24.5 225.5t77 199t129 159.5t186.5 105.5t244 38.5q206 0 358.5 -98.5t230.5 -291.5l-188 -78q-21 75 -61.5 129.5t-95.5 86t-116.5 46t-132.5 14.5 +q-117 0 -206.5 -42t-142.5 -116.5t-79.5 -168t-26.5 -203.5q0 -91 16 -170.5t52 -148.5t88.5 -118.5t130 -77.5t172.5 -28q298 0 405 279l187 -79q-82 -189 -236 -290t-361 -101z" /> + <glyph glyph-name="cacute" unicode="ć" horiz-adv-x="988" +d="M425 1124l221 289h225l-291 -289h-155zM533 -20q-111 0 -200 43t-144 116t-84 165t-29 194t28.5 194t83.5 166t143.5 118t199.5 44q142 0 248 -72t161 -207l-183 -75q-22 83 -82.5 133t-143.5 50q-68 0 -119.5 -31t-81 -83t-43.5 -111.5t-14 -125.5t14 -125.5t43 -111 +t80.5 -81.5t120.5 -30q82 0 143 49t83 130l172 -69q-47 -132 -151 -206t-245 -74z" /> + <glyph glyph-name="Cdotaccent" unicode="Ċ" horiz-adv-x="1425" +d="M607 1618v208h212v-208h-212zM760 -20q-131 0 -239 38t-184.5 105t-129 159t-77.5 199.5t-25 226.5t24.5 225.5t77 199t129 159.5t186.5 105.5t244 38.5q206 0 358.5 -98.5t230.5 -291.5l-188 -78q-21 75 -61.5 129.5t-95.5 86t-116.5 46t-132.5 14.5q-117 0 -206.5 -42 +t-142.5 -116.5t-79.5 -168t-26.5 -203.5q0 -91 16 -170.5t52 -148.5t88.5 -118.5t130 -77.5t172.5 -28q298 0 405 279l187 -79q-82 -189 -236 -290t-361 -101z" /> + <glyph glyph-name="cdotaccent" unicode="ċ" horiz-adv-x="988" +d="M424 1205v208h212v-208h-212zM533 -20q-111 0 -200 43t-144 116t-84 165t-29 194t28.5 194t83.5 166t143.5 118t199.5 44q142 0 248 -72t161 -207l-183 -75q-22 83 -82.5 133t-143.5 50q-68 0 -119.5 -31t-81 -83t-43.5 -111.5t-14 -125.5t14 -125.5t43 -111t80.5 -81.5 +t120.5 -30q82 0 143 49t83 130l172 -69q-47 -132 -151 -206t-245 -74z" /> + <glyph glyph-name="Ccaron" unicode="Č" horiz-adv-x="1425" +d="M714 1493l-322 332h174l148 -160l150 160h174zM760 -20q-131 0 -239 38t-184.5 105t-129 159t-77.5 199.5t-25 226.5t24.5 225.5t77 199t129 159.5t186.5 105.5t244 38.5q206 0 358.5 -98.5t230.5 -291.5l-188 -78q-21 75 -61.5 129.5t-95.5 86t-116.5 46t-132.5 14.5 +q-117 0 -206.5 -42t-142.5 -116.5t-79.5 -168t-26.5 -203.5q0 -91 16 -170.5t52 -148.5t88.5 -118.5t130 -77.5t172.5 -28q298 0 405 279l187 -79q-82 -189 -236 -290t-361 -101z" /> + <glyph glyph-name="ccaron" unicode="č" horiz-adv-x="988" +d="M531 1080l-322 332h174l148 -160l150 160h174zM533 -20q-111 0 -200 43t-144 116t-84 165t-29 194t28.5 194t83.5 166t143.5 118t199.5 44q142 0 248 -72t161 -207l-183 -75q-22 83 -82.5 133t-143.5 50q-68 0 -119.5 -31t-81 -83t-43.5 -111.5t-14 -125.5t14 -125.5 +t43 -111t80.5 -81.5t120.5 -30q82 0 143 49t83 130l172 -69q-47 -132 -151 -206t-245 -74z" /> + <glyph glyph-name="Dcaron" unicode="Ď" horiz-adv-x="1407" +d="M720 1493l-322 332h174l148 -160l150 160h174zM198 0v1413h383q352 0 537.5 -185t185.5 -532q0 -333 -188.5 -514.5t-536.5 -181.5h-381zM401 186h154q123 0 221 29.5t172 91t113.5 163t39.5 237.5q0 265 -127 393t-397 128h-176v-1042z" /> + <glyph glyph-name="dcaron" unicode="ď" horiz-adv-x="1234" +d="M500 -20q-132 0 -228.5 71.5t-143.5 188t-47 260.5q0 106 27.5 200t79 165.5t131.5 113t179 41.5q91 0 168.5 -36t127.5 -104v533h195v-1413h-195v120q-107 -140 -294 -140zM1100 990l108 423h233l-217 -423h-124zM545 155q90 0 151 48t87.5 123.5t26.5 173.5 +q0 97 -26.5 172t-87.5 123t-151 48q-132 0 -199.5 -96.5t-67.5 -246.5t67.5 -247.5t199.5 -97.5z" /> + <glyph glyph-name="Dcroat" unicode="Đ" horiz-adv-x="1426" +d="M218 0v639h-113v148h113v626h381q349 0 537 -185t188 -532q0 -332 -190.5 -514t-536.5 -182h-379zM413 181h159q123 0 223 30.5t175 93t116 164.5t41 238q0 527 -532 527h-182v-447h381v-148h-381v-458z" /> + <glyph glyph-name="dcroat" unicode="đ" horiz-adv-x="1149" +d="M1150 1288v-139h-161v-1149h-184l-6 125q-105 -145 -303 -145q-129 0 -225 72t-143 188.5t-47 259.5t47 259.5t142.5 188.5t223.5 72q195 0 300 -140v269h-278v139h278v125h195v-125h161zM545 150q90 0 151 49t87.5 125.5t26.5 175.5q0 151 -66.5 250t-198.5 99 +q-89 0 -151 -49.5t-89 -126.5t-27 -173q0 -151 67.5 -250.5t199.5 -99.5z" /> + <glyph glyph-name="Emacron" unicode="Ē" horiz-adv-x="1242" +d="M371 1579v134h549v-134h-549zM198 0v1413h927v-182h-724v-434h649v-180h-649v-428h724v-189h-927z" /> + <glyph glyph-name="emacron" unicode="ē" horiz-adv-x="1051" +d="M245 1166v134h549v-134h-549zM551 -17q-117 0 -210 41.5t-150.5 113.5t-87 163t-29.5 194q0 101 28.5 193t83.5 166t145 118t203 44q97 0 175 -30t127 -78.5t81.5 -114.5t45.5 -133t13 -139q0 -53 -6 -85h-691q7 -125 75.5 -202.5t196.5 -77.5q163 0 261 107l134 -113 +q-82 -86 -177.5 -126.5t-217.5 -40.5zM279 583h509q-7 122 -70.5 197t-184.5 75q-116 0 -179.5 -76t-74.5 -196z" /> + <glyph glyph-name="Edotaccent" unicode="Ė" horiz-adv-x="1242" +d="M537 1618v208h212v-208h-212zM198 0v1413h927v-182h-724v-434h649v-180h-649v-428h724v-189h-927z" /> + <glyph glyph-name="edotaccent" unicode="ė" horiz-adv-x="1051" +d="M411 1205v208h212v-208h-212zM551 -17q-117 0 -210 41.5t-150.5 113.5t-87 163t-29.5 194q0 101 28.5 193t83.5 166t145 118t203 44q97 0 175 -30t127 -78.5t81.5 -114.5t45.5 -133t13 -139q0 -53 -6 -85h-691q7 -125 75.5 -202.5t196.5 -77.5q163 0 261 107l134 -113 +q-82 -86 -177.5 -126.5t-217.5 -40.5zM279 583h509q-7 122 -70.5 197t-184.5 75q-116 0 -179.5 -76t-74.5 -196z" /> + <glyph glyph-name="Eogonek" unicode="Ę" horiz-adv-x="1242" +d="M1100 -259l107 -74q-79 -118 -212 -118q-94 0 -154.5 56.5t-60.5 148.5q0 55 24 102.5t59 76.5t62.5 45.5t44.5 21.5h-772v1413h927v-182h-724v-434h649v-180h-649v-428h724v-189q-11 -4 -27.5 -11t-53 -28t-64.5 -45t-50.5 -61t-22.5 -77q0 -50 22.5 -74t57.5 -24 +q70 0 113 61z" /> + <glyph glyph-name="eogonek" unicode="ę" horiz-adv-x="1051" +d="M976 521q0 -53 -6 -85h-691q7 -125 75.5 -202.5t196.5 -77.5q163 0 261 107l134 -113q-100 -105 -224 -144q-136 -79 -136 -182q0 -50 22.5 -74t57.5 -24q70 0 113 61l107 -74q-79 -118 -212 -118q-94 0 -154.5 56.5t-60.5 148.5q0 105 88 183q-116 1 -208 43t-149 113.5 +t-86.5 162t-29.5 193.5q0 101 28.5 193t83.5 166t145 118t203 44q97 0 175 -30t127 -78.5t81.5 -114.5t45.5 -133t13 -139zM279 583h509q-7 122 -70.5 197t-184.5 75q-116 0 -179.5 -76t-74.5 -196z" /> + <glyph glyph-name="Ecaron" unicode="Ě" horiz-adv-x="1242" +d="M644 1493l-322 332h174l148 -160l150 160h174zM198 0v1413h927v-182h-724v-434h649v-180h-649v-428h724v-189h-927z" /> + <glyph glyph-name="ecaron" unicode="ě" horiz-adv-x="1051" +d="M518 1080l-322 332h174l148 -160l150 160h174zM551 -17q-117 0 -210 41.5t-150.5 113.5t-87 163t-29.5 194q0 101 28.5 193t83.5 166t145 118t203 44q97 0 175 -30t127 -78.5t81.5 -114.5t45.5 -133t13 -139q0 -53 -6 -85h-691q7 -125 75.5 -202.5t196.5 -77.5 +q163 0 261 107l134 -113q-82 -86 -177.5 -126.5t-217.5 -40.5zM279 583h509q-7 122 -70.5 197t-184.5 75q-116 0 -179.5 -76t-74.5 -196z" /> + <glyph glyph-name="Gbreve" unicode="Ğ" horiz-adv-x="1521" +d="M761 1556q-150 0 -230.5 70t-80.5 200h153q0 -66 45 -104.5t113 -38.5q69 0 113 38.5t44 104.5h153q0 -132 -81.5 -201t-228.5 -69zM762 -20q-163 0 -291 58t-206.5 159.5t-119 230.5t-40.5 279q0 119 25 226t77.5 199t128.5 159.5t184.5 106t239.5 38.5q205 0 358 -100 +t236 -290l-182 -78q-56 141 -163 213t-251 72q-115 0 -204 -43.5t-142 -119t-79.5 -170t-26.5 -203.5q0 -116 26.5 -213.5t80 -174.5t143 -120.5t206.5 -43.5q172 0 291.5 110.5t131.5 300.5h-323v162h517v-738h-164l-11 230q-52 -110 -169 -180t-273 -70z" /> + <glyph glyph-name="gbreve" unicode="ğ" horiz-adv-x="1036" +d="M504 1143q-150 0 -230.5 70t-80.5 200h153q0 -66 45 -104.5t113 -38.5q69 0 113 38.5t44 104.5h153q0 -132 -81.5 -201t-228.5 -69zM562 142q52 -7 84.5 -12.5t80 -16.5t76.5 -24t63 -35t52.5 -49t31.5 -65.5t13 -86.5q0 -104 -58.5 -177.5t-151 -107t-209.5 -33.5 +q-204 0 -326 98t-122 249q0 23 3 41l126 121q-114 66 -114 201q0 112 83 184q-84 97 -84 230q0 157 113 257t278 100q144 0 249 -78l150 133l105 -130l-154 -122q40 -75 40 -168q0 -159 -111 -256t-275 -97q-103 0 -189 40q-37 -25 -37 -65q0 -23 8.5 -40.5t30.5 -30.5 +t41.5 -21.5t60 -16.5t65 -11.5t77.5 -10.5zM504 865q-90 0 -142.5 -59t-52.5 -147q0 -91 52 -146.5t143 -55.5q90 0 142 55.5t52 146.5q0 89 -52.5 147.5t-141.5 58.5zM551 -305q101 0 167 36.5t66 102.5q0 67 -79 96q-42 14 -189 36q-9 1 -17 2q-93 14 -149 27l-85 -117 +q5 -80 83 -131.5t203 -51.5z" /> + <glyph glyph-name="Gdotaccent" unicode="Ġ" horiz-adv-x="1521" +d="M653 1618v208h212v-208h-212zM762 -20q-163 0 -291 58t-206.5 159.5t-119 230.5t-40.5 279q0 119 25 226t77.5 199t128.5 159.5t184.5 106t239.5 38.5q205 0 358 -100t236 -290l-182 -78q-56 141 -163 213t-251 72q-115 0 -204 -43.5t-142 -119t-79.5 -170t-26.5 -203.5 +q0 -116 26.5 -213.5t80 -174.5t143 -120.5t206.5 -43.5q172 0 291.5 110.5t131.5 300.5h-323v162h517v-738h-164l-11 230q-52 -110 -169 -180t-273 -70z" /> + <glyph glyph-name="gdotaccent" unicode="ġ" horiz-adv-x="1036" +d="M608 1413v-208h-212v208h212zM562 142q52 -7 84.5 -12.5t80 -16.5t76.5 -24t63 -35t52.5 -49t31.5 -65.5t13 -86.5q0 -104 -58.5 -177.5t-151 -107t-209.5 -33.5q-204 0 -326 98t-122 249q0 23 3 41l126 121q-114 66 -114 201q0 112 83 184q-84 97 -84 230q0 157 113 257 +t278 100q144 0 249 -78l150 133l105 -130l-154 -122q40 -75 40 -168q0 -159 -111 -256t-275 -97q-103 0 -189 40q-37 -25 -37 -65q0 -23 8.5 -40.5t30.5 -30.5t41.5 -21.5t60 -16.5t65 -11.5t77.5 -10.5zM504 865q-90 0 -142.5 -59t-52.5 -147q0 -91 52 -146.5t143 -55.5 +q90 0 142 55.5t52 146.5q0 89 -52.5 147.5t-141.5 58.5zM551 -305q101 0 167 36.5t66 102.5q0 67 -79 96q-42 14 -189 36q-9 1 -17 2q-93 14 -149 27l-85 -117q5 -80 83 -131.5t203 -51.5z" /> + <glyph glyph-name="Gcommaaccent" unicode="Ģ" horiz-adv-x="1521" +d="M762 -20q-163 0 -291 58t-206.5 159.5t-119 230.5t-40.5 279q0 119 25 226t77.5 199t128.5 159.5t184.5 106t239.5 38.5q205 0 358 -100t236 -290l-182 -78q-56 141 -163 213t-251 72q-115 0 -204 -43.5t-142 -119t-79.5 -170t-26.5 -203.5q0 -116 26.5 -213.5t80 -174.5 +t143 -120.5t206.5 -43.5q172 0 291.5 110.5t131.5 300.5h-323v162h517v-738h-164l-11 230q-52 -110 -169 -180t-273 -70zM539 -452l129 343h231l-237 -343h-123z" /> + <glyph glyph-name="gcommaaccent" unicode="ģ" horiz-adv-x="1036" +d="M736 1428l-129 -307h-231l237 307h123zM562 142q52 -7 84.5 -12.5t80 -16.5t76.5 -24t63 -35t52.5 -49t31.5 -65.5t13 -86.5q0 -104 -58.5 -177.5t-151 -107t-209.5 -33.5q-204 0 -326 98t-122 249q0 23 3 41l126 121q-114 66 -114 201q0 112 83 184q-84 97 -84 230 +q0 157 113 257t278 100q144 0 249 -78l150 133l105 -130l-154 -122q40 -75 40 -168q0 -159 -111 -256t-275 -97q-103 0 -189 40q-37 -25 -37 -65q0 -23 8.5 -40.5t30.5 -30.5t41.5 -21.5t60 -16.5t65 -11.5t77.5 -10.5zM504 865q-90 0 -142.5 -59t-52.5 -147 +q0 -91 52 -146.5t143 -55.5q90 0 142 55.5t52 146.5q0 89 -52.5 147.5t-141.5 58.5zM551 -305q101 0 167 36.5t66 102.5q0 67 -79 96q-42 14 -189 36q-9 1 -17 2q-93 14 -149 27l-85 -117q5 -80 83 -131.5t203 -51.5z" /> + <glyph glyph-name="Hbar" unicode="Ħ" horiz-adv-x="1472" +d="M1382 1172v-115h-108v-1057h-204v617h-669v-617h-203v1057h-109v115h109v241h203v-241h669v241h204v-241h108zM1070 797v260h-669v-260h669z" /> + <glyph glyph-name="hbar" unicode="ħ" horiz-adv-x="1145" +d="M662 1018q90 0 159.5 -34t110.5 -92.5t61.5 -129.5t20.5 -153v-609h-197v582q0 258 -197 258q-121 0 -193.5 -90.5t-72.5 -226.5v-523h-194v1118h-164v139h164v156h194v-156h276v-139h-276v-261q53 77 136 119t172 42z" /> + <glyph glyph-name="Itilde" unicode="Ĩ" horiz-adv-x="599" +d="M422 1541q-40 0 -74.5 15.5t-57.5 37.5t-42.5 44t-40.5 37.5t-42 15.5q-68 0 -68 -137h-118q0 124 50 195.5t139 71.5q40 0 74 -15.5t57 -37.5t43 -44.5t41 -38t41 -15.5q67 0 67 145h124q0 -132 -51 -203t-142 -71zM198 0v1413h203v-1413h-203z" /> + <glyph glyph-name="itilde" unicode="ĩ" horiz-adv-x="508" +d="M377 1128q-40 0 -74.5 15.5t-57.5 37.5t-42.5 44t-40.5 37.5t-42 15.5q-68 0 -68 -137h-118q0 124 50 195.5t139 71.5q40 0 74 -15.5t57 -38t43 -44.5t41 -37.5t41 -15.5q67 0 67 145h124q0 -132 -51 -203t-142 -71zM158 0v999h193v-999h-193z" /> + <glyph glyph-name="Imacron" unicode="Ī" horiz-adv-x="599" +d="M25 1579v134h549v-134h-549zM198 0v1413h203v-1413h-203z" /> + <glyph glyph-name="imacron" unicode="ī" horiz-adv-x="508" +d="M-20 1166v134h549v-134h-549zM158 0v999h193v-999h-193z" /> + <glyph glyph-name="Iogonek" unicode="Į" horiz-adv-x="599" +d="M376 -259l107 -74q-79 -118 -212 -118q-94 0 -154.5 56.5t-60.5 148.5q0 55 24 102.5t59 76.5t62.5 45.5t44.5 21.5h-48v1413h203v-1413q-11 -4 -27.5 -11t-53 -28t-64.5 -45t-50.5 -61t-22.5 -77q0 -50 22.5 -74t57.5 -24q70 0 113 61z" /> + <glyph glyph-name="iogonek" unicode="į" horiz-adv-x="508" +d="M358 1413v-208h-212v208h212zM326 -259l107 -74q-79 -118 -212 -118q-94 0 -154.5 56.5t-60.5 148.5q0 55 24 102.5t59 76.5t62.5 45.5t44.5 21.5h-38v999h193v-999q-11 -4 -27.5 -11t-53 -28t-64.5 -45t-50.5 -61t-22.5 -77q0 -50 22.5 -74t57.5 -24q70 0 113 61z" /> + <glyph glyph-name="Idotaccent" unicode="İ" horiz-adv-x="599" +d="M191 1618v208h212v-208h-212zM198 0v1413h203v-1413h-203z" /> + <glyph glyph-name="dotlessi" unicode="ı" horiz-adv-x="508" +d="M158 0v999h193v-999h-193z" /> + <glyph glyph-name="IJ" unicode="IJ" horiz-adv-x="1727" +d="M198 0v1413h203v-1413h-203zM1102 -20q-197 0 -317 124.5t-134 312.5l200 24q8 -119 70.5 -197.5t180.5 -78.5q76 0 126.5 23.5t77 70t36.5 102.5t10 134v736h-533v182h736v-907q0 -119 -25 -213t-78 -165t-141.5 -109.5t-208.5 -38.5z" /> + <glyph glyph-name="Kcommaaccent" unicode="Ķ" horiz-adv-x="1470" +d="M198 0v1413h203v-786l738 786h268l-549 -567l571 -846h-249l-461 708l-318 -329v-379h-203zM488 -452l129 343h231l-237 -343h-123z" /> + <glyph glyph-name="kcommaaccent" unicode="ķ" horiz-adv-x="1081" +d="M160 0v1413h194v-895l413 481h248l-349 -376l403 -623h-230l-299 499l-186 -206v-293h-194zM374 -452l129 343h231l-237 -343h-123z" /> + <glyph glyph-name="kgreenlandic" unicode="ĸ" horiz-adv-x="1078" +d="M158 0v999h193v-473l413 473h248l-349 -376l403 -623h-230l-299 497l-186 -206v-291h-193z" /> + <glyph glyph-name="Lacute" unicode="Ĺ" horiz-adv-x="1049" +d="M204 1537l221 289h225l-291 -289h-155zM198 0v1413h203v-1224h605v-189h-808z" /> + <glyph glyph-name="lacute" unicode="ĺ" horiz-adv-x="544" +d="M150 1537l221 289h225l-291 -289h-155zM337 -20q-98 0 -141 54t-43 166v1213h194v-1200q0 -18 15.5 -39.5t48.5 -21.5q45 0 83 8v-160q-82 -20 -157 -20z" /> + <glyph glyph-name="Lcommaaccent" unicode="Ļ" horiz-adv-x="1049" +d="M198 0v1413h203v-1224h605v-189h-808zM305 -452l129 343h231l-237 -343h-123z" /> + <glyph glyph-name="lcommaaccent" unicode="ļ" horiz-adv-x="544" +d="M337 -20q-98 0 -141 54t-43 166v1213h194v-1200q0 -18 15.5 -39.5t48.5 -21.5q45 0 83 8v-160q-82 -20 -157 -20zM121 -452l129 343h231l-237 -343h-123z" /> + <glyph glyph-name="Lcaron" unicode="Ľ" horiz-adv-x="1074" +d="M198 0v1413h203v-1224h605v-189h-808zM633 990l109 423h232l-217 -423h-124z" /> + <glyph glyph-name="lcaron" unicode="ľ" horiz-adv-x="613" +d="M340 -20q-100 0 -143.5 53.5t-43.5 166.5v1213h194v-1200q0 -19 15.5 -40t51.5 -21q42 0 80 8v-160q-82 -20 -154 -20zM479 990l109 423h232l-217 -423h-124z" /> + <glyph glyph-name="Lslash" unicode="Ł" horiz-adv-x="1073" +d="M412 189h605v-189h-808v303l-93 -104v225l93 105v884h203v-653l318 360v-235l-318 -355v-341z" /> + <glyph glyph-name="lslash" unicode="ł" horiz-adv-x="544" +d="M411 152q45 0 83 8v-160q-82 -20 -157 -20q-98 0 -141 54t-43 166v240l-115 -130v185l115 130v788h194v-570l145 164v-185l-145 -164v-445q0 -18 15.5 -39.5t48.5 -21.5z" /> + <glyph glyph-name="Nacute" unicode="Ń" horiz-adv-x="1435" +d="M610 1537l221 289h225l-291 -289h-155zM198 0v1413h240l601 -1125v1125h198v-1413h-243l-598 1127v-1127h-198z" /> + <glyph glyph-name="nacute" unicode="ń" horiz-adv-x="1139" +d="M461 1124l221 289h225l-291 -289h-155zM158 0v999h192v-147q54 80 135 123t174 43q90 0 159 -34t109 -93t60 -131t20 -156v-604h-192v582q0 112 -52 187.5t-158 75.5q-115 0 -185 -79.5t-70 -233.5v-532h-192z" /> + <glyph glyph-name="Ncommaaccent" unicode="Ņ" horiz-adv-x="1435" +d="M198 0v1413h240l601 -1125v1125h198v-1413h-243l-598 1127v-1127h-198zM484 -452l129 343h231l-237 -343h-123z" /> + <glyph glyph-name="ncommaaccent" unicode="ņ" horiz-adv-x="1139" +d="M158 0v999h192v-147q54 80 135 123t174 43q90 0 159 -34t109 -93t60 -131t20 -156v-604h-192v582q0 112 -52 187.5t-158 75.5q-115 0 -185 -79.5t-70 -233.5v-532h-192zM335 -452l129 343h231l-237 -343h-123z" /> + <glyph glyph-name="Ncaron" unicode="Ň" horiz-adv-x="1435" +d="M716 1493l-322 332h174l148 -160l150 160h174zM198 0v1413h240l601 -1125v1125h198v-1413h-243l-598 1127v-1127h-198z" /> + <glyph glyph-name="ncaron" unicode="ň" horiz-adv-x="1139" +d="M567 1080l-322 332h174l148 -160l150 160h174zM158 0v999h192v-147q54 80 135 123t174 43q90 0 159 -34t109 -93t60 -131t20 -156v-604h-192v582q0 112 -52 187.5t-158 75.5q-115 0 -185 -79.5t-70 -233.5v-532h-192z" /> + <glyph glyph-name="Eng" unicode="Ŋ" horiz-adv-x="1436" +d="M835 -369v139q120 -4 175.5 47t21.5 124l-636 1179v-1120h-198v1412h236l605 -1119v1119h197v-1412q0 -369 -302 -369h-99z" /> + <glyph glyph-name="eng" unicode="ŋ" horiz-adv-x="1137" +d="M614 -369v163h65q38 0 65 13t40 29.5t20 44t8 44t1 43.5v615q0 254 -186 254q-114 0 -196 -83t-82 -195v-559h-191v999h191v-143q50 76 132.5 118t170.5 42q92 0 162 -34t110.5 -92.5t60 -130t19.5 -154.5v-680q0 -294 -289 -294h-101z" /> + <glyph glyph-name="Omacron" unicode="Ō" horiz-adv-x="1521" +d="M486 1579v134h549v-134h-549zM760 -20q-131 0 -239.5 38.5t-185 105.5t-129 159t-77.5 199t-25 225t25 224.5t77.5 199t129 159.5t185 105.5t239.5 38.5t240 -38.5t185.5 -105.5t129 -159.5t77.5 -199t25 -224.5t-25 -225t-77.5 -199t-129 -159t-185.5 -105.5t-240 -38.5 +zM760 163q117 0 206 44t141 121.5t77.5 172.5t25.5 206q0 88 -15.5 166t-50 148t-86 120t-128 79.5t-170.5 29.5t-170 -29.5t-127.5 -79.5t-85.5 -120t-49.5 -148t-15.5 -166q0 -111 25.5 -206t77 -172.5t140 -121.5t205.5 -44z" /> + <glyph glyph-name="omacron" unicode="ō" horiz-adv-x="1123" +d="M287 1166v134h549v-134h-549zM560 -20q-144 0 -257 71.5t-173.5 190t-60.5 260.5t60.5 259.5t173.5 188t257 70.5q143 0 257 -70.5t175 -188.5t61 -259q0 -142 -61 -260.5t-175 -190t-257 -71.5zM561 144q74 0 131.5 30t91.5 81t51.5 114t17.5 133q0 71 -17 133 +t-51.5 112t-92 79t-131.5 29q-98 0 -165.5 -51t-97 -128.5t-29.5 -173.5q0 -56 10.5 -108t33.5 -97.5t56.5 -79.5t83 -53.5t108.5 -19.5z" /> + <glyph glyph-name="Ohungarumlaut" unicode="Ő" horiz-adv-x="1521" +d="M480 1516l221 310h203l-269 -310h-155zM819 1516l221 310h224l-291 -310h-154zM760 -20q-131 0 -239.5 38.5t-185 105.5t-129 159t-77.5 199t-25 225t25 224.5t77.5 199t129 159.5t185 105.5t239.5 38.5t240 -38.5t185.5 -105.5t129 -159.5t77.5 -199t25 -224.5t-25 -225 +t-77.5 -199t-129 -159t-185.5 -105.5t-240 -38.5zM760 163q117 0 206 44t141 121.5t77.5 172.5t25.5 206q0 88 -15.5 166t-50 148t-86 120t-128 79.5t-170.5 29.5t-170 -29.5t-127.5 -79.5t-85.5 -120t-49.5 -148t-15.5 -166q0 -111 25.5 -206t77 -172.5t140 -121.5 +t205.5 -44z" /> + <glyph glyph-name="ohungarumlaut" unicode="ő" horiz-adv-x="1123" +d="M281 1103l221 310h203l-269 -310h-155zM620 1103l221 310h224l-291 -310h-154zM560 -20q-144 0 -257 71.5t-173.5 190t-60.5 260.5t60.5 259.5t173.5 188t257 70.5q143 0 257 -70.5t175 -188.5t61 -259q0 -142 -61 -260.5t-175 -190t-257 -71.5zM561 144q74 0 131.5 30 +t91.5 81t51.5 114t17.5 133q0 71 -17 133t-51.5 112t-92 79t-131.5 29q-98 0 -165.5 -51t-97 -128.5t-29.5 -173.5q0 -56 10.5 -108t33.5 -97.5t56.5 -79.5t83 -53.5t108.5 -19.5z" /> + <glyph glyph-name="OE" unicode="Œ" horiz-adv-x="2249" +d="M760 -20q-131 0 -239.5 38.5t-185 105.5t-129 159t-77.5 199t-25 225t25 224.5t77.5 199t129 159.5t185 105.5t239.5 38.5q313 0 454 -226v205h918v-182h-715v-434h649v-180h-649v-428h715v-189h-918v205q-142 -225 -454 -225zM760 169q117 0 206.5 43.5t142.5 119 +t79 170t26 205.5q0 110 -26 204.5t-79 170.5t-142.5 119t-206.5 43q-94 0 -170.5 -28.5t-128.5 -78t-87 -118.5t-51 -146.5t-16 -165.5q0 -111 26 -205.5t78.5 -170t142 -119t206.5 -43.5z" /> + <glyph glyph-name="oe" unicode="œ" horiz-adv-x="1805" +d="M560 -20q-144 0 -257.5 70t-173.5 187t-60 259q0 141 60 258t173.5 187.5t257.5 70.5q120 0 215.5 -51t156.5 -141q120 192 353 192q100 0 178.5 -29t128 -77.5t81.5 -117t45 -141t13 -155.5l-5 -58h-691q7 -116 78 -191.5t193 -75.5q86 0 149.5 24t119.5 82l135 -115 +q-84 -89 -181.5 -129.5t-220.5 -40.5q-127 0 -221 50.5t-152 137.5q-62 -93 -157.5 -144.5t-217.5 -51.5zM1035 583h505q-6 122 -70 191t-185 69q-113 0 -176 -72.5t-74 -187.5zM557 150q98 0 163.5 48t93 123.5t27.5 174.5q0 73 -16 133.5t-48 109t-87.5 75.5t-129.5 27 +q-97 0 -162.5 -48.5t-93.5 -124t-28 -174.5q0 -73 16 -133.5t48.5 -108.5t88 -75t128.5 -27z" /> + <glyph glyph-name="Racute" unicode="Ŕ" horiz-adv-x="1242" +d="M509 1537l221 289h225l-291 -289h-155zM198 -2v1414h429q199 0 332 -109.5t133 -293.5q0 -136 -79.5 -234t-210.5 -133l388 -644h-235l-351 621h-203v-621h-203zM403 794h248q110 5 175 61t65 152q0 104 -71.5 164t-190.5 60h-226v-437z" /> + <glyph glyph-name="racute" unicode="ŕ" horiz-adv-x="805" +d="M290 1124l221 289h225l-291 -289h-155zM158 0v999h190v-173q35 90 113 142t169 52q104 0 171 -61l-85 -163q-49 37 -116 37q-113 0 -183.5 -95.5t-70.5 -274.5v-463h-188z" /> + <glyph glyph-name="Rcommaaccent" unicode="Ŗ" horiz-adv-x="1242" +d="M198 -2v1414h429q199 0 332 -109.5t133 -293.5q0 -136 -79.5 -234t-210.5 -133l388 -644h-235l-351 621h-203v-621h-203zM403 794h248q110 5 175 61t65 152q0 104 -71.5 164t-190.5 60h-226v-437zM455 -452l129 343h231l-237 -343h-123z" /> + <glyph glyph-name="rcommaaccent" unicode="ŗ" horiz-adv-x="805" +d="M158 0v999h190v-173q35 90 113 142t169 52q104 0 171 -61l-85 -163q-49 37 -116 37q-113 0 -183.5 -95.5t-70.5 -274.5v-463h-188zM21 -452l129 343h231l-237 -343h-123z" /> + <glyph glyph-name="Rcaron" unicode="Ř" horiz-adv-x="1242" +d="M615 1493l-322 332h174l148 -160l150 160h174zM198 -2v1414h429q199 0 332 -109.5t133 -293.5q0 -136 -79.5 -234t-210.5 -133l388 -644h-235l-351 621h-203v-621h-203zM403 794h248q110 5 175 61t65 152q0 104 -71.5 164t-190.5 60h-226v-437z" /> + <glyph glyph-name="rcaron" unicode="ř" horiz-adv-x="805" +d="M396 1080l-322 332h174l148 -160l150 160h174zM158 0v999h190v-173q35 90 113 142t169 52q104 0 171 -61l-85 -163q-49 37 -116 37q-113 0 -183.5 -95.5t-70.5 -274.5v-463h-188z" /> + <glyph glyph-name="Sacute" unicode="Ś" horiz-adv-x="1123" +d="M450 1537l221 289h225l-291 -289h-155zM578 -16q-123 0 -230 42.5t-184.5 134t-98.5 218.5l197 53q14 -131 102.5 -199t215.5 -68q122 0 192 57.5t70 160.5q0 53 -23.5 95.5t-63 72.5t-90.5 56t-108 49t-113.5 48t-107.5 57.5t-90.5 72.5t-63 98t-23.5 129 +q0 169 118.5 271t291.5 102q131 0 237 -58t173 -175l-162 -103q-40 76 -106.5 116.5t-146.5 40.5q-85 0 -144.5 -50t-59.5 -131q0 -47 23.5 -85t63 -65.5t90.5 -51.5t107.5 -47.5t113 -49.5t107.5 -60.5t90.5 -76.5t63 -103t23.5 -135q0 -188 -132 -302t-332 -114z" /> + <glyph glyph-name="sacute" unicode="ś" horiz-adv-x="888" +d="M322 1124l221 289h225l-291 -289h-155zM446 -20q-144 0 -251 75.5t-144 187.5l158 74q61 -177 232 -177q83 0 131.5 40t48.5 103q0 45 -28.5 76t-74 49t-101 33.5t-110.5 36t-100.5 49t-74 79.5t-28.5 121q0 139 99 216t243 77q119 0 209.5 -55t142.5 -153l-147 -81 +q-70 135 -212 135q-69 0 -111 -32t-42 -82q0 -39 29 -66.5t75 -44.5t102 -33t112 -38.5t102 -54t75 -87t29 -129.5q0 -79 -31 -141.5t-83.5 -100.5t-116.5 -57.5t-133 -19.5z" /> + <glyph glyph-name="Scedilla" unicode="Ş" horiz-adv-x="1123" +d="M1042 400q0 -178 -120.5 -290.5t-305.5 -124.5l-63 -94q91 -7 139.5 -58.5t48.5 -129.5q0 -89 -62 -152.5t-158 -63.5q-62 0 -114 36t-74 91l116 54q6 -25 28 -43t50 -18q40 0 65 25t25 63q0 49 -47.5 83.5t-130.5 34.5h-54l104 177q-163 23 -280 123t-144 266l197 53 +q14 -131 102.5 -199t215.5 -68q122 0 192 57.5t70 160.5q0 53 -23.5 95.5t-63 72.5t-90.5 56t-108 49t-113.5 48t-107.5 57.5t-90.5 72.5t-63 98t-23.5 129q0 169 118.5 271t291.5 102q131 0 237 -58t173 -175l-162 -103q-40 76 -106.5 116.5t-146.5 40.5q-85 0 -144.5 -50 +t-59.5 -131q0 -47 23.5 -85t63 -65.5t90.5 -51.5t107.5 -47.5t113 -49.5t107.5 -60.5t90.5 -76.5t63 -103t23.5 -135z" /> + <glyph glyph-name="scedilla" unicode="ş" horiz-adv-x="888" +d="M810 299q0 -128 -76.5 -207.5t-194.5 -102.5l-65 -98q91 -7 139.5 -58.5t48.5 -129.5q0 -89 -62 -152.5t-158 -63.5q-62 0 -114 36t-74 91l116 54q6 -25 28 -43t50 -18q40 0 65 25t25 63q0 49 -47.5 83.5t-130.5 34.5h-54l99 169q-129 11 -224.5 84t-129.5 177l158 74 +q61 -177 232 -177q83 0 131.5 40t48.5 103q0 45 -28.5 76t-74 49t-101 33.5t-110.5 36t-100.5 49t-74 79.5t-28.5 121q0 139 99 216t243 77q119 0 209.5 -55t142.5 -153l-147 -81q-70 135 -212 135q-69 0 -111 -32t-42 -82q0 -39 29 -66.5t75 -44.5t102 -33t112 -38.5 +t102 -54t75 -87t29 -129.5z" /> + <glyph glyph-name="Scaron" unicode="Š" horiz-adv-x="1123" +d="M556 1493l-322 332h174l148 -160l150 160h174zM578 -16q-123 0 -230 42.5t-184.5 134t-98.5 218.5l197 53q14 -131 102.5 -199t215.5 -68q122 0 192 57.5t70 160.5q0 53 -23.5 95.5t-63 72.5t-90.5 56t-108 49t-113.5 48t-107.5 57.5t-90.5 72.5t-63 98t-23.5 129 +q0 169 118.5 271t291.5 102q131 0 237 -58t173 -175l-162 -103q-40 76 -106.5 116.5t-146.5 40.5q-85 0 -144.5 -50t-59.5 -131q0 -47 23.5 -85t63 -65.5t90.5 -51.5t107.5 -47.5t113 -49.5t107.5 -60.5t90.5 -76.5t63 -103t23.5 -135q0 -188 -132 -302t-332 -114z" /> + <glyph glyph-name="scaron" unicode="š" horiz-adv-x="888" +d="M428 1080l-322 332h174l148 -160l150 160h174zM446 -20q-144 0 -251 75.5t-144 187.5l158 74q61 -177 232 -177q83 0 131.5 40t48.5 103q0 45 -28.5 76t-74 49t-101 33.5t-110.5 36t-100.5 49t-74 79.5t-28.5 121q0 139 99 216t243 77q119 0 209.5 -55t142.5 -153 +l-147 -81q-70 135 -212 135q-69 0 -111 -32t-42 -82q0 -39 29 -66.5t75 -44.5t102 -33t112 -38.5t102 -54t75 -87t29 -129.5q0 -79 -31 -141.5t-83.5 -100.5t-116.5 -57.5t-133 -19.5z" /> + <glyph glyph-name="uni0162" unicode="Ţ" horiz-adv-x="1208" +d="M502 0v1237h-461v176h1126v-176h-461v-1237h-204zM570 -513q-62 0 -114 36t-74 91l116 54q6 -25 28 -43t50 -18q40 0 65 25t25 63q0 49 -47.5 83.5t-130.5 34.5h-54l109 186h131l-72 -108q91 -7 139.5 -58.5t48.5 -129.5q0 -89 -62 -152.5t-158 -63.5z" /> + <glyph glyph-name="uni0163" unicode="ţ" horiz-adv-x="711" +d="M464 -109q91 -7 139.5 -58.5t48.5 -129.5q0 -89 -62 -152.5t-158 -63.5q-62 0 -114 36t-74 91l116 54q6 -25 28 -43t50 -18q40 0 65 25t25 63q0 49 -47.5 83.5t-130.5 34.5h-54l102 174q-100 20 -151 93.5t-51 189.5v568h-161v161h163v236l190 156v-392h253v-161h-253 +v-548q0 -74 33 -109t87 -35q57 0 119 31v-172q-38 -16 -102 -22z" /> + <glyph glyph-name="Tcaron" unicode="Ť" horiz-adv-x="1208" +d="M605 1493l-322 332h174l148 -160l150 160h174zM502 0v1237h-461v176h1126v-176h-461v-1237h-204z" /> + <glyph glyph-name="tcaron" unicode="ť" horiz-adv-x="715" +d="M504 1123l127 411h224l-235 -411h-116zM463 -20q-136 0 -202 77.5t-66 212.5v559h-159v170h162v236l186 156v-392h258v-170h-258v-563q0 -116 101 -116q41 0 77 7t51 13l15 7v-172q-59 -25 -165 -25z" /> + <glyph glyph-name="Tbar" unicode="Ŧ" horiz-adv-x="1208" +d="M1167 1237h-461v-461h217v-139h-217v-637h-204v637h-213v139h213v461h-461v176h1126v-176z" /> + <glyph glyph-name="tbar" unicode="ŧ" horiz-adv-x="711" +d="M655 430h-267v-140q0 -74 33 -109t87 -35q57 0 119 31v-172q-60 -25 -156 -25q-136 0 -205.5 77t-69.5 213v160h-175v139h175v269h-161v161h163v236l190 156v-392h253v-161h-253v-269h267v-139z" /> + <glyph glyph-name="Utilde" unicode="Ũ" horiz-adv-x="1366" +d="M806 1541q-40 0 -74.5 15.5t-57.5 37.5t-42.5 44t-40.5 37.5t-42 15.5q-68 0 -68 -137h-118q0 124 50 195.5t139 71.5q40 0 74 -15.5t57 -37.5t43 -44.5t41 -38t41 -15.5q67 0 67 145h124q0 -132 -51 -203t-142 -71zM682 -20q-133 0 -233.5 42t-161 118t-90 174.5 +t-29.5 219.5v879h203v-842q0 -93 15 -162t49 -123.5t96 -82.5t151 -28t151 28t97 82.5t50 123.5t15 162v842h204v-869q0 -124 -30 -225t-91.5 -178t-162 -119t-233.5 -42z" /> + <glyph glyph-name="utilde" unicode="ũ" horiz-adv-x="1140" +d="M690 1128q-40 0 -74.5 15.5t-57.5 37.5t-42.5 44t-40.5 37.5t-42 15.5q-68 0 -68 -137h-118q0 124 50 195.5t139 71.5q40 0 74 -15.5t57 -38t43 -44.5t41 -37.5t41 -15.5q67 0 67 145h124q0 -132 -51 -203t-142 -71zM483 -21q-179 0 -266.5 125t-87.5 340v555h196v-564 +q0 -62 8.5 -110t29 -89.5t60.5 -64t98 -22.5q113 0 190 88t77 257v505h195v-999h-195v145q-44 -72 -125 -119t-180 -47z" /> + <glyph glyph-name="Umacron" unicode="Ū" horiz-adv-x="1366" +d="M409 1579v134h549v-134h-549zM682 -20q-133 0 -233.5 42t-161 118t-90 174.5t-29.5 219.5v879h203v-842q0 -93 15 -162t49 -123.5t96 -82.5t151 -28t151 28t97 82.5t50 123.5t15 162v842h204v-869q0 -124 -30 -225t-91.5 -178t-162 -119t-233.5 -42z" /> + <glyph glyph-name="umacron" unicode="ū" horiz-adv-x="1140" +d="M293 1166v134h549v-134h-549zM483 -21q-179 0 -266.5 125t-87.5 340v555h196v-564q0 -62 8.5 -110t29 -89.5t60.5 -64t98 -22.5q113 0 190 88t77 257v505h195v-999h-195v145q-44 -72 -125 -119t-180 -47z" /> + <glyph glyph-name="Uring" unicode="Ů" horiz-adv-x="1366" +d="M681 1487q-91 0 -153 64t-62 153t62.5 152t152.5 63q89 0 153 -62.5t64 -152.5t-63 -153.5t-154 -63.5zM681 1604q43 0 72 29t29 72q0 42 -28 69.5t-73 27.5q-44 0 -71 -27t-27 -70q0 -44 28 -72.5t70 -28.5zM682 -20q-133 0 -233.5 42t-161 118t-90 174.5t-29.5 219.5 +v879h203v-842q0 -93 15 -162t49 -123.5t96 -82.5t151 -28t151 28t97 82.5t50 123.5t15 162v842h204v-869q0 -124 -30 -225t-91.5 -178t-162 -119t-233.5 -42z" /> + <glyph glyph-name="uring" unicode="ů" horiz-adv-x="1140" +d="M565 1074q-91 0 -153 64t-62 153t62.5 152t152.5 63q89 0 153 -62.5t64 -152.5t-63 -153.5t-154 -63.5zM565 1191q43 0 72 29t29 72q0 42 -28 69.5t-73 27.5q-44 0 -71 -27t-27 -70q0 -44 28 -72.5t70 -28.5zM483 -21q-179 0 -266.5 125t-87.5 340v555h196v-564 +q0 -62 8.5 -110t29 -89.5t60.5 -64t98 -22.5q113 0 190 88t77 257v505h195v-999h-195v145q-44 -72 -125 -119t-180 -47z" /> + <glyph glyph-name="Uhungarumlaut" unicode="Ű" horiz-adv-x="1366" +d="M403 1516l221 310h203l-269 -310h-155zM742 1516l221 310h224l-291 -310h-154zM682 -20q-133 0 -233.5 42t-161 118t-90 174.5t-29.5 219.5v879h203v-842q0 -93 15 -162t49 -123.5t96 -82.5t151 -28t151 28t97 82.5t50 123.5t15 162v842h204v-869q0 -124 -30 -225 +t-91.5 -178t-162 -119t-233.5 -42z" /> + <glyph glyph-name="uhungarumlaut" unicode="ű" horiz-adv-x="1140" +d="M287 1103l221 310h203l-269 -310h-155zM626 1103l221 310h224l-291 -310h-154zM483 -21q-179 0 -266.5 125t-87.5 340v555h196v-564q0 -62 8.5 -110t29 -89.5t60.5 -64t98 -22.5q113 0 190 88t77 257v505h195v-999h-195v145q-44 -72 -125 -119t-180 -47z" /> + <glyph glyph-name="Uogonek" unicode="Ų" horiz-adv-x="1366" +d="M995 1413h204v-869q0 -198 -76.5 -337.5t-232.5 -194.5q-65 -32 -116 -82.5t-51 -116.5q0 -50 22.5 -74t57.5 -24q70 0 113 61l107 -74q-79 -118 -212 -118q-94 0 -154.5 56.5t-60.5 148.5q0 110 97 191h-11q-133 0 -233.5 42t-161 118t-90 174.5t-29.5 219.5v879h203 +v-842q0 -93 15 -162t49 -123.5t96 -82.5t151 -28t151 28t97 82.5t50 123.5t15 162v842z" /> + <glyph glyph-name="uogonek" unicode="ų" horiz-adv-x="1140" +d="M958 -259l107 -74q-79 -118 -212 -118q-94 0 -154.5 56.5t-60.5 148.5q0 55 24 102.5t59 76.5t62.5 45.5t44.5 21.5h-40v145q-44 -72 -125 -119t-180 -47q-179 0 -266.5 125t-87.5 340v555h196v-564q0 -62 8.5 -110t29 -89.5t60.5 -64t98 -22.5q113 0 190 88t77 257v505 +h195v-999q-11 -4 -27.5 -11t-53 -28t-64.5 -45t-50.5 -61t-22.5 -77q0 -50 22.5 -74t57.5 -24q70 0 113 61z" /> + <glyph glyph-name="Wcircumflex" unicode="Ŵ" horiz-adv-x="1987" +d="M671 1498l323 354l323 -354h-173l-150 167l-148 -167h-175zM461 0l-410 1413h210l319 -1135l334 1053h160l334 -1053l318 1135h211l-410 -1413h-208l-324 1007l-327 -1007h-207z" /> + <glyph glyph-name="wcircumflex" unicode="ŵ" horiz-adv-x="1441" +d="M399 1098l323 354l323 -354h-173l-150 167l-148 -167h-175zM324 -2l-293 1001h206l189 -719l210 719h170l210 -717l189 717h206l-293 -999h-180l-216 738l-218 -740h-180z" /> + <glyph glyph-name="Ycircumflex" unicode="Ŷ" horiz-adv-x="1317" +d="M333 1511l323 354l323 -354h-173l-150 167l-148 -167h-175zM556 0v552l-529 861h242l388 -661l390 661h243l-527 -861v-552h-207z" /> + <glyph glyph-name="ycircumflex" unicode="ŷ" horiz-adv-x="1002" +d="M175 1098l323 354l323 -354h-173l-150 167l-148 -167h-175zM226 -430l177 445l-387 984h213l274 -759l271 759h212l-552 -1429h-208z" /> + <glyph glyph-name="Ydieresis" unicode="Ÿ" horiz-adv-x="1317" +d="M390 1618v208h186v-208h-186zM735 1618v208h186v-208h-186zM556 0v552l-529 861h242l388 -661l390 661h243l-527 -861v-552h-207z" /> + <glyph glyph-name="Zacute" unicode="Ź" horiz-adv-x="1273" +d="M526 1537l221 289h225l-291 -289h-155zM74 0v148l845 1083h-800v182h1067v-155l-841 -1074h841v-184h-1112z" /> + <glyph glyph-name="zacute" unicode="ź" horiz-adv-x="964" +d="M813 1413l-291 -289h-155l221 289h225zM890 999v-147l-573 -688h573v-164h-830v136l590 702h-561v161h801z" /> + <glyph glyph-name="Zdotaccent" unicode="Ż" horiz-adv-x="1273" +d="M525 1618v208h212v-208h-212zM74 0v148l845 1083h-800v182h1067v-155l-841 -1074h841v-184h-1112z" /> + <glyph glyph-name="zdotaccent" unicode="ż" horiz-adv-x="964" +d="M578 1413v-208h-212v208h212zM890 999v-147l-573 -688h573v-164h-830v136l590 702h-561v161h801z" /> + <glyph glyph-name="Zcaron" unicode="Ž" horiz-adv-x="1273" +d="M632 1493l-322 332h174l148 -160l150 160h174zM74 0v148l845 1083h-800v182h1067v-155l-841 -1074h841v-184h-1112z" /> + <glyph glyph-name="zcaron" unicode="ž" horiz-adv-x="964" +d="M797 1412l-324 -332l-322 332h174l148 -160l150 160h174zM890 999v-147l-573 -688h573v-164h-830v136l590 702h-561v161h801z" /> + <glyph glyph-name="florin" unicode="ƒ" horiz-adv-x="1038" +d="M90 -457v168q184 0 261 67.5t77 233.5v822h-178v165h178v145q0 132 82.5 218.5t200.5 86.5q116 0 221 -90l-109 -128q-57 50 -112 50q-48 0 -81.5 -34.5t-33.5 -102.5v-145h305v-165h-305v-822q0 -227 -132.5 -348t-373.5 -121z" /> + <glyph glyph-name="uni01C3" unicode="ǃ" horiz-adv-x="622" +d="M238 402l-29 1032h204l-29 -1032h-146zM197 0v226h228v-226h-228z" /> + <glyph glyph-name="uni01C4" unicode="DŽ" horiz-adv-x="2660" +d="M2019 1493l-322 332h174l148 -160l150 160h174zM198 0v1413h383q352 0 537.5 -185t185.5 -532q0 -333 -188.5 -514.5t-536.5 -181.5h-381zM1461 0v148l845 1083h-800v182h1067v-155l-841 -1074h841v-184h-1112zM401 186h154q123 0 221 29.5t172 91t113.5 163t39.5 237.5 +q0 265 -127 393t-397 128h-176v-1042z" /> + <glyph glyph-name="uni01C5" unicode="Dž" horiz-adv-x="2375" +d="M581 1413q352 0 537.5 -185t185.5 -532q0 -333 -188.5 -514.5t-536.5 -181.5h-381v1413h383zM2208 1412l-324 -332l-322 332h174l148 -160l150 160h174zM555 186q123 0 221 29.5t172 91t113.5 163t39.5 237.5q0 265 -127 393t-397 128h-176v-1042h154zM2301 999v-147 +l-573 -688h573v-164h-830v136l590 702h-561v161h801z" /> + <glyph glyph-name="uni01C6" unicode="dž" horiz-adv-x="2113" +d="M794 880v533h195v-1413h-184l-6 125q-105 -145 -303 -145q-129 0 -225 72t-143 188.5t-47 259.5t47 259.5t142.5 188.5t223.5 72q195 0 300 -140zM1946 1412l-324 -332l-322 332h174l148 -160l150 160h174zM2039 999v-147l-573 -688h573v-164h-830v136l590 702h-561v161 +h801zM545 150q90 0 151 49t87.5 125.5t26.5 175.5q0 151 -66.5 250t-198.5 99q-89 0 -151 -49.5t-89 -126.5t-27 -173q0 -151 67.5 -250.5t199.5 -99.5z" /> + <glyph glyph-name="uni01C7" unicode="LJ" horiz-adv-x="2214" +d="M198 0v1413h203v-1224h605v-189h-808zM1589 -20q-197 0 -317 124.5t-134 312.5l200 24q8 -119 70.5 -197.5t180.5 -78.5q76 0 126.5 23.5t77 70t36.5 102.5t10 134v736h-533v182h736v-907q0 -119 -25 -213t-78 -165t-141.5 -109.5t-208.5 -38.5z" /> + <glyph glyph-name="uni01C8" unicode="Lj" horiz-adv-x="1570" +d="M198 0v1413h203v-1224h605v-189h-808zM1208 1209v204h212v-204h-212zM1139 -438q-84 0 -161 32l45 158q60 -20 103 -20q90 0 90 116v1151h196v-1130q0 -138 -68 -222.5t-205 -84.5z" /> + <glyph glyph-name="uni01C9" unicode="lj" horiz-adv-x="1059" +d="M337 -20q-98 0 -141 54t-43 166v1213h194v-1200q0 -18 15.5 -39.5t48.5 -21.5q45 0 83 8v-160q-82 -20 -157 -20zM697 1209v204h212v-204h-212zM628 -438q-84 0 -161 32l45 158q60 -20 103 -20q90 0 90 116v1151h196v-1130q0 -138 -68 -222.5t-205 -84.5z" /> + <glyph glyph-name="uni01CA" unicode="NJ" horiz-adv-x="2563" +d="M198 0v1413h240l601 -1125v1125h198v-1413h-243l-598 1127v-1127h-198zM1938 -20q-197 0 -317 124.5t-134 312.5l200 24q8 -119 70.5 -197.5t180.5 -78.5q76 0 126.5 23.5t77 70t36.5 102.5t10 134v736h-533v182h736v-907q0 -119 -25 -213t-78 -165t-141.5 -109.5 +t-208.5 -38.5z" /> + <glyph glyph-name="uni01CB" unicode="Nj" horiz-adv-x="1950" +d="M198 0v1413h240l601 -1125v1125h198v-1413h-243l-598 1127v-1127h-198zM1588 1209v204h212v-204h-212zM1519 -438q-84 0 -161 32l45 158q60 -20 103 -20q90 0 90 116v1151h196v-1130q0 -138 -68 -222.5t-205 -84.5z" /> + <glyph glyph-name="uni01CC" unicode="nj" horiz-adv-x="1654" +d="M1292 1209v204h212v-204h-212zM158 0v999h192v-147q54 80 135 123t174 43q90 0 159 -34t109 -93t60 -131t20 -156v-604h-192v582q0 112 -52 187.5t-158 75.5q-115 0 -185 -79.5t-70 -233.5v-532h-192zM1223 -438q-84 0 -161 32l45 158q60 -20 103 -20q90 0 90 116v1151 +h196v-1130q0 -138 -68 -222.5t-205 -84.5z" /> + <glyph glyph-name="uni01CD" unicode="Ǎ" horiz-adv-x="1323" +d="M661 1493l-322 332h174l148 -160l150 160h174zM39 0l547 1413h154l544 -1413h-219l-108 307h-587l-109 -307h-222zM438 486h450l-224 628z" /> + <glyph glyph-name="uni01CE" unicode="ǎ" +d="M502 1080l-322 332h174l148 -160l150 160h174zM409 -20q-151 0 -246.5 83.5t-95.5 228.5q0 291 420 291h243q0 125 -55 196.5t-168 71.5q-162 0 -257 -146l-145 108q149 207 397 207q194 0 302 -112t108 -298v-610h-161l-10 169q-108 -189 -332 -189zM434 144 +q125 0 209.5 91t86.5 205h-229q-235 0 -235 -154q0 -69 45.5 -105.5t122.5 -36.5z" /> + <glyph glyph-name="uni01CF" unicode="Ǐ" horiz-adv-x="599" +d="M298 1493l-322 332h174l148 -160l150 160h174zM198 0v1413h203v-1413h-203z" /> + <glyph glyph-name="uni01D0" unicode="ǐ" horiz-adv-x="508" +d="M253 1080l-322 332h174l148 -160l150 160h174zM158 0v999h193v-999h-193z" /> + <glyph glyph-name="uni01D1" unicode="Ǒ" horiz-adv-x="1521" +d="M759 1493l-322 332h174l148 -160l150 160h174zM760 -20q-131 0 -239.5 38.5t-185 105.5t-129 159t-77.5 199t-25 225t25 224.5t77.5 199t129 159.5t185 105.5t239.5 38.5t240 -38.5t185.5 -105.5t129 -159.5t77.5 -199t25 -224.5t-25 -225t-77.5 -199t-129 -159 +t-185.5 -105.5t-240 -38.5zM760 163q117 0 206 44t141 121.5t77.5 172.5t25.5 206q0 88 -15.5 166t-50 148t-86 120t-128 79.5t-170.5 29.5t-170 -29.5t-127.5 -79.5t-85.5 -120t-49.5 -148t-15.5 -166q0 -111 25.5 -206t77 -172.5t140 -121.5t205.5 -44z" /> + <glyph glyph-name="uni01D2" unicode="ǒ" horiz-adv-x="1123" +d="M560 1080l-322 332h174l148 -160l150 160h174zM560 -20q-144 0 -257 71.5t-173.5 190t-60.5 260.5t60.5 259.5t173.5 188t257 70.5q143 0 257 -70.5t175 -188.5t61 -259q0 -142 -61 -260.5t-175 -190t-257 -71.5zM561 144q74 0 131.5 30t91.5 81t51.5 114t17.5 133 +q0 71 -17 133t-51.5 112t-92 79t-131.5 29q-98 0 -165.5 -51t-97 -128.5t-29.5 -173.5q0 -56 10.5 -108t33.5 -97.5t56.5 -79.5t83 -53.5t108.5 -19.5z" /> + <glyph glyph-name="uni01D3" unicode="Ǔ" horiz-adv-x="1366" +d="M682 1493l-322 332h174l148 -160l150 160h174zM682 -20q-133 0 -233.5 42t-161 118t-90 174.5t-29.5 219.5v879h203v-842q0 -93 15 -162t49 -123.5t96 -82.5t151 -28t151 28t97 82.5t50 123.5t15 162v842h204v-869q0 -124 -30 -225t-91.5 -178t-162 -119t-233.5 -42z" /> + <glyph glyph-name="uni01D4" unicode="ǔ" horiz-adv-x="1140" +d="M566 1080l-322 332h174l148 -160l150 160h174zM483 -21q-179 0 -266.5 125t-87.5 340v555h196v-564q0 -62 8.5 -110t29 -89.5t60.5 -64t98 -22.5q113 0 190 88t77 257v505h195v-999h-195v145q-44 -72 -125 -119t-180 -47z" /> + <glyph glyph-name="uni01D5" unicode="Ǖ" horiz-adv-x="1366" +d="M409 1993v134h549v-134h-549zM416 1618v208h186v-208h-186zM761 1618v208h186v-208h-186zM682 -20q-133 0 -233.5 42t-161 118t-90 174.5t-29.5 219.5v879h203v-842q0 -93 15 -162t49 -123.5t96 -82.5t151 -28t151 28t97 82.5t50 123.5t15 162v842h204v-869 +q0 -124 -30 -225t-91.5 -178t-162 -119t-233.5 -42z" /> + <glyph glyph-name="uni01D6" unicode="ǖ" horiz-adv-x="1140" +d="M293 1580v134h549v-134h-549zM300 1205v208h186v-208h-186zM645 1205v208h186v-208h-186zM483 -21q-179 0 -266.5 125t-87.5 340v555h196v-564q0 -62 8.5 -110t29 -89.5t60.5 -64t98 -22.5q113 0 190 88t77 257v505h195v-999h-195v145q-44 -72 -125 -119t-180 -47z" /> + <glyph glyph-name="uni01D7" unicode="Ǘ" horiz-adv-x="1366" +d="M576 1951l221 289h225l-291 -289h-155zM416 1618v208h186v-208h-186zM761 1618v208h186v-208h-186zM682 -20q-133 0 -233.5 42t-161 118t-90 174.5t-29.5 219.5v879h203v-842q0 -93 15 -162t49 -123.5t96 -82.5t151 -28t151 28t97 82.5t50 123.5t15 162v842h204v-869 +q0 -124 -30 -225t-91.5 -178t-162 -119t-233.5 -42z" /> + <glyph glyph-name="uni01D8" unicode="ǘ" horiz-adv-x="1140" +d="M460 1538l221 289h225l-291 -289h-155zM300 1205v208h186v-208h-186zM645 1205v208h186v-208h-186zM483 -21q-179 0 -266.5 125t-87.5 340v555h196v-564q0 -62 8.5 -110t29 -89.5t60.5 -64t98 -22.5q113 0 190 88t77 257v505h195v-999h-195v145q-44 -72 -125 -119 +t-180 -47z" /> + <glyph glyph-name="uni01D9" unicode="Ǚ" horiz-adv-x="1366" +d="M682 1907l-322 332h174l148 -160l150 160h174zM416 1618v208h186v-208h-186zM761 1618v208h186v-208h-186zM682 -20q-133 0 -233.5 42t-161 118t-90 174.5t-29.5 219.5v879h203v-842q0 -93 15 -162t49 -123.5t96 -82.5t151 -28t151 28t97 82.5t50 123.5t15 162v842h204 +v-869q0 -124 -30 -225t-91.5 -178t-162 -119t-233.5 -42z" /> + <glyph glyph-name="uni01DA" unicode="ǚ" horiz-adv-x="1140" +d="M566 1494l-322 332h174l148 -160l150 160h174zM300 1205v208h186v-208h-186zM645 1205v208h186v-208h-186zM483 -21q-179 0 -266.5 125t-87.5 340v555h196v-564q0 -62 8.5 -110t29 -89.5t60.5 -64t98 -22.5q113 0 190 88t77 257v505h195v-999h-195v145q-44 -72 -125 -119 +t-180 -47z" /> + <glyph glyph-name="uni01DB" unicode="Ǜ" horiz-adv-x="1366" +d="M614 1940l-281 300h224l221 -300h-164zM416 1618v208h186v-208h-186zM761 1618v208h186v-208h-186zM682 -20q-133 0 -233.5 42t-161 118t-90 174.5t-29.5 219.5v879h203v-842q0 -93 15 -162t49 -123.5t96 -82.5t151 -28t151 28t97 82.5t50 123.5t15 162v842h204v-869 +q0 -124 -30 -225t-91.5 -178t-162 -119t-233.5 -42z" /> + <glyph glyph-name="uni01DC" unicode="ǜ" horiz-adv-x="1140" +d="M498 1527l-281 300h224l221 -300h-164zM300 1205v208h186v-208h-186zM645 1205v208h186v-208h-186zM483 -21q-179 0 -266.5 125t-87.5 340v555h196v-564q0 -62 8.5 -110t29 -89.5t60.5 -64t98 -22.5q113 0 190 88t77 257v505h195v-999h-195v145q-44 -72 -125 -119 +t-180 -47z" /> + <glyph glyph-name="uni01DD" unicode="ǝ" +d="M514 -12q-100 0 -178 29t-127.5 77.5t-81.5 117t-45 141.5t-13 158q0 12 1.5 24.5t3 20t1.5 8.5h691q-6 125 -76.5 198.5t-190.5 73.5q-89 0 -150.5 -21.5t-116.5 -78.5l-133 112q83 87 178.5 125.5t218.5 38.5q116 0 208 -41t149.5 -111t87.5 -160.5t30 -193.5 +q0 -81 -17.5 -156.5t-54.5 -141.5t-90 -114.5t-129 -77t-166 -28.5zM514 154q116 0 179 73t73 189h-509q6 -123 70.5 -192.5t186.5 -69.5z" /> + <glyph glyph-name="uni01E3" unicode="ǣ" horiz-adv-x="1679" +d="M562 1173v129h546v-129h-546zM402 -20q-139 0 -237 84t-98 220q0 155 102.5 227.5t277.5 72.5h293q0 132 -56.5 201.5t-183.5 69.5q-79 0 -145 -39.5t-106 -97.5l-141 98q74 101 171 150.5t229 49.5q117 0 201.5 -46.5t129.5 -131.5q114 174 327 174q97 0 173.5 -29 +t125.5 -77.5t80.5 -117t44.5 -142t13 -157.5q0 -30 -5 -53h-692q7 -125 77.5 -198.5t190.5 -73.5q88 0 150.5 22t116.5 79l133 -114q-83 -87 -178.5 -125t-219.5 -38q-268 0 -369 224q-127 -232 -405 -232zM907 584h509q-7 125 -72.5 193t-185.5 68q-116 0 -179 -72.5 +t-72 -188.5zM441 142q119 0 205.5 88t93.5 206h-279q-90 0 -146.5 -41t-56.5 -111q0 -64 54.5 -103t128.5 -39z" /> + <glyph glyph-name="uni01EB" unicode="ǫ" horiz-adv-x="1123" +d="M687 -4q-19 -8 -39 -17.5t-52 -31t-56 -44t-42 -56.5t-18 -69q0 -50 22.5 -74t57.5 -24q70 0 113 61l107 -74q-79 -118 -212 -118q-94 0 -154.5 56.5t-60.5 148.5q0 81 46.5 139t105.5 90q-195 20 -315.5 168t-120.5 351q0 142 60.5 259.5t173.5 188t257 70.5 +q143 0 257 -70.5t175 -188.5t61 -259q0 -182 -100 -322.5t-266 -183.5zM269 502q0 -56 10.5 -108t33.5 -97.5t56.5 -79.5t83 -53.5t108.5 -19.5q74 0 131.5 30t91.5 81t51.5 114t17.5 133q0 71 -17 133t-51.5 112t-92 79t-131.5 29q-98 0 -165.5 -51t-97 -128.5 +t-29.5 -173.5z" /> + <glyph glyph-name="uni01F1" unicode="DZ" horiz-adv-x="2660" +d="M198 0v1413h383q352 0 537.5 -185t185.5 -532q0 -333 -188.5 -514.5t-536.5 -181.5h-381zM1461 0v148l845 1083h-800v182h1067v-155l-841 -1074h841v-184h-1112zM401 186h154q123 0 221 29.5t172 91t113.5 163t39.5 237.5q0 265 -127 393t-397 128h-176v-1042z" /> + <glyph glyph-name="uni01F2" unicode="Dz" horiz-adv-x="2375" +d="M581 1413q352 0 537.5 -185t185.5 -532q0 -333 -188.5 -514.5t-536.5 -181.5h-381v1413h383zM555 186q123 0 221 29.5t172 91t113.5 163t39.5 237.5q0 265 -127 393t-397 128h-176v-1042h154zM2301 999v-147l-573 -688h573v-164h-830v136l590 702h-561v161h801z" /> + <glyph glyph-name="uni01F3" unicode="dz" horiz-adv-x="2113" +d="M794 880v533h195v-1413h-184l-6 125q-105 -145 -303 -145q-129 0 -225 72t-143 188.5t-47 259.5t47 259.5t142.5 188.5t223.5 72q195 0 300 -140zM2039 999v-147l-573 -688h573v-164h-830v136l590 702h-561v161h801zM545 150q90 0 151 49t87.5 125.5t26.5 175.5 +q0 151 -66.5 250t-198.5 99q-89 0 -151 -49.5t-89 -126.5t-27 -173q0 -151 67.5 -250.5t199.5 -99.5z" /> + <glyph glyph-name="Scommaaccent" unicode="Ș" horiz-adv-x="1123" +d="M578 -16q-123 0 -230 42.5t-184.5 134t-98.5 218.5l197 53q14 -131 102.5 -199t215.5 -68q122 0 192 57.5t70 160.5q0 53 -23.5 95.5t-63 72.5t-90.5 56t-108 49t-113.5 48t-107.5 57.5t-90.5 72.5t-63 98t-23.5 129q0 169 118.5 271t291.5 102q131 0 237 -58t173 -175 +l-162 -103q-40 76 -106.5 116.5t-146.5 40.5q-85 0 -144.5 -50t-59.5 -131q0 -47 23.5 -85t63 -65.5t90.5 -51.5t107.5 -47.5t113 -49.5t107.5 -60.5t90.5 -76.5t63 -103t23.5 -135q0 -188 -132 -302t-332 -114zM324 -452l129 343h231l-237 -343h-123z" /> + <glyph glyph-name="scommaaccent" unicode="ș" horiz-adv-x="888" +d="M446 -20q-144 0 -251 75.5t-144 187.5l158 74q61 -177 232 -177q83 0 131.5 40t48.5 103q0 45 -28.5 76t-74 49t-101 33.5t-110.5 36t-100.5 49t-74 79.5t-28.5 121q0 139 99 216t243 77q119 0 209.5 -55t142.5 -153l-147 -81q-70 135 -212 135q-69 0 -111 -32t-42 -82 +q0 -39 29 -66.5t75 -44.5t102 -33t112 -38.5t102 -54t75 -87t29 -129.5q0 -79 -31 -141.5t-83.5 -100.5t-116.5 -57.5t-133 -19.5zM245 -452l129 343h231l-237 -343h-123z" /> + <glyph glyph-name="uni021A" unicode="Ț" horiz-adv-x="1208" +d="M502 0v1237h-461v176h1126v-176h-461v-1237h-204zM373 -452l129 343h231l-237 -343h-123z" /> + <glyph glyph-name="uni021B" unicode="ț" horiz-adv-x="711" +d="M471 -20q-136 0 -205.5 77t-69.5 213v568h-161v161h163v236l190 156v-392h253v-161h-253v-548q0 -74 33 -109t87 -35q57 0 119 31v-172q-60 -25 -156 -25zM235 -452l129 343h231l-237 -343h-123z" /> + <glyph glyph-name="uni0237" unicode="ȷ" horiz-adv-x="510" +d="M75 -438q-79 0 -157 32l42 152q58 -15 112 -15q89 0 89 117v1151h189v-1136q0 -136 -69 -218.5t-206 -82.5z" /> + <glyph glyph-name="uni0250" unicode="ɐ" horiz-adv-x="1074" +d="M564 -20q-191 0 -298.5 110t-107.5 295v610h154l17 -161q65 97 146.5 139.5t195.5 42.5q140 0 239.5 -85.5t99.5 -221.5q0 -80 -29 -138.5t-82 -92.5t-121 -50t-153 -16h-287q0 -262 234 -262q78 0 144 40.5t104 100.5l145 -109q-74 -102 -170.5 -152t-230.5 -50z +M338 560h273q88 0 144 41t56 108q0 68 -51 103t-131 35q-120 0 -204.5 -87t-86.5 -200z" /> + <glyph glyph-name="uni0254" unicode="ɔ" horiz-adv-x="984" +d="M458 -20q-140 0 -247 72.5t-163 202.5l184 74q22 -80 82.5 -127t143.5 -47q55 0 99.5 20t73.5 53t48.5 78t28 92.5t8.5 99.5q0 66 -14 124.5t-43 108.5t-80.5 79.5t-120.5 29.5q-83 0 -143.5 -47t-82.5 -127l-172 69q47 134 150.5 207.5t245.5 73.5q111 0 200 -43 +t144 -115.5t84 -164.5t29 -195q0 -81 -17.5 -156.5t-54.5 -141.5t-90 -114.5t-128 -77t-165 -28.5z" /> + <glyph glyph-name="uni0258" unicode="ɘ" +d="M496 -12q-123 0 -218.5 38t-178.5 125l133 114q55 -57 116.5 -79t150.5 -22q120 0 190.5 73.5t76.5 198.5h-691q-6 33 -6 53q0 84 13 157.5t45 142t81.5 117t127.5 77.5t178 29q90 0 166 -28.5t129 -77t90 -114.5t54.5 -141.5t17.5 -156.5q0 -103 -30 -193.5 +t-87.5 -160.5t-149.5 -111t-208 -41zM257 584h509q-10 116 -73.5 188.5t-178.5 72.5q-122 0 -186.5 -69t-70.5 -192z" /> + <glyph glyph-name="uni0259" unicode="ə" +d="M514 -12q-100 0 -178 29t-127.5 77.5t-81.5 117t-45 141.5t-13 158q0 12 1.5 24.5t3 20t1.5 8.5h691q-6 125 -76.5 198.5t-190.5 73.5q-89 0 -150.5 -21.5t-116.5 -78.5l-133 112q83 87 178.5 125.5t218.5 38.5q116 0 208 -41t149.5 -111t87.5 -160.5t30 -193.5 +q0 -81 -17.5 -156.5t-54.5 -141.5t-90 -114.5t-129 -77t-166 -28.5zM514 154q116 0 179 73t73 189h-509q6 -123 70.5 -192.5t186.5 -69.5z" /> + <glyph glyph-name="uni0261" unicode="ɡ" horiz-adv-x="1135" +d="M977 0q0 -204 -116.5 -320t-327.5 -116q-279 0 -418 206l149 109q40 -68 109.5 -107t160.5 -39q120 0 184 69.5t64 197.5v131q-98 -131 -291 -131q-101 0 -182.5 40.5t-133 110.5t-79 161.5t-27.5 196.5q0 141 47 255.5t143 185t226 70.5q91 0 169 -36t128 -104v119h195 +v-999zM534 176q132 0 198 93.5t66 240.5q0 69 -15.5 128.5t-46.5 106.5t-82.5 74t-119.5 27q-132 0 -199.5 -95.5t-67.5 -240.5q0 -146 67.5 -240t199.5 -94z" /> + <glyph glyph-name="circumflex" unicode="ˆ" horiz-adv-x="705" +d="M27 1098l323 354l323 -354h-173l-150 167l-148 -167h-175z" /> + <glyph glyph-name="caron" unicode="ˇ" horiz-adv-x="708" +d="M354 1080l-322 332h174l148 -160l150 160h174z" /> + <glyph glyph-name="uni02D0" unicode="ː" horiz-adv-x="545" +d="M283 583l-240 416l449 20zM53 -20l209 436l241 -416z" /> + <glyph glyph-name="uni02D1" unicode="ˑ" horiz-adv-x="557" +d="M289 240l-240 417l450 20z" /> + <glyph glyph-name="breve" unicode="˘" horiz-adv-x="821" +d="M409 1143q-150 0 -230.5 70t-80.5 200h153q0 -66 45 -104.5t113 -38.5q69 0 113 38.5t44 104.5h153q0 -132 -81.5 -201t-228.5 -69z" /> + <glyph glyph-name="dotaccent" unicode="˙" horiz-adv-x="519" +d="M159 1205v208h212v-208h-212z" /> + <glyph glyph-name="ring" unicode="˚" horiz-adv-x="634" +d="M314 1074q-91 0 -153 64t-62 153t62.5 152t152.5 63q89 0 153 -62.5t64 -152.5t-63 -153.5t-154 -63.5zM314 1191q43 0 72 29t29 72q0 42 -28 69.5t-73 27.5q-44 0 -71 -27t-27 -70q0 -44 28 -72.5t70 -28.5z" /> + <glyph glyph-name="ogonek" unicode="˛" horiz-adv-x="583" +d="M312 -451q-94 0 -154.5 56.5t-60.5 148.5q0 55 24 102.5t59 76.5t62.5 45.5t44.5 21.5h155q-11 -4 -27.5 -11t-53 -28t-64.5 -45t-50.5 -61t-22.5 -77q0 -50 22.5 -74t57.5 -24q70 0 113 61l107 -74q-79 -118 -212 -118z" /> + <glyph glyph-name="tilde" unicode="˜" horiz-adv-x="865" +d="M594 1139q-40 0 -74.5 15.5t-57.5 37.5t-42.5 44t-40.5 37.5t-42 15.5q-68 0 -68 -137h-118q0 124 50 195.5t139 71.5q40 0 74 -15.5t57 -37.5t43 -44.5t41 -38t41 -15.5q67 0 67 145h124q0 -132 -51 -203t-142 -71z" /> + <glyph glyph-name="hungarumlaut" unicode="˝" horiz-adv-x="873" +d="M52 1103l221 310h203l-269 -310h-155zM391 1103l221 310h224l-291 -310h-154z" /> + <glyph glyph-name="uni02F5" unicode="˵" horiz-adv-x="1174" +d="M613 999l218 -304h-226l-274 304h282z" /> + <glyph glyph-name="uni02F6" unicode="˶" horiz-adv-x="1174" +d="M843 999l-274 -304h-226l219 304h281z" /> + <glyph glyph-name="gravecomb" unicode="̀" horiz-adv-x="0" +d="M-215 1113l-281 300h224l221 -300h-164z" /> + <glyph glyph-name="acutecomb" unicode="́" horiz-adv-x="0" +d="M-484 1124l221 289h225l-291 -289h-155z" /> + <glyph glyph-name="uni0302" unicode="̂" horiz-adv-x="0" +d="M-676 1098l323 354l323 -354h-173l-150 167l-148 -167h-175z" /> + <glyph glyph-name="tildecomb" unicode="̃" horiz-adv-x="0" +d="M-308 1139q-40 0 -74.5 15.5t-57.5 37.5t-42.5 44t-40.5 37.5t-42 15.5q-68 0 -68 -137h-118q0 124 50 195.5t139 71.5q40 0 74 -15.5t57 -37.5t43 -44.5t41 -38t41 -15.5q67 0 67 145h124q0 -132 -51 -203t-142 -71z" /> + <glyph glyph-name="uni0304" unicode="̄" horiz-adv-x="0" +d="M-700 1166v134h549v-134h-549z" /> + <glyph glyph-name="uni0306" unicode="̆" horiz-adv-x="0" +d="M-410 1143q-150 0 -230.5 70t-80.5 200h153q0 -66 45 -104.5t113 -38.5q69 0 113 38.5t44 104.5h153q0 -132 -81.5 -201t-228.5 -69z" /> + <glyph glyph-name="uni0307" unicode="̇" horiz-adv-x="0" +d="M-366 1205v208h212v-208h-212z" /> + <glyph glyph-name="uni0308" unicode="̈" horiz-adv-x="0" +d="M-684 1205v208h186v-208h-186zM-339 1205v208h186v-208h-186z" /> + <glyph glyph-name="uni030A" unicode="̊" horiz-adv-x="0" +d="M-318 1074q-91 0 -153 64t-62 153t62.5 152t152.5 63q89 0 153 -62.5t64 -152.5t-63 -153.5t-154 -63.5zM-318 1191q43 0 72 29t29 72q0 42 -28 69.5t-73 27.5q-44 0 -71 -27t-27 -70q0 -44 28 -72.5t70 -28.5z" /> + <glyph glyph-name="uni030B" unicode="̋" horiz-adv-x="0" +d="M-821 1103l221 310h203l-269 -310h-155zM-482 1103l221 310h224l-291 -310h-154z" /> + <glyph glyph-name="uni030C" unicode="̌" horiz-adv-x="0" +d="M-354 1080l-322 332h174l148 -160l150 160h174z" /> + <glyph glyph-name="uni030F" unicode="̏" horiz-adv-x="0" +d="M-575 1103l-281 310h234l221 -310h-174zM-227 1103l-280 310h234l221 -310h-175z" /> + <glyph glyph-name="uni0312" unicode="̒" horiz-adv-x="0" +d="M-94 1428l-129 -307h-231l237 307h123z" /> + <glyph glyph-name="uni031B" unicode="̛" horiz-adv-x="0" +d="M-409 999l130 414h231l-238 -414h-123z" /> + <glyph glyph-name="uni0326" unicode="̦" horiz-adv-x="0" +d="M-408 -452l129 343h231l-237 -343h-123z" /> + <glyph glyph-name="uni0327" unicode="̧" horiz-adv-x="0" +d="M-309 -513q-62 0 -114 36t-74 91l116 54q6 -25 28 -43t50 -18q40 0 65 25t25 63q0 49 -47.5 83.5t-130.5 34.5h-54l109 186h131l-72 -108q91 -7 139.5 -58.5t48.5 -129.5q0 -89 -62 -152.5t-158 -63.5z" /> + <glyph glyph-name="uni0328" unicode="̨" horiz-adv-x="0" +d="M-271 -451q-94 0 -154.5 56.5t-60.5 148.5q0 55 24 102.5t59 76.5t62.5 45.5t44.5 21.5h155q-11 -4 -27.5 -11t-53 -28t-64.5 -45t-50.5 -61t-22.5 -77q0 -50 22.5 -74t57.5 -24q70 0 113 61l107 -74q-79 -118 -212 -118z" /> + <glyph glyph-name="pi" unicode="π" horiz-adv-x="996" +d="M830 -20q-99 0 -159 69t-60 174v600h-257v-823h-176v823h-82v176h773v-176h-82v-581q0 -111 59 -111q24 0 48 16l52 -134q-52 -33 -116 -33z" /> + <glyph glyph-name="uni0400" unicode="Ѐ" horiz-adv-x="1242" +d="M576 1526l-281 300h224l221 -300h-164zM198 0v1413h927v-182h-724v-434h649v-180h-649v-428h724v-189h-927z" /> + <glyph glyph-name="uni0401" unicode="Ё" horiz-adv-x="1242" +d="M378 1618v208h186v-208h-186zM723 1618v208h186v-208h-186zM198 0v1413h927v-182h-724v-434h649v-180h-649v-428h724v-189h-927z" /> + <glyph glyph-name="uni0402" unicode="Ђ" horiz-adv-x="1621" +d="M1118 -19q-86 0 -174.5 35.5t-144.5 91.5l111 139q71 -77 186 -77q105 0 169.5 72t64.5 193q0 191 -69 281t-244 90q-103 0 -183 -38t-128 -95v-673h-203v1237h-462v175h1126v-175h-461v-336q138 100 311 100q264 0 390.5 -143.5t126.5 -412.5q0 -218 -114 -341 +t-302 -123z" /> + <glyph glyph-name="uni0403" unicode="Ѓ" horiz-adv-x="1067" +d="M460 1537l219 289h213l-286 -289h-146zM198 0v1412h827v-181h-624v-1231h-203z" /> + <glyph glyph-name="uni0404" unicode="Є" horiz-adv-x="1425" +d="M762 -20q-163 0 -290.5 58t-206.5 159t-119.5 230.5t-40.5 279.5q0 119 25 226.5t77.5 199.5t128.5 159.5t184.5 105.5t239.5 38q205 0 358.5 -100t236.5 -290l-188 -76q-41 142 -148.5 208t-260.5 66q-105 0 -187.5 -35t-135.5 -97t-84 -141.5t-40 -175.5h601v-171h-600 +q20 -205 132.5 -329t317.5 -124q148 0 249 66t158 212l188 -78q-81 -190 -235.5 -290.5t-359.5 -100.5z" /> + <glyph glyph-name="uni0405" unicode="Ѕ" horiz-adv-x="1123" +d="M578 -16q-123 0 -230 42.5t-184.5 134t-98.5 218.5l197 53q14 -131 102.5 -199t215.5 -68q122 0 192 57.5t70 160.5q0 53 -23.5 95.5t-63 72.5t-90.5 56t-108 49t-113.5 48t-107.5 57.5t-90.5 72.5t-63 98t-23.5 129q0 169 118.5 271t291.5 102q131 0 237 -58t173 -175 +l-162 -103q-40 76 -106.5 116.5t-146.5 40.5q-85 0 -144.5 -50t-59.5 -131q0 -47 23.5 -85t63 -65.5t90.5 -51.5t107.5 -47.5t113 -49.5t107.5 -60.5t90.5 -76.5t63 -103t23.5 -135q0 -188 -132 -302t-332 -114z" /> + <glyph glyph-name="uni0406" unicode="І" horiz-adv-x="599" +d="M198 0v1412h203v-1412h-203z" /> + <glyph glyph-name="uni0407" unicode="Ї" horiz-adv-x="598" +d="M37 1583v180h179v-180h-179zM379 1583v180h179v-180h-179zM198 0v1412h203v-1412h-203z" /> + <glyph glyph-name="uni0408" unicode="Ј" horiz-adv-x="1128" +d="M504 -20q-133 0 -234 60t-155 157.5t-63 219.5l200 25q5 -77 31.5 -137t83 -100t137.5 -40q60 0 104.5 16t72 43.5t44 70.5t22.5 90.5t6 109.5v736h-533v181h736v-909q0 -118 -25 -211t-77.5 -164.5t-141 -109.5t-208.5 -38z" /> + <glyph glyph-name="uni0409" unicode="Љ" horiz-adv-x="1980" +d="M221 -20q-101 0 -189 51l66 165q69 -23 112 -23q39 0 67.5 72.5t42 189.5t19 228t5.5 224v525h878v-613h217q215 0 344 -104t129 -292t-129.5 -295.5t-343.5 -107.5h-418v1231h-474v-343q0 -72 -0.5 -120.5t-4 -128.5t-9 -136.5t-17 -130t-27.5 -125t-41 -105.5 +t-56.5 -87t-75 -54t-95.5 -21zM1222 186h217q134 0 204 56.5t70 160.5q0 210 -274 210h-217v-427z" /> + <glyph glyph-name="uni040A" unicode="Њ" horiz-adv-x="2030" +d="M198 0v1412h203v-615h669v615h204v-613h215q215 0 344.5 -104t129.5 -292t-130 -295.5t-344 -107.5h-419v616h-669v-616h-203zM1274 186h215q134 0 203.5 56.5t69.5 160.5q0 210 -273 210h-215v-427z" /> + <glyph glyph-name="uni040B" unicode="Ћ" horiz-adv-x="1643" +d="M503 0v1237h-462v175h1126v-175h-461v-336q128 100 311 100q134 0 234.5 -42.5t161.5 -121.5t91 -185t30 -240v-412h-204v401q0 97 -15 168t-49.5 126t-96.5 83t-152 28q-103 0 -183 -38t-128 -95v-673h-203z" /> + <glyph glyph-name="uni040C" unicode="Ќ" horiz-adv-x="1306" +d="M519 1537l219 289h214l-287 -289h-146zM198 0v1412h203v-544h159l359 544h266l-416 -588q42 0 82.5 -21.5t70.5 -55.5t51 -67t34 -63l252 -617h-248l-185 521q-21 58 -71 111t-119 53h-235v-685h-203z" /> + <glyph glyph-name="uni040D" unicode="Ѝ" horiz-adv-x="1471" +d="M861 1529h-159l-273 297h214zM1029 1412h244v-1412h-203v1066q0 27 2 85l-631 -1151h-243v1412h203v-1049q0 -51 -3 -103z" /> + <glyph glyph-name="uni040E" unicode="Ў" horiz-adv-x="1113" +d="M550 1555q-145 0 -226.5 70.5t-81.5 200.5h146q0 -68 46.5 -107.5t115.5 -39.5q70 0 116.5 40t46.5 107h146q0 -131 -82.5 -201t-226.5 -70zM242 0l195 457l-398 955h218l287 -736l310 736h219l-616 -1412h-215z" /> + <glyph glyph-name="uni040F" unicode="Џ" horiz-adv-x="1471" +d="M634 -307v307h-436v1412h203v-1230h669v1230h203v-1412h-436v-307h-203z" /> + <glyph glyph-name="uni0410" unicode="А" horiz-adv-x="1323" +d="M39 0l546 1412h154l544 -1412h-218l-110 307h-584l-111 -307h-221zM438 486h450l-225 628z" /> + <glyph glyph-name="uni0411" unicode="Б" horiz-adv-x="1258" +d="M198 0v1412h782v-183h-579v-412h317q213 0 326.5 -111t113.5 -308q0 -183 -130 -290.5t-325 -107.5h-505zM401 191h306q109 0 179 61t70 166q0 98 -72 158.5t-180 60.5h-303v-446z" /> + <glyph glyph-name="uni0412" unicode="В" horiz-adv-x="1257" +d="M198 0v1413h437q87 0 164.5 -20t144 -61t105.5 -114t39 -169q0 -103 -47.5 -179t-123.5 -119q107 -45 173.5 -140t66.5 -219q0 -98 -38 -175t-103 -123.5t-144.5 -70t-168.5 -23.5h-505zM400 816h247q69 0 121.5 19.5t87.5 69.5t35 126q0 105 -69.5 152t-183.5 47h-238 +v-414zM400 191h307q114 0 182 52t68 167q0 112 -70.5 170t-182.5 58h-304v-447z" /> + <glyph glyph-name="uni0413" unicode="Г" horiz-adv-x="1067" +d="M198 0v1412h827v-181h-624v-1231h-203z" /> + <glyph glyph-name="uni0414" unicode="Д" horiz-adv-x="1469" +d="M41 -278v452h136l475 1239h162l477 -1239h136v-452h-202v278h-981v-278h-203zM392 174h682l-341 935z" /> + <glyph glyph-name="uni0415" unicode="Е" horiz-adv-x="1242" +d="M198 0v1413h927v-182h-724v-434h649v-180h-649v-428h724v-189h-927z" /> + <glyph glyph-name="uni0416" unicode="Ж" horiz-adv-x="2019" +d="M50 0l252 617q13 31 34 63.5t51 66.5t70.5 55.5t82.5 21.5l-416 588h265l360 -544h159v544h203v-544h159l359 544h266l-416 -588q42 0 82.5 -21.5t70.5 -55.5t51.5 -66.5t34.5 -63.5l251 -617h-248l-184 521q-22 63 -71.5 113.5t-118.5 50.5h-236v-685h-203v685h-235 +q-70 0 -118 -49t-72 -115l-185 -521h-248z" /> + <glyph glyph-name="uni0417" unicode="З" horiz-adv-x="1113" +d="M513 -20q-149 0 -268.5 56.5t-178.5 164.5l164 109q33 -78 108.5 -116t174.5 -38q125 0 211 68t86 190q0 119 -84 183.5t-213 64.5h-150l-2 176h158q100 0 165 54.5t65 147.5q0 99 -66 156t-166 57q-89 0 -155.5 -47.5t-72.5 -131.5h-199q6 166 128.5 263t296.5 97 +q114 0 209.5 -43t155 -129.5t59.5 -201.5q0 -100 -44.5 -177.5t-126.5 -119.5q109 -40 176 -132.5t67 -231.5q0 -103 -40.5 -185t-110.5 -132t-158.5 -76t-188.5 -26z" /> + <glyph glyph-name="uni0418" unicode="И" horiz-adv-x="1435" +d="M1237 0h-198v1127l-598 -1127h-243v1413h198v-1125l601 1125h240v-1413z" /> + <glyph glyph-name="uni0419" unicode="Й" horiz-adv-x="1471" +d="M756 1555q-145 0 -226.5 70.5t-81.5 200.5h146q0 -68 46.5 -107.5t115.5 -39.5q70 0 116.5 40t46.5 107h146q0 -131 -82.5 -201t-226.5 -70zM1029 1412h244v-1412h-203v1066q0 27 2 85l-631 -1151h-243v1412h203v-1049q0 -51 -3 -103z" /> + <glyph glyph-name="uni041A" unicode="К" horiz-adv-x="1306" +d="M198 0v1412h203v-544h159l359 544h266l-416 -588q42 0 82.5 -21.5t70.5 -55.5t51 -67t34 -63l252 -617h-248l-185 521q-21 58 -71 111t-119 53h-235v-685h-203z" /> + <glyph glyph-name="uni041B" unicode="Л" horiz-adv-x="1334" +d="M39 0l546 1413h162l548 -1413h-219l-410 1109l-407 -1109h-220z" /> + <glyph glyph-name="uni041C" unicode="М" horiz-adv-x="1779" +d="M198 0v1413h298l392 -1074l395 1074h298v-1413h-198v1173l-390 -1050h-207l-390 1050v-1173h-198z" /> + <glyph glyph-name="uni041D" unicode="Н" horiz-adv-x="1472" +d="M198 0v1413h203v-616h669v616h204v-1413h-204v617h-669v-617h-203z" /> + <glyph glyph-name="uni041E" unicode="О" horiz-adv-x="1521" +d="M760 -20q-131 0 -239.5 38.5t-185 105.5t-129 159t-77.5 199t-25 225t25 224.5t77.5 199t129 159.5t185 105.5t239.5 38.5t240 -38.5t185.5 -105.5t129 -159.5t77.5 -199t25 -224.5t-25 -225t-77.5 -199t-129 -159t-185.5 -105.5t-240 -38.5zM760 163q117 0 206 44 +t141 121.5t77.5 172.5t25.5 206q0 88 -15.5 166t-50 148t-86 120t-128 79.5t-170.5 29.5t-170 -29.5t-127.5 -79.5t-85.5 -120t-49.5 -148t-15.5 -166q0 -111 25.5 -206t77 -172.5t140 -121.5t205.5 -44z" /> + <glyph glyph-name="uni041F" unicode="П" horiz-adv-x="1471" +d="M198 0v1412h1075v-1412h-203v1231h-669v-1231h-203z" /> + <glyph glyph-name="uni0420" unicode="Р" horiz-adv-x="1157" +d="M198 0v1412h418q214 0 344 -107t130 -295t-129.5 -292.5t-344.5 -104.5h-216v-613h-202zM400 800h216q274 0 274 210q0 103 -70 160t-204 57h-216v-427z" /> + <glyph glyph-name="uni0421" unicode="С" horiz-adv-x="1425" +d="M762 -20q-163 0 -290.5 58t-206.5 159t-119.5 230.5t-40.5 279.5q0 119 25 226.5t77.5 199.5t128.5 159.5t184.5 105.5t239.5 38q205 0 358.5 -100t236.5 -290l-188 -76q-41 142 -148.5 208t-260.5 66q-116 0 -204.5 -42t-141.5 -115.5t-79.5 -167t-26.5 -202.5 +q0 -116 26.5 -213t80 -172.5t143 -118t206.5 -42.5q148 0 249 66t158 212l188 -78q-81 -190 -235.5 -290.5t-359.5 -100.5z" /> + <glyph glyph-name="uni0422" unicode="Т" horiz-adv-x="1208" +d="M503 0v1237h-462v175h1126v-175h-462v-1237h-202z" /> + <glyph glyph-name="uni0423" unicode="У" horiz-adv-x="1113" +d="M242 0l195 457l-398 955h218l287 -736l310 736h219l-616 -1412h-215z" /> + <glyph glyph-name="uni0424" unicode="Ф" horiz-adv-x="1733" +d="M765 0v109q-325 0 -493 156.5t-168 439.5q0 284 169 445.5t492 161.5v100h203v-100q324 0 492.5 -161.5t168.5 -445.5q0 -283 -168 -439.5t-493 -156.5v-109h-203zM765 292v837q-224 0 -338.5 -111t-114.5 -313q0 -200 114 -306.5t339 -106.5zM968 292q224 0 338.5 106.5 +t114.5 306.5q0 202 -115 313t-338 111v-837z" /> + <glyph glyph-name="uni0425" unicode="Х" horiz-adv-x="1299" +d="M50 0l469 707l-467 706h242l355 -567l357 567h241l-466 -706l468 -707h-241l-361 558l-355 -558h-242z" /> + <glyph glyph-name="uni0426" unicode="Ц" horiz-adv-x="1502" +d="M1218 -278v278h-1020v1412h203v-1230h669v1230h203v-1230h147v-460h-202z" /> + <glyph glyph-name="uni0427" unicode="Ч" horiz-adv-x="1338" +d="M936 0v511q-127 -101 -312 -101q-133 0 -233 42.5t-161 122t-91 185.5t-30 240v412h203v-401q0 -97 15 -168t49.5 -126t96.5 -83t151 -28q104 0 184.5 38t127.5 95v673h204v-1412h-204z" /> + <glyph glyph-name="uni0428" unicode="Ш" horiz-adv-x="1772" +d="M198 0v1412h203v-1230h382v1230h203v-1230h385v1230h203v-1412h-1376z" /> + <glyph glyph-name="uni0429" unicode="Щ" horiz-adv-x="1803" +d="M1519 -278v278h-1321v1412h203v-1230h382v1230h203v-1230h385v1230h203v-1230h147v-460h-202z" /> + <glyph glyph-name="uni042A" unicode="Ъ" horiz-adv-x="1386" +d="M427 0v1238h-386v174h587v-613h217q215 0 344 -104t129 -292t-129.5 -295.5t-343.5 -107.5h-418zM628 186h217q134 0 204 56.5t70 160.5q0 210 -274 210h-217v-427z" /> + <glyph glyph-name="uni042B" unicode="Ы" horiz-adv-x="1682" +d="M198 0v1412h202v-613h216q215 0 344.5 -104t129.5 -292t-130 -295.5t-344 -107.5h-418zM1282 0v1412h202v-1412h-202zM400 186h216q134 0 204 56.5t70 160.5q0 210 -274 210h-216v-427z" /> + <glyph glyph-name="uni042C" unicode="Ь" horiz-adv-x="1157" +d="M198 0v1412h202v-613h216q215 0 344.5 -104t129.5 -292t-130 -295.5t-344 -107.5h-418zM400 186h216q134 0 204 56.5t70 160.5q0 210 -274 210h-216v-427z" /> + <glyph glyph-name="uni042D" unicode="Э" horiz-adv-x="1425" +d="M663 -20q-205 0 -359.5 100.5t-235.5 290.5l189 78q56 -146 157 -212t249 -66q205 0 317.5 124t133.5 329h-600v171h600q-9 96 -39.5 175.5t-84 141.5t-136 97t-187.5 35q-152 0 -259.5 -66t-148.5 -208l-189 76q83 190 236.5 290t358.5 100q163 0 290.5 -58.5 +t206 -159.5t119 -231t40.5 -280t-41 -279.5t-120 -230.5t-206.5 -159t-290.5 -58z" /> + <glyph glyph-name="uni042E" unicode="Ю" horiz-adv-x="1945" +d="M1183 -20q-151 0 -271.5 49.5t-199 137t-124.5 201t-58 248.5h-129v-616h-203v1412h203v-615h129q12 134 58 247.5t124.5 201.5t199.5 138t271 50q132 0 241 -38t185 -105.5t129 -159.5t77.5 -198.5t24.5 -225.5t-24.5 -225.5t-77.5 -198.5t-129 -159.5t-185 -105.5 +t-241 -38zM1183 163q94 0 170 29t127 79.5t85.5 120t50 148.5t15.5 167t-15.5 166.5t-50 148t-85.5 120t-127 79.5t-170 29t-170 -29t-127 -79.5t-85.5 -120t-50 -148t-15.5 -166.5t15.5 -167t50 -148.5t85.5 -120t127 -79.5t170 -29z" /> + <glyph glyph-name="uni042F" unicode="Я" horiz-adv-x="1242" +d="M1044 -2h-203v621h-203l-351 -621h-235l388 644q-131 35 -210.5 133t-79.5 234q0 184 133 293.5t332 109.5h429v-1414zM839 794v437h-226q-119 0 -190.5 -60t-71.5 -164q0 -96 65 -152t175 -61h248z" /> + <glyph glyph-name="uni0430" unicode="а" +d="M409 -20q-151 0 -246.5 83.5t-95.5 228.5q0 291 420 291h243q0 125 -55 196.5t-168 71.5q-162 0 -257 -146l-145 108q149 207 397 207q194 0 302 -112t108 -298v-610h-161l-10 169q-108 -189 -332 -189zM434 144q125 0 209.5 91t86.5 205h-229q-235 0 -235 -154 +q0 -69 45.5 -105.5t122.5 -36.5z" /> + <glyph glyph-name="uni0431" unicode="б" horiz-adv-x="1157" +d="M649 960q140 0 240.5 -64.5t148.5 -171t48 -241.5q0 -138 -61 -252.5t-174 -182.5t-255 -68q-217 0 -350 141t-133 373v257q0 343 219 488q56 37 122 67.5t146 55t133 38t141 34.5v-190q-318 -76 -427 -139q-56 -32 -87.5 -65t-52 -98.5t-20.5 -164.5q56 81 151 132 +t211 51zM596 144q136 0 207.5 93t71.5 236t-68 232t-211 89q-90 0 -155 -49t-94 -120t-29 -152q0 -70 15.5 -128t48 -104t87 -71.5t127.5 -25.5z" /> + <glyph glyph-name="uni0432" unicode="в" horiz-adv-x="1168" +d="M609 -20q-109 0 -195.5 27t-152 82t-101 145t-35.5 211v529q0 123 36.5 214t102.5 143.5t149 77.5t186 25q184 0 300.5 -95t116.5 -271q0 -78 -44.5 -158t-123.5 -121q107 -34 163.5 -134t56.5 -227q0 -213 -127 -330.5t-332 -117.5zM603 156q261 0 261 280 +q0 128 -68 193t-183 65q-110 0 -184 -52v173q71 45 210 47q85 1 131.5 58.5t46.5 136.5q0 97 -55 146.5t-161 49.5q-66 0 -114 -14t-87 -47t-58.5 -95t-19.5 -152v-491q0 -160 71 -229t210 -69z" /> + <glyph glyph-name="uni0433" unicode="г" horiz-adv-x="886" +d="M437 -20q-72 0 -136 18t-116.5 53.5t-83.5 95t-31 135.5t29 132.5t75 89t101.5 56t111.5 40t102 34.5t75 46t29 67q0 53 -39.5 79t-107.5 26q-139 0 -208 -125l-143 80q51 91 140.5 149t211.5 58q137 0 235.5 -75t98.5 -209q0 -74 -28.5 -127.5t-74.5 -83.5t-101 -51.5 +t-110.5 -37.5t-101.5 -33.5t-74.5 -48t-28.5 -73.5q0 -63 48.5 -96.5t130.5 -33.5q87 0 147 50.5t85 122.5l157 -76q-36 -111 -143 -186.5t-250 -75.5z" /> + <glyph glyph-name="uni0434" unicode="д" horiz-adv-x="1135" +d="M977 0q0 -204 -116.5 -320t-327.5 -116q-279 0 -418 206l149 109q40 -68 109.5 -107t160.5 -39q120 0 184 69.5t64 197.5v131q-98 -131 -291 -131q-101 0 -182.5 40.5t-133 110.5t-79 161.5t-27.5 196.5q0 141 47 255.5t143 185t226 70.5q91 0 169 -36t128 -104v119h195 +v-999zM534 176q132 0 198 93.5t66 240.5q0 69 -15.5 128.5t-46.5 106.5t-82.5 74t-119.5 27q-132 0 -199.5 -95.5t-67.5 -240.5q0 -146 67.5 -240t199.5 -94z" /> + <glyph glyph-name="uni0435" unicode="е" horiz-adv-x="1051" +d="M551 -17q-117 0 -210 41.5t-150.5 113.5t-87 163t-29.5 194q0 101 28.5 193t83.5 166t145 118t203 44q97 0 175 -30t127 -78.5t81.5 -114.5t45.5 -133t13 -139q0 -53 -6 -85h-691q7 -125 75.5 -202.5t196.5 -77.5q163 0 261 107l134 -113q-82 -86 -177.5 -126.5 +t-217.5 -40.5zM279 583h509q-7 122 -70.5 197t-184.5 75q-116 0 -179.5 -76t-74.5 -196z" /> + <glyph glyph-name="uni0436" unicode="ж" horiz-adv-x="1478" +d="M29 0l170 444q24 61 67 110.5t94 49.5l-273 395h229l227 -364h99v777h194v-777h99l227 364h230l-273 -395q50 0 92 -49.5t68 -110.5l169 -444h-227l-121 356q-23 64 -57 96t-91 32h-116v-484h-194v484h-116q-56 0 -90.5 -32.5t-56.5 -95.5l-122 -356h-228z" /> + <glyph glyph-name="uni0437" unicode="з" horiz-adv-x="968" +d="M414 -450q-132 0 -237.5 54t-175.5 158l159 118q31 -73 98 -113t149 -40q131 0 206.5 78t75.5 209q0 122 -62 190t-166 68h-195v170h221q80 9 123.5 63t43.5 130q0 102 -59.5 152.5t-167.5 50.5q-159 0 -250 -172l-172 85q61 134 165 197.5t255 63.5q120 0 213.5 -40 +t150.5 -124t57 -202q0 -82 -45 -161t-138 -118q80 -22 132.5 -79t73.5 -127t21 -155q0 -142 -64.5 -247t-171 -157t-240.5 -52z" /> + <glyph glyph-name="uni0438" unicode="и" horiz-adv-x="1140" +d="M483 -21q-179 0 -266.5 125t-87.5 340v555h196v-564q0 -62 8.5 -110t29 -89.5t60.5 -64t98 -22.5q113 0 190 88t77 257v505h195v-999h-195v145q-44 -72 -125 -119t-180 -47z" /> + <glyph glyph-name="uni0439" unicode="й" horiz-adv-x="1168" +d="M581 1143q-145 0 -226.5 70t-81.5 200h145q0 -67 47 -107t116 -40q70 0 116 40t46 107h146q0 -131 -82 -200.5t-226 -69.5zM514 -23q-75 0 -135.5 23.5t-101 64t-68 96t-39.5 117.5t-12 130v591h195v-586q0 -259 185 -259q112 0 195 85.5t83 196.5v563h195v-999h-195v144 +q-44 -71 -125.5 -119t-176.5 -48z" /> + <glyph glyph-name="uni043A" unicode="к" horiz-adv-x="998" +d="M158 0v1412h194v-777h98l228 364h229l-273 -395q50 0 93 -49.5t68 -110.5l170 -444h-228l-122 356q-22 63 -56.5 95.5t-91.5 32.5h-115v-484h-194z" /> + <glyph glyph-name="uni043B" unicode="л" horiz-adv-x="971" +d="M14 0l389 999h165l388 -999h-211l-260 748l-261 -748h-210z" /> + <glyph glyph-name="uni043C" unicode="м" horiz-adv-x="1430" +d="M158 0v999h253l305 -765l301 766h255v-1000h-183v751l-301 -751h-145l-302 749v-749h-183z" /> + <glyph glyph-name="uni043D" unicode="н" horiz-adv-x="1168" +d="M158 0v999h196v-373h461v373h196v-999h-196v478h-461v-478h-196z" /> + <glyph glyph-name="uni043E" unicode="о" horiz-adv-x="1123" +d="M560 -20q-144 0 -257 71.5t-173.5 190t-60.5 260.5t60.5 259.5t173.5 188t257 70.5q143 0 257 -70.5t175 -188.5t61 -259q0 -142 -61 -260.5t-175 -190t-257 -71.5zM561 144q74 0 131.5 30t91.5 81t51.5 114t17.5 133q0 71 -17 133t-51.5 112t-92 79t-131.5 29 +q-98 0 -165.5 -51t-97 -128.5t-29.5 -173.5q0 -56 10.5 -108t33.5 -97.5t56.5 -79.5t83 -53.5t108.5 -19.5z" /> + <glyph glyph-name="uni043F" unicode="п" horiz-adv-x="1142" +d="M158 0v999h195v-139q52 75 132.5 115.5t168.5 40.5q93 0 163.5 -34t111.5 -92.5t61.5 -130t20.5 -154.5v-605h-196v581q0 253 -187 253q-112 0 -193.5 -83.5t-81.5 -193.5v-557h-195z" /> + <glyph glyph-name="uni0440" unicode="р" horiz-adv-x="1137" +d="M158 -438v1437h195v-120q105 141 300 141q128 0 223.5 -71.5t143 -188t47.5 -260.5t-47.5 -260.5t-143 -188t-223.5 -71.5q-197 0 -300 140v-558h-195zM604 155q130 0 197.5 97t67.5 247q0 97 -27.5 174t-88.5 125.5t-149 48.5q-67 0 -118.5 -27.5t-82 -76t-46 -110.5 +t-15.5 -134t15.5 -133t46 -109t82 -75t118.5 -27z" /> + <glyph glyph-name="uni0441" unicode="с" horiz-adv-x="988" +d="M533 -20q-111 0 -200 43t-144 116t-84 165t-29 194t28.5 194t83.5 166t143.5 118t199.5 44q142 0 248 -72t161 -207l-183 -75q-22 83 -82.5 133t-143.5 50q-68 0 -119.5 -31t-81 -83t-43.5 -111.5t-14 -125.5t14 -125.5t43 -111t80.5 -81.5t120.5 -30q82 0 143 49t83 130 +l172 -69q-47 -132 -151 -206t-245 -74z" /> + <glyph glyph-name="uni0442" unicode="т" horiz-adv-x="1719" +d="M158 0v999h195v-140q40 76 109.5 117.5t150.5 41.5q208 0 298 -180q51 87 134 132.5t184 45.5q93 0 163.5 -34t112.5 -92.5t62.5 -130t20.5 -154.5v-605h-197v581q0 53 -9 97t-29 83t-58 61t-92 22q-107 0 -170.5 -83.5t-63.5 -201.5v-559h-196v585q0 259 -187 259 +q-107 0 -170 -83.5t-63 -201.5v-559h-195z" /> + <glyph glyph-name="uni0443" unicode="у" horiz-adv-x="1002" +d="M228 -430l174 446l-386 983h213l272 -759l272 759h213l-552 -1429h-206z" /> + <glyph glyph-name="uni0444" unicode="ф" horiz-adv-x="1444" +d="M625 -430v414q-36 -4 -59 -4q-108 0 -201.5 41t-158 110.5t-101 164t-36.5 200.5q0 141 62 258.5t176.5 187.5t258.5 70q40 -2 59 -5v405h194v-405q30 5 59 5q144 0 258.5 -70t176.5 -187.5t62 -258.5q0 -106 -36.5 -200.5t-101 -164t-158 -110.5t-201.5 -41q-23 0 -59 4 +v-414h-194zM566 149q41 0 59 4v685q-45 5 -59 5q-144 0 -214 -98.5t-70 -248.5q0 -72 16 -132.5t48.5 -109.5t89 -77t130.5 -28zM878 149q98 0 163.5 49.5t93 125t27.5 172.5q0 71 -16 132t-49 110t-89 77t-130 28q-14 0 -59 -5v-685q18 -4 59 -4z" /> + <glyph glyph-name="uni0445" unicode="х" horiz-adv-x="973" +d="M29 0l339 504l-339 495h236l221 -352l222 352h235l-338 -495l338 -504h-235l-222 359l-221 -359h-236z" /> + <glyph glyph-name="uni0446" unicode="ц" horiz-adv-x="1171" +d="M938 -307v284q-53 0 -97 47t-52 120q-44 -71 -125.5 -119t-176.5 -48q-93 0 -163.5 35.5t-112 97t-62 137t-20.5 161.5v591h197v-586q0 -259 185 -259q112 0 195 85.5t83 196.5v563h196v-772q0 -71 42 -109.5t106 -38.5l-37 -386h-158z" /> + <glyph glyph-name="uni0447" unicode="ч" horiz-adv-x="1095" +d="M741 0v409q-44 -70 -125.5 -118t-176.5 -48q-93 0 -163.5 35.5t-111.5 97t-61.5 136.5t-20.5 161v326h196v-321q0 -259 185 -259q112 0 195 85.5t83 196.5v298h197v-999h-197z" /> + <glyph glyph-name="uni0448" unicode="ш" horiz-adv-x="1745" +d="M1133 -18q-209 0 -298 179q-52 -87 -134.5 -132t-184.5 -45q-93 0 -163.5 34t-112 92.5t-62 130t-20.5 154.5v604h196v-580q0 -53 9 -97t29 -83t58 -61t92 -22q107 0 170.5 83t63.5 201v559h197v-584q0 -259 185 -259q108 0 171.5 83t63.5 201v559h195v-999h-195v140 +q-41 -75 -110.5 -116.5t-149.5 -41.5z" /> + <glyph glyph-name="uni0449" unicode="щ" horiz-adv-x="1746" +d="M1513 -307v284q-52 0 -96.5 48.5t-52.5 120.5q-41 -76 -110.5 -120t-148.5 -44q-208 0 -298 179q-52 -87 -134.5 -132t-183.5 -45q-93 0 -163.5 34t-112.5 92.5t-62.5 130t-20.5 154.5v604h197v-580q0 -53 9 -97t29 -83t58 -61t92 -22q107 0 170.5 83t63.5 201v559h196 +v-584q0 -259 186 -259q107 0 170.5 83t63.5 201v559h196v-772q0 -71 42 -109.5t106 -38.5l-38 -386h-158z" /> + <glyph glyph-name="uni044A" unicode="ъ" horiz-adv-x="1190" +d="M659 -20q-196 0 -309 113t-113 316v438h-224v152h408v-297q49 51 120.5 83.5t155.5 32.5q198 0 310 -111t112 -308q0 -194 -125.5 -306.5t-334.5 -112.5zM668 149q113 0 175.5 69.5t62.5 180.5q0 104 -65.5 177t-176.5 73q-108 0 -175.5 -63.5t-67.5 -162.5v-41 +q0 -103 66 -168t181 -65z" /> + <glyph glyph-name="uni044B" unicode="ы" horiz-adv-x="1449" +d="M594 -20q-196 0 -311 113t-115 316v590h184v-297q110 116 260 116q200 0 319 -112t119 -307q0 -193 -127 -306t-329 -113zM1194 0v999h184v-999h-184zM594 149q112 0 177.5 70t65.5 180q0 104 -66 177t-177 73q-107 0 -172 -63.5t-70 -162.5v-41q5 -104 69 -168.5 +t173 -64.5z" /> + <glyph glyph-name="uni044C" unicode="ь" horiz-adv-x="1116" +d="M579 -20q-196 0 -311 113t-115 316v590h185v-297q109 116 259 116q200 0 319 -112t119 -307q0 -193 -126.5 -306t-329.5 -113zM579 149q113 0 178 69.5t65 180.5q0 104 -66 177t-177 73q-106 0 -171 -63.5t-70 -162.5v-41q5 -104 69 -168.5t172 -64.5z" /> + <glyph glyph-name="uni044D" unicode="э" horiz-adv-x="983" +d="M455 -20q-142 0 -246 73.5t-150 206.5l172 69q22 -79 83 -126.5t143 -47.5q111 0 173.5 74.5t78.5 188.5h-377v145h378q-13 118 -76 197.5t-177 79.5q-84 0 -144 -46.5t-82 -127.5l-183 75q55 129 162 202t247 73q90 0 165 -28.5t128 -77t90 -114.5t54.5 -141.5 +t17.5 -156.5q0 -103 -29 -195t-84 -164.5t-144 -115.5t-200 -43z" /> + <glyph glyph-name="uni044E" unicode="ю" horiz-adv-x="1518" +d="M951 -20q-140 0 -252.5 67t-176 180t-67.5 251h-101v-478h-196v1413h196v-787h115q40 170 170 278t312 108q144 0 258 -70t176 -187.5t62 -258.5q0 -142 -62 -259.5t-176 -187t-258 -69.5zM951 149q74 0 130.5 28t89 77t48.5 109.5t16 132.5q0 150 -70 248.5t-214 98.5 +q-74 0 -130 -28t-89 -77t-49 -110t-16 -132q0 -97 27.5 -172.5t93 -125t163.5 -49.5z" /> + <glyph glyph-name="uni044F" unicode="я" horiz-adv-x="1026" +d="M65 0l120 318q26 61 68 110t92 49q-51 11 -88.5 27t-73 44t-54.5 74.5t-19 110.5q0 39 10 74.5t36 71.5t66 62t104.5 42t147.5 16h395v-999h-194v431h-119q-56 0 -91 -32.5t-56 -95.5l-117 -303h-227zM481 583h194v252h-226q-63 0 -97 -33.5t-34 -84.5q0 -134 163 -134z +" /> + <glyph glyph-name="uni0450" unicode="ѐ" horiz-adv-x="1051" +d="M450 1113l-281 300h224l221 -300h-164zM551 -17q-117 0 -210 41.5t-150.5 113.5t-87 163t-29.5 194q0 101 28.5 193t83.5 166t145 118t203 44q97 0 175 -30t127 -78.5t81.5 -114.5t45.5 -133t13 -139q0 -53 -6 -85h-691q7 -125 75.5 -202.5t196.5 -77.5q163 0 261 107 +l134 -113q-82 -86 -177.5 -126.5t-217.5 -40.5zM279 583h509q-7 122 -70.5 197t-184.5 75q-116 0 -179.5 -76t-74.5 -196z" /> + <glyph glyph-name="uni0451" unicode="ё" horiz-adv-x="1051" +d="M252 1205v208h186v-208h-186zM597 1205v208h186v-208h-186zM551 -17q-117 0 -210 41.5t-150.5 113.5t-87 163t-29.5 194q0 101 28.5 193t83.5 166t145 118t203 44q97 0 175 -30t127 -78.5t81.5 -114.5t45.5 -133t13 -139q0 -53 -6 -85h-691q7 -125 75.5 -202.5 +t196.5 -77.5q163 0 261 107l134 -113q-82 -86 -177.5 -126.5t-217.5 -40.5zM279 583h509q-7 122 -70.5 197t-184.5 75q-116 0 -179.5 -76t-74.5 -196z" /> + <glyph glyph-name="uni0452" unicode="ђ" horiz-adv-x="1143" +d="M611 -448q-153 0 -295 117l100 145q97 -84 186 -84q118 0 165.5 82t47.5 228v542q0 249 -187 249q-112 0 -192 -83t-80 -216v-532h-196v1138h-167v139h167v136h196v-136h272v-139h-272v-275q50 75 127 115t163 40q96 0 168.5 -34.5t114 -94.5t62 -132t20.5 -156v-518 +q0 -267 -97.5 -399t-302.5 -132z" /> + <glyph glyph-name="uni0453" unicode="ѓ" horiz-adv-x="778" +d="M323 1124l218 289h213l-285 -289h-146zM153 0v999h613v-148h-417v-851h-196z" /> + <glyph glyph-name="uni0454" unicode="є" horiz-adv-x="982" +d="M527 -20q-112 0 -201 43t-144 115.5t-84 164.5t-29 195q0 102 28.5 194t83.5 165t143.5 116t200.5 43q140 0 247 -73t162 -202l-183 -75q-22 81 -82.5 127.5t-143.5 46.5q-114 0 -177 -79.5t-76 -197.5h378v-145h-377q16 -114 78 -188.5t174 -74.5q82 0 142.5 47.5 +t83.5 126.5l172 -69q-46 -133 -150 -206.5t-246 -73.5z" /> + <glyph glyph-name="uni0455" unicode="ѕ" horiz-adv-x="883" +d="M444 -20q-143 0 -250 75.5t-143 186.5l157 76q24 -72 84 -122.5t147 -50.5q81 0 131.5 38.5t50.5 105.5q0 43 -29 72t-75 44.5t-101.5 29t-111 32.5t-101.5 47t-75 80.5t-29 126.5q0 90 48.5 158.5t123.5 101.5t163 33q122 0 211.5 -58t140.5 -149l-144 -80 +q-67 125 -207 125q-68 0 -110.5 -30.5t-42.5 -83.5q0 -37 29 -62.5t75.5 -40t103 -28t113 -35t103 -52.5t75.5 -87.5t29 -134.5q0 -100 -53.5 -174t-135.5 -109t-177 -35z" /> + <glyph glyph-name="uni0456" unicode="і" horiz-adv-x="513" +d="M150 1205v207h213v-207h-213zM158 0v999h193v-999h-193z" /> + <glyph glyph-name="uni0457" unicode="ї" horiz-adv-x="499" +d="M-13 1171v180h179v-180h-179zM329 1171v180h179v-180h-179zM152 0v999h193v-999h-193z" /> + <glyph glyph-name="uni0458" unicode="ј" horiz-adv-x="516" +d="M153 1197v219h213v-219h-213zM82 -438q-34 0 -74 8t-63 16l-23 8l45 158q58 -15 109 -15q48 0 66.5 29t18.5 83v1150h195v-1130q0 -138 -68.5 -222.5t-205.5 -84.5z" /> + <glyph glyph-name="uni0459" unicode="љ" horiz-adv-x="1653" +d="M218 -21q-79 0 -179 49l56 131q48 -28 81 -28q48 0 75.5 125.5t27.5 359.5v383h705v-315h168q210 0 315 -76.5t105 -264.5q0 -166 -109.5 -254.5t-309.5 -88.5h-365v851h-314v-234q0 -152 -13 -265.5t-35.5 -184t-56 -113.5t-69.5 -59t-82 -16zM984 164h168 +q95 0 150 39.5t55 139.5q0 98 -55 137.5t-150 39.5h-168v-356z" /> + <glyph glyph-name="uni045A" unicode="њ" horiz-adv-x="1681" +d="M158 0v999h195v-373h463v373h195v-373h169q105 0 178.5 -13.5t130.5 -47.5t84.5 -96t27.5 -155q0 -314 -420 -314h-365v478h-463v-478h-195zM1011 164h169q38 0 65.5 3t55 12t45 25t28.5 44t11 66q0 41 -11.5 69.5t-27.5 43.5t-46 23t-54.5 10t-65.5 2h-169v-298z" /> + <glyph glyph-name="uni045B" unicode="ћ" horiz-adv-x="1145" +d="M662 1018q90 0 159.5 -34t110.5 -92.5t61.5 -129.5t20.5 -153v-609h-197v582q0 258 -197 258q-121 0 -193.5 -90.5t-72.5 -226.5v-523h-194v1118h-164v139h164v156h194v-156h276v-139h-276v-261q53 77 136 119t172 42z" /> + <glyph glyph-name="uni045C" unicode="ќ" horiz-adv-x="994" +d="M419 1124l219 289h214l-287 -289h-146zM158 0v999h194v-364h98l228 364h229l-273 -395q50 0 93 -49.5t68 -110.5l170 -444h-228l-122 356q-22 63 -56.5 95.5t-91.5 32.5h-115v-484h-194z" /> + <glyph glyph-name="uni045D" unicode="ѝ" horiz-adv-x="1168" +d="M524 1116l-272 297h213l218 -297h-159zM514 -23q-75 0 -135.5 23.5t-101 64t-68 96t-39.5 117.5t-12 130v591h195v-586q0 -259 185 -259q112 0 195 85.5t83 196.5v563h195v-999h-195v144q-44 -71 -125.5 -119t-176.5 -48z" /> + <glyph glyph-name="uni045E" unicode="ў" horiz-adv-x="1002" +d="M498 1143q-145 0 -227 70t-82 200h146q0 -67 46.5 -107t116.5 -40t116 40t46 107h146q0 -131 -82 -200.5t-226 -69.5zM228 -430l174 446l-386 983h213l272 -759l272 759h213l-552 -1429h-206z" /> + <glyph glyph-name="uni045F" unicode="џ" horiz-adv-x="1168" +d="M486 -307v307h-328v999h195v-850h463v850h195v-999h-330v-307h-195z" /> + <glyph glyph-name="uni0462" unicode="Ѣ" horiz-adv-x="1283" +d="M324 0v1079h-272v181h272v152h202v-152h322v-181h-322v-280h216q215 0 344.5 -104t129.5 -292t-130 -295.5t-344 -107.5h-418zM526 186h216q134 0 203.5 56.5t69.5 160.5q0 210 -273 210h-216v-427z" /> + <glyph glyph-name="uni0463" unicode="ѣ" horiz-adv-x="1025" +d="M160 0v1138h-192v139h192v135h194v-135h253v-139h-253v-454h169q211 0 316 -76.5t105 -264.5q0 -166 -109.5 -254.5t-310.5 -88.5h-364zM354 164h169q95 0 150.5 39.5t55.5 139.5q0 98 -55.5 137.5t-150.5 39.5h-169v-356z" /> + <glyph glyph-name="uni0464" unicode="Ѥ" horiz-adv-x="1872" +d="M1209 -20q-150 0 -271 49.5t-200.5 137t-126 201t-57.5 248.5h-153v-616h-203v1412h203v-615h153q11 135 57.5 249t125 202t199.5 138t271 50q205 0 358.5 -100t235.5 -290l-189 -76q-40 142 -147.5 208t-259.5 66q-105 0 -188 -34.5t-136 -96.5t-84 -141t-40 -175h601 +v-181h-599q20 -203 132 -324t318 -121q148 0 248.5 66t157.5 212l188 -78q-80 -190 -234.5 -290.5t-359.5 -100.5z" /> + <glyph glyph-name="uni0465" unicode="ѥ" horiz-adv-x="1412" +d="M957 -20q-104 0 -188.5 37t-139.5 102t-87 147.5t-39 178.5h-150v-445h-195v999h195v-406h154q12 88 46 163t88 134t135 92.5t179 33.5q140 0 247.5 -73t162.5 -202l-184 -75q-22 82 -82.5 128t-143.5 46q-58 0 -106.5 -24t-78 -62t-47 -79.5t-21.5 -81.5h378v-145h-377 +q9 -132 73 -212.5t179 -80.5q82 0 142.5 47.5t83.5 126.5l172 -69q-46 -133 -150 -206.5t-246 -73.5z" /> + <glyph glyph-name="uni0466" unicode="Ѧ" horiz-adv-x="1323" +d="M39 0l546 1412h154l544 -1412h-218l-165 466h-137v-466h-201v466h-137l-165 -466h-221zM491 638h343l-171 476z" /> + <glyph glyph-name="uni0467" unicode="ѧ" horiz-adv-x="992" +d="M39 0l381 999h154l379 -999h-197l-84 269h-98v-269h-153v269h-96l-96 -269h-190zM371 413h256l-129 351z" /> + <glyph glyph-name="uni0468" unicode="Ѩ" horiz-adv-x="1760" +d="M198 0v1412h203v-615h384l238 615h154l544 -1412h-219l-164 466h-137v-466h-202v466h-136l-166 -466h-220l237 616h-313v-616h-203zM929 638h343l-171 476z" /> + <glyph glyph-name="uni0469" unicode="ѩ" horiz-adv-x="1387" +d="M158 0v999h195v-454h288l173 454h155l379 -999h-198l-83 269h-98v-269h-154v269h-95l-96 -269h-191l151 397h-231v-397h-195zM766 413h256l-129 351z" /> + <glyph glyph-name="uni046A" unicode="Ѫ" horiz-adv-x="1570" +d="M47 0l219 585q33 89 107.5 151.5t167.5 62.5l-315 432v181h1097v-181l-316 -432q97 0 169.5 -62.5t108.5 -151.5l235 -585h-232l-185 489q-57 164 -170 164h-57v-653h-202v653h-57q-111 0 -170 -164l-185 -489h-215zM776 822l297 409h-598z" /> + <glyph glyph-name="uni046B" unicode="ѫ" horiz-adv-x="1268" +d="M1060 444l169 -444h-228l-122 356q-20 60 -56 85.5t-100 27.5v-469h-178v469q-66 -3 -100.5 -27.5t-55.5 -85.5l-122 -356h-228l169 444q66 160 189 160l-202 247v148h877v-148l-200 -247q122 0 188 -160zM633 611l197 240h-388z" /> + <glyph glyph-name="uni046C" unicode="Ѭ" horiz-adv-x="1994" +d="M198 0v1412h203v-618h578l-320 437v181h1096v-181l-315 -432q95 0 163.5 -61.5t105.5 -152.5l235 -585h-223l-185 489q-59 164 -170 164h-56v-653h-204v653h-55q-110 0 -172 -164l-184 -489h-206l204 543q16 41 30 71h-322v-614h-203zM1208 822l298 409h-598z" /> + <glyph glyph-name="uni046D" unicode="ѭ" horiz-adv-x="1644" +d="M1436 444l169 -444h-227l-122 356q-25 71 -58.5 95.5t-99.5 23.5v-475h-177v475q-66 0 -101 -28.5t-55 -90.5l-122 -356h-228l144 375q13 41 34 76h-240v-451h-195v999h195v-399h421l-203 251v148h877v-148l-194 -239q38 0 69 -15.5t53 -45.5t33.5 -51.5t26.5 -55.5z +M1008 610l198 241h-389z" /> + <glyph glyph-name="uni0472" unicode="Ѳ" horiz-adv-x="1521" +d="M760 -20q-131 0 -240 38t-185 105.5t-129 159.5t-77.5 198.5t-24.5 225.5t24.5 225.5t77.5 198.5t129 159.5t185 105.5t240 38q132 0 241 -38t185 -105.5t129 -159.5t77.5 -198.5t24.5 -225.5t-24.5 -225.5t-77.5 -198.5t-129 -159.5t-185 -105.5t-241 -38zM315 789h889 +q-9 98 -39 179t-82.5 145.5t-135 100.5t-187.5 36q-106 0 -188.5 -36t-135.5 -100.5t-82.5 -145.5t-38.5 -179zM760 163q108 0 192 38t136.5 105t81.5 151.5t36 185.5h-892q7 -101 36 -185.5t81 -151.5t136.5 -105t192.5 -38z" /> + <glyph glyph-name="uni0473" unicode="ѳ" horiz-adv-x="1133" +d="M566 -20q-108 0 -201.5 41t-158 110.5t-101 164t-36.5 200.5q0 141 62 258.5t176.5 187.5t258.5 70t258.5 -70t176.5 -187.5t62 -258.5q0 -106 -36.5 -200.5t-101 -164t-158 -110.5t-201.5 -41zM287 578h555q-17 119 -85.5 192t-190.5 73q-123 0 -192 -73t-87 -192z +M566 149q127 0 195 78.5t82 204.5h-557q14 -126 83 -204.5t197 -78.5z" /> + <glyph glyph-name="uni0474" unicode="Ѵ" horiz-adv-x="1319" +d="M542 0l-519 1413h219l381 -1108l260 697q79 212 176.5 304t234.5 107v-190q-83 -34 -131 -98.5t-90 -166.5l-369 -958h-162z" /> + <glyph glyph-name="uni0475" unicode="ѵ" horiz-adv-x="982" +d="M385 0l-370 999h212l241 -747l131 368q37 104 82 177.5t93.5 114.5t94 61t98.5 26v-187q-28 -10 -42 -17t-39 -27.5t-47.5 -58.5t-45.5 -96l-243 -613h-165z" /> + <glyph glyph-name="uni0478" unicode="Ѹ" horiz-adv-x="2523" +d="M760 -20q-131 0 -239.5 38.5t-185 105.5t-129 159t-77.5 199t-25 225t25 224.5t77.5 199t129 159.5t185 105.5t239.5 38.5t240 -38.5t185.5 -105.5t129 -159.5t77.5 -199t25 -224.5t-25 -225t-77.5 -199t-129 -159t-185.5 -105.5t-240 -38.5zM760 163q117 0 206 44 +t141 121.5t77.5 172.5t25.5 206q0 88 -15.5 166t-50 148t-86 120t-128 79.5t-170.5 29.5t-170 -29.5t-127.5 -79.5t-85.5 -120t-49.5 -148t-15.5 -166q0 -111 25.5 -206t77 -172.5t140 -121.5t205.5 -44zM1747 -430l177 445l-387 984h213l274 -759l271 759h212l-552 -1429 +h-208z" /> + <glyph glyph-name="uni0479" unicode="ѹ" horiz-adv-x="2080" +d="M560 -20q-144 0 -257 71.5t-173.5 190t-60.5 260.5t60.5 259.5t173.5 188t257 70.5q143 0 257 -70.5t175 -188.5t61 -259q0 -142 -61 -260.5t-175 -190t-257 -71.5zM1304 -430l177 445l-387 984h213l274 -759l271 759h212l-552 -1429h-208zM561 144q74 0 131.5 30 +t91.5 81t51.5 114t17.5 133q0 71 -17 133t-51.5 112t-92 79t-131.5 29q-98 0 -165.5 -51t-97 -128.5t-29.5 -173.5q0 -56 10.5 -108t33.5 -97.5t56.5 -79.5t83 -53.5t108.5 -19.5z" /> + <glyph glyph-name="uni0483" unicode="҃" horiz-adv-x="0" +d="M-953 1561v305h642v131h186v-297h-648v-139h-180z" /> + <glyph glyph-name="uni0490" unicode="Ґ" horiz-adv-x="1067" +d="M198 0v1412h626v307h201v-488h-624v-1231h-203z" /> + <glyph glyph-name="uni0491" unicode="ґ" horiz-adv-x="780" +d="M153 0v999h418v308h195v-456h-417v-851h-196z" /> + <glyph glyph-name="uni0492" unicode="Ғ" horiz-adv-x="1211" +d="M1168 1231h-625v-398h205v-169h-205v-664h-202v664h-333v169h333v579h827v-181z" /> + <glyph glyph-name="uni0493" unicode="ғ" horiz-adv-x="782" +d="M158 0v999h612v-148h-417v-851h-195z" /> + <glyph glyph-name="uni0496" unicode="Җ" horiz-adv-x="2019" +d="M1901 168h156v-406h-192v238h-144l-184 521q-22 63 -71.5 113.5t-118.5 50.5h-236v-685h-203v685h-235q-70 0 -118 -49t-72 -115l-185 -521h-248l252 617q13 31 34 63.5t51 66.5t70.5 55.5t82.5 21.5l-416 588h265l360 -544h159v544h203v-544h159l359 544h266l-416 -588 +q42 0 82.5 -21.5t70.5 -55.5t51.5 -66.5t34.5 -63.5z" /> + <glyph glyph-name="uni0497" unicode="җ" horiz-adv-x="1479" +d="M1385 168h160v-406h-192v238h-132l-121 356q-23 64 -57 96t-91 32h-116v-484h-194v484h-115q-57 0 -91.5 -32.5t-56.5 -95.5l-122 -356h-228l170 444q24 61 67 110.5t94 49.5l-273 395h229l228 -364h98v364h194v-364h99l227 364h230l-273 -395q50 0 93 -49.5t68 -110.5z +" /> + <glyph glyph-name="uni049A" unicode="Қ" horiz-adv-x="1306" +d="M1190 168h154v-406h-192v238h-141l-185 521q-21 58 -71 111t-119 53h-235v-685h-203v1412h203v-544h159l359 544h266l-416 -588q42 0 82.5 -21.5t70.5 -55.5t51 -67t34 -63z" /> + <glyph glyph-name="uni049B" unicode="қ" horiz-adv-x="998" +d="M901 168h160v-406h-192v238h-132l-122 356q-22 63 -56.5 95.5t-91.5 32.5h-115v-484h-194v1412h194v-777h98l228 364h229l-273 -395q50 0 93 -49.5t68 -110.5z" /> + <glyph glyph-name="uni04A2" unicode="Ң" horiz-adv-x="1472" +d="M1274 168h156v-406h-192v238h-168v617h-669v-617h-203v1413h203v-616h669v616h204v-1245z" /> + <glyph glyph-name="uni04A3" unicode="ң" horiz-adv-x="1168" +d="M1011 168h182v-406h-192v238h-186v478h-461v-478h-196v999h196v-373h461v373h196v-831z" /> + <glyph glyph-name="uni04AE" unicode="Ү" horiz-adv-x="1317" +d="M556 0v552l-529 861h242l388 -661l390 661h243l-527 -861v-552h-207z" /> + <glyph glyph-name="uni04AF" unicode="ү" horiz-adv-x="982" +d="M395 0v436l-368 563h230l234 -377l235 377h229l-367 -563v-436h-193z" /> + <glyph glyph-name="uni04B0" unicode="Ұ" horiz-adv-x="1319" +d="M763 552v-88h144v-169h-144v-295h-207v295h-389v169h389v88l-529 861h242l388 -661l390 661h243z" /> + <glyph glyph-name="uni04B1" unicode="ұ" horiz-adv-x="1031" +d="M588 436v-76h200v-169h-200v-191h-193v191h-347v169h347v76l-368 563h230l234 -377l235 377h229z" /> + <glyph glyph-name="uni04B2" unicode="Ҳ" horiz-adv-x="1299" +d="M1138 168h174v-406h-192v238h-112l-361 558l-355 -558h-242l469 707l-467 706h242l355 -567l357 567h241l-466 -706z" /> + <glyph glyph-name="uni04B3" unicode="ҳ" horiz-adv-x="973" +d="M830 168h187v-406h-192v238h-117l-222 359l-221 -359h-236l339 504l-339 495h236l221 -352l222 352h235l-338 -495z" /> + <glyph glyph-name="uni04B6" unicode="Ҷ" horiz-adv-x="1338" +d="M1140 168h166v-406h-192v238h-178v511q-127 -101 -312 -101q-133 0 -233 42.5t-161 122t-91 185.5t-30 240v412h203v-401q0 -97 15 -168t49.5 -126t96.5 -83t151 -28q104 0 184.5 38t127.5 95v673h204v-1244z" /> + <glyph glyph-name="uni04B7" unicode="ҷ" horiz-adv-x="1095" +d="M938 168h167v-406h-192v238h-172v409q-44 -70 -125.5 -118t-176.5 -48q-93 0 -163.5 35.5t-111.5 97t-61.5 136.5t-20.5 161v326h196v-321q0 -259 185 -259q112 0 195 85.5t83 196.5v298h197v-831z" /> + <glyph glyph-name="uni04BA" unicode="Һ" horiz-adv-x="1338" +d="M402 1413v-511q127 101 312 101q133 0 233 -42.5t161 -122t91 -185.5t30 -240v-412h-203v401q0 97 -15 168t-49.5 126t-96.5 83t-151 28q-104 0 -184.5 -38t-127.5 -95v-673h-204v1412h204z" /> + <glyph glyph-name="uni04BB" unicode="һ" horiz-adv-x="1145" +d="M160 0v1413h194v-556q53 77 136 119t172 42q90 0 159.5 -34t110.5 -92.5t61.5 -129.5t20.5 -153v-609h-197v582q0 258 -197 258q-121 0 -193.5 -90.5t-72.5 -226.5v-523h-194z" /> + <glyph glyph-name="uni04C0" unicode="Ӏ" horiz-adv-x="599" +d="M198 0v1412h203v-1412h-203z" /> + <glyph glyph-name="uni04CF" unicode="ӏ" horiz-adv-x="509" +d="M158 0v1412h194v-1412h-194z" /> + <glyph glyph-name="uni04D8" unicode="Ә" horiz-adv-x="1521" +d="M760 -20q-131 0 -240 38t-185 105.5t-129 159.5t-77.5 198.5t-24.5 225.5q0 41 3 82h1097q-9 98 -39 179t-82.5 145.5t-135 100.5t-187.5 36q-247 0 -363 -191l-176 100q84 130 219 202.5t320 72.5q132 0 241 -38t185 -105.5t129 -159.5t77.5 -198.5t24.5 -225.5 +t-24.5 -225.5t-77.5 -198.5t-129 -159.5t-185 -105.5t-241 -38zM760 163q108 0 192 38t136.5 105t81.5 151.5t36 185.5h-892q7 -101 36 -185.5t81 -151.5t136.5 -105t192.5 -38z" /> + <glyph glyph-name="uni04D9" unicode="ә" horiz-adv-x="1051" +d="M500 1016q117 0 210 -41.5t150.5 -113.5t87 -163t29.5 -194q0 -101 -28.5 -193t-83.5 -166t-145 -118t-203 -44q-97 0 -175 30t-127 78.5t-81.5 114.5t-45.5 133t-13 139q0 53 6 85h691q-7 125 -75.5 202.5t-196.5 77.5q-163 0 -261 -107l-134 113q82 86 177.5 126.5 +t217.5 40.5zM772 416h-509q7 -122 70.5 -197t184.5 -75q116 0 179.5 76t74.5 196z" /> + <glyph glyph-name="uni04E2" unicode="Ӣ" horiz-adv-x="1435" +d="M444 1579v134h549v-134h-549zM1237 0h-198v1127l-598 -1127h-243v1413h198v-1125l601 1125h240v-1413z" /> + <glyph glyph-name="uni04E3" unicode="ӣ" horiz-adv-x="1140" +d="M293 1166v134h549v-134h-549zM483 -21q-179 0 -266.5 125t-87.5 340v555h196v-564q0 -62 8.5 -110t29 -89.5t60.5 -64t98 -22.5q113 0 190 88t77 257v505h195v-999h-195v145q-44 -72 -125 -119t-180 -47z" /> + <glyph glyph-name="uni04E8" unicode="Ө" horiz-adv-x="1521" +d="M760 -20q-131 0 -240 38t-185 105.5t-129 159.5t-77.5 198.5t-24.5 225.5t24.5 225.5t77.5 198.5t129 159.5t185 105.5t240 38q132 0 241 -38t185 -105.5t129 -159.5t77.5 -198.5t24.5 -225.5t-24.5 -225.5t-77.5 -198.5t-129 -159.5t-185 -105.5t-241 -38zM315 789h889 +q-9 98 -39 179t-82.5 145.5t-135 100.5t-187.5 36q-106 0 -188.5 -36t-135.5 -100.5t-82.5 -145.5t-38.5 -179zM760 163q108 0 192 38t136.5 105t81.5 151.5t36 185.5h-892q7 -101 36 -185.5t81 -151.5t136.5 -105t192.5 -38z" /> + <glyph glyph-name="uni04E9" unicode="ө" horiz-adv-x="1133" +d="M566 -20q-108 0 -201.5 41t-158 110.5t-101 164t-36.5 200.5q0 141 62 258.5t176.5 187.5t258.5 70t258.5 -70t176.5 -187.5t62 -258.5q0 -106 -36.5 -200.5t-101 -164t-158 -110.5t-201.5 -41zM287 578h555q-17 119 -85.5 192t-190.5 73q-123 0 -192 -73t-87 -192z +M566 149q127 0 195 78.5t82 204.5h-557q14 -126 83 -204.5t197 -78.5z" /> + <glyph glyph-name="uni04EE" unicode="Ӯ" horiz-adv-x="1113" +d="M283 1580v134h549v-134h-549zM242 0l195 457l-398 955h218l287 -736l310 736h219l-616 -1412h-215z" /> + <glyph glyph-name="uni04EF" unicode="ӯ" horiz-adv-x="1002" +d="M227 1166v134h549v-134h-549zM228 -430l174 446l-386 983h213l272 -759l272 759h213l-552 -1429h-206z" /> + <glyph glyph-name="Wgrave" unicode="Ẁ" horiz-adv-x="1987" +d="M926 1513l-281 300h224l221 -300h-164zM461 0l-410 1413h210l319 -1135l334 1053h160l334 -1053l318 1135h211l-410 -1413h-208l-324 1007l-327 -1007h-207z" /> + <glyph glyph-name="wgrave" unicode="ẁ" horiz-adv-x="1441" +d="M654 1113l-281 300h224l221 -300h-164zM324 -2l-293 1001h206l189 -719l210 719h170l210 -717l189 717h206l-293 -999h-180l-216 738l-218 -740h-180z" /> + <glyph glyph-name="Wacute" unicode="Ẃ" horiz-adv-x="1987" +d="M888 1524l221 289h225l-291 -289h-155zM461 0l-410 1413h210l319 -1135l334 1053h160l334 -1053l318 1135h211l-410 -1413h-208l-324 1007l-327 -1007h-207z" /> + <glyph glyph-name="wacute" unicode="ẃ" horiz-adv-x="1441" +d="M616 1124l221 289h225l-291 -289h-155zM324 -2l-293 1001h206l189 -719l210 719h170l210 -717l189 717h206l-293 -999h-180l-216 738l-218 -740h-180z" /> + <glyph glyph-name="Wdieresis" unicode="Ẅ" horiz-adv-x="1987" +d="M728 1605v208h186v-208h-186zM1073 1605v208h186v-208h-186zM461 0l-410 1413h210l319 -1135l334 1053h160l334 -1053l318 1135h211l-410 -1413h-208l-324 1007l-327 -1007h-207z" /> + <glyph glyph-name="wdieresis" unicode="ẅ" horiz-adv-x="1441" +d="M456 1205v208h186v-208h-186zM801 1205v208h186v-208h-186zM324 -2l-293 1001h206l189 -719l210 719h170l210 -717l189 717h206l-293 -999h-180l-216 738l-218 -740h-180z" /> + <glyph glyph-name="uni1EA4" unicode="Ấ" horiz-adv-x="1323" +d="M555 1950l221 289h225l-291 -289h-155zM338 1511l323 354l323 -354h-173l-150 167l-148 -167h-175zM39 0l547 1413h154l544 -1413h-219l-108 307h-587l-109 -307h-222zM438 486h450l-224 628z" /> + <glyph glyph-name="uni1EA5" unicode="ấ" +d="M396 1537l221 289h225l-291 -289h-155zM179 1098l323 354l323 -354h-173l-150 167l-148 -167h-175zM409 -20q-151 0 -246.5 83.5t-95.5 228.5q0 291 420 291h243q0 125 -55 196.5t-168 71.5q-162 0 -257 -146l-145 108q149 207 397 207q194 0 302 -112t108 -298v-610 +h-161l-10 169q-108 -189 -332 -189zM434 144q125 0 209.5 91t86.5 205h-229q-235 0 -235 -154q0 -69 45.5 -105.5t122.5 -36.5z" /> + <glyph glyph-name="uni1EA6" unicode="Ầ" horiz-adv-x="1323" +d="M593 1939l-281 300h224l221 -300h-164zM338 1511l323 354l323 -354h-173l-150 167l-148 -167h-175zM39 0l547 1413h154l544 -1413h-219l-108 307h-587l-109 -307h-222zM438 486h450l-224 628z" /> + <glyph glyph-name="uni1EA7" unicode="ầ" +d="M434 1526l-281 300h224l221 -300h-164zM179 1098l323 354l323 -354h-173l-150 167l-148 -167h-175zM409 -20q-151 0 -246.5 83.5t-95.5 228.5q0 291 420 291h243q0 125 -55 196.5t-168 71.5q-162 0 -257 -146l-145 108q149 207 397 207q194 0 302 -112t108 -298v-610 +h-161l-10 169q-108 -189 -332 -189zM434 144q125 0 209.5 91t86.5 205h-229q-235 0 -235 -154q0 -69 45.5 -105.5t122.5 -36.5z" /> + <glyph glyph-name="uni1EAA" unicode="Ẫ" horiz-adv-x="1323" +d="M785 1954q-40 0 -74.5 15.5t-57.5 37.5t-42.5 44t-40.5 37.5t-42 15.5q-68 0 -68 -137h-118q0 124 50 195.5t139 71.5q40 0 74 -15.5t57 -38t43 -44.5t41 -37.5t41 -15.5q67 0 67 145h124q0 -132 -51 -203t-142 -71zM338 1511l323 354l323 -354h-173l-150 167l-148 -167 +h-175zM39 0l547 1413h154l544 -1413h-219l-108 307h-587l-109 -307h-222zM438 486h450l-224 628z" /> + <glyph glyph-name="uni1EAB" unicode="ẫ" +d="M626 1541q-40 0 -74.5 15.5t-57.5 37.5t-42.5 44t-40.5 37.5t-42 15.5q-68 0 -68 -137h-118q0 124 50 195.5t139 71.5q40 0 74 -15.5t57 -37.5t43 -44.5t41 -38t41 -15.5q67 0 67 145h124q0 -132 -51 -203t-142 -71zM179 1098l323 354l323 -354h-173l-150 167l-148 -167 +h-175zM409 -20q-151 0 -246.5 83.5t-95.5 228.5q0 291 420 291h243q0 125 -55 196.5t-168 71.5q-162 0 -257 -146l-145 108q149 207 397 207q194 0 302 -112t108 -298v-610h-161l-10 169q-108 -189 -332 -189zM434 144q125 0 209.5 91t86.5 205h-229q-235 0 -235 -154 +q0 -69 45.5 -105.5t122.5 -36.5z" /> + <glyph glyph-name="uni1EAE" unicode="Ắ" horiz-adv-x="1323" +d="M555 1951l221 289h225l-291 -289h-155zM662 1556q-150 0 -230.5 70t-80.5 200h153q0 -66 45 -104.5t113 -38.5q69 0 113 38.5t44 104.5h153q0 -132 -81.5 -201t-228.5 -69zM39 0l547 1413h154l544 -1413h-219l-108 307h-587l-109 -307h-222zM438 486h450l-224 628z" /> + <glyph glyph-name="uni1EAF" unicode="ắ" +d="M396 1538l221 289h225l-291 -289h-155zM503 1143q-150 0 -230.5 70t-80.5 200h153q0 -66 45 -104.5t113 -38.5q69 0 113 38.5t44 104.5h153q0 -132 -81.5 -201t-228.5 -69zM409 -20q-151 0 -246.5 83.5t-95.5 228.5q0 291 420 291h243q0 125 -55 196.5t-168 71.5 +q-162 0 -257 -146l-145 108q149 207 397 207q194 0 302 -112t108 -298v-610h-161l-10 169q-108 -189 -332 -189zM434 144q125 0 209.5 91t86.5 205h-229q-235 0 -235 -154q0 -69 45.5 -105.5t122.5 -36.5z" /> + <glyph glyph-name="uni1EB0" unicode="Ằ" horiz-adv-x="1323" +d="M593 1940l-281 300h224l221 -300h-164zM662 1556q-150 0 -230.5 70t-80.5 200h153q0 -66 45 -104.5t113 -38.5q69 0 113 38.5t44 104.5h153q0 -132 -81.5 -201t-228.5 -69zM39 0l547 1413h154l544 -1413h-219l-108 307h-587l-109 -307h-222zM438 486h450l-224 628z" /> + <glyph glyph-name="uni1EB1" unicode="ằ" +d="M434 1527l-281 300h224l221 -300h-164zM503 1143q-150 0 -230.5 70t-80.5 200h153q0 -66 45 -104.5t113 -38.5q69 0 113 38.5t44 104.5h153q0 -132 -81.5 -201t-228.5 -69zM409 -20q-151 0 -246.5 83.5t-95.5 228.5q0 291 420 291h243q0 125 -55 196.5t-168 71.5 +q-162 0 -257 -146l-145 108q149 207 397 207q194 0 302 -112t108 -298v-610h-161l-10 169q-108 -189 -332 -189zM434 144q125 0 209.5 91t86.5 205h-229q-235 0 -235 -154q0 -69 45.5 -105.5t122.5 -36.5z" /> + <glyph glyph-name="uni1EB4" unicode="Ẵ" horiz-adv-x="1323" +d="M785 1955q-40 0 -74.5 15.5t-57.5 37.5t-42.5 44t-40.5 37.5t-42 15.5q-68 0 -68 -137h-118q0 124 50 195.5t139 71.5q40 0 74 -15.5t57 -37.5t43 -44.5t41 -38t41 -15.5q67 0 67 145h124q0 -132 -51 -203t-142 -71zM662 1556q-150 0 -230.5 70t-80.5 200h153 +q0 -66 45 -104.5t113 -38.5q69 0 113 38.5t44 104.5h153q0 -132 -81.5 -201t-228.5 -69zM39 0l547 1413h154l544 -1413h-219l-108 307h-587l-109 -307h-222zM438 486h450l-224 628z" /> + <glyph glyph-name="uni1EB5" unicode="ẵ" +d="M626 1542q-40 0 -74.5 15.5t-57.5 37.5t-42.5 44t-40.5 37.5t-42 15.5q-68 0 -68 -137h-118q0 124 50 195.5t139 71.5q40 0 74 -15.5t57 -38t43 -44.5t41 -37.5t41 -15.5q67 0 67 145h124q0 -132 -51 -203t-142 -71zM503 1143q-150 0 -230.5 70t-80.5 200h153 +q0 -66 45 -104.5t113 -38.5q69 0 113 38.5t44 104.5h153q0 -132 -81.5 -201t-228.5 -69zM409 -20q-151 0 -246.5 83.5t-95.5 228.5q0 291 420 291h243q0 125 -55 196.5t-168 71.5q-162 0 -257 -146l-145 108q149 207 397 207q194 0 302 -112t108 -298v-610h-161l-10 169 +q-108 -189 -332 -189zM434 144q125 0 209.5 91t86.5 205h-229q-235 0 -235 -154q0 -69 45.5 -105.5t122.5 -36.5z" /> + <glyph glyph-name="uni1EBC" unicode="Ẽ" horiz-adv-x="1242" +d="M768 1541q-40 0 -74.5 15.5t-57.5 37.5t-42.5 44t-40.5 37.5t-42 15.5q-68 0 -68 -137h-118q0 124 50 195.5t139 71.5q40 0 74 -15.5t57 -37.5t43 -44.5t41 -38t41 -15.5q67 0 67 145h124q0 -132 -51 -203t-142 -71zM198 0v1413h927v-182h-724v-434h649v-180h-649v-428 +h724v-189h-927z" /> + <glyph glyph-name="uni1EBD" unicode="ẽ" horiz-adv-x="1051" +d="M642 1128q-40 0 -74.5 15.5t-57.5 37.5t-42.5 44t-40.5 37.5t-42 15.5q-68 0 -68 -137h-118q0 124 50 195.5t139 71.5q40 0 74 -15.5t57 -38t43 -44.5t41 -37.5t41 -15.5q67 0 67 145h124q0 -132 -51 -203t-142 -71zM551 -17q-117 0 -210 41.5t-150.5 113.5t-87 163 +t-29.5 194q0 101 28.5 193t83.5 166t145 118t203 44q97 0 175 -30t127 -78.5t81.5 -114.5t45.5 -133t13 -139q0 -53 -6 -85h-691q7 -125 75.5 -202.5t196.5 -77.5q163 0 261 107l134 -113q-82 -86 -177.5 -126.5t-217.5 -40.5zM279 583h509q-7 122 -70.5 197t-184.5 75 +q-116 0 -179.5 -76t-74.5 -196z" /> + <glyph glyph-name="uni1EBE" unicode="Ế" horiz-adv-x="1242" +d="M538 1950l221 289h225l-291 -289h-155zM321 1511l323 354l323 -354h-173l-150 167l-148 -167h-175zM198 0v1413h927v-182h-724v-434h649v-180h-649v-428h724v-189h-927z" /> + <glyph glyph-name="uni1EBF" unicode="ế" horiz-adv-x="1051" +d="M412 1537l221 289h225l-291 -289h-155zM195 1098l323 354l323 -354h-173l-150 167l-148 -167h-175zM551 -17q-117 0 -210 41.5t-150.5 113.5t-87 163t-29.5 194q0 101 28.5 193t83.5 166t145 118t203 44q97 0 175 -30t127 -78.5t81.5 -114.5t45.5 -133t13 -139 +q0 -53 -6 -85h-691q7 -125 75.5 -202.5t196.5 -77.5q163 0 261 107l134 -113q-82 -86 -177.5 -126.5t-217.5 -40.5zM279 583h509q-7 122 -70.5 197t-184.5 75q-116 0 -179.5 -76t-74.5 -196z" /> + <glyph glyph-name="uni1EC0" unicode="Ề" horiz-adv-x="1242" +d="M576 1939l-281 300h224l221 -300h-164zM321 1511l323 354l323 -354h-173l-150 167l-148 -167h-175zM198 0v1413h927v-182h-724v-434h649v-180h-649v-428h724v-189h-927z" /> + <glyph glyph-name="uni1EC1" unicode="ề" horiz-adv-x="1051" +d="M450 1526l-281 300h224l221 -300h-164zM195 1098l323 354l323 -354h-173l-150 167l-148 -167h-175zM551 -17q-117 0 -210 41.5t-150.5 113.5t-87 163t-29.5 194q0 101 28.5 193t83.5 166t145 118t203 44q97 0 175 -30t127 -78.5t81.5 -114.5t45.5 -133t13 -139 +q0 -53 -6 -85h-691q7 -125 75.5 -202.5t196.5 -77.5q163 0 261 107l134 -113q-82 -86 -177.5 -126.5t-217.5 -40.5zM279 583h509q-7 122 -70.5 197t-184.5 75q-116 0 -179.5 -76t-74.5 -196z" /> + <glyph glyph-name="uni1EC4" unicode="Ễ" horiz-adv-x="1242" +d="M768 1954q-40 0 -74.5 15.5t-57.5 37.5t-42.5 44t-40.5 37.5t-42 15.5q-68 0 -68 -137h-118q0 124 50 195.5t139 71.5q40 0 74 -15.5t57 -38t43 -44.5t41 -37.5t41 -15.5q67 0 67 145h124q0 -132 -51 -203t-142 -71zM321 1511l323 354l323 -354h-173l-150 167l-148 -167 +h-175zM198 0v1413h927v-182h-724v-434h649v-180h-649v-428h724v-189h-927z" /> + <glyph glyph-name="uni1EC5" unicode="ễ" horiz-adv-x="1051" +d="M642 1541q-40 0 -74.5 15.5t-57.5 37.5t-42.5 44t-40.5 37.5t-42 15.5q-68 0 -68 -137h-118q0 124 50 195.5t139 71.5q40 0 74 -15.5t57 -37.5t43 -44.5t41 -38t41 -15.5q67 0 67 145h124q0 -132 -51 -203t-142 -71zM195 1098l323 354l323 -354h-173l-150 167l-148 -167 +h-175zM551 -17q-117 0 -210 41.5t-150.5 113.5t-87 163t-29.5 194q0 101 28.5 193t83.5 166t145 118t203 44q97 0 175 -30t127 -78.5t81.5 -114.5t45.5 -133t13 -139q0 -53 -6 -85h-691q7 -125 75.5 -202.5t196.5 -77.5q163 0 261 107l134 -113q-82 -86 -177.5 -126.5 +t-217.5 -40.5zM279 583h509q-7 122 -70.5 197t-184.5 75q-116 0 -179.5 -76t-74.5 -196z" /> + <glyph glyph-name="uni1ED0" unicode="Ố" horiz-adv-x="1521" +d="M653 1950l221 289h225l-291 -289h-155zM436 1511l323 354l323 -354h-173l-150 167l-148 -167h-175zM760 -20q-131 0 -239.5 38.5t-185 105.5t-129 159t-77.5 199t-25 225t25 224.5t77.5 199t129 159.5t185 105.5t239.5 38.5t240 -38.5t185.5 -105.5t129 -159.5t77.5 -199 +t25 -224.5t-25 -225t-77.5 -199t-129 -159t-185.5 -105.5t-240 -38.5zM760 163q117 0 206 44t141 121.5t77.5 172.5t25.5 206q0 88 -15.5 166t-50 148t-86 120t-128 79.5t-170.5 29.5t-170 -29.5t-127.5 -79.5t-85.5 -120t-49.5 -148t-15.5 -166q0 -111 25.5 -206t77 -172.5 +t140 -121.5t205.5 -44z" /> + <glyph glyph-name="uni1ED1" unicode="ố" horiz-adv-x="1123" +d="M454 1537l221 289h225l-291 -289h-155zM237 1098l323 354l323 -354h-173l-150 167l-148 -167h-175zM560 -20q-144 0 -257 71.5t-173.5 190t-60.5 260.5t60.5 259.5t173.5 188t257 70.5q143 0 257 -70.5t175 -188.5t61 -259q0 -142 -61 -260.5t-175 -190t-257 -71.5z +M561 144q74 0 131.5 30t91.5 81t51.5 114t17.5 133q0 71 -17 133t-51.5 112t-92 79t-131.5 29q-98 0 -165.5 -51t-97 -128.5t-29.5 -173.5q0 -56 10.5 -108t33.5 -97.5t56.5 -79.5t83 -53.5t108.5 -19.5z" /> + <glyph glyph-name="uni1ED2" unicode="Ồ" horiz-adv-x="1521" +d="M691 1939l-281 300h224l221 -300h-164zM436 1511l323 354l323 -354h-173l-150 167l-148 -167h-175zM760 -20q-131 0 -239.5 38.5t-185 105.5t-129 159t-77.5 199t-25 225t25 224.5t77.5 199t129 159.5t185 105.5t239.5 38.5t240 -38.5t185.5 -105.5t129 -159.5t77.5 -199 +t25 -224.5t-25 -225t-77.5 -199t-129 -159t-185.5 -105.5t-240 -38.5zM760 163q117 0 206 44t141 121.5t77.5 172.5t25.5 206q0 88 -15.5 166t-50 148t-86 120t-128 79.5t-170.5 29.5t-170 -29.5t-127.5 -79.5t-85.5 -120t-49.5 -148t-15.5 -166q0 -111 25.5 -206t77 -172.5 +t140 -121.5t205.5 -44z" /> + <glyph glyph-name="uni1ED3" unicode="ồ" horiz-adv-x="1123" +d="M492 1526l-281 300h224l221 -300h-164zM237 1098l323 354l323 -354h-173l-150 167l-148 -167h-175zM560 -20q-144 0 -257 71.5t-173.5 190t-60.5 260.5t60.5 259.5t173.5 188t257 70.5q143 0 257 -70.5t175 -188.5t61 -259q0 -142 -61 -260.5t-175 -190t-257 -71.5z +M561 144q74 0 131.5 30t91.5 81t51.5 114t17.5 133q0 71 -17 133t-51.5 112t-92 79t-131.5 29q-98 0 -165.5 -51t-97 -128.5t-29.5 -173.5q0 -56 10.5 -108t33.5 -97.5t56.5 -79.5t83 -53.5t108.5 -19.5z" /> + <glyph glyph-name="uni1ED6" unicode="Ỗ" horiz-adv-x="1521" +d="M883 1954q-40 0 -74.5 15.5t-57.5 37.5t-42.5 44t-40.5 37.5t-42 15.5q-68 0 -68 -137h-118q0 124 50 195.5t139 71.5q40 0 74 -15.5t57 -38t43 -44.5t41 -37.5t41 -15.5q67 0 67 145h124q0 -132 -51 -203t-142 -71zM436 1511l323 354l323 -354h-173l-150 167l-148 -167 +h-175zM760 -20q-131 0 -239.5 38.5t-185 105.5t-129 159t-77.5 199t-25 225t25 224.5t77.5 199t129 159.5t185 105.5t239.5 38.5t240 -38.5t185.5 -105.5t129 -159.5t77.5 -199t25 -224.5t-25 -225t-77.5 -199t-129 -159t-185.5 -105.5t-240 -38.5zM760 163q117 0 206 44 +t141 121.5t77.5 172.5t25.5 206q0 88 -15.5 166t-50 148t-86 120t-128 79.5t-170.5 29.5t-170 -29.5t-127.5 -79.5t-85.5 -120t-49.5 -148t-15.5 -166q0 -111 25.5 -206t77 -172.5t140 -121.5t205.5 -44z" /> + <glyph glyph-name="uni1ED7" unicode="ỗ" horiz-adv-x="1123" +d="M684 1541q-40 0 -74.5 15.5t-57.5 37.5t-42.5 44t-40.5 37.5t-42 15.5q-68 0 -68 -137h-118q0 124 50 195.5t139 71.5q40 0 74 -15.5t57 -37.5t43 -44.5t41 -38t41 -15.5q67 0 67 145h124q0 -132 -51 -203t-142 -71zM237 1098l323 354l323 -354h-173l-150 167l-148 -167 +h-175zM560 -20q-144 0 -257 71.5t-173.5 190t-60.5 260.5t60.5 259.5t173.5 188t257 70.5q143 0 257 -70.5t175 -188.5t61 -259q0 -142 -61 -260.5t-175 -190t-257 -71.5zM561 144q74 0 131.5 30t91.5 81t51.5 114t17.5 133q0 71 -17 133t-51.5 112t-92 79t-131.5 29 +q-98 0 -165.5 -51t-97 -128.5t-29.5 -173.5q0 -56 10.5 -108t33.5 -97.5t56.5 -79.5t83 -53.5t108.5 -19.5z" /> + <glyph glyph-name="Ygrave" unicode="Ỳ" horiz-adv-x="1317" +d="M588 1526l-281 300h224l221 -300h-164zM556 0v552l-529 861h242l388 -661l390 661h243l-527 -861v-552h-207z" /> + <glyph glyph-name="ygrave" unicode="ỳ" horiz-adv-x="1002" +d="M430 1113l-281 300h224l221 -300h-164zM226 -430l177 445l-387 984h213l274 -759l271 759h212l-552 -1429h-208z" /> + <glyph glyph-name="uni1EF8" unicode="Ỹ" horiz-adv-x="1317" +d="M780 1541q-40 0 -74.5 15.5t-57.5 37.5t-42.5 44t-40.5 37.5t-42 15.5q-68 0 -68 -137h-118q0 124 50 195.5t139 71.5q40 0 74 -15.5t57 -37.5t43 -44.5t41 -38t41 -15.5q67 0 67 145h124q0 -132 -51 -203t-142 -71zM556 0v552l-529 861h242l388 -661l390 661h243 +l-527 -861v-552h-207z" /> + <glyph glyph-name="uni1EF9" unicode="ỹ" horiz-adv-x="1002" +d="M622 1128q-40 0 -74.5 15.5t-57.5 37.5t-42.5 44t-40.5 37.5t-42 15.5q-68 0 -68 -137h-118q0 124 50 195.5t139 71.5q40 0 74 -15.5t57 -38t43 -44.5t41 -37.5t41 -15.5q67 0 67 145h124q0 -132 -51 -203t-142 -71zM226 -430l177 445l-387 984h213l274 -759l271 759h212 +l-552 -1429h-208z" /> + <glyph glyph-name="endash" unicode="–" horiz-adv-x="1034" +d="M152 545v147h730v-147h-730z" /> + <glyph glyph-name="emdash" unicode="—" horiz-adv-x="2048" +d="M0 545v147h2048v-147h-2048z" /> + <glyph glyph-name="uni2015" unicode="―" horiz-adv-x="1526" +d="M152 545v147h1222v-147h-1222z" /> + <glyph glyph-name="quoteleft" unicode="‘" horiz-adv-x="566" +d="M315 893l-235 520h233l128 -520h-126z" /> + <glyph glyph-name="quoteright" unicode="’" horiz-adv-x="566" +d="M124 893l129 520h233l-236 -520h-126z" /> + <glyph glyph-name="quotesinglbase" unicode="‚" horiz-adv-x="557" +d="M125 -225l127 489h223l-232 -489h-118z" /> + <glyph glyph-name="quotedblleft" unicode="“" horiz-adv-x="912" +d="M315 893l-235 520h233l128 -520h-126zM662 893l-236 520h233l129 -520h-126z" /> + <glyph glyph-name="quotedblright" unicode="”" horiz-adv-x="912" +d="M124 893l129 520h233l-236 -520h-126zM471 893l129 520h232l-235 -520h-126z" /> + <glyph glyph-name="quotedblbase" unicode="„" horiz-adv-x="888" +d="M125 -225l127 489h223l-232 -489h-118zM456 -225l127 489h223l-233 -489h-117z" /> + <glyph glyph-name="dagger" unicode="†" horiz-adv-x="793" +d="M305 -205v1033h-222v183h222v402h183v-402h222v-183h-222v-1033h-183z" /> + <glyph glyph-name="daggerdbl" unicode="‡" horiz-adv-x="885" +d="M351 -205v401h-222v185h222v447h-222v183h222v402h183v-402h222v-183h-222v-447h222v-185h-222v-401h-183z" /> + <glyph glyph-name="bullet" unicode="•" horiz-adv-x="793" +d="M396 244q-98 0 -167.5 69.5t-69.5 167.5t69.5 168t167.5 70t168 -70t70 -168t-70 -167.5t-168 -69.5z" /> + <glyph glyph-name="uni2023" unicode="‣" horiz-adv-x="853" +d="M221 193v633l549 -316z" /> + <glyph glyph-name="twodotenleader" unicode="‥" horiz-adv-x="1069" +d="M217 0v227h221v-227h-221zM631 0v227h220v-227h-220z" /> + <glyph glyph-name="ellipsis" unicode="…" horiz-adv-x="1482" +d="M217 0v227h221v-227h-221zM631 0v227h220v-227h-220zM1045 0v227h220v-227h-220z" /> + <glyph glyph-name="perthousand" unicode="‰" horiz-adv-x="2174" +d="M370 787q-59 0 -106 21.5t-76.5 55t-49 78t-27 86.5t-7.5 83q0 42 7.5 84t26.5 86.5t47.5 78t75 55t103.5 21.5q66 0 118 -29t83 -77t47 -104.5t16 -116.5q0 -80 -26 -151t-86.5 -121t-145.5 -50zM303 -8l771 1437h169l-771 -1437h-169zM367 921q56 0 87 57t31 133 +q0 78 -31.5 133.5t-89.5 55.5q-59 0 -90 -55.5t-31 -133.5t32 -134t92 -56zM1197 -3q-59 0 -106 21.5t-76 55t-48.5 78t-27 86.5t-7.5 84t7.5 84.5t26.5 86.5t47.5 78t74.5 55.5t103 21.5q66 0 118 -29t83.5 -77t47.5 -104.5t16 -116.5q0 -81 -26.5 -152.5t-87 -121.5 +t-145.5 -50zM1811 -3q-59 0 -106 21.5t-76 55t-48.5 78t-27 86.5t-7.5 84t7.5 84.5t26.5 87t47.5 78t74.5 55t103 21.5q66 0 118 -29t83.5 -77t47.5 -104.5t16 -116.5q0 -81 -26.5 -152.5t-87 -121.5t-145.5 -50zM1195 130q56 0 87 58t31 135q0 78 -31.5 134t-90.5 56 +q-57 0 -88.5 -56.5t-31.5 -134.5q0 -79 31.5 -135.5t92.5 -56.5zM1809 130q56 0 86.5 58t30.5 135q0 78 -31.5 134t-89.5 56t-89 -56t-31 -135t32 -135.5t92 -56.5z" /> + <glyph glyph-name="uni2031" unicode="‱" horiz-adv-x="2777" +d="M370 787q-59 0 -106 21.5t-76.5 55t-49 78t-27 86.5t-7.5 83q0 42 7.5 84t26.5 86.5t47.5 78t74.5 55t104 21.5q65 0 117 -29t83 -77t47 -104.5t16 -116.5q0 -59 -15.5 -114.5t-46 -103t-81 -76t-114.5 -28.5zM303 -8l771 1436h168l-770 -1436h-169zM367 921q56 0 87 57 +t31 133q0 78 -31.5 134t-89.5 56q-59 0 -90.5 -56t-31.5 -134t32 -134t93 -56zM1197 -3q-59 0 -106 21.5t-76 55t-48.5 78t-27 86.5t-7.5 84t7.5 84.5t26.5 86.5t47.5 78t74.5 55.5t103 21.5q65 0 117.5 -29t83.5 -77t47 -104.5t16 -116.5q0 -81 -26.5 -152.5t-87 -121.5 +t-144.5 -50zM1810 -3q-59 0 -106 21.5t-76 55t-48.5 78t-27 86.5t-7.5 84t7.5 84.5t26.5 87t47.5 78t74.5 55t103 21.5q66 0 118 -29t83 -77t47 -104.5t16 -116.5q0 -59 -15.5 -115.5t-46 -103.5t-81.5 -76t-115 -29zM2416 -3q-59 0 -106 21.5t-76 55t-48.5 78t-27 86.5 +t-7.5 84t7.5 84.5t26.5 86.5t47.5 78t74.5 55.5t103 21.5q66 0 118 -29t83 -77t47 -104.5t16 -116.5q0 -59 -15.5 -115.5t-46 -103.5t-81.5 -76t-115 -29zM1195 130q56 0 87 58t31 135q0 78 -31.5 134.5t-90.5 56.5q-58 0 -89.5 -57t-31.5 -135q0 -79 31.5 -135.5 +t93.5 -56.5zM1807 130q56 0 87.5 58t31.5 135q0 78 -31.5 134.5t-90.5 56.5t-90 -56.5t-31 -135.5t31.5 -135.5t92.5 -56.5zM2413 130q56 0 87.5 58t31.5 135q0 78 -31.5 134.5t-90.5 56.5t-90 -56.5t-31 -135.5t31.5 -135.5t92.5 -56.5z" /> + <glyph glyph-name="guilsinglleft" unicode="‹" horiz-adv-x="595" +d="M438 171l-396 340l396 340v-185l-187 -155l187 -155v-185z" /> + <glyph glyph-name="guilsinglright" unicode="›" horiz-adv-x="597" +d="M155 171v185l187 155l-187 155v185l397 -340z" /> + <glyph glyph-name="fraction" unicode="⁄" horiz-adv-x="802" +d="M-82 0l772 1413h194l-772 -1413h-194z" /> + <glyph glyph-name="Euro" unicode="€" horiz-adv-x="1272" +d="M782 -20q-104 0 -190.5 36.5t-148 102t-103.5 152.5t-64 193h-154l66 152h67q-2 31 -2 91q0 58 4 102h-135l66 153h90q48 216 175 345t327 129q238 0 382 -198l-130 -105q-84 125 -253 125q-125 0 -208.5 -80.5t-122.5 -215.5h528l-65 -153h-489q-4 -60 -4 -90 +q0 -38 4 -100h554l-65 -153h-463q39 -143 122.5 -226t211.5 -83q162 0 246 128l121 -125q-140 -180 -367 -180z" /> + <glyph glyph-name="uni20B1" unicode="₱" horiz-adv-x="1348" +d="M1250 1065v-100h-125q-16 -167 -143 -259t-329 -92h-216v-614h-202v965h-92v100h92v348h418q197 0 324.5 -92.5t146.5 -255.5h126zM437 1227v-162h483q-17 78 -84.5 120t-182.5 42h-216zM653 800q242 0 269 165h-485v-165h216z" /> + <glyph glyph-name="uni20B3" unicode="₳" horiz-adv-x="1323" +d="M1166 307l118 -307h-219l-108 307h-587l-109 -307h-222l119 307h-101v133h152l82 210h-234v133h285l244 630h154l243 -630h282v-133h-231l81 -210h150v-133h-99zM662 1167l-134 -384h270zM482 650l-74 -210h511l-74 210h-363z" /> + <glyph glyph-name="uni20B4" unicode="₴" horiz-adv-x="1251" +d="M927 432l197 -53q-20 -127 -98 -218.5t-185 -134t-230 -42.5q-200 0 -332 114t-132 304q0 42 8 80t20 68t33.5 58.5t41 49t51 42t55 35.5t61.5 32t61.5 27.5t63.5 26t60 25.5h-354v118h540q39 47 39 111q0 80 -59.5 130t-143.5 50q-79 0 -145.5 -40.5t-106.5 -116.5 +l-162 103q67 117 173 175t237 58q173 0 291.5 -102t118.5 -271q0 -49 -12 -91.5t-29 -73t-48.5 -58.5t-58.5 -45.5t-70.5 -37t-73 -30.5t-78 -28t-74.5 -27h408v-117h-597q-47 -56 -47 -141q0 -120 68.5 -181t190.5 -61q126 0 215 67t103 195z" /> + <glyph glyph-name="uni20B8" unicode="₸" horiz-adv-x="1401" +d="M138 1236v176h1126v-176h-1126zM599 0v928h-461v175h1126v-175h-462v-928h-203z" /> + <glyph glyph-name="uni20BD" unicode="₽" horiz-adv-x="1342" +d="M328 0v313h-177v163h177v148h-177v176h177v613h418q214 0 343.5 -107.5t129.5 -295.5q0 -187 -128.5 -286.5t-344.5 -99.5h-217v-148h360v-163h-360v-313h-201zM529 800h217q274 0 274 210q0 104 -70 160.5t-204 56.5h-217v-427z" /> + <glyph glyph-name="uni2116" unicode="№" horiz-adv-x="2343" +d="M1547 584q0 -154 -85 -272t-225 -154v-158h-243l-129 244q-112 99 -139 261l-330 622v-1127h-198v1413h240l330 -618q41 82 111 138t160 76v404h198v-407q140 -35 225 -152t85 -270zM888 584v-14l142 -266l9 -3v562q-75 -31 -113 -107t-38 -172zM1237 305 +q70 34 106 109.5t36 169.5q0 93 -36 167.5t-106 107.5v-554zM1442 154h760v-154h-760v154z" /> + <glyph glyph-name="trademark" unicode="™" horiz-adv-x="1347" +d="M288 877v434h-145v102h405v-102h-146v-434h-114zM621 877v536h120l126 -335l127 335h116v-536h-114v329l-87 -248h-83l-90 252v-333h-115z" /> + <glyph glyph-name="uni2126" unicode="Ω" horiz-adv-x="1676" +d="M163 0v165h311q-140 93 -223.5 242.5t-83.5 310.5q0 131 47.5 258t128.5 213q94 100 227 159t267 59q133 0 267 -59.5t228 -159.5q80 -85 127.5 -213t47.5 -259q0 -165 -77.5 -315t-209.5 -239h290v-162h-542v160q166 39 265 193.5t99 376.5q0 96 -32 188t-86 151 +q-71 78 -173.5 124.5t-203.5 46.5t-202 -46.5t-173 -124.5q-54 -60 -86.5 -151t-32.5 -188q0 -213 98.5 -367.5t264.5 -202.5v-160h-543z" /> + <glyph glyph-name="arrowleft" unicode="←" horiz-adv-x="2206" +d="M1025 106l-950 533l950 525l87 -154l-607 -298h1600v-154h-1588l595 -299z" /> + <glyph glyph-name="arrowright" unicode="→" horiz-adv-x="2206" +d="M1182 106l-88 153l595 299h-1587v154h1598l-606 298l88 154l949 -525z" /> + <glyph glyph-name="partialdiff" unicode="∂" horiz-adv-x="1295" +d="M561 -11q-201 0 -319 124.5t-118 325.5q0 163 74 296t198.5 207t271.5 74q166 0 279 -109q-5 182 -85.5 276t-212.5 94q-175 0 -246 -161l-159 45q52 128 161 198t259 70q124 0 217 -49t149.5 -140.5t84.5 -213.5t28 -276q0 -158 -37 -295t-108 -241.5t-183.5 -164.5 +t-253.5 -60zM574 158q153 0 259 117.5t106 293.5q0 129 -66 205.5t-194 76.5q-69 0 -129 -24t-103 -65t-74 -94t-46 -111.5t-15 -117.5q0 -130 73.5 -205.5t188.5 -75.5z" /> + <glyph glyph-name="uni2206" unicode="∆" horiz-adv-x="1297" +d="M76 0l572 1458l573 -1458h-1145zM321 167h654l-327 860z" /> + <glyph glyph-name="product" unicode="∏" horiz-adv-x="1339" +d="M252 0v1246h-82v167h999v-167h-82v-1246h-167v1246h-501v-1246h-167z" /> + <glyph glyph-name="summation" unicode="∑" horiz-adv-x="1269" +d="M103 0v84l574 623l-574 622v84h1043v-167h-742l512 -539l-512 -540h742v-167h-1043z" /> + <glyph glyph-name="minus" unicode="−" horiz-adv-x="1349" +d="M232 555v147h886v-147h-886z" /> + <glyph glyph-name="radical" unicode="√" horiz-adv-x="1199" +d="M501 -206l-267 766h-154v167h273l158 -499l453 1193l157 -58z" /> + <glyph glyph-name="infinity" unicode="∞" horiz-adv-x="1890" +d="M540 354q-177 0 -278 104.5t-101 276.5t101 276.5t278 104.5q109 0 215.5 -59t189.5 -167q82 108 189 167t217 59q176 0 277 -105t101 -276t-101 -276t-277 -105q-110 0 -217 59.5t-189 167.5q-83 -109 -189.5 -168t-215.5 -59zM570 513q75 0 154 59.5t133 162.5 +q-55 102 -134 162t-153 60q-105 0 -167.5 -59t-62.5 -163t62.5 -163t167.5 -59zM1320 513q105 0 167 59t62 163t-62 163t-167 59q-75 0 -154 -59.5t-133 -162.5q55 -102 134 -162t153 -60z" /> + <glyph glyph-name="integral" unicode="∫" horiz-adv-x="949" +d="M70 -457v168q175 0 250.5 68t75.5 229v1140q0 130 81.5 215.5t200.5 85.5q115 0 212 -82l-109 -129q-47 43 -103 43q-48 0 -81.5 -34.5t-33.5 -101.5v-1139q0 -224 -132 -343.5t-361 -119.5z" /> + <glyph glyph-name="approxequal" unicode="≈" horiz-adv-x="1168" +d="M740 734q-48 0 -91 14.5t-73.5 35t-58 40.5t-56 34.5t-55.5 14.5q-45 0 -61.5 -28.5t-15.5 -83.5h-133q0 116 54 180.5t154 64.5q57 0 104 -14t78 -34t56.5 -40t51.5 -34t52 -14q49 0 67.5 31.5t18.5 99.5h140q0 -130 -59 -198.5t-173 -68.5zM741 388q-59 0 -111.5 22 +t-83.5 48t-69 48t-71 22q-45 0 -61.5 -29t-15.5 -84h-133q0 116 54 180.5t154 64.5q57 0 104 -14t78 -34t56.5 -39.5t51.5 -33.5t52 -14q49 0 67.5 31t18.5 98h140q0 -129 -59 -197.5t-172 -68.5z" /> + <glyph glyph-name="notequal" unicode="≠" horiz-adv-x="1171" +d="M115 0l229 418h-155v162h241l99 184h-340v162h427l265 487h181l-265 -487h176v-162h-263l-99 -184h362v-162h-449l-228 -418h-181z" /> + <glyph glyph-name="lessequal" unicode="≤" horiz-adv-x="1319" +d="M1084 135l-939 525l939 523l84 -146l-704 -377l704 -379zM94 -147v147h1087v-147h-1087z" /> + <glyph glyph-name="greaterequal" unicode="≥" horiz-adv-x="1317" +d="M233 135l-84 146l704 379l-704 377l84 146l939 -523zM136 -147v147h1087v-147h-1087z" /> + <glyph glyph-name="lozenge" unicode="◊" horiz-adv-x="1113" +d="M466 0l-376 717l376 717h182l375 -717l-375 -717h-182zM557 186l266 531l-266 530l-267 -530z" /> + <glyph glyph-name="uniF8FF" unicode="" horiz-adv-x="1756" +d="M878 -61q-158 0 -301 61t-247 165t-165 247t-61 301t61 301t165 247t247 165t301 61t301 -61t247 -165t165 -247t61 -301t-61 -301t-165 -247t-247 -165t-301 -61zM878 10q143 0 273 55.5t224 149.5t149.5 224.5t55.5 273.5t-55.5 273t-149.5 224t-224 149.5t-273 55.5 +t-273.5 -55.5t-224.5 -149.5t-149.5 -224t-55.5 -273q0 -191 94 -353t256 -256t353 -94zM474 410q-14 0 -24 9.5t-10 24.5v537q0 15 10 26t24 11q16 0 26.5 -11t10.5 -26v-537q0 -15 -10.5 -24.5t-26.5 -9.5zM878 410q-16 0 -25.5 9.5t-9.5 24.5v537q0 15 10 26t25 11 +t25 -11t10 -26v-537q0 -15 -10 -24.5t-25 -9.5zM1279 410q-15 0 -22 10l-271 268q-8 11 -8 25q0 16 8 24l272 269q8 12 21 12q14 0 25.5 -11.5t11.5 -25.5t-10 -25l-244 -243l244 -244q10 -10 10 -25q0 -13 -11.5 -23.5t-25.5 -10.5zM610 678q-16 0 -25.5 9.5t-9.5 25.5 +q0 15 9.5 25t25.5 10h133q15 0 26 -10t11 -25t-11 -25t-26 -10h-133z" /> + <glyph glyph-name="c.001" horiz-adv-x="988" +d="M533 -20q-111 0 -200 43t-144 116t-84 165t-29 194t28.5 194t83.5 166t143.5 118t199.5 44q139 0 246 -75t163 -204l-183 -75q-22 83 -82.5 133t-143.5 50q-68 0 -119.5 -31t-81 -83t-43.5 -111.5t-14 -125.5t14 -125.5t43 -111t80.5 -81.5t120.5 -30q82 0 143 49t83 130 +l172 -69q-47 -132 -151 -206t-245 -74z" /> + <glyph glyph-name="g.ss01" horiz-adv-x="1135" +d="M977 0q0 -204 -116.5 -320t-327.5 -116q-279 0 -418 206l149 109q40 -68 109.5 -107t160.5 -39q120 0 184 69.5t64 197.5v131q-98 -131 -291 -131q-101 0 -182.5 40.5t-133 110.5t-79 161.5t-27.5 196.5q0 141 47 255.5t143 185t226 70.5q91 0 169 -36t128 -104v119h195 +v-999zM534 176q132 0 198 93.5t66 240.5q0 69 -15.5 128.5t-46.5 106.5t-82.5 74t-119.5 27q-132 0 -199.5 -95.5t-67.5 -240.5q0 -146 67.5 -240t199.5 -94z" /> + <glyph glyph-name="g.ss04" horiz-adv-x="1066" +d="M659 155q67 0 125 -15.5t107.5 -47.5t78.5 -89t29 -134q0 -151 -113 -239t-328 -88q-104 0 -192.5 20.5t-156.5 60t-106.5 103t-38.5 144.5q0 48 13 81l147 77q-58 32 -95.5 85t-38.5 129q-2 129 112 204q-67 90 -67 210q0 159 113.5 260t284.5 101q142 0 244 -72 +l150 131l99 -124l-145 -121q47 -82 47 -182q0 -158 -113.5 -257t-281.5 -99q-123 0 -220 55q-42 -31 -42 -89q1 -55 43.5 -79.5t127.5 -24.5h217zM536 864q-95 0 -151 -59.5t-56 -151.5q0 -91 55.5 -148t151.5 -57q94 0 149 57t55 148t-55.5 151t-148.5 60zM556 -301 +q256 0 256 156q0 73 -56 104.5t-174 31.5h-233l-104 -100q0 -1 3 -29q12 -83 85.5 -123t222.5 -40z" /> + <glyph glyph-name="gbreve.ss01" horiz-adv-x="1135" +d="M529 1143q-150 0 -230.5 70t-80.5 200h153q0 -66 45 -104.5t113 -38.5q69 0 113 38.5t44 104.5h153q0 -132 -81.5 -201t-228.5 -69zM977 0q0 -204 -116.5 -320t-327.5 -116q-279 0 -418 206l149 109q40 -68 109.5 -107t160.5 -39q120 0 184 69.5t64 197.5v131 +q-98 -131 -291 -131q-101 0 -182.5 40.5t-133 110.5t-79 161.5t-27.5 196.5q0 141 47 255.5t143 185t226 70.5q91 0 169 -36t128 -104v119h195v-999zM534 176q132 0 198 93.5t66 240.5q0 69 -15.5 128.5t-46.5 106.5t-82.5 74t-119.5 27q-132 0 -199.5 -95.5t-67.5 -240.5 +q0 -146 67.5 -240t199.5 -94z" /> + <glyph glyph-name="gbreve.ss04" horiz-adv-x="1066" +d="M532 1143q-150 0 -230.5 70t-80.5 200h153q0 -66 45 -104.5t113 -38.5q69 0 113 38.5t44 104.5h153q0 -132 -81.5 -201t-228.5 -69zM659 155q67 0 125 -15.5t107.5 -47.5t78.5 -89t29 -134q0 -151 -113 -239t-328 -88q-104 0 -192.5 20.5t-156.5 60t-106.5 103 +t-38.5 144.5q0 48 13 81l147 77q-58 32 -95.5 85t-38.5 129q-2 129 112 204q-67 90 -67 210q0 159 113.5 260t284.5 101q142 0 244 -72l150 131l99 -124l-145 -121q47 -82 47 -182q0 -158 -113.5 -257t-281.5 -99q-123 0 -220 55q-42 -31 -42 -89q1 -55 43.5 -79.5 +t127.5 -24.5h217zM536 864q-95 0 -151 -59.5t-56 -151.5q0 -91 55.5 -148t151.5 -57q94 0 149 57t55 148t-55.5 151t-148.5 60zM556 -301q256 0 256 156q0 73 -56 104.5t-174 31.5h-233l-104 -100q0 -1 3 -29q12 -83 85.5 -123t222.5 -40z" /> + <glyph glyph-name="gcommaaccent.ss01" horiz-adv-x="1135" +d="M762 1403l-129 -307h-231l237 307h123zM977 0q0 -204 -116.5 -320t-327.5 -116q-279 0 -418 206l149 109q40 -68 109.5 -107t160.5 -39q120 0 184 69.5t64 197.5v131q-98 -131 -291 -131q-101 0 -182.5 40.5t-133 110.5t-79 161.5t-27.5 196.5q0 141 47 255.5t143 185 +t226 70.5q91 0 169 -36t128 -104v119h195v-999zM534 176q132 0 198 93.5t66 240.5q0 69 -15.5 128.5t-46.5 106.5t-82.5 74t-119.5 27q-132 0 -199.5 -95.5t-67.5 -240.5q0 -146 67.5 -240t199.5 -94z" /> + <glyph glyph-name="gcommaaccent.ss04" horiz-adv-x="1066" +d="M767 1428l-129 -307h-231l237 307h123zM659 155q67 0 125 -15.5t107.5 -47.5t78.5 -89t29 -134q0 -151 -113 -239t-328 -88q-104 0 -192.5 20.5t-156.5 60t-106.5 103t-38.5 144.5q0 48 13 81l147 77q-58 32 -95.5 85t-38.5 129q-2 129 112 204q-67 90 -67 210 +q0 159 113.5 260t284.5 101q142 0 244 -72l150 131l99 -124l-145 -121q47 -82 47 -182q0 -158 -113.5 -257t-281.5 -99q-123 0 -220 55q-42 -31 -42 -89q1 -55 43.5 -79.5t127.5 -24.5h217zM536 864q-95 0 -151 -59.5t-56 -151.5q0 -91 55.5 -148t151.5 -57q94 0 149 57 +t55 148t-55.5 151t-148.5 60zM556 -301q256 0 256 156q0 73 -56 104.5t-174 31.5h-233l-104 -100q0 -1 3 -29q12 -83 85.5 -123t222.5 -40z" /> + <glyph glyph-name="gdotaccent.ss01" horiz-adv-x="1135" +d="M421 1205v208h212v-208h-212zM977 0q0 -204 -116.5 -320t-327.5 -116q-279 0 -418 206l149 109q40 -68 109.5 -107t160.5 -39q120 0 184 69.5t64 197.5v131q-98 -131 -291 -131q-101 0 -182.5 40.5t-133 110.5t-79 161.5t-27.5 196.5q0 141 47 255.5t143 185t226 70.5 +q91 0 169 -36t128 -104v119h195v-999zM534 176q132 0 198 93.5t66 240.5q0 69 -15.5 128.5t-46.5 106.5t-82.5 74t-119.5 27q-132 0 -199.5 -95.5t-67.5 -240.5q0 -146 67.5 -240t199.5 -94z" /> + <glyph glyph-name="gdotaccent.ss04" horiz-adv-x="1066" +d="M636 1413v-208h-212v208h212zM659 155q67 0 125 -15.5t107.5 -47.5t78.5 -89t29 -134q0 -151 -113 -239t-328 -88q-104 0 -192.5 20.5t-156.5 60t-106.5 103t-38.5 144.5q0 48 13 81l147 77q-58 32 -95.5 85t-38.5 129q-2 129 112 204q-67 90 -67 210q0 159 113.5 260 +t284.5 101q142 0 244 -72l150 131l99 -124l-145 -121q47 -82 47 -182q0 -158 -113.5 -257t-281.5 -99q-123 0 -220 55q-42 -31 -42 -89q1 -55 43.5 -79.5t127.5 -24.5h217zM536 864q-95 0 -151 -59.5t-56 -151.5q0 -91 55.5 -148t151.5 -57q94 0 149 57t55 148t-55.5 151 +t-148.5 60zM556 -301q256 0 256 156q0 73 -56 104.5t-174 31.5h-233l-104 -100q0 -1 3 -29q12 -83 85.5 -123t222.5 -40z" /> + <glyph glyph-name="i.loclTRK" horiz-adv-x="508" +d="M146 1205v208h212v-208h-212zM158 0v999h193v-999h-193z" /> + <glyph glyph-name="f_t" horiz-adv-x="1277" +d="M1037 -20q-136 0 -206.5 77t-70.5 213v568h-354v-838h-197v838h-182v159h183v154q0 134 84.5 208.5t208.5 74.5q89 0 172 -40l-56 -157q-54 28 -99 28q-51 0 -82.5 -32.5t-31.5 -97.5v-136h357v236l186 156v-392h258v-161h-258v-548q0 -73 35 -108.5t91 -35.5t118 31 +v-172q-60 -25 -156 -25z" /> + <glyph glyph-name="uni0414.loclRUS" horiz-adv-x="1458" +d="M42 -307v479h157q82 169 118.5 339.5t36.5 394.5v506h877v-1240h141v-479h-202v307h-925v-306zM410 172h618v1059h-472v-324q0 -231 -33 -399.5t-113 -335.5z" /> + <glyph glyph-name="uni0414.loclSRB" horiz-adv-x="1458" +d="M42 -307v481h157q83 170 119 339t36 393v506h877v-1238h141v-481h-202v307h-925v-306zM410 174h618v1057h-472v-324q0 -230 -33 -398t-113 -335z" /> + <glyph glyph-name="uni041B.loclRUS" horiz-adv-x="1427" +d="M224 -20q-98 0 -185 51l70 181q44 -30 81 -30q39 0 67.5 31t45.5 103.5t27.5 138t14.5 189t5 198t1 220.5v16v334h879v-1412h-202v1231h-474v-208v-4q0 -125 -0.5 -189.5t-4.5 -179.5t-12.5 -179.5t-23.5 -154.5t-39.5 -140t-58.5 -101t-82.5 -73t-108.5 -22z" /> + <glyph glyph-name="uni041B.loclSRB" horiz-adv-x="1427" +d="M224 -20q-98 0 -185 51l70 181q44 -30 81 -30q39 0 67.5 31t45.5 103.5t27.5 138t14.5 189t5 198t1 220.5v16v334h879v-1412h-202v1231h-474v-208v-4q0 -125 -0.5 -189.5t-4.5 -179.5t-12.5 -179.5t-23.5 -154.5t-39.5 -140t-58.5 -101t-82.5 -73t-108.5 -22z" /> + <glyph glyph-name="uni042E.loclRUS" horiz-adv-x="1945" +d="M1183 -20q-151 0 -271.5 49.5t-199 137t-124.5 201t-58 248.5h-129v-616h-203v1412h203v-615h129q12 134 58 247.5t124.5 201.5t199.5 138t271 50q132 0 241 -38t185 -105.5t129 -159.5t77.5 -198.5t24.5 -225.5t-24.5 -225.5t-77.5 -198.5t-129 -159.5t-185 -105.5 +t-241 -38zM1183 163q94 0 170 29t127 79.5t85.5 120t50 148.5t15.5 167t-15.5 166.5t-50 148t-85.5 120t-127 79.5t-170 29t-170 -29t-127 -79.5t-85.5 -120t-50 -148t-15.5 -166.5t15.5 -167t50 -148.5t85.5 -120t127 -79.5t170 -29z" /> + <glyph glyph-name="uni0431.loclSRB" horiz-adv-x="1138" +d="M558 -16q-144 0 -258 67t-174.5 180.5t-60.5 250.5q0 69 16.5 135t52.5 131t101 120t153 90q-52 29 -85.5 51.5t-64.5 53t-45.5 66t-14.5 78.5q0 101 77.5 164t212.5 63q174 0 357 -93l-59 -182q-59 47 -134.5 78.5t-144.5 31.5q-101 0 -101 -74q0 -51 53 -91t170 -81 +q222 -68 335.5 -192t113.5 -327q0 -229 -141 -374.5t-359 -145.5zM560 149q64 0 115.5 24t82.5 60.5t51.5 84t28 91t7.5 85.5q0 69 -24 127.5t-58.5 94.5t-80.5 64t-82 41t-72 21q-125 -32 -187.5 -127t-62.5 -227q0 -148 74.5 -243.5t207.5 -95.5z" /> + <glyph glyph-name="uni0432.loclRUS" horiz-adv-x="1068" +d="M153 0v999h431q85 0 146 -11.5t111 -40.5t75.5 -83t25.5 -133q0 -72 -39 -130.5t-120 -76.5q204 -27 204 -229q0 -87 -25 -145.5t-78.5 -91t-124.5 -45.5t-176 -13h-430zM343 599h246q74 0 117 32.5t43 81.5q0 58 -36.5 85t-124.5 27h-245v-226zM343 177h242 +q114 0 158.5 28.5t44.5 102.5q0 67 -52 94t-151 27h-242v-252z" /> + <glyph glyph-name="uni0432.loclSRB" horiz-adv-x="1068" +d="M153 0v999h431q85 0 146 -11.5t111 -40.5t75.5 -83t25.5 -133q0 -72 -39 -130.5t-120 -76.5q204 -27 204 -229q0 -87 -25 -145.5t-78.5 -91t-124.5 -45.5t-176 -13h-430zM343 599h246q74 0 117 32.5t43 81.5q0 58 -36.5 85t-124.5 27h-245v-226zM343 177h242 +q114 0 158.5 28.5t44.5 102.5q0 67 -52 94t-151 27h-242v-252z" /> + <glyph glyph-name="uni0433.loclRUS" horiz-adv-x="778" +d="M153 0v999h613v-148h-417v-851h-196z" /> + <glyph glyph-name="uni0433.loclSRB" horiz-adv-x="778" +d="M153 0v999h613v-148h-417v-851h-196z" /> + <glyph glyph-name="uni0434.loclRUS" horiz-adv-x="1163" +d="M13 -307v456h126q121 136 121 467v383h715v-850h120v-456h-196v307h-690v-307h-196zM343 149h436v702h-324v-234q0 -339 -112 -468z" /> + <glyph glyph-name="uni0434.loclSRB" horiz-adv-x="1163" +d="M13 -307v456h126q121 136 121 467v383h715v-850h120v-456h-196v307h-690v-307h-196zM343 149h436v702h-324v-234q0 -339 -112 -468z" /> + <glyph glyph-name="uni0436.loclRUS" horiz-adv-x="1479" +d="M29 0l170 444q24 61 67 110.5t94 49.5l-273 395h229l228 -364h98v364h194v-364h99l227 364h230l-273 -395q50 0 93 -49.5t68 -110.5l169 -444h-228l-121 356q-23 64 -57 96t-91 32h-116v-484h-194v484h-115q-57 0 -91.5 -32.5t-56.5 -95.5l-122 -356h-228z" /> + <glyph glyph-name="uni0436.loclSRB" horiz-adv-x="1479" +d="M29 0l170 444q24 61 67 110.5t94 49.5l-273 395h229l228 -364h98v364h194v-364h99l227 364h230l-273 -395q50 0 93 -49.5t68 -110.5l169 -444h-228l-121 356q-23 64 -57 96t-91 32h-116v-484h-194v484h-115q-57 0 -91.5 -32.5t-56.5 -95.5l-122 -356h-228z" /> + <glyph glyph-name="uni0437.loclRUS" horiz-adv-x="982" +d="M452 -20q-132 0 -237.5 54.5t-175.5 157.5l159 119q32 -75 99 -117t148 -42q130 0 190.5 34t60.5 105q0 76 -46.5 103t-161.5 27h-117v170h134q84 8 119.5 38t35.5 93q0 58 -46.5 86.5t-150.5 28.5q-71 0 -138 -36.5t-109 -108.5l-173 92q81 126 185 177t234 51 +q391 0 391 -279q0 -174 -174 -217q101 -15 158.5 -75.5t57.5 -157.5q0 -303 -443 -303z" /> + <glyph glyph-name="uni0437.loclSRB" horiz-adv-x="982" +d="M452 -20q-132 0 -237.5 54.5t-175.5 157.5l159 119q32 -75 99 -117t148 -42q130 0 190.5 34t60.5 105q0 76 -46.5 103t-161.5 27h-117v170h134q84 8 119.5 38t35.5 93q0 58 -46.5 86.5t-150.5 28.5q-71 0 -138 -36.5t-109 -108.5l-173 92q81 126 185 177t234 51 +q391 0 391 -279q0 -174 -174 -217q101 -15 158.5 -75.5t57.5 -157.5q0 -303 -443 -303z" /> + <glyph glyph-name="uni0438.loclRUS" horiz-adv-x="1168" +d="M158 0v999h195v-605q0 -40 -10 -120h10l443 725h215v-999h-195v605q0 53 10 121h-10l-442 -726h-216z" /> + <glyph glyph-name="uni0438.loclSRB" horiz-adv-x="1168" +d="M158 0v999h195v-605q0 -40 -10 -120h10l443 725h215v-999h-195v605q0 53 10 121h-10l-442 -726h-216z" /> + <glyph glyph-name="uni0439.loclRUS" horiz-adv-x="1168" +d="M581 1143q-145 0 -226.5 70t-81.5 200h145q0 -67 47 -107t116 -40q70 0 116 40t46 107h146q0 -131 -82 -200.5t-226 -69.5zM158 0v999h195v-605q0 -40 -10 -120h10l443 725h215v-999h-195v605q0 53 10 121h-10l-442 -726h-216z" /> + <glyph glyph-name="uni0439.loclSRB" horiz-adv-x="1168" +d="M581 1143q-145 0 -226.5 70t-81.5 200h145q0 -67 47 -107t116 -40q70 0 116 40t46 107h146q0 -131 -82 -200.5t-226 -69.5zM158 0v999h195v-605q0 -40 -10 -120h10l443 725h215v-999h-195v605q0 53 10 121h-10l-442 -726h-216z" /> + <glyph glyph-name="uni045D.loclRUS" horiz-adv-x="1168" +d="M515 1127l-273 297h213l219 -297h-159zM158 0v999h195v-605q0 -40 -10 -120h10l443 725h215v-999h-195v605q0 53 10 121h-10l-442 -726h-216z" /> + <glyph glyph-name="uni045D.loclSRB" horiz-adv-x="1168" +d="M515 1127l-273 297h213l219 -297h-159zM158 0v999h195v-605q0 -40 -10 -120h10l443 725h215v-999h-195v605q0 53 10 121h-10l-442 -726h-216z" /> + <glyph glyph-name="uni043A.loclRUS" horiz-adv-x="998" +d="M158 0v999h194v-364h98l228 364h229l-273 -395q50 0 93 -49.5t68 -110.5l170 -444h-228l-122 356q-22 63 -56.5 95.5t-91.5 32.5h-115v-484h-194z" /> + <glyph glyph-name="uni043A.loclSRB" horiz-adv-x="998" +d="M158 0v999h194v-364h98l228 364h229l-273 -395q50 0 93 -49.5t68 -110.5l170 -444h-228l-122 356q-22 63 -56.5 95.5t-91.5 32.5h-115v-484h-194z" /> + <glyph glyph-name="uni043B.loclRUS" horiz-adv-x="1102" +d="M195 -21q-97 0 -195 49l56 131q58 -25 76 -25q60 0 84.5 108.5t24.5 373.5v383h704v-999h-196v851h-314v-304q0 -134 -11.5 -234t-31.5 -163.5t-51 -102t-66 -53.5t-80 -15z" /> + <glyph glyph-name="uni043B.loclSRB" horiz-adv-x="1102" +d="M195 -21q-97 0 -195 49l56 131q58 -25 76 -25q60 0 84.5 108.5t24.5 373.5v383h704v-999h-196v851h-314v-304q0 -134 -11.5 -234t-31.5 -163.5t-51 -102t-66 -53.5t-80 -15z" /> + <glyph glyph-name="uni043F.loclRUS" horiz-adv-x="1168" +d="M158 0v999h853v-999h-195v851h-463v-851h-195z" /> + <glyph glyph-name="uni043F.loclSRB" horiz-adv-x="1168" +d="M158 0v999h853v-999h-195v851h-463v-851h-195z" /> + <glyph glyph-name="uni0442.loclRUS" horiz-adv-x="878" +d="M341 0v851h-329v148h854v-148h-330v-851h-195z" /> + <glyph glyph-name="uni0442.loclSRB" horiz-adv-x="878" +d="M341 0v851h-329v148h854v-148h-330v-851h-195z" /> + <glyph glyph-name="uni0446.loclRUS" horiz-adv-x="1212" +d="M978 -307v307h-820v999h195v-850h463v850h195v-850h162v-456h-195z" /> + <glyph glyph-name="uni0446.loclSRB" horiz-adv-x="1212" +d="M978 -307v307h-820v999h195v-850h463v850h195v-850h162v-456h-195z" /> + <glyph glyph-name="uni0448.loclRUS" horiz-adv-x="1614" +d="M158 0v999h195v-850h357v850h194v-850h358v850h195v-999h-1299z" /> + <glyph glyph-name="uni0448.loclSRB" horiz-adv-x="1614" +d="M158 0v999h195v-850h357v850h194v-850h358v850h195v-999h-1299z" /> + <glyph glyph-name="uni0449.loclRUS" horiz-adv-x="1658" +d="M1424 -307v307h-1266v999h195v-850h357v850h194v-850h358v850h195v-850h161v-456h-194z" /> + <glyph glyph-name="uni0449.loclSRB" horiz-adv-x="1658" +d="M1424 -307v307h-1266v999h195v-850h357v850h194v-850h358v850h195v-850h161v-456h-194z" /> + <glyph glyph-name="uni044C.loclRUS" horiz-adv-x="1023" +d="M158 0v999h195v-315h169q210 0 315 -76.5t105 -264.5q0 -166 -109.5 -254.5t-309.5 -88.5h-365zM353 164h169q95 0 150 40t55 139q0 98 -55 137.5t-150 39.5h-169v-356z" /> + <glyph glyph-name="uni044A.loclRUS" horiz-adv-x="1163" +d="M298 0v851h-286v148h481v-315h168q211 0 316.5 -76.5t105.5 -264.5q0 -166 -110 -254.5t-311 -88.5h-364zM493 164h168q95 0 150 39.5t55 139.5q0 98 -55 137.5t-150 39.5h-168v-356z" /> + <glyph glyph-name="uni044B.loclRUS" horiz-adv-x="1417" +d="M158 0v999h195v-315h169q210 0 315 -76.5t105 -264.5q0 -166 -109.5 -254.5t-309.5 -88.5h-365zM1075 0v999h184v-999h-184zM353 164h169q95 0 150 40t55 139q0 98 -55 137.5t-150 39.5h-169v-356z" /> + <glyph glyph-name="uni044E.loclRUS" horiz-adv-x="1517" +d="M950 -20q-140 0 -252.5 67t-176 180t-67.5 251h-101v-478h-195v999h195v-373h116q39 169 169 277.5t312 108.5q144 0 258 -70t176 -187.5t62 -258.5q0 -142 -62 -259.5t-176 -187t-258 -69.5zM950 149q74 0 130.5 28t89 77t48.5 109.5t16 132.5q0 150 -70 248.5 +t-214 98.5q-74 0 -130 -28t-89 -77t-49 -110t-16 -132q0 -97 27.5 -172.5t93 -125t163.5 -49.5z" /> + <glyph glyph-name="strokecy" horiz-adv-x="1078" +d="M169 295v169h740v-169h-740z" /> + <hkern u1=" " u2="&" k="82" /> + <hkern u1="!" u2="ß" k="14" /> + <hkern u1=""" u2="ï" k="-53" /> + <hkern u1=""" u2="î" k="-53" /> + <hkern u1=""" u2="ì" k="-53" /> + <hkern u1="#" u2="9" k="18" /> + <hkern u1="#" u2="8" k="18" /> + <hkern u1="#" u2="7" k="8" /> + <hkern u1="#" u2="5" k="27" /> + <hkern u1="#" u2="4" k="35" /> + <hkern u1="#" u2="3" k="27" /> + <hkern u1="#" u2="2" k="8" /> + <hkern u1="#" u2="1" k="8" /> + <hkern u1="$" u2="9" k="8" /> + <hkern u1="$" u2="8" k="8" /> + <hkern u1="$" u2="7" k="8" /> + <hkern u1="$" u2="5" k="8" /> + <hkern u1="$" u2="4" k="8" /> + <hkern u1="$" u2="3" k="8" /> + <hkern u1="%" u2="1" k="8" /> + <hkern u1="&" u2="v" k="20" /> + <hkern u1="&" u2="V" k="133" /> + <hkern u1="&" u2="5" k="8" /> + <hkern u1="&" u2="4" k="8" /> + <hkern u1="&" u2="3" k="8" /> + <hkern u1="&" u2="1" k="8" /> + <hkern u1="&" u2=" " k="82" /> + <hkern u1="'" u2="ï" k="-53" /> + <hkern u1="'" u2="î" k="-53" /> + <hkern u1="'" u2="ì" k="-53" /> + <hkern u1="(" u2="ƒ" k="-109" /> + <hkern u1="(" u2="ï" k="-20" /> + <hkern u1="(" u2="î" k="-14" /> + <hkern u1="(" u2="ì" k="-61" /> + <hkern u1="(" u2="ß" k="18" /> + <hkern u1="(" u2="x" k="6" /> + <hkern u1="(" u2="v" k="45" /> + <hkern u1="(" u2="g" k="16" /> + <hkern u1="(" u2="X" k="-27" /> + <hkern u1="(" u2="V" k="-35" /> + <hkern u1="(" u2="−" k="82" /> + <hkern u1="(" u2="7" k="-35" /> + <hkern u1="(" u2="5" k="23" /> + <hkern u1="(" u2="4" k="18" /> + <hkern u1="(" u2="2" k="-4" /> + <hkern u1="(" u2="1" k="4" /> + <hkern u1="(" u2="+" k="109" /> + <hkern u1=")" u2="Ł" k="-27" /> + <hkern u1="*" u2="ƒ" k="35" /> + <hkern u1="*" u2="Ł" k="6" /> + <hkern u1="*" u2="ï" k="-29" /> + <hkern u1="*" u2="î" k="-55" /> + <hkern u1="*" u2="ì" k="-14" /> + <hkern u1="*" u2="x" k="-6" /> + <hkern u1="*" u2="v" k="-35" /> + <hkern u1="*" u2="X" k="6" /> + <hkern u1="*" u2="V" k="-41" /> + <hkern u1="*" u2="7" k="-35" /> + <hkern u1="*" u2="4" k="61" /> + <hkern u1="+" u2="X" k="39" /> + <hkern u1="+" u2="V" k="88" /> + <hkern u1="+" u2="9" k="8" /> + <hkern u1="+" u2="7" k="8" /> + <hkern u1="+" u2="3" k="18" /> + <hkern u1="+" u2="2" k="8" /> + <hkern u1="+" u2="1" k="27" /> + <hkern u1="+" u2=")" k="109" /> + <hkern u1="," u2="j" k="-14" /> + <hkern u1="," u2="g" k="27" /> + <hkern u1="." u2="g" k="27" /> + <hkern u1="/" u2="ƒ" k="72" /> + <hkern u1="/" u2="ž" k="82" /> + <hkern u1="/" u2="š" k="94" /> + <hkern u1="/" u2="ł" k="14" /> + <hkern u1="/" u2="Ł" k="18" /> + <hkern u1="/" u2="ö" k="127" /> + <hkern u1="/" u2="ò" k="117" /> + <hkern u1="/" u2="ð" k="205" /> + <hkern u1="/" u2="ï" k="-76" /> + <hkern u1="/" u2="î" k="-61" /> + <hkern u1="/" u2="í" k="14" /> + <hkern u1="/" u2="ì" k="-143" /> + <hkern u1="/" u2="ë" k="197" /> + <hkern u1="/" u2="è" k="197" /> + <hkern u1="/" u2="å" k="205" /> + <hkern u1="/" u2="ä" k="162" /> + <hkern u1="/" u2="ã" k="176" /> + <hkern u1="/" u2="â" k="197" /> + <hkern u1="/" u2="à" k="170" /> + <hkern u1="/" u2="ß" k="43" /> + <hkern u1="/" u2="x" k="41" /> + <hkern u1="/" u2="v" k="27" /> + <hkern u1="/" u2="X" k="-20" /> + <hkern u1="/" u2="V" k="-41" /> + <hkern u1="/" u2="9" k="18" /> + <hkern u1="/" u2="8" k="27" /> + <hkern u1="/" u2="7" k="-27" /> + <hkern u1="/" u2="5" k="18" /> + <hkern u1="/" u2="4" k="70" /> + <hkern u1="/" u2="2" k="18" /> + <hkern u1="/" u2="/" k="188" /> + <hkern u1="1" u2="≥" k="-8" /> + <hkern u1="1" u2="≠" k="-18" /> + <hkern u1="1" u2="≈" k="-18" /> + <hkern u1="1" u2="∞" k="-18" /> + <hkern u1="1" u2="÷" k="8" /> + <hkern u1="1" u2="°" k="8" /> + <hkern u1="1" u2="|" k="-8" /> + <hkern u1="1" u2=">" k="-27" /> + <hkern u1="1" u2="<" k="8" /> + <hkern u1="1" u2="7" k="-4" /> + <hkern u1="1" u2="2" k="-4" /> + <hkern u1="1" u2="%" k="8" /> + <hkern u1="1" u2="#" k="18" /> + <hkern u1="2" u2="≥" k="-8" /> + <hkern u1="2" u2="≠" k="-8" /> + <hkern u1="2" u2="≈" k="-18" /> + <hkern u1="2" u2="×" k="-8" /> + <hkern u1="2" u2="±" k="-8" /> + <hkern u1="2" u2="°" k="-8" /> + <hkern u1="2" u2="_" k="-8" /> + <hkern u1="2" u2="\" k="8" /> + <hkern u1="2" u2=">" k="-27" /> + <hkern u1="2" u2="4" k="12" /> + <hkern u1="2" u2="1" k="-8" /> + <hkern u1="3" u2="≥" k="-18" /> + <hkern u1="3" u2="≈" k="-18" /> + <hkern u1="3" u2="−" k="-8" /> + <hkern u1="3" u2="‰" k="8" /> + <hkern u1="3" u2="×" k="-8" /> + <hkern u1="3" u2="±" k="-8" /> + <hkern u1="3" u2="°" k="-8" /> + <hkern u1="3" u2="¦" k="-18" /> + <hkern u1="3" u2="~" k="-8" /> + <hkern u1="3" u2="|" k="-18" /> + <hkern u1="3" u2="_" k="8" /> + <hkern u1="3" u2=">" k="-27" /> + <hkern u1="3" u2="7" k="-8" /> + <hkern u1="3" u2="1" k="4" /> + <hkern u1="3" u2="/" k="8" /> + <hkern u1="3" u2="*" k="-8" /> + <hkern u1="3" u2="%" k="8" /> + <hkern u1="3" u2="#" k="18" /> + <hkern u1="4" u2="º" k="35" /> + <hkern u1="4" u2="ª" k="35" /> + <hkern u1="4" u2="≥" k="-27" /> + <hkern u1="4" u2="≤" k="-27" /> + <hkern u1="4" u2="≠" k="-8" /> + <hkern u1="4" u2="≈" k="-27" /> + <hkern u1="4" u2="∞" k="-8" /> + <hkern u1="4" u2="™" k="61" /> + <hkern u1="4" u2="‰" k="27" /> + <hkern u1="4" u2="×" k="-8" /> + <hkern u1="4" u2="±" k="-8" /> + <hkern u1="4" u2="°" k="8" /> + <hkern u1="4" u2="¦" k="-8" /> + <hkern u1="4" u2="~" k="-18" /> + <hkern u1="4" u2=">" k="-27" /> + <hkern u1="4" u2="=" k="-18" /> + <hkern u1="4" u2="7" k="4" /> + <hkern u1="4" u2="*" k="18" /> + <hkern u1="4" u2="%" k="8" /> + <hkern u1="5" u2="≥" k="-18" /> + <hkern u1="5" u2="≤" k="-8" /> + <hkern u1="5" u2="≠" k="-8" /> + <hkern u1="5" u2="≈" k="-18" /> + <hkern u1="5" u2="−" k="-8" /> + <hkern u1="5" u2="‰" k="8" /> + <hkern u1="5" u2="°" k="-8" /> + <hkern u1="5" u2="~" k="-8" /> + <hkern u1="5" u2="_" k="8" /> + <hkern u1="5" u2="@" k="4" /> + <hkern u1="5" u2=">" k="-18" /> + <hkern u1="5" u2="=" k="-8" /> + <hkern u1="5" u2="<" k="-8" /> + <hkern u1="5" u2="7" k="-4" /> + <hkern u1="5" u2="/" k="18" /> + <hkern u1="5" u2="%" k="8" /> + <hkern u1="6" u2="≈" k="-8" /> + <hkern u1="6" u2="−" k="-8" /> + <hkern u1="6" u2="‰" k="18" /> + <hkern u1="6" u2="~" k="-8" /> + <hkern u1="6" u2="_" k="18" /> + <hkern u1="6" u2="\" k="8" /> + <hkern u1="6" u2="@" k="8" /> + <hkern u1="6" u2=">" k="-8" /> + <hkern u1="6" u2="=" k="-8" /> + <hkern u1="6" u2="7" k="-4" /> + <hkern u1="6" u2="+" k="-8" /> + <hkern u1="6" u2="#" k="18" /> + <hkern u1="7" u2="≥" k="-18" /> + <hkern u1="7" u2="≠" k="8" /> + <hkern u1="7" u2="∞" k="8" /> + <hkern u1="7" u2="−" k="27" /> + <hkern u1="7" u2="™" k="-18" /> + <hkern u1="7" u2="‰" k="-8" /> + <hkern u1="7" u2="‡" k="-43" /> + <hkern u1="7" u2="†" k="-43" /> + <hkern u1="7" u2="÷" k="18" /> + <hkern u1="7" u2="¿" k="53" /> + <hkern u1="7" u2="·" k="35" /> + <hkern u1="7" u2="±" k="8" /> + <hkern u1="7" u2="°" k="-27" /> + <hkern u1="7" u2="¦" k="-18" /> + <hkern u1="7" u2="~" k="35" /> + <hkern u1="7" u2="|" k="-18" /> + <hkern u1="7" u2="_" k="78" /> + <hkern u1="7" u2="\" k="-27" /> + <hkern u1="7" u2="@" k="4" /> + <hkern u1="7" u2="?" k="-18" /> + <hkern u1="7" u2=">" k="-27" /> + <hkern u1="7" u2="=" k="-4" /> + <hkern u1="7" u2="<" k="27" /> + <hkern u1="7" u2="9" k="-8" /> + <hkern u1="7" u2="7" k="-27" /> + <hkern u1="7" u2="5" k="12" /> + <hkern u1="7" u2="4" k="47" /> + <hkern u1="7" u2="1" k="-4" /> + <hkern u1="7" u2="/" k="53" /> + <hkern u1="7" u2="+" k="43" /> + <hkern u1="7" u2="*" k="-18" /> + <hkern u1="7" u2="#" k="35" /> + <hkern u1="8" u2="≥" k="-8" /> + <hkern u1="8" u2="≠" k="-8" /> + <hkern u1="8" u2="≈" k="-18" /> + <hkern u1="8" u2="£" k="18" /> + <hkern u1="8" u2="_" k="8" /> + <hkern u1="8" u2="\" k="35" /> + <hkern u1="8" u2=">" k="-8" /> + <hkern u1="8" u2="&" k="8" /> + <hkern u1="8" u2="%" k="4" /> + <hkern u1="8" u2="#" k="8" /> + <hkern u1=";" u2="j" k="-14" /> + <hkern u1="<" u2="Ł" k="-6" /> + <hkern u1="<" u2="v" k="-20" /> + <hkern u1="<" u2="X" k="-6" /> + <hkern u1="<" u2="V" k="-6" /> + <hkern u1="<" u2="9" k="-27" /> + <hkern u1="<" u2="8" k="-27" /> + <hkern u1="<" u2="7" k="-61" /> + <hkern u1="<" u2="5" k="-18" /> + <hkern u1="<" u2="3" k="-8" /> + <hkern u1="<" u2="2" k="-27" /> + <hkern u1="<" u2="1" k="-27" /> + <hkern u1="=" u2="v" k="-6" /> + <hkern u1="=" u2="X" k="27" /> + <hkern u1="=" u2="V" k="41" /> + <hkern u1="=" u2="7" k="8" /> + <hkern u1="=" u2="5" k="-8" /> + <hkern u1=">" u2="ł" k="-6" /> + <hkern u1=">" u2="x" k="6" /> + <hkern u1=">" u2="v" k="6" /> + <hkern u1=">" u2="X" k="76" /> + <hkern u1=">" u2="V" k="61" /> + <hkern u1=">" u2="3" k="18" /> + <hkern u1=">" u2="2" k="8" /> + <hkern u1=">" u2="1" k="8" /> + <hkern u1="?" u2="Ł" k="6" /> + <hkern u1="?" u2="v" k="-27" /> + <hkern u1="?" u2="X" k="6" /> + <hkern u1="?" u2="7" k="-27" /> + <hkern u1="?" u2="4" k="18" /> + <hkern u1="?" u2="1" k="-8" /> + <hkern u1="@" u2="ł" k="6" /> + <hkern u1="@" u2="Ł" k="-10" /> + <hkern u1="@" u2="î" k="-6" /> + <hkern u1="@" u2="ß" k="14" /> + <hkern u1="@" u2="x" k="-4" /> + <hkern u1="@" u2="v" k="-20" /> + <hkern u1="@" u2="X" k="59" /> + <hkern u1="@" u2="V" k="55" /> + <hkern u1="@" u2="7" k="-8" /> + <hkern u1="@" u2="4" k="8" /> + <hkern u1="@" u2="3" k="8" /> + <hkern u1="B" u2="™" k="27" /> + <hkern u1="B" u2="•" k="14" /> + <hkern u1="B" u2="‡" k="-4" /> + <hkern u1="B" u2="†" k="-4" /> + <hkern u1="B" u2="Ł" k="-6" /> + <hkern u1="B" u2="ï" k="-4" /> + <hkern u1="B" u2="î" k="-4" /> + <hkern u1="B" u2="ß" k="31" /> + <hkern u1="B" u2="¿" k="47" /> + <hkern u1="B" u2="º" k="14" /> + <hkern u1="B" u2="·" k="4" /> + <hkern u1="B" u2="ª" k="20" /> + <hkern u1="B" u2="¡" k="6" /> + <hkern u1="B" u2="~" k="-4" /> + <hkern u1="B" u2="{" k="14" /> + <hkern u1="B" u2="v" k="6" /> + <hkern u1="B" u2="_" k="14" /> + <hkern u1="B" u2="\" k="61" /> + <hkern u1="B" u2="X" k="4" /> + <hkern u1="B" u2="V" k="6" /> + <hkern u1="B" u2=">" k="-25" /> + <hkern u1="B" u2="=" k="-4" /> + <hkern u1="B" u2="/" k="27" /> + <hkern u1="B" u2="+" k="6" /> + <hkern u1="B" u2="&" k="29" /> + <hkern u1="C" u2="î" k="-25" /> + <hkern u1="D" u2="ï" k="-4" /> + <hkern u1="D" u2="î" k="-4" /> + <hkern u1="E" u2="ï" k="-10" /> + <hkern u1="E" u2="î" k="-14" /> + <hkern u1="E" u2="ì" k="-25" /> + <hkern u1="F" u2="™" k="-31" /> + <hkern u1="F" u2="•" k="27" /> + <hkern u1="F" u2="‡" k="-41" /> + <hkern u1="F" u2="†" k="-41" /> + <hkern u1="F" u2="ƒ" k="137" /> + <hkern u1="F" u2="÷" k="4" /> + <hkern u1="F" u2="ï" k="-59" /> + <hkern u1="F" u2="î" k="-55" /> + <hkern u1="F" u2="í" k="10" /> + <hkern u1="F" u2="ì" k="-76" /> + <hkern u1="F" u2="ã" k="37" /> + <hkern u1="F" u2="ß" k="45" /> + <hkern u1="F" u2="×" k="6" /> + <hkern u1="F" u2="¿" k="150" /> + <hkern u1="F" u2="·" k="6" /> + <hkern u1="F" u2="¶" k="-27" /> + <hkern u1="F" u2="ª" k="20" /> + <hkern u1="F" u2="§" k="-27" /> + <hkern u1="F" u2="¦" k="-27" /> + <hkern u1="F" u2="¡" k="14" /> + <hkern u1="F" u2="~" k="41" /> + <hkern u1="F" u2="|" k="-41" /> + <hkern u1="F" u2="{" k="27" /> + <hkern u1="F" u2="x" k="31" /> + <hkern u1="F" u2="v" k="37" /> + <hkern u1="F" u2="_" k="176" /> + <hkern u1="F" u2="^" k="-14" /> + <hkern u1="F" u2="\" k="-55" /> + <hkern u1="F" u2="X" k="-10" /> + <hkern u1="F" u2="V" k="-10" /> + <hkern u1="F" u2="@" k="20" /> + <hkern u1="F" u2="?" k="-20" /> + <hkern u1="F" u2=">" k="-27" /> + <hkern u1="F" u2="=" k="6" /> + <hkern u1="F" u2="<" k="6" /> + <hkern u1="F" u2="/" k="131" /> + <hkern u1="F" u2="+" k="35" /> + <hkern u1="F" u2="*" k="-20" /> + <hkern u1="F" u2=")" k="-41" /> + <hkern u1="F" u2="&" k="49" /> + <hkern u1="G" u2="î" k="-6" /> + <hkern u1="H" u2="ï" k="-14" /> + <hkern u1="H" u2="î" k="-6" /> + <hkern u1="H" u2="ì" k="-14" /> + <hkern u1="I" u2="ï" k="-14" /> + <hkern u1="I" u2="î" k="-6" /> + <hkern u1="I" u2="ì" k="-14" /> + <hkern u1="J" u2="ï" k="-6" /> + <hkern u1="J" u2="î" k="-14" /> + <hkern u1="J" u2="ì" k="-6" /> + <hkern u1="K" u2="ï" k="-43" /> + <hkern u1="K" u2="î" k="-18" /> + <hkern u1="K" u2="ì" k="-47" /> + <hkern u1="M" u2="ï" k="-14" /> + <hkern u1="M" u2="î" k="-6" /> + <hkern u1="M" u2="ì" k="-14" /> + <hkern u1="N" u2="ï" k="-14" /> + <hkern u1="N" u2="î" k="-6" /> + <hkern u1="N" u2="ì" k="-14" /> + <hkern u1="O" u2="ï" k="-4" /> + <hkern u1="O" u2="î" k="-4" /> + <hkern u1="P" u2="™" k="6" /> + <hkern u1="P" u2="•" k="35" /> + <hkern u1="P" u2="‡" k="-41" /> + <hkern u1="P" u2="†" k="-41" /> + <hkern u1="P" u2="ƒ" k="117" /> + <hkern u1="P" u2="š" k="27" /> + <hkern u1="P" u2="ł" k="6" /> + <hkern u1="P" u2="ü" k="41" /> + <hkern u1="P" u2="û" k="41" /> + <hkern u1="P" u2="ú" k="41" /> + <hkern u1="P" u2="ù" k="41" /> + <hkern u1="P" u2="÷" k="14" /> + <hkern u1="P" u2="ï" k="-59" /> + <hkern u1="P" u2="î" k="-72" /> + <hkern u1="P" u2="ì" k="-20" /> + <hkern u1="P" u2="ß" k="37" /> + <hkern u1="P" u2="×" k="-14" /> + <hkern u1="P" u2="¿" k="170" /> + <hkern u1="P" u2="·" k="35" /> + <hkern u1="P" u2="¶" k="-35" /> + <hkern u1="P" u2="§" k="-14" /> + <hkern u1="P" u2="~" k="41" /> + <hkern u1="P" u2="{" k="41" /> + <hkern u1="P" u2="v" k="-4" /> + <hkern u1="P" u2="_" k="178" /> + <hkern u1="P" u2="\" k="14" /> + <hkern u1="P" u2="X" k="20" /> + <hkern u1="P" u2="V" k="4" /> + <hkern u1="P" u2="@" k="6" /> + <hkern u1="P" u2="?" k="-41" /> + <hkern u1="P" u2=">" k="-41" /> + <hkern u1="P" u2="<" k="14" /> + <hkern u1="P" u2="/" k="150" /> + <hkern u1="P" u2="+" k="55" /> + <hkern u1="P" u2="*" k="-20" /> + <hkern u1="P" u2=")" k="6" /> + <hkern u1="P" u2="&" k="49" /> + <hkern u1="Q" u2="™" k="41" /> + <hkern u1="Q" u2="‡" k="-6" /> + <hkern u1="Q" u2="†" k="-6" /> + <hkern u1="Q" u2="ƒ" k="27" /> + <hkern u1="Q" u2="Ł" k="-6" /> + <hkern u1="Q" u2="÷" k="-6" /> + <hkern u1="Q" u2="î" k="-4" /> + <hkern u1="Q" u2="ß" k="25" /> + <hkern u1="Q" u2="×" k="-6" /> + <hkern u1="Q" u2="¡" k="6" /> + <hkern u1="Q" u2="~" k="-6" /> + <hkern u1="Q" u2="x" k="-6" /> + <hkern u1="Q" u2="^" k="-6" /> + <hkern u1="Q" u2="\" k="82" /> + <hkern u1="Q" u2="X" k="37" /> + <hkern u1="Q" u2="V" k="55" /> + <hkern u1="Q" u2=">" k="-35" /> + <hkern u1="Q" u2="=" k="-6" /> + <hkern u1="Q" u2="<" k="-20" /> + <hkern u1="Q" u2="+" k="-6" /> + <hkern u1="Q" u2=")" k="35" /> + <hkern u1="Q" u2="&" k="14" /> + <hkern u1="Q" u2="!" k="6" /> + <hkern u1="R" u2="ï" k="-10" /> + <hkern u1="R" u2="î" k="-27" /> + <hkern u1="S" u2="ï" k="-4" /> + <hkern u1="S" u2="î" k="-4" /> + <hkern u1="T" u2="ž" k="55" /> + <hkern u1="T" u2="š" k="27" /> + <hkern u1="T" u2="ÿ" k="102" /> + <hkern u1="T" u2="ü" k="125" /> + <hkern u1="T" u2="û" k="133" /> + <hkern u1="T" u2="ï" k="-82" /> + <hkern u1="T" u2="î" k="-49" /> + <hkern u1="T" u2="í" k="78" /> + <hkern u1="T" u2="ì" k="-82" /> + <hkern u1="T" u2="å" k="127" /> + <hkern u1="T" u2="ä" k="82" /> + <hkern u1="T" u2="ã" k="92" /> + <hkern u1="T" u2="â" k="106" /> + <hkern u1="T" u2="à" k="86" /> + <hkern u1="U" u2="ï" k="-6" /> + <hkern u1="U" u2="î" k="-14" /> + <hkern u1="U" u2="ì" k="-6" /> + <hkern u1="V" u2="™" k="-41" /> + <hkern u1="V" u2="•" k="88" /> + <hkern u1="V" u2="‡" k="-20" /> + <hkern u1="V" u2="†" k="-35" /> + <hkern u1="V" u2="ƒ" k="137" /> + <hkern u1="V" u2="ł" k="14" /> + <hkern u1="V" u2="÷" k="68" /> + <hkern u1="V" u2="ï" k="-66" /> + <hkern u1="V" u2="î" k="-27" /> + <hkern u1="V" u2="í" k="14" /> + <hkern u1="V" u2="ì" k="-68" /> + <hkern u1="V" u2="è" k="68" /> + <hkern u1="V" u2="ã" k="53" /> + <hkern u1="V" u2="ß" k="51" /> + <hkern u1="V" u2="×" k="20" /> + <hkern u1="V" u2="¿" k="152" /> + <hkern u1="V" u2="º" k="4" /> + <hkern u1="V" u2="·" k="68" /> + <hkern u1="V" u2="ª" k="14" /> + <hkern u1="V" u2="§" k="6" /> + <hkern u1="V" u2="¦" k="-35" /> + <hkern u1="V" u2="¡" k="61" /> + <hkern u1="V" u2="~" k="88" /> + <hkern u1="V" u2="|" k="-35" /> + <hkern u1="V" u2="{" k="61" /> + <hkern u1="V" u2="x" k="16" /> + <hkern u1="V" u2="v" k="29" /> + <hkern u1="V" u2="_" k="123" /> + <hkern u1="V" u2="^" k="6" /> + <hkern u1="V" u2="\" k="-41" /> + <hkern u1="V" u2="X" k="-20" /> + <hkern u1="V" u2="V" k="-20" /> + <hkern u1="V" u2="@" k="55" /> + <hkern u1="V" u2="?" k="-14" /> + <hkern u1="V" u2="=" k="41" /> + <hkern u1="V" u2="<" k="61" /> + <hkern u1="V" u2="/" k="152" /> + <hkern u1="V" u2="+" k="88" /> + <hkern u1="V" u2="*" k="-41" /> + <hkern u1="V" u2=")" k="-35" /> + <hkern u1="V" u2="&" k="82" /> + <hkern u1="W" u2="ï" k="-76" /> + <hkern u1="W" u2="î" k="-35" /> + <hkern u1="W" u2="í" k="10" /> + <hkern u1="W" u2="ì" k="-61" /> + <hkern u1="X" u2="•" k="76" /> + <hkern u1="X" u2="ł" k="6" /> + <hkern u1="X" u2="÷" k="35" /> + <hkern u1="X" u2="ï" k="-31" /> + <hkern u1="X" u2="î" k="-20" /> + <hkern u1="X" u2="ì" k="-68" /> + <hkern u1="X" u2="ß" k="14" /> + <hkern u1="X" u2="×" k="27" /> + <hkern u1="X" u2="º" k="20" /> + <hkern u1="X" u2="·" k="68" /> + <hkern u1="X" u2="¶" k="6" /> + <hkern u1="X" u2="ª" k="20" /> + <hkern u1="X" u2="¦" k="-20" /> + <hkern u1="X" u2="¡" k="6" /> + <hkern u1="X" u2="~" k="47" /> + <hkern u1="X" u2="|" k="-35" /> + <hkern u1="X" u2="{" k="61" /> + <hkern u1="X" u2="x" k="-31" /> + <hkern u1="X" u2="v" k="51" /> + <hkern u1="X" u2="_" k="-35" /> + <hkern u1="X" u2="^" k="14" /> + <hkern u1="X" u2="\" k="-20" /> + <hkern u1="X" u2="V" k="-20" /> + <hkern u1="X" u2="@" k="57" /> + <hkern u1="X" u2="?" k="6" /> + <hkern u1="X" u2="=" k="27" /> + <hkern u1="X" u2="<" k="55" /> + <hkern u1="X" u2="/" k="-20" /> + <hkern u1="X" u2="+" k="39" /> + <hkern u1="X" u2="*" k="6" /> + <hkern u1="X" u2=")" k="-27" /> + <hkern u1="X" u2="&" k="41" /> + <hkern u1="Y" u2="š" k="86" /> + <hkern u1="Y" u2="ö" k="82" /> + <hkern u1="Y" u2="õ" k="188" /> + <hkern u1="Y" u2="ò" k="160" /> + <hkern u1="Y" u2="ð" k="174" /> + <hkern u1="Y" u2="ï" k="-41" /> + <hkern u1="Y" u2="î" k="-4" /> + <hkern u1="Y" u2="í" k="76" /> + <hkern u1="Y" u2="ì" k="-82" /> + <hkern u1="Y" u2="ë" k="98" /> + <hkern u1="Y" u2="è" k="98" /> + <hkern u1="Y" u2="ä" k="70" /> + <hkern u1="Y" u2="â" k="80" /> + <hkern u1="Y" u2="à" k="88" /> + <hkern u1="Z" u2="ï" k="-29" /> + <hkern u1="Z" u2="î" k="-29" /> + <hkern u1="Z" u2="ì" k="-41" /> + <hkern u1="[" u2="ï" k="-35" /> + <hkern u1="[" u2="î" k="-14" /> + <hkern u1="[" u2="ì" k="-96" /> + <hkern u1="\" u2="Ł" k="6" /> + <hkern u1="\" u2="x" k="-20" /> + <hkern u1="\" u2="v" k="41" /> + <hkern u1="\" u2="X" k="-20" /> + <hkern u1="\" u2="V" k="152" /> + <hkern u1="\" u2="8" k="18" /> + <hkern u1="\" u2="4" k="8" /> + <hkern u1="\" u2="3" k="8" /> + <hkern u1="\" u2="2" k="-8" /> + <hkern u1="^" u2="v" k="-14" /> + <hkern u1="^" u2="X" k="14" /> + <hkern u1="^" u2="V" k="6" /> + <hkern u1="_" u2="ƒ" k="-129" /> + <hkern u1="_" u2="ł" k="14" /> + <hkern u1="_" u2="x" k="-55" /> + <hkern u1="_" u2="v" k="82" /> + <hkern u1="_" u2="X" k="-35" /> + <hkern u1="_" u2="V" k="123" /> + <hkern u1="_" u2="8" k="8" /> + <hkern u1="_" u2="4" k="43" /> + <hkern u1="f" u2="ï" k="-66" /> + <hkern u1="f" u2="î" k="-61" /> + <hkern u1="f" u2="ì" k="-82" /> + <hkern u1="f" u2="j" k="-18" /> + <hkern u1="f" u2="i" k="-6" /> + <hkern u1="i" u2="ï" k="-6" /> + <hkern u1="i" u2="î" k="-6" /> + <hkern u1="i" u2="ì" k="-6" /> + <hkern u1="l" u2="ï" k="-4" /> + <hkern u1="l" u2="î" k="-4" /> + <hkern u1="q" u2="™" k="35" /> + <hkern u1="v" u2="™" k="6" /> + <hkern u1="v" u2="‡" k="-61" /> + <hkern u1="v" u2="†" k="-61" /> + <hkern u1="v" u2="ƒ" k="14" /> + <hkern u1="v" u2="ł" k="-6" /> + <hkern u1="v" u2="÷" k="6" /> + <hkern u1="v" u2="×" k="-14" /> + <hkern u1="v" u2="¿" k="55" /> + <hkern u1="v" u2="º" k="-10" /> + <hkern u1="v" u2="¶" k="-47" /> + <hkern u1="v" u2="§" k="-14" /> + <hkern u1="v" u2="¦" k="-41" /> + <hkern u1="v" u2="¡" k="6" /> + <hkern u1="v" u2="|" k="-14" /> + <hkern u1="v" u2="x" k="-14" /> + <hkern u1="v" u2="v" k="-6" /> + <hkern u1="v" u2="_" k="82" /> + <hkern u1="v" u2="^" k="-14" /> + <hkern u1="v" u2="\" k="41" /> + <hkern u1="v" u2="@" k="-14" /> + <hkern u1="v" u2="?" k="-41" /> + <hkern u1="v" u2=">" k="-20" /> + <hkern u1="v" u2="=" k="-6" /> + <hkern u1="v" u2="<" k="6" /> + <hkern u1="v" u2="/" k="55" /> + <hkern u1="v" u2="*" k="-35" /> + <hkern u1="v" u2=")" k="45" /> + <hkern u1="v" u2="&" k="20" /> + <hkern u1="x" u2="™" k="20" /> + <hkern u1="x" u2="•" k="6" /> + <hkern u1="x" u2="‡" k="-27" /> + <hkern u1="x" u2="†" k="-27" /> + <hkern u1="x" u2="÷" k="6" /> + <hkern u1="x" u2="¿" k="-6" /> + <hkern u1="x" u2="·" k="20" /> + <hkern u1="x" u2="¶" k="-6" /> + <hkern u1="x" u2="ª" k="6" /> + <hkern u1="x" u2="¦" k="-6" /> + <hkern u1="x" u2="¡" k="-14" /> + <hkern u1="x" u2="~" k="6" /> + <hkern u1="x" u2="|" k="-35" /> + <hkern u1="x" u2="x" k="-6" /> + <hkern u1="x" u2="v" k="-14" /> + <hkern u1="x" u2="_" k="-55" /> + <hkern u1="x" u2="\" k="70" /> + <hkern u1="x" u2="@" k="-6" /> + <hkern u1="x" u2="?" k="-14" /> + <hkern u1="x" u2="<" k="6" /> + <hkern u1="x" u2="/" k="-41" /> + <hkern u1="x" u2="*" k="-6" /> + <hkern u1="x" u2=")" k="6" /> + <hkern u1="x" u2="&" k="27" /> + <hkern u1="{" u2="ï" k="-35" /> + <hkern u1="{" u2="î" k="-14" /> + <hkern u1="{" u2="ì" k="-96" /> + <hkern u1="{" u2="æ" k="10" /> + <hkern u1="{" u2="å" k="10" /> + <hkern u1="{" u2="ä" k="10" /> + <hkern u1="{" u2="ã" k="10" /> + <hkern u1="{" u2="â" k="10" /> + <hkern u1="{" u2="á" k="10" /> + <hkern u1="{" u2="à" k="10" /> + <hkern u1="{" u2="a" k="10" /> + <hkern u1="|" u2="x" k="-35" /> + <hkern u1="|" u2="v" k="-14" /> + <hkern u1="|" u2="X" k="-35" /> + <hkern u1="|" u2="V" k="-35" /> + <hkern u1="|" u2="7" k="-18" /> + <hkern u1="}" u2="Ł" k="-14" /> + <hkern u1="}" u2="X" k="14" /> + <hkern u1="}" u2="V" k="14" /> + <hkern u1="~" u2="x" k="6" /> + <hkern u1="~" u2="X" k="47" /> + <hkern u1="~" u2="V" k="88" /> + <hkern u1="~" u2="7" k="18" /> + <hkern u1="~" u2="2" k="8" /> + <hkern u1="~" u2="1" k="8" /> + <hkern u1="¡" u2="ß" k="6" /> + <hkern u1="¡" u2="x" k="-14" /> + <hkern u1="¡" u2="v" k="6" /> + <hkern u1="¡" u2="X" k="6" /> + <hkern u1="¡" u2="V" k="61" /> + <hkern u1="¡" u2="7" k="-8" /> + <hkern u1="¢" u2="3" k="8" /> + <hkern u1="¥" u2="7" k="-27" /> + <hkern u1="¥" u2="4" k="8" /> + <hkern u1="¦" u2="x" k="-6" /> + <hkern u1="¦" u2="v" k="-41" /> + <hkern u1="¦" u2="X" k="-20" /> + <hkern u1="¦" u2="V" k="-35" /> + <hkern u1="¦" u2="8" k="8" /> + <hkern u1="¦" u2="7" k="-8" /> + <hkern u1="§" u2="V" k="6" /> + <hkern u1="¬" u2="3" k="8" /> + <hkern u1="°" u2="7" k="-35" /> + <hkern u1="°" u2="4" k="35" /> + <hkern u1="°" u2="1" k="-27" /> + <hkern u1="±" u2="7" k="8" /> + <hkern u1="±" u2="3" k="8" /> + <hkern u1="·" u2="x" k="20" /> + <hkern u1="·" u2="X" k="68" /> + <hkern u1="·" u2="V" k="68" /> + <hkern u1="·" u2="7" k="18" /> + <hkern u1="·" u2="1" k="27" /> + <hkern u1="¿" u2="ƒ" k="-43" /> + <hkern u1="¿" u2="ł" k="14" /> + <hkern u1="¿" u2="Ł" k="6" /> + <hkern u1="¿" u2="ß" k="20" /> + <hkern u1="¿" u2="v" k="72" /> + <hkern u1="¿" u2="V" k="162" /> + <hkern u1="¿" u2="9" k="20" /> + <hkern u1="¿" u2="4" k="18" /> + <hkern u1="¿" u2="3" k="8" /> + <hkern u1="¿" u2="1" k="8" /> + <hkern u1="Æ" u2="ï" k="-10" /> + <hkern u1="Æ" u2="î" k="-14" /> + <hkern u1="Æ" u2="ì" k="-25" /> + <hkern u1="Ç" u2="î" k="-25" /> + <hkern u1="È" u2="ï" k="-10" /> + <hkern u1="È" u2="î" k="-14" /> + <hkern u1="È" u2="ì" k="-25" /> + <hkern u1="É" u2="ï" k="-10" /> + <hkern u1="É" u2="î" k="-14" /> + <hkern u1="É" u2="ì" k="-25" /> + <hkern u1="Ê" u2="ï" k="-10" /> + <hkern u1="Ê" u2="î" k="-14" /> + <hkern u1="Ê" u2="ì" k="-25" /> + <hkern u1="Ë" u2="ï" k="-10" /> + <hkern u1="Ë" u2="î" k="-14" /> + <hkern u1="Ë" u2="ì" k="-25" /> + <hkern u1="Ì" u2="ï" k="-14" /> + <hkern u1="Ì" u2="î" k="-6" /> + <hkern u1="Ì" u2="ì" k="-14" /> + <hkern u1="Í" u2="ï" k="-14" /> + <hkern u1="Í" u2="î" k="-6" /> + <hkern u1="Í" u2="ì" k="-14" /> + <hkern u1="Í" u2="Ï" k="-68" /> + <hkern u1="Í" u2="Ì" k="-121" /> + <hkern u1="Î" u2="ï" k="-14" /> + <hkern u1="Î" u2="î" k="-6" /> + <hkern u1="Î" u2="ì" k="-14" /> + <hkern u1="Î" u2="Ï" k="-53" /> + <hkern u1="Î" u2="Î" k="-80" /> + <hkern u1="Î" u2="Ì" k="-41" /> + <hkern u1="Ï" u2="ï" k="-14" /> + <hkern u1="Ï" u2="î" k="-6" /> + <hkern u1="Ï" u2="ì" k="-14" /> + <hkern u1="Ï" u2="Ï" k="-27" /> + <hkern u1="Ï" u2="Î" k="-47" /> + <hkern u1="Ï" u2="Ì" k="-53" /> + <hkern u1="Ð" u2="ï" k="-4" /> + <hkern u1="Ð" u2="î" k="-4" /> + <hkern u1="Ñ" u2="ï" k="-14" /> + <hkern u1="Ñ" u2="î" k="-6" /> + <hkern u1="Ñ" u2="ì" k="-14" /> + <hkern u1="Ò" u2="ï" k="-4" /> + <hkern u1="Ò" u2="î" k="-4" /> + <hkern u1="Ó" u2="ï" k="-4" /> + <hkern u1="Ó" u2="î" k="-4" /> + <hkern u1="Ô" u2="ï" k="-4" /> + <hkern u1="Ô" u2="î" k="-4" /> + <hkern u1="Õ" u2="ï" k="-4" /> + <hkern u1="Õ" u2="î" k="-4" /> + <hkern u1="Ö" u2="ï" k="-4" /> + <hkern u1="Ö" u2="î" k="-4" /> + <hkern u1="×" u2="v" k="-14" /> + <hkern u1="×" u2="X" k="27" /> + <hkern u1="×" u2="V" k="20" /> + <hkern u1="Ø" u2="ï" k="-6" /> + <hkern u1="Ø" u2="î" k="-6" /> + <hkern u1="Ù" u2="ï" k="-6" /> + <hkern u1="Ù" u2="î" k="-14" /> + <hkern u1="Ù" u2="ì" k="-6" /> + <hkern u1="Ú" u2="ï" k="-6" /> + <hkern u1="Ú" u2="î" k="-14" /> + <hkern u1="Ú" u2="ì" k="-6" /> + <hkern u1="Û" u2="ï" k="-6" /> + <hkern u1="Û" u2="î" k="-14" /> + <hkern u1="Û" u2="ì" k="-6" /> + <hkern u1="Ü" u2="ï" k="-6" /> + <hkern u1="Ü" u2="î" k="-14" /> + <hkern u1="Ü" u2="ì" k="-6" /> + <hkern u1="Ý" u2="š" k="86" /> + <hkern u1="Ý" u2="ö" k="82" /> + <hkern u1="Ý" u2="õ" k="188" /> + <hkern u1="Ý" u2="ò" k="160" /> + <hkern u1="Ý" u2="ð" k="174" /> + <hkern u1="Ý" u2="ï" k="-41" /> + <hkern u1="Ý" u2="î" k="-4" /> + <hkern u1="Ý" u2="í" k="47" /> + <hkern u1="Ý" u2="ì" k="-82" /> + <hkern u1="Ý" u2="ë" k="98" /> + <hkern u1="Ý" u2="è" k="98" /> + <hkern u1="Ý" u2="ä" k="70" /> + <hkern u1="Ý" u2="â" k="80" /> + <hkern u1="Ý" u2="à" k="88" /> + <hkern u1="Þ" u2="™" k="68" /> + <hkern u1="Þ" u2="•" k="-6" /> + <hkern u1="Þ" u2="‡" k="-20" /> + <hkern u1="Þ" u2="†" k="-20" /> + <hkern u1="Þ" u2="ƒ" k="88" /> + <hkern u1="Þ" u2="ł" k="-35" /> + <hkern u1="Þ" u2="Ł" k="-20" /> + <hkern u1="Þ" u2="÷" k="-6" /> + <hkern u1="Þ" u2="ß" k="27" /> + <hkern u1="Þ" u2="×" k="-6" /> + <hkern u1="Þ" u2="¿" k="70" /> + <hkern u1="Þ" u2="·" k="-14" /> + <hkern u1="Þ" u2="~" k="-20" /> + <hkern u1="Þ" u2="x" k="-14" /> + <hkern u1="Þ" u2="v" k="-14" /> + <hkern u1="Þ" u2="_" k="76" /> + <hkern u1="Þ" u2="^" k="-6" /> + <hkern u1="Þ" u2="\" k="96" /> + <hkern u1="Þ" u2="X" k="55" /> + <hkern u1="Þ" u2="V" k="35" /> + <hkern u1="Þ" u2="@" k="-6" /> + <hkern u1="Þ" u2="?" k="-14" /> + <hkern u1="Þ" u2=">" k="-20" /> + <hkern u1="Þ" u2="=" k="-6" /> + <hkern u1="Þ" u2="<" k="-6" /> + <hkern u1="Þ" u2="/" k="102" /> + <hkern u1="Þ" u2="+" k="-6" /> + <hkern u1="Þ" u2=")" k="27" /> + <hkern u1="Þ" u2="&" k="27" /> + <hkern u1="ß" u2="™" k="20" /> + <hkern u1="ß" u2="‡" k="-6" /> + <hkern u1="ß" u2="ƒ" k="6" /> + <hkern u1="ß" u2="ł" k="-10" /> + <hkern u1="ß" u2="÷" k="-6" /> + <hkern u1="ß" u2="ï" k="-4" /> + <hkern u1="ß" u2="î" k="-4" /> + <hkern u1="ß" u2="ß" k="20" /> + <hkern u1="ß" u2="º" k="20" /> + <hkern u1="ß" u2="ª" k="41" /> + <hkern u1="ß" u2="v" k="6" /> + <hkern u1="ß" u2="_" k="-14" /> + <hkern u1="ß" u2="\" k="41" /> + <hkern u1="ß" u2=">" k="-35" /> + <hkern u1="ß" u2="=" k="-6" /> + <hkern u1="ß" u2="/" k="-14" /> + <hkern u1="ß" u2=")" k="-27" /> + <hkern u1="ß" u2="&" k="6" /> + <hkern u1="é" u2="\" k="137" /> + <hkern u1="ë" u2="\" k="137" /> + <hkern u1="ì" u2="™" k="20" /> + <hkern u1="ì" u2="\" k="47" /> + <hkern u1="í" u2="™" k="-29" /> + <hkern u1="í" u2="”" k="-109" /> + <hkern u1="í" u2="“" k="-55" /> + <hkern u1="í" u2="’" k="-109" /> + <hkern u1="í" u2="‘" k="-55" /> + <hkern u1="í" u2="š" k="-4" /> + <hkern u1="í" u2="ï" k="-106" /> + <hkern u1="í" u2="î" k="-82" /> + <hkern u1="í" u2="ì" k="-143" /> + <hkern u1="í" u2="}" k="-96" /> + <hkern u1="í" u2="|" k="-20" /> + <hkern u1="í" u2="i" k="-6" /> + <hkern u1="í" u2="]" k="-96" /> + <hkern u1="í" u2="\" k="-129" /> + <hkern u1="í" u2="?" k="-33" /> + <hkern u1="í" u2="*" k="-6" /> + <hkern u1="í" u2=")" k="-68" /> + <hkern u1="í" u2="'" k="-53" /> + <hkern u1="í" u2=""" k="-53" /> + <hkern u1="í" u2="!" k="-6" /> + <hkern u1="î" u2="™" k="-14" /> + <hkern u1="î" u2="†" k="-43" /> + <hkern u1="î" u2="”" k="-68" /> + <hkern u1="î" u2="“" k="-82" /> + <hkern u1="î" u2="’" k="-68" /> + <hkern u1="î" u2="‘" k="-82" /> + <hkern u1="î" u2="š" k="-4" /> + <hkern u1="î" u2="ï" k="-121" /> + <hkern u1="î" u2="î" k="-109" /> + <hkern u1="î" u2="ì" k="-20" /> + <hkern u1="î" u2="}" k="-14" /> + <hkern u1="î" u2="|" k="-14" /> + <hkern u1="î" u2="j" k="-6" /> + <hkern u1="î" u2="i" k="-10" /> + <hkern u1="î" u2="]" k="-14" /> + <hkern u1="î" u2="\" k="-47" /> + <hkern u1="î" u2="?" k="-88" /> + <hkern u1="î" u2="*" k="-68" /> + <hkern u1="î" u2=")" k="-14" /> + <hkern u1="î" u2="'" k="-53" /> + <hkern u1="î" u2="&" k="6" /> + <hkern u1="î" u2=""" k="-53" /> + <hkern u1="î" u2="!" k="-6" /> + <hkern u1="ï" u2="™" k="-29" /> + <hkern u1="ï" u2="†" k="-29" /> + <hkern u1="ï" u2="”" k="-76" /> + <hkern u1="ï" u2="“" k="-70" /> + <hkern u1="ï" u2="’" k="-76" /> + <hkern u1="ï" u2="‘" k="-70" /> + <hkern u1="ï" u2="š" k="-4" /> + <hkern u1="ï" u2="ï" k="-111" /> + <hkern u1="ï" u2="î" k="-102" /> + <hkern u1="ï" u2="ì" k="-104" /> + <hkern u1="ï" u2="ã" k="-6" /> + <hkern u1="ï" u2="}" k="-35" /> + <hkern u1="ï" u2="|" k="-14" /> + <hkern u1="ï" u2="j" k="-14" /> + <hkern u1="ï" u2="i" k="-14" /> + <hkern u1="ï" u2="]" k="-35" /> + <hkern u1="ï" u2="\" k="-49" /> + <hkern u1="ï" u2="?" k="-76" /> + <hkern u1="ï" u2="*" k="-61" /> + <hkern u1="ï" u2=")" k="-20" /> + <hkern u1="ï" u2="'" k="-53" /> + <hkern u1="ï" u2="&" k="6" /> + <hkern u1="ï" u2=""" k="-53" /> + <hkern u1="ï" u2="!" k="-6" /> + <hkern u1="ð" u2="”" k="33" /> + <hkern u1="ð" u2="“" k="33" /> + <hkern u1="ð" u2="’" k="33" /> + <hkern u1="ð" u2="‘" k="33" /> + <hkern u1="ð" u2="\" k="96" /> + <hkern u1="ó" u2="\" k="190" /> + <hkern u1="õ" u2="\" k="190" /> + <hkern u1="ö" u2="\" k="195" /> + <hkern u1="÷" u2="x" k="6" /> + <hkern u1="÷" u2="v" k="6" /> + <hkern u1="÷" u2="X" k="35" /> + <hkern u1="÷" u2="V" k="68" /> + <hkern u1="÷" u2="4" k="8" /> + <hkern u1="÷" u2="3" k="18" /> + <hkern u1="÷" u2="1" k="8" /> + <hkern u1="ł" u2="‡" k="-47" /> + <hkern u1="ł" u2="†" k="-20" /> + <hkern u1="ł" u2="ƒ" k="6" /> + <hkern u1="ł" u2="ł" k="-14" /> + <hkern u1="ł" u2="¿" k="6" /> + <hkern u1="ł" u2="º" k="-6" /> + <hkern u1="ł" u2="·" k="-14" /> + <hkern u1="ł" u2="¶" k="-27" /> + <hkern u1="ł" u2="x" k="-45" /> + <hkern u1="ł" u2="v" k="-47" /> + <hkern u1="ł" u2="@" k="-41" /> + <hkern u1="ł" u2="?" k="-6" /> + <hkern u1="ł" u2=">" k="-29" /> + <hkern u1="ł" u2="=" k="-14" /> + <hkern u1="ł" u2="/" k="-14" /> + <hkern u1="ł" u2="*" k="-14" /> + <hkern u1="ł" u2="&" k="14" /> + <hkern u1="Œ" u2="ï" k="-10" /> + <hkern u1="Œ" u2="î" k="-14" /> + <hkern u1="Œ" u2="ì" k="-25" /> + <hkern u1="Š" u2="ï" k="-4" /> + <hkern u1="Š" u2="î" k="-4" /> + <hkern u1="š" u2="\" k="102" /> + <hkern u1="Ÿ" u2="š" k="86" /> + <hkern u1="Ÿ" u2="ö" k="82" /> + <hkern u1="Ÿ" u2="õ" k="188" /> + <hkern u1="Ÿ" u2="ò" k="160" /> + <hkern u1="Ÿ" u2="ð" k="174" /> + <hkern u1="Ÿ" u2="ï" k="-41" /> + <hkern u1="Ÿ" u2="î" k="-4" /> + <hkern u1="Ÿ" u2="í" k="47" /> + <hkern u1="Ÿ" u2="ì" k="-82" /> + <hkern u1="Ÿ" u2="ë" k="98" /> + <hkern u1="Ÿ" u2="è" k="98" /> + <hkern u1="Ÿ" u2="ä" k="70" /> + <hkern u1="Ÿ" u2="â" k="80" /> + <hkern u1="Ÿ" u2="à" k="88" /> + <hkern u1="Ž" u2="ï" k="-29" /> + <hkern u1="Ž" u2="î" k="-29" /> + <hkern u1="Ž" u2="ì" k="-41" /> + <hkern u1="ž" u2="\" k="61" /> + <hkern u1="ƒ" u2="™" k="-14" /> + <hkern u1="ƒ" u2="‡" k="-27" /> + <hkern u1="ƒ" u2="†" k="-27" /> + <hkern u1="ƒ" u2="ƒ" k="170" /> + <hkern u1="ƒ" u2="÷" k="55" /> + <hkern u1="ƒ" u2="ï" k="-49" /> + <hkern u1="ƒ" u2="î" k="-35" /> + <hkern u1="ƒ" u2="ì" k="-49" /> + <hkern u1="ƒ" u2="×" k="-6" /> + <hkern u1="ƒ" u2="º" k="-6" /> + <hkern u1="ƒ" u2="ª" k="-6" /> + <hkern u1="ƒ" u2="¦" k="-14" /> + <hkern u1="ƒ" u2="~" k="47" /> + <hkern u1="ƒ" u2="x" k="14" /> + <hkern u1="ƒ" u2="v" k="14" /> + <hkern u1="ƒ" u2="_" k="94" /> + <hkern u1="ƒ" u2="\" k="-82" /> + <hkern u1="ƒ" u2="@" k="27" /> + <hkern u1="ƒ" u2="?" k="-14" /> + <hkern u1="ƒ" u2=">" k="-82" /> + <hkern u1="ƒ" u2="=" k="20" /> + <hkern u1="ƒ" u2="<" k="55" /> + <hkern u1="ƒ" u2="/" k="111" /> + <hkern u1="ƒ" u2="+" k="55" /> + <hkern u1="ƒ" u2="*" k="-61" /> + <hkern u1="ƒ" u2=")" k="-20" /> + <hkern u1="ƒ" u2="&" k="47" /> + <hkern u1="‘" u2="ð" k="51" /> + <hkern u1="‘" u2="ï" k="-76" /> + <hkern u1="‘" u2="î" k="-68" /> + <hkern u1="‘" u2="ì" k="-82" /> + <hkern u1="’" u2="ð" k="92" /> + <hkern u1="’" u2="ï" k="-41" /> + <hkern u1="’" u2="î" k="-53" /> + <hkern u1="’" u2="ì" k="-41" /> + <hkern u1="‚" u2="g" k="-20" /> + <hkern u1="“" u2="ð" k="51" /> + <hkern u1="“" u2="ï" k="-76" /> + <hkern u1="“" u2="î" k="-68" /> + <hkern u1="“" u2="ì" k="-82" /> + <hkern u1="”" u2="ð" k="92" /> + <hkern u1="”" u2="ï" k="-41" /> + <hkern u1="”" u2="î" k="-53" /> + <hkern u1="”" u2="ì" k="-41" /> + <hkern u1="„" u2="g" k="-20" /> + <hkern u1="†" u2="x" k="-27" /> + <hkern u1="†" u2="v" k="-61" /> + <hkern u1="†" u2="V" k="-35" /> + <hkern u1="‡" u2="ł" k="-6" /> + <hkern u1="‡" u2="Ł" k="-14" /> + <hkern u1="‡" u2="x" k="-27" /> + <hkern u1="‡" u2="v" k="-61" /> + <hkern u1="‡" u2="V" k="-20" /> + <hkern u1="•" u2="x" k="6" /> + <hkern u1="•" u2="X" k="76" /> + <hkern u1="•" u2="V" k="88" /> + <hkern u1="…" u2="g" k="27" /> + <hkern u1="−" u2="3" k="18" /> + <hkern u1="−" u2="2" k="8" /> + <hkern u1="−" u2=")" k="82" /> + <hkern u1="√" u2="9" k="35" /> + <hkern u1="√" u2="8" k="35" /> + <hkern u1="√" u2="5" k="43" /> + <hkern u1="√" u2="4" k="88" /> + <hkern u1="√" u2="3" k="35" /> + <hkern u1="√" u2="2" k="43" /> + <hkern u1="√" u2="1" k="27" /> + <hkern u1="∞" u2="7" k="8" /> + <hkern u1="∫" u2="9" k="-18" /> + <hkern u1="∫" u2="8" k="-8" /> + <hkern u1="∫" u2="7" k="-78" /> + <hkern u1="∫" u2="5" k="-18" /> + <hkern u1="∫" u2="3" k="-35" /> + <hkern u1="∫" u2="2" k="-35" /> + <hkern u1="∫" u2="1" k="-35" /> + <hkern u1="≈" u2="8" k="-18" /> + <hkern u1="≈" u2="7" k="18" /> + <hkern u1="≈" u2="4" k="-8" /> + <hkern u1="≠" u2="8" k="-8" /> + <hkern u1="≥" u2="1" k="8" /> + <hkern g1="approxequal" + g2="zero,six" + k="-18" /> + <hkern g1="asciitilde" + g2="zero,six" + k="-8" /> + <hkern g1="cent" + g2="zero,six" + k="8" /> + <hkern g1="copyright,registered" + g2="five" + k="8" /> + <hkern g1="copyright,registered" + g2="four" + k="8" /> + <hkern g1="copyright,registered" + g2="one" + k="8" /> + <hkern g1="copyright,registered" + g2="three" + k="27" /> + <hkern g1="dollar" + g2="zero,six" + k="8" /> + <hkern g1="equal" + g2="zero,six" + k="-8" /> + <hkern g1="greaterequal" + g2="zero,six" + k="-8" /> + <hkern g1="infinity" + g2="zero,six" + k="-8" /> + <hkern g1="less" + g2="zero,six" + k="-18" /> + <hkern g1="lessequal" + g2="zero,six" + k="-8" /> + <hkern g1="minus" + g2="zero,six" + k="-8" /> + <hkern g1="minus" + g2="bracketright,braceright" + k="53" /> + <hkern g1="notequal" + g2="zero,six" + k="-8" /> + <hkern g1="percent" + g2="zero,six" + k="18" /> + <hkern g1="plus" + g2="bracketright,braceright" + k="53" /> + <hkern g1="radical" + g2="zero,six" + k="88" /> + <hkern g1="sterling" + g2="zero,six" + k="8" /> + <hkern g1="backslash" + g2="zero,six" + k="35" /> + <hkern g1="bracketleft,braceleft" + g2="five" + k="18" /> + <hkern g1="bracketleft,braceleft" + g2="four" + k="27" /> + <hkern g1="bracketleft,braceleft" + g2="hyphen,endash,emdash" + k="27" /> + <hkern g1="bracketleft,braceleft" + g2="minus" + k="53" /> + <hkern g1="bracketleft,braceleft" + g2="nine" + k="-8" /> + <hkern g1="bracketleft,braceleft" + g2="plus" + k="53" /> + <hkern g1="bracketleft,braceleft" + g2="seven" + k="-43" /> + <hkern g1="colon,semicolon" + g2="nine" + k="-12" /> + <hkern g1="colon,semicolon" + g2="seven" + k="-8" /> + <hkern g1="comma,period,ellipsis" + g2="zero,six" + k="18" /> + <hkern g1="comma,period,ellipsis" + g2="four" + k="43" /> + <hkern g1="comma,period,ellipsis" + g2="seven" + k="18" /> + <hkern g1="comma,period,ellipsis" + g2="eight" + k="8" /> + <hkern g1="comma,period,ellipsis" + g2="one" + k="61" /> + <hkern g1="guilsinglleft" + g2="one" + k="-18" /> + <hkern g1="guilsinglleft" + g2="two" + k="-12" /> + <hkern g1="guilsinglleft" + g2="exclam" + k="6" /> + <hkern g1="guilsinglright" + g2="seven" + k="27" /> + <hkern g1="guilsinglright" + g2="one" + k="27" /> + <hkern g1="guilsinglright" + g2="two" + k="8" /> + <hkern g1="guilsinglright" + g2="three" + k="8" /> + <hkern g1="hyphen,endash,emdash" + g2="five" + k="8" /> + <hkern g1="hyphen,endash,emdash" + g2="four" + k="4" /> + <hkern g1="hyphen,endash,emdash" + g2="seven" + k="27" /> + <hkern g1="hyphen,endash,emdash" + g2="one" + k="18" /> + <hkern g1="hyphen,endash,emdash" + g2="three" + k="18" /> + <hkern g1="hyphen,endash,emdash" + g2="bracketright,braceright" + k="27" /> + <hkern g1="hyphen,endash,emdash" + g2="parenright" + k="82" /> + <hkern g1="hyphen,endash,emdash" + g2="space" + k="102" /> + <hkern g1="numbersign" + g2="zero,six" + k="18" /> + <hkern g1="parenleft" + g2="zero,six" + k="18" /> + <hkern g1="parenleft" + g2="hyphen,endash,emdash" + k="82" /> + <hkern g1="questiondown" + g2="zero,six" + k="18" /> + <hkern g1="questiondown" + g2="quoteleft,quotedblleft" + k="41" /> + <hkern g1="questiondown" + g2="quotesinglbase,quotedblbase" + k="-53" /> + <hkern g1="quotedbl,quotesingle" + g2="four" + k="43" /> + <hkern g1="quotedbl,quotesingle" + g2="seven" + k="-18" /> + <hkern g1="quotedbl,quotesingle" + g2="one" + k="-27" /> + <hkern g1="quotedbl,quotesingle" + g2="two" + k="-8" /> + <hkern g1="quoteleft,quotedblleft" + g2="zero,six" + k="8" /> + <hkern g1="quoteleft,quotedblleft" + g2="four" + k="61" /> + <hkern g1="quoteleft,quotedblleft" + g2="seven" + k="-18" /> + <hkern g1="quoteleft,quotedblleft" + g2="one" + k="-18" /> + <hkern g1="quoteright,quotedblright" + g2="zero,six" + k="18" /> + <hkern g1="quoteright,quotedblright" + g2="five" + k="27" /> + <hkern g1="quoteright,quotedblright" + g2="four" + k="61" /> + <hkern g1="quoteright,quotedblright" + g2="seven" + k="-18" /> + <hkern g1="quoteright,quotedblright" + g2="eight" + k="8" /> + <hkern g1="quoteright,quotedblright" + g2="one" + k="-8" /> + <hkern g1="quoteright,quotedblright" + g2="two" + k="8" /> + <hkern g1="quoteright,quotedblright" + g2="comma,period,ellipsis" + k="94" /> + <hkern g1="quoteright,quotedblright" + g2="question" + k="-27" /> + <hkern g1="quoteright,quotedblright" + g2="questiondown" + k="80" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="zero,six" + k="27" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="four" + k="27" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="seven" + k="18" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="one" + k="35" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="two" + k="-8" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="three" + k="18" /> + <hkern g1="slash" + g2="zero,six" + k="35" /> + <hkern g1="underscore" + g2="zero,six" + k="18" /> + <hkern g1="exclam" + g2="guilsinglright" + k="6" /> + <hkern g1="eight" + g2="comma,period,ellipsis" + k="8" /> + <hkern g1="eight" + g2="zero,six" + k="4" /> + <hkern g1="five" + g2="comma,period,ellipsis" + k="8" /> + <hkern g1="five" + g2="quoteleft,quotedblleft" + k="8" /> + <hkern g1="five" + g2="quotesinglbase,quotedblbase" + k="8" /> + <hkern g1="four" + g2="quoteleft,quotedblleft" + k="18" /> + <hkern g1="four" + g2="quoteright,quotedblright" + k="18" /> + <hkern g1="one" + g2="comma,period,ellipsis" + k="8" /> + <hkern g1="one" + g2="zero,six" + k="-4" /> + <hkern g1="one" + g2="quoteright,quotedblright" + k="8" /> + <hkern g1="one" + g2="bracketright,braceright" + k="-8" /> + <hkern g1="one" + g2="copyright,registered" + k="8" /> + <hkern g1="one" + g2="quotedbl,quotesingle" + k="8" /> + <hkern g1="seven" + g2="comma,period,ellipsis" + k="96" /> + <hkern g1="seven" + g2="quoteleft,quotedblleft" + k="-27" /> + <hkern g1="seven" + g2="quotesinglbase,quotedblbase" + k="61" /> + <hkern g1="seven" + g2="quoteright,quotedblright" + k="-18" /> + <hkern g1="seven" + g2="copyright,registered" + k="8" /> + <hkern g1="seven" + g2="quotedbl,quotesingle" + k="-18" /> + <hkern g1="seven" + g2="colon,semicolon" + k="27" /> + <hkern g1="seven" + g2="guilsinglleft" + k="53" /> + <hkern g1="seven" + g2="guilsinglright" + k="18" /> + <hkern g1="seven" + g2="hyphen,endash,emdash" + k="43" /> + <hkern g1="six" + g2="comma,period,ellipsis" + k="8" /> + <hkern g1="six" + g2="quotesinglbase,quotedblbase" + k="8" /> + <hkern g1="six" + g2="copyright,registered" + k="8" /> + <hkern g1="three" + g2="comma,period,ellipsis" + k="8" /> + <hkern g1="three" + g2="quoteright,quotedblright" + k="4" /> + <hkern g1="three" + g2="hyphen,endash,emdash" + k="8" /> + <hkern g1="two" + g2="guilsinglright" + k="4" /> + <hkern g1="zero,nine" + g2="comma,period,ellipsis" + k="35" /> + <hkern g1="zero,nine" + g2="zero,six" + k="4" /> + <hkern g1="zero,nine" + g2="quoteleft,quotedblleft" + k="8" /> + <hkern g1="zero,nine" + g2="quotesinglbase,quotedblbase" + k="18" /> + <hkern g1="zero,nine" + g2="quoteright,quotedblright" + k="8" /> + <hkern g1="zero,nine" + g2="approxequal" + k="-18" /> + <hkern g1="zero,nine" + g2="asciitilde" + k="-8" /> + <hkern g1="zero,nine" + g2="backslash" + k="35" /> + <hkern g1="zero,nine" + g2="eight" + k="4" /> + <hkern g1="zero,nine" + g2="equal" + k="-8" /> + <hkern g1="zero,nine" + g2="five" + k="4" /> + <hkern g1="zero,nine" + g2="greaterequal" + k="-8" /> + <hkern g1="zero,nine" + g2="infinity" + k="-8" /> + <hkern g1="zero,nine" + g2="lessequal" + k="-8" /> + <hkern g1="zero,nine" + g2="minus" + k="-8" /> + <hkern g1="zero,nine" + g2="notequal" + k="-8" /> + <hkern g1="zero,nine" + g2="numbersign" + k="18" /> + <hkern g1="zero,nine" + g2="one" + k="4" /> + <hkern g1="zero,nine" + g2="parenright" + k="18" /> + <hkern g1="zero,nine" + g2="percent" + k="18" /> + <hkern g1="zero,nine" + g2="slash" + k="35" /> + <hkern g1="zero,nine" + g2="summation" + k="18" /> + <hkern g1="zero,nine" + g2="three" + k="4" /> + <hkern g1="zero,nine" + g2="underscore" + k="18" /> + <hkern g1="space" + g2="hyphen,endash,emdash" + k="102" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="61" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="J" + k="-14" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="Oslash" + k="47" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="S,Scaron,uni0405" + k="14" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="133" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="37" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="V,uni0423,uni0474" + k="119" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="88" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="Y,Yacute,Ydieresis,uni040E" + k="152" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="10" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="ampersand" + k="35" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="asciicircum" + k="70" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="asciitilde" + k="41" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="asterisk" + k="197" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="at" + k="76" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="backslash" + k="150" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="braceleft" + k="27" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="bullet" + k="68" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="20" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="copyright,registered" + k="61" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="dagger" + k="68" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="divide" + k="27" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="germandbls" + k="6" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="guilsinglleft" + k="55" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="hyphen,endash,emdash" + k="55" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="less" + k="41" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="m,n,p,r,ntilde" + k="6" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="ordfeminine" + k="190" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="ordmasculine" + k="164" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="oslash" + k="10" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="paragraph" + k="61" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="parenleft" + k="14" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="periodcentered" + k="55" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="plus" + k="41" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="question" + k="102" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="questiondown" + k="-55" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="quotedbl,quotesingle" + k="111" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="quoteleft,quotedblleft" + k="225" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="quoteright,quotedblright" + k="225" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="quotesinglbase,quotedblbase" + k="-14" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="slash" + k="-41" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="t" + k="47" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="trademark" + k="199" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="45" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="underscore" + k="-61" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="76" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="w" + k="61" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="70" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="Eth" + k="6" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="X,uni0416,uni0425,uni046A" + k="20" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="Z,Zcaron" + k="-10" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="bracketright,braceright" + k="6" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="colon,semicolon" + k="6" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="daggerdbl" + k="6" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="equal" + k="14" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="exclam" + k="14" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="exclamdown" + k="6" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="f,fi,fl,f_f_i,f_f_l" + k="14" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="greater" + k="-14" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="guilsinglright" + k="6" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="multiply" + k="6" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="parenright" + k="14" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="section" + k="6" /> + <hkern g1="B,uni0411,uni0412,uni0417,uni0432" + g2="J" + k="-35" /> + <hkern g1="B,uni0411,uni0412,uni0417,uni0432" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="-4" /> + <hkern g1="B,uni0411,uni0412,uni0417,uni0432" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="6" /> + <hkern g1="B,uni0411,uni0412,uni0417,uni0432" + g2="Y,Yacute,Ydieresis,uni040E" + k="20" /> + <hkern g1="B,uni0411,uni0412,uni0417,uni0432" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="10" /> + <hkern g1="B,uni0411,uni0412,uni0417,uni0432" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="-10" /> + <hkern g1="B,uni0411,uni0412,uni0417,uni0432" + g2="guilsinglleft" + k="20" /> + <hkern g1="B,uni0411,uni0412,uni0417,uni0432" + g2="m,n,p,r,ntilde" + k="6" /> + <hkern g1="B,uni0411,uni0412,uni0417,uni0432" + g2="oslash" + k="4" /> + <hkern g1="B,uni0411,uni0412,uni0417,uni0432" + g2="quoteright,quotedblright" + k="27" /> + <hkern g1="B,uni0411,uni0412,uni0417,uni0432" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="27" /> + <hkern g1="B,uni0411,uni0412,uni0417,uni0432" + g2="w" + k="6" /> + <hkern g1="B,uni0411,uni0412,uni0417,uni0432" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="6" /> + <hkern g1="B,uni0411,uni0412,uni0417,uni0432" + g2="Z,Zcaron" + k="-6" /> + <hkern g1="B,uni0411,uni0412,uni0417,uni0432" + g2="f,fi,fl,f_f_i,f_f_l" + k="6" /> + <hkern g1="B,uni0411,uni0412,uni0417,uni0432" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="37" /> + <hkern g1="B,uni0411,uni0412,uni0417,uni0432" + g2="comma,period,ellipsis" + k="20" /> + <hkern g1="B,uni0411,uni0412,uni0417,uni0432" + g2="s,scaron,uni0455" + k="6" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="16" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="Oslash" + k="10" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="14" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="6" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="V,uni0423,uni0474" + k="27" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="35" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="Y,Yacute,Ydieresis,uni040E" + k="57" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="35" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="ampersand" + k="35" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="asciicircum" + k="14" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="at" + k="41" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="backslash" + k="61" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="braceleft" + k="27" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="37" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="copyright,registered" + k="6" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="germandbls" + k="41" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="guilsinglleft" + k="35" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="hyphen,endash,emdash" + k="6" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="m,n,p,r,ntilde" + k="25" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="ordfeminine" + k="35" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="ordmasculine" + k="6" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="oslash" + k="27" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="plus" + k="6" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="questiondown" + k="55" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="quoteleft,quotedblleft" + k="6" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="quoteright,quotedblright" + k="6" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="quotesinglbase,quotedblbase" + k="20" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="slash" + k="61" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="t" + k="14" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="trademark" + k="20" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="41" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="underscore" + k="27" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="20" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="w" + k="20" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="27" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="X,uni0416,uni0425,uni046A" + k="45" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="bracketright,braceright" + k="8" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="f,fi,fl,f_f_i,f_f_l" + k="16" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="greater" + k="-14" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="guilsinglright" + k="6" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="parenright" + k="20" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="section" + k="14" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="51" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="comma,period,ellipsis" + k="35" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="s,scaron,uni0455" + k="14" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="b,h,k,l,thorn" + k="20" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="florin" + k="82" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="x,uni0445,uni04B3" + k="16" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="z,zcaron" + k="14" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="S,Scaron,uni0405" + k="6" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="45" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="V,uni0423,uni0474" + k="51" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="45" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="Y,Yacute,Ydieresis,uni040E" + k="96" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="ampersand" + k="55" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="asciicircum" + k="-20" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="asciitilde" + k="-20" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="asterisk" + k="6" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="backslash" + k="82" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="-4" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="copyright,registered" + k="-14" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="dagger" + k="-6" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="divide" + k="-6" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="germandbls" + k="18" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="guilsinglleft" + k="14" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="less" + k="-6" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="ordfeminine" + k="20" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="periodcentered" + k="-6" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="plus" + k="-6" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="questiondown" + k="61" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="quoteleft,quotedblleft" + k="20" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="quoteright,quotedblright" + k="27" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="quotesinglbase,quotedblbase" + k="102" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="slash" + k="82" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="t" + k="-47" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="trademark" + k="68" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="underscore" + k="82" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="X,uni0416,uni0425,uni046A" + k="72" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="Z,Zcaron" + k="20" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="bracketright,braceright" + k="47" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="daggerdbl" + k="-6" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="equal" + k="-6" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="exclam" + k="6" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="exclamdown" + k="6" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="f,fi,fl,f_f_i,f_f_l" + k="-16" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="greater" + k="-20" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="guilsinglright" + k="20" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="multiply" + k="-6" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="parenright" + k="47" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="61" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="comma,period,ellipsis" + k="68" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="b,h,k,l,thorn" + k="4" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="florin" + k="109" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="z,zcaron" + k="-4" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="Lslash" + k="-14" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="bracketleft" + k="6" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="lslash" + k="-10" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="6" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="J" + k="27" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="Oslash" + k="6" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="-14" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="V,uni0423,uni0474" + k="-4" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-4" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="Y,Yacute,Ydieresis,uni040E" + k="-6" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="20" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="ampersand" + k="14" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="at" + k="33" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="braceleft" + k="47" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="31" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="dagger" + k="-6" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="germandbls" + k="31" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="guilsinglleft" + k="41" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="hyphen,endash,emdash" + k="6" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="m,n,p,r,ntilde" + k="20" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="ordfeminine" + k="20" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="ordmasculine" + k="20" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="oslash" + k="31" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="plus" + k="6" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="quoteright,quotedblright" + k="6" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="25" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="27" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="w" + k="25" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="27" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="X,uni0416,uni0425,uni046A" + k="-4" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="Z,Zcaron" + k="-14" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="bracketright,braceright" + k="-20" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="daggerdbl" + k="-6" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="f,fi,fl,f_f_i,f_f_l" + k="6" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="greater" + k="-27" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="guilsinglright" + k="14" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="parenright" + k="-14" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="s,scaron,uni0455" + k="6" /> + <hkern g1="F" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="10" /> + <hkern g1="F" + g2="J" + k="78" /> + <hkern g1="F" + g2="Oslash" + k="4" /> + <hkern g1="F" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="-68" /> + <hkern g1="F" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="6" /> + <hkern g1="F" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-10" /> + <hkern g1="F" + g2="Y,Yacute,Ydieresis,uni040E" + k="-10" /> + <hkern g1="F" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="72" /> + <hkern g1="F" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="68" /> + <hkern g1="F" + g2="guilsinglleft" + k="41" /> + <hkern g1="F" + g2="hyphen,endash,emdash" + k="27" /> + <hkern g1="F" + g2="m,n,p,r,ntilde" + k="61" /> + <hkern g1="F" + g2="oslash" + k="78" /> + <hkern g1="F" + g2="quotedbl,quotesingle" + k="-41" /> + <hkern g1="F" + g2="quoteleft,quotedblleft" + k="-35" /> + <hkern g1="F" + g2="quoteright,quotedblright" + k="-20" /> + <hkern g1="F" + g2="quotesinglbase,quotedblbase" + k="123" /> + <hkern g1="F" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="86" /> + <hkern g1="F" + g2="w" + k="37" /> + <hkern g1="F" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="45" /> + <hkern g1="F" + g2="Eth" + k="-6" /> + <hkern g1="F" + g2="Z,Zcaron" + k="-27" /> + <hkern g1="F" + g2="bracketright,braceright" + k="-41" /> + <hkern g1="F" + g2="colon,semicolon" + k="6" /> + <hkern g1="F" + g2="f,fi,fl,f_f_i,f_f_l" + k="14" /> + <hkern g1="F" + g2="guilsinglright" + k="20" /> + <hkern g1="F" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="102" /> + <hkern g1="F" + g2="comma,period,ellipsis" + k="211" /> + <hkern g1="F" + g2="s,scaron,uni0455" + k="31" /> + <hkern g1="F" + g2="b,h,k,l,thorn" + k="-6" /> + <hkern g1="F" + g2="z,zcaron" + k="27" /> + <hkern g1="F" + g2="i,igrave,iacute,icircumflex,idieresis,uni0469" + k="6" /> + <hkern g1="F" + g2="j" + k="10" /> + <hkern g1="G" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="16" /> + <hkern g1="G" + g2="V,uni0423,uni0474" + k="35" /> + <hkern g1="G" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="27" /> + <hkern g1="G" + g2="Y,Yacute,Ydieresis,uni040E" + k="66" /> + <hkern g1="G" + g2="ampersand" + k="35" /> + <hkern g1="G" + g2="asciitilde" + k="-6" /> + <hkern g1="G" + g2="backslash" + k="61" /> + <hkern g1="G" + g2="braceleft" + k="14" /> + <hkern g1="G" + g2="germandbls" + k="6" /> + <hkern g1="G" + g2="guilsinglleft" + k="20" /> + <hkern g1="G" + g2="ordmasculine" + k="6" /> + <hkern g1="G" + g2="question" + k="6" /> + <hkern g1="G" + g2="questiondown" + k="-27" /> + <hkern g1="G" + g2="quoteleft,quotedblleft" + k="6" /> + <hkern g1="G" + g2="quoteright,quotedblright" + k="14" /> + <hkern g1="G" + g2="slash" + k="-6" /> + <hkern g1="G" + g2="t" + k="-33" /> + <hkern g1="G" + g2="trademark" + k="27" /> + <hkern g1="G" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="6" /> + <hkern g1="G" + g2="underscore" + k="-20" /> + <hkern g1="G" + g2="X,uni0416,uni0425,uni046A" + k="4" /> + <hkern g1="G" + g2="bracketright,braceright" + k="6" /> + <hkern g1="G" + g2="exclamdown" + k="6" /> + <hkern g1="G" + g2="greater" + k="-35" /> + <hkern g1="G" + g2="guilsinglright" + k="6" /> + <hkern g1="G" + g2="parenright" + k="6" /> + <hkern g1="G" + g2="s,scaron,uni0455" + k="-6" /> + <hkern g1="G" + g2="x,uni0445,uni04B3" + k="-4" /> + <hkern g1="G" + g2="lslash" + k="-27" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="6" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="ampersand" + k="6" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="at" + k="14" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="braceleft" + k="41" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="bullet" + k="14" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="4" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="germandbls" + k="10" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="guilsinglleft" + k="14" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="ordfeminine" + k="14" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="ordmasculine" + k="6" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="oslash" + k="6" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="questiondown" + k="41" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="4" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="w" + k="4" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="greater" + k="-14" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="lslash" + k="6" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="J" + k="4" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="-4" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="4" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="ampersand" + k="20" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="asciitilde" + k="6" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="at" + k="14" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="backslash" + k="6" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="braceleft" + k="41" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="bullet" + k="41" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="10" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="divide" + k="6" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="germandbls" + k="27" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="guilsinglleft" + k="27" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="hyphen,endash,emdash" + k="6" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="less" + k="6" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="m,n,p,r,ntilde" + k="10" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="ordfeminine" + k="6" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="ordmasculine" + k="6" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="oslash" + k="10" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="periodcentered" + k="20" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="plus" + k="6" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="questiondown" + k="61" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="quotesinglbase,quotedblbase" + k="82" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="slash" + k="61" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="trademark" + k="6" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="6" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="underscore" + k="35" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="X,uni0416,uni0425,uni046A" + k="4" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="bracketright,braceright" + k="6" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="colon,semicolon" + k="10" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="equal" + k="4" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="exclamdown" + k="27" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="guilsinglright" + k="6" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="parenright" + k="6" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="57" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="comma,period,ellipsis" + k="61" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="s,scaron,uni0455" + k="4" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="florin" + k="102" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="lslash" + k="6" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="109" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="J" + k="20" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="Oslash" + k="55" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="S,Scaron,uni0405" + k="25" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="-4" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="16" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="V,uni0423,uni0474" + k="20" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="20" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="37" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="ampersand" + k="94" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="asciicircum" + k="41" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="asciitilde" + k="129" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="asterisk" + k="14" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="at" + k="102" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="backslash" + k="-14" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="braceleft" + k="88" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="bullet" + k="96" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="78" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="copyright,registered" + k="117" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="divide" + k="61" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="germandbls" + k="61" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="guilsinglleft" + k="129" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="hyphen,endash,emdash" + k="147" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="less" + k="117" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="m,n,p,r,ntilde" + k="27" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="ordfeminine" + k="82" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="ordmasculine" + k="68" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="oslash" + k="47" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="paragraph" + k="29" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="parenleft" + k="14" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="periodcentered" + k="82" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="plus" + k="76" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="question" + k="20" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="questiondown" + k="-35" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="quoteleft,quotedblleft" + k="20" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="quoteright,quotedblright" + k="6" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="slash" + k="-35" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="t" + k="80" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="trademark" + k="-6" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="113" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="underscore" + k="-47" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="113" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="w" + k="98" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="133" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="Eth" + k="20" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="Z,Zcaron" + k="-6" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="bracketright,braceright" + k="-6" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="colon,semicolon" + k="20" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="equal" + k="82" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="f,fi,fl,f_f_i,f_f_l" + k="45" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="greater" + k="-20" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="guilsinglright" + k="57" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="multiply" + k="20" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="parenright" + k="-6" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="section" + k="27" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="14" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="s,scaron,uni0455" + k="20" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="florin" + k="68" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="x,uni0445,uni04B3" + k="14" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="lslash" + k="6" /> + <hkern g1="L,Lslash" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="57" /> + <hkern g1="L,Lslash" + g2="J" + k="-37" /> + <hkern g1="L,Lslash" + g2="Oslash" + k="35" /> + <hkern g1="L,Lslash" + g2="S,Scaron,uni0405" + k="-4" /> + <hkern g1="L,Lslash" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="143" /> + <hkern g1="L,Lslash" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="20" /> + <hkern g1="L,Lslash" + g2="V,uni0423,uni0474" + k="129" /> + <hkern g1="L,Lslash" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="98" /> + <hkern g1="L,Lslash" + g2="Y,Yacute,Ydieresis,uni040E" + k="139" /> + <hkern g1="L,Lslash" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="-6" /> + <hkern g1="L,Lslash" + g2="ampersand" + k="41" /> + <hkern g1="L,Lslash" + g2="asciicircum" + k="88" /> + <hkern g1="L,Lslash" + g2="asciitilde" + k="68" /> + <hkern g1="L,Lslash" + g2="asterisk" + k="143" /> + <hkern g1="L,Lslash" + g2="at" + k="31" /> + <hkern g1="L,Lslash" + g2="backslash" + k="164" /> + <hkern g1="L,Lslash" + g2="braceleft" + k="41" /> + <hkern g1="L,Lslash" + g2="bullet" + k="35" /> + <hkern g1="L,Lslash" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="4" /> + <hkern g1="L,Lslash" + g2="copyright,registered" + k="35" /> + <hkern g1="L,Lslash" + g2="dagger" + k="14" /> + <hkern g1="L,Lslash" + g2="divide" + k="6" /> + <hkern g1="L,Lslash" + g2="germandbls" + k="6" /> + <hkern g1="L,Lslash" + g2="guilsinglleft" + k="41" /> + <hkern g1="L,Lslash" + g2="hyphen,endash,emdash" + k="61" /> + <hkern g1="L,Lslash" + g2="less" + k="61" /> + <hkern g1="L,Lslash" + g2="ordfeminine" + k="135" /> + <hkern g1="L,Lslash" + g2="ordmasculine" + k="135" /> + <hkern g1="L,Lslash" + g2="oslash" + k="6" /> + <hkern g1="L,Lslash" + g2="paragraph" + k="96" /> + <hkern g1="L,Lslash" + g2="periodcentered" + k="14" /> + <hkern g1="L,Lslash" + g2="plus" + k="35" /> + <hkern g1="L,Lslash" + g2="question" + k="102" /> + <hkern g1="L,Lslash" + g2="questiondown" + k="-55" /> + <hkern g1="L,Lslash" + g2="quotedbl,quotesingle" + k="150" /> + <hkern g1="L,Lslash" + g2="quoteleft,quotedblleft" + k="158" /> + <hkern g1="L,Lslash" + g2="quoteright,quotedblright" + k="137" /> + <hkern g1="L,Lslash" + g2="quotesinglbase,quotedblbase" + k="-55" /> + <hkern g1="L,Lslash" + g2="slash" + k="-76" /> + <hkern g1="L,Lslash" + g2="t" + k="41" /> + <hkern g1="L,Lslash" + g2="trademark" + k="231" /> + <hkern g1="L,Lslash" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="35" /> + <hkern g1="L,Lslash" + g2="underscore" + k="-68" /> + <hkern g1="L,Lslash" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="88" /> + <hkern g1="L,Lslash" + g2="w" + k="78" /> + <hkern g1="L,Lslash" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="96" /> + <hkern g1="L,Lslash" + g2="Z,Zcaron" + k="-20" /> + <hkern g1="L,Lslash" + g2="bracketright,braceright" + k="-14" /> + <hkern g1="L,Lslash" + g2="equal" + k="20" /> + <hkern g1="L,Lslash" + g2="f,fi,fl,f_f_i,f_f_l" + k="20" /> + <hkern g1="L,Lslash" + g2="greater" + k="-20" /> + <hkern g1="L,Lslash" + g2="multiply" + k="-6" /> + <hkern g1="L,Lslash" + g2="parenright" + k="-14" /> + <hkern g1="L,Lslash" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="-27" /> + <hkern g1="L,Lslash" + g2="comma,period,ellipsis" + k="-20" /> + <hkern g1="L,Lslash" + g2="s,scaron,uni0455" + k="-10" /> + <hkern g1="L,Lslash" + g2="z,zcaron" + k="-10" /> + <hkern g1="L,Lslash" + g2="j" + k="-6" /> + <hkern g1="L,Lslash" + g2="bar" + k="-27" /> + <hkern g1="L,Lslash" + g2="brokenbar" + k="-27" /> + <hkern g1="Oslash" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="35" /> + <hkern g1="Oslash" + g2="V,uni0423,uni0474" + k="45" /> + <hkern g1="Oslash" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="41" /> + <hkern g1="Oslash" + g2="Y,Yacute,Ydieresis,uni040E" + k="86" /> + <hkern g1="Oslash" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="6" /> + <hkern g1="Oslash" + g2="ampersand" + k="14" /> + <hkern g1="Oslash" + g2="backslash" + k="61" /> + <hkern g1="Oslash" + g2="dagger" + k="-6" /> + <hkern g1="Oslash" + g2="germandbls" + k="37" /> + <hkern g1="Oslash" + g2="ordfeminine" + k="14" /> + <hkern g1="Oslash" + g2="questiondown" + k="82" /> + <hkern g1="Oslash" + g2="quotesinglbase,quotedblbase" + k="68" /> + <hkern g1="Oslash" + g2="slash" + k="82" /> + <hkern g1="Oslash" + g2="trademark" + k="14" /> + <hkern g1="Oslash" + g2="underscore" + k="82" /> + <hkern g1="Oslash" + g2="X,uni0416,uni0425,uni046A" + k="49" /> + <hkern g1="Oslash" + g2="Z,Zcaron" + k="16" /> + <hkern g1="Oslash" + g2="bracketright,braceright" + k="47" /> + <hkern g1="Oslash" + g2="daggerdbl" + k="-6" /> + <hkern g1="Oslash" + g2="equal" + k="-6" /> + <hkern g1="Oslash" + g2="f,fi,fl,f_f_i,f_f_l" + k="-6" /> + <hkern g1="Oslash" + g2="guilsinglright" + k="6" /> + <hkern g1="Oslash" + g2="parenright" + k="47" /> + <hkern g1="Oslash" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="57" /> + <hkern g1="Oslash" + g2="comma,period,ellipsis" + k="68" /> + <hkern g1="Oslash" + g2="florin" + k="76" /> + <hkern g1="Oslash" + g2="lslash" + k="-6" /> + <hkern g1="P,uni0420" + g2="J" + k="137" /> + <hkern g1="P,uni0420" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="4" /> + <hkern g1="P,uni0420" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="10" /> + <hkern g1="P,uni0420" + g2="Y,Yacute,Ydieresis,uni040E" + k="20" /> + <hkern g1="P,uni0420" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="47" /> + <hkern g1="P,uni0420" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="72" /> + <hkern g1="P,uni0420" + g2="guilsinglleft" + k="55" /> + <hkern g1="P,uni0420" + g2="hyphen,endash,emdash" + k="20" /> + <hkern g1="P,uni0420" + g2="m,n,p,r,ntilde" + k="27" /> + <hkern g1="P,uni0420" + g2="oslash" + k="68" /> + <hkern g1="P,uni0420" + g2="quotedbl,quotesingle" + k="-20" /> + <hkern g1="P,uni0420" + g2="quoteleft,quotedblleft" + k="-20" /> + <hkern g1="P,uni0420" + g2="quoteright,quotedblright" + k="-14" /> + <hkern g1="P,uni0420" + g2="quotesinglbase,quotedblbase" + k="123" /> + <hkern g1="P,uni0420" + g2="t" + k="-20" /> + <hkern g1="P,uni0420" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="41" /> + <hkern g1="P,uni0420" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-14" /> + <hkern g1="P,uni0420" + g2="Eth" + k="-14" /> + <hkern g1="P,uni0420" + g2="Z,Zcaron" + k="14" /> + <hkern g1="P,uni0420" + g2="bracketright,braceright" + k="6" /> + <hkern g1="P,uni0420" + g2="f,fi,fl,f_f_i,f_f_l" + k="-14" /> + <hkern g1="P,uni0420" + g2="guilsinglright" + k="-14" /> + <hkern g1="P,uni0420" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="119" /> + <hkern g1="P,uni0420" + g2="comma,period,ellipsis" + k="266" /> + <hkern g1="P,uni0420" + g2="s,scaron,uni0455" + k="41" /> + <hkern g1="P,uni0420" + g2="b,h,k,l,thorn" + k="16" /> + <hkern g1="P,uni0420" + g2="z,zcaron" + k="14" /> + <hkern g1="P,uni0420" + g2="j" + k="6" /> + <hkern g1="P,uni0420" + g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Ntilde,Thorn,IJ,uni01C4,uni01C7,uni01CA,uni01F1" + k="4" /> + <hkern g1="Q" + g2="J" + k="-6" /> + <hkern g1="Q" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="37" /> + <hkern g1="Q" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="45" /> + <hkern g1="Q" + g2="Y,Yacute,Ydieresis,uni040E" + k="88" /> + <hkern g1="Q" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="-4" /> + <hkern g1="Q" + g2="guilsinglleft" + k="6" /> + <hkern g1="Q" + g2="quoteleft,quotedblleft" + k="14" /> + <hkern g1="Q" + g2="quoteright,quotedblright" + k="27" /> + <hkern g1="Q" + g2="t" + k="-10" /> + <hkern g1="Q" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="4" /> + <hkern g1="Q" + g2="w" + k="6" /> + <hkern g1="Q" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="6" /> + <hkern g1="Q" + g2="Eth" + k="-6" /> + <hkern g1="Q" + g2="Z,Zcaron" + k="-4" /> + <hkern g1="Q" + g2="bracketright,braceright" + k="35" /> + <hkern g1="Q" + g2="f,fi,fl,f_f_i,f_f_l" + k="-6" /> + <hkern g1="Q" + g2="guilsinglright" + k="27" /> + <hkern g1="Q" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="20" /> + <hkern g1="Q" + g2="comma,period,ellipsis" + k="35" /> + <hkern g1="Q" + g2="z,zcaron" + k="-4" /> + <hkern g1="Q" + g2="j" + k="-14" /> + <hkern g1="R" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="10" /> + <hkern g1="R" + g2="J" + k="27" /> + <hkern g1="R" + g2="Oslash" + k="6" /> + <hkern g1="R" + g2="V,uni0423,uni0474" + k="10" /> + <hkern g1="R" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="14" /> + <hkern g1="R" + g2="Y,Yacute,Ydieresis,uni040E" + k="20" /> + <hkern g1="R" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="14" /> + <hkern g1="R" + g2="ampersand" + k="20" /> + <hkern g1="R" + g2="asciicircum" + k="-14" /> + <hkern g1="R" + g2="asciitilde" + k="14" /> + <hkern g1="R" + g2="asterisk" + k="-14" /> + <hkern g1="R" + g2="at" + k="25" /> + <hkern g1="R" + g2="backslash" + k="31" /> + <hkern g1="R" + g2="braceleft" + k="20" /> + <hkern g1="R" + g2="bullet" + k="35" /> + <hkern g1="R" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="35" /> + <hkern g1="R" + g2="dagger" + k="-27" /> + <hkern g1="R" + g2="divide" + k="6" /> + <hkern g1="R" + g2="germandbls" + k="20" /> + <hkern g1="R" + g2="guilsinglleft" + k="35" /> + <hkern g1="R" + g2="hyphen,endash,emdash" + k="35" /> + <hkern g1="R" + g2="less" + k="6" /> + <hkern g1="R" + g2="m,n,p,r,ntilde" + k="6" /> + <hkern g1="R" + g2="ordfeminine" + k="27" /> + <hkern g1="R" + g2="oslash" + k="47" /> + <hkern g1="R" + g2="periodcentered" + k="6" /> + <hkern g1="R" + g2="plus" + k="20" /> + <hkern g1="R" + g2="quoteleft,quotedblleft" + k="-14" /> + <hkern g1="R" + g2="t" + k="-10" /> + <hkern g1="R" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="31" /> + <hkern g1="R" + g2="underscore" + k="-20" /> + <hkern g1="R" + g2="w" + k="14" /> + <hkern g1="R" + g2="Z,Zcaron" + k="-4" /> + <hkern g1="R" + g2="bracketright,braceright" + k="-14" /> + <hkern g1="R" + g2="daggerdbl" + k="-27" /> + <hkern g1="R" + g2="f,fi,fl,f_f_i,f_f_l" + k="-4" /> + <hkern g1="R" + g2="greater" + k="-47" /> + <hkern g1="R" + g2="multiply" + k="-20" /> + <hkern g1="R" + g2="parenright" + k="-6" /> + <hkern g1="R" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="6" /> + <hkern g1="R" + g2="comma,period,ellipsis" + k="20" /> + <hkern g1="R" + g2="s,scaron,uni0455" + k="6" /> + <hkern g1="R" + g2="florin" + k="68" /> + <hkern g1="R" + g2="x,uni0445,uni04B3" + k="-14" /> + <hkern g1="R" + g2="lslash" + k="10" /> + <hkern g1="S,Scaron,uni0405" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="6" /> + <hkern g1="S,Scaron,uni0405" + g2="J" + k="-14" /> + <hkern g1="S,Scaron,uni0405" + g2="Oslash" + k="6" /> + <hkern g1="S,Scaron,uni0405" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="6" /> + <hkern g1="S,Scaron,uni0405" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="6" /> + <hkern g1="S,Scaron,uni0405" + g2="V,uni0423,uni0474" + k="4" /> + <hkern g1="S,Scaron,uni0405" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="4" /> + <hkern g1="S,Scaron,uni0405" + g2="Y,Yacute,Ydieresis,uni040E" + k="31" /> + <hkern g1="S,Scaron,uni0405" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="6" /> + <hkern g1="S,Scaron,uni0405" + g2="ampersand" + k="14" /> + <hkern g1="S,Scaron,uni0405" + g2="asciicircum" + k="6" /> + <hkern g1="S,Scaron,uni0405" + g2="backslash" + k="47" /> + <hkern g1="S,Scaron,uni0405" + g2="braceleft" + k="27" /> + <hkern g1="S,Scaron,uni0405" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="14" /> + <hkern g1="S,Scaron,uni0405" + g2="germandbls" + k="51" /> + <hkern g1="S,Scaron,uni0405" + g2="guilsinglleft" + k="6" /> + <hkern g1="S,Scaron,uni0405" + g2="hyphen,endash,emdash" + k="6" /> + <hkern g1="S,Scaron,uni0405" + g2="m,n,p,r,ntilde" + k="43" /> + <hkern g1="S,Scaron,uni0405" + g2="ordfeminine" + k="27" /> + <hkern g1="S,Scaron,uni0405" + g2="ordmasculine" + k="20" /> + <hkern g1="S,Scaron,uni0405" + g2="oslash" + k="14" /> + <hkern g1="S,Scaron,uni0405" + g2="questiondown" + k="14" /> + <hkern g1="S,Scaron,uni0405" + g2="quoteleft,quotedblleft" + k="6" /> + <hkern g1="S,Scaron,uni0405" + g2="quotesinglbase,quotedblbase" + k="14" /> + <hkern g1="S,Scaron,uni0405" + g2="slash" + k="20" /> + <hkern g1="S,Scaron,uni0405" + g2="t" + k="2" /> + <hkern g1="S,Scaron,uni0405" + g2="trademark" + k="14" /> + <hkern g1="S,Scaron,uni0405" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="37" /> + <hkern g1="S,Scaron,uni0405" + g2="underscore" + k="14" /> + <hkern g1="S,Scaron,uni0405" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="41" /> + <hkern g1="S,Scaron,uni0405" + g2="w" + k="35" /> + <hkern g1="S,Scaron,uni0405" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="47" /> + <hkern g1="S,Scaron,uni0405" + g2="X,uni0416,uni0425,uni046A" + k="14" /> + <hkern g1="S,Scaron,uni0405" + g2="Z,Zcaron" + k="-6" /> + <hkern g1="S,Scaron,uni0405" + g2="bracketright,braceright" + k="-12" /> + <hkern g1="S,Scaron,uni0405" + g2="colon,semicolon" + k="6" /> + <hkern g1="S,Scaron,uni0405" + g2="daggerdbl" + k="-6" /> + <hkern g1="S,Scaron,uni0405" + g2="exclamdown" + k="6" /> + <hkern g1="S,Scaron,uni0405" + g2="f,fi,fl,f_f_i,f_f_l" + k="20" /> + <hkern g1="S,Scaron,uni0405" + g2="greater" + k="-33" /> + <hkern g1="S,Scaron,uni0405" + g2="guilsinglright" + k="6" /> + <hkern g1="S,Scaron,uni0405" + g2="multiply" + k="6" /> + <hkern g1="S,Scaron,uni0405" + g2="parenright" + k="6" /> + <hkern g1="S,Scaron,uni0405" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="20" /> + <hkern g1="S,Scaron,uni0405" + g2="comma,period,ellipsis" + k="6" /> + <hkern g1="S,Scaron,uni0405" + g2="b,h,k,l,thorn" + k="10" /> + <hkern g1="S,Scaron,uni0405" + g2="florin" + k="96" /> + <hkern g1="S,Scaron,uni0405" + g2="x,uni0445,uni04B3" + k="20" /> + <hkern g1="S,Scaron,uni0405" + g2="z,zcaron" + k="6" /> + <hkern g1="S,Scaron,uni0405" + g2="Lslash" + k="-6" /> + <hkern g1="S,Scaron,uni0405" + g2="lslash" + k="-4" /> + <hkern g1="S,Scaron,uni0405" + g2="i,igrave,iacute,icircumflex,idieresis,uni0469" + k="6" /> + <hkern g1="S,Scaron,uni0405" + g2="j" + k="6" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="45" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="J" + k="152" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="Oslash" + k="35" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="-41" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="-4" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="V,uni0423,uni0474" + k="-41" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-41" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="Y,Yacute,Ydieresis,uni040E" + k="-41" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="174" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="ampersand" + k="68" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="asciitilde" + k="137" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="asterisk" + k="-41" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="at" + k="51" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="backslash" + k="-68" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="braceleft" + k="68" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="bullet" + k="158" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="195" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="copyright,registered" + k="20" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="dagger" + k="-47" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="divide" + k="102" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="germandbls" + k="68" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="guilsinglleft" + k="240" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="hyphen,endash,emdash" + k="129" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="less" + k="96" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="m,n,p,r,ntilde" + k="137" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="oslash" + k="160" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="paragraph" + k="-27" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="periodcentered" + k="102" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="plus" + k="109" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="question" + k="-35" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="questiondown" + k="143" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="quotedbl,quotesingle" + k="-55" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="quoteleft,quotedblleft" + k="-61" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="quoteright,quotedblright" + k="-61" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="quotesinglbase,quotedblbase" + k="178" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="slash" + k="164" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="t" + k="47" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="trademark" + k="-55" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="180" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="underscore" + k="88" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="129" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="w" + k="135" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="129" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="X,uni0416,uni0425,uni046A" + k="-16" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="Z,Zcaron" + k="-14" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="bracketright,braceright" + k="-27" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="colon,semicolon" + k="113" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="daggerdbl" + k="-35" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="equal" + k="61" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="exclamdown" + k="55" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="f,fi,fl,f_f_i,f_f_l" + k="53" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="guilsinglright" + k="143" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="multiply" + k="61" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="parenright" + k="-27" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="section" + k="-27" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="133" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="comma,period,ellipsis" + k="219" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="s,scaron,uni0455" + k="143" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="b,h,k,l,thorn" + k="-4" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="florin" + k="205" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="x,uni0445,uni04B3" + k="121" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="z,zcaron" + k="82" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="lslash" + k="41" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="i,igrave,iacute,icircumflex,idieresis,uni0469" + k="27" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="j" + k="14" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="bar" + k="-35" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="brokenbar" + k="-41" /> + <hkern g1="Thorn" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="-6" /> + <hkern g1="Thorn" + g2="J" + k="16" /> + <hkern g1="Thorn" + g2="Oslash" + k="-6" /> + <hkern g1="Thorn" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="45" /> + <hkern g1="Thorn" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="35" /> + <hkern g1="Thorn" + g2="Y,Yacute,Ydieresis,uni040E" + k="61" /> + <hkern g1="Thorn" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="-16" /> + <hkern g1="Thorn" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="-16" /> + <hkern g1="Thorn" + g2="oslash" + k="6" /> + <hkern g1="Thorn" + g2="quoteleft,quotedblleft" + k="14" /> + <hkern g1="Thorn" + g2="quotesinglbase,quotedblbase" + k="70" /> + <hkern g1="Thorn" + g2="t" + k="-41" /> + <hkern g1="Thorn" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="4" /> + <hkern g1="Thorn" + g2="w" + k="-14" /> + <hkern g1="Thorn" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-14" /> + <hkern g1="Thorn" + g2="Eth" + k="-20" /> + <hkern g1="Thorn" + g2="Z,Zcaron" + k="16" /> + <hkern g1="Thorn" + g2="bracketright,braceright" + k="27" /> + <hkern g1="Thorn" + g2="f,fi,fl,f_f_i,f_f_l" + k="-35" /> + <hkern g1="Thorn" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="76" /> + <hkern g1="Thorn" + g2="comma,period,ellipsis" + k="68" /> + <hkern g1="Thorn" + g2="s,scaron,uni0455" + k="-14" /> + <hkern g1="Thorn" + g2="z,zcaron" + k="-27" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="51" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="J" + k="123" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="Oslash" + k="51" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="S,Scaron,uni0405" + k="10" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="-41" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-20" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="Y,Yacute,Ydieresis,uni040E" + k="-20" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="119" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="123" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="copyright,registered" + k="41" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="guilsinglleft" + k="129" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="hyphen,endash,emdash" + k="123" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="m,n,p,r,ntilde" + k="82" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="oslash" + k="123" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="quotedbl,quotesingle" + k="-35" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="quoteleft,quotedblleft" + k="-20" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="quoteright,quotedblright" + k="-27" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="quotesinglbase,quotedblbase" + k="193" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="t" + k="14" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="82" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="w" + k="27" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="25" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="bracketright,braceright" + k="-35" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="colon,semicolon" + k="96" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="f,fi,fl,f_f_i,f_f_l" + k="4" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="guilsinglright" + k="76" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="119" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="comma,period,ellipsis" + k="225" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="s,scaron,uni0455" + k="70" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="z,zcaron" + k="37" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="45" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="J" + k="109" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="Oslash" + k="47" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="S,Scaron,uni0405" + k="4" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="-41" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="V,uni0423,uni0474" + k="-20" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-20" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="Y,Yacute,Ydieresis,uni040E" + k="-20" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="61" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="ampersand" + k="29" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="asciitilde" + k="41" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="asterisk" + k="-20" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="at" + k="41" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="backslash" + k="-41" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="braceleft" + k="55" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="bullet" + k="55" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="76" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="copyright,registered" + k="14" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="dagger" + k="-14" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="divide" + k="45" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="germandbls" + k="49" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="guilsinglleft" + k="82" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="hyphen,endash,emdash" + k="68" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="less" + k="41" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="m,n,p,r,ntilde" + k="61" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="oslash" + k="88" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="periodcentered" + k="55" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="plus" + k="61" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="questiondown" + k="137" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="quotedbl,quotesingle" + k="-27" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="quoteleft,quotedblleft" + k="-35" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="quoteright,quotedblright" + k="-35" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="quotesinglbase,quotedblbase" + k="170" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="slash" + k="137" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="t" + k="6" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="trademark" + k="-41" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="66" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="underscore" + k="96" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="14" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="w" + k="20" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="25" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="Eth" + k="4" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="X,uni0416,uni0425,uni046A" + k="-20" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="Z,Zcaron" + k="-4" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="bracketright,braceright" + k="-27" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="colon,semicolon" + k="27" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="daggerdbl" + k="-6" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="equal" + k="20" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="exclamdown" + k="35" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="f,fi,fl,f_f_i,f_f_l" + k="4" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="greater" + k="-14" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="guilsinglright" + k="20" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="multiply" + k="6" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="parenright" + k="-27" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="88" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="comma,period,ellipsis" + k="190" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="s,scaron,uni0455" + k="41" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="florin" + k="123" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="x,uni0445,uni04B3" + k="4" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="z,zcaron" + k="10" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="lslash" + k="6" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="bar" + k="-35" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="brokenbar" + k="-35" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="59" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="J" + k="41" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="Oslash" + k="49" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="S,Scaron,uni0405" + k="14" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="-16" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="4" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-20" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="Y,Yacute,Ydieresis,uni040E" + k="-20" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="14" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="66" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="copyright,registered" + k="70" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="guilsinglleft" + k="164" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="hyphen,endash,emdash" + k="111" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="m,n,p,r,ntilde" + k="4" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="oslash" + k="35" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="quotedbl,quotesingle" + k="-14" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="quoteleft,quotedblleft" + k="-14" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="quoteright,quotedblright" + k="-14" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="t" + k="20" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="41" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="w" + k="45" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="51" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="Z,Zcaron" + k="-14" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="bracketright,braceright" + k="-27" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="colon,semicolon" + k="14" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="f,fi,fl,f_f_i,f_f_l" + k="6" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="guilsinglright" + k="61" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="20" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="comma,period,ellipsis" + k="6" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="s,scaron,uni0455" + k="14" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="z,zcaron" + k="-6" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="96" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="J" + k="172" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="Oslash" + k="86" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="S,Scaron,uni0405" + k="31" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="-41" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="V,uni0423,uni0474" + k="-20" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-20" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="Y,Yacute,Ydieresis,uni040E" + k="-20" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="152" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="ampersand" + k="123" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="asciicircum" + k="14" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="asciitilde" + k="129" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="asterisk" + k="6" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="at" + k="96" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="backslash" + k="-27" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="braceleft" + k="55" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="bullet" + k="164" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="195" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="copyright,registered" + k="70" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="divide" + k="109" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="germandbls" + k="92" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="guilsinglleft" + k="207" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="hyphen,endash,emdash" + k="178" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="less" + k="137" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="m,n,p,r,ntilde" + k="129" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="ordfeminine" + k="14" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="ordmasculine" + k="14" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="oslash" + k="184" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="periodcentered" + k="129" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="plus" + k="117" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="questiondown" + k="205" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="quotedbl,quotesingle" + k="-14" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="quoteleft,quotedblleft" + k="-27" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="quoteright,quotedblright" + k="-27" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="quotesinglbase,quotedblbase" + k="225" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="slash" + k="199" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="t" + k="39" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="trademark" + k="-14" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="133" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="underscore" + k="143" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="92" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="w" + k="106" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="92" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="Eth" + k="14" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="X,uni0416,uni0425,uni046A" + k="-20" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="Z,Zcaron" + k="-6" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="bracketright,braceright" + k="-27" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="colon,semicolon" + k="141" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="equal" + k="68" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="exclamdown" + k="82" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="f,fi,fl,f_f_i,f_f_l" + k="55" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="guilsinglright" + k="90" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="multiply" + k="61" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="parenright" + k="-27" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="152" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="comma,period,ellipsis" + k="266" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="s,scaron,uni0455" + k="139" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="b,h,k,l,thorn" + k="4" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="florin" + k="184" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="x,uni0445,uni04B3" + k="68" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="z,zcaron" + k="82" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="Lslash" + k="14" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="lslash" + k="14" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="i,igrave,iacute,icircumflex,idieresis,uni0469" + k="14" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="j" + k="6" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="bar" + k="-20" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="brokenbar" + k="-20" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="41" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="Oslash" + k="31" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="-35" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="Y,Yacute,Ydieresis,uni040E" + k="-6" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="ampersand" + k="14" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="asciitilde" + k="6" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="at" + k="20" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="bullet" + k="27" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="14" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="copyright,registered" + k="6" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="dagger" + k="-6" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="divide" + k="6" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="germandbls" + k="6" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="guilsinglleft" + k="55" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="hyphen,endash,emdash" + k="74" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="less" + k="10" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="oslash" + k="6" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="periodcentered" + k="27" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="plus" + k="16" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="question" + k="-6" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="questiondown" + k="-6" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="trademark" + k="-6" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="14" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="underscore" + k="-27" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="4" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="w" + k="10" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="27" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="X,uni0416,uni0425,uni046A" + k="-14" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="daggerdbl" + k="-6" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="f,fi,fl,f_f_i,f_f_l" + k="-10" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="multiply" + k="-6" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="florin" + k="27" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="bar" + k="-6" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="brokenbar" + k="-6" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="ampersand" + k="35" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="asterisk" + k="41" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="at" + k="20" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="backslash" + k="123" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="ordfeminine" + k="27" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="ordmasculine" + k="27" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="quoteleft,quotedblleft" + k="76" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="quoteright,quotedblright" + k="41" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="trademark" + k="125" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="16" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="underscore" + k="-47" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="25" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="4" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="bracketright,braceright" + k="6" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="bullet" + k="4" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="2" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="colon,semicolon" + k="4" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="dagger" + k="6" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="daggerdbl" + k="6" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="exclam" + k="14" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="paragraph" + k="6" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="parenright" + k="6" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="question" + k="14" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="quotedbl,quotesingle" + k="14" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="t" + k="4" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="10" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="w" + k="6" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="ampersand" + k="35" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="asterisk" + k="68" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="backslash" + k="199" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="ordfeminine" + k="45" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="ordmasculine" + k="41" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="quoteleft,quotedblleft" + k="82" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="quoteright,quotedblright" + k="82" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="trademark" + k="131" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="6" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="underscore" + k="47" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="45" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="bracketright,braceright" + k="55" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="colon,semicolon" + k="14" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="dagger" + k="6" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="daggerdbl" + k="-6" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="exclam" + k="14" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="parenright" + k="55" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="question" + k="55" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="quotedbl,quotesingle" + k="47" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="t" + k="6" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="31" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="w" + k="25" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="comma,period,ellipsis" + k="35" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="germandbls" + k="6" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="lslash" + k="-27" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="quotesinglbase,quotedblbase" + k="27" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="slash" + k="86" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="x,uni0445,uni04B3" + k="31" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="z,zcaron" + k="6" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="asciitilde" + k="-6" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="exclamdown" + k="14" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="florin" + k="29" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="guilsinglright" + k="6" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="questiondown" + k="29" /> + <hkern g1="c,ccedilla,uni0441" + g2="ampersand" + k="29" /> + <hkern g1="c,ccedilla,uni0441" + g2="asterisk" + k="27" /> + <hkern g1="c,ccedilla,uni0441" + g2="at" + k="6" /> + <hkern g1="c,ccedilla,uni0441" + g2="backslash" + k="150" /> + <hkern g1="c,ccedilla,uni0441" + g2="ordfeminine" + k="25" /> + <hkern g1="c,ccedilla,uni0441" + g2="ordmasculine" + k="20" /> + <hkern g1="c,ccedilla,uni0441" + g2="quoteleft,quotedblleft" + k="41" /> + <hkern g1="c,ccedilla,uni0441" + g2="quoteright,quotedblright" + k="29" /> + <hkern g1="c,ccedilla,uni0441" + g2="trademark" + k="90" /> + <hkern g1="c,ccedilla,uni0441" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="14" /> + <hkern g1="c,ccedilla,uni0441" + g2="underscore" + k="14" /> + <hkern g1="c,ccedilla,uni0441" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="16" /> + <hkern g1="c,ccedilla,uni0441" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="6" /> + <hkern g1="c,ccedilla,uni0441" + g2="bracketright,braceright" + k="14" /> + <hkern g1="c,ccedilla,uni0441" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="10" /> + <hkern g1="c,ccedilla,uni0441" + g2="parenright" + k="20" /> + <hkern g1="c,ccedilla,uni0441" + g2="question" + k="6" /> + <hkern g1="c,ccedilla,uni0441" + g2="quotedbl,quotesingle" + k="20" /> + <hkern g1="c,ccedilla,uni0441" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="16" /> + <hkern g1="c,ccedilla,uni0441" + g2="w" + k="16" /> + <hkern g1="c,ccedilla,uni0441" + g2="comma,period,ellipsis" + k="6" /> + <hkern g1="c,ccedilla,uni0441" + g2="quotesinglbase,quotedblbase" + k="16" /> + <hkern g1="c,ccedilla,uni0441" + g2="slash" + k="35" /> + <hkern g1="c,ccedilla,uni0441" + g2="x,uni0445,uni04B3" + k="14" /> + <hkern g1="c,ccedilla,uni0441" + g2="questiondown" + k="20" /> + <hkern g1="c,ccedilla,uni0441" + g2="oslash" + k="10" /> + <hkern g1="c,ccedilla,uni0441" + g2="hyphen,endash,emdash" + k="4" /> + <hkern g1="d,l,fl" + g2="ampersand" + k="14" /> + <hkern g1="d,l,fl" + g2="backslash" + k="6" /> + <hkern g1="d,l,fl" + g2="ordfeminine" + k="14" /> + <hkern g1="d,l,fl" + g2="ordmasculine" + k="6" /> + <hkern g1="d,l,fl" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="6" /> + <hkern g1="d,l,fl" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="4" /> + <hkern g1="d,l,fl" + g2="dagger" + k="-6" /> + <hkern g1="d,l,fl" + g2="daggerdbl" + k="-6" /> + <hkern g1="d,l,fl" + g2="comma,period,ellipsis" + k="6" /> + <hkern g1="d,l,fl" + g2="germandbls" + k="6" /> + <hkern g1="d,l,fl" + g2="exclamdown" + k="6" /> + <hkern g1="d,l,fl" + g2="questiondown" + k="6" /> + <hkern g1="d,l,fl" + g2="guilsinglleft" + k="6" /> + <hkern g1="d,l,fl" + g2="periodcentered" + k="6" /> + <hkern g1="d,l,fl" + g2="plus" + k="14" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="ampersand" + k="35" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="asterisk" + k="41" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="backslash" + k="150" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="ordfeminine" + k="35" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="ordmasculine" + k="41" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="quoteleft,quotedblleft" + k="76" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="quoteright,quotedblright" + k="82" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="trademark" + k="150" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="20" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="underscore" + k="14" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="16" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="bracketright,braceright" + k="27" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="paragraph" + k="6" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="parenright" + k="35" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="question" + k="47" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="quotedbl,quotesingle" + k="27" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="20" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="w" + k="14" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="comma,period,ellipsis" + k="27" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="germandbls" + k="6" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="lslash" + k="-14" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="quotesinglbase,quotedblbase" + k="20" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="slash" + k="10" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="x,uni0445,uni04B3" + k="14" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="exclamdown" + k="6" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="questiondown" + k="41" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="divide" + k="-6" /> + <hkern g1="f" + g2="asterisk" + k="-82" /> + <hkern g1="f" + g2="at" + k="-10" /> + <hkern g1="f" + g2="backslash" + k="-68" /> + <hkern g1="f" + g2="ordfeminine" + k="-6" /> + <hkern g1="f" + g2="ordmasculine" + k="-14" /> + <hkern g1="f" + g2="quoteleft,quotedblleft" + k="-88" /> + <hkern g1="f" + g2="quoteright,quotedblright" + k="-61" /> + <hkern g1="f" + g2="trademark" + k="-55" /> + <hkern g1="f" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="6" /> + <hkern g1="f" + g2="underscore" + k="55" /> + <hkern g1="f" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-41" /> + <hkern g1="f" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="20" /> + <hkern g1="f" + g2="bracketright,braceright" + k="-47" /> + <hkern g1="f" + g2="bullet" + k="14" /> + <hkern g1="f" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="31" /> + <hkern g1="f" + g2="colon,semicolon" + k="-14" /> + <hkern g1="f" + g2="dagger" + k="-96" /> + <hkern g1="f" + g2="daggerdbl" + k="-82" /> + <hkern g1="f" + g2="exclam" + k="-35" /> + <hkern g1="f" + g2="paragraph" + k="-76" /> + <hkern g1="f" + g2="parenright" + k="-55" /> + <hkern g1="f" + g2="question" + k="-55" /> + <hkern g1="f" + g2="quotedbl,quotesingle" + k="-102" /> + <hkern g1="f" + g2="t" + k="-25" /> + <hkern g1="f" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="-25" /> + <hkern g1="f" + g2="w" + k="-25" /> + <hkern g1="f" + g2="comma,period,ellipsis" + k="117" /> + <hkern g1="f" + g2="lslash" + k="-14" /> + <hkern g1="f" + g2="quotesinglbase,quotedblbase" + k="96" /> + <hkern g1="f" + g2="slash" + k="27" /> + <hkern g1="f" + g2="x,uni0445,uni04B3" + k="-27" /> + <hkern g1="f" + g2="z,zcaron" + k="-35" /> + <hkern g1="f" + g2="asciitilde" + k="14" /> + <hkern g1="f" + g2="exclamdown" + k="-6" /> + <hkern g1="f" + g2="guilsinglright" + k="-14" /> + <hkern g1="f" + g2="questiondown" + k="61" /> + <hkern g1="f" + g2="oslash" + k="31" /> + <hkern g1="f" + g2="hyphen,endash,emdash" + k="14" /> + <hkern g1="f" + g2="guilsinglleft" + k="20" /> + <hkern g1="f" + g2="periodcentered" + k="-6" /> + <hkern g1="f" + g2="plus" + k="14" /> + <hkern g1="f" + g2="asciicircum" + k="-47" /> + <hkern g1="f" + g2="bar" + k="-61" /> + <hkern g1="f" + g2="brokenbar" + k="-82" /> + <hkern g1="f" + g2="copyright,registered" + k="-20" /> + <hkern g1="f" + g2="f,fi,fl,f_f_i,f_f_l" + k="4" /> + <hkern g1="f" + g2="greater" + k="-76" /> + <hkern g1="f" + g2="j" + k="-33" /> + <hkern g1="f" + g2="multiply" + k="-41" /> + <hkern g1="f" + g2="section" + k="-47" /> + <hkern g1="f" + g2="s,scaron,uni0455" + k="-6" /> + <hkern g1="g" + g2="ampersand" + k="29" /> + <hkern g1="g" + g2="backslash" + k="96" /> + <hkern g1="g" + g2="ordfeminine" + k="37" /> + <hkern g1="g" + g2="ordmasculine" + k="4" /> + <hkern g1="g" + g2="quoteleft,quotedblleft" + k="6" /> + <hkern g1="g" + g2="quoteright,quotedblright" + k="20" /> + <hkern g1="g" + g2="trademark" + k="61" /> + <hkern g1="g" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="10" /> + <hkern g1="g" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="10" /> + <hkern g1="g" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="10" /> + <hkern g1="g" + g2="bracketright,braceright" + k="14" /> + <hkern g1="g" + g2="exclam" + k="6" /> + <hkern g1="g" + g2="parenright" + k="14" /> + <hkern g1="g" + g2="question" + k="6" /> + <hkern g1="g" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="4" /> + <hkern g1="g" + g2="w" + k="10" /> + <hkern g1="g" + g2="comma,period,ellipsis" + k="6" /> + <hkern g1="g" + g2="germandbls" + k="6" /> + <hkern g1="g" + g2="hyphen,endash,emdash" + k="4" /> + <hkern g1="g" + g2="guilsinglleft" + k="14" /> + <hkern g1="g" + g2="divide" + k="6" /> + <hkern g1="germandbls" + g2="quoteleft,quotedblleft" + k="6" /> + <hkern g1="germandbls" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="14" /> + <hkern g1="germandbls" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="6" /> + <hkern g1="germandbls" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="-4" /> + <hkern g1="germandbls" + g2="bracketright,braceright" + k="-27" /> + <hkern g1="germandbls" + g2="t" + k="4" /> + <hkern g1="germandbls" + g2="w" + k="6" /> + <hkern g1="germandbls" + g2="oslash" + k="-4" /> + <hkern g1="germandbls" + g2="s,scaron,uni0455" + k="-4" /> + <hkern g1="h,m,n,ntilde,uni04BB" + g2="ampersand" + k="14" /> + <hkern g1="h,m,n,ntilde,uni04BB" + g2="asterisk" + k="14" /> + <hkern g1="h,m,n,ntilde,uni04BB" + g2="at" + k="14" /> + <hkern g1="h,m,n,ntilde,uni04BB" + g2="backslash" + k="137" /> + <hkern g1="h,m,n,ntilde,uni04BB" + g2="ordfeminine" + k="27" /> + <hkern g1="h,m,n,ntilde,uni04BB" + g2="ordmasculine" + k="14" /> + <hkern g1="h,m,n,ntilde,uni04BB" + g2="quoteleft,quotedblleft" + k="68" /> + <hkern g1="h,m,n,ntilde,uni04BB" + g2="quoteright,quotedblright" + k="96" /> + <hkern g1="h,m,n,ntilde,uni04BB" + g2="trademark" + k="117" /> + <hkern g1="h,m,n,ntilde,uni04BB" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="14" /> + <hkern g1="h,m,n,ntilde,uni04BB" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="10" /> + <hkern g1="h,m,n,ntilde,uni04BB" + g2="colon,semicolon" + k="4" /> + <hkern g1="h,m,n,ntilde,uni04BB" + g2="dagger" + k="10" /> + <hkern g1="h,m,n,ntilde,uni04BB" + g2="question" + k="35" /> + <hkern g1="h,m,n,ntilde,uni04BB" + g2="quotedbl,quotesingle" + k="6" /> + <hkern g1="h,m,n,ntilde,uni04BB" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="10" /> + <hkern g1="h,m,n,ntilde,uni04BB" + g2="w" + k="4" /> + <hkern g1="h,m,n,ntilde,uni04BB" + g2="germandbls" + k="14" /> + <hkern g1="h,m,n,ntilde,uni04BB" + g2="exclamdown" + k="4" /> + <hkern g1="h,m,n,ntilde,uni04BB" + g2="periodcentered" + k="4" /> + <hkern g1="h,m,n,ntilde,uni04BB" + g2="copyright,registered" + k="6" /> + <hkern g1="h,m,n,ntilde,uni04BB" + g2="equal" + k="6" /> + <hkern g1="i,q,igrave,iacute,icircumflex,idieresis,fi,f_f_i" + g2="ampersand" + k="14" /> + <hkern g1="i,q,igrave,iacute,icircumflex,idieresis,fi,f_f_i" + g2="backslash" + k="88" /> + <hkern g1="i,q,igrave,iacute,icircumflex,idieresis,fi,f_f_i" + g2="trademark" + k="6" /> + <hkern g1="i,q,igrave,iacute,icircumflex,idieresis,fi,f_f_i" + g2="question" + k="6" /> + <hkern g1="i,q,igrave,iacute,icircumflex,idieresis,fi,f_f_i" + g2="quotesinglbase,quotedblbase" + k="6" /> + <hkern g1="i,q,igrave,iacute,icircumflex,idieresis,fi,f_f_i" + g2="exclamdown" + k="6" /> + <hkern g1="i,q,igrave,iacute,icircumflex,idieresis,fi,f_f_i" + g2="guilsinglleft" + k="6" /> + <hkern g1="j" + g2="ampersand" + k="14" /> + <hkern g1="j" + g2="at" + k="6" /> + <hkern g1="j" + g2="backslash" + k="6" /> + <hkern g1="j" + g2="ordfeminine" + k="6" /> + <hkern g1="j" + g2="quoteright,quotedblright" + k="-6" /> + <hkern g1="j" + g2="dagger" + k="-14" /> + <hkern g1="j" + g2="daggerdbl" + k="-68" /> + <hkern g1="j" + g2="comma,period,ellipsis" + k="6" /> + <hkern g1="j" + g2="germandbls" + k="10" /> + <hkern g1="j" + g2="asciitilde" + k="6" /> + <hkern g1="j" + g2="guilsinglleft" + k="6" /> + <hkern g1="j" + g2="periodcentered" + k="6" /> + <hkern g1="j" + g2="f,fi,fl,f_f_i,f_f_l" + k="-4" /> + <hkern g1="j" + g2="greater" + k="-14" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="ampersand" + k="29" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="asterisk" + k="14" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="at" + k="10" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="backslash" + k="61" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="quoteleft,quotedblleft" + k="-6" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="trademark" + k="55" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="10" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="underscore" + k="-68" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="27" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="bracketright,braceright" + k="14" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="bullet" + k="35" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="47" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="colon,semicolon" + k="16" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="dagger" + k="-27" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="daggerdbl" + k="-27" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="paragraph" + k="-14" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="parenright" + k="14" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="20" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="comma,period,ellipsis" + k="6" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="quotesinglbase,quotedblbase" + k="-35" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="slash" + k="-41" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="z,zcaron" + k="-6" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="asciitilde" + k="27" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="exclamdown" + k="-14" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="guilsinglright" + k="-6" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="questiondown" + k="-20" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="oslash" + k="14" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="hyphen,endash,emdash" + k="61" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="guilsinglleft" + k="68" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="periodcentered" + k="6" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="plus" + k="27" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="divide" + k="20" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="asciicircum" + k="6" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="brokenbar" + k="-14" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="copyright,registered" + k="6" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="f,fi,fl,f_f_i,f_f_l" + k="-4" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="greater" + k="-88" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="multiply" + k="-27" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="braceleft" + k="14" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="less" + k="47" /> + <hkern g1="lslash" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="-4" /> + <hkern g1="lslash" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-41" /> + <hkern g1="lslash" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="-20" /> + <hkern g1="lslash" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="-10" /> + <hkern g1="lslash" + g2="colon,semicolon" + k="-6" /> + <hkern g1="lslash" + g2="quotedbl,quotesingle" + k="-14" /> + <hkern g1="lslash" + g2="t" + k="-41" /> + <hkern g1="lslash" + g2="w" + k="-41" /> + <hkern g1="lslash" + g2="comma,period,ellipsis" + k="29" /> + <hkern g1="lslash" + g2="quotesinglbase,quotedblbase" + k="29" /> + <hkern g1="lslash" + g2="z,zcaron" + k="-41" /> + <hkern g1="lslash" + g2="oslash" + k="-6" /> + <hkern g1="lslash" + g2="hyphen,endash,emdash" + k="-6" /> + <hkern g1="lslash" + g2="guilsinglleft" + k="-6" /> + <hkern g1="lslash" + g2="copyright,registered" + k="-27" /> + <hkern g1="lslash" + g2="f,fi,fl,f_f_i,f_f_l" + k="-51" /> + <hkern g1="lslash" + g2="s,scaron,uni0455" + k="-20" /> + <hkern g1="oslash" + g2="ampersand" + k="27" /> + <hkern g1="oslash" + g2="backslash" + k="150" /> + <hkern g1="oslash" + g2="quoteleft,quotedblleft" + k="47" /> + <hkern g1="oslash" + g2="quoteright,quotedblright" + k="41" /> + <hkern g1="oslash" + g2="trademark" + k="14" /> + <hkern g1="oslash" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="4" /> + <hkern g1="oslash" + g2="underscore" + k="47" /> + <hkern g1="oslash" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="27" /> + <hkern g1="oslash" + g2="bracketright,braceright" + k="27" /> + <hkern g1="oslash" + g2="parenright" + k="35" /> + <hkern g1="oslash" + g2="quotedbl,quotesingle" + k="27" /> + <hkern g1="oslash" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="25" /> + <hkern g1="oslash" + g2="w" + k="25" /> + <hkern g1="oslash" + g2="comma,period,ellipsis" + k="35" /> + <hkern g1="oslash" + g2="germandbls" + k="6" /> + <hkern g1="oslash" + g2="lslash" + k="-6" /> + <hkern g1="oslash" + g2="quotesinglbase,quotedblbase" + k="35" /> + <hkern g1="oslash" + g2="slash" + k="20" /> + <hkern g1="oslash" + g2="x,uni0445,uni04B3" + k="16" /> + <hkern g1="oslash" + g2="exclamdown" + k="6" /> + <hkern g1="oslash" + g2="guilsinglright" + k="6" /> + <hkern g1="oslash" + g2="questiondown" + k="20" /> + <hkern g1="oslash" + g2="greater" + k="-6" /> + <hkern g1="r" + g2="ampersand" + k="20" /> + <hkern g1="r" + g2="asterisk" + k="-82" /> + <hkern g1="r" + g2="at" + k="-47" /> + <hkern g1="r" + g2="backslash" + k="35" /> + <hkern g1="r" + g2="ordmasculine" + k="-14" /> + <hkern g1="r" + g2="quoteleft,quotedblleft" + k="-6" /> + <hkern g1="r" + g2="quoteright,quotedblright" + k="-47" /> + <hkern g1="r" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="-6" /> + <hkern g1="r" + g2="underscore" + k="35" /> + <hkern g1="r" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-41" /> + <hkern g1="r" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="-6" /> + <hkern g1="r" + g2="bracketright,braceright" + k="-27" /> + <hkern g1="r" + g2="bullet" + k="-6" /> + <hkern g1="r" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="66" /> + <hkern g1="r" + g2="colon,semicolon" + k="-20" /> + <hkern g1="r" + g2="dagger" + k="-68" /> + <hkern g1="r" + g2="daggerdbl" + k="-68" /> + <hkern g1="r" + g2="exclam" + k="-47" /> + <hkern g1="r" + g2="paragraph" + k="-88" /> + <hkern g1="r" + g2="parenright" + k="14" /> + <hkern g1="r" + g2="question" + k="-41" /> + <hkern g1="r" + g2="quotedbl,quotesingle" + k="-68" /> + <hkern g1="r" + g2="t" + k="-47" /> + <hkern g1="r" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="-35" /> + <hkern g1="r" + g2="w" + k="-27" /> + <hkern g1="r" + g2="comma,period,ellipsis" + k="170" /> + <hkern g1="r" + g2="quotesinglbase,quotedblbase" + k="55" /> + <hkern g1="r" + g2="slash" + k="14" /> + <hkern g1="r" + g2="x,uni0445,uni04B3" + k="-55" /> + <hkern g1="r" + g2="z,zcaron" + k="-27" /> + <hkern g1="r" + g2="exclamdown" + k="-35" /> + <hkern g1="r" + g2="florin" + k="6" /> + <hkern g1="r" + g2="guilsinglright" + k="-55" /> + <hkern g1="r" + g2="questiondown" + k="27" /> + <hkern g1="r" + g2="oslash" + k="6" /> + <hkern g1="r" + g2="periodcentered" + k="-6" /> + <hkern g1="r" + g2="plus" + k="-6" /> + <hkern g1="r" + g2="divide" + k="-20" /> + <hkern g1="r" + g2="asciicircum" + k="-29" /> + <hkern g1="r" + g2="bar" + k="-61" /> + <hkern g1="r" + g2="brokenbar" + k="-47" /> + <hkern g1="r" + g2="copyright,registered" + k="-61" /> + <hkern g1="r" + g2="f,fi,fl,f_f_i,f_f_l" + k="-47" /> + <hkern g1="r" + g2="greater" + k="-35" /> + <hkern g1="r" + g2="j" + k="-4" /> + <hkern g1="r" + g2="multiply" + k="-14" /> + <hkern g1="r" + g2="section" + k="-47" /> + <hkern g1="r" + g2="s,scaron,uni0455" + k="43" /> + <hkern g1="r" + g2="equal" + k="-20" /> + <hkern g1="r" + g2="less" + k="-6" /> + <hkern g1="r" + g2="b,h,k,l,thorn" + k="-4" /> + <hkern g1="r" + g2="i,igrave,iacute,icircumflex,idieresis,uni0469" + k="-4" /> + <hkern g1="r" + g2="m,n,p,r,ntilde" + k="-4" /> + <hkern g1="s,scaron,uni0455" + g2="ampersand" + k="14" /> + <hkern g1="s,scaron,uni0455" + g2="asterisk" + k="20" /> + <hkern g1="s,scaron,uni0455" + g2="backslash" + k="123" /> + <hkern g1="s,scaron,uni0455" + g2="ordfeminine" + k="41" /> + <hkern g1="s,scaron,uni0455" + g2="ordmasculine" + k="35" /> + <hkern g1="s,scaron,uni0455" + g2="quoteleft,quotedblleft" + k="27" /> + <hkern g1="s,scaron,uni0455" + g2="quoteright,quotedblright" + k="59" /> + <hkern g1="s,scaron,uni0455" + g2="trademark" + k="96" /> + <hkern g1="s,scaron,uni0455" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="8" /> + <hkern g1="s,scaron,uni0455" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="14" /> + <hkern g1="s,scaron,uni0455" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="14" /> + <hkern g1="s,scaron,uni0455" + g2="bracketright,braceright" + k="6" /> + <hkern g1="s,scaron,uni0455" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="6" /> + <hkern g1="s,scaron,uni0455" + g2="parenright" + k="18" /> + <hkern g1="s,scaron,uni0455" + g2="question" + k="6" /> + <hkern g1="s,scaron,uni0455" + g2="quotedbl,quotesingle" + k="14" /> + <hkern g1="s,scaron,uni0455" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="14" /> + <hkern g1="s,scaron,uni0455" + g2="w" + k="14" /> + <hkern g1="s,scaron,uni0455" + g2="germandbls" + k="10" /> + <hkern g1="s,scaron,uni0455" + g2="quotesinglbase,quotedblbase" + k="-4" /> + <hkern g1="s,scaron,uni0455" + g2="slash" + k="-14" /> + <hkern g1="s,scaron,uni0455" + g2="x,uni0445,uni04B3" + k="10" /> + <hkern g1="s,scaron,uni0455" + g2="z,zcaron" + k="-4" /> + <hkern g1="s,scaron,uni0455" + g2="florin" + k="14" /> + <hkern g1="s,scaron,uni0455" + g2="oslash" + k="6" /> + <hkern g1="s,scaron,uni0455" + g2="guilsinglleft" + k="14" /> + <hkern g1="s,scaron,uni0455" + g2="periodcentered" + k="6" /> + <hkern g1="s,scaron,uni0455" + g2="greater" + k="-14" /> + <hkern g1="t" + g2="asterisk" + k="-20" /> + <hkern g1="t" + g2="backslash" + k="6" /> + <hkern g1="t" + g2="quoteleft,quotedblleft" + k="14" /> + <hkern g1="t" + g2="quoteright,quotedblright" + k="33" /> + <hkern g1="t" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="-6" /> + <hkern g1="t" + g2="underscore" + k="-61" /> + <hkern g1="t" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-20" /> + <hkern g1="t" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="-6" /> + <hkern g1="t" + g2="bracketright,braceright" + k="-14" /> + <hkern g1="t" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="6" /> + <hkern g1="t" + g2="colon,semicolon" + k="-6" /> + <hkern g1="t" + g2="paragraph" + k="-14" /> + <hkern g1="t" + g2="parenright" + k="-14" /> + <hkern g1="t" + g2="question" + k="-20" /> + <hkern g1="t" + g2="quotedbl,quotesingle" + k="-6" /> + <hkern g1="t" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="-14" /> + <hkern g1="t" + g2="w" + k="-14" /> + <hkern g1="t" + g2="quotesinglbase,quotedblbase" + k="-14" /> + <hkern g1="t" + g2="slash" + k="-47" /> + <hkern g1="t" + g2="x,uni0445,uni04B3" + k="-47" /> + <hkern g1="t" + g2="z,zcaron" + k="-45" /> + <hkern g1="t" + g2="exclamdown" + k="-6" /> + <hkern g1="t" + g2="guilsinglright" + k="-14" /> + <hkern g1="t" + g2="questiondown" + k="-6" /> + <hkern g1="t" + g2="asciicircum" + k="-6" /> + <hkern g1="t" + g2="copyright,registered" + k="-6" /> + <hkern g1="t" + g2="greater" + k="-29" /> + <hkern g1="t" + g2="j" + k="-6" /> + <hkern g1="t" + g2="s,scaron,uni0455" + k="-20" /> + <hkern g1="t" + g2="b,h,k,l,thorn" + k="25" /> + <hkern g1="t" + g2="i,igrave,iacute,icircumflex,idieresis,uni0469" + k="-4" /> + <hkern g1="t" + g2="m,n,p,r,ntilde" + k="14" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="ampersand" + k="14" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="at" + k="10" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="backslash" + k="82" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="ordfeminine" + k="35" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="ordmasculine" + k="27" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="quoteleft,quotedblleft" + k="20" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="quoteright,quotedblright" + k="6" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="trademark" + k="47" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="6" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="bracketright,braceright" + k="4" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="6" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="parenright" + k="10" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="germandbls" + k="10" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="oslash" + k="6" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="guilsinglleft" + k="6" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="f,fi,fl,f_f_i,f_f_l" + k="-4" /> + <hkern g1="v,wcircumflex,ycircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-14" /> + <hkern g1="v,wcircumflex,ycircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="6" /> + <hkern g1="v,wcircumflex,ycircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="bracketright,braceright" + k="14" /> + <hkern g1="v,wcircumflex,ycircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="31" /> + <hkern g1="v,wcircumflex,ycircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="colon,semicolon" + k="6" /> + <hkern g1="v,wcircumflex,ycircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="quotedbl,quotesingle" + k="-27" /> + <hkern g1="v,wcircumflex,ycircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="t" + k="-35" /> + <hkern g1="v,wcircumflex,ycircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="w" + k="-6" /> + <hkern g1="v,wcircumflex,ycircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="comma,period,ellipsis" + k="170" /> + <hkern g1="v,wcircumflex,ycircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="quotesinglbase,quotedblbase" + k="96" /> + <hkern g1="v,wcircumflex,ycircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="z,zcaron" + k="-14" /> + <hkern g1="v,wcircumflex,ycircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="guilsinglright" + k="-27" /> + <hkern g1="v,wcircumflex,ycircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="oslash" + k="20" /> + <hkern g1="v,wcircumflex,ycircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="hyphen,endash,emdash" + k="20" /> + <hkern g1="v,wcircumflex,ycircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="guilsinglleft" + k="14" /> + <hkern g1="v,wcircumflex,ycircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="copyright,registered" + k="-6" /> + <hkern g1="v,wcircumflex,ycircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="f,fi,fl,f_f_i,f_f_l" + k="-37" /> + <hkern g1="w" + g2="ampersand" + k="35" /> + <hkern g1="w" + g2="asterisk" + k="-6" /> + <hkern g1="w" + g2="at" + k="-25" /> + <hkern g1="w" + g2="backslash" + k="47" /> + <hkern g1="w" + g2="ordmasculine" + k="-10" /> + <hkern g1="w" + g2="quoteleft,quotedblleft" + k="-6" /> + <hkern g1="w" + g2="quoteright,quotedblright" + k="-6" /> + <hkern g1="w" + g2="trademark" + k="6" /> + <hkern g1="w" + g2="underscore" + k="82" /> + <hkern g1="w" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-6" /> + <hkern g1="w" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="6" /> + <hkern g1="w" + g2="bracketright,braceright" + k="41" /> + <hkern g1="w" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="25" /> + <hkern g1="w" + g2="dagger" + k="-61" /> + <hkern g1="w" + g2="daggerdbl" + k="-76" /> + <hkern g1="w" + g2="paragraph" + k="-14" /> + <hkern g1="w" + g2="parenright" + k="47" /> + <hkern g1="w" + g2="question" + k="-14" /> + <hkern g1="w" + g2="quotedbl,quotesingle" + k="-27" /> + <hkern g1="w" + g2="t" + k="-35" /> + <hkern g1="w" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="-6" /> + <hkern g1="w" + g2="comma,period,ellipsis" + k="88" /> + <hkern g1="w" + g2="germandbls" + k="4" /> + <hkern g1="w" + g2="quotesinglbase,quotedblbase" + k="88" /> + <hkern g1="w" + g2="slash" + k="47" /> + <hkern g1="w" + g2="x,uni0445,uni04B3" + k="-6" /> + <hkern g1="w" + g2="z,zcaron" + k="-10" /> + <hkern g1="w" + g2="exclamdown" + k="6" /> + <hkern g1="w" + g2="florin" + k="14" /> + <hkern g1="w" + g2="questiondown" + k="55" /> + <hkern g1="w" + g2="oslash" + k="25" /> + <hkern g1="w" + g2="hyphen,endash,emdash" + k="14" /> + <hkern g1="w" + g2="guilsinglleft" + k="25" /> + <hkern g1="w" + g2="plus" + k="4" /> + <hkern g1="w" + g2="divide" + k="6" /> + <hkern g1="w" + g2="asciicircum" + k="-14" /> + <hkern g1="w" + g2="bar" + k="-35" /> + <hkern g1="w" + g2="brokenbar" + k="-35" /> + <hkern g1="w" + g2="copyright,registered" + k="-14" /> + <hkern g1="w" + g2="f,fi,fl,f_f_i,f_f_l" + k="-35" /> + <hkern g1="w" + g2="greater" + k="-14" /> + <hkern g1="w" + g2="multiply" + k="-6" /> + <hkern g1="w" + g2="less" + k="6" /> + <hkern g1="x,uni0445,uni04B3" + g2="quoteright,quotedblright" + k="6" /> + <hkern g1="x,uni0445,uni04B3" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="10" /> + <hkern g1="x,uni0445,uni04B3" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-6" /> + <hkern g1="x,uni0445,uni04B3" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="4" /> + <hkern g1="x,uni0445,uni04B3" + g2="bracketright,braceright" + k="6" /> + <hkern g1="x,uni0445,uni04B3" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="31" /> + <hkern g1="x,uni0445,uni04B3" + g2="colon,semicolon" + k="6" /> + <hkern g1="x,uni0445,uni04B3" + g2="quotedbl,quotesingle" + k="-14" /> + <hkern g1="x,uni0445,uni04B3" + g2="t" + k="-14" /> + <hkern g1="x,uni0445,uni04B3" + g2="w" + k="-6" /> + <hkern g1="x,uni0445,uni04B3" + g2="quotesinglbase,quotedblbase" + k="-20" /> + <hkern g1="x,uni0445,uni04B3" + g2="z,zcaron" + k="-35" /> + <hkern g1="x,uni0445,uni04B3" + g2="oslash" + k="20" /> + <hkern g1="x,uni0445,uni04B3" + g2="hyphen,endash,emdash" + k="39" /> + <hkern g1="x,uni0445,uni04B3" + g2="guilsinglleft" + k="27" /> + <hkern g1="x,uni0445,uni04B3" + g2="copyright,registered" + k="6" /> + <hkern g1="x,uni0445,uni04B3" + g2="f,fi,fl,f_f_i,f_f_l" + k="-27" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="ampersand" + k="41" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="asterisk" + k="-14" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="at" + k="-14" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="backslash" + k="61" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="10" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="underscore" + k="102" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-6" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="31" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="bracketright,braceright" + k="29" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="45" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="colon,semicolon" + k="10" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="dagger" + k="-47" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="daggerdbl" + k="-47" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="paragraph" + k="-14" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="parenright" + k="29" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="question" + k="-20" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="quotedbl,quotesingle" + k="-20" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="t" + k="-20" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="-6" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="comma,period,ellipsis" + k="211" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="germandbls" + k="4" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="lslash" + k="4" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="quotesinglbase,quotedblbase" + k="137" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="slash" + k="49" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="exclamdown" + k="6" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="florin" + k="20" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="questiondown" + k="76" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="oslash" + k="37" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="hyphen,endash,emdash" + k="47" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="guilsinglleft" + k="27" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="periodcentered" + k="6" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="divide" + k="6" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="asciicircum" + k="-6" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="bar" + k="-27" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="brokenbar" + k="-27" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="copyright,registered" + k="-6" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="f,fi,fl,f_f_i,f_f_l" + k="-27" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="greater" + k="-20" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="multiply" + k="-14" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="section" + k="-6" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="s,scaron,uni0455" + k="16" /> + <hkern g1="z,zcaron" + g2="ampersand" + k="14" /> + <hkern g1="z,zcaron" + g2="asterisk" + k="-6" /> + <hkern g1="z,zcaron" + g2="backslash" + k="78" /> + <hkern g1="z,zcaron" + g2="trademark" + k="6" /> + <hkern g1="z,zcaron" + g2="underscore" + k="-20" /> + <hkern g1="z,zcaron" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-4" /> + <hkern g1="z,zcaron" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="-6" /> + <hkern g1="z,zcaron" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="4" /> + <hkern g1="z,zcaron" + g2="dagger" + k="-27" /> + <hkern g1="z,zcaron" + g2="daggerdbl" + k="-27" /> + <hkern g1="z,zcaron" + g2="paragraph" + k="-6" /> + <hkern g1="z,zcaron" + g2="t" + k="-18" /> + <hkern g1="z,zcaron" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="-4" /> + <hkern g1="z,zcaron" + g2="w" + k="-4" /> + <hkern g1="z,zcaron" + g2="lslash" + k="-14" /> + <hkern g1="z,zcaron" + g2="quotesinglbase,quotedblbase" + k="-6" /> + <hkern g1="z,zcaron" + g2="slash" + k="-14" /> + <hkern g1="z,zcaron" + g2="x,uni0445,uni04B3" + k="-14" /> + <hkern g1="z,zcaron" + g2="z,zcaron" + k="-4" /> + <hkern g1="z,zcaron" + g2="questiondown" + k="-6" /> + <hkern g1="z,zcaron" + g2="guilsinglleft" + k="16" /> + <hkern g1="z,zcaron" + g2="plus" + k="-6" /> + <hkern g1="z,zcaron" + g2="bar" + k="-27" /> + <hkern g1="z,zcaron" + g2="brokenbar" + k="-6" /> + <hkern g1="z,zcaron" + g2="f,fi,fl,f_f_i,f_f_l" + k="-20" /> + <hkern g1="z,zcaron" + g2="greater" + k="-14" /> + <hkern g1="ampersand" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="143" /> + <hkern g1="ampersand" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="20" /> + <hkern g1="ampersand" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="76" /> + <hkern g1="ampersand" + g2="Y,Yacute,Ydieresis,uni040E" + k="174" /> + <hkern g1="ampersand" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="10" /> + <hkern g1="ampersand" + g2="J" + k="-6" /> + <hkern g1="ampersand" + g2="Oslash" + k="6" /> + <hkern g1="ampersand" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="4" /> + <hkern g1="ampersand" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="20" /> + <hkern g1="asciicircum" + g2="Y,Yacute,Ydieresis,uni040E" + k="14" /> + <hkern g1="asciicircum" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="-20" /> + <hkern g1="asciicircum" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-6" /> + <hkern g1="asciicircum" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="70" /> + <hkern g1="asciicircum" + g2="Eth" + k="-6" /> + <hkern g1="asciicircum" + g2="f,fi,fl,f_f_i,f_f_l" + k="-20" /> + <hkern g1="asciicircum" + g2="w" + k="-14" /> + <hkern g1="asciitilde" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="137" /> + <hkern g1="asciitilde" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="6" /> + <hkern g1="asciitilde" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="41" /> + <hkern g1="asciitilde" + g2="Y,Yacute,Ydieresis,uni040E" + k="129" /> + <hkern g1="asciitilde" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="-20" /> + <hkern g1="asciitilde" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="41" /> + <hkern g1="asciitilde" + g2="Z,Zcaron" + k="6" /> + <hkern g1="asciitilde" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="-6" /> + <hkern g1="asciitilde" + g2="j" + k="6" /> + <hkern g1="asciitilde" + g2="z,zcaron" + k="4" /> + <hkern g1="at" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="51" /> + <hkern g1="at" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="6" /> + <hkern g1="at" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="41" /> + <hkern g1="at" + g2="Y,Yacute,Ydieresis,uni040E" + k="96" /> + <hkern g1="at" + g2="J" + k="35" /> + <hkern g1="at" + g2="Oslash" + k="4" /> + <hkern g1="at" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="4" /> + <hkern g1="at" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-16" /> + <hkern g1="at" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="82" /> + <hkern g1="at" + g2="Eth" + k="-14" /> + <hkern g1="at" + g2="f,fi,fl,f_f_i,f_f_l" + k="-6" /> + <hkern g1="at" + g2="w" + k="-20" /> + <hkern g1="at" + g2="Z,Zcaron" + k="35" /> + <hkern g1="at" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="14" /> + <hkern g1="at" + g2="z,zcaron" + k="-6" /> + <hkern g1="at" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="6" /> + <hkern g1="at" + g2="m,n,p,r,ntilde" + k="10" /> + <hkern g1="at" + g2="oslash" + k="10" /> + <hkern g1="at" + g2="s,scaron,uni0455" + k="4" /> + <hkern g1="bar" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="-35" /> + <hkern g1="bar" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-35" /> + <hkern g1="bar" + g2="Y,Yacute,Ydieresis,uni040E" + k="-20" /> + <hkern g1="bar" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-27" /> + <hkern g1="bar" + g2="w" + k="-35" /> + <hkern g1="bar" + g2="Z,Zcaron" + k="-6" /> + <hkern g1="bar" + g2="j" + k="-20" /> + <hkern g1="bar" + g2="z,zcaron" + k="-20" /> + <hkern g1="brokenbar" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="-41" /> + <hkern g1="brokenbar" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-35" /> + <hkern g1="brokenbar" + g2="Y,Yacute,Ydieresis,uni040E" + k="-20" /> + <hkern g1="brokenbar" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-27" /> + <hkern g1="brokenbar" + g2="w" + k="-35" /> + <hkern g1="brokenbar" + g2="Z,Zcaron" + k="-6" /> + <hkern g1="brokenbar" + g2="z,zcaron" + k="-6" /> + <hkern g1="copyright,registered" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="20" /> + <hkern g1="copyright,registered" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="14" /> + <hkern g1="copyright,registered" + g2="Y,Yacute,Ydieresis,uni040E" + k="70" /> + <hkern g1="copyright,registered" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="-14" /> + <hkern g1="copyright,registered" + g2="J" + k="6" /> + <hkern g1="copyright,registered" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="61" /> + <hkern g1="copyright,registered" + g2="Eth" + k="-14" /> + <hkern g1="copyright,registered" + g2="f,fi,fl,f_f_i,f_f_l" + k="-6" /> + <hkern g1="copyright,registered" + g2="w" + k="-14" /> + <hkern g1="copyright,registered" + g2="Z,Zcaron" + k="6" /> + <hkern g1="copyright,registered" + g2="z,zcaron" + k="6" /> + <hkern g1="copyright,registered" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="27" /> + <hkern g1="copyright,registered" + g2="Lslash" + k="-14" /> + <hkern g1="copyright,registered" + g2="V,uni0423,uni0474" + k="41" /> + <hkern g1="copyright,registered" + g2="X,uni0416,uni0425,uni046A" + k="70" /> + <hkern g1="copyright,registered" + g2="germandbls" + k="6" /> + <hkern g1="copyright,registered" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="-6" /> + <hkern g1="copyright,registered" + g2="x,uni0445,uni04B3" + k="6" /> + <hkern g1="dagger" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="-20" /> + <hkern g1="dagger" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-14" /> + <hkern g1="dagger" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="-6" /> + <hkern g1="dagger" + g2="J" + k="20" /> + <hkern g1="dagger" + g2="Oslash" + k="-6" /> + <hkern g1="dagger" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-47" /> + <hkern g1="dagger" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="68" /> + <hkern g1="dagger" + g2="f,fi,fl,f_f_i,f_f_l" + k="-20" /> + <hkern g1="dagger" + g2="w" + k="-76" /> + <hkern g1="dagger" + g2="Z,Zcaron" + k="-6" /> + <hkern g1="dagger" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="6" /> + <hkern g1="dagger" + g2="j" + k="-14" /> + <hkern g1="dagger" + g2="z,zcaron" + k="-14" /> + <hkern g1="dagger" + g2="S,Scaron,uni0405" + k="-6" /> + <hkern g1="dagger" + g2="b,h,k,l,thorn" + k="-6" /> + <hkern g1="daggerdbl" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="-20" /> + <hkern g1="daggerdbl" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-6" /> + <hkern g1="daggerdbl" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="-6" /> + <hkern g1="daggerdbl" + g2="J" + k="-6" /> + <hkern g1="daggerdbl" + g2="Oslash" + k="-6" /> + <hkern g1="daggerdbl" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-47" /> + <hkern g1="daggerdbl" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="6" /> + <hkern g1="daggerdbl" + g2="f,fi,fl,f_f_i,f_f_l" + k="-14" /> + <hkern g1="daggerdbl" + g2="w" + k="-76" /> + <hkern g1="daggerdbl" + g2="Z,Zcaron" + k="-6" /> + <hkern g1="daggerdbl" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="-6" /> + <hkern g1="daggerdbl" + g2="z,zcaron" + k="-14" /> + <hkern g1="daggerdbl" + g2="b,h,k,l,thorn" + k="-6" /> + <hkern g1="divide" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="102" /> + <hkern g1="divide" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="6" /> + <hkern g1="divide" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="45" /> + <hkern g1="divide" + g2="Y,Yacute,Ydieresis,uni040E" + k="109" /> + <hkern g1="divide" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="-6" /> + <hkern g1="divide" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="6" /> + <hkern g1="divide" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="27" /> + <hkern g1="divide" + g2="w" + k="6" /> + <hkern g1="divide" + g2="Z,Zcaron" + k="6" /> + <hkern g1="equal" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="61" /> + <hkern g1="equal" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="4" /> + <hkern g1="equal" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="20" /> + <hkern g1="equal" + g2="Y,Yacute,Ydieresis,uni040E" + k="68" /> + <hkern g1="equal" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="-6" /> + <hkern g1="equal" + g2="Oslash" + k="-6" /> + <hkern g1="equal" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="14" /> + <hkern g1="florin" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="68" /> + <hkern g1="florin" + g2="w" + k="14" /> + <hkern g1="florin" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="117" /> + <hkern g1="florin" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="109" /> + <hkern g1="florin" + g2="m,n,p,r,ntilde" + k="68" /> + <hkern g1="florin" + g2="oslash" + k="102" /> + <hkern g1="florin" + g2="s,scaron,uni0455" + k="47" /> + <hkern g1="florin" + g2="bracketright,braceright" + k="-47" /> + <hkern g1="florin" + g2="colon,semicolon" + k="35" /> + <hkern g1="florin" + g2="comma,period,ellipsis" + k="178" /> + <hkern g1="florin" + g2="guilsinglleft" + k="55" /> + <hkern g1="florin" + g2="hyphen,endash,emdash" + k="41" /> + <hkern g1="florin" + g2="quotedbl,quotesingle" + k="-82" /> + <hkern g1="florin" + g2="quoteleft,quotedblleft" + k="-76" /> + <hkern g1="florin" + g2="quoteright,quotedblright" + k="-82" /> + <hkern g1="florin" + g2="quotesinglbase,quotedblbase" + k="143" /> + <hkern g1="florin" + g2="t" + k="-6" /> + <hkern g1="greater" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="102" /> + <hkern g1="greater" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="6" /> + <hkern g1="greater" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="47" /> + <hkern g1="greater" + g2="Y,Yacute,Ydieresis,uni040E" + k="137" /> + <hkern g1="greater" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="-6" /> + <hkern g1="greater" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="45" /> + <hkern g1="greater" + g2="w" + k="6" /> + <hkern g1="greater" + g2="Z,Zcaron" + k="27" /> + <hkern g1="greater" + g2="S,Scaron,uni0405" + k="4" /> + <hkern g1="less" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="14" /> + <hkern g1="less" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-14" /> + <hkern g1="less" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="-20" /> + <hkern g1="less" + g2="Oslash" + k="-14" /> + <hkern g1="less" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-20" /> + <hkern g1="less" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="-14" /> + <hkern g1="less" + g2="Eth" + k="-6" /> + <hkern g1="less" + g2="w" + k="-14" /> + <hkern g1="less" + g2="Z,Zcaron" + k="-35" /> + <hkern g1="less" + g2="z,zcaron" + k="-14" /> + <hkern g1="less" + g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Ntilde,Thorn,IJ,uni01C4,uni01C7,uni01CA,uni01F1" + k="-14" /> + <hkern g1="multiply" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="61" /> + <hkern g1="multiply" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="6" /> + <hkern g1="multiply" + g2="Y,Yacute,Ydieresis,uni040E" + k="61" /> + <hkern g1="multiply" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="-6" /> + <hkern g1="multiply" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="6" /> + <hkern g1="multiply" + g2="w" + k="-6" /> + <hkern g1="multiply" + g2="Z,Zcaron" + k="-6" /> + <hkern g1="paragraph" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="-41" /> + <hkern g1="plus" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="109" /> + <hkern g1="plus" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="6" /> + <hkern g1="plus" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="61" /> + <hkern g1="plus" + g2="Y,Yacute,Ydieresis,uni040E" + k="117" /> + <hkern g1="plus" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="-6" /> + <hkern g1="plus" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="41" /> + <hkern g1="plus" + g2="Eth" + k="6" /> + <hkern g1="plus" + g2="w" + k="4" /> + <hkern g1="plus" + g2="Z,Zcaron" + k="31" /> + <hkern g1="plus" + g2="b,h,k,l,thorn" + k="14" /> + <hkern g1="trademark" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="-41" /> + <hkern g1="section" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="6" /> + <hkern g1="section" + g2="Y,Yacute,Ydieresis,uni040E" + k="6" /> + <hkern g1="section" + g2="Oslash" + k="4" /> + <hkern g1="section" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="6" /> + <hkern g1="asterisk" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="197" /> + <hkern g1="asterisk" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="6" /> + <hkern g1="asterisk" + g2="J" + k="102" /> + <hkern g1="asterisk" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="-41" /> + <hkern g1="asterisk" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-20" /> + <hkern g1="asterisk" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="41" /> + <hkern g1="asterisk" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="68" /> + <hkern g1="asterisk" + g2="s,scaron,uni0455" + k="14" /> + <hkern g1="asterisk" + g2="Y,Yacute,Ydieresis,uni040E" + k="6" /> + <hkern g1="asterisk" + g2="f,fi,fl,f_f_i,f_f_l" + k="-29" /> + <hkern g1="asterisk" + g2="oslash" + k="14" /> + <hkern g1="asterisk" + g2="w" + k="-6" /> + <hkern g1="asterisk" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-14" /> + <hkern g1="backslash" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="-14" /> + <hkern g1="backslash" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="82" /> + <hkern g1="backslash" + g2="J" + k="6" /> + <hkern g1="backslash" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="117" /> + <hkern g1="backslash" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="137" /> + <hkern g1="backslash" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="-14" /> + <hkern g1="backslash" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="41" /> + <hkern g1="backslash" + g2="Y,Yacute,Ydieresis,uni040E" + k="158" /> + <hkern g1="backslash" + g2="oslash" + k="14" /> + <hkern g1="backslash" + g2="w" + k="35" /> + <hkern g1="backslash" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="45" /> + <hkern g1="backslash" + g2="Oslash" + k="55" /> + <hkern g1="backslash" + g2="S,Scaron,uni0405" + k="20" /> + <hkern g1="backslash" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="61" /> + <hkern g1="backslash" + g2="Eth" + k="14" /> + <hkern g1="backslash" + g2="Z,Zcaron" + k="-6" /> + <hkern g1="backslash" + g2="t" + k="6" /> + <hkern g1="backslash" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="14" /> + <hkern g1="backslash" + g2="z,zcaron" + k="-6" /> + <hkern g1="braceright" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="14" /> + <hkern g1="braceright" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="27" /> + <hkern g1="braceright" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="14" /> + <hkern g1="braceright" + g2="Y,Yacute,Ydieresis,uni040E" + k="53" /> + <hkern g1="braceright" + g2="Z,Zcaron" + k="27" /> + <hkern g1="bracketleft,braceleft" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="6" /> + <hkern g1="bracketleft,braceleft" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="47" /> + <hkern g1="bracketleft,braceleft" + g2="J" + k="14" /> + <hkern g1="bracketleft,braceleft" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="-27" /> + <hkern g1="bracketleft,braceleft" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-27" /> + <hkern g1="bracketleft,braceleft" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="4" /> + <hkern g1="bracketleft,braceleft" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="41" /> + <hkern g1="bracketleft,braceleft" + g2="s,scaron,uni0455" + k="14" /> + <hkern g1="bracketleft,braceleft" + g2="Y,Yacute,Ydieresis,uni040E" + k="-53" /> + <hkern g1="bracketleft,braceleft" + g2="f,fi,fl,f_f_i,f_f_l" + k="35" /> + <hkern g1="bracketleft,braceleft" + g2="oslash" + k="27" /> + <hkern g1="bracketleft,braceleft" + g2="w" + k="41" /> + <hkern g1="bracketleft,braceleft" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="20" /> + <hkern g1="bracketleft,braceleft" + g2="Oslash" + k="47" /> + <hkern g1="bracketleft,braceleft" + g2="S,Scaron,uni0405" + k="6" /> + <hkern g1="bracketleft,braceleft" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="6" /> + <hkern g1="bracketleft,braceleft" + g2="t" + k="14" /> + <hkern g1="bracketleft,braceleft" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="14" /> + <hkern g1="bracketleft,braceleft" + g2="V,uni0423,uni0474" + k="-35" /> + <hkern g1="bracketleft,braceleft" + g2="X,uni0416,uni0425,uni046A" + k="-27" /> + <hkern g1="bracketleft,braceleft" + g2="florin" + k="-123" /> + <hkern g1="bracketleft,braceleft" + g2="j" + k="-123" /> + <hkern g1="bracketleft,braceleft" + g2="germandbls" + k="14" /> + <hkern g1="bracketleft,braceleft" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="14" /> + <hkern g1="bracketleft,braceleft" + g2="x,uni0445,uni04B3" + k="6" /> + <hkern g1="bullet" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="68" /> + <hkern g1="bullet" + g2="J" + k="14" /> + <hkern g1="bullet" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="158" /> + <hkern g1="bullet" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="68" /> + <hkern g1="bullet" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="14" /> + <hkern g1="bullet" + g2="Y,Yacute,Ydieresis,uni040E" + k="164" /> + <hkern g1="bullet" + g2="Z,Zcaron" + k="35" /> + <hkern g1="bullet" + g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Ntilde,Thorn,IJ,uni01C4,uni01C7,uni01CA,uni01F1" + k="14" /> + <hkern g1="colon,semicolon" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="6" /> + <hkern g1="colon,semicolon" + g2="J" + k="6" /> + <hkern g1="colon,semicolon" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="113" /> + <hkern g1="colon,semicolon" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="27" /> + <hkern g1="colon,semicolon" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="14" /> + <hkern g1="colon,semicolon" + g2="Y,Yacute,Ydieresis,uni040E" + k="141" /> + <hkern g1="colon,semicolon" + g2="f,fi,fl,f_f_i,f_f_l" + k="-6" /> + <hkern g1="colon,semicolon" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="6" /> + <hkern g1="colon,semicolon" + g2="S,Scaron,uni0405" + k="6" /> + <hkern g1="colon,semicolon" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="10" /> + <hkern g1="colon,semicolon" + g2="V,uni0423,uni0474" + k="96" /> + <hkern g1="colon,semicolon" + g2="X,uni0416,uni0425,uni046A" + k="14" /> + <hkern g1="colon,semicolon" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="6" /> + <hkern g1="colon,semicolon" + g2="x,uni0445,uni04B3" + k="6" /> + <hkern g1="comma,period,ellipsis" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="68" /> + <hkern g1="comma,period,ellipsis" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="219" /> + <hkern g1="comma,period,ellipsis" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="190" /> + <hkern g1="comma,period,ellipsis" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="6" /> + <hkern g1="comma,period,ellipsis" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="35" /> + <hkern g1="comma,period,ellipsis" + g2="Y,Yacute,Ydieresis,uni040E" + k="266" /> + <hkern g1="comma,period,ellipsis" + g2="f,fi,fl,f_f_i,f_f_l" + k="14" /> + <hkern g1="comma,period,ellipsis" + g2="oslash" + k="6" /> + <hkern g1="comma,period,ellipsis" + g2="w" + k="88" /> + <hkern g1="comma,period,ellipsis" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="178" /> + <hkern g1="comma,period,ellipsis" + g2="Oslash" + k="55" /> + <hkern g1="comma,period,ellipsis" + g2="S,Scaron,uni0405" + k="20" /> + <hkern g1="comma,period,ellipsis" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="61" /> + <hkern g1="comma,period,ellipsis" + g2="Eth" + k="14" /> + <hkern g1="comma,period,ellipsis" + g2="t" + k="47" /> + <hkern g1="comma,period,ellipsis" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="14" /> + <hkern g1="comma,period,ellipsis" + g2="V,uni0423,uni0474" + k="225" /> + <hkern g1="comma,period,ellipsis" + g2="X,uni0416,uni0425,uni046A" + k="6" /> + <hkern g1="comma,period,ellipsis" + g2="germandbls" + k="6" /> + <hkern g1="comma,period,ellipsis" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="170" /> + <hkern g1="comma,period,ellipsis" + g2="Lslash" + k="6" /> + <hkern g1="comma,period,ellipsis" + g2="b,h,k,l,thorn" + k="6" /> + <hkern g1="comma,period,ellipsis" + g2="lslash" + k="29" /> + <hkern g1="exclamdown" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="6" /> + <hkern g1="exclamdown" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="6" /> + <hkern g1="exclamdown" + g2="J" + k="6" /> + <hkern g1="exclamdown" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="143" /> + <hkern g1="exclamdown" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="35" /> + <hkern g1="exclamdown" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="14" /> + <hkern g1="exclamdown" + g2="Y,Yacute,Ydieresis,uni040E" + k="127" /> + <hkern g1="exclamdown" + g2="oslash" + k="6" /> + <hkern g1="exclamdown" + g2="w" + k="6" /> + <hkern g1="exclamdown" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="6" /> + <hkern g1="exclamdown" + g2="S,Scaron,uni0405" + k="6" /> + <hkern g1="exclamdown" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="27" /> + <hkern g1="exclamdown" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="4" /> + <hkern g1="exclamdown" + g2="j" + k="-68" /> + <hkern g1="exclamdown" + g2="i,igrave,iacute,icircumflex,idieresis,uni0469" + k="6" /> + <hkern g1="guilsinglleft" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="6" /> + <hkern g1="guilsinglleft" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="20" /> + <hkern g1="guilsinglleft" + g2="J" + k="-20" /> + <hkern g1="guilsinglleft" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="143" /> + <hkern g1="guilsinglleft" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="20" /> + <hkern g1="guilsinglleft" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="6" /> + <hkern g1="guilsinglleft" + g2="Y,Yacute,Ydieresis,uni040E" + k="90" /> + <hkern g1="guilsinglleft" + g2="f,fi,fl,f_f_i,f_f_l" + k="-27" /> + <hkern g1="guilsinglleft" + g2="oslash" + k="6" /> + <hkern g1="guilsinglleft" + g2="Oslash" + k="6" /> + <hkern g1="guilsinglleft" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="6" /> + <hkern g1="guilsinglleft" + g2="t" + k="-14" /> + <hkern g1="guilsinglleft" + g2="V,uni0423,uni0474" + k="76" /> + <hkern g1="guilsinglleft" + g2="X,uni0416,uni0425,uni046A" + k="61" /> + <hkern g1="guilsinglleft" + g2="florin" + k="14" /> + <hkern g1="guilsinglleft" + g2="j" + k="4" /> + <hkern g1="guilsinglleft" + g2="germandbls" + k="6" /> + <hkern g1="guilsinglleft" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="-27" /> + <hkern g1="guilsinglleft" + g2="lslash" + k="6" /> + <hkern g1="guilsinglright" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="68" /> + <hkern g1="guilsinglright" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="14" /> + <hkern g1="guilsinglright" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="240" /> + <hkern g1="guilsinglright" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="82" /> + <hkern g1="guilsinglright" + g2="Y,Yacute,Ydieresis,uni040E" + k="207" /> + <hkern g1="guilsinglright" + g2="w" + k="20" /> + <hkern g1="guilsinglright" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="6" /> + <hkern g1="guilsinglright" + g2="S,Scaron,uni0405" + k="6" /> + <hkern g1="guilsinglright" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="27" /> + <hkern g1="guilsinglright" + g2="Z,Zcaron" + k="51" /> + <hkern g1="guilsinglright" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="6" /> + <hkern g1="guilsinglright" + g2="z,zcaron" + k="4" /> + <hkern g1="guilsinglright" + g2="V,uni0423,uni0474" + k="129" /> + <hkern g1="guilsinglright" + g2="X,uni0416,uni0425,uni046A" + k="164" /> + <hkern g1="guilsinglright" + g2="florin" + k="76" /> + <hkern g1="guilsinglright" + g2="germandbls" + k="10" /> + <hkern g1="guilsinglright" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="27" /> + <hkern g1="guilsinglright" + g2="x,uni0445,uni04B3" + k="27" /> + <hkern g1="guilsinglright" + g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Ntilde,Thorn,IJ,uni01C4,uni01C7,uni01CA,uni01F1" + k="14" /> + <hkern g1="guilsinglright" + g2="b,h,k,l,thorn" + k="6" /> + <hkern g1="guilsinglright" + g2="lslash" + k="-27" /> + <hkern g1="hyphen,endash,emdash" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="55" /> + <hkern g1="hyphen,endash,emdash" + g2="J" + k="6" /> + <hkern g1="hyphen,endash,emdash" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="129" /> + <hkern g1="hyphen,endash,emdash" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="68" /> + <hkern g1="hyphen,endash,emdash" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="14" /> + <hkern g1="hyphen,endash,emdash" + g2="Y,Yacute,Ydieresis,uni040E" + k="178" /> + <hkern g1="hyphen,endash,emdash" + g2="w" + k="14" /> + <hkern g1="hyphen,endash,emdash" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="47" /> + <hkern g1="hyphen,endash,emdash" + g2="S,Scaron,uni0405" + k="14" /> + <hkern g1="hyphen,endash,emdash" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="6" /> + <hkern g1="hyphen,endash,emdash" + g2="Z,Zcaron" + k="74" /> + <hkern g1="hyphen,endash,emdash" + g2="t" + k="14" /> + <hkern g1="hyphen,endash,emdash" + g2="z,zcaron" + k="6" /> + <hkern g1="hyphen,endash,emdash" + g2="V,uni0423,uni0474" + k="123" /> + <hkern g1="hyphen,endash,emdash" + g2="X,uni0416,uni0425,uni046A" + k="102" /> + <hkern g1="hyphen,endash,emdash" + g2="j" + k="14" /> + <hkern g1="hyphen,endash,emdash" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="20" /> + <hkern g1="hyphen,endash,emdash" + g2="x,uni0445,uni04B3" + k="39" /> + <hkern g1="hyphen,endash,emdash" + g2="Lslash" + k="-88" /> + <hkern g1="hyphen,endash,emdash" + g2="lslash" + k="-68" /> + <hkern g1="parenleft" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="14" /> + <hkern g1="parenleft" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="47" /> + <hkern g1="parenleft" + g2="J" + k="31" /> + <hkern g1="parenleft" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="-27" /> + <hkern g1="parenleft" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-27" /> + <hkern g1="parenleft" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="6" /> + <hkern g1="parenleft" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="55" /> + <hkern g1="parenleft" + g2="s,scaron,uni0455" + k="18" /> + <hkern g1="parenleft" + g2="Y,Yacute,Ydieresis,uni040E" + k="-27" /> + <hkern g1="parenleft" + g2="f,fi,fl,f_f_i,f_f_l" + k="27" /> + <hkern g1="parenleft" + g2="oslash" + k="35" /> + <hkern g1="parenleft" + g2="w" + k="47" /> + <hkern g1="parenleft" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="29" /> + <hkern g1="parenleft" + g2="Oslash" + k="47" /> + <hkern g1="parenleft" + g2="S,Scaron,uni0405" + k="10" /> + <hkern g1="parenleft" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="6" /> + <hkern g1="parenleft" + g2="t" + k="14" /> + <hkern g1="parenleft" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="20" /> + <hkern g1="parenleft" + g2="z,zcaron" + k="4" /> + <hkern g1="parenleft" + g2="j" + k="-123" /> + <hkern g1="periodcentered" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="55" /> + <hkern g1="periodcentered" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="-6" /> + <hkern g1="periodcentered" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="102" /> + <hkern g1="periodcentered" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="55" /> + <hkern g1="periodcentered" + g2="Y,Yacute,Ydieresis,uni040E" + k="129" /> + <hkern g1="periodcentered" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="6" /> + <hkern g1="periodcentered" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="20" /> + <hkern g1="periodcentered" + g2="Z,Zcaron" + k="14" /> + <hkern g1="question" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="43" /> + <hkern g1="question" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="6" /> + <hkern g1="question" + g2="J" + k="14" /> + <hkern g1="question" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="47" /> + <hkern g1="question" + g2="Y,Yacute,Ydieresis,uni040E" + k="6" /> + <hkern g1="questiondown" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="-35" /> + <hkern g1="questiondown" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="88" /> + <hkern g1="questiondown" + g2="J" + k="14" /> + <hkern g1="questiondown" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="246" /> + <hkern g1="questiondown" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="137" /> + <hkern g1="questiondown" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="47" /> + <hkern g1="questiondown" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="55" /> + <hkern g1="questiondown" + g2="s,scaron,uni0455" + k="14" /> + <hkern g1="questiondown" + g2="Y,Yacute,Ydieresis,uni040E" + k="242" /> + <hkern g1="questiondown" + g2="f,fi,fl,f_f_i,f_f_l" + k="31" /> + <hkern g1="questiondown" + g2="oslash" + k="14" /> + <hkern g1="questiondown" + g2="w" + k="68" /> + <hkern g1="questiondown" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="35" /> + <hkern g1="questiondown" + g2="Oslash" + k="29" /> + <hkern g1="questiondown" + g2="S,Scaron,uni0405" + k="41" /> + <hkern g1="questiondown" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="76" /> + <hkern g1="questiondown" + g2="Eth" + k="29" /> + <hkern g1="questiondown" + g2="Z,Zcaron" + k="-6" /> + <hkern g1="questiondown" + g2="t" + k="41" /> + <hkern g1="questiondown" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="41" /> + <hkern g1="questiondown" + g2="j" + k="-96" /> + <hkern g1="questiondown" + g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Ntilde,Thorn,IJ,uni01C4,uni01C7,uni01CA,uni01F1" + k="4" /> + <hkern g1="questiondown" + g2="b,h,k,l,thorn" + k="14" /> + <hkern g1="questiondown" + g2="m,n,p,r,ntilde" + k="14" /> + <hkern g1="quotedbl,quotesingle" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="137" /> + <hkern g1="quotedbl,quotesingle" + g2="J" + k="53" /> + <hkern g1="quotedbl,quotesingle" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="-55" /> + <hkern g1="quotedbl,quotesingle" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-27" /> + <hkern g1="quotedbl,quotesingle" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="27" /> + <hkern g1="quotedbl,quotesingle" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="47" /> + <hkern g1="quotedbl,quotesingle" + g2="Y,Yacute,Ydieresis,uni040E" + k="-14" /> + <hkern g1="quotedbl,quotesingle" + g2="f,fi,fl,f_f_i,f_f_l" + k="-55" /> + <hkern g1="quotedbl,quotesingle" + g2="oslash" + k="47" /> + <hkern g1="quotedbl,quotesingle" + g2="w" + k="-27" /> + <hkern g1="quotedbl,quotesingle" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-20" /> + <hkern g1="quotedbl,quotesingle" + g2="V,uni0423,uni0474" + k="-35" /> + <hkern g1="quotedbl,quotesingle" + g2="X,uni0416,uni0425,uni046A" + k="-14" /> + <hkern g1="quotedbl,quotesingle" + g2="germandbls" + k="6" /> + <hkern g1="quotedbl,quotesingle" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="-27" /> + <hkern g1="quotedbl,quotesingle" + g2="x,uni0445,uni04B3" + k="-14" /> + <hkern g1="quoteleft,quotedblleft" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="225" /> + <hkern g1="quoteleft,quotedblleft" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="27" /> + <hkern g1="quoteleft,quotedblleft" + g2="J" + k="190" /> + <hkern g1="quoteleft,quotedblleft" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="-61" /> + <hkern g1="quoteleft,quotedblleft" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-35" /> + <hkern g1="quoteleft,quotedblleft" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="74" /> + <hkern g1="quoteleft,quotedblleft" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="78" /> + <hkern g1="quoteleft,quotedblleft" + g2="s,scaron,uni0455" + k="20" /> + <hkern g1="quoteleft,quotedblleft" + g2="Y,Yacute,Ydieresis,uni040E" + k="-27" /> + <hkern g1="quoteleft,quotedblleft" + g2="f,fi,fl,f_f_i,f_f_l" + k="6" /> + <hkern g1="quoteleft,quotedblleft" + g2="oslash" + k="47" /> + <hkern g1="quoteleft,quotedblleft" + g2="w" + k="-6" /> + <hkern g1="quoteleft,quotedblleft" + g2="Oslash" + k="14" /> + <hkern g1="quoteleft,quotedblleft" + g2="t" + k="-10" /> + <hkern g1="quoteleft,quotedblleft" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="16" /> + <hkern g1="quoteleft,quotedblleft" + g2="z,zcaron" + k="-4" /> + <hkern g1="quoteleft,quotedblleft" + g2="V,uni0423,uni0474" + k="-27" /> + <hkern g1="quoteleft,quotedblleft" + g2="X,uni0416,uni0425,uni046A" + k="-14" /> + <hkern g1="quoteleft,quotedblleft" + g2="florin" + k="49" /> + <hkern g1="quoteleft,quotedblleft" + g2="j" + k="-4" /> + <hkern g1="quoteleft,quotedblleft" + g2="i,igrave,iacute,icircumflex,idieresis,uni0469" + k="-4" /> + <hkern g1="quoteleft,quotedblleft" + g2="m,n,p,r,ntilde" + k="47" /> + <hkern g1="quoteright,quotedblright" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="225" /> + <hkern g1="quoteright,quotedblright" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="27" /> + <hkern g1="quoteright,quotedblright" + g2="J" + k="117" /> + <hkern g1="quoteright,quotedblright" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="-61" /> + <hkern g1="quoteright,quotedblright" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-35" /> + <hkern g1="quoteright,quotedblright" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="76" /> + <hkern g1="quoteright,quotedblright" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="137" /> + <hkern g1="quoteright,quotedblright" + g2="s,scaron,uni0455" + k="113" /> + <hkern g1="quoteright,quotedblright" + g2="Y,Yacute,Ydieresis,uni040E" + k="-27" /> + <hkern g1="quoteright,quotedblright" + g2="f,fi,fl,f_f_i,f_f_l" + k="-6" /> + <hkern g1="quoteright,quotedblright" + g2="oslash" + k="84" /> + <hkern g1="quoteright,quotedblright" + g2="w" + k="-6" /> + <hkern g1="quoteright,quotedblright" + g2="Oslash" + k="14" /> + <hkern g1="quoteright,quotedblright" + g2="S,Scaron,uni0405" + k="4" /> + <hkern g1="quoteright,quotedblright" + g2="Eth" + k="14" /> + <hkern g1="quoteright,quotedblright" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="4" /> + <hkern g1="quoteright,quotedblright" + g2="V,uni0423,uni0474" + k="-27" /> + <hkern g1="quoteright,quotedblright" + g2="X,uni0416,uni0425,uni046A" + k="-14" /> + <hkern g1="quoteright,quotedblright" + g2="florin" + k="43" /> + <hkern g1="quoteright,quotedblright" + g2="germandbls" + k="14" /> + <hkern g1="quoteright,quotedblright" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="-6" /> + <hkern g1="quoteright,quotedblright" + g2="Lslash" + k="20" /> + <hkern g1="quoteright,quotedblright" + g2="lslash" + k="41" /> + <hkern g1="quoteright,quotedblright" + g2="m,n,p,r,ntilde" + k="68" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="-47" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="106" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="J" + k="6" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="178" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="170" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="27" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="s,scaron,uni0455" + k="4" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="Y,Yacute,Ydieresis,uni040E" + k="240" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="f,fi,fl,f_f_i,f_f_l" + k="47" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="oslash" + k="6" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="w" + k="88" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="102" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="Oslash" + k="35" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="S,Scaron,uni0405" + k="27" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="92" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="Eth" + k="20" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="Z,Zcaron" + k="-4" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="t" + k="82" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="10" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="z,zcaron" + k="-6" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="V,uni0423,uni0474" + k="193" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="florin" + k="-47" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="j" + k="-41" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="germandbls" + k="6" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="96" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="x,uni0445,uni04B3" + k="-20" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Ntilde,Thorn,IJ,uni01C4,uni01C7,uni01CA,uni01F1" + k="6" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="lslash" + k="14" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="i,igrave,iacute,icircumflex,idieresis,uni0469" + k="6" /> + <hkern g1="slash" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="158" /> + <hkern g1="slash" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="82" /> + <hkern g1="slash" + g2="J" + k="217" /> + <hkern g1="slash" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="-68" /> + <hkern g1="slash" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-41" /> + <hkern g1="slash" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="211" /> + <hkern g1="slash" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="94" /> + <hkern g1="slash" + g2="s,scaron,uni0455" + k="178" /> + <hkern g1="slash" + g2="Y,Yacute,Ydieresis,uni040E" + k="-27" /> + <hkern g1="slash" + g2="f,fi,fl,f_f_i,f_f_l" + k="31" /> + <hkern g1="slash" + g2="oslash" + k="170" /> + <hkern g1="slash" + g2="w" + k="47" /> + <hkern g1="slash" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="27" /> + <hkern g1="slash" + g2="Oslash" + k="82" /> + <hkern g1="slash" + g2="S,Scaron,uni0405" + k="35" /> + <hkern g1="slash" + g2="Eth" + k="18" /> + <hkern g1="slash" + g2="t" + k="6" /> + <hkern g1="slash" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="78" /> + <hkern g1="slash" + g2="z,zcaron" + k="102" /> + <hkern g1="slash" + g2="m,n,p,r,ntilde" + k="109" /> + <hkern g1="underscore" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="-61" /> + <hkern g1="underscore" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="82" /> + <hkern g1="underscore" + g2="J" + k="20" /> + <hkern g1="underscore" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="88" /> + <hkern g1="underscore" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="96" /> + <hkern g1="underscore" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="47" /> + <hkern g1="underscore" + g2="Y,Yacute,Ydieresis,uni040E" + k="143" /> + <hkern g1="underscore" + g2="f,fi,fl,f_f_i,f_f_l" + k="20" /> + <hkern g1="underscore" + g2="oslash" + k="35" /> + <hkern g1="underscore" + g2="w" + k="82" /> + <hkern g1="underscore" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="76" /> + <hkern g1="underscore" + g2="Oslash" + k="61" /> + <hkern g1="underscore" + g2="S,Scaron,uni0405" + k="35" /> + <hkern g1="underscore" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="35" /> + <hkern g1="underscore" + g2="Eth" + k="6" /> + <hkern g1="underscore" + g2="Z,Zcaron" + k="-27" /> + <hkern g1="underscore" + g2="t" + k="55" /> + <hkern g1="underscore" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="35" /> + <hkern g1="underscore" + g2="z,zcaron" + k="-6" /> + <hkern g1="underscore" + g2="j" + k="-123" /> + <hkern g1="exclam" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="14" /> + <hkern g1="exclam" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="6" /> + <hkern g1="exclam" + g2="J" + k="6" /> + <hkern g1="exclam" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="14" /> + <hkern g1="exclam" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="14" /> + <hkern g1="exclam" + g2="S,Scaron,uni0405" + k="6" /> + <hkern g1="ordmasculine" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="41" /> + </font> +</defs></svg> diff --git a/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-Medium.ttf b/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-Medium.ttf new file mode 100755 index 0000000000000000000000000000000000000000..ce7c778e0c9753d5238c8d61975d69fb330682c7 Binary files /dev/null and b/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-Medium.ttf differ diff --git a/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-Medium.woff b/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-Medium.woff new file mode 100755 index 0000000000000000000000000000000000000000..3ba73e9744add2735a19817ede32cb1e51fe4de0 Binary files /dev/null and b/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-Medium.woff differ diff --git a/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-Medium.woff2 b/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-Medium.woff2 new file mode 100755 index 0000000000000000000000000000000000000000..69fa0848e841d06819d32360e5edf8d2e5dad9e3 Binary files /dev/null and b/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-Medium.woff2 differ diff --git a/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-MediumItalic.eot b/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-MediumItalic.eot new file mode 100755 index 0000000000000000000000000000000000000000..2c995ac35860febe136c991e511b07b6152dc794 Binary files /dev/null and b/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-MediumItalic.eot differ diff --git a/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-MediumItalic.svg b/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-MediumItalic.svg new file mode 100755 index 0000000000000000000000000000000000000000..3fa5c7f9216be0d5240fe97e4bef4f38d7427367 --- /dev/null +++ b/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-MediumItalic.svg @@ -0,0 +1,8943 @@ +<?xml version="1.0" standalone="no"?> +<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" > +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1"> +<metadata> +Created by FontForge 20161013 at Sun Mar 19 13:47:40 2017 + By ,,, +Copyright (c)2015, HK Grotesk Latin by Alfredo Marco Pradil (ammpradil@gmail.com) and HK Grotesk Cyrillic by Stefan Peev (http://www.contextbg.net/). HK Grotesk is a trademark of Alfredo Marco Pradil. +</metadata> +<defs> +<font id="HKGrotesk-MediumItalic" horiz-adv-x="1149" > + <font-face + font-family="HK Grotesk Medium Italic" + font-weight="500" + font-style="italic" + font-stretch="normal" + units-per-em="2048" + panose-1="0 0 6 0 0 0 0 0 0 0" + ascent="1434" + descent="-614" + x-height="999" + cap-height="1413" + bbox="-708 -513 2785 2240" + underline-thickness="82" + underline-position="-410" + slope="-13" + unicode-range="U+0020-FB02" + /> +<missing-glyph horiz-adv-x="1257" +d="M104 0l220 954h819l-219 -954h-820zM229 102h615l174 750h-615z" /> + <glyph glyph-name="fi" unicode="fi" horiz-adv-x="1043" +d="M63 0l193 838h-151l36 161l156 9q21 92 58.5 167t94 134.5t138 92t181.5 32.5q199 0 292 -126l-121 -132q-34 45 -75.5 66t-104.5 21q-220 0 -281 -272l531 8l-229 -999h-183l193 838h-347l-193 -838h-188z" /> + <glyph glyph-name="fl" unicode="fl" horiz-adv-x="1063" +d="M777 -20q-86 0 -121.5 58t-9.5 171l236 1006q-49 51 -148 51q-91 0 -151.5 -44.5t-78.5 -123.5l-24 -99h190l-37 -161h-189l-193 -838h-188l193 838h-151l36 161h152l31 128q34 146 151 226.5t281 80.5q184 0 316 -152l-237 -1049q-4 -30 -6.5 -46t6.5 -23.5t15.5 -9 +t21.5 -1.5q30 0 64 15l-32 -169q-68 -19 -127 -19z" /> + <glyph glyph-name="f_f_i" unicode="ffi" horiz-adv-x="1651" +d="M64 0l192 838h-151l36 161h153l25 108q36 150 160.5 238.5t278.5 88.5q85 0 158 -27.5t121 -78.5q69 53 154.5 79.5t164.5 26.5q165 0 314 -126l-126 -137q-1 1 -6.5 7.5t-10.5 12t-15 14.5t-20.5 16.5t-26.5 15.5t-33 13.5t-39.5 9t-46.5 3.5q-100 0 -173 -50.5 +t-91 -127.5l-20 -86h556l-229 -999h-182l192 838h-374l-192 -838h-190l192 838h-388l-193 -838h-190zM484 999h390l26 108q14 61 28 89q-64 67 -172 67q-98 0 -165.5 -50t-86.5 -128z" /> + <glyph glyph-name="f_f_l" unicode="ffl" horiz-adv-x="1674" +d="M1379 -20q-87 0 -121 53t-9 160l238 1016q-38 54 -148 54q-90 0 -160.5 -48.5t-88.5 -127.5l-21 -88h170l-37 -161h-170l-192 -838h-191l193 838h-395l-193 -838h-192l193 838h-150l36 161h153l27 114q24 104 90.5 178t156 108.5t192.5 34.5q169 0 278 -105 +q140 105 335 105q113 0 182.5 -40t123.5 -111l-243 -1072q-8 -35 2.5 -46t35.5 -11q28 0 68 14l-27 -170q-77 -18 -136 -18zM484 999l400 9q33 140 49 182q-63 73 -177 73q-99 0 -166.5 -49.5t-85.5 -128.5z" /> + <glyph glyph-name=".notdef" horiz-adv-x="1257" +d="M104 0l220 954h819l-219 -954h-820zM229 102h615l174 750h-615z" /> + <glyph glyph-name=".null" horiz-adv-x="0" + /> + <glyph glyph-name="nonmarkingreturn" horiz-adv-x="682" + /> + <glyph glyph-name="space" unicode=" " horiz-adv-x="553" + /> + <glyph glyph-name="exclam" unicode="!" horiz-adv-x="636" +d="M222 403l210 1031h204l-267 -1031h-147zM89 0l51 227h229l-51 -227h-229z" /> + <glyph glyph-name="quotedbl" unicode=""" horiz-adv-x="935" +d="M321 929l112 484h167l-112 -484h-167zM644 929l112 484h168l-112 -484h-168z" /> + <glyph glyph-name="numbersign" unicode="#" horiz-adv-x="1379" +d="M125 0l189 427h-236l33 140h265l131 300h-246l35 143h273l192 424h157l-196 -437h284l194 437h156l-192 -427h236l-33 -140h-264l-131 -300h245l-35 -142h-273l-190 -425h-155l192 436h-285l-191 -436h-155zM531 567h285l131 300h-285z" /> + <glyph glyph-name="dollar" unicode="$" horiz-adv-x="1112" +d="M312 -246l60 235q-101 15 -178 64t-120.5 135t-35.5 196l201 30q-14 -122 56 -183.5t194 -61.5q127 0 214 61.5t115 179.5q12 54 -7 98t-60 73t-95.5 58t-112.5 54t-111 60.5t-91 78t-52.5 106t3.5 144.5q32 139 143 231t258 117l59 229h151l-59 -229 +q108 -13 183.5 -71.5t108.5 -161.5l-177 -83q-43 142 -207 142q-90 0 -166.5 -55.5t-95.5 -141.5q-11 -46 3.5 -83.5t48 -63.5t78.5 -51.5t96 -46.5t101.5 -49.5t93.5 -60.5t72.5 -78.5t38.5 -104.5t-9 -138q-38 -169 -175.5 -277.5t-315.5 -122.5l-59 -229h-151z" /> + <glyph glyph-name="percent" unicode="%" horiz-adv-x="1559" +d="M449 787q-61 0 -105 22.5t-66.5 57.5t-32 81.5t-7.5 91.5t12 89q9 39 25 78.5t43.5 81.5t61.5 74t83 52.5t105 20.5q55 0 96.5 -20.5t65.5 -54t36 -78.5t11.5 -93.5t-12.5 -98.5q-13 -56 -40 -108t-66 -97t-93.5 -72t-116.5 -27zM184 -8l1101 1437h175l-1102 -1437h-174z +M451 921q61 0 110 63t69 146q9 44 8 81.5t-21 63t-57 25.5q-62 0 -111.5 -61.5t-68.5 -146.5q-18 -63 -1 -117t72 -54zM1094 -3q-61 0 -104.5 22.5t-66 58t-32.5 81.5t-8.5 91t11.5 90q12 50 36 100t61.5 98.5t95.5 79t127 30.5q68 0 115.5 -31t67.5 -80t25 -111t-12 -123 +q-13 -56 -39.5 -109t-65.5 -98t-94 -72t-117 -27zM1098 130q60 0 109.5 64t67.5 147q19 65 2 118.5t-70 53.5q-63 0 -112.5 -62t-68.5 -148q-9 -44 -8.5 -82.5t21.5 -64.5t59 -26z" /> + <glyph glyph-name="ampersand" unicode="&" horiz-adv-x="1376" +d="M1229 666q-62 -207 -194 -372l156 -241l-156 -117l-138 218q-216 -176 -471 -176q-192 0 -296 94t-66 261q18 76 60 142t108 121t126 93.5t147 85.5q-13 20 -23 36.5t-24 42t-23.5 48t-18 52t-12.5 56.5t-3.5 58t7.5 61q32 136 155.5 218.5t265.5 82.5q149 0 231 -97 +t49 -239q-26 -114 -115.5 -200t-235.5 -170l180 -279q77 118 117 257zM578 1089q-19 -81 75 -235q128 69 201.5 132t92.5 142q14 62 -21 104.5t-105 42.5q-80 0 -151.5 -50t-91.5 -136zM439 146q205 0 370 147l-215 340q-60 -34 -100 -58t-88.5 -59t-79 -66t-55.5 -71 +t-35 -83q-17 -77 40.5 -113.5t162.5 -36.5z" /> + <glyph glyph-name="quotesingle" unicode="'" horiz-adv-x="611" +d="M328 958l111 484h167l-111 -484h-167z" /> + <glyph glyph-name="parenleft" unicode="(" horiz-adv-x="570" +d="M232 -69q-55 79 -81 216t-20.5 287.5t37.5 289.5q54 233 161 434.5t251 333.5l178 -13q-334 -327 -444 -795q-52 -228 -34 -413.5t108 -352.5z" /> + <glyph glyph-name="parenright" unicode=")" horiz-adv-x="571" +d="M-88 -69q168 171 275.5 363t161.5 428q51 207 33.5 409t-105.5 361l159 -13q86 -133 102.5 -337t-40.5 -454q-48 -206 -165 -430.5t-251 -339.5z" /> + <glyph glyph-name="asterisk" unicode="*" horiz-adv-x="889" +d="M411 842l-109 84l205 180l-229 36l78 138l201 -91l23 224h151l-82 -224l239 91l17 -138l-249 -36l127 -180l-138 -84l-67 221z" /> + <glyph glyph-name="plus" unicode="+" horiz-adv-x="1266" +d="M572 106v446h-457v147h457v444h147v-444h457v-147h-457v-446h-147z" /> + <glyph glyph-name="comma" unicode="," horiz-adv-x="631" +d="M4 -225l214 489h237l-324 -489h-127z" /> + <glyph glyph-name="hyphen" unicode="-" horiz-adv-x="852" +d="M171 579l33 147h547l-33 -147h-547z" /> + <glyph glyph-name="period" unicode="." horiz-adv-x="658" +d="M104 0l52 227h220l-51 -227h-221z" /> + <glyph glyph-name="slash" unicode="/" horiz-adv-x="936" +d="M-226 -430l1216 1946h191l-1215 -1946h-192z" /> + <glyph glyph-name="zero" unicode="0" horiz-adv-x="1179" +d="M490 -20q-102 0 -180 33t-124.5 90t-74.5 130t-34.5 158t0 168t25.5 166q22 96 59 190t98 190t135 168t176.5 117.5t216.5 45.5q109 0 191.5 -42.5t130.5 -115t72 -169t21 -204t-29 -220.5q-25 -106 -68 -207t-106.5 -191.5t-139.5 -158.5t-171.5 -108t-197.5 -40z +M503 169q60 0 116.5 24.5t102.5 67t86.5 97t71.5 118t53.5 126.5t36.5 125q17 72 23 141.5t-2.5 138.5t-32.5 120t-72.5 83t-118.5 32q-73 0 -141 -34t-119.5 -89t-95 -128.5t-72 -149t-46.5 -153.5q-17 -72 -23 -141.5t2.5 -139t33 -121.5t75 -84.5t122.5 -32.5z" /> + <glyph glyph-name="one" unicode="1" horiz-adv-x="1179" +d="M458 0l244 1057h-324l36 160h166q77 0 135.5 48.5t75.5 123.5l5 24h189l-326 -1413h-201z" /> + <glyph glyph-name="two" unicode="2" horiz-adv-x="1179" +d="M-40 0l35 175q352 196 584 395q152 119 243 228.5t120 232.5q23 103 -18.5 161t-141.5 58q-132 0 -223.5 -94t-132.5 -238l-192 32q50 214 202.5 348t359.5 134q197 0 293.5 -120t52.5 -309q-33 -144 -149.5 -285.5t-307.5 -302.5q-177 -136 -368 -241l705 5l-41 -179 +h-1021z" /> + <glyph glyph-name="three" unicode="3" horiz-adv-x="1179" +d="M470 -20q-105 0 -190 28.5t-143 85.5t-78.5 141t3.5 195l189 -3q-28 -126 41 -195t195 -69q133 0 243 72.5t139 198.5q27 111 -38.5 168.5t-191.5 57.5h-125l42 180h112q98 0 171 58t97 160q21 89 -30.5 140t-146.5 51q-107 0 -194 -65.5t-112 -168.5l-180 33 +q28 121 105 210t180 132.5t219 43.5q88 0 161 -27t122 -77.5t67 -123.5t-3 -166q-19 -84 -73.5 -158.5t-138.5 -125.5q97 -45 131 -141t8 -222q-31 -134 -120.5 -229.5t-207 -139.5t-253.5 -44z" /> + <glyph glyph-name="four" unicode="4" horiz-adv-x="1179" +d="M587 0l82 358h-653l26 117l893 938h177l-203 -875h226l-41 -180h-226l-82 -358h-199zM312 538h398l133 565z" /> + <glyph glyph-name="five" unicode="5" horiz-adv-x="1179" +d="M473 -20q-185 0 -292.5 120.5t-105.5 297.5l190 39q-1 -43 4 -80.5t19.5 -75t39 -64t65 -43t94.5 -16.5q136 0 242 100.5t136 231.5q26 117 -26 198.5t-179 81.5q-83 0 -166 -42t-141 -111l-169 69l297 727h740l-42 -183h-581l-152 -361q113 77 259 77q132 0 225.5 -67.5 +t128.5 -180.5t4 -245q-30 -126 -117.5 -234.5t-213.5 -173.5t-259 -65z" /> + <glyph glyph-name="six" unicode="6" horiz-adv-x="1179" +d="M483 -20q-137 0 -237 66.5t-140.5 180.5t-9.5 249q29 127 122 237l582 700h232l-431 -496q42 6 76 6q136 0 236.5 -61.5t143 -171.5t11.5 -245q-29 -123 -114 -229.5t-210 -171t-261 -64.5zM502 167q126 0 236.5 92t139.5 220q27 115 -36 195.5t-180 80.5 +q-125 0 -236 -91.5t-141 -220.5q-26 -114 37 -195t180 -81z" /> + <glyph glyph-name="seven" unicode="7" horiz-adv-x="1179" +d="M120 0l884 1231h-734l42 182h977l-23 -102l-918 -1311h-228z" /> + <glyph glyph-name="eight" unicode="8" horiz-adv-x="1179" +d="M481 -20q-102 0 -186 27.5t-143.5 82t-80.5 136.5t2 191q27 116 106.5 207t203.5 148q-61 49 -84.5 129t-1.5 177q39 164 181.5 260t315.5 96q87 0 159.5 -26.5t121.5 -77t67 -123t-3 -165.5q-19 -86 -76 -161t-145 -127q96 -51 133.5 -148t7.5 -225q-30 -132 -121 -225 +t-207.5 -134.5t-249.5 -41.5zM659 833q103 0 186.5 62t106.5 163q22 92 -28 143.5t-145 51.5q-98 0 -183.5 -60t-108.5 -158q-22 -92 25 -147t147 -55zM497 156q130 0 236.5 73.5t135.5 202.5q27 113 -39 175t-189 62q-135 0 -240.5 -73t-134.5 -200q-27 -115 41.5 -177.5 +t189.5 -62.5z" /> + <glyph glyph-name="nine" unicode="9" horiz-adv-x="1179" +d="M244 0l430 496q-40 -6 -77 -6q-137 0 -237 61.5t-142 171.5t-11 245q28 123 113 229.5t211 171.5t262 65t236 -66.5t140 -181t9 -248.5q-29 -130 -119 -238l-583 -700h-232zM611 658q127 0 238 91.5t140 220.5q27 114 -36.5 195.5t-180.5 81.5q-125 0 -236.5 -92.5 +t-140.5 -220.5q-26 -114 37.5 -195t178.5 -81z" /> + <glyph glyph-name="colon" unicode=":" horiz-adv-x="677" +d="M276 728l52 226h229l-53 -226h-228zM109 0l52 227h229l-52 -227h-229z" /> + <glyph glyph-name="semicolon" unicode=";" horiz-adv-x="659" +d="M307 728l53 226h229l-53 -226h-229zM17 -225l214 489h238l-324 -489h-128z" /> + <glyph glyph-name="less" unicode="<" horiz-adv-x="1248" +d="M1031 161l-939 513l939 512l84 -146l-705 -366l705 -367z" /> + <glyph glyph-name="equal" unicode="=" horiz-adv-x="1251" +d="M239 764v169h792v-169h-792zM239 410v170h792v-170h-792z" /> + <glyph glyph-name="greater" unicode=">" horiz-adv-x="1248" +d="M251 161l-84 146l705 367l-705 366l84 146l939 -512z" /> + <glyph glyph-name="question" unicode="?" horiz-adv-x="1015" +d="M391 399l47 198q14 63 43 109.5t64.5 74t76.5 49t81 41.5t75 44.5t62.5 64.5t40.5 95q23 98 -30 145.5t-162 47.5q-119 0 -205.5 -66.5t-112.5 -181.5l-174 17q44 187 181 292t316 105q91 0 165 -26t124.5 -76.5t68.5 -125t-4 -171.5q-19 -80 -58 -140.5t-84 -93 +t-96 -60.5t-93 -46.5t-74 -48.5t-41 -68l-41 -179h-170zM274 0l51 227h229l-52 -227h-228z" /> + <glyph glyph-name="at" unicode="@" horiz-adv-x="2039" +d="M828 -348q-184 0 -334 61t-246 175t-129.5 278t14.5 370q43 187 145.5 351.5t245.5 285t327 190t382 69.5q134 0 248.5 -32.5t198.5 -91t146.5 -141t91.5 -182t34 -214t-26 -237.5q-27 -115 -78 -219.5t-123 -190.5t-171 -137t-210 -51q-135 0 -194.5 72t-26.5 187 +q-74 -71 -160 -105.5t-170 -34.5q-82 0 -140 33t-84.5 89t-32.5 129.5t15 154.5q23 98 78 200t131.5 189.5t179.5 143t208 55.5q99 0 161.5 -49t72.5 -124l53 124l172 -9q-28 -68 -107.5 -234t-139.5 -305.5t-80 -229.5q-15 -64 0 -87.5t73 -23.5q83 0 155 42t123 111.5 +t85.5 147.5t53.5 162q24 96 20 184.5t-26.5 166t-71.5 141t-115.5 109t-157.5 70.5t-199 25q-168 0 -323.5 -60t-276 -163t-207 -243.5t-123.5 -299.5q-37 -164 -10.5 -291t104.5 -213.5t196 -131.5t264 -45q121 0 259 42l37 -164q-150 -49 -312 -49zM825 225q82 0 161 44 +t137.5 113t100 149t59.5 157q43 190 -123 190q-83 0 -162.5 -43.5t-138 -112t-100 -147.5t-59.5 -156q-43 -194 125 -194z" /> + <glyph glyph-name="A" unicode="A" horiz-adv-x="1323" +d="M-77 0l873 1413h154l218 -1413h-215l-38 307h-587l-180 -307h-225zM438 486h450l-77 628z" /> + <glyph glyph-name="B" unicode="B" horiz-adv-x="1257" +d="M83 0l326 1413h431q69 0 129.5 -13t114.5 -41.5t87.5 -73t47 -108t-7.5 -146.5q-23 -97 -86 -170.5t-151 -117.5q94 -42 139 -140.5t15 -228.5q-22 -95 -76 -168.5t-128 -117.5t-158 -66t-173 -22h-510zM473 816h241q69 0 128.5 22t108 76t67.5 135q22 98 -34.5 139.5 +t-170.5 41.5h-245zM329 191h301q74 0 134.5 22.5t109 77.5t67.5 138q24 104 -32 156.5t-168 52.5h-309z" /> + <glyph glyph-name="C" unicode="C" horiz-adv-x="1428" +d="M655 -20q-111 0 -201 27.5t-151.5 77t-102 118t-57 152t-13 176.5t26.5 194q34 146 102 272.5t167.5 225.5t238 156t299.5 57q212 0 351 -104t164 -295l-199 -59q-11 144 -100.5 211t-236.5 67q-118 0 -219.5 -45.5t-173.5 -124t-122 -176.5t-76 -211q-21 -89 -23 -166.5 +t16.5 -144.5t58.5 -115t108.5 -75t161.5 -27q308 0 484 288l170 -96q-124 -188 -298 -285.5t-375 -97.5z" /> + <glyph glyph-name="D" unicode="D" horiz-adv-x="1407" +d="M83 0l326 1413h377q352 0 497 -191t63 -544q-76 -326 -302 -502t-574 -176h-387zM330 186h147q123 0 229 31t195.5 95t154.5 168.5t97 244.5q59 258 -36.5 380.5t-364.5 122.5h-182z" /> + <glyph glyph-name="E" unicode="E" horiz-adv-x="1241" +d="M83 0l326 1413h927l-42 -182h-724l-100 -434h648l-41 -180h-649l-98 -428h723l-43 -189h-927z" /> + <glyph glyph-name="F" unicode="F" horiz-adv-x="1214" +d="M83 0l326 1413h951l-42 -182h-748l-100 -434h659l-42 -180h-659l-141 -617h-204z" /> + <glyph glyph-name="G" unicode="G" horiz-adv-x="1521" +d="M655 -20q-111 0 -201 27.5t-151.5 77t-102 118t-57 152t-13 176.5t26.5 194q34 146 102.5 272.5t168 225.5t238 156t298.5 57q208 0 340 -104t173 -295l-193 -60q-23 139 -111 207.5t-229 68.5q-117 0 -218.5 -45t-174 -123t-123 -175.5t-76.5 -210.5q-21 -89 -23 -167 +t16.5 -146t58.5 -116.5t108.5 -76.5t160.5 -28q176 0 325.5 114.5t206.5 304.5l-325 -8l38 162h516l-170 -738h-164l43 221q-77 -108 -206.5 -174.5t-281.5 -66.5z" /> + <glyph glyph-name="H" unicode="H" horiz-adv-x="1472" +d="M83 0l326 1413h203l-142 -616h669l142 616h204l-326 -1413h-203l141 617h-669l-141 -617h-204z" /> + <glyph glyph-name="I" unicode="I" horiz-adv-x="599" +d="M83 0l326 1413h203l-325 -1413h-204z" /> + <glyph glyph-name="J" unicode="J" horiz-adv-x="1128" +d="M395 -20q-135 0 -224 62t-121.5 161.5t-13.5 221.5l200 8q-10 -74 -1 -133.5t55 -97t124 -37.5t136.5 24.5t97.5 73t63.5 105.5t42.5 135l168 728h-533l42 182h736l-212 -916q-118 -517 -560 -517z" /> + <glyph glyph-name="K" unicode="K" horiz-adv-x="1469" +d="M83 0l326 1413h203l-183 -786l919 786h272l-681 -567l372 -846h-240l-295 713l-401 -334l-88 -379h-204z" /> + <glyph glyph-name="L" unicode="L" horiz-adv-x="1049" +d="M83 0l326 1413h203l-282 -1224h604l-43 -189h-808z" /> + <glyph glyph-name="M" unicode="M" horiz-adv-x="1779" +d="M83 0l326 1413h295l144 -1074l644 1074h300l-326 -1413h-197l273 1173l-635 -1050h-207l-146 1050l-272 -1173h-199z" /> + <glyph glyph-name="N" unicode="N" horiz-adv-x="1435" +d="M83 0l326 1413h234l347 -1116l260 1116h198l-326 -1413h-237l-343 1118l-260 -1118h-199z" /> + <glyph glyph-name="O" unicode="O" horiz-adv-x="1521" +d="M652 -20q-111 0 -200.5 27.5t-150.5 77.5t-101.5 118.5t-57 152t-13 176.5t26.5 193q33 145 101.5 271t168 225t238.5 156t299 57q111 0 201 -27.5t151 -77.5t101.5 -118.5t57 -152t13.5 -176.5t-26 -194q-34 -145 -102.5 -270.5t-168 -224.5t-238.5 -156t-300 -57z +M669 163q120 0 222 45.5t174 125.5t121.5 178t75.5 213q20 85 22.5 160.5t-15 143t-56.5 116t-107.5 77t-161.5 28.5q-118 0 -219 -45.5t-173 -125.5t-121 -178.5t-75 -212.5q-20 -85 -22.5 -160.5t15 -143t55.5 -116t105.5 -77t159.5 -28.5z" /> + <glyph glyph-name="P" unicode="P" horiz-adv-x="1157" +d="M83 0l326 1413h412q214 0 321 -113t61 -308q-41 -182 -190 -280t-364 -98h-222l-141 -614h-203zM469 800h210q137 0 221.5 58t109.5 170q23 97 -31.5 148t-188.5 51h-222z" /> + <glyph glyph-name="Q" unicode="Q" horiz-adv-x="1557" +d="M1204 -107l-152 195q-171 -108 -400 -108q-111 0 -200.5 27.5t-150.5 77.5t-101.5 118.5t-57 152t-13 176.5t26.5 193q33 145 101.5 271t168 225t238.5 156t299 57q111 0 201 -27.5t151 -77.5t101.5 -118.5t57 -152.5t13.5 -177t-26 -194q-32 -138 -98 -263.5 +t-161 -219.5l155 -188zM671 169q141 0 266 66l-151 187l150 122l155 -182q124 144 175 363q20 85 22 160t-16.5 141.5t-58 114.5t-108 75.5t-161.5 27.5q-119 0 -221 -45t-174.5 -123t-122 -176t-75.5 -212q-20 -85 -22 -160t16 -141.5t57.5 -114.5t107.5 -75.5t161 -27.5z +" /> + <glyph glyph-name="R" unicode="R" horiz-adv-x="1242" +d="M81 -2l328 1414h423q96 0 175 -29t130.5 -83t71 -132t-2.5 -177q-30 -130 -129.5 -224t-237.5 -128l233 -641h-220l-207 621h-216l-144 -621h-204zM471 794h242q112 5 194 66.5t106 164.5q22 97 -34 151.5t-175 54.5h-232z" /> + <glyph glyph-name="S" unicode="S" horiz-adv-x="1124" +d="M502 -16q-128 0 -231 44.5t-167.5 138t-64.5 221.5l205 36q0 -122 73 -188t203 -66q135 0 218 68.5t83 177.5q0 54 -23 98.5t-61 73t-86.5 57t-99 51.5t-99 55t-86.5 67.5t-61 90t-23 122.5q0 173 133 288t327 115q143 0 249.5 -64t145.5 -178l-170 -83q-21 71 -84 111.5 +t-144 40.5q-101 0 -176.5 -60t-75.5 -153q0 -53 29.5 -96t77.5 -73.5t105 -59.5t114.5 -63t105.5 -75t77.5 -104.5t29.5 -143.5q0 -127 -70.5 -230.5t-190 -161t-263.5 -57.5z" /> + <glyph glyph-name="T" unicode="T" horiz-adv-x="1208" +d="M387 0l285 1237h-461l41 176h1126l-41 -176h-461l-284 -1237h-205z" /> + <glyph glyph-name="U" unicode="U" horiz-adv-x="1366" +d="M574 -20q-91 0 -163 20t-120.5 56.5t-80.5 87t-44.5 114t-9.5 134.5t21 150l201 871h203l-196 -851q-26 -119 -22.5 -205t60.5 -134t171 -48q177 0 275.5 106t142.5 298l193 834h204l-202 -878q-29 -124 -81 -223.5t-129 -174.5t-184.5 -116t-238.5 -41z" /> + <glyph glyph-name="V" unicode="V" horiz-adv-x="1333" +d="M473 0l-222 1413h216l152 -1108l666 1108h221l-872 -1413h-161z" /> + <glyph glyph-name="W" unicode="W" horiz-adv-x="1987" +d="M346 0l-83 1413h206l56 -1135l578 1053h160l89 -1053l582 1135h215l-737 -1413h-207l-90 1007l-561 -1007h-208z" /> + <glyph glyph-name="X" unicode="X" horiz-adv-x="1300" +d="M-67 0l635 707l-302 706h238l222 -566l491 566h244l-632 -706l303 -707h-235l-230 557l-487 -557h-247z" /> + <glyph glyph-name="Y" unicode="Y" horiz-adv-x="1361" +d="M465 0l129 552l-356 861h234l260 -670l574 670h241l-752 -861l-129 -552h-201z" /> + <glyph glyph-name="Z" unicode="Z" horiz-adv-x="1274" +d="M-40 0l31 148l1091 1083h-793l42 182h1067l-34 -155l-1085 -1074h836l-43 -184h-1112z" /> + <glyph glyph-name="bracketleft" unicode="[" horiz-adv-x="641" +d="M48 -126l384 1662h394l-28 -124h-235l-326 -1412h236l-31 -126h-394z" /> + <glyph glyph-name="backslash" unicode="\" horiz-adv-x="936" +d="M544 -430l-316 1946h183l317 -1946h-184z" /> + <glyph glyph-name="bracketright" unicode="]" horiz-adv-x="641" +d="M-91 -126l30 126h235l326 1412h-235l28 124h394l-384 -1662h-394z" /> + <glyph glyph-name="asciicircum" unicode="^" horiz-adv-x="978" +d="M168 823l538 638l249 -638h-192l-121 319l-271 -319h-203z" /> + <glyph glyph-name="underscore" unicode="_" horiz-adv-x="1245" +d="M67 -147l34 147h813l-34 -147h-813z" /> + <glyph glyph-name="grave" unicode="`" horiz-adv-x="536" +d="M461 1113l-212 300h209l152 -300h-149z" /> + <glyph glyph-name="a" unicode="a" +d="M908 999h196l-230 -999h-183l18 113q-130 -133 -320 -133q-100 0 -172.5 43t-107.5 116.5t-43.5 171t18.5 207.5q32 138 103 250.5t180 182t234 69.5q98 0 169 -38.5t106 -108.5zM813 518q18 66 15.5 125t-20.5 103.5t-62 70.5t-110 26q-136 0 -231.5 -103t-129.5 -258 +q-19 -91 -12 -163t55.5 -116.5t134.5 -44.5q139 0 232 101t128 259z" /> + <glyph glyph-name="b" unicode="b" +d="M547 -20q-97 0 -168 39t-106 108l-32 -127h-197l326 1412h197l-125 -526q132 135 317 135q101 0 174 -43.5t108 -117t43.5 -171.5t-19.5 -207q-32 -139 -103 -251t-179.5 -181.5t-235.5 -69.5zM513 155q137 0 233.5 103.5t130.5 259.5q18 66 15 125.5t-21.5 104.5t-63 72 +t-109.5 27q-92 0 -168.5 -51.5t-124 -132t-70.5 -181.5q-18 -67 -15 -126.5t21.5 -104t62.5 -70.5t109 -26z" /> + <glyph glyph-name="c" unicode="c" horiz-adv-x="987" +d="M425 -20q-91 0 -161.5 29t-113 79.5t-67 118.5t-23 146.5t18.5 162.5q23 98 71 186.5t117.5 159t165.5 112.5t205 42q143 0 235 -77t119 -207l-193 -57q-3 80 -50.5 122.5t-126.5 42.5q-71 0 -132 -31t-104 -84t-72.5 -115t-45.5 -131q-15 -63 -14.5 -118t16.5 -102.5 +t59.5 -75.5t109.5 -28q86 0 162.5 50.5t115.5 132.5l157 -87q-77 -131 -194 -201t-255 -70z" /> + <glyph glyph-name="d" unicode="d" +d="M1005 1413h195l-326 -1413h-183l18 113q-130 -133 -320 -133q-100 0 -172.5 43t-107.5 116.5t-43.5 171t18.5 207.5q32 138 103 250.5t180 182t234 69.5q98 0 169 -38.5t106 -108.5zM813 518q18 66 15.5 125t-20.5 103.5t-62 70.5t-110 26q-136 0 -231.5 -103 +t-129.5 -258q-19 -91 -12 -163t55.5 -116.5t134.5 -44.5q139 0 232 101t128 259z" /> + <glyph glyph-name="e" unicode="e" horiz-adv-x="1050" +d="M442 -12q-94 0 -167.5 27t-118.5 75.5t-71 114.5t-25 143.5t18 163.5q22 98 70 186.5t117.5 159t165.5 112.5t204 42q102 0 176 -30.5t113.5 -81.5t56.5 -121.5t13 -145.5t-24 -160q-5 -20 -15 -46h-694q-23 -119 26 -190.5t169 -71.5q92 0 161 23.5t136 80.5l115 -125 +q-101 -85 -203 -120.5t-223 -35.5zM296 574h513q24 135 -21 203t-167 68q-117 0 -201.5 -76.5t-123.5 -194.5z" /> + <glyph glyph-name="f" unicode="f" horiz-adv-x="683" +d="M94 0l193 838h-182l36 159h184l40 171q30 130 120 198t223 68q87 0 168 -43l-87 -145q-45 24 -93 24q-51 0 -89 -31.5t-52 -91.5l-34 -148h262l-37 -161h-262l-193 -838h-197z" /> + <glyph glyph-name="g" unicode="g" horiz-adv-x="1147" +d="M869 -8q-47 -203 -185 -315.5t-345 -112.5q-280 0 -378 213l165 93q50 -137 230 -137q123 0 208 73.5t115 201.5l30 117q-129 -134 -315 -134q-82 0 -145.5 28t-103 77t-60.5 116t-20.5 146.5t20.5 165.5q31 136 101.5 246.5t180.5 180t237 69.5q93 0 164.5 -39 +t106.5 -108l32 126h195zM455 167q137 0 230 101.5t129 255.5q17 64 14 122t-20.5 102.5t-61.5 71t-109 26.5q-137 0 -232.5 -103t-129.5 -256q-18 -64 -14.5 -122t22 -102t63 -70t109.5 -26z" /> + <glyph glyph-name="h" unicode="h" horiz-adv-x="1141" +d="M43 0l326 1413h194l-130 -548q69 75 158.5 113t176.5 38q74 0 130 -23t88.5 -62.5t49 -93t15.5 -113t-16 -124.5l-138 -600h-197l136 590q12 53 14.5 93.5t-7.5 77t-41 55.5t-83 19q-117 0 -224 -90.5t-134 -206.5l-123 -538h-195z" /> + <glyph glyph-name="i" unicode="i" horiz-adv-x="509" +d="M313 1205l48 208h211l-47 -208h-212zM43 0l229 999h194l-229 -999h-194z" /> + <glyph glyph-name="j" unicode="j" horiz-adv-x="517" +d="M316 1198l51 218h213l-51 -218h-213zM-118 -438q-80 0 -162 35l70 152q42 -17 93 -17t84.5 36t45.5 89l263 1142h197l-263 -1139q-32 -137 -114 -217.5t-214 -80.5z" /> + <glyph glyph-name="k" unicode="k" horiz-adv-x="1079" +d="M44 0l326 1413h194l-210 -895l525 481h252l-437 -376l256 -623h-224l-184 499l-234 -206l-70 -293h-194z" /> + <glyph glyph-name="l" unicode="l" horiz-adv-x="544" +d="M233 -20q-105 0 -139 57.5t-8 171.5l278 1204h194l-278 -1203q-8 -34 4.5 -47.5t46.5 -13.5q14 0 79 13l-26 -164q-79 -18 -151 -18z" /> + <glyph glyph-name="m" unicode="m" horiz-adv-x="1718" +d="M43 0l229 999h196l-33 -132q55 74 131 112.5t154 38.5q106 0 173.5 -47t87.5 -133q147 178 356 178q75 0 132 -23t90.5 -63t50.5 -94t16 -114.5t-16 -126.5l-137 -595h-196l135 590q59 254 -119 254q-111 0 -198 -87t-114 -205l-126 -552h-197l137 594q12 54 14 95 +t-7.5 78t-40.5 57t-84 20q-111 0 -198 -87t-114 -205l-127 -552h-195z" /> + <glyph glyph-name="n" unicode="n" horiz-adv-x="1141" +d="M43 0l229 999h196l-33 -131q68 73 155 110.5t172 37.5q76 0 133 -23t90 -62.5t49 -94t15 -115t-16 -126.5l-137 -595h-196l136 590q12 53 14 93.5t-8 76.5t-41.5 55t-83.5 19q-115 0 -221 -87t-131 -197l-127 -550h-195z" /> + <glyph glyph-name="o" unicode="o" horiz-adv-x="1123" +d="M453 -20q-147 0 -246.5 72.5t-133.5 194t0 267.5q31 137 116 250t211 180.5t266 67.5q147 0 246.5 -72.5t134 -194t0.5 -268.5q-48 -209 -215 -353t-379 -144zM468 149q148 0 246 104t134 261q18 65 14.5 124.5t-23 105t-68 72.5t-120.5 27q-76 0 -141 -29.5t-111 -81.5 +t-78 -116t-49 -139q-18 -65 -14.5 -124.5t23 -104.5t67.5 -72t120 -27z" /> + <glyph glyph-name="p" unicode="p" +d="M-57 -438l331 1437h192l-25 -112q129 133 318 133q81 0 144 -28t102 -77.5t60 -117t20.5 -147.5t-20.5 -168q-32 -139 -103 -251t-180 -181.5t-236 -69.5q-98 0 -168.5 39t-104.5 108l-135 -565h-195zM510 155q139 0 234.5 102.5t131.5 260.5q18 66 15 125.5t-21.5 105 +t-63.5 72t-111 26.5q-135 0 -230.5 -104.5t-130.5 -260.5q-34 -143 8.5 -235t167.5 -92z" /> + <glyph glyph-name="q" unicode="q" horiz-adv-x="1147" +d="M576 -438l131 551q-133 -133 -319 -133q-100 0 -172.5 43t-107.5 116.5t-43.5 171t18.5 207.5q32 138 103.5 250.5t180.5 182t234 69.5q98 0 168.5 -38.5t105.5 -108.5l36 126h192l-332 -1437h-195zM451 155q139 0 232.5 102t128.5 261q18 66 15.5 125.5t-20 104.5 +t-61.5 71.5t-110 26.5q-136 0 -232 -104t-130 -260q-19 -91 -12.5 -164t55 -118t134.5 -45z" /> + <glyph glyph-name="r" unicode="r" horiz-adv-x="804" +d="M43 0l229 999h189l-35 -165q56 92 135.5 136t156.5 44q52 0 102.5 -16.5t81.5 -44.5l-107 -155q-57 35 -121 35q-113 0 -205 -104.5t-130 -268.5l-106 -460h-190z" /> + <glyph glyph-name="s" unicode="s" horiz-adv-x="889" +d="M367 -20q-153 0 -254 80.5t-113 190.5l168 58q7 -69 62.5 -116t143.5 -47q93 0 151 50.5t58 117.5q0 39 -24 66t-62 42.5t-83.5 28.5t-91.5 30.5t-84 42.5t-62 71t-24 109q0 142 106.5 226t263.5 84q129 0 222 -58t124 -152l-162 -67q-18 57 -67 90t-124 33 +q-78 0 -127.5 -36t-49.5 -99q0 -33 19 -58t49.5 -39.5t70 -28.5t80 -26t80 -32.5t70 -46t49.5 -69t19 -100.5q0 -142 -119 -243.5t-289 -101.5z" /> + <glyph glyph-name="t" unicode="t" horiz-adv-x="713" +d="M364 -20q-140 0 -196 81t-24 218l129 559h-160l37 161h162l52 236l224 156l-90 -392h258l-37 -161h-257l-130 -557q-31 -135 82 -135q61 0 133 34l-29 -178q-57 -22 -154 -22z" /> + <glyph glyph-name="u" unicode="u" horiz-adv-x="1140" +d="M377 -23q-76 0 -132.5 24.5t-89.5 66t-48.5 98t-14.5 120t17 132.5l134 581h196l-137 -596q-12 -54 -14 -94.5t8.5 -77.5t43.5 -57t88 -20q116 0 217.5 85.5t137.5 239.5l119 520h195l-230 -999h-191l31 137q-60 -70 -149 -115t-181 -45z" /> + <glyph glyph-name="v" unicode="v" horiz-adv-x="972" +d="M290 0l-159 999h208l86 -748l436 748h212l-619 -999h-164z" /> + <glyph glyph-name="w" unicode="w" horiz-adv-x="1441" +d="M208 -2l-61 1001h204l20 -719l377 719h172l42 -717l357 717h208l-524 -999h-181l-43 738l-391 -740h-180z" /> + <glyph glyph-name="x" unicode="x" horiz-adv-x="974" +d="M-88 0l458 504l-222 495h231l138 -351l304 351h240l-456 -495l220 -504h-229l-136 359l-306 -359h-242z" /> + <glyph glyph-name="y" unicode="y" horiz-adv-x="1002" +d="M8 -430l283 445l-160 984h211l96 -759l448 759h216l-882 -1429h-212z" /> + <glyph glyph-name="z" unicode="z" horiz-adv-x="966" +d="M1006 999l-31 -147l-730 -688h569l-37 -164h-831l29 136l749 702h-556l36 161h802z" /> + <glyph glyph-name="braceleft" unicode="{" horiz-adv-x="611" +d="M266 -136q-108 0 -144 107q-33 39 -6 153l84 364q5 22 -0.5 39.5t-25.5 31t-32.5 20t-41.5 18.5l20 136q73 21 115.5 57.5t56.5 95.5l99 427q26 115 89 170.5t182 55.5h52q44 0 65 -2l-16 -123q-37 8 -74 8q-104 0 -118 -58l-116 -508q-18 -75 -67.5 -122t-142.5 -86 +q67 -28 100.5 -72t20.5 -101l-84 -362q-15 -66 2.5 -98.5t73.5 -32.5q28 0 65 11l-17 -127q-42 -2 -68 -2h-72z" /> + <glyph glyph-name="bar" unicode="|" horiz-adv-x="622" +d="M6 -512l473 2046h143l-473 -2046h-143z" /> + <glyph glyph-name="braceright" unicode="}" horiz-adv-x="611" +d="M-9 -136q-24 0 -66 2l16 122q23 -6 49 -6q64 0 106 40.5t58 107.5l83 362q24 105 200 171q-71 35 -100.5 85t-12.5 125l118 508q6 25 -8.5 33t-60.5 8q-36 0 -91 -11l16 126q22 2 65 2h51q120 0 162.5 -63.5t15.5 -179.5l-99 -427q-14 -59 8 -90.5t84 -51.5l-19 -136 +q-150 -51 -165 -120l-84 -364q-24 -112 -66 -167q-85 -76 -188 -76h-72z" /> + <glyph glyph-name="asciitilde" unicode="~" horiz-adv-x="1159" +d="M739 379q-59 0 -112 22t-84 48t-68.5 48t-69.5 22q-47 0 -63.5 -29t-15.5 -84h-132q0 116 54.5 180.5t154.5 64.5q57 0 104 -14t77.5 -33.5t56 -39.5t52 -34t52.5 -14q49 0 66.5 30.5t17.5 98.5h140q0 -130 -58.5 -198t-171.5 -68z" /> + <glyph glyph-name="uni00A0" unicode=" " horiz-adv-x="563" + /> + <glyph glyph-name="exclamdown" unicode="¡" horiz-adv-x="635" +d="M266 773l51 226h229l-51 -226h-229zM-1 -435l267 1032h147l-210 -1032h-204z" /> + <glyph glyph-name="cent" unicode="¢" horiz-adv-x="1125" +d="M357 -205l51 188q-73 11 -128 45t-88.5 84.5t-50.5 115t-15.5 137.5t19.5 151q21 91 62.5 173.5t102 151t144 114.5t179.5 60l49 185h143l-49 -187q114 -18 185 -91t97 -191l-189 -55q-9 175 -181 175q-71 0 -133.5 -32t-106.5 -86t-74.5 -118t-47.5 -136 +q-14 -65 -14 -122t16.5 -106.5t60 -78t111.5 -28.5q92 0 166.5 51.5t119.5 140.5l152 -85q-142 -238 -389 -271l-47 -185h-145z" /> + <glyph glyph-name="sterling" unicode="£" horiz-adv-x="1222" +d="M36 0l35 151q175 101 254.5 207.5t79.5 268.5h-223l39 158h184q-28 165 24 315.5t173.5 244.5t282.5 94q142 0 236.5 -89t112.5 -217l-162 -40q-12 83 -67.5 131t-133.5 48q-68 0 -125.5 -28t-95.5 -75.5t-63.5 -110.5t-29 -132t7.5 -141h479l-39 -158h-440 +q0 -156 -56.5 -278t-172.5 -187l766 5l-38 -167h-1028z" /> + <glyph glyph-name="currency" unicode="¤" horiz-adv-x="1264" +d="M183 149l-88 115l136 110q-59 115 -27.5 263.5t144.5 262.5l-81 95l133 116l80 -102q138 85 283 81.5t241 -90.5l133 109l89 -110l-132 -110q59 -116 27 -265t-145 -265l82 -95l-134 -115l-82 102q-138 -85 -282.5 -81t-241.5 91zM420 405q89 -85 211 -76.5t225 101.5 +q100 86 117.5 213t-64.5 216q-88 83 -209 73.5t-225 -101.5q-98 -84 -116 -211.5t61 -214.5z" /> + <glyph glyph-name="yen" unicode="¥" horiz-adv-x="1312" +d="M453 0l58 249h-299l33 148h299l28 118h-299l35 149h231l-301 749h202l264 -686l585 686h210l-647 -750h228l-34 -148h-300l-28 -118h300l-33 -148h-300l-58 -249h-174z" /> + <glyph glyph-name="brokenbar" unicode="¦" horiz-adv-x="630" +d="M293 731l172 744h151l-172 -744h-151zM53 -307l168 727h151l-168 -727h-151z" /> + <glyph glyph-name="section" unicode="§" horiz-adv-x="1115" +d="M457 -18q-160 0 -262 76.5t-104 220.5l192 40q-1 -97 48 -136.5t148 -39.5q62 0 114.5 14.5t94.5 51.5t54 93q10 44 -16 73t-75.5 44t-110 27.5t-120 32t-105.5 48.5t-66.5 84.5t-2.5 133.5q28 113 143 207q-36 32 -48.5 84t1.5 114q21 89 88.5 155t153.5 97.5t179 31.5 +q134 0 221.5 -63t109.5 -167l-175 -60q-10 133 -174 133q-90 0 -160 -47t-87 -120q-8 -36 12 -61t59 -38t89.5 -25.5t104.5 -23.5t102.5 -32t83.5 -52t49 -83t-3 -125q-28 -117 -136 -204q74 -69 42 -201q-17 -75 -62.5 -131.5t-108.5 -88.5t-131.5 -47.5t-141.5 -15.5z +M691 552q119 41 145 154q7 18 2.5 35t-8.5 29t-18 23.5t-25.5 19t-32 15t-37 12.5t-39.5 10.5t-41 9t-41.5 8.5t-39.5 9q-58 -22 -97.5 -67t-51.5 -96q-6 -29 4.5 -51.5t30 -36.5t54 -26.5t62.5 -18.5l70 -15t63 -14z" /> + <glyph glyph-name="dieresis" unicode="¨" horiz-adv-x="838" +d="M370 1205l47 208h186l-48 -208h-185zM714 1205l48 208h186l-48 -208h-186z" /> + <glyph glyph-name="copyright" unicode="©" horiz-adv-x="1785" +d="M941 -50q-209 0 -386.5 101.5t-280.5 275.5t-103 380q0 205 103 379t280.5 275.5t386.5 101.5q208 0 385 -101.5t280 -275.5t103 -379q0 -154 -61 -294t-164 -241.5t-245 -161.5t-298 -60zM941 102q123 0 237 49t197 130.5t132.5 193t49.5 232.5q0 120 -49.5 232 +t-132.5 193t-197 130t-237 49q-124 0 -238 -49t-197.5 -130t-133 -193t-49.5 -232q0 -161 84 -301t226.5 -222t307.5 -82zM957 283q-90 0 -161.5 33.5t-116.5 92t-68.5 134t-23.5 162.5q0 117 40 210.5t125.5 152t204.5 58.5q228 0 329 -215l-139 -59q-62 122 -190 122 +q-109 0 -165 -76.5t-56 -192.5t55 -191.5t164 -75.5q131 0 190 122l141 -60q-100 -217 -329 -217z" /> + <glyph glyph-name="ordfeminine" unicode="ª" horiz-adv-x="850" +d="M401 709q-104 0 -162.5 65t-34.5 168q45 195 309 195l211 9q19 87 -6.5 129.5t-106.5 42.5q-113 0 -212 -112l-94 84q75 78 148 111t165 33q138 0 199 -81t31 -211l-97 -419h-114l21 94q-59 -58 -120 -83t-137 -25zM430 827q87 0 166 64t102 141l-190 -9q-63 0 -111 -32 +t-60 -86q-9 -33 21 -55.5t72 -22.5z" /> + <glyph glyph-name="guillemotleft" unicode="«" horiz-adv-x="964" +d="M367 171l-320 340l473 340l-39 -185l-224 -155l149 -155zM731 171l-321 340l474 340l-39 -185l-226 -155l151 -155z" /> + <glyph glyph-name="logicalnot" unicode="¬" horiz-adv-x="1313" +d="M897 291v333h-727v173h911v-506h-184z" /> + <glyph glyph-name="uni00AD" unicode="­" horiz-adv-x="995" +d="M163 545l35 147h689l-34 -147h-690z" /> + <glyph glyph-name="registered" unicode="®" horiz-adv-x="1785" +d="M941 -48q-209 0 -386 101.5t-280 275.5t-103 380q0 205 103 379t280 275.5t386 101.5q156 0 298.5 -60t245.5 -161t164 -241t61 -294t-61 -294t-164 -241.5t-245.5 -161.5t-298.5 -60zM941 96q126 0 241.5 49t199.5 131.5t134 196t50 236.5q0 164 -84.5 305.5 +t-228.5 224.5t-312 83q-125 0 -241 -49t-200 -131.5t-134.5 -196t-50.5 -236.5t50 -236.5t134.5 -196t200 -131.5t241.5 -49zM684 297v809h311q134 0 203 -63.5t69 -178.5q0 -91 -43.5 -147t-110.5 -77l200 -343h-174l-175 325h-129v-325h-151zM825 762h170q70 0 100.5 24 +t30.5 78q0 55 -29.5 78t-101.5 23h-170v-203z" /> + <glyph glyph-name="macron" unicode="¯" horiz-adv-x="855" +d="M356 1166l31 134h550l-31 -134h-550z" /> + <glyph glyph-name="degree" unicode="°" horiz-adv-x="879" +d="M502 848q-121 0 -207 86t-86 207t86 207t207 86q120 0 205.5 -86t85.5 -207t-85.5 -207t-205.5 -86zM502 974q69 0 117.5 49t48.5 118q0 68 -48.5 117t-117.5 49t-118 -49t-49 -117q0 -69 49 -118t118 -49z" /> + <glyph glyph-name="plusminus" unicode="±" horiz-adv-x="1370" +d="M593 106v446h-457v147h457v444h146v-444h457v-147h-457v-446h-146zM137 -147v147h1058v-147h-1058z" /> + <glyph glyph-name="acute" unicode="´" horiz-adv-x="537" +d="M221 1124l289 289h228l-357 -289h-160z" /> + <glyph glyph-name="uni00B5" unicode="µ" horiz-adv-x="1295" +d="M61 -266l291 1265h190l-137 -598q-14 -68 -15.5 -123.5t32 -91t102.5 -35.5q117 0 225.5 89.5t134.5 202.5l128 556h189l-229 -999h-190l33 128q-58 -63 -145.5 -107t-177.5 -44q-97 0 -171 46l-91 -289h-169z" /> + <glyph glyph-name="paragraph" unicode="¶" horiz-adv-x="1299" +d="M375 -246l207 869q-88 0 -164 28t-128.5 81t-73 129.5t1.5 174.5q27 116 110.5 203.5t194 130.5t229.5 43h158l-383 -1659h-152zM735 -246l383 1659h152l-382 -1659h-153z" /> + <glyph glyph-name="periodcentered" unicode="·" horiz-adv-x="635" +d="M369 677q-61 0 -93.5 45t-17.5 109q11 50 54 83.5t96 33.5q62 0 95 -44.5t18 -108.5q-11 -50 -55 -84t-97 -34z" /> + <glyph glyph-name="cedilla" unicode="¸" horiz-adv-x="557" +d="M35 -513q-66 0 -112 39.5t-57 95.5l123 37q1 -24 16 -38t40 -14q44 0 79.5 31t46.5 75q10 42 -27 71t-116 29h-62l146 186h135l-106 -109q91 -8 129 -64.5t19 -140.5q-19 -82 -90.5 -140t-163.5 -58z" /> + <glyph glyph-name="ordmasculine" unicode="º" horiz-adv-x="856" +d="M489 711q-157 0 -233.5 110.5t-39.5 269.5q33 144 150.5 243.5t265.5 99.5q103 0 174 -51.5t96 -138t1 -189.5q-34 -145 -150.5 -244.5t-263.5 -99.5zM494 837q105 0 174 71.5t94 182.5q24 96 -7.5 157t-127.5 61q-107 0 -176.5 -71.5t-94.5 -182.5q-22 -98 9 -158 +t129 -60z" /> + <glyph glyph-name="guillemotright" unicode="»" horiz-adv-x="965" +d="M82 171l39 185l225 155l-149 155l38 185l320 -340zM445 171l39 185l224 155l-148 155l38 185l321 -340z" /> + <glyph glyph-name="questiondown" unicode="¿" horiz-adv-x="1012" +d="M461 773l51 226h229l-51 -226h-229zM319 -434q-91 0 -165 26t-124 76t-68 124.5t4 171.5q16 70 47.5 124.5t69.5 87.5t80 59t83 45t75.5 37.5t59 44.5t32.5 60l41 179h170l-46 -198q-14 -63 -43.5 -109.5t-65 -74t-76 -49.5t-81 -42t-75.5 -44.5t-62.5 -64.5t-40.5 -95 +q-24 -98 29 -145.5t161 -47.5q113 0 202 64t115 172l174 -17q-28 -119 -104 -207.5t-177.5 -132.5t-214.5 -44z" /> + <glyph glyph-name="Agrave" unicode="À" horiz-adv-x="1323" +d="M834 1526l-212 300h209l152 -300h-149zM-77 0l873 1413h154l218 -1413h-215l-38 307h-587l-180 -307h-225zM438 486h450l-77 628z" /> + <glyph glyph-name="Aacute" unicode="Á" horiz-adv-x="1323" +d="M794 1537l289 289h228l-357 -289h-160zM-77 0l873 1413h154l218 -1413h-215l-38 307h-587l-180 -307h-225zM438 486h450l-77 628z" /> + <glyph glyph-name="Acircumflex" unicode="Â" horiz-adv-x="1323" +d="M571 1511l403 354l243 -354h-168l-109 167l-189 -167h-180zM-77 0l873 1413h154l218 -1413h-215l-38 307h-587l-180 -307h-225zM438 486h450l-77 628z" /> + <glyph glyph-name="Atilde" unicode="Ã" horiz-adv-x="1323" +d="M1039 1541q-42 0 -72.5 15.5t-47 37.5t-29 44t-27.5 37.5t-35 15.5q-37 0 -67.5 -39.5t-45.5 -97.5h-126q28 129 89.5 198t146.5 69q42 0 72.5 -15.5t47 -37.5t29.5 -44.5t27.5 -38t33.5 -15.5q36 0 67 40.5t47 104.5h133q-62 -274 -243 -274zM-77 0l873 1413h154 +l218 -1413h-215l-38 307h-587l-180 -307h-225zM438 486h450l-77 628z" /> + <glyph glyph-name="Adieresis" unicode="Ä" horiz-adv-x="1323" +d="M656 1618l47 208h186l-48 -208h-185zM1000 1618l48 208h186l-48 -208h-186zM-77 0l873 1413h154l218 -1413h-215l-38 307h-587l-180 -307h-225zM438 486h450l-77 628z" /> + <glyph glyph-name="Aring" unicode="Å" horiz-adv-x="1323" +d="M967 1328l201 -1328h-206l-38 307h-596l-180 -307h-225l829 1336q-43 27 -61.5 83t-3.5 117q21 86 92.5 142t154.5 56q92 0 146 -68t31 -166q-30 -117 -144 -172zM874 1411q52 0 90.5 38.5t41.5 89.5q2 39 -21.5 62t-64.5 23q-55 0 -91 -38.5t-39 -85.5q-3 -39 21 -64 +t63 -25zM438 486h459l-79 640z" /> + <glyph glyph-name="AE" unicode="Æ" horiz-adv-x="1836" +d="M-77 0l868 1413h1151l-39 -168h-747l-105 -453h659l-39 -171h-660l-103 -446h748l-40 -175h-939l70 307h-432l-181 -307h-211zM416 474h370l178 771h-80z" /> + <glyph glyph-name="Ccedilla" unicode="Ç" horiz-adv-x="1428" +d="M674 171q308 0 484 288l170 -96q-113 -171 -267 -267t-333 -113l-91 -93q91 -8 129 -64.5t19 -140.5q-19 -82 -90.5 -140t-163.5 -58q-66 0 -112 39.5t-57 95.5l123 37q1 -24 16 -38t40 -14q44 0 79.5 31t46.5 75q10 42 -27 71t-116 29h-62l133 169q-119 9 -210 52 +t-146 112t-83 161t-27 197t28 221q34 146 102 272.5t167.5 225.5t238 156t299.5 57q212 0 351 -104t164 -295l-199 -59q-11 144 -100.5 211t-236.5 67q-118 0 -219.5 -45.5t-173.5 -124t-122 -176.5t-76 -211q-21 -89 -23 -166.5t16.5 -144.5t58.5 -115t108.5 -75t161.5 -27 +z" /> + <glyph glyph-name="Egrave" unicode="È" horiz-adv-x="1241" +d="M816 1526l-212 300h209l152 -300h-149zM83 0l326 1413h927l-42 -182h-724l-100 -434h648l-41 -180h-649l-98 -428h723l-43 -189h-927z" /> + <glyph glyph-name="Eacute" unicode="É" horiz-adv-x="1241" +d="M776 1537l289 289h228l-357 -289h-160zM83 0l326 1413h927l-42 -182h-724l-100 -434h648l-41 -180h-649l-98 -428h723l-43 -189h-927z" /> + <glyph glyph-name="Ecircumflex" unicode="Ê" horiz-adv-x="1241" +d="M553 1511l403 354l243 -354h-168l-109 167l-189 -167h-180zM83 0l326 1413h927l-42 -182h-724l-100 -434h648l-41 -180h-649l-98 -428h723l-43 -189h-927z" /> + <glyph glyph-name="Edieresis" unicode="Ë" horiz-adv-x="1241" +d="M638 1618l47 208h186l-48 -208h-185zM982 1618l48 208h186l-48 -208h-186zM83 0l326 1413h927l-42 -182h-724l-100 -434h648l-41 -180h-649l-98 -428h723l-43 -189h-927z" /> + <glyph glyph-name="Igrave" unicode="Ì" horiz-adv-x="599" +d="M470 1526l-212 300h209l152 -300h-149zM83 0l326 1413h203l-325 -1413h-204z" /> + <glyph glyph-name="Iacute" unicode="Í" horiz-adv-x="599" +d="M430 1537l289 289h228l-357 -289h-160zM83 0l326 1413h203l-325 -1413h-204z" /> + <glyph glyph-name="Icircumflex" unicode="Î" horiz-adv-x="599" +d="M207 1511l403 354l243 -354h-168l-109 167l-189 -167h-180zM83 0l326 1413h203l-325 -1413h-204z" /> + <glyph glyph-name="Idieresis" unicode="Ï" horiz-adv-x="599" +d="M292 1618l47 208h186l-48 -208h-185zM636 1618l48 208h186l-48 -208h-186zM83 0l326 1413h203l-325 -1413h-204z" /> + <glyph glyph-name="Eth" unicode="Ð" horiz-adv-x="1426" +d="M103 0l147 639h-113l34 148h113l145 626h375q349 0 496 -191t66 -544q-76 -325 -304.5 -501.5t-574.5 -176.5h-384zM339 181h153q123 0 231 32t199.5 97t158.5 170.5t99 244.5q58 255 -41.5 382t-367.5 127h-189l-103 -447h381l-34 -148h-381z" /> + <glyph glyph-name="Ntilde" unicode="Ñ" horiz-adv-x="1435" +d="M1093 1541q-42 0 -72.5 15.5t-47 37.5t-29 44t-27.5 37.5t-35 15.5q-37 0 -67.5 -39.5t-45.5 -97.5h-126q28 129 89.5 198t146.5 69q42 0 72.5 -15.5t47 -37.5t29.5 -44.5t27.5 -38t33.5 -15.5q36 0 67 40.5t47 104.5h133q-62 -274 -243 -274zM83 0l326 1413h234 +l347 -1116l260 1116h198l-326 -1413h-237l-343 1118l-260 -1118h-199z" /> + <glyph glyph-name="Ograve" unicode="Ò" horiz-adv-x="1521" +d="M930 1526l-212 300h209l152 -300h-149zM652 -20q-111 0 -200.5 27.5t-150.5 77.5t-101.5 118.5t-57 152t-13 176.5t26.5 193q33 145 101.5 271t168 225t238.5 156t299 57q111 0 201 -27.5t151 -77.5t101.5 -118.5t57 -152t13.5 -176.5t-26 -194q-34 -145 -102.5 -270.5 +t-168 -224.5t-238.5 -156t-300 -57zM669 163q120 0 222 45.5t174 125.5t121.5 178t75.5 213q20 85 22.5 160.5t-15 143t-56.5 116t-107.5 77t-161.5 28.5q-118 0 -219 -45.5t-173 -125.5t-121 -178.5t-75 -212.5q-20 -85 -22.5 -160.5t15 -143t55.5 -116t105.5 -77 +t159.5 -28.5z" /> + <glyph glyph-name="Oacute" unicode="Ó" horiz-adv-x="1521" +d="M890 1537l289 289h228l-357 -289h-160zM652 -20q-111 0 -200.5 27.5t-150.5 77.5t-101.5 118.5t-57 152t-13 176.5t26.5 193q33 145 101.5 271t168 225t238.5 156t299 57q111 0 201 -27.5t151 -77.5t101.5 -118.5t57 -152t13.5 -176.5t-26 -194q-34 -145 -102.5 -270.5 +t-168 -224.5t-238.5 -156t-300 -57zM669 163q120 0 222 45.5t174 125.5t121.5 178t75.5 213q20 85 22.5 160.5t-15 143t-56.5 116t-107.5 77t-161.5 28.5q-118 0 -219 -45.5t-173 -125.5t-121 -178.5t-75 -212.5q-20 -85 -22.5 -160.5t15 -143t55.5 -116t105.5 -77 +t159.5 -28.5z" /> + <glyph glyph-name="Ocircumflex" unicode="Ô" horiz-adv-x="1521" +d="M667 1511l403 354l243 -354h-168l-109 167l-189 -167h-180zM652 -20q-111 0 -200.5 27.5t-150.5 77.5t-101.5 118.5t-57 152t-13 176.5t26.5 193q33 145 101.5 271t168 225t238.5 156t299 57q111 0 201 -27.5t151 -77.5t101.5 -118.5t57 -152t13.5 -176.5t-26 -194 +q-34 -145 -102.5 -270.5t-168 -224.5t-238.5 -156t-300 -57zM669 163q120 0 222 45.5t174 125.5t121.5 178t75.5 213q20 85 22.5 160.5t-15 143t-56.5 116t-107.5 77t-161.5 28.5q-118 0 -219 -45.5t-173 -125.5t-121 -178.5t-75 -212.5q-20 -85 -22.5 -160.5t15 -143 +t55.5 -116t105.5 -77t159.5 -28.5z" /> + <glyph glyph-name="Otilde" unicode="Õ" horiz-adv-x="1521" +d="M1135 1541q-42 0 -72.5 15.5t-47 37.5t-29 44t-27.5 37.5t-35 15.5q-37 0 -67.5 -39.5t-45.5 -97.5h-126q28 129 89.5 198t146.5 69q42 0 72.5 -15.5t47 -37.5t29.5 -44.5t27.5 -38t33.5 -15.5q36 0 67 40.5t47 104.5h133q-62 -274 -243 -274zM652 -20 +q-111 0 -200.5 27.5t-150.5 77.5t-101.5 118.5t-57 152t-13 176.5t26.5 193q33 145 101.5 271t168 225t238.5 156t299 57q111 0 201 -27.5t151 -77.5t101.5 -118.5t57 -152t13.5 -176.5t-26 -194q-34 -145 -102.5 -270.5t-168 -224.5t-238.5 -156t-300 -57zM669 163 +q120 0 222 45.5t174 125.5t121.5 178t75.5 213q20 85 22.5 160.5t-15 143t-56.5 116t-107.5 77t-161.5 28.5q-118 0 -219 -45.5t-173 -125.5t-121 -178.5t-75 -212.5q-20 -85 -22.5 -160.5t15 -143t55.5 -116t105.5 -77t159.5 -28.5z" /> + <glyph glyph-name="Odieresis" unicode="Ö" horiz-adv-x="1521" +d="M752 1618l47 208h186l-48 -208h-185zM1096 1618l48 208h186l-48 -208h-186zM652 -20q-111 0 -200.5 27.5t-150.5 77.5t-101.5 118.5t-57 152t-13 176.5t26.5 193q33 145 101.5 271t168 225t238.5 156t299 57q111 0 201 -27.5t151 -77.5t101.5 -118.5t57 -152t13.5 -176.5 +t-26 -194q-34 -145 -102.5 -270.5t-168 -224.5t-238.5 -156t-300 -57zM669 163q120 0 222 45.5t174 125.5t121.5 178t75.5 213q20 85 22.5 160.5t-15 143t-56.5 116t-107.5 77t-161.5 28.5q-118 0 -219 -45.5t-173 -125.5t-121 -178.5t-75 -212.5q-20 -85 -22.5 -160.5 +t15 -143t55.5 -116t105.5 -77t159.5 -28.5z" /> + <glyph glyph-name="multiply" unicode="×" horiz-adv-x="1135" +d="M256 198l-104 103l323 324l-314 314l104 105l315 -315l322 322l104 -103l-322 -323l314 -314l-104 -105l-314 315z" /> + <glyph glyph-name="Oslash" unicode="Ø" horiz-adv-x="1521" +d="M1360 1287q94 -101 119.5 -261t-18.5 -338q-34 -145 -102.5 -270.5t-168 -224.5t-238.5 -156t-300 -57q-178 0 -301 71l-41 -51h-159l104 128q-94 101 -118.5 260.5t19.5 336.5q33 145 101.5 271t168 225t238.5 156t299 57q178 0 301 -71l41 50h158zM356 688 +q-60 -256 32 -397l749 916q-77 43 -193 43q-118 0 -219 -45.5t-173 -125.5t-121 -178.5t-75 -212.5zM1262 725q60 259 -34 399l-750 -918q78 -43 191 -43q120 0 222 45.5t174 125.5t121.5 178t75.5 213z" /> + <glyph glyph-name="Ugrave" unicode="Ù" horiz-adv-x="1366" +d="M853 1526l-212 300h209l152 -300h-149zM574 -20q-91 0 -163 20t-120.5 56.5t-80.5 87t-44.5 114t-9.5 134.5t21 150l201 871h203l-196 -851q-26 -119 -22.5 -205t60.5 -134t171 -48q177 0 275.5 106t142.5 298l193 834h204l-202 -878q-29 -124 -81 -223.5t-129 -174.5 +t-184.5 -116t-238.5 -41z" /> + <glyph glyph-name="Uacute" unicode="Ú" horiz-adv-x="1366" +d="M813 1537l289 289h228l-357 -289h-160zM574 -20q-91 0 -163 20t-120.5 56.5t-80.5 87t-44.5 114t-9.5 134.5t21 150l201 871h203l-196 -851q-26 -119 -22.5 -205t60.5 -134t171 -48q177 0 275.5 106t142.5 298l193 834h204l-202 -878q-29 -124 -81 -223.5t-129 -174.5 +t-184.5 -116t-238.5 -41z" /> + <glyph glyph-name="Ucircumflex" unicode="Û" horiz-adv-x="1366" +d="M590 1511l403 354l243 -354h-168l-109 167l-189 -167h-180zM574 -20q-91 0 -163 20t-120.5 56.5t-80.5 87t-44.5 114t-9.5 134.5t21 150l201 871h203l-196 -851q-26 -119 -22.5 -205t60.5 -134t171 -48q177 0 275.5 106t142.5 298l193 834h204l-202 -878 +q-29 -124 -81 -223.5t-129 -174.5t-184.5 -116t-238.5 -41z" /> + <glyph glyph-name="Udieresis" unicode="Ü" horiz-adv-x="1366" +d="M675 1618l47 208h186l-48 -208h-185zM1019 1618l48 208h186l-48 -208h-186zM574 -20q-91 0 -163 20t-120.5 56.5t-80.5 87t-44.5 114t-9.5 134.5t21 150l201 871h203l-196 -851q-26 -119 -22.5 -205t60.5 -134t171 -48q177 0 275.5 106t142.5 298l193 834h204l-202 -878 +q-29 -124 -81 -223.5t-129 -174.5t-184.5 -116t-238.5 -41z" /> + <glyph glyph-name="Yacute" unicode="Ý" horiz-adv-x="1361" +d="M811 1537l289 289h228l-357 -289h-160zM465 0l129 552l-356 861h234l260 -670l574 670h241l-752 -861l-129 -552h-201z" /> + <glyph glyph-name="Thorn" unicode="Þ" horiz-adv-x="1148" +d="M83 0l326 1413h193l-46 -197h247q207 0 299.5 -111.5t49.5 -303.5q-44 -187 -191.5 -286t-361.5 -99h-228l-95 -416h-193zM412 593h215q136 0 223.5 61.5t114.5 177.5q23 102 -32 155.5t-190 53.5h-227z" /> + <glyph glyph-name="germandbls" unicode="ß" horiz-adv-x="1181" +d="M616 -18q-105 0 -231 55l101 165q66 -38 145 -38q72 0 135.5 47t77.5 113q8 36 -1 69t-30 58.5t-47.5 54t-52.5 55t-46 61t-27 73t4 90.5q11 48 43 84.5t70.5 60t76.5 46t69 57t41 80.5q15 63 -27.5 106.5t-140.5 43.5q-117 0 -201 -78.5t-120 -233.5l-218 -951h-192 +l224 969q28 120 81 211.5t122.5 145.5t147.5 81t163 27q79 0 149.5 -26.5t121 -73.5t71.5 -118.5t2 -153.5q-13 -57 -47 -100t-74 -68t-78.5 -46t-68.5 -47t-37 -59q-7 -30 18.5 -62.5t64 -62t75.5 -75t54.5 -102.5t-0.5 -144q-32 -138 -150.5 -226t-267.5 -88z" /> + <glyph glyph-name="agrave" unicode="à" +d="M803 1113h-149l-212 300h209zM908 999h196l-230 -999h-183l18 113q-130 -133 -320 -133q-100 0 -172.5 43t-107.5 116.5t-43.5 171t18.5 207.5q32 138 103 250.5t180 182t234 69.5q98 0 169 -38.5t106 -108.5zM813 518q18 66 15.5 125t-20.5 103.5t-62 70.5t-110 26 +q-136 0 -231.5 -103t-129.5 -258q-19 -91 -12 -163t55.5 -116.5t134.5 -44.5q139 0 232 101t128 259z" /> + <glyph glyph-name="aacute" unicode="á" +d="M1131 1413l-357 -289h-160l289 289h228zM876 873l32 126h196l-230 -999h-183l18 113q-130 -133 -320 -133q-100 0 -172.5 43t-107.5 116.5t-43.5 171t18.5 207.5q32 138 103 250.5t180 182t234 69.5q98 0 169 -38.5t106 -108.5zM813 518q18 66 15.5 125t-20.5 103.5 +t-62 70.5t-110 26q-136 0 -231.5 -103t-129.5 -258q-19 -91 -12 -163t55.5 -116.5t134.5 -44.5q139 0 232 101t128 259z" /> + <glyph glyph-name="acircumflex" unicode="â" +d="M760 1265l-189 -167h-180l403 354l243 -354h-168zM908 999h196l-230 -999h-183l18 113q-130 -133 -320 -133q-100 0 -172.5 43t-107.5 116.5t-43.5 171t18.5 207.5q32 138 103 250.5t180 182t234 69.5q98 0 169 -38.5t106 -108.5zM813 518q18 66 15.5 125t-20.5 103.5 +t-62 70.5t-110 26q-136 0 -231.5 -103t-129.5 -258q-19 -91 -12 -163t55.5 -116.5t134.5 -44.5q139 0 232 101t128 259z" /> + <glyph glyph-name="atilde" unicode="ã" +d="M648 1278q-37 0 -67.5 -39.5t-45.5 -97.5h-126q28 129 89.5 198t146.5 69q42 0 72.5 -15.5t47 -38t29.5 -44.5t27.5 -37.5t33.5 -15.5q36 0 67 40.5t47 104.5h133q-62 -274 -243 -274q-42 0 -72.5 15.5t-47 37.5t-29 44t-27.5 37.5t-35 15.5zM908 999h196l-230 -999h-183 +l18 113q-130 -133 -320 -133q-100 0 -172.5 43t-107.5 116.5t-43.5 171t18.5 207.5q32 138 103 250.5t180 182t234 69.5q98 0 169 -38.5t106 -108.5zM813 518q18 66 15.5 125t-20.5 103.5t-62 70.5t-110 26q-136 0 -231.5 -103t-129.5 -258q-19 -91 -12 -163t55.5 -116.5 +t134.5 -44.5q139 0 232 101t128 259z" /> + <glyph glyph-name="adieresis" unicode="ä" +d="M709 1413l-48 -208h-185l47 208h186zM1054 1413l-48 -208h-186l48 208h186zM908 999h196l-230 -999h-183l18 113q-130 -133 -320 -133q-100 0 -172.5 43t-107.5 116.5t-43.5 171t18.5 207.5q32 138 103 250.5t180 182t234 69.5q98 0 169 -38.5t106 -108.5zM813 518 +q18 66 15.5 125t-20.5 103.5t-62 70.5t-110 26q-136 0 -231.5 -103t-129.5 -258q-19 -91 -12 -163t55.5 -116.5t134.5 -44.5q139 0 232 101t128 259z" /> + <glyph glyph-name="aring" unicode="å" +d="M724 1074q-97 0 -148 70t-27 165q20 83 91 140t156 57q95 0 147.5 -69.5t28.5 -163.5q-20 -84 -92 -141.5t-156 -57.5zM660 1274q-2 -39 19.5 -61t58.5 -22q49 0 85 36.5t39 83.5q2 38 -20 60t-60 22q-53 0 -86 -34.5t-36 -84.5zM908 999h196l-230 -999h-183l18 113 +q-130 -133 -320 -133q-100 0 -172.5 43t-107.5 116.5t-43.5 171t18.5 207.5q32 138 103 250.5t180 182t234 69.5q98 0 169 -38.5t106 -108.5zM813 518q18 66 15.5 125t-20.5 103.5t-62 70.5t-110 26q-136 0 -231.5 -103t-129.5 -258q-19 -91 -12 -163t55.5 -116.5 +t134.5 -44.5q139 0 232 101t128 259z" /> + <glyph glyph-name="ae" unicode="æ" horiz-adv-x="1673" +d="M289 -20q-144 0 -225.5 89.5t-49.5 231.5q65 279 442 282h298q30 139 -6.5 205.5t-158.5 66.5q-83 0 -160.5 -43t-130.5 -103l-123 114q98 99 202 146t234 47q118 0 193.5 -48t101.5 -130q148 174 361 174q100 0 172 -31t110.5 -82.5t54.5 -122.5t12 -145.5t-24 -157.5 +q-12 -33 -16 -37h-693q-21 -125 27.5 -198t167.5 -73q92 0 161.5 23.5t137.5 80.5l113 -125q-101 -85 -203 -120.5t-223 -35.5q-143 0 -222.5 61.5t-99.5 164.5q-179 -234 -453 -234zM919 583h514q45 262 -190 262q-116 0 -202 -75.5t-122 -186.5zM341 142q124 0 236.5 92.5 +t142.5 201.5h-273q-92 -2 -161.5 -48t-87.5 -123q-13 -55 30.5 -89t112.5 -34z" /> + <glyph glyph-name="ccedilla" unicode="ç" horiz-adv-x="987" +d="M439 155q86 0 162.5 50.5t115.5 132.5l157 -87q-70 -119 -174.5 -188.5t-229.5 -80.5l-89 -92q91 -8 129 -64.5t19 -140.5q-19 -82 -90.5 -140t-163.5 -58q-66 0 -112 39.5t-57 95.5l123 37q1 -24 16 -38t40 -14q44 0 79.5 31t46.5 75q10 42 -27 71t-116 29h-62l136 174 +q-89 15 -152.5 65t-92.5 121t-35.5 160t17.5 183q23 98 71 186.5t117.5 159t165.5 112.5t205 42q143 0 235 -77t119 -207l-193 -57q-3 80 -50.5 122.5t-126.5 42.5q-71 0 -132 -31t-104 -84t-72.5 -115t-45.5 -131q-15 -63 -14.5 -118t16.5 -102.5t59.5 -75.5t109.5 -28z +" /> + <glyph glyph-name="egrave" unicode="è" horiz-adv-x="1050" +d="M593 1113l-212 300h209l152 -300h-149zM442 -12q-94 0 -167.5 27t-118.5 75.5t-71 114.5t-25 143.5t18 163.5q22 98 70 186.5t117.5 159t165.5 112.5t204 42q102 0 176 -30.5t113.5 -81.5t56.5 -121.5t13 -145.5t-24 -160q-5 -20 -15 -46h-694q-23 -119 26 -190.5 +t169 -71.5q92 0 161 23.5t136 80.5l115 -125q-101 -85 -203 -120.5t-223 -35.5zM296 574h513q24 135 -21 203t-167 68q-117 0 -201.5 -76.5t-123.5 -194.5z" /> + <glyph glyph-name="eacute" unicode="é" horiz-adv-x="1050" +d="M553 1124l289 289h228l-357 -289h-160zM442 -12q-94 0 -167.5 27t-118.5 75.5t-71 114.5t-25 143.5t18 163.5q22 98 70 186.5t117.5 159t165.5 112.5t204 42q102 0 176 -30.5t113.5 -81.5t56.5 -121.5t13 -145.5t-24 -160q-5 -20 -15 -46h-694q-23 -119 26 -190.5 +t169 -71.5q92 0 161 23.5t136 80.5l115 -125q-101 -85 -203 -120.5t-223 -35.5zM296 574h513q24 135 -21 203t-167 68q-117 0 -201.5 -76.5t-123.5 -194.5z" /> + <glyph glyph-name="ecircumflex" unicode="ê" horiz-adv-x="1050" +d="M330 1098l403 354l243 -354h-168l-109 167l-189 -167h-180zM442 -12q-94 0 -167.5 27t-118.5 75.5t-71 114.5t-25 143.5t18 163.5q22 98 70 186.5t117.5 159t165.5 112.5t204 42q102 0 176 -30.5t113.5 -81.5t56.5 -121.5t13 -145.5t-24 -160q-5 -20 -15 -46h-694 +q-23 -119 26 -190.5t169 -71.5q92 0 161 23.5t136 80.5l115 -125q-101 -85 -203 -120.5t-223 -35.5zM296 574h513q24 135 -21 203t-167 68q-117 0 -201.5 -76.5t-123.5 -194.5z" /> + <glyph glyph-name="edieresis" unicode="ë" horiz-adv-x="1050" +d="M415 1205l47 208h186l-48 -208h-185zM759 1205l48 208h186l-48 -208h-186zM442 -12q-94 0 -167.5 27t-118.5 75.5t-71 114.5t-25 143.5t18 163.5q22 98 70 186.5t117.5 159t165.5 112.5t204 42q102 0 176 -30.5t113.5 -81.5t56.5 -121.5t13 -145.5t-24 -160 +q-5 -20 -15 -46h-694q-23 -119 26 -190.5t169 -71.5q92 0 161 23.5t136 80.5l115 -125q-101 -85 -203 -120.5t-223 -35.5zM296 574h513q24 135 -21 203t-167 68q-117 0 -201.5 -76.5t-123.5 -194.5z" /> + <glyph glyph-name="igrave" unicode="ì" horiz-adv-x="500" +d="M325 1113l-212 300h209l152 -300h-149zM43 0l229 999h185l-230 -999h-184z" /> + <glyph glyph-name="iacute" unicode="í" horiz-adv-x="500" +d="M285 1124l289 289h228l-357 -289h-160zM43 0l229 999h185l-230 -999h-184z" /> + <glyph glyph-name="icircumflex" unicode="î" horiz-adv-x="500" +d="M62 1098l403 354l243 -354h-168l-109 167l-189 -167h-180zM43 0l229 999h185l-230 -999h-184z" /> + <glyph glyph-name="idieresis" unicode="ï" horiz-adv-x="500" +d="M147 1205l47 208h186l-48 -208h-185zM491 1205l48 208h186l-48 -208h-186zM43 0l229 999h185l-230 -999h-184z" /> + <glyph glyph-name="eth" unicode="ð" horiz-adv-x="1166" +d="M838 1384q188 -138 245.5 -343t-11.5 -515q-56 -245 -217 -393.5t-386 -148.5q-81 0 -148.5 20.5t-115 57.5t-80.5 88.5t-48 112.5t-14.5 130t17.5 141q23 101 75 189.5t125 154.5t169 104t201 38q93 0 160 -29.5t102 -75.5q1 205 -192 339l-118 -130l-87 62l111 122 +q-51 26 -138 60l118 144q63 -26 142 -69l89 98l90 -59zM872 535q18 91 7 165t-66 120.5t-146 46.5q-146 0 -251 -108t-141 -261q-12 -52 -13 -100t12 -90.5t38.5 -74t68.5 -50t100 -18.5q145 0 250 108t141 262z" /> + <glyph glyph-name="ntilde" unicode="ñ" horiz-adv-x="1141" +d="M847 1128q-42 0 -72.5 15.5t-47 37.5t-29 44t-27.5 37.5t-35 15.5q-37 0 -67.5 -39.5t-45.5 -97.5h-126q28 129 89.5 198t146.5 69q42 0 72.5 -15.5t47 -38t29.5 -44.5t27.5 -37.5t33.5 -15.5q36 0 67 40.5t47 104.5h133q-62 -274 -243 -274zM43 0l229 999h196l-33 -131 +q68 73 155 110.5t172 37.5q76 0 133 -23t90 -62.5t49 -94t15 -115t-16 -126.5l-137 -595h-196l136 590q12 53 14 93.5t-8 76.5t-41.5 55t-83.5 19q-115 0 -221 -87t-131 -197l-127 -550h-195z" /> + <glyph glyph-name="ograve" unicode="ò" horiz-adv-x="1123" +d="M635 1113l-212 300h209l152 -300h-149zM453 -20q-147 0 -246.5 72.5t-133.5 194t0 267.5q31 137 116 250t211 180.5t266 67.5q147 0 246.5 -72.5t134 -194t0.5 -268.5q-48 -209 -215 -353t-379 -144zM468 149q148 0 246 104t134 261q18 65 14.5 124.5t-23 105t-68 72.5 +t-120.5 27q-76 0 -141 -29.5t-111 -81.5t-78 -116t-49 -139q-18 -65 -14.5 -124.5t23 -104.5t67.5 -72t120 -27z" /> + <glyph glyph-name="oacute" unicode="ó" horiz-adv-x="1123" +d="M595 1124l289 289h228l-357 -289h-160zM453 -20q-147 0 -246.5 72.5t-133.5 194t0 267.5q31 137 116 250t211 180.5t266 67.5q147 0 246.5 -72.5t134 -194t0.5 -268.5q-48 -209 -215 -353t-379 -144zM468 149q148 0 246 104t134 261q18 65 14.5 124.5t-23 105t-68 72.5 +t-120.5 27q-76 0 -141 -29.5t-111 -81.5t-78 -116t-49 -139q-18 -65 -14.5 -124.5t23 -104.5t67.5 -72t120 -27z" /> + <glyph glyph-name="ocircumflex" unicode="ô" horiz-adv-x="1123" +d="M372 1098l403 354l243 -354h-168l-109 167l-189 -167h-180zM453 -20q-147 0 -246.5 72.5t-133.5 194t0 267.5q31 137 116 250t211 180.5t266 67.5q147 0 246.5 -72.5t134 -194t0.5 -268.5q-48 -209 -215 -353t-379 -144zM468 149q148 0 246 104t134 261q18 65 14.5 124.5 +t-23 105t-68 72.5t-120.5 27q-76 0 -141 -29.5t-111 -81.5t-78 -116t-49 -139q-18 -65 -14.5 -124.5t23 -104.5t67.5 -72t120 -27z" /> + <glyph glyph-name="otilde" unicode="õ" horiz-adv-x="1123" +d="M840 1128q-42 0 -72.5 15.5t-47 37.5t-29 44t-27.5 37.5t-35 15.5q-37 0 -67.5 -39.5t-45.5 -97.5h-126q28 129 89.5 198t146.5 69q42 0 72.5 -15.5t47 -38t29.5 -44.5t27.5 -37.5t33.5 -15.5q36 0 67 40.5t47 104.5h133q-62 -274 -243 -274zM453 -20q-147 0 -246.5 72.5 +t-133.5 194t0 267.5q31 137 116 250t211 180.5t266 67.5q147 0 246.5 -72.5t134 -194t0.5 -268.5q-48 -209 -215 -353t-379 -144zM468 149q148 0 246 104t134 261q18 65 14.5 124.5t-23 105t-68 72.5t-120.5 27q-76 0 -141 -29.5t-111 -81.5t-78 -116t-49 -139 +q-18 -65 -14.5 -124.5t23 -104.5t67.5 -72t120 -27z" /> + <glyph glyph-name="odieresis" unicode="ö" horiz-adv-x="1123" +d="M457 1205l47 208h186l-48 -208h-185zM801 1205l48 208h186l-48 -208h-186zM453 -20q-147 0 -246.5 72.5t-133.5 194t0 267.5q31 137 116 250t211 180.5t266 67.5q147 0 246.5 -72.5t134 -194t0.5 -268.5q-48 -209 -215 -353t-379 -144zM468 149q148 0 246 104t134 261 +q18 65 14.5 124.5t-23 105t-68 72.5t-120.5 27q-76 0 -141 -29.5t-111 -81.5t-78 -116t-49 -139q-18 -65 -14.5 -124.5t23 -104.5t67.5 -72t120 -27z" /> + <glyph glyph-name="divide" unicode="÷" horiz-adv-x="1119" +d="M454 870v227h229v-227h-229zM126 555v147h886v-147h-886zM454 142v227h229v-227h-229z" /> + <glyph glyph-name="oslash" unicode="ø" horiz-adv-x="1123" +d="M950 908q76 -74 101.5 -186.5t-4.5 -244.5q-48 -209 -215 -353t-379 -144q-124 0 -216 53l-27 -33h-113l70 86q-74 74 -99 185.5t5 242.5q31 137 116 250t211 180.5t266 67.5q122 0 215 -52l32 39h112zM272 477q-36 -153 16 -243l478 585q-48 24 -115 24 +q-76 0 -141 -29.5t-111 -81.5t-78 -116t-49 -139zM848 514q37 160 -18 246l-478 -586q47 -25 116 -25q148 0 246 104t134 261z" /> + <glyph glyph-name="ugrave" unicode="ù" horiz-adv-x="1140" +d="M641 1113l-212 300h209l152 -300h-149zM377 -23q-76 0 -132.5 24.5t-89.5 66t-48.5 98t-14.5 120t17 132.5l134 581h196l-137 -596q-12 -54 -14 -94.5t8.5 -77.5t43.5 -57t88 -20q116 0 217.5 85.5t137.5 239.5l119 520h195l-230 -999h-191l31 137q-60 -70 -149 -115 +t-181 -45z" /> + <glyph glyph-name="uacute" unicode="ú" horiz-adv-x="1140" +d="M601 1124l289 289h228l-357 -289h-160zM377 -23q-76 0 -132.5 24.5t-89.5 66t-48.5 98t-14.5 120t17 132.5l134 581h196l-137 -596q-12 -54 -14 -94.5t8.5 -77.5t43.5 -57t88 -20q116 0 217.5 85.5t137.5 239.5l119 520h195l-230 -999h-191l31 137q-60 -70 -149 -115 +t-181 -45z" /> + <glyph glyph-name="ucircumflex" unicode="û" horiz-adv-x="1140" +d="M378 1098l403 354l243 -354h-168l-109 167l-189 -167h-180zM377 -23q-76 0 -132.5 24.5t-89.5 66t-48.5 98t-14.5 120t17 132.5l134 581h196l-137 -596q-12 -54 -14 -94.5t8.5 -77.5t43.5 -57t88 -20q116 0 217.5 85.5t137.5 239.5l119 520h195l-230 -999h-191l31 137 +q-60 -70 -149 -115t-181 -45z" /> + <glyph glyph-name="udieresis" unicode="ü" horiz-adv-x="1140" +d="M463 1205l47 208h186l-48 -208h-185zM807 1205l48 208h186l-48 -208h-186zM377 -23q-76 0 -132.5 24.5t-89.5 66t-48.5 98t-14.5 120t17 132.5l134 581h196l-137 -596q-12 -54 -14 -94.5t8.5 -77.5t43.5 -57t88 -20q116 0 217.5 85.5t137.5 239.5l119 520h195l-230 -999 +h-191l31 137q-60 -70 -149 -115t-181 -45z" /> + <glyph glyph-name="yacute" unicode="ý" horiz-adv-x="1002" +d="M533 1124l289 289h228l-357 -289h-160zM8 -430l283 445l-160 984h211l96 -759l448 759h216l-882 -1429h-212z" /> + <glyph glyph-name="thorn" unicode="þ" horiz-adv-x="1139" +d="M-58 -438l428 1851h185l-125 -525q130 132 322 132q100 0 172.5 -43t107 -116.5t42.5 -171t-20 -207.5q-33 -139 -103 -251t-178.5 -181.5t-234.5 -69.5q-101 0 -170.5 39.5t-105.5 106.5l-135 -564h-185zM510 144q139 0 236 105t135 268q18 69 15 130.5t-22.5 107 +t-64.5 72.5t-112 27q-138 0 -236.5 -105.5t-135.5 -266.5q-20 -95 -12.5 -170t58.5 -121.5t139 -46.5z" /> + <glyph glyph-name="ydieresis" unicode="ÿ" horiz-adv-x="1002" +d="M395 1205l47 208h186l-48 -208h-185zM739 1205l48 208h186l-48 -208h-186zM8 -430l283 445l-160 984h211l96 -759l448 759h216l-882 -1429h-212z" /> + <glyph glyph-name="Amacron" unicode="Ā" horiz-adv-x="1323" +d="M639 1579l31 134h550l-31 -134h-550zM-77 0l873 1413h154l218 -1413h-215l-38 307h-587l-180 -307h-225zM438 486h450l-77 628z" /> + <glyph glyph-name="amacron" unicode="ā" +d="M1040 1300l-31 -134h-550l31 134h550zM908 999h196l-230 -999h-183l18 113q-130 -133 -320 -133q-100 0 -172.5 43t-107.5 116.5t-43.5 171t18.5 207.5q32 138 103 250.5t180 182t234 69.5q98 0 169 -38.5t106 -108.5zM813 518q18 66 15.5 125t-20.5 103.5t-62 70.5 +t-110 26q-136 0 -231.5 -103t-129.5 -258q-19 -91 -12 -163t55.5 -116.5t134.5 -44.5q139 0 232 101t128 259z" /> + <glyph glyph-name="Abreve" unicode="Ă" horiz-adv-x="1323" +d="M920 1556q-152 0 -220 72.5t-39 197.5h149q-15 -72 17.5 -107.5t97.5 -35.5q71 0 130.5 41t74.5 102h149q-61 -270 -359 -270zM-77 0l873 1413h154l218 -1413h-215l-38 307h-587l-180 -307h-225zM438 486h450l-77 628z" /> + <glyph glyph-name="abreve" unicode="ă" +d="M740 1143q-152 0 -220 72.5t-39 197.5h149q-15 -72 17.5 -107.5t97.5 -35.5q71 0 130.5 41t74.5 102h149q-61 -270 -359 -270zM908 999h196l-230 -999h-183l18 113q-130 -133 -320 -133q-100 0 -172.5 43t-107.5 116.5t-43.5 171t18.5 207.5q32 138 103 250.5t180 182 +t234 69.5q98 0 169 -38.5t106 -108.5zM813 518q18 66 15.5 125t-20.5 103.5t-62 70.5t-110 26q-136 0 -231.5 -103t-129.5 -258q-19 -91 -12 -163t55.5 -116.5t134.5 -44.5q139 0 232 101t128 259z" /> + <glyph glyph-name="Aogonek" unicode="Ą" horiz-adv-x="1323" +d="M1081 -253l95 -88q-99 -110 -229 -110q-97 0 -147.5 62t-28.5 161q12 48 42 90t67.5 69.5t66.5 43.5t53 25h-47l-38 307h-587l-180 -307h-225l873 1413h154l218 -1413h-62l64 -2q-13 -5 -30.5 -12t-60 -30t-76.5 -48.5t-66 -65.5t-42 -82q-18 -80 50 -80q74 0 136 67z +M438 486h450l-77 628z" /> + <glyph glyph-name="aogonek" unicode="ą" horiz-adv-x="1084" +d="M1104 999l-230 -999h-140l64 -2q-13 -5 -30.5 -12t-60 -30t-76.5 -48.5t-66 -65.5t-42 -82q-18 -80 50 -80q74 0 136 67l95 -88q-99 -110 -229 -110q-97 0 -147.5 62t-28.5 161q12 51 46 96t74 72t70 42.5t48 20.5l54 -2l18 112q-130 -133 -320 -133q-100 0 -172.5 43 +t-107.5 116.5t-43.5 171t18.5 207.5q32 138 103 250.5t180 182t234 69.5q98 0 169 -38.5t106 -108.5l32 126h196zM813 518q18 66 15.5 125t-20.5 103.5t-62 70.5t-110 26q-136 0 -231.5 -103t-129.5 -258q-19 -91 -12 -163t55.5 -116.5t134.5 -44.5q139 0 232 101t128 259z +" /> + <glyph glyph-name="Cacute" unicode="Ć" horiz-adv-x="1428" +d="M846 1537l289 289h228l-357 -289h-160zM655 -20q-111 0 -201 27.5t-151.5 77t-102 118t-57 152t-13 176.5t26.5 194q34 146 102 272.5t167.5 225.5t238 156t299.5 57q212 0 351 -104t164 -295l-199 -59q-11 144 -100.5 211t-236.5 67q-118 0 -219.5 -45.5t-173.5 -124 +t-122 -176.5t-76 -211q-21 -89 -23 -166.5t16.5 -144.5t58.5 -115t108.5 -75t161.5 -27q308 0 484 288l170 -96q-124 -188 -298 -285.5t-375 -97.5z" /> + <glyph glyph-name="cacute" unicode="ć" horiz-adv-x="987" +d="M566 1124l289 289h228l-357 -289h-160zM425 -20q-91 0 -161.5 29t-113 79.5t-67 118.5t-23 146.5t18.5 162.5q23 98 71 186.5t117.5 159t165.5 112.5t205 42q143 0 235 -77t119 -207l-193 -57q-3 80 -50.5 122.5t-126.5 42.5q-71 0 -132 -31t-104 -84t-72.5 -115 +t-45.5 -131q-15 -63 -14.5 -118t16.5 -102.5t59.5 -75.5t109.5 -28q86 0 162.5 50.5t115.5 132.5l157 -87q-77 -131 -194 -201t-255 -70z" /> + <glyph glyph-name="Cdotaccent" unicode="Ċ" horiz-adv-x="1428" +d="M868 1618l47 208h212l-48 -208h-211zM655 -20q-111 0 -201 27.5t-151.5 77t-102 118t-57 152t-13 176.5t26.5 194q34 146 102 272.5t167.5 225.5t238 156t299.5 57q212 0 351 -104t164 -295l-199 -59q-11 144 -100.5 211t-236.5 67q-118 0 -219.5 -45.5t-173.5 -124 +t-122 -176.5t-76 -211q-21 -89 -23 -166.5t16.5 -144.5t58.5 -115t108.5 -75t161.5 -27q308 0 484 288l170 -96q-124 -188 -298 -285.5t-375 -97.5z" /> + <glyph glyph-name="cdotaccent" unicode="ċ" horiz-adv-x="987" +d="M588 1205l47 208h212l-48 -208h-211zM425 -20q-91 0 -161.5 29t-113 79.5t-67 118.5t-23 146.5t18.5 162.5q23 98 71 186.5t117.5 159t165.5 112.5t205 42q143 0 235 -77t119 -207l-193 -57q-3 80 -50.5 122.5t-126.5 42.5q-71 0 -132 -31t-104 -84t-72.5 -115 +t-45.5 -131q-15 -63 -14.5 -118t16.5 -102.5t59.5 -75.5t109.5 -28q86 0 162.5 50.5t115.5 132.5l157 -87q-77 -131 -194 -201t-255 -70z" /> + <glyph glyph-name="Ccaron" unicode="Č" horiz-adv-x="1428" +d="M948 1493l-248 332h171l108 -160l190 160h177zM655 -20q-111 0 -201 27.5t-151.5 77t-102 118t-57 152t-13 176.5t26.5 194q34 146 102 272.5t167.5 225.5t238 156t299.5 57q212 0 351 -104t164 -295l-199 -59q-11 144 -100.5 211t-236.5 67q-118 0 -219.5 -45.5 +t-173.5 -124t-122 -176.5t-76 -211q-21 -89 -23 -166.5t16.5 -144.5t58.5 -115t108.5 -75t161.5 -27q308 0 484 288l170 -96q-124 -188 -298 -285.5t-375 -97.5z" /> + <glyph glyph-name="ccaron" unicode="č" horiz-adv-x="987" +d="M668 1080l-248 332h171l108 -160l190 160h177zM425 -20q-91 0 -161.5 29t-113 79.5t-67 118.5t-23 146.5t18.5 162.5q23 98 71 186.5t117.5 159t165.5 112.5t205 42q143 0 235 -77t119 -207l-193 -57q-3 80 -50.5 122.5t-126.5 42.5q-71 0 -132 -31t-104 -84t-72.5 -115 +t-45.5 -131q-15 -63 -14.5 -118t16.5 -102.5t59.5 -75.5t109.5 -28q86 0 162.5 50.5t115.5 132.5l157 -87q-77 -131 -194 -201t-255 -70z" /> + <glyph glyph-name="Dcaron" unicode="Ď" horiz-adv-x="1407" +d="M954 1493l-248 332h171l108 -160l190 160h177zM83 0l326 1413h377q352 0 497 -191t63 -544q-76 -326 -302 -502t-574 -176h-387zM330 186h147q123 0 229 31t195.5 95t154.5 168.5t97 244.5q59 258 -36.5 380.5t-364.5 122.5h-182z" /> + <glyph glyph-name="dcaron" unicode="ď" horiz-adv-x="1294" +d="M389 -20q-100 0 -172.5 43t-107.5 116.5t-43.5 171t18.5 207.5q32 138 103 250.5t180 182t234 69.5q98 0 169 -38.5t106 -108.5l129 540h195l-326 -1413h-195l29 113q-133 -133 -319 -133zM1211 990l206 423h237l-315 -423h-128zM453 158q139 0 232 101t128 259 +q18 66 15.5 125t-20.5 103.5t-62 70.5t-110 26q-136 0 -231.5 -103t-129.5 -258q-19 -91 -12 -163t55.5 -116.5t134.5 -44.5z" /> + <glyph glyph-name="Dcroat" unicode="Đ" horiz-adv-x="1426" +d="M103 0l147 639h-113l34 148h113l145 626h375q349 0 496 -191t66 -544q-76 -325 -304.5 -501.5t-574.5 -176.5h-384zM339 181h153q123 0 231 32t199.5 97t158.5 170.5t99 244.5q58 255 -41.5 382t-367.5 127h-189l-103 -447h381l-34 -148h-381z" /> + <glyph glyph-name="dcroat" unicode="đ" +d="M1333 1288l-32 -139h-162l-265 -1149h-183l18 113q-130 -133 -320 -133q-100 0 -172.5 43t-107.5 116.5t-43.5 171t18.5 207.5q32 138 103 250.5t180 182t234 69.5q98 0 169 -38.5t106 -108.5l66 276h-276l32 139h277l30 125h195l-29 -125h162zM813 518q18 66 15.5 125 +t-20.5 103.5t-62 70.5t-110 26q-136 0 -231.5 -103t-129.5 -258q-19 -91 -12 -163t55.5 -116.5t134.5 -44.5q139 0 232 101t128 259z" /> + <glyph glyph-name="Emacron" unicode="Ē" horiz-adv-x="1241" +d="M621 1579l31 134h550l-31 -134h-550zM83 0l326 1413h927l-42 -182h-724l-100 -434h648l-41 -180h-649l-98 -428h723l-43 -189h-927z" /> + <glyph glyph-name="emacron" unicode="ē" horiz-adv-x="1050" +d="M398 1166l31 134h550l-31 -134h-550zM442 -12q-94 0 -167.5 27t-118.5 75.5t-71 114.5t-25 143.5t18 163.5q22 98 70 186.5t117.5 159t165.5 112.5t204 42q102 0 176 -30.5t113.5 -81.5t56.5 -121.5t13 -145.5t-24 -160q-5 -20 -15 -46h-694q-23 -119 26 -190.5 +t169 -71.5q92 0 161 23.5t136 80.5l115 -125q-101 -85 -203 -120.5t-223 -35.5zM296 574h513q24 135 -21 203t-167 68q-117 0 -201.5 -76.5t-123.5 -194.5z" /> + <glyph glyph-name="Edotaccent" unicode="Ė" horiz-adv-x="1241" +d="M798 1618l47 208h212l-48 -208h-211zM83 0l326 1413h927l-42 -182h-724l-100 -434h648l-41 -180h-649l-98 -428h723l-43 -189h-927z" /> + <glyph glyph-name="edotaccent" unicode="ė" horiz-adv-x="1050" +d="M575 1205l47 208h212l-48 -208h-211zM442 -12q-94 0 -167.5 27t-118.5 75.5t-71 114.5t-25 143.5t18 163.5q22 98 70 186.5t117.5 159t165.5 112.5t204 42q102 0 176 -30.5t113.5 -81.5t56.5 -121.5t13 -145.5t-24 -160q-5 -20 -15 -46h-694q-23 -119 26 -190.5 +t169 -71.5q92 0 161 23.5t136 80.5l115 -125q-101 -85 -203 -120.5t-223 -35.5zM296 574h513q24 135 -21 203t-167 68q-117 0 -201.5 -76.5t-123.5 -194.5z" /> + <glyph glyph-name="Eogonek" unicode="Ę" horiz-adv-x="1241" +d="M1294 1231h-724l-100 -434h648l-41 -180h-649l-98 -428h723l-43 -189h-64l64 -2q-13 -5 -30.5 -12t-60 -30t-76.5 -48.5t-66 -65.5t-42 -82q-18 -80 50 -80q74 0 136 67l95 -88q-99 -110 -229 -110q-97 0 -147.5 62t-28.5 161q12 48 42 90t67.5 69.5t66.5 43.5t53 25 +h-757l326 1413h927z" /> + <glyph glyph-name="eogonek" unicode="ę" horiz-adv-x="1050" +d="M635 1012q102 0 176 -30.5t113.5 -81.5t56.5 -121.5t13 -145.5t-24 -160q-5 -20 -15 -46h-694q-23 -119 26 -190.5t169 -71.5q92 0 161 23.5t136 80.5l115 -125q-115 -97 -241 -132q-175 -90 -202 -206q-18 -80 50 -80q74 0 136 67l95 -88q-99 -110 -229 -110 +q-97 0 -147.5 62t-28.5 161q23 97 123 170q-90 3 -160.5 31.5t-113 76.5t-67 113.5t-23.5 142t18 160.5q22 98 70 186.5t117.5 159t165.5 112.5t204 42zM809 574q24 135 -21 203t-167 68q-117 0 -201.5 -76.5t-123.5 -194.5h513z" /> + <glyph glyph-name="Ecaron" unicode="Ě" horiz-adv-x="1241" +d="M878 1493l-248 332h171l108 -160l190 160h177zM83 0l326 1413h927l-42 -182h-724l-100 -434h648l-41 -180h-649l-98 -428h723l-43 -189h-927z" /> + <glyph glyph-name="ecaron" unicode="ě" horiz-adv-x="1050" +d="M655 1080l-248 332h171l108 -160l190 160h177zM442 -12q-94 0 -167.5 27t-118.5 75.5t-71 114.5t-25 143.5t18 163.5q22 98 70 186.5t117.5 159t165.5 112.5t204 42q102 0 176 -30.5t113.5 -81.5t56.5 -121.5t13 -145.5t-24 -160q-5 -20 -15 -46h-694q-23 -119 26 -190.5 +t169 -71.5q92 0 161 23.5t136 80.5l115 -125q-101 -85 -203 -120.5t-223 -35.5zM296 574h513q24 135 -21 203t-167 68q-117 0 -201.5 -76.5t-123.5 -194.5z" /> + <glyph glyph-name="Gbreve" unicode="Ğ" horiz-adv-x="1521" +d="M1018 1556q-152 0 -220 72.5t-39 197.5h149q-15 -72 17.5 -107.5t97.5 -35.5q71 0 130.5 41t74.5 102h149q-61 -270 -359 -270zM655 -20q-111 0 -201 27.5t-151.5 77t-102 118t-57 152t-13 176.5t26.5 194q34 146 102.5 272.5t168 225.5t238 156t298.5 57q208 0 340 -104 +t173 -295l-193 -60q-23 139 -111 207.5t-229 68.5q-117 0 -218.5 -45t-174 -123t-123 -175.5t-76.5 -210.5q-21 -89 -23 -167t16.5 -146t58.5 -116.5t108.5 -76.5t160.5 -28q176 0 325.5 114.5t206.5 304.5l-325 -8l38 162h516l-170 -738h-164l43 221 +q-77 -108 -206.5 -174.5t-281.5 -66.5z" /> + <glyph glyph-name="gbreve" unicode="ğ" horiz-adv-x="1147" +d="M700 1143q-152 0 -220 72.5t-39 197.5h149q-15 -72 17.5 -107.5t97.5 -35.5q71 0 130.5 41t74.5 102h149q-61 -270 -359 -270zM869 -8q-47 -203 -185 -315.5t-345 -112.5q-280 0 -378 213l165 93q50 -137 230 -137q123 0 208 73.5t115 201.5l30 117q-129 -134 -315 -134 +q-82 0 -145.5 28t-103 77t-60.5 116t-20.5 146.5t20.5 165.5q31 136 101.5 246.5t180.5 180t237 69.5q93 0 164.5 -39t106.5 -108l32 126h195zM455 167q137 0 230 101.5t129 255.5q17 64 14 122t-20.5 102.5t-61.5 71t-109 26.5q-137 0 -232.5 -103t-129.5 -256 +q-18 -64 -14.5 -122t22 -102t63 -70t109.5 -26z" /> + <glyph glyph-name="Gdotaccent" unicode="Ġ" horiz-adv-x="1521" +d="M914 1618l47 208h212l-48 -208h-211zM655 -20q-111 0 -201 27.5t-151.5 77t-102 118t-57 152t-13 176.5t26.5 194q34 146 102.5 272.5t168 225.5t238 156t298.5 57q208 0 340 -104t173 -295l-193 -60q-23 139 -111 207.5t-229 68.5q-117 0 -218.5 -45t-174 -123 +t-123 -175.5t-76.5 -210.5q-21 -89 -23 -167t16.5 -146t58.5 -116.5t108.5 -76.5t160.5 -28q176 0 325.5 114.5t206.5 304.5l-325 -8l38 162h516l-170 -738h-164l43 221q-77 -108 -206.5 -174.5t-281.5 -66.5z" /> + <glyph glyph-name="gdotaccent" unicode="ġ" horiz-adv-x="1147" +d="M596 1205l47 208h212l-48 -208h-211zM869 -8q-47 -203 -185 -315.5t-345 -112.5q-280 0 -378 213l165 93q50 -137 230 -137q123 0 208 73.5t115 201.5l30 117q-129 -134 -315 -134q-82 0 -145.5 28t-103 77t-60.5 116t-20.5 146.5t20.5 165.5q31 136 101.5 246.5 +t180.5 180t237 69.5q93 0 164.5 -39t106.5 -108l32 126h195zM455 167q137 0 230 101.5t129 255.5q17 64 14 122t-20.5 102.5t-61.5 71t-109 26.5q-137 0 -232.5 -103t-129.5 -256q-18 -64 -14.5 -122t22 -102t63 -70t109.5 -26z" /> + <glyph glyph-name="Gcommaaccent" unicode="Ģ" horiz-adv-x="1521" +d="M655 -20q-111 0 -201 27.5t-151.5 77t-102 118t-57 152t-13 176.5t26.5 194q34 146 102.5 272.5t168 225.5t238 156t298.5 57q208 0 340 -104t173 -295l-193 -60q-23 139 -111 207.5t-229 68.5q-117 0 -218.5 -45t-174 -123t-123 -175.5t-76.5 -210.5q-21 -89 -23 -167 +t16.5 -146t58.5 -116.5t108.5 -76.5t160.5 -28q176 0 325.5 114.5t206.5 304.5l-325 -8l38 162h516l-170 -738h-164l43 221q-77 -108 -206.5 -174.5t-281.5 -66.5zM318 -452l208 343h236l-317 -343h-127z" /> + <glyph glyph-name="gcommaaccent" unicode="ģ" horiz-adv-x="1074" +d="M953 1428l-208 -307h-236l317 307h127zM869 -8q-47 -203 -185 -315.5t-345 -112.5q-280 0 -378 213l165 93q50 -137 230 -137q123 0 208 73.5t115 201.5l30 117q-129 -134 -315 -134q-82 0 -145.5 28t-103 77t-60.5 116t-20.5 146.5t20.5 165.5q31 136 101.5 246.5 +t180.5 180t237 69.5q93 0 164.5 -39t106.5 -108l32 126h195zM455 167q137 0 230 101.5t129 255.5q17 64 14 122t-20.5 102.5t-61.5 71t-109 26.5q-137 0 -232.5 -103t-129.5 -256q-18 -64 -14.5 -122t22 -102t63 -70t109.5 -26z" /> + <glyph glyph-name="Hbar" unicode="Ħ" horiz-adv-x="1472" +d="M1536 1172l-26 -115h-107l-244 -1057h-203l141 617h-669l-141 -617h-204l244 1057h-110l26 115h110l56 241h203l-56 -241h669l56 241h204l-56 -241h107zM1139 797l60 260h-669l-60 -260h669z" /> + <glyph glyph-name="hbar" unicode="ħ" horiz-adv-x="1141" +d="M768 1016q74 0 130 -23t88.5 -62.5t49 -93t15.5 -113t-16 -124.5l-138 -600h-197l136 590q12 53 14.5 93.5t-7.5 77t-41 55.5t-83 19q-117 0 -224 -90.5t-134 -206.5l-123 -538h-195l258 1118h-165l32 139h165l36 156h194l-37 -156h277l-32 -139h-278l-60 -253 +q69 75 158.5 113t176.5 38z" /> + <glyph glyph-name="Itilde" unicode="Ĩ" horiz-adv-x="599" +d="M675 1541q-42 0 -72.5 15.5t-47 37.5t-29 44t-27.5 37.5t-35 15.5q-37 0 -67.5 -39.5t-45.5 -97.5h-126q28 129 89.5 198t146.5 69q42 0 72.5 -15.5t47 -37.5t29.5 -44.5t27.5 -38t33.5 -15.5q36 0 67 40.5t47 104.5h133q-62 -274 -243 -274zM83 0l326 1413h203 +l-325 -1413h-204z" /> + <glyph glyph-name="itilde" unicode="ĩ" horiz-adv-x="500" +d="M530 1128q-42 0 -72.5 15.5t-47 37.5t-29 44t-27.5 37.5t-35 15.5q-37 0 -67.5 -39.5t-45.5 -97.5h-126q28 129 89.5 198t146.5 69q42 0 72.5 -15.5t47 -38t29.5 -44.5t27.5 -37.5t33.5 -15.5q36 0 67 40.5t47 104.5h133q-62 -274 -243 -274zM43 0l229 999h185l-230 -999 +h-184z" /> + <glyph glyph-name="Imacron" unicode="Ī" horiz-adv-x="599" +d="M275 1579l31 134h550l-31 -134h-550zM83 0l326 1413h203l-325 -1413h-204z" /> + <glyph glyph-name="imacron" unicode="ī" horiz-adv-x="500" +d="M130 1166l31 134h550l-31 -134h-550zM43 0l229 999h185l-230 -999h-184z" /> + <glyph glyph-name="Iogonek" unicode="Į" horiz-adv-x="599" +d="M62 -320q74 0 136 67l95 -88q-99 -110 -229 -110q-97 0 -147.5 62t-28.5 161q12 48 42 90t67.5 69.5t66.5 43.5t53 25h-34l326 1413h203l-325 -1413h-64l64 -2q-13 -5 -30.5 -12t-60 -30t-76.5 -48.5t-66 -65.5t-42 -82q-18 -80 50 -80z" /> + <glyph glyph-name="iogonek" unicode="į" horiz-adv-x="500" +d="M354 1413h212l-48 -208h-211zM457 999l-230 -999h-64l64 -2q-13 -5 -30.5 -12t-60 -30t-76.5 -48.5t-66 -65.5t-42 -82q-18 -80 50 -80q74 0 136 67l95 -88q-99 -110 -229 -110q-97 0 -147.5 62t-28.5 161q12 48 42 90t67.5 69.5t66.5 43.5t53 25h-14l229 999h185z" /> + <glyph glyph-name="Idotaccent" unicode="İ" horiz-adv-x="599" +d="M452 1618l47 208h212l-48 -208h-211zM83 0l326 1413h203l-325 -1413h-204z" /> + <glyph glyph-name="dotlessi" unicode="ı" horiz-adv-x="500" +d="M43 0l229 999h185l-230 -999h-184z" /> + <glyph glyph-name="IJ" unicode="IJ" horiz-adv-x="1727" +d="M83 0l326 1413h203l-325 -1413h-204zM994 -20q-135 0 -224 62t-121.5 161.5t-13.5 221.5l200 8q-10 -74 -1 -133.5t55 -97t124 -37.5t136.5 24.5t97.5 73t63.5 105.5t42.5 135l168 728h-533l42 182h736l-212 -916q-118 -517 -560 -517z" /> + <glyph glyph-name="Kcommaaccent" unicode="Ķ" horiz-adv-x="1469" +d="M83 0l326 1413h203l-183 -786l919 786h272l-681 -567l372 -846h-240l-295 713l-401 -334l-88 -379h-204zM266 -452l208 343h236l-317 -343h-127z" /> + <glyph glyph-name="kcommaaccent" unicode="ķ" horiz-adv-x="1079" +d="M44 0l326 1413h194l-210 -895l525 481h252l-437 -376l256 -623h-224l-184 499l-234 -206l-70 -293h-194zM151 -452l208 343h236l-317 -343h-127z" /> + <glyph glyph-name="kgreenlandic" unicode="ĸ" horiz-adv-x="1077" +d="M43 0l229 999h194l-112 -473l523 473h252l-437 -376l256 -623h-225l-183 497l-235 -206l-69 -291h-193z" /> + <glyph glyph-name="Lacute" unicode="Ĺ" horiz-adv-x="1049" +d="M442 1537l289 289h228l-357 -289h-160zM83 0l326 1413h203l-282 -1224h604l-43 -189h-808z" /> + <glyph glyph-name="lacute" unicode="ĺ" horiz-adv-x="544" +d="M388 1537l289 289h228l-357 -289h-160zM233 -20q-105 0 -139 57.5t-8 171.5l278 1204h194l-278 -1203q-8 -34 4.5 -47.5t46.5 -13.5q14 0 79 13l-26 -164q-79 -18 -151 -18z" /> + <glyph glyph-name="Lcommaaccent" unicode="Ļ" horiz-adv-x="1049" +d="M83 0l326 1413h203l-282 -1224h604l-43 -189h-808zM83 -452l208 343h236l-317 -343h-127z" /> + <glyph glyph-name="lcommaaccent" unicode="ļ" horiz-adv-x="544" +d="M233 -20q-105 0 -139 57.5t-8 171.5l278 1204h194l-278 -1203q-8 -34 4.5 -47.5t46.5 -13.5q14 0 79 13l-26 -164q-79 -18 -151 -18zM-100 -452l208 343h236l-317 -343h-127z" /> + <glyph glyph-name="Lcaron" unicode="Ľ" horiz-adv-x="1053" +d="M83 0l326 1413h203l-282 -1224h604l-43 -189h-808zM745 990l206 423h236l-314 -423h-128z" /> + <glyph glyph-name="lcaron" unicode="ľ" horiz-adv-x="673" +d="M233 -20q-105 0 -139 57.5t-8 171.5l278 1204h194l-278 -1203q-1 -9 -2 -22t10.5 -24.5t33.5 -11.5q38 0 88 10l-26 -164q-79 -18 -151 -18zM591 990l206 423h236l-314 -423h-128z" /> + <glyph glyph-name="Lslash" unicode="Ł" horiz-adv-x="1084" +d="M363 189h604l-43 -189h-808l103 448l-207 -135l55 207l199 132l176 761h203l-139 -602l336 222l-59 -218l-324 -211z" /> + <glyph glyph-name="lslash" unicode="ł" horiz-adv-x="544" +d="M381 646l-101 -436q-8 -34 4.5 -47.5t46.5 -13.5q14 0 79 13l-26 -164q-79 -18 -151 -18q-105 0 -139 57.5t-8 171.5l55 238l-138 -114l47 205l138 115l176 760h194l-130 -562l192 159l-47 -205z" /> + <glyph glyph-name="Nacute" unicode="Ń" horiz-adv-x="1435" +d="M848 1537l289 289h228l-357 -289h-160zM83 0l326 1413h234l347 -1116l260 1116h198l-326 -1413h-237l-343 1118l-260 -1118h-199z" /> + <glyph glyph-name="nacute" unicode="ń" horiz-adv-x="1141" +d="M602 1124l289 289h228l-357 -289h-160zM43 0l229 999h196l-33 -131q68 73 155 110.5t172 37.5q76 0 133 -23t90 -62.5t49 -94t15 -115t-16 -126.5l-137 -595h-196l136 590q12 53 14 93.5t-8 76.5t-41.5 55t-83.5 19q-115 0 -221 -87t-131 -197l-127 -550h-195z" /> + <glyph glyph-name="Ncommaaccent" unicode="Ņ" horiz-adv-x="1435" +d="M83 0l326 1413h234l347 -1116l260 1116h198l-326 -1413h-237l-343 1118l-260 -1118h-199zM262 -452l208 343h236l-317 -343h-127z" /> + <glyph glyph-name="ncommaaccent" unicode="ņ" horiz-adv-x="1141" +d="M43 0l229 999h196l-33 -131q68 73 155 110.5t172 37.5q76 0 133 -23t90 -62.5t49 -94t15 -115t-16 -126.5l-137 -595h-196l136 590q12 53 14 93.5t-8 76.5t-41.5 55t-83.5 19q-115 0 -221 -87t-131 -197l-127 -550h-195zM113 -452l208 343h236l-317 -343h-127z" /> + <glyph glyph-name="Ncaron" unicode="Ň" horiz-adv-x="1435" +d="M950 1493l-248 332h171l108 -160l190 160h177zM83 0l326 1413h234l347 -1116l260 1116h198l-326 -1413h-237l-343 1118l-260 -1118h-199z" /> + <glyph glyph-name="ncaron" unicode="ň" horiz-adv-x="1141" +d="M704 1080l-248 332h171l108 -160l190 160h177zM43 0l229 999h196l-33 -131q68 73 155 110.5t172 37.5q76 0 133 -23t90 -62.5t49 -94t15 -115t-16 -126.5l-137 -595h-196l136 590q12 53 14 93.5t-8 76.5t-41.5 55t-83.5 19q-115 0 -221 -87t-131 -197l-127 -550h-195z +" /> + <glyph glyph-name="Eng" unicode="Ŋ" horiz-adv-x="1434" +d="M634 -369l26 139q119 -4 191.5 51t57.5 128l-367 1171l-260 -1120h-199l326 1412h234l346 -1119l261 1119h197l-329 -1420q-12 -51 -26 -92.5t-43.5 -94t-68 -88.5t-101 -61t-140.5 -25h-105z" /> + <glyph glyph-name="eng" unicode="ŋ" horiz-adv-x="1136" +d="M413 -369l38 163h60q143 0 181 183l142 614q10 43 13.5 76.5t-0.5 66.5t-17.5 54.5t-42 35t-70.5 13.5q-117 0 -223.5 -87t-132.5 -199l-127 -551h-191l229 999h192l-34 -136q67 75 155.5 114t174.5 39q76 0 132 -23.5t88.5 -63t48 -93.5t14.5 -114t-16 -126l-157 -680 +q-6 -25 -11 -43.5t-18 -50.5t-29 -55t-43.5 -50.5t-60.5 -45t-81.5 -29t-105.5 -11.5h-108z" /> + <glyph glyph-name="Omacron" unicode="Ō" horiz-adv-x="1521" +d="M735 1579l31 134h550l-31 -134h-550zM652 -20q-111 0 -200.5 27.5t-150.5 77.5t-101.5 118.5t-57 152t-13 176.5t26.5 193q33 145 101.5 271t168 225t238.5 156t299 57q111 0 201 -27.5t151 -77.5t101.5 -118.5t57 -152t13.5 -176.5t-26 -194q-34 -145 -102.5 -270.5 +t-168 -224.5t-238.5 -156t-300 -57zM669 163q120 0 222 45.5t174 125.5t121.5 178t75.5 213q20 85 22.5 160.5t-15 143t-56.5 116t-107.5 77t-161.5 28.5q-118 0 -219 -45.5t-173 -125.5t-121 -178.5t-75 -212.5q-20 -85 -22.5 -160.5t15 -143t55.5 -116t105.5 -77 +t159.5 -28.5z" /> + <glyph glyph-name="omacron" unicode="ō" horiz-adv-x="1123" +d="M440 1166l31 134h550l-31 -134h-550zM453 -20q-147 0 -246.5 72.5t-133.5 194t0 267.5q31 137 116 250t211 180.5t266 67.5q147 0 246.5 -72.5t134 -194t0.5 -268.5q-48 -209 -215 -353t-379 -144zM468 149q148 0 246 104t134 261q18 65 14.5 124.5t-23 105t-68 72.5 +t-120.5 27q-76 0 -141 -29.5t-111 -81.5t-78 -116t-49 -139q-18 -65 -14.5 -124.5t23 -104.5t67.5 -72t120 -27z" /> + <glyph glyph-name="Ohungarumlaut" unicode="Ő" horiz-adv-x="1521" +d="M713 1516l292 310h207l-341 -310h-158zM1051 1516l293 310h228l-362 -310h-159zM652 -20q-111 0 -200.5 27.5t-150.5 77.5t-101.5 118.5t-57 152t-13 176.5t26.5 193q33 145 101.5 271t168 225t238.5 156t299 57q111 0 201 -27.5t151 -77.5t101.5 -118.5t57 -152 +t13.5 -176.5t-26 -194q-34 -145 -102.5 -270.5t-168 -224.5t-238.5 -156t-300 -57zM669 163q120 0 222 45.5t174 125.5t121.5 178t75.5 213q20 85 22.5 160.5t-15 143t-56.5 116t-107.5 77t-161.5 28.5q-118 0 -219 -45.5t-173 -125.5t-121 -178.5t-75 -212.5 +q-20 -85 -22.5 -160.5t15 -143t55.5 -116t105.5 -77t159.5 -28.5z" /> + <glyph glyph-name="ohungarumlaut" unicode="ő" horiz-adv-x="1123" +d="M418 1103l292 310h207l-341 -310h-158zM756 1103l293 310h228l-362 -310h-159zM453 -20q-147 0 -246.5 72.5t-133.5 194t0 267.5q31 137 116 250t211 180.5t266 67.5q147 0 246.5 -72.5t134 -194t0.5 -268.5q-48 -209 -215 -353t-379 -144zM468 149q148 0 246 104 +t134 261q18 65 14.5 124.5t-23 105t-68 72.5t-120.5 27q-76 0 -141 -29.5t-111 -81.5t-78 -116t-49 -139q-18 -65 -14.5 -124.5t23 -104.5t67.5 -72t120 -27z" /> + <glyph glyph-name="OE" unicode="Œ" horiz-adv-x="2248" +d="M655 -20q-112 0 -202 27.5t-151 77.5t-102 118.5t-57.5 152t-13 176t26.5 193.5q33 145 101.5 271t168.5 225t239 156t301 57q161 0 262.5 -61.5t142.5 -171.5l54 212h918l-42 -182h-715l-100 -434h648l-42 -180h-648l-98 -428h714l-43 -189h-918l49 198 +q-186 -218 -493 -218zM672 169q119 0 221 44.5t174.5 123t122.5 176.5t76 212q20 85 22 160t-16.5 141.5t-58 114.5t-108 75.5t-160.5 27.5q-120 0 -222 -45t-174.5 -123t-122 -176t-75.5 -212q-20 -84 -22.5 -159t16 -141.5t58 -114.5t108 -76t161.5 -28z" /> + <glyph glyph-name="oe" unicode="œ" horiz-adv-x="1810" +d="M452 -20q-147 0 -246 72.5t-133 194t0 267.5q48 209 214 353.5t378 144.5q123 0 208.5 -52.5t125.5 -139.5q164 192 391 192q96 0 167.5 -31t112 -82.5t60.5 -120.5t18 -144t-22 -155q-7 -29 -17 -53h-691q-20 -116 30.5 -187.5t169.5 -71.5q88 0 159 26.5t141 86.5 +l116 -129q-103 -87 -207.5 -125t-223.5 -38q-130 0 -214.5 52t-121.5 136q-173 -196 -415 -196zM1053 574h510q21 134 -24 201.5t-163 67.5q-117 0 -201 -76t-122 -193zM464 150q150 0 247 102t133 262q18 67 15 126.5t-22 104t-66.5 70.5t-118.5 26q-149 0 -246.5 -102.5 +t-134.5 -262.5q-18 -67 -14.5 -126t22.5 -103.5t66.5 -70.5t118.5 -26z" /> + <glyph glyph-name="Racute" unicode="Ŕ" horiz-adv-x="1242" +d="M747 1537l289 289h228l-357 -289h-160zM81 -2l328 1414h423q96 0 175 -29t130.5 -83t71 -132t-2.5 -177q-30 -130 -129.5 -224t-237.5 -128l233 -641h-220l-207 621h-216l-144 -621h-204zM471 794h242q112 5 194 66.5t106 164.5q22 97 -34 151.5t-175 54.5h-232z" /> + <glyph glyph-name="racute" unicode="ŕ" horiz-adv-x="804" +d="M453 1124l289 289h228l-357 -289h-160zM43 0l229 999h189l-35 -165q56 92 135.5 136t156.5 44q52 0 102.5 -16.5t81.5 -44.5l-107 -155q-57 35 -121 35q-113 0 -205 -104.5t-130 -268.5l-106 -460h-190z" /> + <glyph glyph-name="Rcommaaccent" unicode="Ŗ" horiz-adv-x="1242" +d="M81 -2l328 1414h423q96 0 175 -29t130.5 -83t71 -132t-2.5 -177q-30 -130 -129.5 -224t-237.5 -128l233 -641h-220l-207 621h-216l-144 -621h-204zM471 794h242q112 5 194 66.5t106 164.5q22 97 -34 151.5t-175 54.5h-232zM233 -452l208 343h236l-317 -343h-127z" /> + <glyph glyph-name="rcommaaccent" unicode="ŗ" horiz-adv-x="804" +d="M43 0l229 999h189l-35 -165q56 92 135.5 136t156.5 44q52 0 102.5 -16.5t81.5 -44.5l-107 -155q-57 35 -121 35q-113 0 -205 -104.5t-130 -268.5l-106 -460h-190zM-201 -452l208 343h236l-317 -343h-127z" /> + <glyph glyph-name="Rcaron" unicode="Ř" horiz-adv-x="1242" +d="M849 1493l-248 332h171l108 -160l190 160h177zM81 -2l328 1414h423q96 0 175 -29t130.5 -83t71 -132t-2.5 -177q-30 -130 -129.5 -224t-237.5 -128l233 -641h-220l-207 621h-216l-144 -621h-204zM471 794h242q112 5 194 66.5t106 164.5q22 97 -34 151.5t-175 54.5h-232z +" /> + <glyph glyph-name="rcaron" unicode="ř" horiz-adv-x="804" +d="M555 1080l-248 332h171l108 -160l190 160h177zM43 0l229 999h189l-35 -165q56 92 135.5 136t156.5 44q52 0 102.5 -16.5t81.5 -44.5l-107 -155q-57 35 -121 35q-113 0 -205 -104.5t-130 -268.5l-106 -460h-190z" /> + <glyph glyph-name="Sacute" unicode="Ś" horiz-adv-x="1124" +d="M688 1537l289 289h228l-357 -289h-160zM502 -16q-128 0 -231 44.5t-167.5 138t-64.5 221.5l205 36q0 -122 73 -188t203 -66q135 0 218 68.5t83 177.5q0 54 -23 98.5t-61 73t-86.5 57t-99 51.5t-99 55t-86.5 67.5t-61 90t-23 122.5q0 173 133 288t327 115q143 0 249.5 -64 +t145.5 -178l-170 -83q-21 71 -84 111.5t-144 40.5q-101 0 -176.5 -60t-75.5 -153q0 -53 29.5 -96t77.5 -73.5t105 -59.5t114.5 -63t105.5 -75t77.5 -104.5t29.5 -143.5q0 -127 -70.5 -230.5t-190 -161t-263.5 -57.5z" /> + <glyph glyph-name="sacute" unicode="ś" horiz-adv-x="889" +d="M469 1124l289 289h228l-357 -289h-160zM367 -20q-153 0 -254 80.5t-113 190.5l168 58q7 -69 62.5 -116t143.5 -47q93 0 151 50.5t58 117.5q0 39 -24 66t-62 42.5t-83.5 28.5t-91.5 30.5t-84 42.5t-62 71t-24 109q0 142 106.5 226t263.5 84q129 0 222 -58t124 -152 +l-162 -67q-18 57 -67 90t-124 33q-78 0 -127.5 -36t-49.5 -99q0 -33 19 -58t49.5 -39.5t70 -28.5t80 -26t80 -32.5t70 -46t49.5 -69t19 -100.5q0 -142 -119 -243.5t-289 -101.5z" /> + <glyph glyph-name="Scedilla" unicode="Ş" horiz-adv-x="1124" +d="M487 1048q0 -53 29.5 -96t77.5 -73.5t105 -59.5t114.5 -63t105.5 -75t77.5 -104.5t29.5 -143.5q0 -127 -70.5 -230.5t-190 -161t-263.5 -57.5h-4l-91 -94q91 -8 129 -64.5t19 -140.5q-19 -82 -90.5 -140t-163.5 -58q-66 0 -112 39.5t-57 95.5l123 37q1 -24 16 -38t40 -14 +q44 0 79.5 31t46.5 75q10 42 -27 71t-116 29h-62l144 184q-151 31 -244 132t-93 259l205 36q0 -122 73 -188t203 -66q135 0 218 68.5t83 177.5q0 54 -23 98.5t-61 73t-86.5 57t-99 51.5t-99 55t-86.5 67.5t-61 90t-23 122.5q0 173 133 288t327 115q143 0 249.5 -64 +t145.5 -178l-170 -83q-21 71 -84 111.5t-144 40.5q-101 0 -176.5 -60t-75.5 -153z" /> + <glyph glyph-name="scedilla" unicode="ş" horiz-adv-x="889" +d="M338 725q0 -33 19 -58t49.5 -39.5t70 -28.5t80 -26t80 -32.5t70 -46t49.5 -69t19 -100.5q0 -129 -100.5 -227t-251.5 -115l-91 -93q91 -8 129 -64.5t19 -140.5q-19 -82 -90.5 -140t-163.5 -58q-66 0 -112 39.5t-57 95.5l123 37q1 -24 16 -38t40 -14q44 0 79.5 31t46.5 75 +q10 42 -27 71t-116 29h-62l136 173q-124 19 -203.5 94.5t-89.5 170.5l168 58q7 -69 62.5 -116t143.5 -47q93 0 151 50.5t58 117.5q0 39 -24 66t-62 42.5t-83.5 28.5t-91.5 30.5t-84 42.5t-62 71t-24 109q0 142 106.5 226t263.5 84q129 0 222 -58t124 -152l-162 -67 +q-18 57 -67 90t-124 33q-78 0 -127.5 -36t-49.5 -99z" /> + <glyph glyph-name="Scaron" unicode="Š" horiz-adv-x="1124" +d="M790 1493l-248 332h171l108 -160l190 160h177zM502 -16q-128 0 -231 44.5t-167.5 138t-64.5 221.5l205 36q0 -122 73 -188t203 -66q135 0 218 68.5t83 177.5q0 54 -23 98.5t-61 73t-86.5 57t-99 51.5t-99 55t-86.5 67.5t-61 90t-23 122.5q0 173 133 288t327 115 +q143 0 249.5 -64t145.5 -178l-170 -83q-21 71 -84 111.5t-144 40.5q-101 0 -176.5 -60t-75.5 -153q0 -53 29.5 -96t77.5 -73.5t105 -59.5t114.5 -63t105.5 -75t77.5 -104.5t29.5 -143.5q0 -127 -70.5 -230.5t-190 -161t-263.5 -57.5z" /> + <glyph glyph-name="scaron" unicode="š" horiz-adv-x="889" +d="M571 1080l-248 332h171l108 -160l190 160h177zM367 -20q-153 0 -254 80.5t-113 190.5l168 58q7 -69 62.5 -116t143.5 -47q93 0 151 50.5t58 117.5q0 39 -24 66t-62 42.5t-83.5 28.5t-91.5 30.5t-84 42.5t-62 71t-24 109q0 142 106.5 226t263.5 84q129 0 222 -58t124 -152 +l-162 -67q-18 57 -67 90t-124 33q-78 0 -127.5 -36t-49.5 -99q0 -33 19 -58t49.5 -39.5t70 -28.5t80 -26t80 -32.5t70 -46t49.5 -69t19 -100.5q0 -142 -119 -243.5t-289 -101.5z" /> + <glyph glyph-name="uni0162" unicode="Ţ" horiz-adv-x="1208" +d="M387 0l285 1237h-461l41 176h1126l-41 -176h-461l-284 -1237h-205zM350 -513q-66 0 -112 39.5t-57 95.5l123 37q1 -24 16 -38t40 -14q44 0 79.5 31t46.5 75q10 42 -27 71t-116 29h-62l146 186h135l-106 -109q91 -8 129 -64.5t19 -140.5q-19 -82 -90.5 -140t-163.5 -58z +" /> + <glyph glyph-name="uni0163" unicode="ţ" horiz-adv-x="713" +d="M462 838l-130 -557q-31 -135 82 -135q61 0 133 34l-29 -178q-41 -15 -111 -20l-89 -92q91 -8 129 -64.5t19 -140.5q-19 -82 -90.5 -140t-163.5 -58q-66 0 -112 39.5t-57 95.5l123 37q1 -24 16 -38t40 -14q44 0 79.5 31t46.5 75q10 42 -27 71t-116 29h-62l138 176 +q-95 23 -129.5 99.5t-7.5 190.5l129 559h-160l37 161h162l52 236l224 156l-90 -392h258l-37 -161h-257z" /> + <glyph glyph-name="Tcaron" unicode="Ť" horiz-adv-x="1208" +d="M839 1493l-248 332h171l108 -160l190 160h177zM387 0l285 1237h-461l41 176h1126l-41 -176h-461l-284 -1237h-205z" /> + <glyph glyph-name="tcaron" unicode="ť" horiz-adv-x="713" +d="M645 1123l222 411h228l-330 -411h-120zM354 -20q-140 0 -191 81.5t-19 217.5l126 550h-159l39 170h162l52 236l224 156l-90 -392h258l-39 -170h-258l-131 -571q-15 -61 2.5 -84.5t60.5 -23.5q44 0 83.5 8t57.5 16l17 7l-34 -167q-60 -34 -161 -34z" /> + <glyph glyph-name="Tbar" unicode="Ŧ" horiz-adv-x="1208" +d="M1337 1237h-461l-106 -461h217l-32 -139h-217l-146 -637h-205l147 637h-214l32 139h214l106 461h-461l41 176h1126z" /> + <glyph glyph-name="tbar" unicode="ŧ" horiz-adv-x="713" +d="M719 838h-257l-63 -269h273l-32 -139h-273l-35 -149q-31 -135 82 -135q61 0 133 34l-29 -178q-57 -22 -154 -22q-140 0 -196 81t-24 218l35 151h-174l32 139h174l62 269h-160l37 161h162l52 236l224 156l-90 -392h258z" /> + <glyph glyph-name="Utilde" unicode="Ũ" horiz-adv-x="1366" +d="M1058 1541q-42 0 -72.5 15.5t-47 37.5t-29 44t-27.5 37.5t-35 15.5q-37 0 -67.5 -39.5t-45.5 -97.5h-126q28 129 89.5 198t146.5 69q42 0 72.5 -15.5t47 -37.5t29.5 -44.5t27.5 -38t33.5 -15.5q36 0 67 40.5t47 104.5h133q-62 -274 -243 -274zM574 -20q-91 0 -163 20 +t-120.5 56.5t-80.5 87t-44.5 114t-9.5 134.5t21 150l201 871h203l-196 -851q-26 -119 -22.5 -205t60.5 -134t171 -48q177 0 275.5 106t142.5 298l193 834h204l-202 -878q-29 -124 -81 -223.5t-129 -174.5t-184.5 -116t-238.5 -41z" /> + <glyph glyph-name="utilde" unicode="ũ" horiz-adv-x="1140" +d="M846 1128q-42 0 -72.5 15.5t-47 37.5t-29 44t-27.5 37.5t-35 15.5q-37 0 -67.5 -39.5t-45.5 -97.5h-126q28 129 89.5 198t146.5 69q42 0 72.5 -15.5t47 -38t29.5 -44.5t27.5 -37.5t33.5 -15.5q36 0 67 40.5t47 104.5h133q-62 -274 -243 -274zM377 -23q-76 0 -132.5 24.5 +t-89.5 66t-48.5 98t-14.5 120t17 132.5l134 581h196l-137 -596q-12 -54 -14 -94.5t8.5 -77.5t43.5 -57t88 -20q116 0 217.5 85.5t137.5 239.5l119 520h195l-230 -999h-191l31 137q-60 -70 -149 -115t-181 -45z" /> + <glyph glyph-name="Umacron" unicode="Ū" horiz-adv-x="1366" +d="M658 1579l31 134h550l-31 -134h-550zM574 -20q-91 0 -163 20t-120.5 56.5t-80.5 87t-44.5 114t-9.5 134.5t21 150l201 871h203l-196 -851q-26 -119 -22.5 -205t60.5 -134t171 -48q177 0 275.5 106t142.5 298l193 834h204l-202 -878q-29 -124 -81 -223.5t-129 -174.5 +t-184.5 -116t-238.5 -41z" /> + <glyph glyph-name="umacron" unicode="ū" horiz-adv-x="1140" +d="M446 1166l31 134h550l-31 -134h-550zM377 -23q-76 0 -132.5 24.5t-89.5 66t-48.5 98t-14.5 120t17 132.5l134 581h196l-137 -596q-12 -54 -14 -94.5t8.5 -77.5t43.5 -57t88 -20q116 0 217.5 85.5t137.5 239.5l119 520h195l-230 -999h-191l31 137q-60 -70 -149 -115 +t-181 -45z" /> + <glyph glyph-name="Uring" unicode="Ů" horiz-adv-x="1366" +d="M923 1487q-97 0 -148 70t-27 165q20 83 91 140t156 57q95 0 147.5 -69.5t28.5 -163.5q-20 -84 -92 -141.5t-156 -57.5zM937 1604q49 0 85 36.5t39 83.5q2 38 -20 60t-60 22q-53 0 -86 -34.5t-36 -84.5q-2 -39 19.5 -61t58.5 -22zM574 -20q-91 0 -163 20t-120.5 56.5 +t-80.5 87t-44.5 114t-9.5 134.5t21 150l201 871h203l-196 -851q-26 -119 -22.5 -205t60.5 -134t171 -48q177 0 275.5 106t142.5 298l193 834h204l-202 -878q-29 -124 -81 -223.5t-129 -174.5t-184.5 -116t-238.5 -41z" /> + <glyph glyph-name="uring" unicode="ů" horiz-adv-x="1140" +d="M711 1074q-97 0 -148 70t-27 165q20 83 91 140t156 57q95 0 147.5 -69.5t28.5 -163.5q-20 -84 -92 -141.5t-156 -57.5zM725 1191q49 0 85 36.5t39 83.5q2 38 -20 60t-60 22q-53 0 -86 -34.5t-36 -84.5q-2 -39 19.5 -61t58.5 -22zM377 -23q-76 0 -132.5 24.5t-89.5 66 +t-48.5 98t-14.5 120t17 132.5l134 581h196l-137 -596q-12 -54 -14 -94.5t8.5 -77.5t43.5 -57t88 -20q116 0 217.5 85.5t137.5 239.5l119 520h195l-230 -999h-191l31 137q-60 -70 -149 -115t-181 -45z" /> + <glyph glyph-name="Uhungarumlaut" unicode="Ű" horiz-adv-x="1366" +d="M636 1516l292 310h207l-341 -310h-158zM974 1516l293 310h228l-362 -310h-159zM574 -20q-91 0 -163 20t-120.5 56.5t-80.5 87t-44.5 114t-9.5 134.5t21 150l201 871h203l-196 -851q-26 -119 -22.5 -205t60.5 -134t171 -48q177 0 275.5 106t142.5 298l193 834h204 +l-202 -878q-29 -124 -81 -223.5t-129 -174.5t-184.5 -116t-238.5 -41z" /> + <glyph glyph-name="uhungarumlaut" unicode="ű" horiz-adv-x="1140" +d="M424 1103l292 310h207l-341 -310h-158zM762 1103l293 310h228l-362 -310h-159zM377 -23q-76 0 -132.5 24.5t-89.5 66t-48.5 98t-14.5 120t17 132.5l134 581h196l-137 -596q-12 -54 -14 -94.5t8.5 -77.5t43.5 -57t88 -20q116 0 217.5 85.5t137.5 239.5l119 520h195 +l-230 -999h-191l31 137q-60 -70 -149 -115t-181 -45z" /> + <glyph glyph-name="Uogonek" unicode="Ų" horiz-adv-x="1366" +d="M1205 1413h204l-202 -878q-47 -201 -155.5 -338.5t-278.5 -188.5q-188 -93 -216 -213q-18 -80 50 -80q74 0 136 67l95 -88q-99 -110 -229 -110q-97 0 -147.5 62t-28.5 161q23 98 127 173q-105 2 -184 31.5t-126.5 80t-71.5 121t-23.5 153t22.5 176.5l201 871h203 +l-196 -851q-26 -119 -22.5 -205t60.5 -134t171 -48q177 0 275.5 106t142.5 298z" /> + <glyph glyph-name="uogonek" unicode="ų" horiz-adv-x="1140" +d="M642 -320q74 0 136 67l95 -88q-99 -110 -229 -110q-97 0 -147.5 62t-28.5 161q12 48 42 90t67.5 69.5t66.5 43.5t53 25h-21l31 137q-60 -70 -149 -115t-181 -45q-76 0 -132.5 24.5t-89.5 66t-48.5 98t-14.5 120t17 132.5l134 581h196l-137 -596q-12 -54 -14 -94.5 +t8.5 -77.5t43.5 -57t88 -20q116 0 217.5 85.5t137.5 239.5l119 520h195l-230 -999h-64l64 -2q-13 -5 -30.5 -12t-60 -30t-76.5 -48.5t-66 -65.5t-42 -82q-18 -80 50 -80z" /> + <glyph glyph-name="Wcircumflex" unicode="Ŵ" horiz-adv-x="1987" +d="M900 1498l403 354l243 -354h-168l-109 167l-189 -167h-180zM346 0l-83 1413h206l56 -1135l578 1053h160l89 -1053l582 1135h215l-737 -1413h-207l-90 1007l-561 -1007h-208z" /> + <glyph glyph-name="wcircumflex" unicode="ŵ" horiz-adv-x="1441" +d="M534 1098l403 354l243 -354h-168l-109 167l-189 -167h-180zM208 -2l-61 1001h204l20 -719l377 719h172l42 -717l357 717h208l-524 -999h-181l-43 738l-391 -740h-180z" /> + <glyph glyph-name="Ycircumflex" unicode="Ŷ" horiz-adv-x="1361" +d="M588 1511l403 354l243 -354h-168l-109 167l-189 -167h-180zM465 0l129 552l-356 861h234l260 -670l574 670h241l-752 -861l-129 -552h-201z" /> + <glyph glyph-name="ycircumflex" unicode="ŷ" horiz-adv-x="1002" +d="M310 1098l403 354l243 -354h-168l-109 167l-189 -167h-180zM8 -430l283 445l-160 984h211l96 -759l448 759h216l-882 -1429h-212z" /> + <glyph glyph-name="Ydieresis" unicode="Ÿ" horiz-adv-x="1361" +d="M673 1618l47 208h186l-48 -208h-185zM1017 1618l48 208h186l-48 -208h-186zM465 0l129 552l-356 861h234l260 -670l574 670h241l-752 -861l-129 -552h-201z" /> + <glyph glyph-name="Zacute" unicode="Ź" horiz-adv-x="1274" +d="M765 1537l289 289h228l-357 -289h-160zM-40 0l31 148l1091 1083h-793l42 182h1067l-34 -155l-1085 -1074h836l-43 -184h-1112z" /> + <glyph glyph-name="zacute" unicode="ź" horiz-adv-x="966" +d="M1027 1413l-357 -289h-160l289 289h228zM168 838l36 161h802l-31 -147l-730 -688h569l-37 -164h-831l29 136l749 702h-556z" /> + <glyph glyph-name="Zdotaccent" unicode="Ż" horiz-adv-x="1274" +d="M787 1618l47 208h212l-48 -208h-211zM-40 0l31 148l1091 1083h-793l42 182h1067l-34 -155l-1085 -1074h836l-43 -184h-1112z" /> + <glyph glyph-name="zdotaccent" unicode="ż" horiz-adv-x="966" +d="M791 1413l-48 -208h-211l47 208h212zM1006 999l-31 -147l-730 -688h569l-37 -164h-831l29 136l749 702h-556l36 161h802z" /> + <glyph glyph-name="Zcaron" unicode="Ž" horiz-adv-x="1274" +d="M867 1493l-248 332h171l108 -160l190 160h177zM-40 0l31 148l1091 1083h-793l42 182h1067l-34 -155l-1085 -1074h836l-43 -184h-1112z" /> + <glyph glyph-name="zcaron" unicode="ž" horiz-adv-x="966" +d="M1010 1412l-398 -332l-248 332h171l108 -160l190 160h177zM168 838l36 161h802l-31 -147l-730 -688h569l-37 -164h-831l29 136l749 702h-556z" /> + <glyph glyph-name="florin" unicode="ƒ" horiz-adv-x="1037" +d="M-124 -457l27 168q184 0 280.5 71.5t134.5 237.5l188 814h-179l39 165h178l36 153q30 132 127.5 214.5t212.5 82.5q113 0 208 -95l-128 -116q-42 43 -96 43q-52 0 -98.5 -38.5t-62.5 -107.5l-32 -136h305l-38 -165h-305l-191 -831q-52 -227 -208 -343.5t-398 -116.5z" /> + <glyph glyph-name="uni01C3" unicode="ǃ" horiz-adv-x="505" +d="M157 402l209 1032h204l-267 -1032h-146zM24 0l50 226h228l-50 -226h-228z" /> + <glyph glyph-name="uni01C4" unicode="DŽ" horiz-adv-x="2661" +d="M2254 1493l-248 332h171l108 -160l190 160h177zM83 0l326 1413h377q352 0 497 -191t63 -544q-76 -326 -302 -502t-574 -176h-387zM1347 0l31 148l1091 1083h-793l42 182h1067l-34 -155l-1085 -1074h836l-43 -184h-1112zM330 186h147q123 0 229 31t195.5 95t154.5 168.5 +t97 244.5q59 258 -36.5 380.5t-364.5 122.5h-182z" /> + <glyph glyph-name="uni01C5" unicode="Dž" horiz-adv-x="2377" +d="M786 1413q352 0 497 -191t63 -544q-76 -326 -302 -502t-574 -176h-387l326 1413h377zM2421 1412l-398 -332l-248 332h171l108 -160l190 160h177zM1153 725q59 258 -36.5 380.5t-364.5 122.5h-182l-240 -1042h147q123 0 229 31t195.5 95t154.5 168.5t97 244.5zM1579 838 +l36 161h802l-31 -147l-730 -688h569l-37 -164h-831l29 136l749 702h-556z" /> + <glyph glyph-name="uni01C6" unicode="dž" horiz-adv-x="2115" +d="M1005 1413h195l-326 -1413h-183l18 113q-130 -133 -320 -133q-100 0 -172.5 43t-107.5 116.5t-43.5 171t18.5 207.5q32 138 103 250.5t180 182t234 69.5q98 0 169 -38.5t106 -108.5zM2159 1412l-398 -332l-248 332h171l108 -160l190 160h177zM1317 838l36 161h802 +l-31 -147l-730 -688h569l-37 -164h-831l29 136l749 702h-556zM813 518q18 66 15.5 125t-20.5 103.5t-62 70.5t-110 26q-136 0 -231.5 -103t-129.5 -258q-19 -91 -12 -163t55.5 -116.5t134.5 -44.5q139 0 232 101t128 259z" /> + <glyph glyph-name="uni01C7" unicode="LJ" horiz-adv-x="2214" +d="M83 0l326 1413h203l-282 -1224h604l-43 -189h-808zM1481 -20q-135 0 -224 62t-121.5 161.5t-13.5 221.5l200 8q-10 -74 -1 -133.5t55 -97t124 -37.5t136.5 24.5t97.5 73t63.5 105.5t42.5 135l168 728h-533l42 182h736l-212 -916q-117 -517 -560 -517z" /> + <glyph glyph-name="uni01C8" unicode="Lj" horiz-adv-x="1572" +d="M1371 1198l51 218h213l-51 -218h-213zM83 0l326 1413h203l-282 -1224h604l-43 -189h-808zM937 -438q-80 0 -162 35l70 152q43 -17 93 -17q51 0 84.5 36t45.5 89l263 1142h197l-263 -1139q-32 -137 -114 -217.5t-214 -80.5z" /> + <glyph glyph-name="uni01C9" unicode="lj" horiz-adv-x="1061" +d="M860 1198l51 218h213l-51 -218h-213zM233 -20q-105 0 -139 57.5t-8 171.5l278 1204h194l-278 -1203q-8 -34 4.5 -47.5t46.5 -13.5q14 0 79 13l-26 -164q-79 -18 -151 -18zM426 -438q-80 0 -162 35l70 152q42 -17 93 -17t84.5 36t45.5 89l263 1142h197l-263 -1139 +q-32 -137 -114 -217.5t-214 -80.5z" /> + <glyph glyph-name="uni01CA" unicode="NJ" horiz-adv-x="2563" +d="M83 0l326 1413h234l347 -1116l260 1116h198l-326 -1413h-237l-343 1118l-260 -1118h-199zM1830 -20q-135 0 -224 62t-121.5 161.5t-13.5 221.5l200 8q-10 -74 -1 -133.5t55 -97t124 -37.5t136.5 24.5t97.5 73t63.5 105.5t42.5 135l168 728h-533l42 182h736l-212 -916 +q-118 -517 -560 -517z" /> + <glyph glyph-name="uni01CB" unicode="Nj" horiz-adv-x="1952" +d="M1751 1198l51 218h213l-51 -218h-213zM83 0l326 1413h234l347 -1116l260 1116h198l-326 -1413h-237l-343 1118l-260 -1118h-199zM1317 -438q-80 0 -162 35l70 152q43 -17 93 -17q51 0 84.5 36t45.5 89l263 1142h197l-263 -1139q-32 -137 -114 -217.5t-214 -80.5z" /> + <glyph glyph-name="uni01CC" unicode="nj" horiz-adv-x="1658" +d="M1457 1198l51 218h213l-51 -218h-213zM43 0l229 999h196l-33 -131q68 73 155 110.5t172 37.5q76 0 133 -23t90 -62.5t49 -94t15 -115t-16 -126.5l-137 -595h-196l136 590q12 53 14 93.5t-8 76.5t-41.5 55t-83.5 19q-115 0 -221 -87t-131 -197l-127 -550h-195zM1023 -438 +q-80 0 -162 35l70 152q43 -17 93 -17q51 0 84.5 36t45.5 89l263 1142h197l-263 -1139q-32 -137 -114 -217.5t-214 -80.5z" /> + <glyph glyph-name="uni01CD" unicode="Ǎ" horiz-adv-x="1323" +d="M896 1493l-248 332h171l108 -160l190 160h177zM-77 0l873 1413h154l218 -1413h-215l-38 307h-587l-180 -307h-225zM438 486h450l-77 628z" /> + <glyph glyph-name="uni01CE" unicode="ǎ" +d="M1114 1412l-398 -332l-248 332h171l108 -160l190 160h177zM876 873l32 126h196l-230 -999h-183l18 113q-130 -133 -320 -133q-100 0 -172.5 43t-107.5 116.5t-43.5 171t18.5 207.5q32 138 103 250.5t180 182t234 69.5q98 0 169 -38.5t106 -108.5zM813 518q18 66 15.5 125 +t-20.5 103.5t-62 70.5t-110 26q-136 0 -231.5 -103t-129.5 -258q-19 -91 -12 -163t55.5 -116.5t134.5 -44.5q139 0 232 101t128 259z" /> + <glyph glyph-name="uni01CF" unicode="Ǐ" horiz-adv-x="599" +d="M532 1493l-248 332h171l108 -160l190 160h177zM83 0l326 1413h203l-325 -1413h-204z" /> + <glyph glyph-name="uni01D0" unicode="ǐ" horiz-adv-x="500" +d="M387 1080l-248 332h171l108 -160l190 160h177zM43 0l229 999h185l-230 -999h-184z" /> + <glyph glyph-name="uni01D1" unicode="Ǒ" horiz-adv-x="1521" +d="M992 1493l-248 332h171l108 -160l190 160h177zM652 -20q-111 0 -200.5 27.5t-150.5 77.5t-101.5 118.5t-57 152t-13 176.5t26.5 193q33 145 101.5 271t168 225t238.5 156t299 57q111 0 201 -27.5t151 -77.5t101.5 -118.5t57 -152t13.5 -176.5t-26 -194 +q-34 -145 -102.5 -270.5t-168 -224.5t-238.5 -156t-300 -57zM669 163q120 0 222 45.5t174 125.5t121.5 178t75.5 213q20 85 22.5 160.5t-15 143t-56.5 116t-107.5 77t-161.5 28.5q-118 0 -219 -45.5t-173 -125.5t-121 -178.5t-75 -212.5q-20 -85 -22.5 -160.5t15 -143 +t55.5 -116t105.5 -77t159.5 -28.5z" /> + <glyph glyph-name="uni01D2" unicode="ǒ" horiz-adv-x="1123" +d="M697 1080l-248 332h171l108 -160l190 160h177zM453 -20q-147 0 -246.5 72.5t-133.5 194t0 267.5q31 137 116 250t211 180.5t266 67.5q147 0 246.5 -72.5t134 -194t0.5 -268.5q-48 -209 -215 -353t-379 -144zM468 149q148 0 246 104t134 261q18 65 14.5 124.5t-23 105 +t-68 72.5t-120.5 27q-76 0 -141 -29.5t-111 -81.5t-78 -116t-49 -139q-18 -65 -14.5 -124.5t23 -104.5t67.5 -72t120 -27z" /> + <glyph glyph-name="uni01D3" unicode="Ǔ" horiz-adv-x="1366" +d="M915 1493l-248 332h171l108 -160l190 160h177zM574 -20q-91 0 -163 20t-120.5 56.5t-80.5 87t-44.5 114t-9.5 134.5t21 150l201 871h203l-196 -851q-26 -119 -22.5 -205t60.5 -134t171 -48q177 0 275.5 106t142.5 298l193 834h204l-202 -878q-29 -124 -81 -223.5 +t-129 -174.5t-184.5 -116t-238.5 -41z" /> + <glyph glyph-name="uni01D4" unicode="ǔ" horiz-adv-x="1140" +d="M703 1080l-248 332h171l108 -160l190 160h177zM377 -23q-76 0 -132.5 24.5t-89.5 66t-48.5 98t-14.5 120t17 132.5l134 581h196l-137 -596q-12 -54 -14 -94.5t8.5 -77.5t43.5 -57t88 -20q116 0 217.5 85.5t137.5 239.5l119 520h195l-230 -999h-191l31 137 +q-60 -70 -149 -115t-181 -45z" /> + <glyph glyph-name="uni01D5" unicode="Ǖ" horiz-adv-x="1366" +d="M754 1993l31 134h550l-31 -134h-550zM675 1618l47 208h186l-48 -208h-185zM1019 1618l48 208h186l-48 -208h-186zM574 -20q-91 0 -163 20t-120.5 56.5t-80.5 87t-44.5 114t-9.5 134.5t21 150l201 871h203l-196 -851q-26 -119 -22.5 -205t60.5 -134t171 -48 +q177 0 275.5 106t142.5 298l193 834h204l-202 -878q-29 -124 -81 -223.5t-129 -174.5t-184.5 -116t-238.5 -41z" /> + <glyph glyph-name="uni01D6" unicode="ǖ" horiz-adv-x="1140" +d="M542 1580l31 134h550l-31 -134h-550zM463 1205l47 208h186l-48 -208h-185zM807 1205l48 208h186l-48 -208h-186zM377 -23q-76 0 -132.5 24.5t-89.5 66t-48.5 98t-14.5 120t17 132.5l134 581h196l-137 -596q-12 -54 -14 -94.5t8.5 -77.5t43.5 -57t88 -20q116 0 217.5 85.5 +t137.5 239.5l119 520h195l-230 -999h-191l31 137q-60 -70 -149 -115t-181 -45z" /> + <glyph glyph-name="uni01D7" unicode="Ǘ" horiz-adv-x="1366" +d="M909 1951l289 289h228l-357 -289h-160zM675 1618l47 208h186l-48 -208h-185zM1019 1618l48 208h186l-48 -208h-186zM574 -20q-91 0 -163 20t-120.5 56.5t-80.5 87t-44.5 114t-9.5 134.5t21 150l201 871h203l-196 -851q-26 -119 -22.5 -205t60.5 -134t171 -48 +q177 0 275.5 106t142.5 298l193 834h204l-202 -878q-29 -124 -81 -223.5t-129 -174.5t-184.5 -116t-238.5 -41z" /> + <glyph glyph-name="uni01D8" unicode="ǘ" horiz-adv-x="1140" +d="M697 1538l289 289h228l-357 -289h-160zM463 1205l47 208h186l-48 -208h-185zM807 1205l48 208h186l-48 -208h-186zM377 -23q-76 0 -132.5 24.5t-89.5 66t-48.5 98t-14.5 120t17 132.5l134 581h196l-137 -596q-12 -54 -14 -94.5t8.5 -77.5t43.5 -57t88 -20 +q116 0 217.5 85.5t137.5 239.5l119 520h195l-230 -999h-191l31 137q-60 -70 -149 -115t-181 -45z" /> + <glyph glyph-name="uni01D9" unicode="Ǚ" horiz-adv-x="1366" +d="M1011 1907l-248 332h171l108 -160l190 160h177zM675 1618l47 208h186l-48 -208h-185zM1019 1618l48 208h186l-48 -208h-186zM574 -20q-91 0 -163 20t-120.5 56.5t-80.5 87t-44.5 114t-9.5 134.5t21 150l201 871h203l-196 -851q-26 -119 -22.5 -205t60.5 -134t171 -48 +q177 0 275.5 106t142.5 298l193 834h204l-202 -878q-29 -124 -81 -223.5t-129 -174.5t-184.5 -116t-238.5 -41z" /> + <glyph glyph-name="uni01DA" unicode="ǚ" horiz-adv-x="1140" +d="M799 1494l-248 332h171l108 -160l190 160h177zM463 1205l47 208h186l-48 -208h-185zM807 1205l48 208h186l-48 -208h-186zM377 -23q-76 0 -132.5 24.5t-89.5 66t-48.5 98t-14.5 120t17 132.5l134 581h196l-137 -596q-12 -54 -14 -94.5t8.5 -77.5t43.5 -57t88 -20 +q116 0 217.5 85.5t137.5 239.5l119 520h195l-230 -999h-191l31 137q-60 -70 -149 -115t-181 -45z" /> + <glyph glyph-name="uni01DB" unicode="Ǜ" horiz-adv-x="1366" +d="M949 1940l-212 300h209l152 -300h-149zM675 1618l47 208h186l-48 -208h-185zM1019 1618l48 208h186l-48 -208h-186zM574 -20q-91 0 -163 20t-120.5 56.5t-80.5 87t-44.5 114t-9.5 134.5t21 150l201 871h203l-196 -851q-26 -119 -22.5 -205t60.5 -134t171 -48 +q177 0 275.5 106t142.5 298l193 834h204l-202 -878q-29 -124 -81 -223.5t-129 -174.5t-184.5 -116t-238.5 -41z" /> + <glyph glyph-name="uni01DC" unicode="ǜ" horiz-adv-x="1140" +d="M737 1527l-212 300h209l152 -300h-149zM463 1205l47 208h186l-48 -208h-185zM807 1205l48 208h186l-48 -208h-186zM377 -23q-76 0 -132.5 24.5t-89.5 66t-48.5 98t-14.5 120t17 132.5l134 581h196l-137 -596q-12 -54 -14 -94.5t8.5 -77.5t43.5 -57t88 -20 +q116 0 217.5 85.5t137.5 239.5l119 520h195l-230 -999h-191l31 137q-60 -70 -149 -115t-181 -45z" /> + <glyph glyph-name="uni01DD" unicode="ǝ" horiz-adv-x="1042" +d="M409 -12q-102 0 -175.5 30t-113 80t-56 121t-12.5 147t24 163q7 27 15 43h694q21 125 -30 194.5t-167 69.5q-90 0 -160 -24.5t-138 -82.5l-113 126q101 86 202.5 121.5t221.5 35.5q95 0 169.5 -27.5t119 -76.5t70.5 -115t25.5 -143t-17.5 -162q-23 -99 -70.5 -187 +t-117 -159t-166 -112.5t-205.5 -41.5zM423 154q118 0 203 77t122 193l-512 -17q-48 -253 187 -253z" /> + <glyph glyph-name="uni01E3" unicode="ǣ" horiz-adv-x="1691" +d="M731 1173l29 129h545l-29 -129h-545zM317 -20q-156 0 -236 90t-47 232q64 282 440 282l300 2q31 134 -6.5 201.5t-150.5 67.5q-166 0 -301 -146l-123 113q184 194 431 194q125 0 199.5 -48t101.5 -130q77 88 164.5 131t203.5 43q77 0 136 -18t96 -47.5t61 -73.5 +t33.5 -89.5t10 -102.5t-5 -105.5t-15.5 -105.5q-1 -13 -14 -37h-694q-21 -133 31.5 -201t170.5 -68q170 0 293 107l113 -126q-100 -85 -202 -121t-218 -36q-280 0 -328 225q-86 -112 -200 -172.5t-244 -60.5zM938 581l514 5q22 126 -24 192.5t-162 66.5q-124 0 -207.5 -76 +t-120.5 -188zM352 142q131 0 242 90.5t146 205.5l-275 -2q-91 0 -162.5 -49t-85.5 -121q-12 -56 29.5 -90t105.5 -34z" /> + <glyph glyph-name="uni01EB" unicode="ǫ" horiz-adv-x="1123" +d="M666 1012q147 0 246.5 -72.5t134 -194t0.5 -268.5q-41 -179 -172.5 -313.5t-307.5 -171.5q-30 -12 -61 -28.5t-76 -46t-78.5 -71t-43.5 -86.5q-18 -80 50 -80q74 0 136 67l95 -88q-99 -110 -229 -110q-97 0 -147.5 62t-28.5 161q18 75 74.5 128.5t119.5 84.5 +q-123 18 -204 94t-105 187t4 248q31 137 116 250t211 180.5t266 67.5zM848 514q18 65 14.5 124.5t-23 105t-68 72.5t-120.5 27q-76 0 -141 -29.5t-111 -81.5t-78 -116t-49 -139q-18 -65 -14.5 -124.5t23 -104.5t67.5 -72t120 -27q148 0 246 104t134 261z" /> + <glyph glyph-name="uni01F1" unicode="DZ" horiz-adv-x="2661" +d="M83 0l326 1413h377q352 0 497 -191t63 -544q-76 -326 -302 -502t-574 -176h-387zM1347 0l31 148l1091 1083h-793l42 182h1067l-34 -155l-1085 -1074h836l-43 -184h-1112zM330 186h147q123 0 229 31t195.5 95t154.5 168.5t97 244.5q59 258 -36.5 380.5t-364.5 122.5h-182z +" /> + <glyph glyph-name="uni01F2" unicode="Dz" horiz-adv-x="2377" +d="M786 1413q352 0 497 -191t63 -544q-76 -326 -302 -502t-574 -176h-387l326 1413h377zM1153 725q59 258 -36.5 380.5t-364.5 122.5h-182l-240 -1042h147q123 0 229 31t195.5 95t154.5 168.5t97 244.5zM2417 999l-31 -147l-730 -688h569l-37 -164h-831l29 136l749 702h-556 +l36 161h802z" /> + <glyph glyph-name="uni01F3" unicode="dz" horiz-adv-x="2115" +d="M1005 1413h195l-326 -1413h-183l18 113q-130 -133 -320 -133q-100 0 -172.5 43t-107.5 116.5t-43.5 171t18.5 207.5q32 138 103 250.5t180 182t234 69.5q98 0 169 -38.5t106 -108.5zM2155 999l-31 -147l-730 -688h569l-37 -164h-831l29 136l749 702h-556l36 161h802z +M813 518q18 66 15.5 125t-20.5 103.5t-62 70.5t-110 26q-136 0 -231.5 -103t-129.5 -258q-19 -91 -12 -163t55.5 -116.5t134.5 -44.5q139 0 232 101t128 259z" /> + <glyph glyph-name="Scommaaccent" unicode="Ș" horiz-adv-x="1124" +d="M502 -16q-128 0 -231 44.5t-167.5 138t-64.5 221.5l205 36q0 -122 73 -188t203 -66q135 0 218 68.5t83 177.5q0 54 -23 98.5t-61 73t-86.5 57t-99 51.5t-99 55t-86.5 67.5t-61 90t-23 122.5q0 173 133 288t327 115q143 0 249.5 -64t145.5 -178l-170 -83q-21 71 -84 111.5 +t-144 40.5q-101 0 -176.5 -60t-75.5 -153q0 -53 29.5 -96t77.5 -73.5t105 -59.5t114.5 -63t105.5 -75t77.5 -104.5t29.5 -143.5q0 -127 -70.5 -230.5t-190 -161t-263.5 -57.5zM103 -452l208 343h236l-317 -343h-127z" /> + <glyph glyph-name="scommaaccent" unicode="ș" horiz-adv-x="889" +d="M367 -20q-153 0 -254 80.5t-113 190.5l168 58q7 -69 62.5 -116t143.5 -47q93 0 151 50.5t58 117.5q0 39 -24 66t-62 42.5t-83.5 28.5t-91.5 30.5t-84 42.5t-62 71t-24 109q0 142 106.5 226t263.5 84q129 0 222 -58t124 -152l-162 -67q-18 57 -67 90t-124 33 +q-78 0 -127.5 -36t-49.5 -99q0 -33 19 -58t49.5 -39.5t70 -28.5t80 -26t80 -32.5t70 -46t49.5 -69t19 -100.5q0 -142 -119 -243.5t-289 -101.5zM28 -452l208 343h236l-317 -343h-127z" /> + <glyph glyph-name="uni021A" unicode="Ț" horiz-adv-x="1208" +d="M387 0l285 1237h-461l41 176h1126l-41 -176h-461l-284 -1237h-205zM152 -452l208 343h236l-317 -343h-127z" /> + <glyph glyph-name="uni021B" unicode="ț" horiz-adv-x="713" +d="M364 -20q-140 0 -196 81t-24 218l129 559h-160l37 161h162l52 236l224 156l-90 -392h258l-37 -161h-257l-130 -557q-31 -135 82 -135q61 0 133 34l-29 -178q-57 -22 -154 -22zM14 -452l208 343h236l-317 -343h-127z" /> + <glyph glyph-name="uni0237" unicode="ȷ" horiz-adv-x="516" +d="M-123 -438q-73 0 -158 35l69 159q47 -13 100 -13q101 0 127 123l261 1133h196l-264 -1141q-31 -137 -114.5 -216.5t-216.5 -79.5z" /> + <glyph glyph-name="uni0250" unicode="ɐ" horiz-adv-x="1074" +d="M456 -20q-194 0 -280 114t-43 299l139 602h154l-21 -154q86 95 174 135t199 40q145 0 227.5 -91t49.5 -235q-65 -278 -444 -278l-296 -9q-29 -126 8 -189.5t156 -63.5q81 0 160 44t130 104l124 -122q-96 -101 -201 -148.5t-236 -47.5zM350 551l268 9q89 0 158.5 46.5 +t87.5 120.5q14 61 -26.5 90.5t-116.5 29.5q-123 0 -233 -91t-138 -205z" /> + <glyph glyph-name="uni0254" unicode="ɔ" horiz-adv-x="983" +d="M350 -20q-144 0 -236.5 76t-119.5 207l194 58q3 -80 50 -123t127 -43q70 0 131 31t104 84t72.5 115t45.5 131q15 63 14.5 118t-16.5 102.5t-59 75.5t-109 28q-87 0 -162 -50.5t-116 -131.5l-157 86q77 132 193.5 202t255.5 70q76 0 138.5 -20.5t104.5 -57t70.5 -86 +t40 -109.5t9.5 -126.5t-18 -137.5q-23 -98 -70.5 -186t-116.5 -159t-165 -112.5t-205 -41.5z" /> + <glyph glyph-name="uni0258" unicode="ɘ" horiz-adv-x="1042" +d="M391 -12q-126 0 -214.5 40.5t-153.5 128.5l149 101q41 -56 95.5 -75t142.5 -19q124 0 216 77t127 203h-690q3 39 8 63q19 82 47.5 152.5t75 137t105 113t141 74.5t180.5 28q92 0 163.5 -29.5t113.5 -80t66 -119t22 -146.5t-19 -162q-23 -99 -72.5 -186t-121 -154.5 +t-170 -107t-211.5 -39.5zM275 575l514 17q16 116 -27.5 184.5t-155.5 68.5q-126 0 -211.5 -73.5t-119.5 -196.5z" /> + <glyph glyph-name="uni0259" unicode="ə" horiz-adv-x="1042" +d="M409 -12q-102 0 -175.5 30t-113 80t-56 121t-12.5 147t24 163q7 27 15 43h694q21 125 -30 194.5t-167 69.5q-90 0 -160 -24.5t-138 -82.5l-113 126q101 86 202.5 121.5t221.5 35.5q95 0 169.5 -27.5t119 -76.5t70.5 -115t25.5 -143t-17.5 -162q-23 -99 -70.5 -187 +t-117 -159t-166 -112.5t-205.5 -41.5zM423 154q118 0 203 77t122 193l-512 -17q-48 -253 187 -253z" /> + <glyph glyph-name="uni0261" unicode="ɡ" horiz-adv-x="1147" +d="M869 -8q-47 -203 -185 -315.5t-345 -112.5q-280 0 -378 213l165 93q50 -137 230 -137q123 0 208 73.5t115 201.5l30 117q-129 -134 -315 -134q-82 0 -145.5 28t-103 77t-60.5 116t-20.5 146.5t20.5 165.5q31 136 101.5 246.5t180.5 180t237 69.5q93 0 164.5 -39 +t106.5 -108l32 126h195zM455 167q137 0 230 101.5t129 255.5q17 64 14 122t-20.5 102.5t-61.5 71t-109 26.5q-137 0 -232.5 -103t-129.5 -256q-18 -64 -14.5 -122t22 -102t63 -70t109.5 -26z" /> + <glyph glyph-name="circumflex" unicode="ˆ" horiz-adv-x="709" +d="M192 1098l403 354l243 -354h-168l-109 167l-189 -167h-180z" /> + <glyph glyph-name="caron" unicode="ˇ" horiz-adv-x="713" +d="M492 1080l-248 332h171l108 -160l190 160h177z" /> + <glyph glyph-name="uni02D0" unicode="ː" horiz-adv-x="518" +d="M269 583l-240 416l450 20zM39 -20l209 436l241 -416z" /> + <glyph glyph-name="uni02D1" unicode="ˑ" horiz-adv-x="539" +d="M280 240l-241 417l450 20z" /> + <glyph glyph-name="breve" unicode="˘" horiz-adv-x="824" +d="M571 1143q-152 0 -220 72.5t-39 197.5h149q-15 -72 17.5 -107.5t97.5 -35.5q71 0 130.5 41t74.5 102h149q-61 -270 -359 -270z" /> + <glyph glyph-name="dotaccent" unicode="˙" horiz-adv-x="521" +d="M317 1205l47 208h212l-48 -208h-211z" /> + <glyph glyph-name="ring" unicode="˚" horiz-adv-x="636" +d="M463 1074q-97 0 -148 70t-27 165q20 83 91 140t156 57q95 0 147.5 -69.5t28.5 -163.5q-20 -84 -92 -141.5t-156 -57.5zM477 1191q49 0 85 36.5t39 83.5q2 38 -20 60t-60 22q-53 0 -86 -34.5t-36 -84.5q-2 -39 19.5 -61t58.5 -22z" /> + <glyph glyph-name="ogonek" unicode="˛" horiz-adv-x="586" +d="M159 -451q-97 0 -147.5 62t-28.5 161q12 51 46 96t74 72t70 42.5t48 20.5l161 -5q-13 -5 -30.5 -12t-60 -30t-76.5 -48.5t-66 -65.5t-42 -82q-18 -80 50 -80q74 0 136 67l95 -88q-99 -110 -229 -110z" /> + <glyph glyph-name="tilde" unicode="˜" horiz-adv-x="1006" +d="M808 1139q-42 0 -72.5 15.5t-47 37.5t-29 44t-27.5 37.5t-35 15.5q-37 0 -67.5 -39.5t-45.5 -97.5h-126q28 129 89.5 198t146.5 69q42 0 72.5 -15.5t47 -37.5t29.5 -44.5t27.5 -38t33.5 -15.5q36 0 67 40.5t47 104.5h133q-62 -274 -243 -274z" /> + <glyph glyph-name="hungarumlaut" unicode="˝" horiz-adv-x="874" +d="M190 1103l292 310h207l-341 -310h-158zM528 1103l293 310h228l-362 -310h-159z" /> + <glyph glyph-name="uni02F5" unicode="˵" horiz-adv-x="1089" +d="M603 999l218 -304h-219l-273 304h274z" /> + <glyph glyph-name="uni02F6" unicode="˶" horiz-adv-x="1062" +d="M820 999l-273 -304h-222l219 304h276z" /> + <glyph glyph-name="gravecomb" unicode="̀" horiz-adv-x="0" +d="M-61 1113l-212 300h209l152 -300h-149z" /> + <glyph glyph-name="acutecomb" unicode="́" horiz-adv-x="0" +d="M-344 1124l289 289h228l-357 -289h-160z" /> + <glyph glyph-name="uni0302" unicode="̂" horiz-adv-x="0" +d="M-542 1098l403 354l243 -354h-168l-109 167l-189 -167h-180z" /> + <glyph glyph-name="tildecomb" unicode="̃" horiz-adv-x="0" +d="M-110 1139q-42 0 -72.5 15.5t-47 37.5t-29 44t-27.5 37.5t-35 15.5q-37 0 -67.5 -39.5t-45.5 -97.5h-126q28 129 89.5 198t146.5 69q42 0 72.5 -15.5t47 -37.5t29.5 -44.5t27.5 -38t33.5 -15.5q36 0 67 40.5t47 104.5h133q-62 -274 -243 -274z" /> + <glyph glyph-name="uni0304" unicode="̄" horiz-adv-x="0" +d="M-548 1166l31 134h550l-31 -134h-550z" /> + <glyph glyph-name="uni0306" unicode="̆" horiz-adv-x="0" +d="M-251 1143q-152 0 -220 72.5t-39 197.5h149q-15 -72 17.5 -107.5t97.5 -35.5q71 0 130.5 41t74.5 102h149q-61 -270 -359 -270z" /> + <glyph glyph-name="uni0307" unicode="̇" horiz-adv-x="0" +d="M-202 1205l47 208h212l-48 -208h-211z" /> + <glyph glyph-name="uni0308" unicode="̈" horiz-adv-x="0" +d="M-520 1205l47 208h186l-48 -208h-185zM-176 1205l48 208h186l-48 -208h-186z" /> + <glyph glyph-name="uni030A" unicode="̊" horiz-adv-x="0" +d="M-172 1074q-97 0 -148 70t-27 165q20 83 91 140t156 57q95 0 147.5 -69.5t28.5 -163.5q-20 -84 -92 -141.5t-156 -57.5zM-158 1191q49 0 85 36.5t39 83.5q2 38 -20 60t-60 22q-53 0 -86 -34.5t-36 -84.5q-2 -39 19.5 -61t58.5 -22z" /> + <glyph glyph-name="uni030B" unicode="̋" horiz-adv-x="0" +d="M-683 1103l292 310h207l-341 -310h-158zM-345 1103l293 310h228l-362 -310h-159z" /> + <glyph glyph-name="uni030C" unicode="̌" horiz-adv-x="0" +d="M-218 1080l-248 332h171l108 -160l190 160h177z" /> + <glyph glyph-name="uni030F" unicode="̏" horiz-adv-x="0" +d="M-435 1103l-209 310h229l150 -310h-170zM-86 1103l-209 310h230l149 -310h-170z" /> + <glyph glyph-name="uni0312" unicode="̒" horiz-adv-x="0" +d="M138 1428l-208 -307h-236l317 307h127z" /> + <glyph glyph-name="uni031B" unicode="̛" horiz-adv-x="0" +d="M-296 999l224 414h236l-333 -414h-127z" /> + <glyph glyph-name="uni0326" unicode="̦" horiz-adv-x="0" +d="M-631 -452l208 343h236l-317 -343h-127z" /> + <glyph glyph-name="uni0327" unicode="̧" horiz-adv-x="0" +d="M-522 -513q-66 0 -112 39.5t-57 95.5l123 37q1 -24 16 -38t40 -14q44 0 79.5 31t46.5 75q10 42 -27 71t-116 29h-62l146 186h135l-106 -109q91 -8 129 -64.5t19 -140.5q-19 -82 -90.5 -140t-163.5 -58z" /> + <glyph glyph-name="uni0328" unicode="̨" horiz-adv-x="0" +d="M-480 -451q-97 0 -147.5 62t-28.5 161q12 51 46 96t74 72t70 42.5t48 20.5l161 -5q-13 -5 -30.5 -12t-60 -30t-76.5 -48.5t-66 -65.5t-42 -82q-18 -80 50 -80q74 0 136 67l95 -88q-99 -110 -229 -110z" /> + <glyph glyph-name="pi" unicode="π" horiz-adv-x="998" +d="M724 -20q-104 0 -151.5 73t-22.5 178l136 592h-256l-189 -823h-176l189 823h-82l40 176h772l-40 -176h-82l-136 -590q-25 -102 24 -102q24 0 58 23l30 -147q-48 -27 -114 -27z" /> + <glyph glyph-name="uni0483" unicode="҃" horiz-adv-x="0" +d="M-708 1561l71 305h641l31 131h186l-69 -297h-649l-32 -139h-179z" /> + <glyph glyph-name="Wgrave" unicode="Ẁ" horiz-adv-x="1987" +d="M1163 1513l-212 300h209l152 -300h-149zM346 0l-83 1413h206l56 -1135l578 1053h160l89 -1053l582 1135h215l-737 -1413h-207l-90 1007l-561 -1007h-208z" /> + <glyph glyph-name="wgrave" unicode="ẁ" horiz-adv-x="1441" +d="M797 1113l-212 300h209l152 -300h-149zM208 -2l-61 1001h204l20 -719l377 719h172l42 -717l357 717h208l-524 -999h-181l-43 738l-391 -740h-180z" /> + <glyph glyph-name="Wacute" unicode="Ẃ" horiz-adv-x="1987" +d="M1123 1524l289 289h228l-357 -289h-160zM346 0l-83 1413h206l56 -1135l578 1053h160l89 -1053l582 1135h215l-737 -1413h-207l-90 1007l-561 -1007h-208z" /> + <glyph glyph-name="wacute" unicode="ẃ" horiz-adv-x="1441" +d="M757 1124l289 289h228l-357 -289h-160zM208 -2l-61 1001h204l20 -719l377 719h172l42 -717l357 717h208l-524 -999h-181l-43 738l-391 -740h-180z" /> + <glyph glyph-name="Wdieresis" unicode="Ẅ" horiz-adv-x="1987" +d="M985 1605l47 208h186l-48 -208h-185zM1329 1605l48 208h186l-48 -208h-186zM346 0l-83 1413h206l56 -1135l578 1053h160l89 -1053l582 1135h215l-737 -1413h-207l-90 1007l-561 -1007h-208z" /> + <glyph glyph-name="wdieresis" unicode="ẅ" horiz-adv-x="1441" +d="M619 1205l47 208h186l-48 -208h-185zM963 1205l48 208h186l-48 -208h-186zM208 -2l-61 1001h204l20 -719l377 719h172l42 -717l357 717h208l-524 -999h-181l-43 738l-391 -740h-180z" /> + <glyph glyph-name="uni1EA4" unicode="Ấ" horiz-adv-x="1323" +d="M891 1950l289 289h228l-357 -289h-160zM571 1511l403 354l243 -354h-168l-109 167l-189 -167h-180zM-77 0l873 1413h154l218 -1413h-215l-38 307h-587l-180 -307h-225zM438 486h450l-77 628z" /> + <glyph glyph-name="uni1EA5" unicode="ấ" +d="M1228 1826l-357 -289h-160l289 289h228zM760 1265l-189 -167h-180l403 354l243 -354h-168zM876 873l32 126h196l-230 -999h-183l18 113q-130 -133 -320 -133q-100 0 -172.5 43t-107.5 116.5t-43.5 171t18.5 207.5q32 138 103 250.5t180 182t234 69.5q98 0 169 -38.5 +t106 -108.5zM813 518q18 66 15.5 125t-20.5 103.5t-62 70.5t-110 26q-136 0 -231.5 -103t-129.5 -258q-19 -91 -12 -163t55.5 -116.5t134.5 -44.5q139 0 232 101t128 259z" /> + <glyph glyph-name="uni1EA6" unicode="Ầ" horiz-adv-x="1323" +d="M931 1939l-212 300h209l152 -300h-149zM571 1511l403 354l243 -354h-168l-109 167l-189 -167h-180zM-77 0l873 1413h154l218 -1413h-215l-38 307h-587l-180 -307h-225zM438 486h450l-77 628z" /> + <glyph glyph-name="uni1EA7" unicode="ầ" +d="M900 1526h-149l-212 300h209zM760 1265l-189 -167h-180l403 354l243 -354h-168zM908 999h196l-230 -999h-183l18 113q-130 -133 -320 -133q-100 0 -172.5 43t-107.5 116.5t-43.5 171t18.5 207.5q32 138 103 250.5t180 182t234 69.5q98 0 169 -38.5t106 -108.5zM813 518 +q18 66 15.5 125t-20.5 103.5t-62 70.5t-110 26q-136 0 -231.5 -103t-129.5 -258q-19 -91 -12 -163t55.5 -116.5t134.5 -44.5q139 0 232 101t128 259z" /> + <glyph glyph-name="uni1EAA" unicode="Ẫ" horiz-adv-x="1323" +d="M1136 1954q-42 0 -72.5 15.5t-47 37.5t-29 44t-27.5 37.5t-35 15.5q-37 0 -67.5 -39.5t-45.5 -97.5h-126q28 129 89.5 198t146.5 69q42 0 72.5 -15.5t47 -38t29.5 -44.5t27.5 -37.5t33.5 -15.5q36 0 67 40.5t47 104.5h133q-62 -274 -243 -274zM571 1511l403 354l243 -354 +h-168l-109 167l-189 -167h-180zM-77 0l873 1413h154l218 -1413h-215l-38 307h-587l-180 -307h-225zM438 486h450l-77 628z" /> + <glyph glyph-name="uni1EAB" unicode="ẫ" +d="M745 1691q-37 0 -67.5 -39.5t-45.5 -97.5h-126q28 129 89.5 198t146.5 69q42 0 72.5 -15.5t47 -37.5t29.5 -44.5t27.5 -38t33.5 -15.5q36 0 67 40.5t47 104.5h133q-62 -274 -243 -274q-42 0 -72.5 15.5t-47 37.5t-29 44t-27.5 37.5t-35 15.5zM760 1265l-189 -167h-180 +l403 354l243 -354h-168zM876 873l32 126h196l-230 -999h-183l18 113q-130 -133 -320 -133q-100 0 -172.5 43t-107.5 116.5t-43.5 171t18.5 207.5q32 138 103 250.5t180 182t234 69.5q98 0 169 -38.5t106 -108.5zM813 518q18 66 15.5 125t-20.5 103.5t-62 70.5t-110 26 +q-136 0 -231.5 -103t-129.5 -258q-19 -91 -12 -163t55.5 -116.5t134.5 -44.5q139 0 232 101t128 259z" /> + <glyph glyph-name="uni1EAE" unicode="Ắ" horiz-adv-x="1323" +d="M890 1951l289 289h228l-357 -289h-160zM920 1556q-152 0 -220 72.5t-39 197.5h149q-15 -72 17.5 -107.5t97.5 -35.5q71 0 130.5 41t74.5 102h149q-61 -270 -359 -270zM-77 0l873 1413h154l218 -1413h-215l-38 307h-587l-180 -307h-225zM438 486h450l-77 628z" /> + <glyph glyph-name="uni1EAF" unicode="ắ" +d="M1227 1827l-357 -289h-160l289 289h228zM740 1143q-152 0 -220 72.5t-39 197.5h149q-15 -72 17.5 -107.5t97.5 -35.5q71 0 130.5 41t74.5 102h149q-61 -270 -359 -270zM876 873l32 126h196l-230 -999h-183l18 113q-130 -133 -320 -133q-100 0 -172.5 43t-107.5 116.5 +t-43.5 171t18.5 207.5q32 138 103 250.5t180 182t234 69.5q98 0 169 -38.5t106 -108.5zM813 518q18 66 15.5 125t-20.5 103.5t-62 70.5t-110 26q-136 0 -231.5 -103t-129.5 -258q-19 -91 -12 -163t55.5 -116.5t134.5 -44.5q139 0 232 101t128 259z" /> + <glyph glyph-name="uni1EB0" unicode="Ằ" horiz-adv-x="1323" +d="M930 1940l-212 300h209l152 -300h-149zM920 1556q-152 0 -220 72.5t-39 197.5h149q-15 -72 17.5 -107.5t97.5 -35.5q71 0 130.5 41t74.5 102h149q-61 -270 -359 -270zM-77 0l873 1413h154l218 -1413h-215l-38 307h-587l-180 -307h-225zM438 486h450l-77 628z" /> + <glyph glyph-name="uni1EB1" unicode="ằ" +d="M899 1527h-149l-212 300h209zM740 1143q-152 0 -220 72.5t-39 197.5h149q-15 -72 17.5 -107.5t97.5 -35.5q71 0 130.5 41t74.5 102h149q-61 -270 -359 -270zM908 999h196l-230 -999h-183l18 113q-130 -133 -320 -133q-100 0 -172.5 43t-107.5 116.5t-43.5 171t18.5 207.5 +q32 138 103 250.5t180 182t234 69.5q98 0 169 -38.5t106 -108.5zM813 518q18 66 15.5 125t-20.5 103.5t-62 70.5t-110 26q-136 0 -231.5 -103t-129.5 -258q-19 -91 -12 -163t55.5 -116.5t134.5 -44.5q139 0 232 101t128 259z" /> + <glyph glyph-name="uni1EB4" unicode="Ẵ" horiz-adv-x="1323" +d="M1135 1955q-42 0 -72.5 15.5t-47 37.5t-29 44t-27.5 37.5t-35 15.5q-37 0 -67.5 -39.5t-45.5 -97.5h-126q28 129 89.5 198t146.5 69q42 0 72.5 -15.5t47 -37.5t29.5 -44.5t27.5 -38t33.5 -15.5q36 0 67 40.5t47 104.5h133q-62 -274 -243 -274zM920 1556q-152 0 -220 72.5 +t-39 197.5h149q-15 -72 17.5 -107.5t97.5 -35.5q71 0 130.5 41t74.5 102h149q-61 -270 -359 -270zM-77 0l873 1413h154l218 -1413h-215l-38 307h-587l-180 -307h-225zM438 486h450l-77 628z" /> + <glyph glyph-name="uni1EB5" unicode="ẵ" +d="M744 1692q-37 0 -67.5 -39.5t-45.5 -97.5h-126q28 129 89.5 198t146.5 69q42 0 72.5 -15.5t47 -38t29.5 -44.5t27.5 -37.5t33.5 -15.5q36 0 67 40.5t47 104.5h133q-62 -274 -243 -274q-42 0 -72.5 15.5t-47 37.5t-29 44t-27.5 37.5t-35 15.5zM740 1143q-152 0 -220 72.5 +t-39 197.5h149q-15 -72 17.5 -107.5t97.5 -35.5q71 0 130.5 41t74.5 102h149q-61 -270 -359 -270zM876 873l32 126h196l-230 -999h-183l18 113q-130 -133 -320 -133q-100 0 -172.5 43t-107.5 116.5t-43.5 171t18.5 207.5q32 138 103 250.5t180 182t234 69.5q98 0 169 -38.5 +t106 -108.5zM813 518q18 66 15.5 125t-20.5 103.5t-62 70.5t-110 26q-136 0 -231.5 -103t-129.5 -258q-19 -91 -12 -163t55.5 -116.5t134.5 -44.5q139 0 232 101t128 259z" /> + <glyph glyph-name="uni1EBC" unicode="Ẽ" horiz-adv-x="1241" +d="M1021 1541q-42 0 -72.5 15.5t-47 37.5t-29 44t-27.5 37.5t-35 15.5q-37 0 -67.5 -39.5t-45.5 -97.5h-126q28 129 89.5 198t146.5 69q42 0 72.5 -15.5t47 -37.5t29.5 -44.5t27.5 -38t33.5 -15.5q36 0 67 40.5t47 104.5h133q-62 -274 -243 -274zM83 0l326 1413h927 +l-42 -182h-724l-100 -434h648l-41 -180h-649l-98 -428h723l-43 -189h-927z" /> + <glyph glyph-name="uni1EBD" unicode="ẽ" horiz-adv-x="1050" +d="M798 1128q-42 0 -72.5 15.5t-47 37.5t-29 44t-27.5 37.5t-35 15.5q-37 0 -67.5 -39.5t-45.5 -97.5h-126q28 129 89.5 198t146.5 69q42 0 72.5 -15.5t47 -38t29.5 -44.5t27.5 -37.5t33.5 -15.5q36 0 67 40.5t47 104.5h133q-62 -274 -243 -274zM442 -12q-94 0 -167.5 27 +t-118.5 75.5t-71 114.5t-25 143.5t18 163.5q22 98 70 186.5t117.5 159t165.5 112.5t204 42q102 0 176 -30.5t113.5 -81.5t56.5 -121.5t13 -145.5t-24 -160q-5 -20 -15 -46h-694q-23 -119 26 -190.5t169 -71.5q92 0 161 23.5t136 80.5l115 -125q-101 -85 -203 -120.5 +t-223 -35.5zM296 574h513q24 135 -21 203t-167 68q-117 0 -201.5 -76.5t-123.5 -194.5z" /> + <glyph glyph-name="uni1EBE" unicode="Ế" horiz-adv-x="1241" +d="M873 1950l289 289h228l-357 -289h-160zM553 1511l403 354l243 -354h-168l-109 167l-189 -167h-180zM83 0l326 1413h927l-42 -182h-724l-100 -434h648l-41 -180h-649l-98 -428h723l-43 -189h-927z" /> + <glyph glyph-name="uni1EBF" unicode="ế" horiz-adv-x="1050" +d="M650 1537l289 289h228l-357 -289h-160zM330 1098l403 354l243 -354h-168l-109 167l-189 -167h-180zM442 -12q-94 0 -167.5 27t-118.5 75.5t-71 114.5t-25 143.5t18 163.5q22 98 70 186.5t117.5 159t165.5 112.5t204 42q102 0 176 -30.5t113.5 -81.5t56.5 -121.5 +t13 -145.5t-24 -160q-5 -20 -15 -46h-694q-23 -119 26 -190.5t169 -71.5q92 0 161 23.5t136 80.5l115 -125q-101 -85 -203 -120.5t-223 -35.5zM296 574h513q24 135 -21 203t-167 68q-117 0 -201.5 -76.5t-123.5 -194.5z" /> + <glyph glyph-name="uni1EC0" unicode="Ề" horiz-adv-x="1241" +d="M913 1939l-212 300h209l152 -300h-149zM553 1511l403 354l243 -354h-168l-109 167l-189 -167h-180zM83 0l326 1413h927l-42 -182h-724l-100 -434h648l-41 -180h-649l-98 -428h723l-43 -189h-927z" /> + <glyph glyph-name="uni1EC1" unicode="ề" horiz-adv-x="1050" +d="M690 1526l-212 300h209l152 -300h-149zM330 1098l403 354l243 -354h-168l-109 167l-189 -167h-180zM442 -12q-94 0 -167.5 27t-118.5 75.5t-71 114.5t-25 143.5t18 163.5q22 98 70 186.5t117.5 159t165.5 112.5t204 42q102 0 176 -30.5t113.5 -81.5t56.5 -121.5 +t13 -145.5t-24 -160q-5 -20 -15 -46h-694q-23 -119 26 -190.5t169 -71.5q92 0 161 23.5t136 80.5l115 -125q-101 -85 -203 -120.5t-223 -35.5zM296 574h513q24 135 -21 203t-167 68q-117 0 -201.5 -76.5t-123.5 -194.5z" /> + <glyph glyph-name="uni1EC4" unicode="Ễ" horiz-adv-x="1241" +d="M1118 1954q-42 0 -72.5 15.5t-47 37.5t-29 44t-27.5 37.5t-35 15.5q-37 0 -67.5 -39.5t-45.5 -97.5h-126q28 129 89.5 198t146.5 69q42 0 72.5 -15.5t47 -38t29.5 -44.5t27.5 -37.5t33.5 -15.5q36 0 67 40.5t47 104.5h133q-62 -274 -243 -274zM553 1511l403 354l243 -354 +h-168l-109 167l-189 -167h-180zM83 0l326 1413h927l-42 -182h-724l-100 -434h648l-41 -180h-649l-98 -428h723l-43 -189h-927z" /> + <glyph glyph-name="uni1EC5" unicode="ễ" horiz-adv-x="1050" +d="M895 1541q-42 0 -72.5 15.5t-47 37.5t-29 44t-27.5 37.5t-35 15.5q-37 0 -67.5 -39.5t-45.5 -97.5h-126q28 129 89.5 198t146.5 69q42 0 72.5 -15.5t47 -37.5t29.5 -44.5t27.5 -38t33.5 -15.5q36 0 67 40.5t47 104.5h133q-62 -274 -243 -274zM330 1098l403 354l243 -354 +h-168l-109 167l-189 -167h-180zM442 -12q-94 0 -167.5 27t-118.5 75.5t-71 114.5t-25 143.5t18 163.5q22 98 70 186.5t117.5 159t165.5 112.5t204 42q102 0 176 -30.5t113.5 -81.5t56.5 -121.5t13 -145.5t-24 -160q-5 -20 -15 -46h-694q-23 -119 26 -190.5t169 -71.5 +q92 0 161 23.5t136 80.5l115 -125q-101 -85 -203 -120.5t-223 -35.5zM296 574h513q24 135 -21 203t-167 68q-117 0 -201.5 -76.5t-123.5 -194.5z" /> + <glyph glyph-name="uni1ED0" unicode="Ố" horiz-adv-x="1521" +d="M987 1950l289 289h228l-357 -289h-160zM667 1511l403 354l243 -354h-168l-109 167l-189 -167h-180zM652 -20q-111 0 -200.5 27.5t-150.5 77.5t-101.5 118.5t-57 152t-13 176.5t26.5 193q33 145 101.5 271t168 225t238.5 156t299 57q111 0 201 -27.5t151 -77.5 +t101.5 -118.5t57 -152t13.5 -176.5t-26 -194q-34 -145 -102.5 -270.5t-168 -224.5t-238.5 -156t-300 -57zM669 163q120 0 222 45.5t174 125.5t121.5 178t75.5 213q20 85 22.5 160.5t-15 143t-56.5 116t-107.5 77t-161.5 28.5q-118 0 -219 -45.5t-173 -125.5t-121 -178.5 +t-75 -212.5q-20 -85 -22.5 -160.5t15 -143t55.5 -116t105.5 -77t159.5 -28.5z" /> + <glyph glyph-name="uni1ED1" unicode="ố" horiz-adv-x="1123" +d="M692 1537l289 289h228l-357 -289h-160zM372 1098l403 354l243 -354h-168l-109 167l-189 -167h-180zM453 -20q-147 0 -246.5 72.5t-133.5 194t0 267.5q31 137 116 250t211 180.5t266 67.5q147 0 246.5 -72.5t134 -194t0.5 -268.5q-48 -209 -215 -353t-379 -144zM468 149 +q148 0 246 104t134 261q18 65 14.5 124.5t-23 105t-68 72.5t-120.5 27q-76 0 -141 -29.5t-111 -81.5t-78 -116t-49 -139q-18 -65 -14.5 -124.5t23 -104.5t67.5 -72t120 -27z" /> + <glyph glyph-name="uni1ED2" unicode="Ồ" horiz-adv-x="1521" +d="M1027 1939l-212 300h209l152 -300h-149zM667 1511l403 354l243 -354h-168l-109 167l-189 -167h-180zM652 -20q-111 0 -200.5 27.5t-150.5 77.5t-101.5 118.5t-57 152t-13 176.5t26.5 193q33 145 101.5 271t168 225t238.5 156t299 57q111 0 201 -27.5t151 -77.5 +t101.5 -118.5t57 -152t13.5 -176.5t-26 -194q-34 -145 -102.5 -270.5t-168 -224.5t-238.5 -156t-300 -57zM669 163q120 0 222 45.5t174 125.5t121.5 178t75.5 213q20 85 22.5 160.5t-15 143t-56.5 116t-107.5 77t-161.5 28.5q-118 0 -219 -45.5t-173 -125.5t-121 -178.5 +t-75 -212.5q-20 -85 -22.5 -160.5t15 -143t55.5 -116t105.5 -77t159.5 -28.5z" /> + <glyph glyph-name="uni1ED3" unicode="ồ" horiz-adv-x="1123" +d="M732 1526l-212 300h209l152 -300h-149zM372 1098l403 354l243 -354h-168l-109 167l-189 -167h-180zM453 -20q-147 0 -246.5 72.5t-133.5 194t0 267.5q31 137 116 250t211 180.5t266 67.5q147 0 246.5 -72.5t134 -194t0.5 -268.5q-48 -209 -215 -353t-379 -144zM468 149 +q148 0 246 104t134 261q18 65 14.5 124.5t-23 105t-68 72.5t-120.5 27q-76 0 -141 -29.5t-111 -81.5t-78 -116t-49 -139q-18 -65 -14.5 -124.5t23 -104.5t67.5 -72t120 -27z" /> + <glyph glyph-name="uni1ED6" unicode="Ỗ" horiz-adv-x="1521" +d="M1232 1954q-42 0 -72.5 15.5t-47 37.5t-29 44t-27.5 37.5t-35 15.5q-37 0 -67.5 -39.5t-45.5 -97.5h-126q28 129 89.5 198t146.5 69q42 0 72.5 -15.5t47 -38t29.5 -44.5t27.5 -37.5t33.5 -15.5q36 0 67 40.5t47 104.5h133q-62 -274 -243 -274zM667 1511l403 354l243 -354 +h-168l-109 167l-189 -167h-180zM652 -20q-111 0 -200.5 27.5t-150.5 77.5t-101.5 118.5t-57 152t-13 176.5t26.5 193q33 145 101.5 271t168 225t238.5 156t299 57q111 0 201 -27.5t151 -77.5t101.5 -118.5t57 -152t13.5 -176.5t-26 -194q-34 -145 -102.5 -270.5t-168 -224.5 +t-238.5 -156t-300 -57zM669 163q120 0 222 45.5t174 125.5t121.5 178t75.5 213q20 85 22.5 160.5t-15 143t-56.5 116t-107.5 77t-161.5 28.5q-118 0 -219 -45.5t-173 -125.5t-121 -178.5t-75 -212.5q-20 -85 -22.5 -160.5t15 -143t55.5 -116t105.5 -77t159.5 -28.5z" /> + <glyph glyph-name="uni1ED7" unicode="ỗ" horiz-adv-x="1123" +d="M937 1541q-42 0 -72.5 15.5t-47 37.5t-29 44t-27.5 37.5t-35 15.5q-37 0 -67.5 -39.5t-45.5 -97.5h-126q28 129 89.5 198t146.5 69q42 0 72.5 -15.5t47 -37.5t29.5 -44.5t27.5 -38t33.5 -15.5q36 0 67 40.5t47 104.5h133q-62 -274 -243 -274zM372 1098l403 354l243 -354 +h-168l-109 167l-189 -167h-180zM453 -20q-147 0 -246.5 72.5t-133.5 194t0 267.5q31 137 116 250t211 180.5t266 67.5q147 0 246.5 -72.5t134 -194t0.5 -268.5q-48 -209 -215 -353t-379 -144zM468 149q148 0 246 104t134 261q18 65 14.5 124.5t-23 105t-68 72.5t-120.5 27 +q-76 0 -141 -29.5t-111 -81.5t-78 -116t-49 -139q-18 -65 -14.5 -124.5t23 -104.5t67.5 -72t120 -27z" /> + <glyph glyph-name="Ygrave" unicode="Ỳ" horiz-adv-x="1361" +d="M851 1526l-212 300h209l152 -300h-149zM465 0l129 552l-356 861h234l260 -670l574 670h241l-752 -861l-129 -552h-201z" /> + <glyph glyph-name="ygrave" unicode="ỳ" horiz-adv-x="1002" +d="M573 1113l-212 300h209l152 -300h-149zM8 -430l283 445l-160 984h211l96 -759l448 759h216l-882 -1429h-212z" /> + <glyph glyph-name="uni1EF8" unicode="Ỹ" horiz-adv-x="1361" +d="M1056 1541q-42 0 -72.5 15.5t-47 37.5t-29 44t-27.5 37.5t-35 15.5q-37 0 -67.5 -39.5t-45.5 -97.5h-126q28 129 89.5 198t146.5 69q42 0 72.5 -15.5t47 -37.5t29.5 -44.5t27.5 -38t33.5 -15.5q36 0 67 40.5t47 104.5h133q-62 -274 -243 -274zM465 0l129 552l-356 861 +h234l260 -670l574 670h241l-752 -861l-129 -552h-201z" /> + <glyph glyph-name="uni1EF9" unicode="ỹ" horiz-adv-x="1002" +d="M778 1128q-42 0 -72.5 15.5t-47 37.5t-29 44t-27.5 37.5t-35 15.5q-37 0 -67.5 -39.5t-45.5 -97.5h-126q28 129 89.5 198t146.5 69q42 0 72.5 -15.5t47 -38t29.5 -44.5t27.5 -37.5t33.5 -15.5q36 0 67 40.5t47 104.5h133q-62 -274 -243 -274zM8 -430l283 445l-160 984 +h211l96 -759l448 759h216l-882 -1429h-212z" /> + <glyph glyph-name="endash" unicode="–" horiz-adv-x="1036" +d="M163 545l35 147h730l-34 -147h-731z" /> + <glyph glyph-name="emdash" unicode="—" horiz-adv-x="1691" +d="M163 545l35 147h1386l-35 -147h-1386z" /> + <glyph glyph-name="uni2015" unicode="―" horiz-adv-x="1527" +d="M163 545l35 147h1222l-35 -147h-1222z" /> + <glyph glyph-name="quoteleft" unicode="‘" horiz-adv-x="569" +d="M409 893l-115 520h230l7 -520h-122z" /> + <glyph glyph-name="quoteright" unicode="’" horiz-adv-x="568" +d="M214 893l249 520h237l-357 -520h-129z" /> + <glyph glyph-name="quotesinglbase" unicode="‚" horiz-adv-x="561" +d="M-41 -225l239 489h227l-347 -489h-119z" /> + <glyph glyph-name="quotedblleft" unicode="“" horiz-adv-x="915" +d="M409 893l-115 520h230l7 -520h-122zM757 893l-116 520h229l8 -520h-121z" /> + <glyph glyph-name="quotedblright" unicode="”" horiz-adv-x="915" +d="M214 893l249 520h237l-357 -520h-129zM560 893l250 520h236l-355 -520h-131z" /> + <glyph glyph-name="quotedblbase" unicode="„" horiz-adv-x="888" +d="M-41 -225l239 489h227l-347 -489h-119zM289 -225l240 489h227l-347 -489h-120z" /> + <glyph glyph-name="dagger" unicode="†" horiz-adv-x="793" +d="M143 -205l238 1033h-222l43 183h221l93 402h183l-92 -402h221l-42 -183h-222l-237 -1033h-184z" /> + <glyph glyph-name="daggerdbl" unicode="‡" horiz-adv-x="885" +d="M189 -205l92 401h-221l43 185h221l103 447h-221l42 183h221l93 402h183l-92 -402h221l-42 -183h-222l-102 -447h221l-43 -185h-221l-92 -401h-184z" /> + <glyph glyph-name="bullet" unicode="•" horiz-adv-x="796" +d="M351 244q-103 0 -159 75t-32 180q21 91 102 155.5t174 64.5q103 0 159 -75t32 -181q-21 -91 -101.5 -155t-174.5 -64z" /> + <glyph glyph-name="uni2023" unicode="‣" horiz-adv-x="855" +d="M155 193l143 633l477 -316z" /> + <glyph glyph-name="twodotenleader" unicode="‥" horiz-adv-x="1072" +d="M104 0l52 227h220l-51 -227h-221zM518 0l52 227h220l-51 -227h-221z" /> + <glyph glyph-name="ellipsis" unicode="…" horiz-adv-x="1486" +d="M104 0l52 227h220l-51 -227h-221zM518 0l52 227h220l-51 -227h-221zM932 0l51 227h221l-52 -227h-220z" /> + <glyph glyph-name="perthousand" unicode="‰" horiz-adv-x="2174" +d="M449 787q-61 0 -105 22.5t-66.5 57.5t-32 81.5t-7.5 91.5t12 89q9 39 25 78.5t43.5 81.5t61.5 74t83 52.5t105 20.5q55 0 96.5 -20.5t65.5 -54t36 -78.5t11.5 -93.5t-12.5 -98.5q-13 -56 -40 -108t-66 -97t-93.5 -72t-116.5 -27zM184 -8l1101 1437h175l-1102 -1437h-174z +M451 921q61 0 110 63t69 146q9 44 8 81.5t-21 63t-57 25.5q-62 0 -111.5 -61.5t-68.5 -146.5q-18 -63 -1 -117t72 -54zM1094 -3q-61 0 -104.5 22.5t-66 58t-32.5 81.5t-8.5 91t11.5 90q12 50 36 100t61.5 98.5t95.5 79t127 30.5q68 0 115.5 -31t67.5 -80t25 -111t-12 -123 +q-13 -56 -39.5 -109t-65.5 -98t-94 -72t-117 -27zM1708 -3q-61 0 -104.5 22.5t-66.5 58t-33 81.5t-8 91t12 90q12 50 36 100t61.5 98.5t95.5 79t126 30.5t116 -31t68 -80t25 -111t-12 -123q-12 -56 -39 -109t-66 -98t-94 -72t-117 -27zM1098 130q60 0 109.5 64t67.5 147 +q19 65 2 118.5t-70 53.5q-63 0 -112.5 -62t-68.5 -148q-9 -44 -8.5 -82.5t21.5 -64.5t59 -26zM1712 130q60 0 109 64t67 147q18 65 1.5 118.5t-68.5 53.5q-64 0 -112.5 -61.5t-68.5 -148.5q-9 -44 -8 -82.5t21.5 -64.5t58.5 -26z" /> + <glyph glyph-name="uni2031" unicode="‱" horiz-adv-x="2777" +d="M449 787q-61 0 -105 22.5t-66.5 58t-32 81.5t-7.5 91t12 90q12 50 35 99t60.5 98t95.5 79t127 30q54 0 95.5 -20.5t65.5 -54t36 -78.5t11.5 -93.5t-12.5 -98.5q-29 -120 -113 -212t-202 -92zM184 -8l1101 1436h174l-1101 -1436h-174zM451 921q61 0 110 63t69 146 +q9 44 8 82t-21 63.5t-56 25.5q-63 0 -112.5 -61.5t-69.5 -146.5q-8 -44 -7.5 -82t21 -64t58.5 -26zM1094 -3q-61 0 -104.5 22.5t-66 58t-32.5 81.5t-8.5 91t11.5 90q12 50 36 100t61.5 98.5t95.5 79t127 30.5q68 0 115.5 -31t67 -80.5t24.5 -111t-12 -122.5 +q-28 -121 -112 -213.5t-203 -92.5zM1707 -3q-61 0 -104.5 22.5t-66.5 58t-33 81.5t-8 91t12 90q12 50 36 100t61.5 98.5t95.5 79t126 30.5t115.5 -31t67.5 -80.5t25 -111t-12 -122.5q-28 -121 -112 -213.5t-203 -92.5zM2313 -3q-61 0 -104.5 22.5t-66 58t-32.5 81.5t-8.5 91 +t11.5 90q12 50 36 100t61.5 98.5t95.5 79t127 30.5q68 0 115.5 -31t67 -80.5t24.5 -111t-12 -122.5q-28 -121 -112 -213.5t-203 -92.5zM1098 130q60 0 109.5 64t67.5 147q19 65 2 119t-70 54q-64 0 -113.5 -62t-68.5 -149q-9 -44 -8.5 -82.5t22 -64.5t59.5 -26zM1710 130 +q61 0 110.5 64t67.5 147q9 45 8 83.5t-20.5 64t-55.5 25.5q-64 0 -113 -62t-69 -149q-9 -44 -8.5 -82.5t21.5 -64.5t59 -26zM2316 130q61 0 110.5 64t67.5 147q19 65 2 119t-70 54q-64 0 -113 -62t-69 -149q-9 -44 -8 -82.5t21.5 -64.5t58.5 -26z" /> + <glyph glyph-name="guilsinglleft" unicode="‹" horiz-adv-x="601" +d="M367 171l-320 340l473 340l-39 -185l-224 -155l149 -155z" /> + <glyph glyph-name="guilsinglright" unicode="›" horiz-adv-x="602" +d="M82 171l39 185l225 155l-149 155l38 185l320 -340z" /> + <glyph glyph-name="fraction" unicode="⁄" horiz-adv-x="802" +d="M-82 0l772 1413h194l-772 -1413h-194z" /> + <glyph glyph-name="Euro" unicode="€" horiz-adv-x="1261" +d="M664 -20q-208 0 -308.5 136t-94.5 356l-159 -8l100 152l71 9q3 14 6 29t8 35.5t8 35.5q12 53 24 93l-139 -9l102 153l93 9q97 215 249 340t349 125q120 0 207.5 -53t136.5 -152l-145 -90q-51 117 -217 117q-129 0 -234.5 -84t-175.5 -220l530 8l-101 -153l-494 -9 +q-19 -62 -26 -100q-4 -13 -19 -89l560 8l-101 -153l-468 -8q6 -142 68 -221.5t187 -79.5q166 0 283 136l98 -140q-176 -173 -398 -173z" /> + <glyph glyph-name="uni20B1" unicode="₱" horiz-adv-x="1247" +d="M1346 1065l-24 -100h-109q-48 -169 -194 -260t-353 -91h-222l-141 -614h-203l223 965h-108l24 100h107l80 348h412q193 0 300 -92.5t94 -255.5h114zM585 1227l-38 -162h486q7 80 -49 121t-177 41h-222zM696 800q235 0 310 165h-482l-38 -165h210z" /> + <glyph glyph-name="uni20B3" unicode="₳" horiz-adv-x="1323" +d="M1302 650h-234l32 -210h153l-32 -133h-100l47 -307h-215l-38 307h-587l-180 -307h-225l190 307h-100l32 133h150l130 210h-232l30 133h284l389 630h154l97 -630h284zM821 1167l-224 -384h269zM907 440l-25 210h-363l-122 -210h510z" /> + <glyph glyph-name="uni20B4" unicode="₴" horiz-adv-x="1181" +d="M1120 1043q-8 -37 -22.5 -70t-31 -59t-41.5 -50t-46 -41t-54 -35t-56 -29t-61.5 -25.5t-61.5 -22t-64.5 -21t-62.5 -20.5h379l-28 -117h-584q-73 -65 -95 -159q-26 -113 25.5 -168.5t169.5 -55.5q84 0 161 30t139 92.5t91 148.5l183 -70q-37 -96 -102 -171.5t-144.5 -122 +t-167 -70t-177.5 -23.5q-204 0 -312.5 119.5t-63.5 316.5q14 60 41 110.5t65 89t79 68.5t94 55.5t97.5 44t101.5 40.5l48 18h-326l26 118h527q65 56 83 130q17 73 -28.5 117t-125.5 44q-82 0 -161.5 -44t-135.5 -122l-143 120q180 225 454 225q86 0 156 -27t116 -77.5 +t63 -123t-4 -163.5z" /> + <glyph glyph-name="uni20B8" unicode="₸" horiz-adv-x="1401" +d="M308 1236l41 176h1126l-42 -176h-1125zM485 0l214 928h-462l40 175h1126l-40 -175h-462l-214 -928h-202z" /> + <glyph glyph-name="uni20BD" unicode="₽" horiz-adv-x="1324" +d="M194 0l72 313h-177l38 163h176l35 148h-176l39 176h177l142 613h412q214 0 321 -113t61 -308q-42 -181 -189 -274.5t-363 -93.5h-223l-34 -148h360l-38 -163h-360l-71 -313h-202zM579 800h211q136 0 221 58.5t111 169.5q23 97 -32 148t-189 51h-223z" /> + <glyph glyph-name="uni2116" unicode="№" horiz-adv-x="2420" +d="M1541 563q-32 -145 -137 -256t-245 -147l-37 -160h-237l-68 221q-64 55 -91 142t-11 191l-173 564l-260 -1118h-199l326 1413h234l186 -599q62 78 146 129t180 64l95 406h198l-97 -422q122 -43 173.5 -160t16.5 -268zM1120 857q-82 -27 -138.5 -97.5t-83.5 -166.5 +l92 -296zM1374 594q21 78 7.5 147.5t-64.5 102.5l-120 -520q132 75 177 270zM1442 154h760v-154h-760v154z" /> + <glyph glyph-name="trademark" unicode="™" horiz-adv-x="1347" +d="M374 877l101 434h-145l24 102h405l-24 -102h-146l-101 -434h-114zM707 877l125 536h141l24 -335l183 335h141l-125 -536h-114l90 380l-155 -299h-82l-21 317l-92 -398h-115z" /> + <glyph glyph-name="uni2126" unicode="Ω" horiz-adv-x="1675" +d="M49 0l38 165l316 5q-119 93 -169.5 246.5t-11.5 319.5q29 124 103.5 250t171.5 217q118 94 262.5 149t275.5 55q138 0 257.5 -63.5t186.5 -168.5q66 -81 86 -209.5t-12 -268.5q-37 -159 -146.5 -305t-260.5 -234l287 4l-37 -162h-542l30 162q176 39 314 198t192 388 +q20 90 11 180t-45 154q-57 72 -148 115t-187 43q-105 0 -220 -51t-202 -134q-72 -54 -127.5 -146t-79.5 -197q-48 -207 13.5 -356.5t216.5 -197.5l-31 -158h-542z" /> + <glyph glyph-name="arrowleft" unicode="←" horiz-adv-x="2210" +d="M1039 106l-950 533l950 525l87 -154l-607 -298h1600v-154h-1588l595 -299z" /> + <glyph glyph-name="arrowright" unicode="→" horiz-adv-x="2207" +d="M1197 106l-87 153l595 299h-1588v154h1599l-606 298l87 154l950 -525z" /> + <glyph glyph-name="partialdiff" unicode="∂" horiz-adv-x="1299" +d="M458 -11q-206 0 -298.5 130.5t-43.5 337.5q56 240 248 399.5t414 159.5q157 0 262 -105q41 184 -14 275t-183 91q-183 0 -294 -169l-150 62q80 126 202 192.5t267 66.5q127 0 210.5 -50.5t120 -144.5t36.5 -219.5t-36 -282.5q-36 -155 -103 -288.5t-160 -235.5 +t-216 -160.5t-262 -58.5zM484 158q158 0 296.5 123t181.5 307q27 121 -18.5 192t-168.5 71q-88 0 -170.5 -38t-143 -100t-104 -138t-61.5 -154q-28 -123 25.5 -193t162.5 -70z" /> + <glyph glyph-name="uni2206" unicode="∆" horiz-adv-x="1297" +d="M-39 0l906 1458l238 -1458h-1144zM248 167h654l-127 860z" /> + <glyph glyph-name="product" unicode="∏" horiz-adv-x="1339" +d="M137 0l288 1246h-82l38 167h999l-38 -167h-82l-288 -1246h-167l287 1246h-500l-287 -1246h-168z" /> + <glyph glyph-name="summation" unicode="∑" horiz-adv-x="1269" +d="M-12 0l17 84l719 623l-428 622l17 84h1044l-38 -167h-744l389 -539l-634 -540h740l-38 -167h-1044z" /> + <glyph glyph-name="minus" unicode="−" horiz-adv-x="1349" +d="M245 555v147h886v-147h-886z" /> + <glyph glyph-name="radical" unicode="√" horiz-adv-x="1199" +d="M342 -206l-93 766h-154l38 167h271l40 -499l731 1193l146 -58z" /> + <glyph glyph-name="infinity" unicode="∞" horiz-adv-x="1896" +d="M566 354q-177 0 -278 104.5t-101 276.5t101 276.5t278 104.5q109 0 215.5 -59t189.5 -167q83 109 189.5 167.5t216.5 58.5q176 0 277 -105t101 -276t-101 -276t-277 -105q-110 0 -217 59.5t-189 167.5q-83 -109 -189.5 -168t-215.5 -59zM597 513q74 0 153 59.5t133 162.5 +q-55 102 -134 162t-152 60q-106 0 -168.5 -59t-62.5 -163t63 -163t168 -59zM1346 513q105 0 167 59t62 163t-62 163t-167 59q-75 0 -154 -59.5t-133 -162.5q55 -102 134 -162t153 -60z" /> + <glyph glyph-name="integral" unicode="∫" horiz-adv-x="949" +d="M-144 -457l26 168q176 0 271 72t132 234l263 1139q30 130 127 211.5t212 81.5q113 0 200 -87l-128 -118q-34 37 -88 37q-51 0 -97.5 -38t-61.5 -107l-264 -1139q-51 -224 -206.5 -339t-385.5 -115z" /> + <glyph glyph-name="approxequal" unicode="≈" horiz-adv-x="1170" +d="M761 734q-48 0 -91 14.5t-73.5 35t-58 40.5t-56 34.5t-55.5 14.5q-45 0 -61.5 -28.5t-15.5 -83.5h-133q0 116 54 180.5t154 64.5q57 0 104 -14t77.5 -34t56.5 -40t52 -34t52 -14q49 0 67.5 31.5t18.5 99.5h140q0 -130 -59.5 -198.5t-172.5 -68.5zM762 388 +q-59 0 -111.5 22t-84 48t-69 48t-70.5 22q-45 0 -61.5 -29t-15.5 -84h-133q0 116 54 180.5t154 64.5q57 0 104 -14t77.5 -34t56.5 -39.5t52 -33.5t52 -14q49 0 67.5 31t18.5 98h140q0 -129 -59 -197.5t-172 -68.5z" /> + <glyph glyph-name="notequal" unicode="≠" horiz-adv-x="1146" +d="M121 0l229 418h-155v162h241l99 184h-340v162h427l266 487h180l-265 -487h176v-162h-263l-99 -184h362v-162h-449l-228 -418h-181z" /> + <glyph glyph-name="lessequal" unicode="≤" horiz-adv-x="1340" +d="M1063 135l-939 525l939 523l84 -146l-704 -377l704 -379zM73 -147v147h1087v-147h-1087z" /> + <glyph glyph-name="greaterequal" unicode="≥" horiz-adv-x="1391" +d="M253 135l-84 146l704 379l-704 377l84 146l939 -523zM156 -147v147h1087v-147h-1087z" /> + <glyph glyph-name="lozenge" unicode="◊" horiz-adv-x="1113" +d="M353 0l-214 717l540 717h182l211 -717l-537 -717h-182zM480 186l392 531l-139 530l-394 -530z" /> + <glyph glyph-name="uniF8FF" unicode="" horiz-adv-x="1797" +d="M947 -61q-158 0 -301 61t-247 165t-165 247t-61 301t61 301t165 247t247 165t301 61t301.5 -61t247 -165t165 -247t61.5 -301t-61.5 -301t-165 -247t-247 -165t-301.5 -61zM947 10q144 0 274 55.5t224 149.5t149.5 224.5t55.5 273.5t-55.5 273t-149.5 224t-224 149.5 +t-274 55.5q-143 0 -273 -55.5t-224 -149.5t-149.5 -224t-55.5 -273t55.5 -273.5t149.5 -224.5t224 -149.5t273 -55.5zM544 410q-14 0 -24.5 9.5t-10.5 24.5v537q0 15 10.5 26t24.5 11q15 0 26 -11t11 -26v-537q0 -15 -11 -24.5t-26 -9.5zM947 410q-15 0 -24.5 9.5t-9.5 24.5 +v537q0 15 9.5 26t24.5 11t25 -11t10 -26v-537q0 -15 -9.5 -24.5t-25.5 -9.5zM1349 410q-15 0 -23 10l-270 268q-8 11 -8 25q0 16 8 24l271 269q7 12 22 12q13 0 25 -12t12 -25q0 -14 -11 -25l-243 -243l243 -244q11 -10 11 -25q0 -13 -11.5 -23.5t-25.5 -10.5zM679 678 +q-15 0 -25 9.5t-10 25.5q0 15 10 25t25 10h133q16 0 26.5 -10t10.5 -25q0 -16 -10.5 -25.5t-26.5 -9.5h-133z" /> + <glyph glyph-name="i.loclTRK" horiz-adv-x="500" +d="M307 1205l47 208h212l-48 -208h-211zM43 0l229 999h185l-230 -999h-184z" /> + <glyph glyph-name="f_t" horiz-adv-x="1313" +d="M1062 838l-130 -557q-31 -135 82 -135q61 0 133 34l-29 -178q-57 -22 -154 -22q-140 0 -196 81t-24 218l129 559h-389l-193 -838h-197l193 838h-182l36 159h184l40 171q30 130 120 198t223 68q87 0 168 -43l-87 -145q-45 24 -93 24q-51 0 -89 -31.5t-52 -91.5l-34 -148 +h391l52 236l224 156l-90 -392h258l-37 -161h-257z" /> + <hkern u1=" " u2="&" k="82" /> + <hkern u1="!" u2="ß" k="14" /> + <hkern u1=""" u2="ï" k="-53" /> + <hkern u1=""" u2="î" k="-53" /> + <hkern u1=""" u2="ì" k="-53" /> + <hkern u1="#" u2="9" k="18" /> + <hkern u1="#" u2="8" k="18" /> + <hkern u1="#" u2="7" k="8" /> + <hkern u1="#" u2="5" k="27" /> + <hkern u1="#" u2="4" k="35" /> + <hkern u1="#" u2="3" k="27" /> + <hkern u1="#" u2="2" k="8" /> + <hkern u1="#" u2="1" k="8" /> + <hkern u1="$" u2="9" k="8" /> + <hkern u1="$" u2="8" k="8" /> + <hkern u1="$" u2="7" k="8" /> + <hkern u1="$" u2="5" k="8" /> + <hkern u1="$" u2="4" k="8" /> + <hkern u1="$" u2="3" k="8" /> + <hkern u1="%" u2="1" k="8" /> + <hkern u1="&" u2="v" k="20" /> + <hkern u1="&" u2="V" k="133" /> + <hkern u1="&" u2="5" k="8" /> + <hkern u1="&" u2="4" k="8" /> + <hkern u1="&" u2="3" k="8" /> + <hkern u1="&" u2="1" k="8" /> + <hkern u1="&" u2=" " k="82" /> + <hkern u1="'" u2="ï" k="-53" /> + <hkern u1="'" u2="î" k="-53" /> + <hkern u1="'" u2="ì" k="-53" /> + <hkern u1="(" u2="ƒ" k="-109" /> + <hkern u1="(" u2="ï" k="-20" /> + <hkern u1="(" u2="î" k="-14" /> + <hkern u1="(" u2="ì" k="-61" /> + <hkern u1="(" u2="ß" k="18" /> + <hkern u1="(" u2="x" k="6" /> + <hkern u1="(" u2="v" k="45" /> + <hkern u1="(" u2="g" k="16" /> + <hkern u1="(" u2="X" k="-27" /> + <hkern u1="(" u2="V" k="-35" /> + <hkern u1="(" u2="−" k="82" /> + <hkern u1="(" u2="7" k="-35" /> + <hkern u1="(" u2="5" k="23" /> + <hkern u1="(" u2="4" k="18" /> + <hkern u1="(" u2="2" k="-4" /> + <hkern u1="(" u2="1" k="4" /> + <hkern u1="(" u2="+" k="109" /> + <hkern u1=")" u2="Ł" k="-27" /> + <hkern u1="*" u2="ƒ" k="35" /> + <hkern u1="*" u2="Ł" k="6" /> + <hkern u1="*" u2="ï" k="-29" /> + <hkern u1="*" u2="î" k="-55" /> + <hkern u1="*" u2="ì" k="-14" /> + <hkern u1="*" u2="x" k="-6" /> + <hkern u1="*" u2="v" k="-35" /> + <hkern u1="*" u2="X" k="6" /> + <hkern u1="*" u2="V" k="-41" /> + <hkern u1="*" u2="7" k="-35" /> + <hkern u1="*" u2="4" k="61" /> + <hkern u1="+" u2="X" k="39" /> + <hkern u1="+" u2="V" k="88" /> + <hkern u1="+" u2="9" k="8" /> + <hkern u1="+" u2="7" k="8" /> + <hkern u1="+" u2="3" k="18" /> + <hkern u1="+" u2="2" k="8" /> + <hkern u1="+" u2="1" k="27" /> + <hkern u1="+" u2=")" k="109" /> + <hkern u1="," u2="j" k="-14" /> + <hkern u1="," u2="g" k="27" /> + <hkern u1="." u2="g" k="27" /> + <hkern u1="/" u2="ƒ" k="72" /> + <hkern u1="/" u2="ž" k="82" /> + <hkern u1="/" u2="š" k="94" /> + <hkern u1="/" u2="ł" k="14" /> + <hkern u1="/" u2="Ł" k="18" /> + <hkern u1="/" u2="ö" k="127" /> + <hkern u1="/" u2="ò" k="117" /> + <hkern u1="/" u2="ð" k="205" /> + <hkern u1="/" u2="ï" k="-76" /> + <hkern u1="/" u2="î" k="-61" /> + <hkern u1="/" u2="í" k="14" /> + <hkern u1="/" u2="ì" k="-143" /> + <hkern u1="/" u2="ë" k="197" /> + <hkern u1="/" u2="è" k="197" /> + <hkern u1="/" u2="å" k="205" /> + <hkern u1="/" u2="ä" k="162" /> + <hkern u1="/" u2="ã" k="176" /> + <hkern u1="/" u2="â" k="197" /> + <hkern u1="/" u2="à" k="170" /> + <hkern u1="/" u2="ß" k="43" /> + <hkern u1="/" u2="x" k="41" /> + <hkern u1="/" u2="v" k="27" /> + <hkern u1="/" u2="X" k="-20" /> + <hkern u1="/" u2="V" k="-41" /> + <hkern u1="/" u2="9" k="18" /> + <hkern u1="/" u2="8" k="27" /> + <hkern u1="/" u2="7" k="-27" /> + <hkern u1="/" u2="5" k="18" /> + <hkern u1="/" u2="4" k="70" /> + <hkern u1="/" u2="2" k="18" /> + <hkern u1="/" u2="/" k="188" /> + <hkern u1="1" u2="≥" k="-8" /> + <hkern u1="1" u2="≠" k="-18" /> + <hkern u1="1" u2="≈" k="-18" /> + <hkern u1="1" u2="∞" k="-18" /> + <hkern u1="1" u2="÷" k="8" /> + <hkern u1="1" u2="°" k="8" /> + <hkern u1="1" u2="|" k="-8" /> + <hkern u1="1" u2=">" k="-27" /> + <hkern u1="1" u2="<" k="8" /> + <hkern u1="1" u2="7" k="-4" /> + <hkern u1="1" u2="2" k="-4" /> + <hkern u1="1" u2="%" k="8" /> + <hkern u1="1" u2="#" k="18" /> + <hkern u1="2" u2="≥" k="-8" /> + <hkern u1="2" u2="≠" k="-8" /> + <hkern u1="2" u2="≈" k="-18" /> + <hkern u1="2" u2="×" k="-8" /> + <hkern u1="2" u2="±" k="-8" /> + <hkern u1="2" u2="°" k="-8" /> + <hkern u1="2" u2="_" k="-8" /> + <hkern u1="2" u2="\" k="8" /> + <hkern u1="2" u2=">" k="-27" /> + <hkern u1="2" u2="4" k="12" /> + <hkern u1="2" u2="1" k="-8" /> + <hkern u1="3" u2="≥" k="-18" /> + <hkern u1="3" u2="≈" k="-18" /> + <hkern u1="3" u2="−" k="-8" /> + <hkern u1="3" u2="‰" k="8" /> + <hkern u1="3" u2="×" k="-8" /> + <hkern u1="3" u2="±" k="-8" /> + <hkern u1="3" u2="°" k="-8" /> + <hkern u1="3" u2="¦" k="-18" /> + <hkern u1="3" u2="~" k="-8" /> + <hkern u1="3" u2="|" k="-18" /> + <hkern u1="3" u2="_" k="8" /> + <hkern u1="3" u2=">" k="-27" /> + <hkern u1="3" u2="7" k="-8" /> + <hkern u1="3" u2="1" k="4" /> + <hkern u1="3" u2="/" k="8" /> + <hkern u1="3" u2="*" k="-8" /> + <hkern u1="3" u2="%" k="8" /> + <hkern u1="3" u2="#" k="18" /> + <hkern u1="4" u2="º" k="35" /> + <hkern u1="4" u2="ª" k="35" /> + <hkern u1="4" u2="≥" k="-27" /> + <hkern u1="4" u2="≤" k="-27" /> + <hkern u1="4" u2="≠" k="-8" /> + <hkern u1="4" u2="≈" k="-27" /> + <hkern u1="4" u2="∞" k="-8" /> + <hkern u1="4" u2="™" k="61" /> + <hkern u1="4" u2="‰" k="27" /> + <hkern u1="4" u2="×" k="-8" /> + <hkern u1="4" u2="±" k="-8" /> + <hkern u1="4" u2="°" k="8" /> + <hkern u1="4" u2="¦" k="-8" /> + <hkern u1="4" u2="~" k="-18" /> + <hkern u1="4" u2=">" k="-27" /> + <hkern u1="4" u2="=" k="-18" /> + <hkern u1="4" u2="7" k="4" /> + <hkern u1="4" u2="*" k="18" /> + <hkern u1="4" u2="%" k="8" /> + <hkern u1="5" u2="≥" k="-18" /> + <hkern u1="5" u2="≤" k="-8" /> + <hkern u1="5" u2="≠" k="-8" /> + <hkern u1="5" u2="≈" k="-18" /> + <hkern u1="5" u2="−" k="-8" /> + <hkern u1="5" u2="‰" k="8" /> + <hkern u1="5" u2="°" k="-8" /> + <hkern u1="5" u2="~" k="-8" /> + <hkern u1="5" u2="_" k="8" /> + <hkern u1="5" u2="@" k="4" /> + <hkern u1="5" u2=">" k="-18" /> + <hkern u1="5" u2="=" k="-8" /> + <hkern u1="5" u2="<" k="-8" /> + <hkern u1="5" u2="7" k="-4" /> + <hkern u1="5" u2="/" k="18" /> + <hkern u1="5" u2="%" k="8" /> + <hkern u1="6" u2="≈" k="-8" /> + <hkern u1="6" u2="−" k="-8" /> + <hkern u1="6" u2="‰" k="18" /> + <hkern u1="6" u2="~" k="-8" /> + <hkern u1="6" u2="_" k="18" /> + <hkern u1="6" u2="\" k="8" /> + <hkern u1="6" u2="@" k="8" /> + <hkern u1="6" u2=">" k="-8" /> + <hkern u1="6" u2="=" k="-8" /> + <hkern u1="6" u2="7" k="-4" /> + <hkern u1="6" u2="+" k="-8" /> + <hkern u1="6" u2="#" k="18" /> + <hkern u1="7" u2="≥" k="-18" /> + <hkern u1="7" u2="≠" k="8" /> + <hkern u1="7" u2="∞" k="8" /> + <hkern u1="7" u2="−" k="27" /> + <hkern u1="7" u2="™" k="-18" /> + <hkern u1="7" u2="‰" k="-8" /> + <hkern u1="7" u2="‡" k="-43" /> + <hkern u1="7" u2="†" k="-43" /> + <hkern u1="7" u2="÷" k="18" /> + <hkern u1="7" u2="¿" k="53" /> + <hkern u1="7" u2="·" k="35" /> + <hkern u1="7" u2="±" k="8" /> + <hkern u1="7" u2="°" k="-27" /> + <hkern u1="7" u2="¦" k="-18" /> + <hkern u1="7" u2="~" k="35" /> + <hkern u1="7" u2="|" k="-18" /> + <hkern u1="7" u2="_" k="78" /> + <hkern u1="7" u2="\" k="-27" /> + <hkern u1="7" u2="@" k="4" /> + <hkern u1="7" u2="?" k="-18" /> + <hkern u1="7" u2=">" k="-27" /> + <hkern u1="7" u2="=" k="-4" /> + <hkern u1="7" u2="<" k="27" /> + <hkern u1="7" u2="9" k="-8" /> + <hkern u1="7" u2="7" k="-27" /> + <hkern u1="7" u2="5" k="12" /> + <hkern u1="7" u2="4" k="47" /> + <hkern u1="7" u2="1" k="-4" /> + <hkern u1="7" u2="/" k="53" /> + <hkern u1="7" u2="+" k="43" /> + <hkern u1="7" u2="*" k="-18" /> + <hkern u1="7" u2="#" k="35" /> + <hkern u1="8" u2="≥" k="-8" /> + <hkern u1="8" u2="≠" k="-8" /> + <hkern u1="8" u2="≈" k="-18" /> + <hkern u1="8" u2="£" k="18" /> + <hkern u1="8" u2="_" k="8" /> + <hkern u1="8" u2="\" k="35" /> + <hkern u1="8" u2=">" k="-8" /> + <hkern u1="8" u2="&" k="8" /> + <hkern u1="8" u2="%" k="4" /> + <hkern u1="8" u2="#" k="8" /> + <hkern u1=";" u2="j" k="-14" /> + <hkern u1="<" u2="Ł" k="-6" /> + <hkern u1="<" u2="v" k="-20" /> + <hkern u1="<" u2="X" k="-6" /> + <hkern u1="<" u2="V" k="-6" /> + <hkern u1="<" u2="9" k="-27" /> + <hkern u1="<" u2="8" k="-27" /> + <hkern u1="<" u2="7" k="-61" /> + <hkern u1="<" u2="5" k="-18" /> + <hkern u1="<" u2="3" k="-8" /> + <hkern u1="<" u2="2" k="-27" /> + <hkern u1="<" u2="1" k="-27" /> + <hkern u1="=" u2="v" k="-6" /> + <hkern u1="=" u2="X" k="27" /> + <hkern u1="=" u2="V" k="41" /> + <hkern u1="=" u2="7" k="8" /> + <hkern u1="=" u2="5" k="-8" /> + <hkern u1=">" u2="ł" k="-6" /> + <hkern u1=">" u2="x" k="6" /> + <hkern u1=">" u2="v" k="6" /> + <hkern u1=">" u2="X" k="76" /> + <hkern u1=">" u2="V" k="61" /> + <hkern u1=">" u2="3" k="18" /> + <hkern u1=">" u2="2" k="8" /> + <hkern u1=">" u2="1" k="8" /> + <hkern u1="?" u2="Ł" k="6" /> + <hkern u1="?" u2="v" k="-27" /> + <hkern u1="?" u2="X" k="6" /> + <hkern u1="?" u2="7" k="-27" /> + <hkern u1="?" u2="4" k="18" /> + <hkern u1="?" u2="1" k="-8" /> + <hkern u1="@" u2="ł" k="6" /> + <hkern u1="@" u2="Ł" k="-10" /> + <hkern u1="@" u2="î" k="-6" /> + <hkern u1="@" u2="ß" k="14" /> + <hkern u1="@" u2="x" k="-4" /> + <hkern u1="@" u2="v" k="-20" /> + <hkern u1="@" u2="X" k="59" /> + <hkern u1="@" u2="V" k="55" /> + <hkern u1="@" u2="7" k="-8" /> + <hkern u1="@" u2="4" k="8" /> + <hkern u1="@" u2="3" k="8" /> + <hkern u1="B" u2="™" k="27" /> + <hkern u1="B" u2="•" k="14" /> + <hkern u1="B" u2="‡" k="-4" /> + <hkern u1="B" u2="†" k="-4" /> + <hkern u1="B" u2="Ł" k="-6" /> + <hkern u1="B" u2="ï" k="-4" /> + <hkern u1="B" u2="î" k="-4" /> + <hkern u1="B" u2="ß" k="31" /> + <hkern u1="B" u2="¿" k="47" /> + <hkern u1="B" u2="º" k="14" /> + <hkern u1="B" u2="·" k="4" /> + <hkern u1="B" u2="ª" k="20" /> + <hkern u1="B" u2="¡" k="6" /> + <hkern u1="B" u2="~" k="-4" /> + <hkern u1="B" u2="{" k="14" /> + <hkern u1="B" u2="v" k="6" /> + <hkern u1="B" u2="_" k="14" /> + <hkern u1="B" u2="\" k="61" /> + <hkern u1="B" u2="X" k="4" /> + <hkern u1="B" u2="V" k="6" /> + <hkern u1="B" u2=">" k="-25" /> + <hkern u1="B" u2="=" k="-4" /> + <hkern u1="B" u2="/" k="27" /> + <hkern u1="B" u2="+" k="6" /> + <hkern u1="B" u2="&" k="29" /> + <hkern u1="C" u2="î" k="-25" /> + <hkern u1="D" u2="ï" k="-4" /> + <hkern u1="D" u2="î" k="-4" /> + <hkern u1="E" u2="ï" k="-10" /> + <hkern u1="E" u2="î" k="-14" /> + <hkern u1="E" u2="ì" k="-25" /> + <hkern u1="F" u2="™" k="-31" /> + <hkern u1="F" u2="•" k="27" /> + <hkern u1="F" u2="‡" k="-41" /> + <hkern u1="F" u2="†" k="-41" /> + <hkern u1="F" u2="ƒ" k="137" /> + <hkern u1="F" u2="÷" k="4" /> + <hkern u1="F" u2="ï" k="-59" /> + <hkern u1="F" u2="î" k="-55" /> + <hkern u1="F" u2="í" k="10" /> + <hkern u1="F" u2="ì" k="-76" /> + <hkern u1="F" u2="ã" k="37" /> + <hkern u1="F" u2="ß" k="45" /> + <hkern u1="F" u2="×" k="6" /> + <hkern u1="F" u2="¿" k="150" /> + <hkern u1="F" u2="·" k="6" /> + <hkern u1="F" u2="¶" k="-27" /> + <hkern u1="F" u2="ª" k="20" /> + <hkern u1="F" u2="§" k="-27" /> + <hkern u1="F" u2="¦" k="-27" /> + <hkern u1="F" u2="¡" k="14" /> + <hkern u1="F" u2="~" k="41" /> + <hkern u1="F" u2="|" k="-41" /> + <hkern u1="F" u2="{" k="27" /> + <hkern u1="F" u2="x" k="31" /> + <hkern u1="F" u2="v" k="37" /> + <hkern u1="F" u2="_" k="176" /> + <hkern u1="F" u2="^" k="-14" /> + <hkern u1="F" u2="\" k="-55" /> + <hkern u1="F" u2="X" k="-10" /> + <hkern u1="F" u2="V" k="-10" /> + <hkern u1="F" u2="@" k="20" /> + <hkern u1="F" u2="?" k="-20" /> + <hkern u1="F" u2=">" k="-27" /> + <hkern u1="F" u2="=" k="6" /> + <hkern u1="F" u2="<" k="6" /> + <hkern u1="F" u2="/" k="131" /> + <hkern u1="F" u2="+" k="35" /> + <hkern u1="F" u2="*" k="-20" /> + <hkern u1="F" u2=")" k="-41" /> + <hkern u1="F" u2="&" k="49" /> + <hkern u1="G" u2="î" k="-6" /> + <hkern u1="H" u2="ï" k="-14" /> + <hkern u1="H" u2="î" k="-6" /> + <hkern u1="H" u2="ì" k="-14" /> + <hkern u1="I" u2="ï" k="-14" /> + <hkern u1="I" u2="î" k="-6" /> + <hkern u1="I" u2="ì" k="-14" /> + <hkern u1="J" u2="ï" k="-6" /> + <hkern u1="J" u2="î" k="-14" /> + <hkern u1="J" u2="ì" k="-6" /> + <hkern u1="K" u2="ï" k="-43" /> + <hkern u1="K" u2="î" k="-18" /> + <hkern u1="K" u2="ì" k="-47" /> + <hkern u1="M" u2="ï" k="-14" /> + <hkern u1="M" u2="î" k="-6" /> + <hkern u1="M" u2="ì" k="-14" /> + <hkern u1="N" u2="ï" k="-14" /> + <hkern u1="N" u2="î" k="-6" /> + <hkern u1="N" u2="ì" k="-14" /> + <hkern u1="O" u2="ï" k="-4" /> + <hkern u1="O" u2="î" k="-4" /> + <hkern u1="P" u2="™" k="6" /> + <hkern u1="P" u2="•" k="35" /> + <hkern u1="P" u2="‡" k="-41" /> + <hkern u1="P" u2="†" k="-41" /> + <hkern u1="P" u2="ƒ" k="117" /> + <hkern u1="P" u2="š" k="27" /> + <hkern u1="P" u2="ł" k="6" /> + <hkern u1="P" u2="ü" k="41" /> + <hkern u1="P" u2="û" k="41" /> + <hkern u1="P" u2="ú" k="41" /> + <hkern u1="P" u2="ù" k="41" /> + <hkern u1="P" u2="÷" k="14" /> + <hkern u1="P" u2="ï" k="-59" /> + <hkern u1="P" u2="î" k="-72" /> + <hkern u1="P" u2="ì" k="-20" /> + <hkern u1="P" u2="ß" k="37" /> + <hkern u1="P" u2="×" k="-14" /> + <hkern u1="P" u2="¿" k="170" /> + <hkern u1="P" u2="·" k="35" /> + <hkern u1="P" u2="¶" k="-35" /> + <hkern u1="P" u2="§" k="-14" /> + <hkern u1="P" u2="~" k="41" /> + <hkern u1="P" u2="{" k="41" /> + <hkern u1="P" u2="v" k="-4" /> + <hkern u1="P" u2="_" k="178" /> + <hkern u1="P" u2="\" k="14" /> + <hkern u1="P" u2="X" k="20" /> + <hkern u1="P" u2="V" k="4" /> + <hkern u1="P" u2="@" k="6" /> + <hkern u1="P" u2="?" k="-41" /> + <hkern u1="P" u2=">" k="-41" /> + <hkern u1="P" u2="<" k="14" /> + <hkern u1="P" u2="/" k="150" /> + <hkern u1="P" u2="+" k="55" /> + <hkern u1="P" u2="*" k="-20" /> + <hkern u1="P" u2=")" k="6" /> + <hkern u1="P" u2="&" k="49" /> + <hkern u1="Q" u2="™" k="41" /> + <hkern u1="Q" u2="‡" k="-6" /> + <hkern u1="Q" u2="†" k="-6" /> + <hkern u1="Q" u2="ƒ" k="27" /> + <hkern u1="Q" u2="Ł" k="-6" /> + <hkern u1="Q" u2="÷" k="-6" /> + <hkern u1="Q" u2="î" k="-4" /> + <hkern u1="Q" u2="ß" k="25" /> + <hkern u1="Q" u2="×" k="-6" /> + <hkern u1="Q" u2="¡" k="6" /> + <hkern u1="Q" u2="~" k="-6" /> + <hkern u1="Q" u2="x" k="-6" /> + <hkern u1="Q" u2="^" k="-6" /> + <hkern u1="Q" u2="\" k="82" /> + <hkern u1="Q" u2="X" k="37" /> + <hkern u1="Q" u2="V" k="55" /> + <hkern u1="Q" u2=">" k="-35" /> + <hkern u1="Q" u2="=" k="-6" /> + <hkern u1="Q" u2="<" k="-20" /> + <hkern u1="Q" u2="+" k="-6" /> + <hkern u1="Q" u2=")" k="35" /> + <hkern u1="Q" u2="&" k="14" /> + <hkern u1="Q" u2="!" k="6" /> + <hkern u1="R" u2="ï" k="-10" /> + <hkern u1="R" u2="î" k="-27" /> + <hkern u1="S" u2="ï" k="-4" /> + <hkern u1="S" u2="î" k="-4" /> + <hkern u1="T" u2="ž" k="55" /> + <hkern u1="T" u2="š" k="27" /> + <hkern u1="T" u2="ÿ" k="102" /> + <hkern u1="T" u2="ü" k="125" /> + <hkern u1="T" u2="û" k="133" /> + <hkern u1="T" u2="ï" k="-82" /> + <hkern u1="T" u2="î" k="-49" /> + <hkern u1="T" u2="í" k="78" /> + <hkern u1="T" u2="ì" k="-82" /> + <hkern u1="T" u2="å" k="127" /> + <hkern u1="T" u2="ä" k="82" /> + <hkern u1="T" u2="ã" k="92" /> + <hkern u1="T" u2="â" k="106" /> + <hkern u1="T" u2="à" k="86" /> + <hkern u1="U" u2="ï" k="-6" /> + <hkern u1="U" u2="î" k="-14" /> + <hkern u1="U" u2="ì" k="-6" /> + <hkern u1="V" u2="™" k="-41" /> + <hkern u1="V" u2="•" k="88" /> + <hkern u1="V" u2="‡" k="-20" /> + <hkern u1="V" u2="†" k="-35" /> + <hkern u1="V" u2="ƒ" k="137" /> + <hkern u1="V" u2="ł" k="14" /> + <hkern u1="V" u2="÷" k="68" /> + <hkern u1="V" u2="ï" k="-66" /> + <hkern u1="V" u2="î" k="-27" /> + <hkern u1="V" u2="í" k="14" /> + <hkern u1="V" u2="ì" k="-68" /> + <hkern u1="V" u2="è" k="68" /> + <hkern u1="V" u2="ã" k="53" /> + <hkern u1="V" u2="ß" k="51" /> + <hkern u1="V" u2="×" k="20" /> + <hkern u1="V" u2="¿" k="152" /> + <hkern u1="V" u2="º" k="4" /> + <hkern u1="V" u2="·" k="68" /> + <hkern u1="V" u2="ª" k="14" /> + <hkern u1="V" u2="§" k="6" /> + <hkern u1="V" u2="¦" k="-35" /> + <hkern u1="V" u2="¡" k="61" /> + <hkern u1="V" u2="~" k="88" /> + <hkern u1="V" u2="|" k="-35" /> + <hkern u1="V" u2="{" k="61" /> + <hkern u1="V" u2="x" k="16" /> + <hkern u1="V" u2="v" k="29" /> + <hkern u1="V" u2="_" k="123" /> + <hkern u1="V" u2="^" k="6" /> + <hkern u1="V" u2="\" k="-41" /> + <hkern u1="V" u2="X" k="-20" /> + <hkern u1="V" u2="V" k="-20" /> + <hkern u1="V" u2="@" k="55" /> + <hkern u1="V" u2="?" k="-14" /> + <hkern u1="V" u2="=" k="41" /> + <hkern u1="V" u2="<" k="61" /> + <hkern u1="V" u2="/" k="152" /> + <hkern u1="V" u2="+" k="88" /> + <hkern u1="V" u2="*" k="-41" /> + <hkern u1="V" u2=")" k="-35" /> + <hkern u1="V" u2="&" k="82" /> + <hkern u1="W" u2="ï" k="-76" /> + <hkern u1="W" u2="î" k="-35" /> + <hkern u1="W" u2="í" k="10" /> + <hkern u1="W" u2="ì" k="-61" /> + <hkern u1="X" u2="•" k="76" /> + <hkern u1="X" u2="ł" k="6" /> + <hkern u1="X" u2="÷" k="35" /> + <hkern u1="X" u2="ï" k="-31" /> + <hkern u1="X" u2="î" k="-20" /> + <hkern u1="X" u2="ì" k="-68" /> + <hkern u1="X" u2="ß" k="14" /> + <hkern u1="X" u2="×" k="27" /> + <hkern u1="X" u2="º" k="20" /> + <hkern u1="X" u2="·" k="68" /> + <hkern u1="X" u2="¶" k="6" /> + <hkern u1="X" u2="ª" k="20" /> + <hkern u1="X" u2="¦" k="-20" /> + <hkern u1="X" u2="¡" k="6" /> + <hkern u1="X" u2="~" k="47" /> + <hkern u1="X" u2="|" k="-35" /> + <hkern u1="X" u2="{" k="61" /> + <hkern u1="X" u2="x" k="-31" /> + <hkern u1="X" u2="v" k="51" /> + <hkern u1="X" u2="_" k="-35" /> + <hkern u1="X" u2="^" k="14" /> + <hkern u1="X" u2="\" k="-20" /> + <hkern u1="X" u2="V" k="-20" /> + <hkern u1="X" u2="@" k="57" /> + <hkern u1="X" u2="?" k="6" /> + <hkern u1="X" u2="=" k="27" /> + <hkern u1="X" u2="<" k="55" /> + <hkern u1="X" u2="/" k="-20" /> + <hkern u1="X" u2="+" k="39" /> + <hkern u1="X" u2="*" k="6" /> + <hkern u1="X" u2=")" k="-27" /> + <hkern u1="X" u2="&" k="41" /> + <hkern u1="Y" u2="š" k="86" /> + <hkern u1="Y" u2="ö" k="82" /> + <hkern u1="Y" u2="õ" k="188" /> + <hkern u1="Y" u2="ò" k="160" /> + <hkern u1="Y" u2="ð" k="174" /> + <hkern u1="Y" u2="ï" k="-41" /> + <hkern u1="Y" u2="î" k="-4" /> + <hkern u1="Y" u2="í" k="76" /> + <hkern u1="Y" u2="ì" k="-82" /> + <hkern u1="Y" u2="ë" k="98" /> + <hkern u1="Y" u2="è" k="98" /> + <hkern u1="Y" u2="ä" k="70" /> + <hkern u1="Y" u2="â" k="80" /> + <hkern u1="Y" u2="à" k="88" /> + <hkern u1="Z" u2="ï" k="-29" /> + <hkern u1="Z" u2="î" k="-29" /> + <hkern u1="Z" u2="ì" k="-41" /> + <hkern u1="[" u2="ï" k="-35" /> + <hkern u1="[" u2="î" k="-14" /> + <hkern u1="[" u2="ì" k="-96" /> + <hkern u1="\" u2="Ł" k="6" /> + <hkern u1="\" u2="x" k="-20" /> + <hkern u1="\" u2="v" k="41" /> + <hkern u1="\" u2="X" k="-20" /> + <hkern u1="\" u2="V" k="152" /> + <hkern u1="\" u2="8" k="18" /> + <hkern u1="\" u2="4" k="8" /> + <hkern u1="\" u2="3" k="8" /> + <hkern u1="\" u2="2" k="-8" /> + <hkern u1="^" u2="v" k="-14" /> + <hkern u1="^" u2="X" k="14" /> + <hkern u1="^" u2="V" k="6" /> + <hkern u1="_" u2="ƒ" k="-129" /> + <hkern u1="_" u2="ł" k="14" /> + <hkern u1="_" u2="x" k="-55" /> + <hkern u1="_" u2="v" k="82" /> + <hkern u1="_" u2="X" k="-35" /> + <hkern u1="_" u2="V" k="123" /> + <hkern u1="_" u2="8" k="8" /> + <hkern u1="_" u2="4" k="43" /> + <hkern u1="f" u2="ï" k="-66" /> + <hkern u1="f" u2="î" k="-61" /> + <hkern u1="f" u2="ì" k="-82" /> + <hkern u1="f" u2="j" k="-18" /> + <hkern u1="f" u2="i" k="-6" /> + <hkern u1="i" u2="ï" k="-6" /> + <hkern u1="i" u2="î" k="-6" /> + <hkern u1="i" u2="ì" k="-6" /> + <hkern u1="l" u2="ï" k="-4" /> + <hkern u1="l" u2="î" k="-4" /> + <hkern u1="q" u2="™" k="35" /> + <hkern u1="v" u2="™" k="6" /> + <hkern u1="v" u2="‡" k="-61" /> + <hkern u1="v" u2="†" k="-61" /> + <hkern u1="v" u2="ƒ" k="14" /> + <hkern u1="v" u2="ł" k="-6" /> + <hkern u1="v" u2="÷" k="6" /> + <hkern u1="v" u2="×" k="-14" /> + <hkern u1="v" u2="¿" k="55" /> + <hkern u1="v" u2="º" k="-10" /> + <hkern u1="v" u2="¶" k="-47" /> + <hkern u1="v" u2="§" k="-14" /> + <hkern u1="v" u2="¦" k="-41" /> + <hkern u1="v" u2="¡" k="6" /> + <hkern u1="v" u2="|" k="-14" /> + <hkern u1="v" u2="x" k="-14" /> + <hkern u1="v" u2="v" k="-6" /> + <hkern u1="v" u2="_" k="82" /> + <hkern u1="v" u2="^" k="-14" /> + <hkern u1="v" u2="\" k="41" /> + <hkern u1="v" u2="@" k="-14" /> + <hkern u1="v" u2="?" k="-41" /> + <hkern u1="v" u2=">" k="-20" /> + <hkern u1="v" u2="=" k="-6" /> + <hkern u1="v" u2="<" k="6" /> + <hkern u1="v" u2="/" k="55" /> + <hkern u1="v" u2="*" k="-35" /> + <hkern u1="v" u2=")" k="45" /> + <hkern u1="v" u2="&" k="20" /> + <hkern u1="x" u2="™" k="20" /> + <hkern u1="x" u2="•" k="6" /> + <hkern u1="x" u2="‡" k="-27" /> + <hkern u1="x" u2="†" k="-27" /> + <hkern u1="x" u2="÷" k="6" /> + <hkern u1="x" u2="¿" k="-6" /> + <hkern u1="x" u2="·" k="20" /> + <hkern u1="x" u2="¶" k="-6" /> + <hkern u1="x" u2="ª" k="6" /> + <hkern u1="x" u2="¦" k="-6" /> + <hkern u1="x" u2="¡" k="-14" /> + <hkern u1="x" u2="~" k="6" /> + <hkern u1="x" u2="|" k="-35" /> + <hkern u1="x" u2="x" k="-6" /> + <hkern u1="x" u2="v" k="-14" /> + <hkern u1="x" u2="_" k="-55" /> + <hkern u1="x" u2="\" k="70" /> + <hkern u1="x" u2="@" k="-6" /> + <hkern u1="x" u2="?" k="-14" /> + <hkern u1="x" u2="<" k="6" /> + <hkern u1="x" u2="/" k="-41" /> + <hkern u1="x" u2="*" k="-6" /> + <hkern u1="x" u2=")" k="6" /> + <hkern u1="x" u2="&" k="27" /> + <hkern u1="{" u2="ï" k="-35" /> + <hkern u1="{" u2="î" k="-14" /> + <hkern u1="{" u2="ì" k="-96" /> + <hkern u1="{" u2="æ" k="10" /> + <hkern u1="{" u2="å" k="10" /> + <hkern u1="{" u2="ä" k="10" /> + <hkern u1="{" u2="ã" k="10" /> + <hkern u1="{" u2="â" k="10" /> + <hkern u1="{" u2="á" k="10" /> + <hkern u1="{" u2="à" k="10" /> + <hkern u1="{" u2="a" k="10" /> + <hkern u1="|" u2="x" k="-35" /> + <hkern u1="|" u2="v" k="-14" /> + <hkern u1="|" u2="X" k="-35" /> + <hkern u1="|" u2="V" k="-35" /> + <hkern u1="|" u2="7" k="-18" /> + <hkern u1="}" u2="Ł" k="-14" /> + <hkern u1="}" u2="X" k="14" /> + <hkern u1="}" u2="V" k="14" /> + <hkern u1="~" u2="x" k="6" /> + <hkern u1="~" u2="X" k="47" /> + <hkern u1="~" u2="V" k="88" /> + <hkern u1="~" u2="7" k="18" /> + <hkern u1="~" u2="2" k="8" /> + <hkern u1="~" u2="1" k="8" /> + <hkern u1="¡" u2="ß" k="6" /> + <hkern u1="¡" u2="x" k="-14" /> + <hkern u1="¡" u2="v" k="6" /> + <hkern u1="¡" u2="X" k="6" /> + <hkern u1="¡" u2="V" k="61" /> + <hkern u1="¡" u2="7" k="-8" /> + <hkern u1="¢" u2="3" k="8" /> + <hkern u1="¥" u2="7" k="-27" /> + <hkern u1="¥" u2="4" k="8" /> + <hkern u1="¦" u2="x" k="-6" /> + <hkern u1="¦" u2="v" k="-41" /> + <hkern u1="¦" u2="X" k="-20" /> + <hkern u1="¦" u2="V" k="-35" /> + <hkern u1="¦" u2="8" k="8" /> + <hkern u1="¦" u2="7" k="-8" /> + <hkern u1="§" u2="V" k="6" /> + <hkern u1="¬" u2="3" k="8" /> + <hkern u1="°" u2="7" k="-35" /> + <hkern u1="°" u2="4" k="35" /> + <hkern u1="°" u2="1" k="-27" /> + <hkern u1="±" u2="7" k="8" /> + <hkern u1="±" u2="3" k="8" /> + <hkern u1="·" u2="x" k="20" /> + <hkern u1="·" u2="X" k="68" /> + <hkern u1="·" u2="V" k="68" /> + <hkern u1="·" u2="7" k="18" /> + <hkern u1="·" u2="1" k="27" /> + <hkern u1="¿" u2="ƒ" k="-43" /> + <hkern u1="¿" u2="ł" k="14" /> + <hkern u1="¿" u2="Ł" k="6" /> + <hkern u1="¿" u2="ß" k="20" /> + <hkern u1="¿" u2="v" k="72" /> + <hkern u1="¿" u2="V" k="162" /> + <hkern u1="¿" u2="9" k="20" /> + <hkern u1="¿" u2="4" k="18" /> + <hkern u1="¿" u2="3" k="8" /> + <hkern u1="¿" u2="1" k="8" /> + <hkern u1="Æ" u2="ï" k="-10" /> + <hkern u1="Æ" u2="î" k="-14" /> + <hkern u1="Æ" u2="ì" k="-25" /> + <hkern u1="Ç" u2="î" k="-25" /> + <hkern u1="È" u2="ï" k="-10" /> + <hkern u1="È" u2="î" k="-14" /> + <hkern u1="È" u2="ì" k="-25" /> + <hkern u1="É" u2="ï" k="-10" /> + <hkern u1="É" u2="î" k="-14" /> + <hkern u1="É" u2="ì" k="-25" /> + <hkern u1="Ê" u2="ï" k="-10" /> + <hkern u1="Ê" u2="î" k="-14" /> + <hkern u1="Ê" u2="ì" k="-25" /> + <hkern u1="Ë" u2="ï" k="-10" /> + <hkern u1="Ë" u2="î" k="-14" /> + <hkern u1="Ë" u2="ì" k="-25" /> + <hkern u1="Ì" u2="ï" k="-14" /> + <hkern u1="Ì" u2="î" k="-6" /> + <hkern u1="Ì" u2="ì" k="-14" /> + <hkern u1="Í" u2="ï" k="-14" /> + <hkern u1="Í" u2="î" k="-6" /> + <hkern u1="Í" u2="ì" k="-14" /> + <hkern u1="Í" u2="Ï" k="-68" /> + <hkern u1="Í" u2="Ì" k="-121" /> + <hkern u1="Î" u2="ï" k="-14" /> + <hkern u1="Î" u2="î" k="-6" /> + <hkern u1="Î" u2="ì" k="-14" /> + <hkern u1="Î" u2="Ï" k="-53" /> + <hkern u1="Î" u2="Î" k="-80" /> + <hkern u1="Î" u2="Ì" k="-41" /> + <hkern u1="Ï" u2="ï" k="-14" /> + <hkern u1="Ï" u2="î" k="-6" /> + <hkern u1="Ï" u2="ì" k="-14" /> + <hkern u1="Ï" u2="Ï" k="-27" /> + <hkern u1="Ï" u2="Î" k="-47" /> + <hkern u1="Ï" u2="Ì" k="-53" /> + <hkern u1="Ð" u2="ï" k="-4" /> + <hkern u1="Ð" u2="î" k="-4" /> + <hkern u1="Ñ" u2="ï" k="-14" /> + <hkern u1="Ñ" u2="î" k="-6" /> + <hkern u1="Ñ" u2="ì" k="-14" /> + <hkern u1="Ò" u2="ï" k="-4" /> + <hkern u1="Ò" u2="î" k="-4" /> + <hkern u1="Ó" u2="ï" k="-4" /> + <hkern u1="Ó" u2="î" k="-4" /> + <hkern u1="Ô" u2="ï" k="-4" /> + <hkern u1="Ô" u2="î" k="-4" /> + <hkern u1="Õ" u2="ï" k="-4" /> + <hkern u1="Õ" u2="î" k="-4" /> + <hkern u1="Ö" u2="ï" k="-4" /> + <hkern u1="Ö" u2="î" k="-4" /> + <hkern u1="×" u2="v" k="-14" /> + <hkern u1="×" u2="X" k="27" /> + <hkern u1="×" u2="V" k="20" /> + <hkern u1="Ø" u2="ï" k="-6" /> + <hkern u1="Ø" u2="î" k="-6" /> + <hkern u1="Ù" u2="ï" k="-6" /> + <hkern u1="Ù" u2="î" k="-14" /> + <hkern u1="Ù" u2="ì" k="-6" /> + <hkern u1="Ú" u2="ï" k="-6" /> + <hkern u1="Ú" u2="î" k="-14" /> + <hkern u1="Ú" u2="ì" k="-6" /> + <hkern u1="Û" u2="ï" k="-6" /> + <hkern u1="Û" u2="î" k="-14" /> + <hkern u1="Û" u2="ì" k="-6" /> + <hkern u1="Ü" u2="ï" k="-6" /> + <hkern u1="Ü" u2="î" k="-14" /> + <hkern u1="Ü" u2="ì" k="-6" /> + <hkern u1="Ý" u2="š" k="86" /> + <hkern u1="Ý" u2="ö" k="82" /> + <hkern u1="Ý" u2="õ" k="188" /> + <hkern u1="Ý" u2="ò" k="160" /> + <hkern u1="Ý" u2="ð" k="174" /> + <hkern u1="Ý" u2="ï" k="-41" /> + <hkern u1="Ý" u2="î" k="-4" /> + <hkern u1="Ý" u2="í" k="47" /> + <hkern u1="Ý" u2="ì" k="-82" /> + <hkern u1="Ý" u2="ë" k="98" /> + <hkern u1="Ý" u2="è" k="98" /> + <hkern u1="Ý" u2="ä" k="70" /> + <hkern u1="Ý" u2="â" k="80" /> + <hkern u1="Ý" u2="à" k="88" /> + <hkern u1="Þ" u2="™" k="68" /> + <hkern u1="Þ" u2="•" k="-6" /> + <hkern u1="Þ" u2="‡" k="-20" /> + <hkern u1="Þ" u2="†" k="-20" /> + <hkern u1="Þ" u2="ƒ" k="88" /> + <hkern u1="Þ" u2="ł" k="-35" /> + <hkern u1="Þ" u2="Ł" k="-20" /> + <hkern u1="Þ" u2="÷" k="-6" /> + <hkern u1="Þ" u2="ß" k="27" /> + <hkern u1="Þ" u2="×" k="-6" /> + <hkern u1="Þ" u2="¿" k="70" /> + <hkern u1="Þ" u2="·" k="-14" /> + <hkern u1="Þ" u2="~" k="-20" /> + <hkern u1="Þ" u2="x" k="-14" /> + <hkern u1="Þ" u2="v" k="-14" /> + <hkern u1="Þ" u2="_" k="76" /> + <hkern u1="Þ" u2="^" k="-6" /> + <hkern u1="Þ" u2="\" k="96" /> + <hkern u1="Þ" u2="X" k="55" /> + <hkern u1="Þ" u2="V" k="35" /> + <hkern u1="Þ" u2="@" k="-6" /> + <hkern u1="Þ" u2="?" k="-14" /> + <hkern u1="Þ" u2=">" k="-20" /> + <hkern u1="Þ" u2="=" k="-6" /> + <hkern u1="Þ" u2="<" k="-6" /> + <hkern u1="Þ" u2="/" k="102" /> + <hkern u1="Þ" u2="+" k="-6" /> + <hkern u1="Þ" u2=")" k="27" /> + <hkern u1="Þ" u2="&" k="27" /> + <hkern u1="ß" u2="™" k="20" /> + <hkern u1="ß" u2="‡" k="-6" /> + <hkern u1="ß" u2="ƒ" k="6" /> + <hkern u1="ß" u2="ł" k="-10" /> + <hkern u1="ß" u2="÷" k="-6" /> + <hkern u1="ß" u2="ï" k="-4" /> + <hkern u1="ß" u2="î" k="-4" /> + <hkern u1="ß" u2="ß" k="20" /> + <hkern u1="ß" u2="º" k="20" /> + <hkern u1="ß" u2="ª" k="41" /> + <hkern u1="ß" u2="v" k="6" /> + <hkern u1="ß" u2="_" k="-14" /> + <hkern u1="ß" u2="\" k="41" /> + <hkern u1="ß" u2=">" k="-35" /> + <hkern u1="ß" u2="=" k="-6" /> + <hkern u1="ß" u2="/" k="-14" /> + <hkern u1="ß" u2=")" k="-27" /> + <hkern u1="ß" u2="&" k="6" /> + <hkern u1="é" u2="\" k="137" /> + <hkern u1="ë" u2="\" k="137" /> + <hkern u1="ì" u2="™" k="20" /> + <hkern u1="ì" u2="\" k="47" /> + <hkern u1="í" u2="™" k="-29" /> + <hkern u1="í" u2="”" k="-109" /> + <hkern u1="í" u2="“" k="-55" /> + <hkern u1="í" u2="’" k="-109" /> + <hkern u1="í" u2="‘" k="-55" /> + <hkern u1="í" u2="š" k="-4" /> + <hkern u1="í" u2="ï" k="-106" /> + <hkern u1="í" u2="î" k="-82" /> + <hkern u1="í" u2="ì" k="-143" /> + <hkern u1="í" u2="}" k="-96" /> + <hkern u1="í" u2="|" k="-20" /> + <hkern u1="í" u2="i" k="-6" /> + <hkern u1="í" u2="]" k="-96" /> + <hkern u1="í" u2="\" k="-129" /> + <hkern u1="í" u2="?" k="-33" /> + <hkern u1="í" u2="*" k="-6" /> + <hkern u1="í" u2=")" k="-68" /> + <hkern u1="í" u2="'" k="-53" /> + <hkern u1="í" u2=""" k="-53" /> + <hkern u1="í" u2="!" k="-6" /> + <hkern u1="î" u2="™" k="-14" /> + <hkern u1="î" u2="†" k="-43" /> + <hkern u1="î" u2="”" k="-68" /> + <hkern u1="î" u2="“" k="-82" /> + <hkern u1="î" u2="’" k="-68" /> + <hkern u1="î" u2="‘" k="-82" /> + <hkern u1="î" u2="š" k="-4" /> + <hkern u1="î" u2="ï" k="-121" /> + <hkern u1="î" u2="î" k="-109" /> + <hkern u1="î" u2="ì" k="-20" /> + <hkern u1="î" u2="}" k="-14" /> + <hkern u1="î" u2="|" k="-14" /> + <hkern u1="î" u2="j" k="-6" /> + <hkern u1="î" u2="i" k="-10" /> + <hkern u1="î" u2="]" k="-14" /> + <hkern u1="î" u2="\" k="-47" /> + <hkern u1="î" u2="?" k="-88" /> + <hkern u1="î" u2="*" k="-68" /> + <hkern u1="î" u2=")" k="-14" /> + <hkern u1="î" u2="'" k="-53" /> + <hkern u1="î" u2="&" k="6" /> + <hkern u1="î" u2=""" k="-53" /> + <hkern u1="î" u2="!" k="-6" /> + <hkern u1="ï" u2="™" k="-29" /> + <hkern u1="ï" u2="†" k="-29" /> + <hkern u1="ï" u2="”" k="-76" /> + <hkern u1="ï" u2="“" k="-70" /> + <hkern u1="ï" u2="’" k="-76" /> + <hkern u1="ï" u2="‘" k="-70" /> + <hkern u1="ï" u2="š" k="-4" /> + <hkern u1="ï" u2="ï" k="-111" /> + <hkern u1="ï" u2="î" k="-102" /> + <hkern u1="ï" u2="ì" k="-104" /> + <hkern u1="ï" u2="ã" k="-6" /> + <hkern u1="ï" u2="}" k="-35" /> + <hkern u1="ï" u2="|" k="-14" /> + <hkern u1="ï" u2="j" k="-14" /> + <hkern u1="ï" u2="i" k="-14" /> + <hkern u1="ï" u2="]" k="-35" /> + <hkern u1="ï" u2="\" k="-49" /> + <hkern u1="ï" u2="?" k="-76" /> + <hkern u1="ï" u2="*" k="-61" /> + <hkern u1="ï" u2=")" k="-20" /> + <hkern u1="ï" u2="'" k="-53" /> + <hkern u1="ï" u2="&" k="6" /> + <hkern u1="ï" u2=""" k="-53" /> + <hkern u1="ï" u2="!" k="-6" /> + <hkern u1="ð" u2="”" k="33" /> + <hkern u1="ð" u2="“" k="33" /> + <hkern u1="ð" u2="’" k="33" /> + <hkern u1="ð" u2="‘" k="33" /> + <hkern u1="ð" u2="\" k="96" /> + <hkern u1="ó" u2="\" k="190" /> + <hkern u1="õ" u2="\" k="190" /> + <hkern u1="ö" u2="\" k="195" /> + <hkern u1="÷" u2="x" k="6" /> + <hkern u1="÷" u2="v" k="6" /> + <hkern u1="÷" u2="X" k="35" /> + <hkern u1="÷" u2="V" k="68" /> + <hkern u1="÷" u2="4" k="8" /> + <hkern u1="÷" u2="3" k="18" /> + <hkern u1="÷" u2="1" k="8" /> + <hkern u1="ł" u2="‡" k="-47" /> + <hkern u1="ł" u2="†" k="-20" /> + <hkern u1="ł" u2="ƒ" k="6" /> + <hkern u1="ł" u2="ł" k="-14" /> + <hkern u1="ł" u2="¿" k="6" /> + <hkern u1="ł" u2="º" k="-6" /> + <hkern u1="ł" u2="·" k="-14" /> + <hkern u1="ł" u2="¶" k="-27" /> + <hkern u1="ł" u2="x" k="-45" /> + <hkern u1="ł" u2="v" k="-47" /> + <hkern u1="ł" u2="@" k="-41" /> + <hkern u1="ł" u2="?" k="-6" /> + <hkern u1="ł" u2=">" k="-29" /> + <hkern u1="ł" u2="=" k="-14" /> + <hkern u1="ł" u2="/" k="-14" /> + <hkern u1="ł" u2="*" k="-14" /> + <hkern u1="ł" u2="&" k="14" /> + <hkern u1="Œ" u2="ï" k="-10" /> + <hkern u1="Œ" u2="î" k="-14" /> + <hkern u1="Œ" u2="ì" k="-25" /> + <hkern u1="Š" u2="ï" k="-4" /> + <hkern u1="Š" u2="î" k="-4" /> + <hkern u1="š" u2="\" k="102" /> + <hkern u1="Ÿ" u2="š" k="86" /> + <hkern u1="Ÿ" u2="ö" k="82" /> + <hkern u1="Ÿ" u2="õ" k="188" /> + <hkern u1="Ÿ" u2="ò" k="160" /> + <hkern u1="Ÿ" u2="ð" k="174" /> + <hkern u1="Ÿ" u2="ï" k="-41" /> + <hkern u1="Ÿ" u2="î" k="-4" /> + <hkern u1="Ÿ" u2="í" k="47" /> + <hkern u1="Ÿ" u2="ì" k="-82" /> + <hkern u1="Ÿ" u2="ë" k="98" /> + <hkern u1="Ÿ" u2="è" k="98" /> + <hkern u1="Ÿ" u2="ä" k="70" /> + <hkern u1="Ÿ" u2="â" k="80" /> + <hkern u1="Ÿ" u2="à" k="88" /> + <hkern u1="Ž" u2="ï" k="-29" /> + <hkern u1="Ž" u2="î" k="-29" /> + <hkern u1="Ž" u2="ì" k="-41" /> + <hkern u1="ž" u2="\" k="61" /> + <hkern u1="ƒ" u2="™" k="-14" /> + <hkern u1="ƒ" u2="‡" k="-27" /> + <hkern u1="ƒ" u2="†" k="-27" /> + <hkern u1="ƒ" u2="ƒ" k="170" /> + <hkern u1="ƒ" u2="÷" k="55" /> + <hkern u1="ƒ" u2="ï" k="-49" /> + <hkern u1="ƒ" u2="î" k="-35" /> + <hkern u1="ƒ" u2="ì" k="-49" /> + <hkern u1="ƒ" u2="×" k="-6" /> + <hkern u1="ƒ" u2="º" k="-6" /> + <hkern u1="ƒ" u2="ª" k="-6" /> + <hkern u1="ƒ" u2="¦" k="-14" /> + <hkern u1="ƒ" u2="~" k="47" /> + <hkern u1="ƒ" u2="x" k="14" /> + <hkern u1="ƒ" u2="v" k="14" /> + <hkern u1="ƒ" u2="_" k="94" /> + <hkern u1="ƒ" u2="\" k="-82" /> + <hkern u1="ƒ" u2="@" k="27" /> + <hkern u1="ƒ" u2="?" k="-14" /> + <hkern u1="ƒ" u2=">" k="-82" /> + <hkern u1="ƒ" u2="=" k="20" /> + <hkern u1="ƒ" u2="<" k="55" /> + <hkern u1="ƒ" u2="/" k="111" /> + <hkern u1="ƒ" u2="+" k="55" /> + <hkern u1="ƒ" u2="*" k="-61" /> + <hkern u1="ƒ" u2=")" k="-20" /> + <hkern u1="ƒ" u2="&" k="47" /> + <hkern u1="‘" u2="ð" k="51" /> + <hkern u1="‘" u2="ï" k="-76" /> + <hkern u1="‘" u2="î" k="-68" /> + <hkern u1="‘" u2="ì" k="-82" /> + <hkern u1="’" u2="ð" k="92" /> + <hkern u1="’" u2="ï" k="-41" /> + <hkern u1="’" u2="î" k="-53" /> + <hkern u1="’" u2="ì" k="-41" /> + <hkern u1="‚" u2="g" k="-20" /> + <hkern u1="“" u2="ð" k="51" /> + <hkern u1="“" u2="ï" k="-76" /> + <hkern u1="“" u2="î" k="-68" /> + <hkern u1="“" u2="ì" k="-82" /> + <hkern u1="”" u2="ð" k="92" /> + <hkern u1="”" u2="ï" k="-41" /> + <hkern u1="”" u2="î" k="-53" /> + <hkern u1="”" u2="ì" k="-41" /> + <hkern u1="„" u2="g" k="-20" /> + <hkern u1="†" u2="x" k="-27" /> + <hkern u1="†" u2="v" k="-61" /> + <hkern u1="†" u2="V" k="-35" /> + <hkern u1="‡" u2="ł" k="-6" /> + <hkern u1="‡" u2="Ł" k="-14" /> + <hkern u1="‡" u2="x" k="-27" /> + <hkern u1="‡" u2="v" k="-61" /> + <hkern u1="‡" u2="V" k="-20" /> + <hkern u1="•" u2="x" k="6" /> + <hkern u1="•" u2="X" k="76" /> + <hkern u1="•" u2="V" k="88" /> + <hkern u1="…" u2="g" k="27" /> + <hkern u1="−" u2="3" k="18" /> + <hkern u1="−" u2="2" k="8" /> + <hkern u1="−" u2=")" k="82" /> + <hkern u1="√" u2="9" k="35" /> + <hkern u1="√" u2="8" k="35" /> + <hkern u1="√" u2="5" k="43" /> + <hkern u1="√" u2="4" k="88" /> + <hkern u1="√" u2="3" k="35" /> + <hkern u1="√" u2="2" k="43" /> + <hkern u1="√" u2="1" k="27" /> + <hkern u1="∞" u2="7" k="8" /> + <hkern u1="∫" u2="9" k="-18" /> + <hkern u1="∫" u2="8" k="-8" /> + <hkern u1="∫" u2="7" k="-78" /> + <hkern u1="∫" u2="5" k="-18" /> + <hkern u1="∫" u2="3" k="-35" /> + <hkern u1="∫" u2="2" k="-35" /> + <hkern u1="∫" u2="1" k="-35" /> + <hkern u1="≈" u2="8" k="-18" /> + <hkern u1="≈" u2="7" k="18" /> + <hkern u1="≈" u2="4" k="-8" /> + <hkern u1="≠" u2="8" k="-8" /> + <hkern u1="≥" u2="1" k="8" /> + <hkern g1="approxequal" + g2="zero,six" + k="-18" /> + <hkern g1="asciitilde" + g2="zero,six" + k="-8" /> + <hkern g1="cent" + g2="zero,six" + k="8" /> + <hkern g1="copyright,registered" + g2="five" + k="8" /> + <hkern g1="copyright,registered" + g2="four" + k="8" /> + <hkern g1="copyright,registered" + g2="one" + k="8" /> + <hkern g1="copyright,registered" + g2="three" + k="27" /> + <hkern g1="dollar" + g2="zero,six" + k="8" /> + <hkern g1="equal" + g2="zero,six" + k="-8" /> + <hkern g1="greaterequal" + g2="zero,six" + k="-8" /> + <hkern g1="infinity" + g2="zero,six" + k="-8" /> + <hkern g1="less" + g2="zero,six" + k="-18" /> + <hkern g1="lessequal" + g2="zero,six" + k="-8" /> + <hkern g1="minus" + g2="zero,six" + k="-8" /> + <hkern g1="minus" + g2="bracketright,braceright" + k="53" /> + <hkern g1="notequal" + g2="zero,six" + k="-8" /> + <hkern g1="percent" + g2="zero,six" + k="18" /> + <hkern g1="plus" + g2="bracketright,braceright" + k="53" /> + <hkern g1="radical" + g2="zero,six" + k="88" /> + <hkern g1="sterling" + g2="zero,six" + k="8" /> + <hkern g1="backslash" + g2="zero,six" + k="35" /> + <hkern g1="bracketleft,braceleft" + g2="five" + k="18" /> + <hkern g1="bracketleft,braceleft" + g2="four" + k="27" /> + <hkern g1="bracketleft,braceleft" + g2="hyphen,endash,emdash" + k="27" /> + <hkern g1="bracketleft,braceleft" + g2="minus" + k="53" /> + <hkern g1="bracketleft,braceleft" + g2="nine" + k="-8" /> + <hkern g1="bracketleft,braceleft" + g2="plus" + k="53" /> + <hkern g1="bracketleft,braceleft" + g2="seven" + k="-43" /> + <hkern g1="colon,semicolon" + g2="nine" + k="-12" /> + <hkern g1="colon,semicolon" + g2="seven" + k="-8" /> + <hkern g1="comma,period,ellipsis" + g2="zero,six" + k="18" /> + <hkern g1="comma,period,ellipsis" + g2="four" + k="43" /> + <hkern g1="comma,period,ellipsis" + g2="seven" + k="18" /> + <hkern g1="comma,period,ellipsis" + g2="eight" + k="8" /> + <hkern g1="comma,period,ellipsis" + g2="one" + k="61" /> + <hkern g1="guilsinglleft" + g2="one" + k="-18" /> + <hkern g1="guilsinglleft" + g2="two" + k="-12" /> + <hkern g1="guilsinglleft" + g2="exclam" + k="6" /> + <hkern g1="guilsinglright" + g2="seven" + k="27" /> + <hkern g1="guilsinglright" + g2="one" + k="27" /> + <hkern g1="guilsinglright" + g2="two" + k="8" /> + <hkern g1="guilsinglright" + g2="three" + k="8" /> + <hkern g1="hyphen,endash,emdash" + g2="five" + k="8" /> + <hkern g1="hyphen,endash,emdash" + g2="four" + k="4" /> + <hkern g1="hyphen,endash,emdash" + g2="seven" + k="27" /> + <hkern g1="hyphen,endash,emdash" + g2="one" + k="18" /> + <hkern g1="hyphen,endash,emdash" + g2="three" + k="18" /> + <hkern g1="hyphen,endash,emdash" + g2="bracketright,braceright" + k="27" /> + <hkern g1="hyphen,endash,emdash" + g2="parenright" + k="82" /> + <hkern g1="hyphen,endash,emdash" + g2="space" + k="102" /> + <hkern g1="numbersign" + g2="zero,six" + k="18" /> + <hkern g1="parenleft" + g2="zero,six" + k="18" /> + <hkern g1="parenleft" + g2="hyphen,endash,emdash" + k="82" /> + <hkern g1="questiondown" + g2="zero,six" + k="18" /> + <hkern g1="questiondown" + g2="quoteleft,quotedblleft" + k="41" /> + <hkern g1="questiondown" + g2="quotesinglbase,quotedblbase" + k="-53" /> + <hkern g1="quotedbl,quotesingle" + g2="four" + k="43" /> + <hkern g1="quotedbl,quotesingle" + g2="seven" + k="-18" /> + <hkern g1="quotedbl,quotesingle" + g2="one" + k="-27" /> + <hkern g1="quotedbl,quotesingle" + g2="two" + k="-8" /> + <hkern g1="quoteleft,quotedblleft" + g2="zero,six" + k="8" /> + <hkern g1="quoteleft,quotedblleft" + g2="four" + k="61" /> + <hkern g1="quoteleft,quotedblleft" + g2="seven" + k="-18" /> + <hkern g1="quoteleft,quotedblleft" + g2="one" + k="-18" /> + <hkern g1="quoteright,quotedblright" + g2="zero,six" + k="18" /> + <hkern g1="quoteright,quotedblright" + g2="five" + k="27" /> + <hkern g1="quoteright,quotedblright" + g2="four" + k="61" /> + <hkern g1="quoteright,quotedblright" + g2="seven" + k="-18" /> + <hkern g1="quoteright,quotedblright" + g2="eight" + k="8" /> + <hkern g1="quoteright,quotedblright" + g2="one" + k="-8" /> + <hkern g1="quoteright,quotedblright" + g2="two" + k="8" /> + <hkern g1="quoteright,quotedblright" + g2="comma,period,ellipsis" + k="94" /> + <hkern g1="quoteright,quotedblright" + g2="question" + k="-27" /> + <hkern g1="quoteright,quotedblright" + g2="questiondown" + k="80" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="zero,six" + k="27" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="four" + k="27" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="seven" + k="18" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="one" + k="35" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="two" + k="-8" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="three" + k="18" /> + <hkern g1="slash" + g2="zero,six" + k="35" /> + <hkern g1="underscore" + g2="zero,six" + k="18" /> + <hkern g1="exclam" + g2="guilsinglright" + k="6" /> + <hkern g1="eight" + g2="comma,period,ellipsis" + k="8" /> + <hkern g1="eight" + g2="zero,six" + k="4" /> + <hkern g1="five" + g2="comma,period,ellipsis" + k="8" /> + <hkern g1="five" + g2="quoteleft,quotedblleft" + k="8" /> + <hkern g1="five" + g2="quotesinglbase,quotedblbase" + k="8" /> + <hkern g1="four" + g2="quoteleft,quotedblleft" + k="18" /> + <hkern g1="four" + g2="quoteright,quotedblright" + k="18" /> + <hkern g1="one" + g2="comma,period,ellipsis" + k="8" /> + <hkern g1="one" + g2="zero,six" + k="-4" /> + <hkern g1="one" + g2="quoteright,quotedblright" + k="8" /> + <hkern g1="one" + g2="bracketright,braceright" + k="-8" /> + <hkern g1="one" + g2="copyright,registered" + k="8" /> + <hkern g1="one" + g2="quotedbl,quotesingle" + k="8" /> + <hkern g1="seven" + g2="comma,period,ellipsis" + k="96" /> + <hkern g1="seven" + g2="quoteleft,quotedblleft" + k="-27" /> + <hkern g1="seven" + g2="quotesinglbase,quotedblbase" + k="61" /> + <hkern g1="seven" + g2="quoteright,quotedblright" + k="-18" /> + <hkern g1="seven" + g2="copyright,registered" + k="8" /> + <hkern g1="seven" + g2="quotedbl,quotesingle" + k="-18" /> + <hkern g1="seven" + g2="colon,semicolon" + k="27" /> + <hkern g1="seven" + g2="guilsinglleft" + k="53" /> + <hkern g1="seven" + g2="guilsinglright" + k="18" /> + <hkern g1="seven" + g2="hyphen,endash,emdash" + k="43" /> + <hkern g1="six" + g2="comma,period,ellipsis" + k="8" /> + <hkern g1="six" + g2="quotesinglbase,quotedblbase" + k="8" /> + <hkern g1="six" + g2="copyright,registered" + k="8" /> + <hkern g1="three" + g2="comma,period,ellipsis" + k="8" /> + <hkern g1="three" + g2="quoteright,quotedblright" + k="4" /> + <hkern g1="three" + g2="hyphen,endash,emdash" + k="8" /> + <hkern g1="two" + g2="guilsinglright" + k="4" /> + <hkern g1="zero,nine" + g2="comma,period,ellipsis" + k="35" /> + <hkern g1="zero,nine" + g2="zero,six" + k="4" /> + <hkern g1="zero,nine" + g2="quoteleft,quotedblleft" + k="8" /> + <hkern g1="zero,nine" + g2="quotesinglbase,quotedblbase" + k="18" /> + <hkern g1="zero,nine" + g2="quoteright,quotedblright" + k="8" /> + <hkern g1="zero,nine" + g2="approxequal" + k="-18" /> + <hkern g1="zero,nine" + g2="asciitilde" + k="-8" /> + <hkern g1="zero,nine" + g2="backslash" + k="35" /> + <hkern g1="zero,nine" + g2="eight" + k="4" /> + <hkern g1="zero,nine" + g2="equal" + k="-8" /> + <hkern g1="zero,nine" + g2="five" + k="4" /> + <hkern g1="zero,nine" + g2="greaterequal" + k="-8" /> + <hkern g1="zero,nine" + g2="infinity" + k="-8" /> + <hkern g1="zero,nine" + g2="lessequal" + k="-8" /> + <hkern g1="zero,nine" + g2="minus" + k="-8" /> + <hkern g1="zero,nine" + g2="notequal" + k="-8" /> + <hkern g1="zero,nine" + g2="numbersign" + k="18" /> + <hkern g1="zero,nine" + g2="one" + k="4" /> + <hkern g1="zero,nine" + g2="parenright" + k="18" /> + <hkern g1="zero,nine" + g2="percent" + k="18" /> + <hkern g1="zero,nine" + g2="slash" + k="35" /> + <hkern g1="zero,nine" + g2="summation" + k="18" /> + <hkern g1="zero,nine" + g2="three" + k="4" /> + <hkern g1="zero,nine" + g2="underscore" + k="18" /> + <hkern g1="space" + g2="hyphen,endash,emdash" + k="102" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="61" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="J" + k="-14" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="Oslash" + k="47" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="S,Scaron" + k="14" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="133" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="37" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="V" + k="119" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="88" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="Y,Yacute,Ydieresis" + k="152" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="10" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="ampersand" + k="35" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="asciicircum" + k="70" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="asciitilde" + k="41" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="asterisk" + k="197" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="at" + k="76" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="backslash" + k="150" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="braceleft" + k="27" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="bullet" + k="68" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="20" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="copyright,registered" + k="61" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="dagger" + k="68" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="divide" + k="27" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="germandbls" + k="6" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="guilsinglleft" + k="55" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="hyphen,endash,emdash" + k="55" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="less" + k="41" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="m,n,p,r,ntilde" + k="6" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="ordfeminine" + k="190" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="ordmasculine" + k="164" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="oslash" + k="10" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="paragraph" + k="61" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="parenleft" + k="14" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="periodcentered" + k="55" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="plus" + k="41" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="question" + k="102" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="questiondown" + k="-55" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="quotedbl,quotesingle" + k="111" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="quoteleft,quotedblleft" + k="225" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="quoteright,quotedblright" + k="225" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="quotesinglbase,quotedblbase" + k="-14" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="slash" + k="-41" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="t" + k="47" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="trademark" + k="199" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="45" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="underscore" + k="-61" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="76" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="w" + k="61" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="70" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="Eth" + k="6" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="X" + k="20" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="Z,Zcaron" + k="-10" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="bracketright,braceright" + k="6" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="colon,semicolon" + k="6" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="daggerdbl" + k="6" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="equal" + k="14" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="exclam" + k="14" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="exclamdown" + k="6" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="f,fi,fl,f_f_i,f_f_l" + k="14" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="greater" + k="-14" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="guilsinglright" + k="6" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="multiply" + k="6" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="parenright" + k="14" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="section" + k="6" /> + <hkern g1="B" + g2="J" + k="-35" /> + <hkern g1="B" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="-4" /> + <hkern g1="B" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="6" /> + <hkern g1="B" + g2="Y,Yacute,Ydieresis" + k="20" /> + <hkern g1="B" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="10" /> + <hkern g1="B" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="-10" /> + <hkern g1="B" + g2="guilsinglleft" + k="20" /> + <hkern g1="B" + g2="m,n,p,r,ntilde" + k="6" /> + <hkern g1="B" + g2="oslash" + k="4" /> + <hkern g1="B" + g2="quoteright,quotedblright" + k="27" /> + <hkern g1="B" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="27" /> + <hkern g1="B" + g2="w" + k="6" /> + <hkern g1="B" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="6" /> + <hkern g1="B" + g2="Z,Zcaron" + k="-6" /> + <hkern g1="B" + g2="f,fi,fl,f_f_i,f_f_l" + k="6" /> + <hkern g1="B" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="37" /> + <hkern g1="B" + g2="comma,period,ellipsis" + k="20" /> + <hkern g1="B" + g2="s,scaron" + k="6" /> + <hkern g1="C,Ccedilla" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="16" /> + <hkern g1="C,Ccedilla" + g2="Oslash" + k="10" /> + <hkern g1="C,Ccedilla" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="14" /> + <hkern g1="C,Ccedilla" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="6" /> + <hkern g1="C,Ccedilla" + g2="V" + k="27" /> + <hkern g1="C,Ccedilla" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="35" /> + <hkern g1="C,Ccedilla" + g2="Y,Yacute,Ydieresis" + k="57" /> + <hkern g1="C,Ccedilla" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="35" /> + <hkern g1="C,Ccedilla" + g2="ampersand" + k="35" /> + <hkern g1="C,Ccedilla" + g2="asciicircum" + k="14" /> + <hkern g1="C,Ccedilla" + g2="at" + k="41" /> + <hkern g1="C,Ccedilla" + g2="backslash" + k="61" /> + <hkern g1="C,Ccedilla" + g2="braceleft" + k="27" /> + <hkern g1="C,Ccedilla" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="37" /> + <hkern g1="C,Ccedilla" + g2="copyright,registered" + k="6" /> + <hkern g1="C,Ccedilla" + g2="germandbls" + k="41" /> + <hkern g1="C,Ccedilla" + g2="guilsinglleft" + k="35" /> + <hkern g1="C,Ccedilla" + g2="hyphen,endash,emdash" + k="6" /> + <hkern g1="C,Ccedilla" + g2="m,n,p,r,ntilde" + k="25" /> + <hkern g1="C,Ccedilla" + g2="ordfeminine" + k="35" /> + <hkern g1="C,Ccedilla" + g2="ordmasculine" + k="6" /> + <hkern g1="C,Ccedilla" + g2="oslash" + k="27" /> + <hkern g1="C,Ccedilla" + g2="plus" + k="6" /> + <hkern g1="C,Ccedilla" + g2="questiondown" + k="55" /> + <hkern g1="C,Ccedilla" + g2="quoteleft,quotedblleft" + k="6" /> + <hkern g1="C,Ccedilla" + g2="quoteright,quotedblright" + k="6" /> + <hkern g1="C,Ccedilla" + g2="quotesinglbase,quotedblbase" + k="20" /> + <hkern g1="C,Ccedilla" + g2="slash" + k="61" /> + <hkern g1="C,Ccedilla" + g2="t" + k="14" /> + <hkern g1="C,Ccedilla" + g2="trademark" + k="20" /> + <hkern g1="C,Ccedilla" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="41" /> + <hkern g1="C,Ccedilla" + g2="underscore" + k="27" /> + <hkern g1="C,Ccedilla" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="20" /> + <hkern g1="C,Ccedilla" + g2="w" + k="20" /> + <hkern g1="C,Ccedilla" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="27" /> + <hkern g1="C,Ccedilla" + g2="X" + k="45" /> + <hkern g1="C,Ccedilla" + g2="bracketright,braceright" + k="8" /> + <hkern g1="C,Ccedilla" + g2="f,fi,fl,f_f_i,f_f_l" + k="16" /> + <hkern g1="C,Ccedilla" + g2="greater" + k="-14" /> + <hkern g1="C,Ccedilla" + g2="guilsinglright" + k="6" /> + <hkern g1="C,Ccedilla" + g2="parenright" + k="20" /> + <hkern g1="C,Ccedilla" + g2="section" + k="14" /> + <hkern g1="C,Ccedilla" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="51" /> + <hkern g1="C,Ccedilla" + g2="comma,period,ellipsis" + k="35" /> + <hkern g1="C,Ccedilla" + g2="s,scaron" + k="14" /> + <hkern g1="C,Ccedilla" + g2="b,h,k,l,thorn" + k="20" /> + <hkern g1="C,Ccedilla" + g2="florin" + k="82" /> + <hkern g1="C,Ccedilla" + g2="x" + k="16" /> + <hkern g1="C,Ccedilla" + g2="z,zcaron" + k="14" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="S,Scaron" + k="6" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="45" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="V" + k="51" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="45" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="Y,Yacute,Ydieresis" + k="96" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="ampersand" + k="55" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="asciicircum" + k="-20" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="asciitilde" + k="-20" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="asterisk" + k="6" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="backslash" + k="82" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="-4" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="copyright,registered" + k="-14" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="dagger" + k="-6" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="divide" + k="-6" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="germandbls" + k="18" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="guilsinglleft" + k="14" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="less" + k="-6" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="ordfeminine" + k="20" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="periodcentered" + k="-6" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="plus" + k="-6" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="questiondown" + k="61" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="quoteleft,quotedblleft" + k="20" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="quoteright,quotedblright" + k="27" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="quotesinglbase,quotedblbase" + k="102" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="slash" + k="82" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="t" + k="-47" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="trademark" + k="68" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="underscore" + k="82" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="X" + k="72" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="Z,Zcaron" + k="20" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="bracketright,braceright" + k="47" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="daggerdbl" + k="-6" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="equal" + k="-6" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="exclam" + k="6" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="exclamdown" + k="6" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="f,fi,fl,f_f_i,f_f_l" + k="-16" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="greater" + k="-20" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="guilsinglright" + k="20" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="multiply" + k="-6" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="parenright" + k="47" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="61" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="comma,period,ellipsis" + k="68" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="b,h,k,l,thorn" + k="4" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="florin" + k="109" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="z,zcaron" + k="-4" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="Lslash" + k="-14" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="bracketleft" + k="6" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="lslash" + k="-10" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="6" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="J" + k="27" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="Oslash" + k="6" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="-14" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="V" + k="-4" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-4" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="Y,Yacute,Ydieresis" + k="-6" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="20" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="ampersand" + k="14" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="at" + k="33" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="braceleft" + k="47" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="31" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="dagger" + k="-6" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="germandbls" + k="31" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="guilsinglleft" + k="41" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="hyphen,endash,emdash" + k="6" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="m,n,p,r,ntilde" + k="20" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="ordfeminine" + k="20" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="ordmasculine" + k="20" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="oslash" + k="31" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="plus" + k="6" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="quoteright,quotedblright" + k="6" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="25" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="27" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="w" + k="25" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="27" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="X" + k="-4" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="Z,Zcaron" + k="-14" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="bracketright,braceright" + k="-20" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="daggerdbl" + k="-6" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="f,fi,fl,f_f_i,f_f_l" + k="6" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="greater" + k="-27" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="guilsinglright" + k="14" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="parenright" + k="-14" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="s,scaron" + k="6" /> + <hkern g1="F" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="10" /> + <hkern g1="F" + g2="J" + k="78" /> + <hkern g1="F" + g2="Oslash" + k="4" /> + <hkern g1="F" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="-68" /> + <hkern g1="F" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="6" /> + <hkern g1="F" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-10" /> + <hkern g1="F" + g2="Y,Yacute,Ydieresis" + k="-10" /> + <hkern g1="F" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="72" /> + <hkern g1="F" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="68" /> + <hkern g1="F" + g2="guilsinglleft" + k="41" /> + <hkern g1="F" + g2="hyphen,endash,emdash" + k="27" /> + <hkern g1="F" + g2="m,n,p,r,ntilde" + k="61" /> + <hkern g1="F" + g2="oslash" + k="78" /> + <hkern g1="F" + g2="quotedbl,quotesingle" + k="-41" /> + <hkern g1="F" + g2="quoteleft,quotedblleft" + k="-35" /> + <hkern g1="F" + g2="quoteright,quotedblright" + k="-20" /> + <hkern g1="F" + g2="quotesinglbase,quotedblbase" + k="123" /> + <hkern g1="F" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="86" /> + <hkern g1="F" + g2="w" + k="37" /> + <hkern g1="F" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="45" /> + <hkern g1="F" + g2="Eth" + k="-6" /> + <hkern g1="F" + g2="Z,Zcaron" + k="-27" /> + <hkern g1="F" + g2="bracketright,braceright" + k="-41" /> + <hkern g1="F" + g2="colon,semicolon" + k="6" /> + <hkern g1="F" + g2="f,fi,fl,f_f_i,f_f_l" + k="14" /> + <hkern g1="F" + g2="guilsinglright" + k="20" /> + <hkern g1="F" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="102" /> + <hkern g1="F" + g2="comma,period,ellipsis" + k="211" /> + <hkern g1="F" + g2="s,scaron" + k="31" /> + <hkern g1="F" + g2="b,h,k,l,thorn" + k="-6" /> + <hkern g1="F" + g2="z,zcaron" + k="27" /> + <hkern g1="F" + g2="i,igrave,iacute,icircumflex,idieresis" + k="6" /> + <hkern g1="F" + g2="j" + k="10" /> + <hkern g1="G" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="16" /> + <hkern g1="G" + g2="V" + k="35" /> + <hkern g1="G" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="27" /> + <hkern g1="G" + g2="Y,Yacute,Ydieresis" + k="66" /> + <hkern g1="G" + g2="ampersand" + k="35" /> + <hkern g1="G" + g2="asciitilde" + k="-6" /> + <hkern g1="G" + g2="backslash" + k="61" /> + <hkern g1="G" + g2="braceleft" + k="14" /> + <hkern g1="G" + g2="germandbls" + k="6" /> + <hkern g1="G" + g2="guilsinglleft" + k="20" /> + <hkern g1="G" + g2="ordmasculine" + k="6" /> + <hkern g1="G" + g2="question" + k="6" /> + <hkern g1="G" + g2="questiondown" + k="-27" /> + <hkern g1="G" + g2="quoteleft,quotedblleft" + k="6" /> + <hkern g1="G" + g2="quoteright,quotedblright" + k="14" /> + <hkern g1="G" + g2="slash" + k="-6" /> + <hkern g1="G" + g2="t" + k="-33" /> + <hkern g1="G" + g2="trademark" + k="27" /> + <hkern g1="G" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="6" /> + <hkern g1="G" + g2="underscore" + k="-20" /> + <hkern g1="G" + g2="X" + k="4" /> + <hkern g1="G" + g2="bracketright,braceright" + k="6" /> + <hkern g1="G" + g2="exclamdown" + k="6" /> + <hkern g1="G" + g2="greater" + k="-35" /> + <hkern g1="G" + g2="guilsinglright" + k="6" /> + <hkern g1="G" + g2="parenright" + k="6" /> + <hkern g1="G" + g2="s,scaron" + k="-6" /> + <hkern g1="G" + g2="x" + k="-4" /> + <hkern g1="G" + g2="lslash" + k="-27" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="6" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="ampersand" + k="6" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="at" + k="14" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="braceleft" + k="41" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="bullet" + k="14" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="4" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="germandbls" + k="10" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="guilsinglleft" + k="14" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="ordfeminine" + k="14" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="ordmasculine" + k="6" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="oslash" + k="6" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="questiondown" + k="41" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="4" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="w" + k="4" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="greater" + k="-14" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="lslash" + k="6" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="J" + k="4" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="-4" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="4" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="ampersand" + k="20" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="asciitilde" + k="6" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="at" + k="14" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="backslash" + k="6" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="braceleft" + k="41" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="bullet" + k="41" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="10" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="divide" + k="6" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="germandbls" + k="27" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="guilsinglleft" + k="27" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="hyphen,endash,emdash" + k="6" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="less" + k="6" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="m,n,p,r,ntilde" + k="10" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="ordfeminine" + k="6" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="ordmasculine" + k="6" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="oslash" + k="10" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="periodcentered" + k="20" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="plus" + k="6" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="questiondown" + k="61" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="quotesinglbase,quotedblbase" + k="82" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="slash" + k="61" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="trademark" + k="6" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="6" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="underscore" + k="35" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="X" + k="4" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="bracketright,braceright" + k="6" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="colon,semicolon" + k="10" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="equal" + k="4" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="exclamdown" + k="27" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="guilsinglright" + k="6" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="parenright" + k="6" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="57" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="comma,period,ellipsis" + k="61" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="s,scaron" + k="4" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="florin" + k="102" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="lslash" + k="6" /> + <hkern g1="K" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="109" /> + <hkern g1="K" + g2="J" + k="20" /> + <hkern g1="K" + g2="Oslash" + k="55" /> + <hkern g1="K" + g2="S,Scaron" + k="25" /> + <hkern g1="K" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="-4" /> + <hkern g1="K" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="16" /> + <hkern g1="K" + g2="V" + k="20" /> + <hkern g1="K" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="20" /> + <hkern g1="K" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="37" /> + <hkern g1="K" + g2="ampersand" + k="94" /> + <hkern g1="K" + g2="asciicircum" + k="41" /> + <hkern g1="K" + g2="asciitilde" + k="129" /> + <hkern g1="K" + g2="asterisk" + k="14" /> + <hkern g1="K" + g2="at" + k="102" /> + <hkern g1="K" + g2="backslash" + k="-14" /> + <hkern g1="K" + g2="braceleft" + k="88" /> + <hkern g1="K" + g2="bullet" + k="96" /> + <hkern g1="K" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="78" /> + <hkern g1="K" + g2="copyright,registered" + k="117" /> + <hkern g1="K" + g2="divide" + k="61" /> + <hkern g1="K" + g2="germandbls" + k="61" /> + <hkern g1="K" + g2="guilsinglleft" + k="129" /> + <hkern g1="K" + g2="hyphen,endash,emdash" + k="147" /> + <hkern g1="K" + g2="less" + k="117" /> + <hkern g1="K" + g2="m,n,p,r,ntilde" + k="27" /> + <hkern g1="K" + g2="ordfeminine" + k="82" /> + <hkern g1="K" + g2="ordmasculine" + k="68" /> + <hkern g1="K" + g2="oslash" + k="47" /> + <hkern g1="K" + g2="paragraph" + k="29" /> + <hkern g1="K" + g2="parenleft" + k="14" /> + <hkern g1="K" + g2="periodcentered" + k="82" /> + <hkern g1="K" + g2="plus" + k="76" /> + <hkern g1="K" + g2="question" + k="20" /> + <hkern g1="K" + g2="questiondown" + k="-35" /> + <hkern g1="K" + g2="quoteleft,quotedblleft" + k="20" /> + <hkern g1="K" + g2="quoteright,quotedblright" + k="6" /> + <hkern g1="K" + g2="slash" + k="-35" /> + <hkern g1="K" + g2="t" + k="80" /> + <hkern g1="K" + g2="trademark" + k="-6" /> + <hkern g1="K" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="113" /> + <hkern g1="K" + g2="underscore" + k="-47" /> + <hkern g1="K" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="113" /> + <hkern g1="K" + g2="w" + k="98" /> + <hkern g1="K" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="133" /> + <hkern g1="K" + g2="Eth" + k="20" /> + <hkern g1="K" + g2="Z,Zcaron" + k="-6" /> + <hkern g1="K" + g2="bracketright,braceright" + k="-6" /> + <hkern g1="K" + g2="colon,semicolon" + k="20" /> + <hkern g1="K" + g2="equal" + k="82" /> + <hkern g1="K" + g2="f,fi,fl,f_f_i,f_f_l" + k="45" /> + <hkern g1="K" + g2="greater" + k="-20" /> + <hkern g1="K" + g2="guilsinglright" + k="57" /> + <hkern g1="K" + g2="multiply" + k="20" /> + <hkern g1="K" + g2="parenright" + k="-6" /> + <hkern g1="K" + g2="section" + k="27" /> + <hkern g1="K" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="14" /> + <hkern g1="K" + g2="s,scaron" + k="20" /> + <hkern g1="K" + g2="florin" + k="68" /> + <hkern g1="K" + g2="x" + k="14" /> + <hkern g1="K" + g2="lslash" + k="6" /> + <hkern g1="L,Lslash" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="57" /> + <hkern g1="L,Lslash" + g2="J" + k="-37" /> + <hkern g1="L,Lslash" + g2="Oslash" + k="35" /> + <hkern g1="L,Lslash" + g2="S,Scaron" + k="-4" /> + <hkern g1="L,Lslash" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="143" /> + <hkern g1="L,Lslash" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="20" /> + <hkern g1="L,Lslash" + g2="V" + k="129" /> + <hkern g1="L,Lslash" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="98" /> + <hkern g1="L,Lslash" + g2="Y,Yacute,Ydieresis" + k="139" /> + <hkern g1="L,Lslash" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="-6" /> + <hkern g1="L,Lslash" + g2="ampersand" + k="41" /> + <hkern g1="L,Lslash" + g2="asciicircum" + k="88" /> + <hkern g1="L,Lslash" + g2="asciitilde" + k="68" /> + <hkern g1="L,Lslash" + g2="asterisk" + k="143" /> + <hkern g1="L,Lslash" + g2="at" + k="31" /> + <hkern g1="L,Lslash" + g2="backslash" + k="164" /> + <hkern g1="L,Lslash" + g2="braceleft" + k="41" /> + <hkern g1="L,Lslash" + g2="bullet" + k="35" /> + <hkern g1="L,Lslash" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="4" /> + <hkern g1="L,Lslash" + g2="copyright,registered" + k="35" /> + <hkern g1="L,Lslash" + g2="dagger" + k="14" /> + <hkern g1="L,Lslash" + g2="divide" + k="6" /> + <hkern g1="L,Lslash" + g2="germandbls" + k="6" /> + <hkern g1="L,Lslash" + g2="guilsinglleft" + k="41" /> + <hkern g1="L,Lslash" + g2="hyphen,endash,emdash" + k="61" /> + <hkern g1="L,Lslash" + g2="less" + k="61" /> + <hkern g1="L,Lslash" + g2="ordfeminine" + k="135" /> + <hkern g1="L,Lslash" + g2="ordmasculine" + k="135" /> + <hkern g1="L,Lslash" + g2="oslash" + k="6" /> + <hkern g1="L,Lslash" + g2="paragraph" + k="96" /> + <hkern g1="L,Lslash" + g2="periodcentered" + k="14" /> + <hkern g1="L,Lslash" + g2="plus" + k="35" /> + <hkern g1="L,Lslash" + g2="question" + k="102" /> + <hkern g1="L,Lslash" + g2="questiondown" + k="-55" /> + <hkern g1="L,Lslash" + g2="quotedbl,quotesingle" + k="150" /> + <hkern g1="L,Lslash" + g2="quoteleft,quotedblleft" + k="158" /> + <hkern g1="L,Lslash" + g2="quoteright,quotedblright" + k="137" /> + <hkern g1="L,Lslash" + g2="quotesinglbase,quotedblbase" + k="-55" /> + <hkern g1="L,Lslash" + g2="slash" + k="-76" /> + <hkern g1="L,Lslash" + g2="t" + k="41" /> + <hkern g1="L,Lslash" + g2="trademark" + k="231" /> + <hkern g1="L,Lslash" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="35" /> + <hkern g1="L,Lslash" + g2="underscore" + k="-68" /> + <hkern g1="L,Lslash" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="88" /> + <hkern g1="L,Lslash" + g2="w" + k="78" /> + <hkern g1="L,Lslash" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="96" /> + <hkern g1="L,Lslash" + g2="Z,Zcaron" + k="-20" /> + <hkern g1="L,Lslash" + g2="bracketright,braceright" + k="-14" /> + <hkern g1="L,Lslash" + g2="equal" + k="20" /> + <hkern g1="L,Lslash" + g2="f,fi,fl,f_f_i,f_f_l" + k="20" /> + <hkern g1="L,Lslash" + g2="greater" + k="-20" /> + <hkern g1="L,Lslash" + g2="multiply" + k="-6" /> + <hkern g1="L,Lslash" + g2="parenright" + k="-14" /> + <hkern g1="L,Lslash" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="-27" /> + <hkern g1="L,Lslash" + g2="comma,period,ellipsis" + k="-20" /> + <hkern g1="L,Lslash" + g2="s,scaron" + k="-10" /> + <hkern g1="L,Lslash" + g2="z,zcaron" + k="-10" /> + <hkern g1="L,Lslash" + g2="j" + k="-6" /> + <hkern g1="L,Lslash" + g2="bar" + k="-27" /> + <hkern g1="L,Lslash" + g2="brokenbar" + k="-27" /> + <hkern g1="Oslash" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="35" /> + <hkern g1="Oslash" + g2="V" + k="45" /> + <hkern g1="Oslash" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="41" /> + <hkern g1="Oslash" + g2="Y,Yacute,Ydieresis" + k="86" /> + <hkern g1="Oslash" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="6" /> + <hkern g1="Oslash" + g2="ampersand" + k="14" /> + <hkern g1="Oslash" + g2="backslash" + k="61" /> + <hkern g1="Oslash" + g2="dagger" + k="-6" /> + <hkern g1="Oslash" + g2="germandbls" + k="37" /> + <hkern g1="Oslash" + g2="ordfeminine" + k="14" /> + <hkern g1="Oslash" + g2="questiondown" + k="82" /> + <hkern g1="Oslash" + g2="quotesinglbase,quotedblbase" + k="68" /> + <hkern g1="Oslash" + g2="slash" + k="82" /> + <hkern g1="Oslash" + g2="trademark" + k="14" /> + <hkern g1="Oslash" + g2="underscore" + k="82" /> + <hkern g1="Oslash" + g2="X" + k="49" /> + <hkern g1="Oslash" + g2="Z,Zcaron" + k="16" /> + <hkern g1="Oslash" + g2="bracketright,braceright" + k="47" /> + <hkern g1="Oslash" + g2="daggerdbl" + k="-6" /> + <hkern g1="Oslash" + g2="equal" + k="-6" /> + <hkern g1="Oslash" + g2="f,fi,fl,f_f_i,f_f_l" + k="-6" /> + <hkern g1="Oslash" + g2="guilsinglright" + k="6" /> + <hkern g1="Oslash" + g2="parenright" + k="47" /> + <hkern g1="Oslash" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="57" /> + <hkern g1="Oslash" + g2="comma,period,ellipsis" + k="68" /> + <hkern g1="Oslash" + g2="florin" + k="76" /> + <hkern g1="Oslash" + g2="lslash" + k="-6" /> + <hkern g1="P" + g2="J" + k="137" /> + <hkern g1="P" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="4" /> + <hkern g1="P" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="10" /> + <hkern g1="P" + g2="Y,Yacute,Ydieresis" + k="20" /> + <hkern g1="P" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="47" /> + <hkern g1="P" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="72" /> + <hkern g1="P" + g2="guilsinglleft" + k="55" /> + <hkern g1="P" + g2="hyphen,endash,emdash" + k="20" /> + <hkern g1="P" + g2="m,n,p,r,ntilde" + k="27" /> + <hkern g1="P" + g2="oslash" + k="68" /> + <hkern g1="P" + g2="quotedbl,quotesingle" + k="-20" /> + <hkern g1="P" + g2="quoteleft,quotedblleft" + k="-20" /> + <hkern g1="P" + g2="quoteright,quotedblright" + k="-14" /> + <hkern g1="P" + g2="quotesinglbase,quotedblbase" + k="123" /> + <hkern g1="P" + g2="t" + k="-20" /> + <hkern g1="P" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="41" /> + <hkern g1="P" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-14" /> + <hkern g1="P" + g2="Eth" + k="-14" /> + <hkern g1="P" + g2="Z,Zcaron" + k="14" /> + <hkern g1="P" + g2="bracketright,braceright" + k="6" /> + <hkern g1="P" + g2="f,fi,fl,f_f_i,f_f_l" + k="-14" /> + <hkern g1="P" + g2="guilsinglright" + k="-14" /> + <hkern g1="P" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="119" /> + <hkern g1="P" + g2="comma,period,ellipsis" + k="266" /> + <hkern g1="P" + g2="s,scaron" + k="41" /> + <hkern g1="P" + g2="b,h,k,l,thorn" + k="16" /> + <hkern g1="P" + g2="z,zcaron" + k="14" /> + <hkern g1="P" + g2="j" + k="6" /> + <hkern g1="P" + g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Ntilde,Thorn,IJ,uni01C4,uni01C7,uni01CA,uni01F1" + k="4" /> + <hkern g1="Q" + g2="J" + k="-6" /> + <hkern g1="Q" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="37" /> + <hkern g1="Q" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="45" /> + <hkern g1="Q" + g2="Y,Yacute,Ydieresis" + k="88" /> + <hkern g1="Q" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="-4" /> + <hkern g1="Q" + g2="guilsinglleft" + k="6" /> + <hkern g1="Q" + g2="quoteleft,quotedblleft" + k="14" /> + <hkern g1="Q" + g2="quoteright,quotedblright" + k="27" /> + <hkern g1="Q" + g2="t" + k="-10" /> + <hkern g1="Q" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="4" /> + <hkern g1="Q" + g2="w" + k="6" /> + <hkern g1="Q" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="6" /> + <hkern g1="Q" + g2="Eth" + k="-6" /> + <hkern g1="Q" + g2="Z,Zcaron" + k="-4" /> + <hkern g1="Q" + g2="bracketright,braceright" + k="35" /> + <hkern g1="Q" + g2="f,fi,fl,f_f_i,f_f_l" + k="-6" /> + <hkern g1="Q" + g2="guilsinglright" + k="27" /> + <hkern g1="Q" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="20" /> + <hkern g1="Q" + g2="comma,period,ellipsis" + k="35" /> + <hkern g1="Q" + g2="z,zcaron" + k="-4" /> + <hkern g1="Q" + g2="j" + k="-14" /> + <hkern g1="R" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="10" /> + <hkern g1="R" + g2="J" + k="27" /> + <hkern g1="R" + g2="Oslash" + k="6" /> + <hkern g1="R" + g2="V" + k="10" /> + <hkern g1="R" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="14" /> + <hkern g1="R" + g2="Y,Yacute,Ydieresis" + k="20" /> + <hkern g1="R" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="14" /> + <hkern g1="R" + g2="ampersand" + k="20" /> + <hkern g1="R" + g2="asciicircum" + k="-14" /> + <hkern g1="R" + g2="asciitilde" + k="14" /> + <hkern g1="R" + g2="asterisk" + k="-14" /> + <hkern g1="R" + g2="at" + k="25" /> + <hkern g1="R" + g2="backslash" + k="31" /> + <hkern g1="R" + g2="braceleft" + k="20" /> + <hkern g1="R" + g2="bullet" + k="35" /> + <hkern g1="R" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="35" /> + <hkern g1="R" + g2="dagger" + k="-27" /> + <hkern g1="R" + g2="divide" + k="6" /> + <hkern g1="R" + g2="germandbls" + k="20" /> + <hkern g1="R" + g2="guilsinglleft" + k="35" /> + <hkern g1="R" + g2="hyphen,endash,emdash" + k="35" /> + <hkern g1="R" + g2="less" + k="6" /> + <hkern g1="R" + g2="m,n,p,r,ntilde" + k="6" /> + <hkern g1="R" + g2="ordfeminine" + k="27" /> + <hkern g1="R" + g2="oslash" + k="47" /> + <hkern g1="R" + g2="periodcentered" + k="6" /> + <hkern g1="R" + g2="plus" + k="20" /> + <hkern g1="R" + g2="quoteleft,quotedblleft" + k="-14" /> + <hkern g1="R" + g2="t" + k="-10" /> + <hkern g1="R" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="31" /> + <hkern g1="R" + g2="underscore" + k="-20" /> + <hkern g1="R" + g2="w" + k="14" /> + <hkern g1="R" + g2="Z,Zcaron" + k="-4" /> + <hkern g1="R" + g2="bracketright,braceright" + k="-14" /> + <hkern g1="R" + g2="daggerdbl" + k="-27" /> + <hkern g1="R" + g2="f,fi,fl,f_f_i,f_f_l" + k="-4" /> + <hkern g1="R" + g2="greater" + k="-47" /> + <hkern g1="R" + g2="multiply" + k="-20" /> + <hkern g1="R" + g2="parenright" + k="-6" /> + <hkern g1="R" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="6" /> + <hkern g1="R" + g2="comma,period,ellipsis" + k="20" /> + <hkern g1="R" + g2="s,scaron" + k="6" /> + <hkern g1="R" + g2="florin" + k="68" /> + <hkern g1="R" + g2="x" + k="-14" /> + <hkern g1="R" + g2="lslash" + k="10" /> + <hkern g1="S,Scaron" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="6" /> + <hkern g1="S,Scaron" + g2="J" + k="-14" /> + <hkern g1="S,Scaron" + g2="Oslash" + k="6" /> + <hkern g1="S,Scaron" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="6" /> + <hkern g1="S,Scaron" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="6" /> + <hkern g1="S,Scaron" + g2="V" + k="4" /> + <hkern g1="S,Scaron" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="4" /> + <hkern g1="S,Scaron" + g2="Y,Yacute,Ydieresis" + k="31" /> + <hkern g1="S,Scaron" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="6" /> + <hkern g1="S,Scaron" + g2="ampersand" + k="14" /> + <hkern g1="S,Scaron" + g2="asciicircum" + k="6" /> + <hkern g1="S,Scaron" + g2="backslash" + k="47" /> + <hkern g1="S,Scaron" + g2="braceleft" + k="27" /> + <hkern g1="S,Scaron" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="14" /> + <hkern g1="S,Scaron" + g2="germandbls" + k="51" /> + <hkern g1="S,Scaron" + g2="guilsinglleft" + k="6" /> + <hkern g1="S,Scaron" + g2="hyphen,endash,emdash" + k="6" /> + <hkern g1="S,Scaron" + g2="m,n,p,r,ntilde" + k="43" /> + <hkern g1="S,Scaron" + g2="ordfeminine" + k="27" /> + <hkern g1="S,Scaron" + g2="ordmasculine" + k="20" /> + <hkern g1="S,Scaron" + g2="oslash" + k="14" /> + <hkern g1="S,Scaron" + g2="questiondown" + k="14" /> + <hkern g1="S,Scaron" + g2="quoteleft,quotedblleft" + k="6" /> + <hkern g1="S,Scaron" + g2="quotesinglbase,quotedblbase" + k="14" /> + <hkern g1="S,Scaron" + g2="slash" + k="20" /> + <hkern g1="S,Scaron" + g2="t" + k="2" /> + <hkern g1="S,Scaron" + g2="trademark" + k="14" /> + <hkern g1="S,Scaron" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="37" /> + <hkern g1="S,Scaron" + g2="underscore" + k="14" /> + <hkern g1="S,Scaron" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="41" /> + <hkern g1="S,Scaron" + g2="w" + k="35" /> + <hkern g1="S,Scaron" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="47" /> + <hkern g1="S,Scaron" + g2="X" + k="14" /> + <hkern g1="S,Scaron" + g2="Z,Zcaron" + k="-6" /> + <hkern g1="S,Scaron" + g2="bracketright,braceright" + k="-12" /> + <hkern g1="S,Scaron" + g2="colon,semicolon" + k="6" /> + <hkern g1="S,Scaron" + g2="daggerdbl" + k="-6" /> + <hkern g1="S,Scaron" + g2="exclamdown" + k="6" /> + <hkern g1="S,Scaron" + g2="f,fi,fl,f_f_i,f_f_l" + k="20" /> + <hkern g1="S,Scaron" + g2="greater" + k="-33" /> + <hkern g1="S,Scaron" + g2="guilsinglright" + k="6" /> + <hkern g1="S,Scaron" + g2="multiply" + k="6" /> + <hkern g1="S,Scaron" + g2="parenright" + k="6" /> + <hkern g1="S,Scaron" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="20" /> + <hkern g1="S,Scaron" + g2="comma,period,ellipsis" + k="6" /> + <hkern g1="S,Scaron" + g2="b,h,k,l,thorn" + k="10" /> + <hkern g1="S,Scaron" + g2="florin" + k="96" /> + <hkern g1="S,Scaron" + g2="x" + k="20" /> + <hkern g1="S,Scaron" + g2="z,zcaron" + k="6" /> + <hkern g1="S,Scaron" + g2="Lslash" + k="-6" /> + <hkern g1="S,Scaron" + g2="lslash" + k="-4" /> + <hkern g1="S,Scaron" + g2="i,igrave,iacute,icircumflex,idieresis" + k="6" /> + <hkern g1="S,Scaron" + g2="j" + k="6" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="45" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="J" + k="152" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="Oslash" + k="35" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="-41" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="-4" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="V" + k="-41" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-41" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="Y,Yacute,Ydieresis" + k="-41" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="174" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="ampersand" + k="68" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="asciitilde" + k="137" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="asterisk" + k="-41" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="at" + k="51" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="backslash" + k="-68" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="braceleft" + k="68" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="bullet" + k="158" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="195" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="copyright,registered" + k="20" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="dagger" + k="-47" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="divide" + k="102" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="germandbls" + k="68" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="guilsinglleft" + k="240" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="hyphen,endash,emdash" + k="129" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="less" + k="96" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="m,n,p,r,ntilde" + k="137" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="oslash" + k="160" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="paragraph" + k="-27" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="periodcentered" + k="102" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="plus" + k="109" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="question" + k="-35" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="questiondown" + k="143" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="quotedbl,quotesingle" + k="-55" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="quoteleft,quotedblleft" + k="-61" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="quoteright,quotedblright" + k="-61" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="quotesinglbase,quotedblbase" + k="178" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="slash" + k="164" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="t" + k="47" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="trademark" + k="-55" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="180" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="underscore" + k="88" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="129" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="w" + k="135" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="129" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="X" + k="-16" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="Z,Zcaron" + k="-14" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="bracketright,braceright" + k="-27" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="colon,semicolon" + k="113" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="daggerdbl" + k="-35" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="equal" + k="61" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="exclamdown" + k="55" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="f,fi,fl,f_f_i,f_f_l" + k="53" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="guilsinglright" + k="143" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="multiply" + k="61" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="parenright" + k="-27" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="section" + k="-27" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="133" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="comma,period,ellipsis" + k="219" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="s,scaron" + k="143" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="b,h,k,l,thorn" + k="-4" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="florin" + k="205" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="x" + k="121" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="z,zcaron" + k="82" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="lslash" + k="41" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="i,igrave,iacute,icircumflex,idieresis" + k="27" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="j" + k="14" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="bar" + k="-35" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="brokenbar" + k="-41" /> + <hkern g1="Thorn" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="-6" /> + <hkern g1="Thorn" + g2="J" + k="16" /> + <hkern g1="Thorn" + g2="Oslash" + k="-6" /> + <hkern g1="Thorn" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="45" /> + <hkern g1="Thorn" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="35" /> + <hkern g1="Thorn" + g2="Y,Yacute,Ydieresis" + k="61" /> + <hkern g1="Thorn" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="-16" /> + <hkern g1="Thorn" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="-16" /> + <hkern g1="Thorn" + g2="oslash" + k="6" /> + <hkern g1="Thorn" + g2="quoteleft,quotedblleft" + k="14" /> + <hkern g1="Thorn" + g2="quotesinglbase,quotedblbase" + k="70" /> + <hkern g1="Thorn" + g2="t" + k="-41" /> + <hkern g1="Thorn" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="4" /> + <hkern g1="Thorn" + g2="w" + k="-14" /> + <hkern g1="Thorn" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-14" /> + <hkern g1="Thorn" + g2="Eth" + k="-20" /> + <hkern g1="Thorn" + g2="Z,Zcaron" + k="16" /> + <hkern g1="Thorn" + g2="bracketright,braceright" + k="27" /> + <hkern g1="Thorn" + g2="f,fi,fl,f_f_i,f_f_l" + k="-35" /> + <hkern g1="Thorn" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="76" /> + <hkern g1="Thorn" + g2="comma,period,ellipsis" + k="68" /> + <hkern g1="Thorn" + g2="s,scaron" + k="-14" /> + <hkern g1="Thorn" + g2="z,zcaron" + k="-27" /> + <hkern g1="V" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="51" /> + <hkern g1="V" + g2="J" + k="123" /> + <hkern g1="V" + g2="Oslash" + k="51" /> + <hkern g1="V" + g2="S,Scaron" + k="10" /> + <hkern g1="V" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="-41" /> + <hkern g1="V" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-20" /> + <hkern g1="V" + g2="Y,Yacute,Ydieresis" + k="-20" /> + <hkern g1="V" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="119" /> + <hkern g1="V" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="123" /> + <hkern g1="V" + g2="copyright,registered" + k="41" /> + <hkern g1="V" + g2="guilsinglleft" + k="129" /> + <hkern g1="V" + g2="hyphen,endash,emdash" + k="123" /> + <hkern g1="V" + g2="m,n,p,r,ntilde" + k="82" /> + <hkern g1="V" + g2="oslash" + k="123" /> + <hkern g1="V" + g2="quotedbl,quotesingle" + k="-35" /> + <hkern g1="V" + g2="quoteleft,quotedblleft" + k="-20" /> + <hkern g1="V" + g2="quoteright,quotedblright" + k="-27" /> + <hkern g1="V" + g2="quotesinglbase,quotedblbase" + k="193" /> + <hkern g1="V" + g2="t" + k="14" /> + <hkern g1="V" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="82" /> + <hkern g1="V" + g2="w" + k="27" /> + <hkern g1="V" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="25" /> + <hkern g1="V" + g2="bracketright,braceright" + k="-35" /> + <hkern g1="V" + g2="colon,semicolon" + k="96" /> + <hkern g1="V" + g2="f,fi,fl,f_f_i,f_f_l" + k="4" /> + <hkern g1="V" + g2="guilsinglright" + k="76" /> + <hkern g1="V" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="119" /> + <hkern g1="V" + g2="comma,period,ellipsis" + k="225" /> + <hkern g1="V" + g2="s,scaron" + k="70" /> + <hkern g1="V" + g2="z,zcaron" + k="37" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="45" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="J" + k="109" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="Oslash" + k="47" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="S,Scaron" + k="4" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="-41" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="V" + k="-20" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-20" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="Y,Yacute,Ydieresis" + k="-20" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="61" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="ampersand" + k="29" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="asciitilde" + k="41" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="asterisk" + k="-20" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="at" + k="41" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="backslash" + k="-41" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="braceleft" + k="55" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="bullet" + k="55" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="76" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="copyright,registered" + k="14" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="dagger" + k="-14" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="divide" + k="45" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="germandbls" + k="49" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="guilsinglleft" + k="82" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="hyphen,endash,emdash" + k="68" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="less" + k="41" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="m,n,p,r,ntilde" + k="61" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="oslash" + k="88" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="periodcentered" + k="55" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="plus" + k="61" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="questiondown" + k="137" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="quotedbl,quotesingle" + k="-27" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="quoteleft,quotedblleft" + k="-35" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="quoteright,quotedblright" + k="-35" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="quotesinglbase,quotedblbase" + k="170" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="slash" + k="137" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="t" + k="6" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="trademark" + k="-41" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="66" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="underscore" + k="96" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="14" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="w" + k="20" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="25" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="Eth" + k="4" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="X" + k="-20" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="Z,Zcaron" + k="-4" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="bracketright,braceright" + k="-27" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="colon,semicolon" + k="27" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="daggerdbl" + k="-6" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="equal" + k="20" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="exclamdown" + k="35" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="f,fi,fl,f_f_i,f_f_l" + k="4" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="greater" + k="-14" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="guilsinglright" + k="20" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="multiply" + k="6" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="parenright" + k="-27" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="88" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="comma,period,ellipsis" + k="190" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="s,scaron" + k="41" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="florin" + k="123" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="x" + k="4" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="z,zcaron" + k="10" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="lslash" + k="6" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="bar" + k="-35" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="brokenbar" + k="-35" /> + <hkern g1="X" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="59" /> + <hkern g1="X" + g2="J" + k="41" /> + <hkern g1="X" + g2="Oslash" + k="49" /> + <hkern g1="X" + g2="S,Scaron" + k="14" /> + <hkern g1="X" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="-16" /> + <hkern g1="X" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="4" /> + <hkern g1="X" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-20" /> + <hkern g1="X" + g2="Y,Yacute,Ydieresis" + k="-20" /> + <hkern g1="X" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="14" /> + <hkern g1="X" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="66" /> + <hkern g1="X" + g2="copyright,registered" + k="70" /> + <hkern g1="X" + g2="guilsinglleft" + k="164" /> + <hkern g1="X" + g2="hyphen,endash,emdash" + k="111" /> + <hkern g1="X" + g2="m,n,p,r,ntilde" + k="4" /> + <hkern g1="X" + g2="oslash" + k="35" /> + <hkern g1="X" + g2="quotedbl,quotesingle" + k="-14" /> + <hkern g1="X" + g2="quoteleft,quotedblleft" + k="-14" /> + <hkern g1="X" + g2="quoteright,quotedblright" + k="-14" /> + <hkern g1="X" + g2="t" + k="20" /> + <hkern g1="X" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="41" /> + <hkern g1="X" + g2="w" + k="45" /> + <hkern g1="X" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="51" /> + <hkern g1="X" + g2="Z,Zcaron" + k="-14" /> + <hkern g1="X" + g2="bracketright,braceright" + k="-27" /> + <hkern g1="X" + g2="colon,semicolon" + k="14" /> + <hkern g1="X" + g2="f,fi,fl,f_f_i,f_f_l" + k="6" /> + <hkern g1="X" + g2="guilsinglright" + k="61" /> + <hkern g1="X" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="20" /> + <hkern g1="X" + g2="comma,period,ellipsis" + k="6" /> + <hkern g1="X" + g2="s,scaron" + k="14" /> + <hkern g1="X" + g2="z,zcaron" + k="-6" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="96" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="J" + k="172" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="Oslash" + k="86" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="S,Scaron" + k="31" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="-41" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="V" + k="-20" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-20" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="Y,Yacute,Ydieresis" + k="-20" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="152" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="ampersand" + k="123" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="asciicircum" + k="14" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="asciitilde" + k="129" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="asterisk" + k="6" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="at" + k="96" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="backslash" + k="-27" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="braceleft" + k="55" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="bullet" + k="164" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="195" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="copyright,registered" + k="70" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="divide" + k="109" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="germandbls" + k="92" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="guilsinglleft" + k="207" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="hyphen,endash,emdash" + k="178" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="less" + k="137" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="m,n,p,r,ntilde" + k="129" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="ordfeminine" + k="14" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="ordmasculine" + k="14" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="oslash" + k="184" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="periodcentered" + k="129" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="plus" + k="117" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="questiondown" + k="205" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="quotedbl,quotesingle" + k="-14" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="quoteleft,quotedblleft" + k="-27" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="quoteright,quotedblright" + k="-27" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="quotesinglbase,quotedblbase" + k="225" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="slash" + k="199" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="t" + k="39" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="trademark" + k="-14" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="133" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="underscore" + k="143" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="92" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="w" + k="106" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="92" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="Eth" + k="14" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="X" + k="-20" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="Z,Zcaron" + k="-6" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="bracketright,braceright" + k="-27" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="colon,semicolon" + k="141" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="equal" + k="68" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="exclamdown" + k="82" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="f,fi,fl,f_f_i,f_f_l" + k="55" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="guilsinglright" + k="90" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="multiply" + k="61" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="parenright" + k="-27" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="152" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="comma,period,ellipsis" + k="266" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="s,scaron" + k="139" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="b,h,k,l,thorn" + k="4" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="florin" + k="184" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="x" + k="68" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="z,zcaron" + k="82" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="Lslash" + k="14" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="lslash" + k="14" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="i,igrave,iacute,icircumflex,idieresis" + k="14" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="j" + k="6" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="bar" + k="-20" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="brokenbar" + k="-20" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="41" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="Oslash" + k="31" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="-35" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="Y,Yacute,Ydieresis" + k="-6" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="ampersand" + k="14" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="asciitilde" + k="6" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="at" + k="20" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="bullet" + k="27" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="14" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="copyright,registered" + k="6" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="dagger" + k="-6" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="divide" + k="6" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="germandbls" + k="6" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="guilsinglleft" + k="55" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="hyphen,endash,emdash" + k="74" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="less" + k="10" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="oslash" + k="6" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="periodcentered" + k="27" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="plus" + k="16" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="question" + k="-6" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="questiondown" + k="-6" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="trademark" + k="-6" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="14" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="underscore" + k="-27" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="4" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="w" + k="10" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="27" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="X" + k="-14" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="daggerdbl" + k="-6" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="f,fi,fl,f_f_i,f_f_l" + k="-10" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="multiply" + k="-6" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="florin" + k="27" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="bar" + k="-6" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="brokenbar" + k="-6" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="ampersand" + k="35" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="asterisk" + k="41" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="at" + k="20" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="backslash" + k="123" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="ordfeminine" + k="27" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="ordmasculine" + k="27" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="quoteleft,quotedblleft" + k="76" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="quoteright,quotedblright" + k="41" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="trademark" + k="125" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="16" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="underscore" + k="-47" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="25" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="4" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="bracketright,braceright" + k="6" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="bullet" + k="4" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="2" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="colon,semicolon" + k="4" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="dagger" + k="6" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="daggerdbl" + k="6" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="exclam" + k="14" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="paragraph" + k="6" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="parenright" + k="6" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="question" + k="14" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="quotedbl,quotesingle" + k="14" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="t" + k="4" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="10" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="w" + k="6" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="ampersand" + k="35" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="asterisk" + k="68" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="backslash" + k="199" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="ordfeminine" + k="45" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="ordmasculine" + k="41" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="quoteleft,quotedblleft" + k="82" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="quoteright,quotedblright" + k="82" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="trademark" + k="131" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="6" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="underscore" + k="47" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="45" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="bracketright,braceright" + k="55" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="colon,semicolon" + k="14" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="dagger" + k="6" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="daggerdbl" + k="-6" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="exclam" + k="14" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="parenright" + k="55" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="question" + k="55" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="quotedbl,quotesingle" + k="47" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="t" + k="6" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="31" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="w" + k="25" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="comma,period,ellipsis" + k="35" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="germandbls" + k="6" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="lslash" + k="-27" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="quotesinglbase,quotedblbase" + k="27" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="slash" + k="86" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="x" + k="31" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="z,zcaron" + k="6" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="asciitilde" + k="-6" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="exclamdown" + k="14" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="florin" + k="29" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="guilsinglright" + k="6" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="questiondown" + k="29" /> + <hkern g1="c,ccedilla" + g2="ampersand" + k="29" /> + <hkern g1="c,ccedilla" + g2="asterisk" + k="27" /> + <hkern g1="c,ccedilla" + g2="at" + k="6" /> + <hkern g1="c,ccedilla" + g2="backslash" + k="150" /> + <hkern g1="c,ccedilla" + g2="ordfeminine" + k="25" /> + <hkern g1="c,ccedilla" + g2="ordmasculine" + k="20" /> + <hkern g1="c,ccedilla" + g2="quoteleft,quotedblleft" + k="41" /> + <hkern g1="c,ccedilla" + g2="quoteright,quotedblright" + k="29" /> + <hkern g1="c,ccedilla" + g2="trademark" + k="90" /> + <hkern g1="c,ccedilla" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="14" /> + <hkern g1="c,ccedilla" + g2="underscore" + k="14" /> + <hkern g1="c,ccedilla" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="16" /> + <hkern g1="c,ccedilla" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="6" /> + <hkern g1="c,ccedilla" + g2="bracketright,braceright" + k="14" /> + <hkern g1="c,ccedilla" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="10" /> + <hkern g1="c,ccedilla" + g2="parenright" + k="20" /> + <hkern g1="c,ccedilla" + g2="question" + k="6" /> + <hkern g1="c,ccedilla" + g2="quotedbl,quotesingle" + k="20" /> + <hkern g1="c,ccedilla" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="16" /> + <hkern g1="c,ccedilla" + g2="w" + k="16" /> + <hkern g1="c,ccedilla" + g2="comma,period,ellipsis" + k="6" /> + <hkern g1="c,ccedilla" + g2="quotesinglbase,quotedblbase" + k="16" /> + <hkern g1="c,ccedilla" + g2="slash" + k="35" /> + <hkern g1="c,ccedilla" + g2="x" + k="14" /> + <hkern g1="c,ccedilla" + g2="questiondown" + k="20" /> + <hkern g1="c,ccedilla" + g2="oslash" + k="10" /> + <hkern g1="c,ccedilla" + g2="hyphen,endash,emdash" + k="4" /> + <hkern g1="d,l,fl" + g2="ampersand" + k="14" /> + <hkern g1="d,l,fl" + g2="backslash" + k="6" /> + <hkern g1="d,l,fl" + g2="ordfeminine" + k="14" /> + <hkern g1="d,l,fl" + g2="ordmasculine" + k="6" /> + <hkern g1="d,l,fl" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="6" /> + <hkern g1="d,l,fl" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="4" /> + <hkern g1="d,l,fl" + g2="dagger" + k="-6" /> + <hkern g1="d,l,fl" + g2="daggerdbl" + k="-6" /> + <hkern g1="d,l,fl" + g2="comma,period,ellipsis" + k="6" /> + <hkern g1="d,l,fl" + g2="germandbls" + k="6" /> + <hkern g1="d,l,fl" + g2="exclamdown" + k="6" /> + <hkern g1="d,l,fl" + g2="questiondown" + k="6" /> + <hkern g1="d,l,fl" + g2="guilsinglleft" + k="6" /> + <hkern g1="d,l,fl" + g2="periodcentered" + k="6" /> + <hkern g1="d,l,fl" + g2="plus" + k="14" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="ampersand" + k="35" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="asterisk" + k="41" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="backslash" + k="150" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="ordfeminine" + k="35" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="ordmasculine" + k="41" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="quoteleft,quotedblleft" + k="76" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="quoteright,quotedblright" + k="82" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="trademark" + k="150" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="20" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="underscore" + k="14" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="16" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="bracketright,braceright" + k="27" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="paragraph" + k="6" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="parenright" + k="35" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="question" + k="47" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="quotedbl,quotesingle" + k="27" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="20" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="w" + k="14" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="comma,period,ellipsis" + k="27" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="germandbls" + k="6" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="lslash" + k="-14" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="quotesinglbase,quotedblbase" + k="20" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="slash" + k="10" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="x" + k="14" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="exclamdown" + k="6" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="questiondown" + k="41" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="divide" + k="-6" /> + <hkern g1="f" + g2="asterisk" + k="-82" /> + <hkern g1="f" + g2="at" + k="-10" /> + <hkern g1="f" + g2="backslash" + k="-68" /> + <hkern g1="f" + g2="ordfeminine" + k="-6" /> + <hkern g1="f" + g2="ordmasculine" + k="-14" /> + <hkern g1="f" + g2="quoteleft,quotedblleft" + k="-88" /> + <hkern g1="f" + g2="quoteright,quotedblright" + k="-61" /> + <hkern g1="f" + g2="trademark" + k="-55" /> + <hkern g1="f" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="6" /> + <hkern g1="f" + g2="underscore" + k="55" /> + <hkern g1="f" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-41" /> + <hkern g1="f" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="20" /> + <hkern g1="f" + g2="bracketright,braceright" + k="-47" /> + <hkern g1="f" + g2="bullet" + k="14" /> + <hkern g1="f" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="31" /> + <hkern g1="f" + g2="colon,semicolon" + k="-14" /> + <hkern g1="f" + g2="dagger" + k="-96" /> + <hkern g1="f" + g2="daggerdbl" + k="-82" /> + <hkern g1="f" + g2="exclam" + k="-35" /> + <hkern g1="f" + g2="paragraph" + k="-76" /> + <hkern g1="f" + g2="parenright" + k="-55" /> + <hkern g1="f" + g2="question" + k="-55" /> + <hkern g1="f" + g2="quotedbl,quotesingle" + k="-102" /> + <hkern g1="f" + g2="t" + k="-25" /> + <hkern g1="f" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="-25" /> + <hkern g1="f" + g2="w" + k="-25" /> + <hkern g1="f" + g2="comma,period,ellipsis" + k="117" /> + <hkern g1="f" + g2="lslash" + k="-14" /> + <hkern g1="f" + g2="quotesinglbase,quotedblbase" + k="96" /> + <hkern g1="f" + g2="slash" + k="27" /> + <hkern g1="f" + g2="x" + k="-27" /> + <hkern g1="f" + g2="z,zcaron" + k="-35" /> + <hkern g1="f" + g2="asciitilde" + k="14" /> + <hkern g1="f" + g2="exclamdown" + k="-6" /> + <hkern g1="f" + g2="guilsinglright" + k="-14" /> + <hkern g1="f" + g2="questiondown" + k="61" /> + <hkern g1="f" + g2="oslash" + k="31" /> + <hkern g1="f" + g2="hyphen,endash,emdash" + k="14" /> + <hkern g1="f" + g2="guilsinglleft" + k="20" /> + <hkern g1="f" + g2="periodcentered" + k="-6" /> + <hkern g1="f" + g2="plus" + k="14" /> + <hkern g1="f" + g2="asciicircum" + k="-47" /> + <hkern g1="f" + g2="bar" + k="-61" /> + <hkern g1="f" + g2="brokenbar" + k="-82" /> + <hkern g1="f" + g2="copyright,registered" + k="-20" /> + <hkern g1="f" + g2="f,fi,fl,f_f_i,f_f_l" + k="4" /> + <hkern g1="f" + g2="greater" + k="-76" /> + <hkern g1="f" + g2="j" + k="-33" /> + <hkern g1="f" + g2="multiply" + k="-41" /> + <hkern g1="f" + g2="section" + k="-47" /> + <hkern g1="f" + g2="s,scaron" + k="-6" /> + <hkern g1="g" + g2="ampersand" + k="29" /> + <hkern g1="g" + g2="backslash" + k="96" /> + <hkern g1="g" + g2="ordfeminine" + k="37" /> + <hkern g1="g" + g2="ordmasculine" + k="4" /> + <hkern g1="g" + g2="quoteleft,quotedblleft" + k="6" /> + <hkern g1="g" + g2="quoteright,quotedblright" + k="20" /> + <hkern g1="g" + g2="trademark" + k="61" /> + <hkern g1="g" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="10" /> + <hkern g1="g" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="10" /> + <hkern g1="g" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="10" /> + <hkern g1="g" + g2="bracketright,braceright" + k="14" /> + <hkern g1="g" + g2="exclam" + k="6" /> + <hkern g1="g" + g2="parenright" + k="14" /> + <hkern g1="g" + g2="question" + k="6" /> + <hkern g1="g" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="4" /> + <hkern g1="g" + g2="w" + k="10" /> + <hkern g1="g" + g2="comma,period,ellipsis" + k="6" /> + <hkern g1="g" + g2="germandbls" + k="6" /> + <hkern g1="g" + g2="hyphen,endash,emdash" + k="4" /> + <hkern g1="g" + g2="guilsinglleft" + k="14" /> + <hkern g1="g" + g2="divide" + k="6" /> + <hkern g1="germandbls" + g2="quoteleft,quotedblleft" + k="6" /> + <hkern g1="germandbls" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="14" /> + <hkern g1="germandbls" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="6" /> + <hkern g1="germandbls" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="-4" /> + <hkern g1="germandbls" + g2="bracketright,braceright" + k="-27" /> + <hkern g1="germandbls" + g2="t" + k="4" /> + <hkern g1="germandbls" + g2="w" + k="6" /> + <hkern g1="germandbls" + g2="oslash" + k="-4" /> + <hkern g1="germandbls" + g2="s,scaron" + k="-4" /> + <hkern g1="h,m,n,ntilde" + g2="ampersand" + k="14" /> + <hkern g1="h,m,n,ntilde" + g2="asterisk" + k="14" /> + <hkern g1="h,m,n,ntilde" + g2="at" + k="14" /> + <hkern g1="h,m,n,ntilde" + g2="backslash" + k="137" /> + <hkern g1="h,m,n,ntilde" + g2="ordfeminine" + k="27" /> + <hkern g1="h,m,n,ntilde" + g2="ordmasculine" + k="14" /> + <hkern g1="h,m,n,ntilde" + g2="quoteleft,quotedblleft" + k="68" /> + <hkern g1="h,m,n,ntilde" + g2="quoteright,quotedblright" + k="96" /> + <hkern g1="h,m,n,ntilde" + g2="trademark" + k="117" /> + <hkern g1="h,m,n,ntilde" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="14" /> + <hkern g1="h,m,n,ntilde" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="10" /> + <hkern g1="h,m,n,ntilde" + g2="colon,semicolon" + k="4" /> + <hkern g1="h,m,n,ntilde" + g2="dagger" + k="10" /> + <hkern g1="h,m,n,ntilde" + g2="question" + k="35" /> + <hkern g1="h,m,n,ntilde" + g2="quotedbl,quotesingle" + k="6" /> + <hkern g1="h,m,n,ntilde" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="10" /> + <hkern g1="h,m,n,ntilde" + g2="w" + k="4" /> + <hkern g1="h,m,n,ntilde" + g2="germandbls" + k="14" /> + <hkern g1="h,m,n,ntilde" + g2="exclamdown" + k="4" /> + <hkern g1="h,m,n,ntilde" + g2="periodcentered" + k="4" /> + <hkern g1="h,m,n,ntilde" + g2="copyright,registered" + k="6" /> + <hkern g1="h,m,n,ntilde" + g2="equal" + k="6" /> + <hkern g1="i,q,igrave,iacute,icircumflex,idieresis,fi,f_f_i" + g2="ampersand" + k="14" /> + <hkern g1="i,q,igrave,iacute,icircumflex,idieresis,fi,f_f_i" + g2="backslash" + k="88" /> + <hkern g1="i,q,igrave,iacute,icircumflex,idieresis,fi,f_f_i" + g2="trademark" + k="6" /> + <hkern g1="i,q,igrave,iacute,icircumflex,idieresis,fi,f_f_i" + g2="question" + k="6" /> + <hkern g1="i,q,igrave,iacute,icircumflex,idieresis,fi,f_f_i" + g2="quotesinglbase,quotedblbase" + k="6" /> + <hkern g1="i,q,igrave,iacute,icircumflex,idieresis,fi,f_f_i" + g2="exclamdown" + k="6" /> + <hkern g1="i,q,igrave,iacute,icircumflex,idieresis,fi,f_f_i" + g2="guilsinglleft" + k="6" /> + <hkern g1="j" + g2="ampersand" + k="14" /> + <hkern g1="j" + g2="at" + k="6" /> + <hkern g1="j" + g2="backslash" + k="6" /> + <hkern g1="j" + g2="ordfeminine" + k="6" /> + <hkern g1="j" + g2="quoteright,quotedblright" + k="-6" /> + <hkern g1="j" + g2="dagger" + k="-14" /> + <hkern g1="j" + g2="daggerdbl" + k="-68" /> + <hkern g1="j" + g2="comma,period,ellipsis" + k="6" /> + <hkern g1="j" + g2="germandbls" + k="10" /> + <hkern g1="j" + g2="asciitilde" + k="6" /> + <hkern g1="j" + g2="guilsinglleft" + k="6" /> + <hkern g1="j" + g2="periodcentered" + k="6" /> + <hkern g1="j" + g2="f,fi,fl,f_f_i,f_f_l" + k="-4" /> + <hkern g1="j" + g2="greater" + k="-14" /> + <hkern g1="k" + g2="ampersand" + k="29" /> + <hkern g1="k" + g2="asterisk" + k="14" /> + <hkern g1="k" + g2="at" + k="10" /> + <hkern g1="k" + g2="backslash" + k="61" /> + <hkern g1="k" + g2="quoteleft,quotedblleft" + k="-6" /> + <hkern g1="k" + g2="trademark" + k="55" /> + <hkern g1="k" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="10" /> + <hkern g1="k" + g2="underscore" + k="-68" /> + <hkern g1="k" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="27" /> + <hkern g1="k" + g2="bracketright,braceright" + k="14" /> + <hkern g1="k" + g2="bullet" + k="35" /> + <hkern g1="k" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="47" /> + <hkern g1="k" + g2="colon,semicolon" + k="16" /> + <hkern g1="k" + g2="dagger" + k="-27" /> + <hkern g1="k" + g2="daggerdbl" + k="-27" /> + <hkern g1="k" + g2="paragraph" + k="-14" /> + <hkern g1="k" + g2="parenright" + k="14" /> + <hkern g1="k" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="20" /> + <hkern g1="k" + g2="comma,period,ellipsis" + k="6" /> + <hkern g1="k" + g2="quotesinglbase,quotedblbase" + k="-35" /> + <hkern g1="k" + g2="slash" + k="-41" /> + <hkern g1="k" + g2="z,zcaron" + k="-6" /> + <hkern g1="k" + g2="asciitilde" + k="27" /> + <hkern g1="k" + g2="exclamdown" + k="-14" /> + <hkern g1="k" + g2="guilsinglright" + k="-6" /> + <hkern g1="k" + g2="questiondown" + k="-20" /> + <hkern g1="k" + g2="oslash" + k="14" /> + <hkern g1="k" + g2="hyphen,endash,emdash" + k="61" /> + <hkern g1="k" + g2="guilsinglleft" + k="68" /> + <hkern g1="k" + g2="periodcentered" + k="6" /> + <hkern g1="k" + g2="plus" + k="27" /> + <hkern g1="k" + g2="divide" + k="20" /> + <hkern g1="k" + g2="asciicircum" + k="6" /> + <hkern g1="k" + g2="brokenbar" + k="-14" /> + <hkern g1="k" + g2="copyright,registered" + k="6" /> + <hkern g1="k" + g2="f,fi,fl,f_f_i,f_f_l" + k="-4" /> + <hkern g1="k" + g2="greater" + k="-88" /> + <hkern g1="k" + g2="multiply" + k="-27" /> + <hkern g1="k" + g2="braceleft" + k="14" /> + <hkern g1="k" + g2="less" + k="47" /> + <hkern g1="lslash" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="-4" /> + <hkern g1="lslash" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-41" /> + <hkern g1="lslash" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="-20" /> + <hkern g1="lslash" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="-10" /> + <hkern g1="lslash" + g2="colon,semicolon" + k="-6" /> + <hkern g1="lslash" + g2="quotedbl,quotesingle" + k="-14" /> + <hkern g1="lslash" + g2="t" + k="-41" /> + <hkern g1="lslash" + g2="w" + k="-41" /> + <hkern g1="lslash" + g2="comma,period,ellipsis" + k="29" /> + <hkern g1="lslash" + g2="quotesinglbase,quotedblbase" + k="29" /> + <hkern g1="lslash" + g2="z,zcaron" + k="-41" /> + <hkern g1="lslash" + g2="oslash" + k="-6" /> + <hkern g1="lslash" + g2="hyphen,endash,emdash" + k="-6" /> + <hkern g1="lslash" + g2="guilsinglleft" + k="-6" /> + <hkern g1="lslash" + g2="copyright,registered" + k="-27" /> + <hkern g1="lslash" + g2="f,fi,fl,f_f_i,f_f_l" + k="-51" /> + <hkern g1="lslash" + g2="s,scaron" + k="-20" /> + <hkern g1="oslash" + g2="ampersand" + k="27" /> + <hkern g1="oslash" + g2="backslash" + k="150" /> + <hkern g1="oslash" + g2="quoteleft,quotedblleft" + k="47" /> + <hkern g1="oslash" + g2="quoteright,quotedblright" + k="41" /> + <hkern g1="oslash" + g2="trademark" + k="14" /> + <hkern g1="oslash" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="4" /> + <hkern g1="oslash" + g2="underscore" + k="47" /> + <hkern g1="oslash" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="27" /> + <hkern g1="oslash" + g2="bracketright,braceright" + k="27" /> + <hkern g1="oslash" + g2="parenright" + k="35" /> + <hkern g1="oslash" + g2="quotedbl,quotesingle" + k="27" /> + <hkern g1="oslash" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="25" /> + <hkern g1="oslash" + g2="w" + k="25" /> + <hkern g1="oslash" + g2="comma,period,ellipsis" + k="35" /> + <hkern g1="oslash" + g2="germandbls" + k="6" /> + <hkern g1="oslash" + g2="lslash" + k="-6" /> + <hkern g1="oslash" + g2="quotesinglbase,quotedblbase" + k="35" /> + <hkern g1="oslash" + g2="slash" + k="20" /> + <hkern g1="oslash" + g2="x" + k="16" /> + <hkern g1="oslash" + g2="exclamdown" + k="6" /> + <hkern g1="oslash" + g2="guilsinglright" + k="6" /> + <hkern g1="oslash" + g2="questiondown" + k="20" /> + <hkern g1="oslash" + g2="greater" + k="-6" /> + <hkern g1="r" + g2="ampersand" + k="20" /> + <hkern g1="r" + g2="asterisk" + k="-82" /> + <hkern g1="r" + g2="at" + k="-47" /> + <hkern g1="r" + g2="backslash" + k="35" /> + <hkern g1="r" + g2="ordmasculine" + k="-14" /> + <hkern g1="r" + g2="quoteleft,quotedblleft" + k="-6" /> + <hkern g1="r" + g2="quoteright,quotedblright" + k="-47" /> + <hkern g1="r" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="-6" /> + <hkern g1="r" + g2="underscore" + k="35" /> + <hkern g1="r" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-41" /> + <hkern g1="r" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="-6" /> + <hkern g1="r" + g2="bracketright,braceright" + k="-27" /> + <hkern g1="r" + g2="bullet" + k="-6" /> + <hkern g1="r" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="66" /> + <hkern g1="r" + g2="colon,semicolon" + k="-20" /> + <hkern g1="r" + g2="dagger" + k="-68" /> + <hkern g1="r" + g2="daggerdbl" + k="-68" /> + <hkern g1="r" + g2="exclam" + k="-47" /> + <hkern g1="r" + g2="paragraph" + k="-88" /> + <hkern g1="r" + g2="parenright" + k="14" /> + <hkern g1="r" + g2="question" + k="-41" /> + <hkern g1="r" + g2="quotedbl,quotesingle" + k="-68" /> + <hkern g1="r" + g2="t" + k="-47" /> + <hkern g1="r" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="-35" /> + <hkern g1="r" + g2="w" + k="-27" /> + <hkern g1="r" + g2="comma,period,ellipsis" + k="170" /> + <hkern g1="r" + g2="quotesinglbase,quotedblbase" + k="55" /> + <hkern g1="r" + g2="slash" + k="14" /> + <hkern g1="r" + g2="x" + k="-55" /> + <hkern g1="r" + g2="z,zcaron" + k="-27" /> + <hkern g1="r" + g2="exclamdown" + k="-35" /> + <hkern g1="r" + g2="florin" + k="6" /> + <hkern g1="r" + g2="guilsinglright" + k="-55" /> + <hkern g1="r" + g2="questiondown" + k="27" /> + <hkern g1="r" + g2="oslash" + k="6" /> + <hkern g1="r" + g2="periodcentered" + k="-6" /> + <hkern g1="r" + g2="plus" + k="-6" /> + <hkern g1="r" + g2="divide" + k="-20" /> + <hkern g1="r" + g2="asciicircum" + k="-29" /> + <hkern g1="r" + g2="bar" + k="-61" /> + <hkern g1="r" + g2="brokenbar" + k="-47" /> + <hkern g1="r" + g2="copyright,registered" + k="-61" /> + <hkern g1="r" + g2="f,fi,fl,f_f_i,f_f_l" + k="-47" /> + <hkern g1="r" + g2="greater" + k="-35" /> + <hkern g1="r" + g2="j" + k="-4" /> + <hkern g1="r" + g2="multiply" + k="-14" /> + <hkern g1="r" + g2="section" + k="-47" /> + <hkern g1="r" + g2="s,scaron" + k="43" /> + <hkern g1="r" + g2="equal" + k="-20" /> + <hkern g1="r" + g2="less" + k="-6" /> + <hkern g1="r" + g2="b,h,k,l,thorn" + k="-4" /> + <hkern g1="r" + g2="i,igrave,iacute,icircumflex,idieresis" + k="-4" /> + <hkern g1="r" + g2="m,n,p,r,ntilde" + k="-4" /> + <hkern g1="s,scaron" + g2="ampersand" + k="14" /> + <hkern g1="s,scaron" + g2="asterisk" + k="20" /> + <hkern g1="s,scaron" + g2="backslash" + k="123" /> + <hkern g1="s,scaron" + g2="ordfeminine" + k="41" /> + <hkern g1="s,scaron" + g2="ordmasculine" + k="35" /> + <hkern g1="s,scaron" + g2="quoteleft,quotedblleft" + k="27" /> + <hkern g1="s,scaron" + g2="quoteright,quotedblright" + k="59" /> + <hkern g1="s,scaron" + g2="trademark" + k="96" /> + <hkern g1="s,scaron" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="8" /> + <hkern g1="s,scaron" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="14" /> + <hkern g1="s,scaron" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="14" /> + <hkern g1="s,scaron" + g2="bracketright,braceright" + k="6" /> + <hkern g1="s,scaron" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="6" /> + <hkern g1="s,scaron" + g2="parenright" + k="18" /> + <hkern g1="s,scaron" + g2="question" + k="6" /> + <hkern g1="s,scaron" + g2="quotedbl,quotesingle" + k="14" /> + <hkern g1="s,scaron" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="14" /> + <hkern g1="s,scaron" + g2="w" + k="14" /> + <hkern g1="s,scaron" + g2="germandbls" + k="10" /> + <hkern g1="s,scaron" + g2="quotesinglbase,quotedblbase" + k="-4" /> + <hkern g1="s,scaron" + g2="slash" + k="-14" /> + <hkern g1="s,scaron" + g2="x" + k="10" /> + <hkern g1="s,scaron" + g2="z,zcaron" + k="-4" /> + <hkern g1="s,scaron" + g2="florin" + k="14" /> + <hkern g1="s,scaron" + g2="oslash" + k="6" /> + <hkern g1="s,scaron" + g2="guilsinglleft" + k="14" /> + <hkern g1="s,scaron" + g2="periodcentered" + k="6" /> + <hkern g1="s,scaron" + g2="greater" + k="-14" /> + <hkern g1="t" + g2="asterisk" + k="-20" /> + <hkern g1="t" + g2="backslash" + k="6" /> + <hkern g1="t" + g2="quoteleft,quotedblleft" + k="14" /> + <hkern g1="t" + g2="quoteright,quotedblright" + k="33" /> + <hkern g1="t" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="-6" /> + <hkern g1="t" + g2="underscore" + k="-61" /> + <hkern g1="t" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-20" /> + <hkern g1="t" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="-6" /> + <hkern g1="t" + g2="bracketright,braceright" + k="-14" /> + <hkern g1="t" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="6" /> + <hkern g1="t" + g2="colon,semicolon" + k="-6" /> + <hkern g1="t" + g2="paragraph" + k="-14" /> + <hkern g1="t" + g2="parenright" + k="-14" /> + <hkern g1="t" + g2="question" + k="-20" /> + <hkern g1="t" + g2="quotedbl,quotesingle" + k="-6" /> + <hkern g1="t" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="-14" /> + <hkern g1="t" + g2="w" + k="-14" /> + <hkern g1="t" + g2="quotesinglbase,quotedblbase" + k="-14" /> + <hkern g1="t" + g2="slash" + k="-47" /> + <hkern g1="t" + g2="x" + k="-47" /> + <hkern g1="t" + g2="z,zcaron" + k="-45" /> + <hkern g1="t" + g2="exclamdown" + k="-6" /> + <hkern g1="t" + g2="guilsinglright" + k="-14" /> + <hkern g1="t" + g2="questiondown" + k="-6" /> + <hkern g1="t" + g2="asciicircum" + k="-6" /> + <hkern g1="t" + g2="copyright,registered" + k="-6" /> + <hkern g1="t" + g2="greater" + k="-29" /> + <hkern g1="t" + g2="j" + k="-6" /> + <hkern g1="t" + g2="s,scaron" + k="-20" /> + <hkern g1="t" + g2="b,h,k,l,thorn" + k="25" /> + <hkern g1="t" + g2="i,igrave,iacute,icircumflex,idieresis" + k="-4" /> + <hkern g1="t" + g2="m,n,p,r,ntilde" + k="14" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="ampersand" + k="14" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="at" + k="10" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="backslash" + k="82" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="ordfeminine" + k="35" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="ordmasculine" + k="27" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="quoteleft,quotedblleft" + k="20" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="quoteright,quotedblright" + k="6" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="trademark" + k="47" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="6" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="bracketright,braceright" + k="4" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="6" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="parenright" + k="10" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="germandbls" + k="10" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="oslash" + k="6" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="guilsinglleft" + k="6" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="f,fi,fl,f_f_i,f_f_l" + k="-4" /> + <hkern g1="v,wcircumflex,ycircumflex,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-14" /> + <hkern g1="v,wcircumflex,ycircumflex,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="6" /> + <hkern g1="v,wcircumflex,ycircumflex,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="bracketright,braceright" + k="14" /> + <hkern g1="v,wcircumflex,ycircumflex,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="31" /> + <hkern g1="v,wcircumflex,ycircumflex,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="colon,semicolon" + k="6" /> + <hkern g1="v,wcircumflex,ycircumflex,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="quotedbl,quotesingle" + k="-27" /> + <hkern g1="v,wcircumflex,ycircumflex,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="t" + k="-35" /> + <hkern g1="v,wcircumflex,ycircumflex,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="w" + k="-6" /> + <hkern g1="v,wcircumflex,ycircumflex,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="comma,period,ellipsis" + k="170" /> + <hkern g1="v,wcircumflex,ycircumflex,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="quotesinglbase,quotedblbase" + k="96" /> + <hkern g1="v,wcircumflex,ycircumflex,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="z,zcaron" + k="-14" /> + <hkern g1="v,wcircumflex,ycircumflex,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="guilsinglright" + k="-27" /> + <hkern g1="v,wcircumflex,ycircumflex,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="oslash" + k="20" /> + <hkern g1="v,wcircumflex,ycircumflex,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="hyphen,endash,emdash" + k="20" /> + <hkern g1="v,wcircumflex,ycircumflex,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="guilsinglleft" + k="14" /> + <hkern g1="v,wcircumflex,ycircumflex,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="copyright,registered" + k="-6" /> + <hkern g1="v,wcircumflex,ycircumflex,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="f,fi,fl,f_f_i,f_f_l" + k="-37" /> + <hkern g1="w" + g2="ampersand" + k="35" /> + <hkern g1="w" + g2="asterisk" + k="-6" /> + <hkern g1="w" + g2="at" + k="-25" /> + <hkern g1="w" + g2="backslash" + k="47" /> + <hkern g1="w" + g2="ordmasculine" + k="-10" /> + <hkern g1="w" + g2="quoteleft,quotedblleft" + k="-6" /> + <hkern g1="w" + g2="quoteright,quotedblright" + k="-6" /> + <hkern g1="w" + g2="trademark" + k="6" /> + <hkern g1="w" + g2="underscore" + k="82" /> + <hkern g1="w" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-6" /> + <hkern g1="w" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="6" /> + <hkern g1="w" + g2="bracketright,braceright" + k="41" /> + <hkern g1="w" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="25" /> + <hkern g1="w" + g2="dagger" + k="-61" /> + <hkern g1="w" + g2="daggerdbl" + k="-76" /> + <hkern g1="w" + g2="paragraph" + k="-14" /> + <hkern g1="w" + g2="parenright" + k="47" /> + <hkern g1="w" + g2="question" + k="-14" /> + <hkern g1="w" + g2="quotedbl,quotesingle" + k="-27" /> + <hkern g1="w" + g2="t" + k="-35" /> + <hkern g1="w" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="-6" /> + <hkern g1="w" + g2="comma,period,ellipsis" + k="88" /> + <hkern g1="w" + g2="germandbls" + k="4" /> + <hkern g1="w" + g2="quotesinglbase,quotedblbase" + k="88" /> + <hkern g1="w" + g2="slash" + k="47" /> + <hkern g1="w" + g2="x" + k="-6" /> + <hkern g1="w" + g2="z,zcaron" + k="-10" /> + <hkern g1="w" + g2="exclamdown" + k="6" /> + <hkern g1="w" + g2="florin" + k="14" /> + <hkern g1="w" + g2="questiondown" + k="55" /> + <hkern g1="w" + g2="oslash" + k="25" /> + <hkern g1="w" + g2="hyphen,endash,emdash" + k="14" /> + <hkern g1="w" + g2="guilsinglleft" + k="25" /> + <hkern g1="w" + g2="plus" + k="4" /> + <hkern g1="w" + g2="divide" + k="6" /> + <hkern g1="w" + g2="asciicircum" + k="-14" /> + <hkern g1="w" + g2="bar" + k="-35" /> + <hkern g1="w" + g2="brokenbar" + k="-35" /> + <hkern g1="w" + g2="copyright,registered" + k="-14" /> + <hkern g1="w" + g2="f,fi,fl,f_f_i,f_f_l" + k="-35" /> + <hkern g1="w" + g2="greater" + k="-14" /> + <hkern g1="w" + g2="multiply" + k="-6" /> + <hkern g1="w" + g2="less" + k="6" /> + <hkern g1="x" + g2="quoteright,quotedblright" + k="6" /> + <hkern g1="x" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="10" /> + <hkern g1="x" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-6" /> + <hkern g1="x" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="4" /> + <hkern g1="x" + g2="bracketright,braceright" + k="6" /> + <hkern g1="x" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="31" /> + <hkern g1="x" + g2="colon,semicolon" + k="6" /> + <hkern g1="x" + g2="quotedbl,quotesingle" + k="-14" /> + <hkern g1="x" + g2="t" + k="-14" /> + <hkern g1="x" + g2="w" + k="-6" /> + <hkern g1="x" + g2="quotesinglbase,quotedblbase" + k="-20" /> + <hkern g1="x" + g2="z,zcaron" + k="-35" /> + <hkern g1="x" + g2="oslash" + k="20" /> + <hkern g1="x" + g2="hyphen,endash,emdash" + k="39" /> + <hkern g1="x" + g2="guilsinglleft" + k="27" /> + <hkern g1="x" + g2="copyright,registered" + k="6" /> + <hkern g1="x" + g2="f,fi,fl,f_f_i,f_f_l" + k="-27" /> + <hkern g1="y,yacute,ydieresis" + g2="ampersand" + k="41" /> + <hkern g1="y,yacute,ydieresis" + g2="asterisk" + k="-14" /> + <hkern g1="y,yacute,ydieresis" + g2="at" + k="-14" /> + <hkern g1="y,yacute,ydieresis" + g2="backslash" + k="61" /> + <hkern g1="y,yacute,ydieresis" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="10" /> + <hkern g1="y,yacute,ydieresis" + g2="underscore" + k="102" /> + <hkern g1="y,yacute,ydieresis" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-6" /> + <hkern g1="y,yacute,ydieresis" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="31" /> + <hkern g1="y,yacute,ydieresis" + g2="bracketright,braceright" + k="29" /> + <hkern g1="y,yacute,ydieresis" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="45" /> + <hkern g1="y,yacute,ydieresis" + g2="colon,semicolon" + k="10" /> + <hkern g1="y,yacute,ydieresis" + g2="dagger" + k="-47" /> + <hkern g1="y,yacute,ydieresis" + g2="daggerdbl" + k="-47" /> + <hkern g1="y,yacute,ydieresis" + g2="paragraph" + k="-14" /> + <hkern g1="y,yacute,ydieresis" + g2="parenright" + k="29" /> + <hkern g1="y,yacute,ydieresis" + g2="question" + k="-20" /> + <hkern g1="y,yacute,ydieresis" + g2="quotedbl,quotesingle" + k="-20" /> + <hkern g1="y,yacute,ydieresis" + g2="t" + k="-20" /> + <hkern g1="y,yacute,ydieresis" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="-6" /> + <hkern g1="y,yacute,ydieresis" + g2="comma,period,ellipsis" + k="211" /> + <hkern g1="y,yacute,ydieresis" + g2="germandbls" + k="4" /> + <hkern g1="y,yacute,ydieresis" + g2="lslash" + k="4" /> + <hkern g1="y,yacute,ydieresis" + g2="quotesinglbase,quotedblbase" + k="137" /> + <hkern g1="y,yacute,ydieresis" + g2="slash" + k="49" /> + <hkern g1="y,yacute,ydieresis" + g2="exclamdown" + k="6" /> + <hkern g1="y,yacute,ydieresis" + g2="florin" + k="20" /> + <hkern g1="y,yacute,ydieresis" + g2="questiondown" + k="76" /> + <hkern g1="y,yacute,ydieresis" + g2="oslash" + k="37" /> + <hkern g1="y,yacute,ydieresis" + g2="hyphen,endash,emdash" + k="47" /> + <hkern g1="y,yacute,ydieresis" + g2="guilsinglleft" + k="27" /> + <hkern g1="y,yacute,ydieresis" + g2="periodcentered" + k="6" /> + <hkern g1="y,yacute,ydieresis" + g2="divide" + k="6" /> + <hkern g1="y,yacute,ydieresis" + g2="asciicircum" + k="-6" /> + <hkern g1="y,yacute,ydieresis" + g2="bar" + k="-27" /> + <hkern g1="y,yacute,ydieresis" + g2="brokenbar" + k="-27" /> + <hkern g1="y,yacute,ydieresis" + g2="copyright,registered" + k="-6" /> + <hkern g1="y,yacute,ydieresis" + g2="f,fi,fl,f_f_i,f_f_l" + k="-27" /> + <hkern g1="y,yacute,ydieresis" + g2="greater" + k="-20" /> + <hkern g1="y,yacute,ydieresis" + g2="multiply" + k="-14" /> + <hkern g1="y,yacute,ydieresis" + g2="section" + k="-6" /> + <hkern g1="y,yacute,ydieresis" + g2="s,scaron" + k="16" /> + <hkern g1="z,zcaron" + g2="ampersand" + k="14" /> + <hkern g1="z,zcaron" + g2="asterisk" + k="-6" /> + <hkern g1="z,zcaron" + g2="backslash" + k="78" /> + <hkern g1="z,zcaron" + g2="trademark" + k="6" /> + <hkern g1="z,zcaron" + g2="underscore" + k="-20" /> + <hkern g1="z,zcaron" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-4" /> + <hkern g1="z,zcaron" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="-6" /> + <hkern g1="z,zcaron" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="4" /> + <hkern g1="z,zcaron" + g2="dagger" + k="-27" /> + <hkern g1="z,zcaron" + g2="daggerdbl" + k="-27" /> + <hkern g1="z,zcaron" + g2="paragraph" + k="-6" /> + <hkern g1="z,zcaron" + g2="t" + k="-18" /> + <hkern g1="z,zcaron" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="-4" /> + <hkern g1="z,zcaron" + g2="w" + k="-4" /> + <hkern g1="z,zcaron" + g2="lslash" + k="-14" /> + <hkern g1="z,zcaron" + g2="quotesinglbase,quotedblbase" + k="-6" /> + <hkern g1="z,zcaron" + g2="slash" + k="-14" /> + <hkern g1="z,zcaron" + g2="x" + k="-14" /> + <hkern g1="z,zcaron" + g2="z,zcaron" + k="-4" /> + <hkern g1="z,zcaron" + g2="questiondown" + k="-6" /> + <hkern g1="z,zcaron" + g2="guilsinglleft" + k="16" /> + <hkern g1="z,zcaron" + g2="plus" + k="-6" /> + <hkern g1="z,zcaron" + g2="bar" + k="-27" /> + <hkern g1="z,zcaron" + g2="brokenbar" + k="-6" /> + <hkern g1="z,zcaron" + g2="f,fi,fl,f_f_i,f_f_l" + k="-20" /> + <hkern g1="z,zcaron" + g2="greater" + k="-14" /> + <hkern g1="ampersand" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="143" /> + <hkern g1="ampersand" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="20" /> + <hkern g1="ampersand" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="76" /> + <hkern g1="ampersand" + g2="Y,Yacute,Ydieresis" + k="174" /> + <hkern g1="ampersand" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="10" /> + <hkern g1="ampersand" + g2="J" + k="-6" /> + <hkern g1="ampersand" + g2="Oslash" + k="6" /> + <hkern g1="ampersand" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="4" /> + <hkern g1="ampersand" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="20" /> + <hkern g1="asciicircum" + g2="Y,Yacute,Ydieresis" + k="14" /> + <hkern g1="asciicircum" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="-20" /> + <hkern g1="asciicircum" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-6" /> + <hkern g1="asciicircum" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="70" /> + <hkern g1="asciicircum" + g2="Eth" + k="-6" /> + <hkern g1="asciicircum" + g2="f,fi,fl,f_f_i,f_f_l" + k="-20" /> + <hkern g1="asciicircum" + g2="w" + k="-14" /> + <hkern g1="asciitilde" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="137" /> + <hkern g1="asciitilde" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="6" /> + <hkern g1="asciitilde" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="41" /> + <hkern g1="asciitilde" + g2="Y,Yacute,Ydieresis" + k="129" /> + <hkern g1="asciitilde" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="-20" /> + <hkern g1="asciitilde" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="41" /> + <hkern g1="asciitilde" + g2="Z,Zcaron" + k="6" /> + <hkern g1="asciitilde" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="-6" /> + <hkern g1="asciitilde" + g2="j" + k="6" /> + <hkern g1="asciitilde" + g2="z,zcaron" + k="4" /> + <hkern g1="at" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="51" /> + <hkern g1="at" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="6" /> + <hkern g1="at" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="41" /> + <hkern g1="at" + g2="Y,Yacute,Ydieresis" + k="96" /> + <hkern g1="at" + g2="J" + k="35" /> + <hkern g1="at" + g2="Oslash" + k="4" /> + <hkern g1="at" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="4" /> + <hkern g1="at" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-16" /> + <hkern g1="at" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="82" /> + <hkern g1="at" + g2="Eth" + k="-14" /> + <hkern g1="at" + g2="f,fi,fl,f_f_i,f_f_l" + k="-6" /> + <hkern g1="at" + g2="w" + k="-20" /> + <hkern g1="at" + g2="Z,Zcaron" + k="35" /> + <hkern g1="at" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="14" /> + <hkern g1="at" + g2="z,zcaron" + k="-6" /> + <hkern g1="at" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="6" /> + <hkern g1="at" + g2="m,n,p,r,ntilde" + k="10" /> + <hkern g1="at" + g2="oslash" + k="10" /> + <hkern g1="at" + g2="s,scaron" + k="4" /> + <hkern g1="bar" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="-35" /> + <hkern g1="bar" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-35" /> + <hkern g1="bar" + g2="Y,Yacute,Ydieresis" + k="-20" /> + <hkern g1="bar" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-27" /> + <hkern g1="bar" + g2="w" + k="-35" /> + <hkern g1="bar" + g2="Z,Zcaron" + k="-6" /> + <hkern g1="bar" + g2="j" + k="-20" /> + <hkern g1="bar" + g2="z,zcaron" + k="-20" /> + <hkern g1="brokenbar" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="-41" /> + <hkern g1="brokenbar" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-35" /> + <hkern g1="brokenbar" + g2="Y,Yacute,Ydieresis" + k="-20" /> + <hkern g1="brokenbar" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-27" /> + <hkern g1="brokenbar" + g2="w" + k="-35" /> + <hkern g1="brokenbar" + g2="Z,Zcaron" + k="-6" /> + <hkern g1="brokenbar" + g2="z,zcaron" + k="-6" /> + <hkern g1="copyright,registered" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="20" /> + <hkern g1="copyright,registered" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="14" /> + <hkern g1="copyright,registered" + g2="Y,Yacute,Ydieresis" + k="70" /> + <hkern g1="copyright,registered" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="-14" /> + <hkern g1="copyright,registered" + g2="J" + k="6" /> + <hkern g1="copyright,registered" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="61" /> + <hkern g1="copyright,registered" + g2="Eth" + k="-14" /> + <hkern g1="copyright,registered" + g2="f,fi,fl,f_f_i,f_f_l" + k="-6" /> + <hkern g1="copyright,registered" + g2="w" + k="-14" /> + <hkern g1="copyright,registered" + g2="Z,Zcaron" + k="6" /> + <hkern g1="copyright,registered" + g2="z,zcaron" + k="6" /> + <hkern g1="copyright,registered" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="27" /> + <hkern g1="copyright,registered" + g2="Lslash" + k="-14" /> + <hkern g1="copyright,registered" + g2="V" + k="41" /> + <hkern g1="copyright,registered" + g2="X" + k="70" /> + <hkern g1="copyright,registered" + g2="germandbls" + k="6" /> + <hkern g1="copyright,registered" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="-6" /> + <hkern g1="copyright,registered" + g2="x" + k="6" /> + <hkern g1="dagger" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="-20" /> + <hkern g1="dagger" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-14" /> + <hkern g1="dagger" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="-6" /> + <hkern g1="dagger" + g2="J" + k="20" /> + <hkern g1="dagger" + g2="Oslash" + k="-6" /> + <hkern g1="dagger" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-47" /> + <hkern g1="dagger" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="68" /> + <hkern g1="dagger" + g2="f,fi,fl,f_f_i,f_f_l" + k="-20" /> + <hkern g1="dagger" + g2="w" + k="-76" /> + <hkern g1="dagger" + g2="Z,Zcaron" + k="-6" /> + <hkern g1="dagger" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="6" /> + <hkern g1="dagger" + g2="j" + k="-14" /> + <hkern g1="dagger" + g2="z,zcaron" + k="-14" /> + <hkern g1="dagger" + g2="S,Scaron" + k="-6" /> + <hkern g1="dagger" + g2="b,h,k,l,thorn" + k="-6" /> + <hkern g1="daggerdbl" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="-20" /> + <hkern g1="daggerdbl" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-6" /> + <hkern g1="daggerdbl" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="-6" /> + <hkern g1="daggerdbl" + g2="J" + k="-6" /> + <hkern g1="daggerdbl" + g2="Oslash" + k="-6" /> + <hkern g1="daggerdbl" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-47" /> + <hkern g1="daggerdbl" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="6" /> + <hkern g1="daggerdbl" + g2="f,fi,fl,f_f_i,f_f_l" + k="-14" /> + <hkern g1="daggerdbl" + g2="w" + k="-76" /> + <hkern g1="daggerdbl" + g2="Z,Zcaron" + k="-6" /> + <hkern g1="daggerdbl" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="-6" /> + <hkern g1="daggerdbl" + g2="z,zcaron" + k="-14" /> + <hkern g1="daggerdbl" + g2="b,h,k,l,thorn" + k="-6" /> + <hkern g1="divide" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="102" /> + <hkern g1="divide" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="6" /> + <hkern g1="divide" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="45" /> + <hkern g1="divide" + g2="Y,Yacute,Ydieresis" + k="109" /> + <hkern g1="divide" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="-6" /> + <hkern g1="divide" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="6" /> + <hkern g1="divide" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="27" /> + <hkern g1="divide" + g2="w" + k="6" /> + <hkern g1="divide" + g2="Z,Zcaron" + k="6" /> + <hkern g1="equal" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="61" /> + <hkern g1="equal" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="4" /> + <hkern g1="equal" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="20" /> + <hkern g1="equal" + g2="Y,Yacute,Ydieresis" + k="68" /> + <hkern g1="equal" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="-6" /> + <hkern g1="equal" + g2="Oslash" + k="-6" /> + <hkern g1="equal" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="14" /> + <hkern g1="florin" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="68" /> + <hkern g1="florin" + g2="w" + k="14" /> + <hkern g1="florin" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="117" /> + <hkern g1="florin" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="109" /> + <hkern g1="florin" + g2="m,n,p,r,ntilde" + k="68" /> + <hkern g1="florin" + g2="oslash" + k="102" /> + <hkern g1="florin" + g2="s,scaron" + k="47" /> + <hkern g1="florin" + g2="bracketright,braceright" + k="-47" /> + <hkern g1="florin" + g2="colon,semicolon" + k="35" /> + <hkern g1="florin" + g2="comma,period,ellipsis" + k="178" /> + <hkern g1="florin" + g2="guilsinglleft" + k="55" /> + <hkern g1="florin" + g2="hyphen,endash,emdash" + k="41" /> + <hkern g1="florin" + g2="quotedbl,quotesingle" + k="-82" /> + <hkern g1="florin" + g2="quoteleft,quotedblleft" + k="-76" /> + <hkern g1="florin" + g2="quoteright,quotedblright" + k="-82" /> + <hkern g1="florin" + g2="quotesinglbase,quotedblbase" + k="143" /> + <hkern g1="florin" + g2="t" + k="-6" /> + <hkern g1="greater" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="102" /> + <hkern g1="greater" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="6" /> + <hkern g1="greater" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="47" /> + <hkern g1="greater" + g2="Y,Yacute,Ydieresis" + k="137" /> + <hkern g1="greater" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="-6" /> + <hkern g1="greater" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="45" /> + <hkern g1="greater" + g2="w" + k="6" /> + <hkern g1="greater" + g2="Z,Zcaron" + k="27" /> + <hkern g1="greater" + g2="S,Scaron" + k="4" /> + <hkern g1="less" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="14" /> + <hkern g1="less" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-14" /> + <hkern g1="less" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="-20" /> + <hkern g1="less" + g2="Oslash" + k="-14" /> + <hkern g1="less" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-20" /> + <hkern g1="less" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="-14" /> + <hkern g1="less" + g2="Eth" + k="-6" /> + <hkern g1="less" + g2="w" + k="-14" /> + <hkern g1="less" + g2="Z,Zcaron" + k="-35" /> + <hkern g1="less" + g2="z,zcaron" + k="-14" /> + <hkern g1="less" + g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Ntilde,Thorn,IJ,uni01C4,uni01C7,uni01CA,uni01F1" + k="-14" /> + <hkern g1="multiply" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="61" /> + <hkern g1="multiply" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="6" /> + <hkern g1="multiply" + g2="Y,Yacute,Ydieresis" + k="61" /> + <hkern g1="multiply" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="-6" /> + <hkern g1="multiply" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="6" /> + <hkern g1="multiply" + g2="w" + k="-6" /> + <hkern g1="multiply" + g2="Z,Zcaron" + k="-6" /> + <hkern g1="paragraph" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="-41" /> + <hkern g1="plus" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="109" /> + <hkern g1="plus" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="6" /> + <hkern g1="plus" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="61" /> + <hkern g1="plus" + g2="Y,Yacute,Ydieresis" + k="117" /> + <hkern g1="plus" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="-6" /> + <hkern g1="plus" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="41" /> + <hkern g1="plus" + g2="Eth" + k="6" /> + <hkern g1="plus" + g2="w" + k="4" /> + <hkern g1="plus" + g2="Z,Zcaron" + k="31" /> + <hkern g1="plus" + g2="b,h,k,l,thorn" + k="14" /> + <hkern g1="trademark" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="-41" /> + <hkern g1="section" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="6" /> + <hkern g1="section" + g2="Y,Yacute,Ydieresis" + k="6" /> + <hkern g1="section" + g2="Oslash" + k="4" /> + <hkern g1="section" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="6" /> + <hkern g1="asterisk" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="197" /> + <hkern g1="asterisk" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="6" /> + <hkern g1="asterisk" + g2="J" + k="102" /> + <hkern g1="asterisk" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="-41" /> + <hkern g1="asterisk" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-20" /> + <hkern g1="asterisk" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="41" /> + <hkern g1="asterisk" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="68" /> + <hkern g1="asterisk" + g2="s,scaron" + k="14" /> + <hkern g1="asterisk" + g2="Y,Yacute,Ydieresis" + k="6" /> + <hkern g1="asterisk" + g2="f,fi,fl,f_f_i,f_f_l" + k="-29" /> + <hkern g1="asterisk" + g2="oslash" + k="14" /> + <hkern g1="asterisk" + g2="w" + k="-6" /> + <hkern g1="asterisk" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-14" /> + <hkern g1="backslash" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="-14" /> + <hkern g1="backslash" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="82" /> + <hkern g1="backslash" + g2="J" + k="6" /> + <hkern g1="backslash" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="117" /> + <hkern g1="backslash" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="137" /> + <hkern g1="backslash" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="-14" /> + <hkern g1="backslash" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="41" /> + <hkern g1="backslash" + g2="Y,Yacute,Ydieresis" + k="158" /> + <hkern g1="backslash" + g2="oslash" + k="14" /> + <hkern g1="backslash" + g2="w" + k="35" /> + <hkern g1="backslash" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="45" /> + <hkern g1="backslash" + g2="Oslash" + k="55" /> + <hkern g1="backslash" + g2="S,Scaron" + k="20" /> + <hkern g1="backslash" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="61" /> + <hkern g1="backslash" + g2="Eth" + k="14" /> + <hkern g1="backslash" + g2="Z,Zcaron" + k="-6" /> + <hkern g1="backslash" + g2="t" + k="6" /> + <hkern g1="backslash" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="14" /> + <hkern g1="backslash" + g2="z,zcaron" + k="-6" /> + <hkern g1="braceright" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="14" /> + <hkern g1="braceright" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="27" /> + <hkern g1="braceright" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="14" /> + <hkern g1="braceright" + g2="Y,Yacute,Ydieresis" + k="53" /> + <hkern g1="braceright" + g2="Z,Zcaron" + k="27" /> + <hkern g1="bracketleft,braceleft" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="6" /> + <hkern g1="bracketleft,braceleft" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="47" /> + <hkern g1="bracketleft,braceleft" + g2="J" + k="14" /> + <hkern g1="bracketleft,braceleft" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="-27" /> + <hkern g1="bracketleft,braceleft" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-27" /> + <hkern g1="bracketleft,braceleft" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="4" /> + <hkern g1="bracketleft,braceleft" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="41" /> + <hkern g1="bracketleft,braceleft" + g2="s,scaron" + k="14" /> + <hkern g1="bracketleft,braceleft" + g2="Y,Yacute,Ydieresis" + k="-53" /> + <hkern g1="bracketleft,braceleft" + g2="f,fi,fl,f_f_i,f_f_l" + k="35" /> + <hkern g1="bracketleft,braceleft" + g2="oslash" + k="27" /> + <hkern g1="bracketleft,braceleft" + g2="w" + k="41" /> + <hkern g1="bracketleft,braceleft" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="20" /> + <hkern g1="bracketleft,braceleft" + g2="Oslash" + k="47" /> + <hkern g1="bracketleft,braceleft" + g2="S,Scaron" + k="6" /> + <hkern g1="bracketleft,braceleft" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="6" /> + <hkern g1="bracketleft,braceleft" + g2="t" + k="14" /> + <hkern g1="bracketleft,braceleft" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="14" /> + <hkern g1="bracketleft,braceleft" + g2="V" + k="-35" /> + <hkern g1="bracketleft,braceleft" + g2="X" + k="-27" /> + <hkern g1="bracketleft,braceleft" + g2="florin" + k="-123" /> + <hkern g1="bracketleft,braceleft" + g2="j" + k="-123" /> + <hkern g1="bracketleft,braceleft" + g2="germandbls" + k="14" /> + <hkern g1="bracketleft,braceleft" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="14" /> + <hkern g1="bracketleft,braceleft" + g2="x" + k="6" /> + <hkern g1="bullet" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="68" /> + <hkern g1="bullet" + g2="J" + k="14" /> + <hkern g1="bullet" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="158" /> + <hkern g1="bullet" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="68" /> + <hkern g1="bullet" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="14" /> + <hkern g1="bullet" + g2="Y,Yacute,Ydieresis" + k="164" /> + <hkern g1="bullet" + g2="Z,Zcaron" + k="35" /> + <hkern g1="bullet" + g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Ntilde,Thorn,IJ,uni01C4,uni01C7,uni01CA,uni01F1" + k="14" /> + <hkern g1="colon,semicolon" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="6" /> + <hkern g1="colon,semicolon" + g2="J" + k="6" /> + <hkern g1="colon,semicolon" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="113" /> + <hkern g1="colon,semicolon" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="27" /> + <hkern g1="colon,semicolon" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="14" /> + <hkern g1="colon,semicolon" + g2="Y,Yacute,Ydieresis" + k="141" /> + <hkern g1="colon,semicolon" + g2="f,fi,fl,f_f_i,f_f_l" + k="-6" /> + <hkern g1="colon,semicolon" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="6" /> + <hkern g1="colon,semicolon" + g2="S,Scaron" + k="6" /> + <hkern g1="colon,semicolon" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="10" /> + <hkern g1="colon,semicolon" + g2="V" + k="96" /> + <hkern g1="colon,semicolon" + g2="X" + k="14" /> + <hkern g1="colon,semicolon" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="6" /> + <hkern g1="colon,semicolon" + g2="x" + k="6" /> + <hkern g1="comma,period,ellipsis" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="68" /> + <hkern g1="comma,period,ellipsis" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="219" /> + <hkern g1="comma,period,ellipsis" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="190" /> + <hkern g1="comma,period,ellipsis" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="6" /> + <hkern g1="comma,period,ellipsis" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="35" /> + <hkern g1="comma,period,ellipsis" + g2="Y,Yacute,Ydieresis" + k="266" /> + <hkern g1="comma,period,ellipsis" + g2="f,fi,fl,f_f_i,f_f_l" + k="14" /> + <hkern g1="comma,period,ellipsis" + g2="oslash" + k="6" /> + <hkern g1="comma,period,ellipsis" + g2="w" + k="88" /> + <hkern g1="comma,period,ellipsis" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="178" /> + <hkern g1="comma,period,ellipsis" + g2="Oslash" + k="55" /> + <hkern g1="comma,period,ellipsis" + g2="S,Scaron" + k="20" /> + <hkern g1="comma,period,ellipsis" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="61" /> + <hkern g1="comma,period,ellipsis" + g2="Eth" + k="14" /> + <hkern g1="comma,period,ellipsis" + g2="t" + k="47" /> + <hkern g1="comma,period,ellipsis" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="14" /> + <hkern g1="comma,period,ellipsis" + g2="V" + k="225" /> + <hkern g1="comma,period,ellipsis" + g2="X" + k="6" /> + <hkern g1="comma,period,ellipsis" + g2="germandbls" + k="6" /> + <hkern g1="comma,period,ellipsis" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="170" /> + <hkern g1="comma,period,ellipsis" + g2="Lslash" + k="6" /> + <hkern g1="comma,period,ellipsis" + g2="b,h,k,l,thorn" + k="6" /> + <hkern g1="comma,period,ellipsis" + g2="lslash" + k="29" /> + <hkern g1="exclamdown" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="6" /> + <hkern g1="exclamdown" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="6" /> + <hkern g1="exclamdown" + g2="J" + k="6" /> + <hkern g1="exclamdown" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="143" /> + <hkern g1="exclamdown" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="35" /> + <hkern g1="exclamdown" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="14" /> + <hkern g1="exclamdown" + g2="Y,Yacute,Ydieresis" + k="127" /> + <hkern g1="exclamdown" + g2="oslash" + k="6" /> + <hkern g1="exclamdown" + g2="w" + k="6" /> + <hkern g1="exclamdown" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="6" /> + <hkern g1="exclamdown" + g2="S,Scaron" + k="6" /> + <hkern g1="exclamdown" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="27" /> + <hkern g1="exclamdown" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="4" /> + <hkern g1="exclamdown" + g2="j" + k="-68" /> + <hkern g1="exclamdown" + g2="i,igrave,iacute,icircumflex,idieresis" + k="6" /> + <hkern g1="guilsinglleft" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="6" /> + <hkern g1="guilsinglleft" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="20" /> + <hkern g1="guilsinglleft" + g2="J" + k="-20" /> + <hkern g1="guilsinglleft" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="143" /> + <hkern g1="guilsinglleft" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="20" /> + <hkern g1="guilsinglleft" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="6" /> + <hkern g1="guilsinglleft" + g2="Y,Yacute,Ydieresis" + k="90" /> + <hkern g1="guilsinglleft" + g2="f,fi,fl,f_f_i,f_f_l" + k="-27" /> + <hkern g1="guilsinglleft" + g2="oslash" + k="6" /> + <hkern g1="guilsinglleft" + g2="Oslash" + k="6" /> + <hkern g1="guilsinglleft" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="6" /> + <hkern g1="guilsinglleft" + g2="t" + k="-14" /> + <hkern g1="guilsinglleft" + g2="V" + k="76" /> + <hkern g1="guilsinglleft" + g2="X" + k="61" /> + <hkern g1="guilsinglleft" + g2="florin" + k="14" /> + <hkern g1="guilsinglleft" + g2="j" + k="4" /> + <hkern g1="guilsinglleft" + g2="germandbls" + k="6" /> + <hkern g1="guilsinglleft" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="-27" /> + <hkern g1="guilsinglleft" + g2="lslash" + k="6" /> + <hkern g1="guilsinglright" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="68" /> + <hkern g1="guilsinglright" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="14" /> + <hkern g1="guilsinglright" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="240" /> + <hkern g1="guilsinglright" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="82" /> + <hkern g1="guilsinglright" + g2="Y,Yacute,Ydieresis" + k="207" /> + <hkern g1="guilsinglright" + g2="w" + k="20" /> + <hkern g1="guilsinglright" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="6" /> + <hkern g1="guilsinglright" + g2="S,Scaron" + k="6" /> + <hkern g1="guilsinglright" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="27" /> + <hkern g1="guilsinglright" + g2="Z,Zcaron" + k="51" /> + <hkern g1="guilsinglright" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="6" /> + <hkern g1="guilsinglright" + g2="z,zcaron" + k="4" /> + <hkern g1="guilsinglright" + g2="V" + k="129" /> + <hkern g1="guilsinglright" + g2="X" + k="164" /> + <hkern g1="guilsinglright" + g2="florin" + k="76" /> + <hkern g1="guilsinglright" + g2="germandbls" + k="10" /> + <hkern g1="guilsinglright" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="27" /> + <hkern g1="guilsinglright" + g2="x" + k="27" /> + <hkern g1="guilsinglright" + g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Ntilde,Thorn,IJ,uni01C4,uni01C7,uni01CA,uni01F1" + k="14" /> + <hkern g1="guilsinglright" + g2="b,h,k,l,thorn" + k="6" /> + <hkern g1="guilsinglright" + g2="lslash" + k="-27" /> + <hkern g1="hyphen,endash,emdash" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="55" /> + <hkern g1="hyphen,endash,emdash" + g2="J" + k="6" /> + <hkern g1="hyphen,endash,emdash" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="129" /> + <hkern g1="hyphen,endash,emdash" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="68" /> + <hkern g1="hyphen,endash,emdash" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="14" /> + <hkern g1="hyphen,endash,emdash" + g2="Y,Yacute,Ydieresis" + k="178" /> + <hkern g1="hyphen,endash,emdash" + g2="w" + k="14" /> + <hkern g1="hyphen,endash,emdash" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="47" /> + <hkern g1="hyphen,endash,emdash" + g2="S,Scaron" + k="14" /> + <hkern g1="hyphen,endash,emdash" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="6" /> + <hkern g1="hyphen,endash,emdash" + g2="Z,Zcaron" + k="74" /> + <hkern g1="hyphen,endash,emdash" + g2="t" + k="14" /> + <hkern g1="hyphen,endash,emdash" + g2="z,zcaron" + k="6" /> + <hkern g1="hyphen,endash,emdash" + g2="V" + k="123" /> + <hkern g1="hyphen,endash,emdash" + g2="X" + k="102" /> + <hkern g1="hyphen,endash,emdash" + g2="j" + k="14" /> + <hkern g1="hyphen,endash,emdash" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="20" /> + <hkern g1="hyphen,endash,emdash" + g2="x" + k="39" /> + <hkern g1="hyphen,endash,emdash" + g2="Lslash" + k="-88" /> + <hkern g1="hyphen,endash,emdash" + g2="lslash" + k="-68" /> + <hkern g1="parenleft" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="14" /> + <hkern g1="parenleft" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="47" /> + <hkern g1="parenleft" + g2="J" + k="31" /> + <hkern g1="parenleft" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="-27" /> + <hkern g1="parenleft" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-27" /> + <hkern g1="parenleft" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="6" /> + <hkern g1="parenleft" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="55" /> + <hkern g1="parenleft" + g2="s,scaron" + k="18" /> + <hkern g1="parenleft" + g2="Y,Yacute,Ydieresis" + k="-27" /> + <hkern g1="parenleft" + g2="f,fi,fl,f_f_i,f_f_l" + k="27" /> + <hkern g1="parenleft" + g2="oslash" + k="35" /> + <hkern g1="parenleft" + g2="w" + k="47" /> + <hkern g1="parenleft" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="29" /> + <hkern g1="parenleft" + g2="Oslash" + k="47" /> + <hkern g1="parenleft" + g2="S,Scaron" + k="10" /> + <hkern g1="parenleft" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="6" /> + <hkern g1="parenleft" + g2="t" + k="14" /> + <hkern g1="parenleft" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="20" /> + <hkern g1="parenleft" + g2="z,zcaron" + k="4" /> + <hkern g1="parenleft" + g2="j" + k="-123" /> + <hkern g1="periodcentered" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="55" /> + <hkern g1="periodcentered" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="-6" /> + <hkern g1="periodcentered" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="102" /> + <hkern g1="periodcentered" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="55" /> + <hkern g1="periodcentered" + g2="Y,Yacute,Ydieresis" + k="129" /> + <hkern g1="periodcentered" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="6" /> + <hkern g1="periodcentered" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="20" /> + <hkern g1="periodcentered" + g2="Z,Zcaron" + k="14" /> + <hkern g1="question" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="43" /> + <hkern g1="question" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="6" /> + <hkern g1="question" + g2="J" + k="14" /> + <hkern g1="question" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="47" /> + <hkern g1="question" + g2="Y,Yacute,Ydieresis" + k="6" /> + <hkern g1="questiondown" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="-35" /> + <hkern g1="questiondown" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="88" /> + <hkern g1="questiondown" + g2="J" + k="14" /> + <hkern g1="questiondown" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="246" /> + <hkern g1="questiondown" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="137" /> + <hkern g1="questiondown" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="47" /> + <hkern g1="questiondown" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="55" /> + <hkern g1="questiondown" + g2="s,scaron" + k="14" /> + <hkern g1="questiondown" + g2="Y,Yacute,Ydieresis" + k="242" /> + <hkern g1="questiondown" + g2="f,fi,fl,f_f_i,f_f_l" + k="31" /> + <hkern g1="questiondown" + g2="oslash" + k="14" /> + <hkern g1="questiondown" + g2="w" + k="68" /> + <hkern g1="questiondown" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="35" /> + <hkern g1="questiondown" + g2="Oslash" + k="29" /> + <hkern g1="questiondown" + g2="S,Scaron" + k="41" /> + <hkern g1="questiondown" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="76" /> + <hkern g1="questiondown" + g2="Eth" + k="29" /> + <hkern g1="questiondown" + g2="Z,Zcaron" + k="-6" /> + <hkern g1="questiondown" + g2="t" + k="41" /> + <hkern g1="questiondown" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="41" /> + <hkern g1="questiondown" + g2="j" + k="-96" /> + <hkern g1="questiondown" + g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Ntilde,Thorn,IJ,uni01C4,uni01C7,uni01CA,uni01F1" + k="4" /> + <hkern g1="questiondown" + g2="b,h,k,l,thorn" + k="14" /> + <hkern g1="questiondown" + g2="m,n,p,r,ntilde" + k="14" /> + <hkern g1="quotedbl,quotesingle" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="137" /> + <hkern g1="quotedbl,quotesingle" + g2="J" + k="53" /> + <hkern g1="quotedbl,quotesingle" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="-55" /> + <hkern g1="quotedbl,quotesingle" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-27" /> + <hkern g1="quotedbl,quotesingle" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="27" /> + <hkern g1="quotedbl,quotesingle" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="47" /> + <hkern g1="quotedbl,quotesingle" + g2="Y,Yacute,Ydieresis" + k="-14" /> + <hkern g1="quotedbl,quotesingle" + g2="f,fi,fl,f_f_i,f_f_l" + k="-55" /> + <hkern g1="quotedbl,quotesingle" + g2="oslash" + k="47" /> + <hkern g1="quotedbl,quotesingle" + g2="w" + k="-27" /> + <hkern g1="quotedbl,quotesingle" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-20" /> + <hkern g1="quotedbl,quotesingle" + g2="V" + k="-35" /> + <hkern g1="quotedbl,quotesingle" + g2="X" + k="-14" /> + <hkern g1="quotedbl,quotesingle" + g2="germandbls" + k="6" /> + <hkern g1="quotedbl,quotesingle" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="-27" /> + <hkern g1="quotedbl,quotesingle" + g2="x" + k="-14" /> + <hkern g1="quoteleft,quotedblleft" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="225" /> + <hkern g1="quoteleft,quotedblleft" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="27" /> + <hkern g1="quoteleft,quotedblleft" + g2="J" + k="190" /> + <hkern g1="quoteleft,quotedblleft" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="-61" /> + <hkern g1="quoteleft,quotedblleft" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-35" /> + <hkern g1="quoteleft,quotedblleft" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="74" /> + <hkern g1="quoteleft,quotedblleft" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="78" /> + <hkern g1="quoteleft,quotedblleft" + g2="s,scaron" + k="20" /> + <hkern g1="quoteleft,quotedblleft" + g2="Y,Yacute,Ydieresis" + k="-27" /> + <hkern g1="quoteleft,quotedblleft" + g2="f,fi,fl,f_f_i,f_f_l" + k="6" /> + <hkern g1="quoteleft,quotedblleft" + g2="oslash" + k="47" /> + <hkern g1="quoteleft,quotedblleft" + g2="w" + k="-6" /> + <hkern g1="quoteleft,quotedblleft" + g2="Oslash" + k="14" /> + <hkern g1="quoteleft,quotedblleft" + g2="t" + k="-10" /> + <hkern g1="quoteleft,quotedblleft" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="16" /> + <hkern g1="quoteleft,quotedblleft" + g2="z,zcaron" + k="-4" /> + <hkern g1="quoteleft,quotedblleft" + g2="V" + k="-27" /> + <hkern g1="quoteleft,quotedblleft" + g2="X" + k="-14" /> + <hkern g1="quoteleft,quotedblleft" + g2="florin" + k="49" /> + <hkern g1="quoteleft,quotedblleft" + g2="j" + k="-4" /> + <hkern g1="quoteleft,quotedblleft" + g2="i,igrave,iacute,icircumflex,idieresis" + k="-4" /> + <hkern g1="quoteleft,quotedblleft" + g2="m,n,p,r,ntilde" + k="47" /> + <hkern g1="quoteright,quotedblright" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="225" /> + <hkern g1="quoteright,quotedblright" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="27" /> + <hkern g1="quoteright,quotedblright" + g2="J" + k="117" /> + <hkern g1="quoteright,quotedblright" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="-61" /> + <hkern g1="quoteright,quotedblright" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-35" /> + <hkern g1="quoteright,quotedblright" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="76" /> + <hkern g1="quoteright,quotedblright" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="137" /> + <hkern g1="quoteright,quotedblright" + g2="s,scaron" + k="113" /> + <hkern g1="quoteright,quotedblright" + g2="Y,Yacute,Ydieresis" + k="-27" /> + <hkern g1="quoteright,quotedblright" + g2="f,fi,fl,f_f_i,f_f_l" + k="-6" /> + <hkern g1="quoteright,quotedblright" + g2="oslash" + k="84" /> + <hkern g1="quoteright,quotedblright" + g2="w" + k="-6" /> + <hkern g1="quoteright,quotedblright" + g2="Oslash" + k="14" /> + <hkern g1="quoteright,quotedblright" + g2="S,Scaron" + k="4" /> + <hkern g1="quoteright,quotedblright" + g2="Eth" + k="14" /> + <hkern g1="quoteright,quotedblright" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="4" /> + <hkern g1="quoteright,quotedblright" + g2="V" + k="-27" /> + <hkern g1="quoteright,quotedblright" + g2="X" + k="-14" /> + <hkern g1="quoteright,quotedblright" + g2="florin" + k="43" /> + <hkern g1="quoteright,quotedblright" + g2="germandbls" + k="14" /> + <hkern g1="quoteright,quotedblright" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="-6" /> + <hkern g1="quoteright,quotedblright" + g2="Lslash" + k="20" /> + <hkern g1="quoteright,quotedblright" + g2="lslash" + k="41" /> + <hkern g1="quoteright,quotedblright" + g2="m,n,p,r,ntilde" + k="68" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="-47" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="106" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="J" + k="6" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="178" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="170" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="27" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="s,scaron" + k="4" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="Y,Yacute,Ydieresis" + k="240" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="f,fi,fl,f_f_i,f_f_l" + k="47" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="oslash" + k="6" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="w" + k="88" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="102" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="Oslash" + k="35" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="S,Scaron" + k="27" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="92" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="Eth" + k="20" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="Z,Zcaron" + k="-4" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="t" + k="82" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="10" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="z,zcaron" + k="-6" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="V" + k="193" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="florin" + k="-47" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="j" + k="-41" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="germandbls" + k="6" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="96" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="x" + k="-20" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Ntilde,Thorn,IJ,uni01C4,uni01C7,uni01CA,uni01F1" + k="6" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="lslash" + k="14" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="i,igrave,iacute,icircumflex,idieresis" + k="6" /> + <hkern g1="slash" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="158" /> + <hkern g1="slash" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="82" /> + <hkern g1="slash" + g2="J" + k="217" /> + <hkern g1="slash" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="-68" /> + <hkern g1="slash" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-41" /> + <hkern g1="slash" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="211" /> + <hkern g1="slash" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="94" /> + <hkern g1="slash" + g2="s,scaron" + k="178" /> + <hkern g1="slash" + g2="Y,Yacute,Ydieresis" + k="-27" /> + <hkern g1="slash" + g2="f,fi,fl,f_f_i,f_f_l" + k="31" /> + <hkern g1="slash" + g2="oslash" + k="170" /> + <hkern g1="slash" + g2="w" + k="47" /> + <hkern g1="slash" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="27" /> + <hkern g1="slash" + g2="Oslash" + k="82" /> + <hkern g1="slash" + g2="S,Scaron" + k="35" /> + <hkern g1="slash" + g2="Eth" + k="18" /> + <hkern g1="slash" + g2="t" + k="6" /> + <hkern g1="slash" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="78" /> + <hkern g1="slash" + g2="z,zcaron" + k="102" /> + <hkern g1="slash" + g2="m,n,p,r,ntilde" + k="109" /> + <hkern g1="underscore" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="-61" /> + <hkern g1="underscore" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="82" /> + <hkern g1="underscore" + g2="J" + k="20" /> + <hkern g1="underscore" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="88" /> + <hkern g1="underscore" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="96" /> + <hkern g1="underscore" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="47" /> + <hkern g1="underscore" + g2="Y,Yacute,Ydieresis" + k="143" /> + <hkern g1="underscore" + g2="f,fi,fl,f_f_i,f_f_l" + k="20" /> + <hkern g1="underscore" + g2="oslash" + k="35" /> + <hkern g1="underscore" + g2="w" + k="82" /> + <hkern g1="underscore" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="76" /> + <hkern g1="underscore" + g2="Oslash" + k="61" /> + <hkern g1="underscore" + g2="S,Scaron" + k="35" /> + <hkern g1="underscore" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="35" /> + <hkern g1="underscore" + g2="Eth" + k="6" /> + <hkern g1="underscore" + g2="Z,Zcaron" + k="-27" /> + <hkern g1="underscore" + g2="t" + k="55" /> + <hkern g1="underscore" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="35" /> + <hkern g1="underscore" + g2="z,zcaron" + k="-6" /> + <hkern g1="underscore" + g2="j" + k="-123" /> + <hkern g1="exclam" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="14" /> + <hkern g1="exclam" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="6" /> + <hkern g1="exclam" + g2="J" + k="6" /> + <hkern g1="exclam" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="14" /> + <hkern g1="exclam" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="14" /> + <hkern g1="exclam" + g2="S,Scaron" + k="6" /> + <hkern g1="ordmasculine" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="41" /> + </font> +</defs></svg> diff --git a/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-MediumItalic.ttf b/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-MediumItalic.ttf new file mode 100755 index 0000000000000000000000000000000000000000..1103c5461905563a9e903c18d2e8e05e731d71e7 Binary files /dev/null and b/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-MediumItalic.ttf differ diff --git a/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-MediumItalic.woff b/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-MediumItalic.woff new file mode 100755 index 0000000000000000000000000000000000000000..112eca37b4bb00de7dd9613a57495a229a4a53cc Binary files /dev/null and b/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-MediumItalic.woff differ diff --git a/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-MediumItalic.woff2 b/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-MediumItalic.woff2 new file mode 100755 index 0000000000000000000000000000000000000000..25fb696c9bba09110614b32d00cac7a6200aa95d Binary files /dev/null and b/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-MediumItalic.woff2 differ diff --git a/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-Regular.eot b/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-Regular.eot new file mode 100755 index 0000000000000000000000000000000000000000..0ab7f045f743f1b66c7d49b8f51a160de703cab5 Binary files /dev/null and b/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-Regular.eot differ diff --git a/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-Regular.svg b/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-Regular.svg new file mode 100755 index 0000000000000000000000000000000000000000..f56d8f1860c77f3ea5b89557bebe8cb10c5db8af --- /dev/null +++ b/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-Regular.svg @@ -0,0 +1,9383 @@ +<?xml version="1.0" standalone="no"?> +<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" > +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1"> +<metadata> +Created by FontForge 20161013 at Sun Mar 19 13:47:48 2017 + By ,,, +Copyright (c)2015, HK Grotesk Latin by Alfredo Marco Pradil (ammpradil@gmail.com) and HK Grotesk Cyrillic by Stefan Peev (http://www.contextbg.net/). HK Grotesk is a trademark of Alfredo Marco Pradil. +</metadata> +<defs> +<font id="HKGrotesk-Regular" horiz-adv-x="1119" > + <font-face + font-family="HK Grotesk" + font-weight="400" + font-stretch="normal" + units-per-em="2048" + panose-1="0 0 5 0 0 0 0 0 0 0" + ascent="1434" + descent="-614" + x-height="999" + cap-height="1413" + bbox="-932 -512 2617 2244" + underline-thickness="82" + underline-position="-410" + unicode-range="U+0020-FB02" + /> +<missing-glyph horiz-adv-x="1156" +d="M168 0v954h820v-954h-820zM271 102h614v750h-614v-750z" /> + <glyph glyph-name="fi" unicode="fi" horiz-adv-x="998" +d="M179 0v877h-147v122h149q0 90 18 164t58 137t114 98.5t177 35.5q96 0 159.5 -31.5t125.5 -91.5l-81 -101q-93 97 -207 97q-226 0 -226 -308h512v-999h-135v877h-377v-877h-140z" /> + <glyph glyph-name="fl" unicode="fl" horiz-adv-x="1009" +d="M837 -20q-79 0 -110 59.5t-31 162.5v1041q-13 24 -58.5 44t-105.5 20q-112 0 -162.5 -41.5t-50.5 -140.5v-126h215v-122h-215v-877h-140v877h-147v122h149v143q0 142 94 217t251 75q159 0 307 -135v-1116q0 -36 8.5 -49.5t39.5 -13.5q25 0 69 11v-131l-23 -8 +q-49 -12 -90 -12z" /> + <glyph glyph-name="f_f_i" unicode="ffi" horiz-adv-x="1542" +d="M860 999h523v-999h-135v877h-388v-877h-141v877h-402v-877h-144v877h-141v122h142v123q0 138 97 225t239 87q168 0 284 -109q47 48 122 78.5t154 30.5q149 0 304 -118l-71 -106q-1 3 -11 13t-30.5 25t-46.5 28.5t-63.5 23t-76.5 9.5q-96 0 -155.5 -51t-59.5 -140v-119z +M721 1122q0 53 6 98q-19 29 -74 60.5t-134 31.5q-95 0 -148.5 -51.5t-53.5 -142.5v-119h404v123z" /> + <glyph glyph-name="f_f_l" unicode="ffl" horiz-adv-x="1552" +d="M1385 -20q-79 0 -108.5 41.5t-29.5 109.5v1102q-18 31 -63.5 52.5t-100.5 21.5q-93 0 -149 -53.5t-56 -145.5v-109h169v-122h-169v-877h-141v877h-420v-877h-145v877h-140v122h142v117q0 141 96.5 229.5t241.5 88.5q166 0 302 -114q97 114 270 114q96 0 158.5 -29 +t140.5 -105v-1122q0 -23 1.5 -33t11.5 -17.5t32 -7.5q33 0 68 11v-131q-60 -20 -111 -20zM317 999h422q0 166 9 206q-82 102 -217 102q-96 0 -155 -51.5t-59 -141.5v-115z" /> + <glyph glyph-name=".notdef" horiz-adv-x="1156" +d="M168 0v954h820v-954h-820zM271 102h614v750h-614v-750z" /> + <glyph glyph-name=".null" horiz-adv-x="0" + /> + <glyph glyph-name="nonmarkingreturn" horiz-adv-x="682" + /> + <glyph glyph-name="space" unicode=" " horiz-adv-x="541" + /> + <glyph glyph-name="exclam" unicode="!" horiz-adv-x="630" +d="M258 381l-29 1054h172l-29 -1054h-114zM217 0v194h196v-194h-196z" /> + <glyph glyph-name="quotedbl" unicode=""" horiz-adv-x="908" +d="M236 984v429h134v-429h-134zM536 984v429h136v-429h-136z" /> + <glyph glyph-name="numbersign" unicode="#" horiz-adv-x="1368" +d="M257 0l90 438h-240v113h264l66 333h-248v110h272l94 440h121l-95 -437h321l92 437h120l-92 -439h240v-111h-263l-68 -333h249v-109h-272l-92 -442h-120l92 436h-321l-90 -436h-120zM491 551h320l67 333h-319z" /> + <glyph glyph-name="dollar" unicode="$" horiz-adv-x="1114" +d="M503 -246v234q-161 17 -278 116t-142 263l152 42q14 -134 109 -205.5t230 -71.5q130 0 206.5 63t76.5 187q0 72 -37.5 127t-97.5 91.5t-132.5 68t-145 66.5t-132.5 77t-97.5 108.5t-37.5 152.5q0 145 92 241t234 115v230h107v-227q235 -21 344 -222l-123 -82 +q-42 81 -113.5 123t-155.5 42q-93 0 -160 -57t-67 -148q0 -68 37.5 -120t97.5 -86.5t132.5 -65.5t145 -66.5t132.5 -79.5t97.5 -114.5t37.5 -162.5q0 -177 -114 -288.5t-291 -119.5v-231h-107z" /> + <glyph glyph-name="percent" unicode="%" horiz-adv-x="1576" +d="M378 804q-55 0 -98.5 20.5t-71 52.5t-45.5 74.5t-25.5 84t-7.5 82.5q0 54 12.5 106.5t39 101.5t76 79.5t114.5 30.5q81 0 139.5 -48.5t84 -118.5t25.5 -151q0 -59 -15 -113.5t-43.5 -100t-76.5 -73t-108 -27.5zM339 2l753 1405h132l-753 -1405h-132zM376 904 +q66 0 99.5 65.5t33.5 150.5q0 53 -13 99.5t-45.5 80.5t-78.5 34q-68 0 -102 -65t-34 -151q0 -85 35 -149.5t105 -64.5zM1206 3q-68 0 -118.5 30t-77.5 78.5t-40 100t-13 104.5t12.5 105t39 101t76 79.5t115.5 30.5q61 0 109.5 -27.5t78 -73.5t45 -101.5t15.5 -114.5 +t-15 -113.5t-43.5 -99.5t-76 -72t-107.5 -27zM1204 103q45 0 76.5 34.5t44.5 81.5t13 98q0 54 -13 100t-45.5 79.5t-79.5 33.5q-68 0 -102.5 -64t-34.5 -150q0 -53 13 -99t46 -80t82 -34z" /> + <glyph glyph-name="ampersand" unicode="&" horiz-adv-x="1376" +d="M1270 32l-99 -86l-196 231q-171 -198 -444 -198q-176 0 -290 84t-114 239q0 64 20.5 122.5t51 102.5t80.5 90t92.5 76.5t104.5 70.5q-37 44 -62.5 77.5t-58.5 84t-50.5 100.5t-17.5 96q0 140 100 224t242 84q134 0 226 -88t92 -219q0 -50 -15.5 -97t-40 -83.5 +t-63.5 -74.5t-75.5 -66t-87.5 -62l295 -346q56 124 73 297l132 -14q-18 -223 -113 -390zM418 1120q0 -106 162 -290q120 76 182.5 142.5t62.5 149.5q0 79 -57.5 131.5t-136.5 52.5q-86 0 -149.5 -49t-63.5 -137zM533 112q229 0 357 165l-334 392q-56 -36 -92 -61.5 +t-79 -63.5t-68 -71.5t-42 -77.5t-17 -91q0 -67 41 -111.5t100.5 -62.5t133.5 -18z" /> + <glyph glyph-name="quotesingle" unicode="'" horiz-adv-x="605" +d="M236 1013v429h134v-429h-134z" /> + <glyph glyph-name="parenleft" unicode="(" horiz-adv-x="560" +d="M367 -32q-108 119 -173.5 335.5t-65.5 401.5q0 199 60 398t177 339h129q-119 -156 -181.5 -347t-62.5 -393q0 -200 61 -389t181 -345h-125z" /> + <glyph glyph-name="parenright" unicode=")" horiz-adv-x="560" +d="M68 -32q118 156 180 348.5t62 387.5q0 192 -65 389t-179 349h128q118 -138 178 -333t60 -402q0 -188 -66 -405.5t-173 -333.5h-125z" /> + <glyph glyph-name="asterisk" unicode="*" horiz-adv-x="868" +d="M310 850l-92 68l173 197l-249 41l35 112l231 -100l-31 245h113l-30 -245l230 100l36 -112l-250 -41l174 -197l-94 -68l-123 232z" /> + <glyph glyph-name="plus" unicode="+" horiz-adv-x="1265" +d="M575 106v463h-456v113h456v461h114v-461h457v-113h-457v-463h-114z" /> + <glyph glyph-name="comma" unicode="," horiz-adv-x="621" +d="M143 -326l144 590h193l-244 -590h-93z" /> + <glyph glyph-name="hyphen" unicode="-" horiz-adv-x="835" +d="M161 578v114h513v-114h-513z" /> + <glyph glyph-name="period" unicode="." horiz-adv-x="662" +d="M232 0v194h198v-194h-198z" /> + <glyph glyph-name="slash" unicode="/" horiz-adv-x="927" +d="M11 -430l754 1946h152l-753 -1946h-153z" /> + <glyph glyph-name="zero" unicode="0" horiz-adv-x="1155" +d="M588 -20q-114 0 -205.5 45.5t-150 119t-98 170.5t-56 194.5t-16.5 197.5q0 83 11.5 165t35.5 165.5t65.5 154t96 126t132.5 87t170 31.5q102 0 188.5 -41t147.5 -111t104 -163.5t63.5 -199.5t20.5 -218q0 -139 -32.5 -267t-94.5 -231t-161 -164t-221 -61zM582 124 +q76 0 137.5 38t99.5 98.5t64 139.5t36.5 155.5t10.5 153.5q0 65 -8 129.5t-24.5 130.5t-45 122.5t-66.5 100.5t-93 69.5t-120 25.5q-78 0 -140.5 -37t-102 -95.5t-66 -136.5t-37 -155t-10.5 -156t11 -156t37.5 -155.5t67 -137.5t105 -96.5t144.5 -37.5z" /> + <glyph glyph-name="one" unicode="1" horiz-adv-x="1155" +d="M581 0v1086h-377v125h216q82 0 128.5 49t46.5 126v27h144v-1413h-158z" /> + <glyph glyph-name="two" unicode="2" horiz-adv-x="1155" +d="M80 0v142q276 176 473 380q134 143 201 259.5t67 242.5q0 128 -67 197.5t-178 69.5q-128 0 -202.5 -91.5t-82.5 -249.5l-156 15q0 219 118 343t318 124q191 0 303 -110.5t112 -292.5q0 -154 -83 -296t-252 -310q-33 -33 -64.5 -63t-54.5 -51t-51.5 -44t-42.5 -34 +t-41.5 -30.5t-34 -24t-34.5 -23t-30 -19.5h758v-134h-976z" /> + <glyph glyph-name="three" unicode="3" horiz-adv-x="1155" +d="M556 -20q-135 0 -240.5 45t-171 141.5t-65.5 232.5l145 14q0 -137 97 -216t236 -79q86 0 159 31t121.5 98.5t48.5 159.5q0 132 -87.5 203t-220.5 71h-100v137h100q105 0 167.5 61.5t62.5 169.5q0 113 -74 178.5t-181 65.5q-112 0 -187 -67.5t-76 -178.5l-143 16 +q0 171 115 271t290 100q170 0 286.5 -99.5t116.5 -266.5q0 -97 -42.5 -177.5t-122.5 -129.5q118 -41 178 -136t63 -223q0 -135 -65 -232.5t-170.5 -143.5t-239.5 -46z" /> + <glyph glyph-name="four" unicode="4" horiz-adv-x="1155" +d="M696 0v381h-652v90l666 942h141v-897h225v-135h-225v-381h-155zM231 516h465v657z" /> + <glyph glyph-name="five" unicode="5" horiz-adv-x="1155" +d="M574 -20q-176 0 -300 110.5t-161 281.5l141 47q12 -58 33 -107t56.5 -96t94 -74.5t133.5 -27.5q76 0 137.5 30t99 80.5t57 111.5t19.5 126q0 137 -79 234t-221 97q-89 0 -165 -41.5t-122 -114.5l-136 64l124 712h698v-138h-577l-76 -456q103 104 275 104q129 0 231 -63.5 +t156.5 -168.5t54.5 -229q0 -129 -60 -239.5t-169.5 -176.5t-243.5 -66z" /> + <glyph glyph-name="six" unicode="6" horiz-adv-x="1155" +d="M583 -20q-128 0 -235.5 63t-169.5 170.5t-62 235.5q0 134 68 245l412 719h173l-311 -525q65 13 125 13q197 0 332 -128t135 -321q0 -125 -59 -232.5t-167 -173.5t-241 -66zM583 122q131 0 223.5 96.5t92.5 231.5q0 136 -92.5 232t-223.5 96t-223.5 -96t-92.5 -232 +q0 -135 92.5 -231.5t223.5 -96.5z" /> + <glyph glyph-name="seven" unicode="7" horiz-adv-x="1155" +d="M262 0l600 1275h-757v138h940v-78l-609 -1335h-174z" /> + <glyph glyph-name="eight" unicode="8" horiz-adv-x="1155" +d="M578 -20q-131 0 -236.5 44t-172 138.5t-66.5 226.5q0 129 64.5 225t184.5 148q-85 48 -131.5 129t-46.5 179q0 167 117 265.5t288 98.5q110 0 200.5 -42t146 -126.5t55.5 -195.5q0 -98 -45.5 -178.5t-128.5 -129.5q117 -50 181 -147t64 -225q0 -100 -38 -180t-103.5 -129 +t-150.5 -75t-182 -26zM583 811q106 0 178.5 66t72.5 176q0 116 -72.5 182t-179.5 66q-102 0 -177.5 -63t-75.5 -172q0 -115 70 -185t184 -70zM577 110q85 0 155.5 31t116.5 99t46 161q0 136 -91.5 213.5t-226.5 77.5q-137 0 -229 -77.5t-92 -212.5q0 -94 47 -162t118 -99 +t156 -31z" /> + <glyph glyph-name="nine" unicode="9" horiz-adv-x="1155" +d="M389 0l309 526q-61 -14 -126 -14q-196 0 -331.5 128.5t-135.5 320.5q0 125 59 233t167.5 174t242.5 66q127 0 234 -63t169 -171t62 -236q0 -132 -66 -245l-414 -719h-170zM572 635q131 0 223.5 96t92.5 232q0 135 -92.5 231.5t-223.5 96.5t-223.5 -96.5t-92.5 -231.5 +q0 -136 92.5 -232t223.5 -96z" /> + <glyph glyph-name="colon" unicode=":" horiz-adv-x="671" +d="M238 761v193h195v-193h-195zM238 0v194h195v-194h-195z" /> + <glyph glyph-name="semicolon" unicode=";" horiz-adv-x="652" +d="M249 761v193h196v-193h-196zM126 -326l144 590h193l-244 -590h-93z" /> + <glyph glyph-name="less" unicode="<" horiz-adv-x="1211" +d="M1001 170l-899 504l899 504l68 -118l-717 -386l717 -387z" /> + <glyph glyph-name="equal" unicode="=" horiz-adv-x="1263" +d="M252 775v136h759v-136h-759zM252 433v136h759v-136h-759z" /> + <glyph glyph-name="greater" unicode=">" horiz-adv-x="1211" +d="M210 170l-68 117l717 387l-717 386l68 118l898 -504z" /> + <glyph glyph-name="question" unicode="?" horiz-adv-x="1020" +d="M435 376v229q0 59 18.5 102.5t47.5 69t65 46t71.5 40.5t64.5 45t47.5 66.5t18.5 98.5q0 113 -73.5 170.5t-191.5 57.5q-112 0 -188.5 -63.5t-77.5 -175.5h-144q1 168 116.5 270t284.5 102q116 0 209 -40.5t150.5 -124.5t57.5 -199q0 -69 -19 -122t-48.5 -85.5t-66 -57.5 +t-73 -44.5t-66 -39.5t-48.5 -49.5t-19 -68.5v-227h-136zM408 0v194h196v-194h-196z" /> + <glyph glyph-name="at" unicode="@" horiz-adv-x="2066" +d="M1026 -348q-180 0 -339 59.5t-278.5 168t-189 273t-69.5 362.5q0 192 65 360.5t180.5 291.5t284 194t365.5 71q257 0 458 -115.5t309.5 -313.5t108.5 -443q0 -118 -26.5 -225t-79 -195t-140.5 -140.5t-201 -52.5q-137 0 -209 73.5t-57 199.5q-58 -73 -142.5 -113.5 +t-175.5 -40.5q-150 0 -231 107.5t-81 267.5q0 101 32 205t89.5 192t147 144t193.5 56q102 0 175 -51.5t93 -137.5l29 140h149q-12 -62 -52 -223.5t-67.5 -298.5t-27.5 -223q0 -79 28.5 -111.5t98.5 -32.5t125 29t89.5 75t57 108t31.5 123.5t9 126.5q0 154 -52.5 288.5 +t-146.5 232.5t-232 154t-301 56q-169 0 -311 -60t-238.5 -164t-150.5 -246t-54 -304q0 -169 58.5 -306.5t159.5 -226.5t234 -137t284 -48q126 0 248 39l53 -137q-147 -51 -303 -51zM908 215q83 0 152 43.5t110.5 112t64 146t22.5 151.5q0 221 -192 221q-83 0 -152.5 -43.5 +t-111 -111.5t-64.5 -145t-23 -151q0 -105 48 -164t146 -59z" /> + <glyph glyph-name="A" unicode="A" horiz-adv-x="1306" +d="M63 0l531 1413h122l527 -1413h-170l-108 307h-621l-108 -307h-173zM397 452h514l-255 728z" /> + <glyph glyph-name="B" unicode="B" horiz-adv-x="1243" +d="M212 0v1413h391q89 0 167 -19t143.5 -59t104 -109.5t38.5 -162.5q0 -209 -183 -315q252 -112 252 -371q0 -82 -25.5 -147.5t-68 -107.5t-101.5 -70t-121.5 -40t-132.5 -12h-464zM367 791h236q128 0 208 62.5t80 188.5q0 66 -22.5 112.5t-63.5 71t-89.5 35t-110.5 10.5 +h-238v-480zM367 147h313q289 0 289 239q0 73 -23 126t-64.5 82t-90.5 42t-108 13h-316v-502z" /> + <glyph glyph-name="C" unicode="C" horiz-adv-x="1420" +d="M754 -20q-156 0 -278 57.5t-197.5 158.5t-114.5 231.5t-39 282.5q0 119 23 225.5t73.5 198.5t124.5 159t181.5 105t239.5 38q202 0 347 -92.5t218 -283.5l-146 -63q-22 79 -66 137.5t-102.5 91.5t-122.5 48t-135 15q-101 0 -182 -31t-136 -84t-91.5 -127t-53 -157.5 +t-16.5 -177.5q0 -121 27.5 -224t84 -185.5t151.5 -129.5t220 -47q317 0 424 295l146 -63q-80 -183 -228.5 -280.5t-351.5 -97.5z" /> + <glyph glyph-name="D" unicode="D" horiz-adv-x="1406" +d="M212 0v1413h360q345 0 529 -184.5t184 -532.5q0 -334 -186.5 -515t-528.5 -181h-358zM371 145h175q126 0 230 33.5t183 101t123 176.5t44 251q0 276 -140 420t-418 144h-197v-1126z" /> + <glyph glyph-name="E" unicode="E" horiz-adv-x="1239" +d="M212 0v1413h915v-137h-756v-502h657v-133h-657v-496h756v-145h-915z" /> + <glyph glyph-name="F" unicode="F" horiz-adv-x="1196" +d="M212 0v1413h906v-137h-747v-502h659v-133h-659v-641h-159z" /> + <glyph glyph-name="G" unicode="G" horiz-adv-x="1509" +d="M759 -20q-127 0 -232.5 38t-179 104.5t-124 158.5t-74.5 199t-24 227q0 119 24 226.5t75 200t124.5 159.5t178 105t230.5 38q199 0 346 -96.5t228 -279.5l-145 -63q-64 141 -173.5 215.5t-257.5 74.5q-98 0 -177.5 -30.5t-134 -83.5t-91.5 -125.5t-54 -155.5t-17 -175 +q0 -122 27.5 -226t83.5 -186.5t150 -129.5t217 -47q188 0 315 123t131 339h-323v125h473v-715h-132l-2 258q-46 -117 -168.5 -197.5t-293.5 -80.5z" /> + <glyph glyph-name="H" unicode="H" horiz-adv-x="1455" +d="M212 0v1413h159v-639h713v639h159v-1413h-159v641h-713v-641h-159z" /> + <glyph glyph-name="I" unicode="I" horiz-adv-x="582" +d="M212 0v1413h159v-1413h-159z" /> + <glyph glyph-name="J" unicode="J" +d="M498 -20q-187 0 -300 118t-126 298l155 21q4 -58 21 -109t48.5 -94.5t83.5 -68.5t118 -25q67 0 116.5 19t79 51t47.5 80.5t24.5 99t6.5 115.5v791h-532v137h691v-911q0 -522 -433 -522z" /> + <glyph glyph-name="K" unicode="K" horiz-adv-x="1452" +d="M212 0v1413h159v-829l781 829h204l-534 -557l567 -856h-191l-482 747l-345 -357v-390h-159z" /> + <glyph glyph-name="L" unicode="L" horiz-adv-x="1037" +d="M212 0v1413h159v-1268h604v-145h-763z" /> + <glyph glyph-name="M" unicode="M" horiz-adv-x="1762" +d="M212 0v1413h258l408 -1135l414 1135h258v-1413h-157v1276l-425 -1153h-174l-424 1153v-1276h-158z" /> + <glyph glyph-name="N" unicode="N" horiz-adv-x="1418" +d="M212 0v1413h229l608 -1245v1245h157v-1413h-232l-604 1247v-1247h-158z" /> + <glyph glyph-name="O" unicode="O" horiz-adv-x="1515" +d="M756 -20q-126 0 -230.5 38t-178.5 105t-125 159t-75 199t-24 226t24 226t75 199t125 159t178.5 105t230.5 38q157 0 280.5 -58t200 -159t116 -231t39.5 -279q0 -150 -39.5 -279.5t-116 -230.5t-200 -159t-280.5 -58zM756 126q100 0 182 31.5t137 85.5t92 128.5t54 158.5 +t17 177t-17 176.5t-54 158t-92 128.5t-137 85.5t-182 31.5q-99 0 -179.5 -31.5t-135.5 -85.5t-92 -128.5t-54 -158t-17 -176.5t17 -177t54 -158.5t92 -128.5t135.5 -85.5t179.5 -31.5z" /> + <glyph glyph-name="P" unicode="P" horiz-adv-x="1148" +d="M212 0v1413h396q207 0 329.5 -104.5t122.5 -285.5q0 -184 -121.5 -284.5t-330.5 -100.5h-238v-638h-158zM370 779h238q143 0 219.5 61.5t76.5 182.5q0 118 -77.5 183.5t-218.5 65.5h-238v-493z" /> + <glyph glyph-name="Q" unicode="Q" horiz-adv-x="1545" +d="M1336 -97l-193 199q-148 -122 -387 -122q-126 0 -230.5 38t-178.5 105t-125 159t-75 199t-24 226t24 226t75 199t125 159t178.5 105t230.5 38q157 0 280.5 -58t200 -159t116 -231t39.5 -280q0 -318 -156 -510l195 -197zM756 124q165 0 277 82l-199 204l92 97l201 -203 +q106 156 106 403q0 93 -16.5 176.5t-53 158.5t-90.5 129.5t-135.5 86t-181.5 31.5q-123 0 -216.5 -48t-148.5 -130.5t-82 -184.5t-27 -219q0 -93 16.5 -177t53 -159t91 -129.5t134.5 -86t179 -31.5z" /> + <glyph glyph-name="R" unicode="R" horiz-adv-x="1220" +d="M212 -2v1413h404q192 0 318 -106.5t126 -285.5q0 -141 -82 -239t-219 -127l383 -655h-186l-353 634h-232v-634h-159zM373 778h269q118 6 190 68.5t72 172.5q0 118 -79 185t-207 67h-245v-493z" /> + <glyph glyph-name="S" unicode="S" horiz-adv-x="1110" +d="M571 -16q-183 0 -321 98.5t-167 279.5l148 44q14 -136 110.5 -208.5t230.5 -72.5q131 0 208.5 64.5t77.5 188.5q0 74 -37.5 130.5t-97.5 93t-132.5 68.5t-145.5 66.5t-133 76.5t-97.5 109t-37.5 154q0 159 111 258.5t272 99.5q263 0 392 -220l-119 -80q-41 81 -114 122 +t-161 41q-93 0 -160 -57t-67 -150q0 -51 23.5 -92.5t62.5 -71.5t90.5 -56.5t108 -52t112.5 -52t107.5 -62t90.5 -77.5t62.5 -102.5t23.5 -133.5q0 -183 -124.5 -294.5t-316.5 -111.5z" /> + <glyph glyph-name="T" unicode="T" horiz-adv-x="1234" +d="M537 0v1282h-477v131h1114v-131h-477v-1282h-160z" /> + <glyph glyph-name="U" unicode="U" horiz-adv-x="1352" +d="M675 -20q-102 0 -185.5 29t-139.5 78.5t-94 118.5t-55 147t-17 165v895h159v-850q0 -433 332 -433q336 0 336 433v850h159v-885q0 -90 -17.5 -170t-56 -150t-95.5 -120t-140 -79t-186 -29z" /> + <glyph glyph-name="V" unicode="V" horiz-adv-x="1324" +d="M596 0l-533 1413h166l435 -1203l435 1203h162l-529 -1413h-136z" /> + <glyph glyph-name="W" unicode="W" horiz-adv-x="1973" +d="M471 0l-397 1413h162l336 -1219l351 1137h128l352 -1137l334 1219h163l-398 -1413h-174l-338 1076l-345 -1076h-174z" /> + <glyph glyph-name="X" unicode="X" horiz-adv-x="1260" +d="M72 0l468 707l-466 706h189l368 -586l370 586h185l-463 -706l465 -707h-185l-374 576l-368 -576h-189z" /> + <glyph glyph-name="Y" unicode="Y" horiz-adv-x="1316" +d="M581 0v553l-529 860h186l419 -699l422 699h185l-527 -860v-553h-156z" /> + <glyph glyph-name="Z" unicode="Z" horiz-adv-x="1273" +d="M87 0v124l895 1152h-850v137h1043v-130l-891 -1139h891v-144h-1088z" /> + <glyph glyph-name="bracketleft" unicode="[" horiz-adv-x="633" +d="M204 -93v1597h362v-91h-236v-1413h236v-93h-362z" /> + <glyph glyph-name="backslash" unicode="\" horiz-adv-x="927" +d="M765 -430l-754 1946h153l753 -1946h-152z" /> + <glyph glyph-name="bracketright" unicode="]" horiz-adv-x="633" +d="M67 -93v93h236v1413h-236v91h362v-1597h-362z" /> + <glyph glyph-name="asciicircum" unicode="^" horiz-adv-x="974" +d="M124 839l362 589l366 -589h-158l-208 334l-204 -334h-158z" /> + <glyph glyph-name="underscore" unicode="_" horiz-adv-x="1236" +d="M228 -114v114h780v-114h-780z" /> + <glyph glyph-name="grave" unicode="`" horiz-adv-x="536" +d="M314 1122l-258 291h192l218 -291h-152z" /> + <glyph glyph-name="a" unicode="a" horiz-adv-x="1025" +d="M401 -20q-144 0 -234 80t-90 218q0 293 440 293h228q0 319 -245 319q-172 0 -277 -151l-109 85q142 196 377 196q187 0 289 -110.5t102 -296.5v-613h-127l-3 193q-52 -108 -145 -160.5t-206 -52.5zM418 106q97 0 174 55t115 134.5t38 162.5h-214q-152 0 -226 -43 +t-74 -141q0 -85 51.5 -126.5t135.5 -41.5z" /> + <glyph glyph-name="b" unicode="b" horiz-adv-x="1128" +d="M630 -20q-203 0 -311 156v-136h-149v1413h149v-550q110 157 310 157q126 0 219 -71t138.5 -187.5t45.5 -261.5t-45.5 -261.5t-138 -187.5t-218.5 -71zM591 106q96 0 164 57t98 144t30 193q0 105 -30 192t-98 144.5t-164 57.5q-72 0 -128.5 -33t-89.5 -89t-50 -125 +t-17 -147q0 -107 28.5 -193.5t94.5 -143.5t162 -57z" /> + <glyph glyph-name="c" unicode="c" horiz-adv-x="974" +d="M526 -20q-105 0 -189 42.5t-136.5 115t-80.5 165t-28 195.5q0 102 27.5 195t80 166.5t136.5 117t188 43.5q134 0 235 -70.5t154 -195.5l-141 -60q-22 91 -90 145.5t-158 54.5q-74 0 -130.5 -36t-87.5 -95.5t-46 -126t-15 -138.5q0 -73 15 -139t46 -124.5t87 -93.5 +t131 -35q91 0 158 53t90 142l130 -56q-45 -125 -143 -195t-233 -70z" /> + <glyph glyph-name="d" unicode="d" horiz-adv-x="1129" +d="M809 1413h149v-1413h-145l-3 139q-110 -159 -313 -159q-124 0 -216.5 71t-138.5 188t-46 261q0 145 46 261.5t138 187.5t216 71q205 0 313 -157v550zM535 106q74 0 130.5 32.5t89.5 88.5t49.5 124.5t16.5 148.5q0 62 -10 118.5t-32 107.5t-55 88t-81.5 58.5t-107.5 21.5 +q-72 0 -128.5 -33t-90 -89t-50.5 -125t-17 -147q0 -79 17 -148t50.5 -125t90 -88.5t128.5 -32.5z" /> + <glyph glyph-name="e" unicode="e" horiz-adv-x="1038" +d="M541 -14q-111 0 -198 41t-141.5 111.5t-82.5 161t-28 194.5q0 81 17 156.5t52.5 142t86 115t122 77t156.5 28.5q94 0 168.5 -29t121.5 -76t78 -111.5t43.5 -131t12.5 -139.5q0 -32 -5 -77h-696q-1 -141 75.5 -236.5t216.5 -95.5q91 0 158 23.5t123 83.5l102 -82 +q-81 -82 -171.5 -119t-210.5 -37zM248 571h558q-2 63 -17.5 117.5t-47 101t-87 73.5t-129.5 27q-88 0 -150.5 -45t-92.5 -115t-34 -159z" /> + <glyph glyph-name="f" unicode="f" horiz-adv-x="678" +d="M214 0v877h-182v122h183v168q0 129 76.5 198t193.5 69q86 0 164 -38l-36 -119q-65 31 -117 31q-60 0 -96.5 -37.5t-36.5 -111.5v-160h287v-122h-287v-877h-149z" /> + <glyph glyph-name="g" unicode="g" horiz-adv-x="1024" +d="M527 129q49 -7 76.5 -11t72.5 -12.5t71.5 -18.5t61 -25t54.5 -34.5t39.5 -45.5t28 -60.5t8.5 -75.5q0 -99 -57 -169.5t-145.5 -102.5t-197.5 -32q-192 0 -311.5 97.5t-119.5 242.5q0 17 3 38l144 145q-127 70 -127 205q0 102 73 165q-84 94 -84 228q0 156 107 253t267 97 +q155 0 258 -93l150 136l85 -106l-161 -127q37 -74 37 -162q0 -157 -104.5 -250.5t-264.5 -93.5q-102 0 -188 42q-43 -33 -43 -77q0 -37 20.5 -64t61 -44t82.5 -26.5t103 -18.5zM489 895q-99 0 -159.5 -67t-60.5 -162q0 -102 59.5 -163.5t160.5 -61.5t161 61.5t60 163.5 +q0 97 -60.5 163t-160.5 66zM551 -326q107 0 181 42t74 119q0 21 -5 38t-16.5 30.5t-23.5 24t-33.5 18.5t-39 13.5t-46.5 11t-49 9t-54.5 8.5t-55.5 9q-83 15 -119 26l-118 -144q1 -82 83.5 -143.5t221.5 -61.5z" /> + <glyph glyph-name="h" unicode="h" horiz-adv-x="1124" +d="M170 0v1413h148v-578q50 82 139 132t186 50q87 0 153 -32.5t105 -89t58.5 -127t19.5 -152.5v-616h-151v592q0 44 -5.5 82t-20 76.5t-37.5 65.5t-61 44t-88 17q-129 0 -213.5 -98.5t-84.5 -239.5v-539h-148z" /> + <glyph glyph-name="i" unicode="i" horiz-adv-x="488" +d="M159 1221v192h170v-192h-170zM170 0v999h148v-999h-148z" /> + <glyph glyph-name="j" unicode="j" horiz-adv-x="493" +d="M161 1227v186h172v-186h-172zM67 -438q-74 0 -151 31l32 112q55 -17 115 -17q58 0 83 38.5t25 96.5v1176h152v-1154q0 -130 -63 -206.5t-193 -76.5z" /> + <glyph glyph-name="k" unicode="k" horiz-adv-x="1048" +d="M170 0v1413h151v-952l445 538h187l-326 -367l391 -632h-177l-306 530l-214 -237v-293h-151z" /> + <glyph glyph-name="l" unicode="l" horiz-adv-x="518" +d="M365 110q42 0 97 10v-120q-64 -20 -135 -20q-44 0 -75 12.5t-47.5 30.5t-26 49.5t-11.5 59.5t-2 70v1211h151v-1246q0 -2 0.5 -7t3.5 -14t8 -16.5t14.5 -13.5t22.5 -6z" /> + <glyph glyph-name="m" unicode="m" horiz-adv-x="1699" +d="M168 0v999h151v-155q32 75 106.5 125.5t165.5 50.5q109 0 189 -52.5t116 -156.5q48 101 127 155t184 54q90 0 158 -33t108.5 -91t60.5 -130.5t20 -158.5v-607h-151v592q0 56 -9.5 105t-32 95.5t-66.5 73.5t-106 27q-78 0 -137.5 -51.5t-87.5 -127t-28 -160.5v-554h-152 +v596q0 45 -5 84.5t-19.5 79.5t-37.5 68.5t-61 46.5t-87 18q-79 0 -139 -56t-88 -139t-28 -177v-521h-151z" /> + <glyph glyph-name="n" unicode="n" +d="M168 0v999h149v-174q51 90 133.5 141t188.5 51q86 0 152 -32.5t105 -90t58.5 -130t19.5 -157.5v-607h-148v592q0 56 -11 105.5t-36 94.5t-71 71.5t-109 26.5q-124 0 -203 -96t-79 -275v-519h-149z" /> + <glyph glyph-name="o" unicode="o" +d="M557 -20q-137 0 -246 71t-167 190t-58 261t58 259.5t166.5 188t246.5 70.5q137 0 247 -70t169.5 -188.5t59.5 -259.5q0 -142 -59.5 -261t-169.5 -190t-247 -71zM558 104q81 0 144.5 34t102 91t58 126.5t19.5 146.5t-19.5 146t-57.5 125.5t-101.5 89.5t-143.5 33 +t-143.5 -33t-102 -89t-58.5 -125.5t-20 -146.5q0 -78 20 -148t58 -126.5t101 -90t143 -33.5z" /> + <glyph glyph-name="p" unicode="p" horiz-adv-x="1129" +d="M170 -438v1437h150v-136q50 74 128.5 115.5t176.5 41.5q130 0 224 -71t139 -187t45 -262q0 -145 -45 -260.5t-138.5 -187.5t-223.5 -72q-97 0 -176 40.5t-130 115.5v-574h-150zM594 106q96 0 163 57t96.5 144t29.5 193t-29.5 192.5t-96.5 144t-163 57.5q-97 0 -164 -57.5 +t-95.5 -144t-28.5 -192.5q0 -79 17 -148t50.5 -125t90.5 -88.5t130 -32.5z" /> + <glyph glyph-name="q" unicode="q" horiz-adv-x="1130" +d="M809 -438v574q-110 -156 -305 -156q-129 0 -223 71t-139.5 187t-45.5 262q0 145 45.5 261.5t139.5 187.5t222 71q98 0 177 -41t129 -116v136h151v-1437h-151zM537 106q73 0 129 32.5t89 88.5t49.5 125t16.5 148q0 78 -16.5 147t-49.5 125.5t-89 89t-129 32.5 +t-129.5 -32.5t-90.5 -88.5t-51 -125.5t-17 -147.5q0 -107 29 -193.5t95.5 -143.5t163.5 -57z" /> + <glyph glyph-name="r" unicode="r" horiz-adv-x="795" +d="M168 0v999h149v-177q39 91 119.5 144.5t175.5 53.5t161 -52l-63 -129q-45 38 -122 38q-128 0 -200.5 -99t-72.5 -279v-499h-147z" /> + <glyph glyph-name="s" unicode="s" horiz-adv-x="868" +d="M445 -20q-135 0 -236 71t-137 176l126 65q28 -85 91 -137.5t158 -52.5q88 0 142 43t54 122q0 54 -29.5 92.5t-76 60.5t-103 40t-113.5 38.5t-103.5 48.5t-76 77.5t-29.5 118.5q0 130 91.5 203.5t225.5 73.5q112 0 196.5 -53.5t131.5 -145.5l-110 -63q-70 141 -223 141 +q-80 0 -127.5 -38t-47.5 -100q0 -46 29.5 -79t77.5 -52.5t105 -36.5t114.5 -39.5t105.5 -53.5t77.5 -85.5t29.5 -129.5t-29 -134.5t-78 -96t-109.5 -55.5t-126.5 -19z" /> + <glyph glyph-name="t" unicode="t" horiz-adv-x="673" +d="M446 -20q-242 0 -242 285v612h-160v122h161v225l148 140v-365h253v-122h-253v-613q0 -79 35 -120t92 -41q48 0 100 25v-128q-49 -20 -134 -20z" /> + <glyph glyph-name="u" unicode="u" horiz-adv-x="1117" +d="M486 -22q-119 0 -197.5 59.5t-112 155.5t-33.5 226v580h149v-590q0 -59 9.5 -109t31 -96.5t65 -73t104.5 -26.5q122 0 210 98.5t88 243.5v553h148v-999h-148v169q-34 -74 -119.5 -132.5t-194.5 -58.5z" /> + <glyph glyph-name="v" unicode="v" horiz-adv-x="949" +d="M409 0l-373 999h163l276 -805l278 805h160l-372 -999h-132z" /> + <glyph glyph-name="w" unicode="w" horiz-adv-x="1419" +d="M329 -1l-279 1000h158l204 -802l230 802h137l229 -800l203 800h159l-280 -999h-145l-233 811l-238 -812h-145z" /> + <glyph glyph-name="x" unicode="x" horiz-adv-x="920" +d="M46 0l337 504l-337 495h183l233 -370l234 370h178l-333 -495l333 -504h-178l-234 378l-233 -378h-183z" /> + <glyph glyph-name="y" unicode="y" horiz-adv-x="975" +d="M248 -430l171 435l-384 994h165l293 -817l284 817h163l-535 -1429h-157z" /> + <glyph glyph-name="z" unicode="z" horiz-adv-x="930" +d="M852 999v-123l-600 -748h600v-128h-786v113l611 764h-582v122h757z" /> + <glyph glyph-name="braceleft" unicode="{" horiz-adv-x="599" +d="M404 -120q-92 0 -155 82q-34 46 -34 144v367q0 75 -131 121v115q131 34 131 153v428q0 105 48.5 159.5t161.5 54.5h53q40 0 48 -1v-90q-30 6 -65 6q-109 0 -109 -63v-506q0 -72 -43 -119.5t-136 -85.5q89 -31 134 -70t45 -98v-364q0 -149 133 -149q17 0 41 7v-90 +q-17 -1 -50 -1h-72z" /> + <glyph glyph-name="bar" unicode="|" horiz-adv-x="621" +d="M256 -512v2046h109v-2046h-109z" /> + <glyph glyph-name="braceright" unicode="}" horiz-adv-x="599" +d="M125 -120q-35 0 -52 1v90q26 -7 41 -7q133 0 133 149v364q0 58 47 98t132 70q-98 39 -138.5 85.5t-40.5 119.5v506q0 63 -109 63q-33 0 -65 -6v90q8 1 49 1h52q112 0 160.5 -54t48.5 -160v-428q0 -118 131 -153v-115q-131 -47 -131 -121v-367q0 -107 -30 -146 +q-31 -39 -67 -59.5t-90 -20.5h-71z" /> + <glyph glyph-name="asciitilde" unicode="~" horiz-adv-x="1160" +d="M739 379q-45 0 -85.5 18t-70 43t-57 50.5t-58.5 43.5t-63 18q-98 0 -96 -146h-99q0 109 49.5 177t143.5 68q53 0 97.5 -17.5t73.5 -42t55 -49t55 -42t61 -17.5q55 0 77.5 41.5t22.5 120.5h107q0 -127 -55.5 -196.5t-157.5 -69.5z" /> + <glyph glyph-name="uni00A0" unicode=" " horiz-adv-x="563" + /> + <glyph glyph-name="exclamdown" unicode="¡" horiz-adv-x="628" +d="M215 806v193h196v-193h-196zM228 -436l28 1055h114l29 -1055h-171z" /> + <glyph glyph-name="cent" unicode="¢" horiz-adv-x="1134" +d="M544 -205v189q-122 14 -209.5 89.5t-128.5 184.5t-41 240q0 130 40.5 239t128.5 185t210 91v187h110v-187q115 -14 203 -81.5t135 -177.5l-148 -61q-22 84 -88.5 133.5t-153.5 49.5q-74 0 -130.5 -33.5t-88 -89t-46.5 -120t-15 -135.5q0 -56 9 -108.5t30 -102t52 -86.5 +t79.5 -59t109.5 -22q87 0 153.5 49.5t88.5 132.5l136 -57q-41 -114 -126 -182.5t-200 -79.5v-188h-110z" /> + <glyph glyph-name="sterling" unicode="£" horiz-adv-x="1241" +d="M163 0v118q10 7 26.5 20.5t58.5 53t74.5 79t59 92.5t26.5 99q0 34 -6.5 78t-13.5 70l-6 27h-216v133h183q-48 118 -48 245q0 114 44.5 207.5t136 152t215.5 58.5q131 0 228 -80t143 -205l-125 -47q-33 91 -97.5 145t-148.5 54q-122 0 -192.5 -78.5t-70.5 -205.5 +q0 -54 12 -115.5t24 -96.5l13 -34h473v-133h-439q21 -92 21 -173q0 -56 -17.5 -110.5t-43 -93t-50.5 -68.5t-43 -44l-17 -15h812v-133h-1016z" /> + <glyph glyph-name="currency" unicode="¤" horiz-adv-x="1375" +d="M316 167l-93 97l105 103q-89 116 -89.5 264.5t89.5 263.5l-103 100l93 99l103 -106q118 90 266 91t265 -89l104 102l93 -93l-102 -102q89 -116 89 -265.5t-89 -266.5l102 -101l-91 -97l-106 105q-116 -90 -266 -90t-267 90zM458 408q95 -95 226.5 -95t226.5 95 +q92 92 92 223t-93 223q-95 93 -225 92t-225 -94q-90 -91 -91 -222.5t89 -221.5z" /> + <glyph glyph-name="yen" unicode="¥" horiz-adv-x="1307" +d="M582 0v296h-299v117h299v119h-299v116h244l-475 765h168l435 -701l433 701h167l-475 -764h246v-117h-301v-119h301v-117h-301v-296h-143z" /> + <glyph glyph-name="brokenbar" unicode="¦" horiz-adv-x="618" +d="M256 731v744h107v-744h-107zM256 -307v727h107v-727h-107z" /> + <glyph glyph-name="section" unicode="§" horiz-adv-x="1125" +d="M568 -18q-152 0 -261 71.5t-148 211.5l138 47q49 -199 274 -199q45 0 83.5 7.5t74.5 24.5t56.5 51t20.5 82q0 50 -33 82t-85.5 48.5t-116.5 29t-128 30.5t-116.5 45.5t-85.5 81.5t-33 132q0 130 102 217q-47 33 -73.5 84.5t-26.5 110.5q0 69 29.5 126t78.5 93t111 56 +t129 20q130 0 225.5 -63.5t143.5 -184.5l-137 -46q-47 164 -235 164q-87 0 -150 -44.5t-63 -124.5q0 -41 25.5 -70t67.5 -43t96 -27.5t110 -23t110 -31t96 -50t67.5 -80.5t25.5 -122q0 -133 -96 -213q96 -71 96 -199q0 -76 -31.5 -134t-85 -92t-118.5 -51t-137 -17zM697 532 +q109 45 109 161q0 38 -19 68.5t-45 48.5t-68 33.5t-74 22.5t-77.5 16t-64.5 14q-55 -22 -85.5 -66.5t-30.5 -99.5q0 -36 19.5 -65t48 -46.5t70.5 -32.5t76.5 -22.5t78 -17t62.5 -14.5z" /> + <glyph glyph-name="dieresis" unicode="¨" horiz-adv-x="834" +d="M164 1221v192h169v-192h-169zM501 1221v192h168v-192h-168z" /> + <glyph glyph-name="copyright" unicode="©" horiz-adv-x="1750" +d="M875 -51q-153 0 -292.5 60t-240 161.5t-160 242t-59.5 294.5t59.5 294t160 241.5t240 161.5t292.5 60t292 -60t240 -161.5t160.5 -241.5t59.5 -294t-59.5 -294.5t-160.5 -242t-240 -161.5t-292 -60zM875 69q169 0 315 87t232 234t86 317q0 169 -86 316t-232 234t-315 87 +q-168 0 -314.5 -87t-233 -234t-86.5 -316t86.5 -316.5t233 -234.5t314.5 -87zM892 300q-114 0 -195.5 55.5t-119.5 145.5t-38 204t38 203.5t119.5 145t195.5 55.5q103 0 183.5 -49.5t122.5 -140.5l-108 -46q-60 117 -198 117q-117 0 -177 -82t-60 -203t59 -202.5t176 -81.5 +q65 0 117.5 30.5t80.5 87.5l110 -47q-42 -93 -122 -142.5t-184 -49.5z" /> + <glyph glyph-name="ordfeminine" unicode="ª" horiz-adv-x="850" +d="M341 709q-97 0 -163.5 58.5t-66.5 152.5q0 107 70.5 158t190.5 51h212q-2 207 -174 207q-57 0 -105 -29t-76 -72l-91 58q54 73 119.5 107t157.5 34q131 0 203.5 -76t72.5 -206v-429h-97l-5 117q-47 -68 -106 -99.5t-142 -31.5zM367 810q89 0 152.5 68.5t64.5 153.5h-202 +q-64 0 -105.5 -30t-41.5 -82q0 -48 41.5 -79t90.5 -31z" /> + <glyph glyph-name="guillemotleft" unicode="«" horiz-adv-x="963" +d="M433 185l-369 327l369 325v-162l-193 -163l193 -165v-162zM797 185l-371 327l371 325v-162l-195 -163l195 -165v-162z" /> + <glyph glyph-name="logicalnot" unicode="¬" horiz-adv-x="1284" +d="M891 291v372h-738v134h878v-506h-140z" /> + <glyph glyph-name="uni00AD" unicode="­" horiz-adv-x="979" +d="M161 578v114h657v-114h-657z" /> + <glyph glyph-name="registered" unicode="®" horiz-adv-x="1750" +d="M875 -49q-153 0 -292.5 60t-240 161.5t-160 242t-59.5 294.5t59.5 294t160 241.5t240 161.5t292.5 60t292 -60t240 -161.5t160.5 -241.5t59.5 -294t-59.5 -294.5t-160.5 -242t-240 -161.5t-292 -60zM875 63q129 0 247.5 51.5t204.5 138.5t137.5 206.5t51.5 249.5 +t-51.5 249t-137.5 206t-204.5 139t-247.5 52q-128 0 -247 -52t-205.5 -138.5t-138 -206t-51.5 -249.5t51.5 -249.5t138 -206.5t205 -138.5t247.5 -51.5zM627 304v795h302q132 0 196.5 -60t64.5 -172q0 -95 -46.5 -149t-119.5 -69l202 -345h-142l-177 333h-158v-333h-122z +M739 747h190q149 0 149 120q0 63 -36 92t-113 29h-190v-241z" /> + <glyph glyph-name="macron" unicode="¯" horiz-adv-x="862" +d="M158 1183v125h541v-125h-541z" /> + <glyph glyph-name="degree" unicode="°" horiz-adv-x="950" +d="M476 848q-121 0 -207 86t-86 207t86 207t207 86q120 0 205.5 -86t85.5 -207t-85.5 -207t-205.5 -86zM476 941q81 0 139.5 59t58.5 141t-58.5 140.5t-139.5 58.5q-82 0 -141 -58.5t-59 -140.5t59 -141t141 -59z" /> + <glyph glyph-name="plusminus" unicode="±" horiz-adv-x="1320" +d="M603 106v463h-457v113h457v461h114v-461h457v-113h-457v-463h-114zM147 -114v114h1026v-114h-1026z" /> + <glyph glyph-name="acute" unicode="´" horiz-adv-x="532" +d="M66 1124l217 289h193l-277 -289h-133z" /> + <glyph glyph-name="uni00B5" unicode="µ" horiz-adv-x="1298" +d="M255 -266v1265h157v-596q0 -57 9.5 -104.5t31 -90t63 -66.5t100.5 -24q121 0 210 93.5t89 216.5v571h157v-999h-157v169q-37 -74 -122.5 -133t-190.5 -59q-104 0 -189 51l-22 -294h-136z" /> + <glyph glyph-name="paragraph" unicode="¶" horiz-adv-x="1332" +d="M572 -246v869q-119 0 -220.5 45.5t-166.5 137.5t-65 212t65 212t166.5 137.5t220.5 45.5h136v-1659h-136zM940 -246v1659h136v-1659h-136z" /> + <glyph glyph-name="periodcentered" unicode="·" horiz-adv-x="643" +d="M320 699q-52 0 -88 36.5t-36 88.5q0 54 35.5 89t88.5 35t89 -35.5t36 -88.5q0 -52 -36.5 -88.5t-88.5 -36.5z" /> + <glyph glyph-name="cedilla" unicode="¸" horiz-adv-x="576" +d="M264 -504q-62 0 -111.5 35.5t-70.5 88.5l99 51q6 -29 30.5 -50.5t58.5 -21.5q44 0 71 28t27 68q0 51 -48 88t-138 37h-42l99 180h119l-68 -117q90 -4 138 -55t48 -125q0 -83 -58.5 -145t-153.5 -62z" /> + <glyph glyph-name="ordmasculine" unicode="º" horiz-adv-x="898" +d="M450 711q-149 0 -245 104.5t-96 257.5q0 151 96 256t245 105q147 0 242.5 -105t95.5 -256q0 -152 -95.5 -257t-242.5 -105zM450 820q105 0 155.5 71.5t50.5 181.5t-51 181.5t-155 71.5q-106 0 -157.5 -71.5t-51.5 -181.5q0 -71 20 -126t68.5 -91t120.5 -36z" /> + <glyph glyph-name="guillemotright" unicode="»" horiz-adv-x="963" +d="M163 185v162l194 165l-194 163v162l369 -325zM526 185v162l193 165l-193 163v162l371 -325z" /> + <glyph glyph-name="questiondown" unicode="¿" horiz-adv-x="1019" +d="M417 806v193h195v-193h-195zM524 -434q-179 0 -297 95.5t-118 267.5q0 69 19 122.5t48.5 86t66 57.5t73 44.5t66 40t48.5 50t19 68.5v225h137v-227q0 -60 -18.5 -103.5t-48 -69.5t-65 -46.5t-71 -40.5t-65 -45t-48 -67t-18.5 -99q0 -112 74 -169.5t191 -57.5 +q114 0 189.5 64.5t76.5 178.5h145q-1 -114 -55.5 -200.5t-145.5 -130.5t-203 -44z" /> + <glyph glyph-name="Agrave" unicode="À" horiz-adv-x="1306" +d="M582 1536l-258 291h192l218 -291h-152zM63 0l531 1413h122l527 -1413h-170l-108 307h-621l-108 -307h-173zM397 452h514l-255 728z" /> + <glyph glyph-name="Aacute" unicode="Á" horiz-adv-x="1306" +d="M559 1538l217 289h193l-277 -289h-133zM63 0l531 1413h122l527 -1413h-170l-108 307h-621l-108 -307h-173zM397 452h514l-255 728z" /> + <glyph glyph-name="Acircumflex" unicode="Â" horiz-adv-x="1306" +d="M325 1512l329 355l329 -355h-161l-168 186l-167 -186h-162zM63 0l531 1413h122l527 -1413h-170l-108 307h-621l-108 -307h-173zM397 452h514l-255 728z" /> + <glyph glyph-name="Atilde" unicode="Ã" horiz-adv-x="1306" +d="M775 1560q-38 0 -71 16t-55.5 39t-42.5 46.5t-42 39.5t-44 16q-69 0 -69 -137h-100q0 114 44 182t125 68q49 0 90 -25t63.5 -54.5t50 -54.5t53.5 -25q71 0 71 153h106q0 -128 -46.5 -196t-132.5 -68zM63 0l531 1413h122l527 -1413h-170l-108 307h-621l-108 -307h-173z +M397 452h514l-255 728z" /> + <glyph glyph-name="Adieresis" unicode="Ä" horiz-adv-x="1306" +d="M399 1635v192h169v-192h-169zM736 1635v192h168v-192h-168zM63 0l531 1413h122l527 -1413h-170l-108 307h-621l-108 -307h-173zM397 452h514l-255 728z" /> + <glyph glyph-name="Aring" unicode="Å" horiz-adv-x="1306" +d="M63 0l501 1337q-51 24 -82 73.5t-31 109.5q0 85 58.5 144.5t142.5 59.5t144.5 -59t60.5 -145q0 -58 -31.5 -107t-81.5 -73l499 -1340h-170l-108 307h-621l-108 -307h-173zM652 1420q42 0 71 29t29 72q0 42 -28 70t-72 28t-71 -27t-27 -71t28 -72.5t70 -28.5zM397 452h514 +l-255 728z" /> + <glyph glyph-name="AE" unicode="Æ" horiz-adv-x="1815" +d="M63 0l526 1413h1117v-129h-747v-510h659v-135h-659v-503h747v-136h-902v307h-466l-111 -307h-164zM387 448h417v836h-113z" /> + <glyph glyph-name="Ccedilla" unicode="Ç" horiz-adv-x="1420" +d="M1334 358q-70 -161 -193.5 -256t-291.5 -116l-60 -103q90 -4 138 -55t48 -125q0 -83 -58.5 -145t-153.5 -62q-62 0 -111.5 35.5t-70.5 88.5l99 51q6 -29 30.5 -50.5t58.5 -21.5q44 0 71 28t27 68q0 51 -48 88t-138 37h-42l88 160q-120 4 -219.5 43.5t-169.5 106.5 +t-118.5 158t-71.5 197t-23 225t23 225.5t73.5 198.5t124.5 159t181.5 105t239.5 38q202 0 347 -92.5t218 -283.5l-146 -63q-22 79 -66 137.5t-102.5 91.5t-122.5 48t-135 15q-101 0 -182 -31t-136 -84t-91.5 -127t-53 -157.5t-16.5 -177.5q0 -121 27.5 -224t84 -185.5 +t151.5 -129.5t220 -47q317 0 424 295z" /> + <glyph glyph-name="Egrave" unicode="È" horiz-adv-x="1239" +d="M594 1536l-258 291h192l218 -291h-152zM212 0v1413h915v-137h-756v-502h657v-133h-657v-496h756v-145h-915z" /> + <glyph glyph-name="Eacute" unicode="É" horiz-adv-x="1239" +d="M571 1538l217 289h193l-277 -289h-133zM212 0v1413h915v-137h-756v-502h657v-133h-657v-496h756v-145h-915z" /> + <glyph glyph-name="Ecircumflex" unicode="Ê" horiz-adv-x="1239" +d="M337 1512l329 355l329 -355h-161l-168 186l-167 -186h-162zM212 0v1413h915v-137h-756v-502h657v-133h-657v-496h756v-145h-915z" /> + <glyph glyph-name="Edieresis" unicode="Ë" horiz-adv-x="1239" +d="M411 1635v192h169v-192h-169zM748 1635v192h168v-192h-168zM212 0v1413h915v-137h-756v-502h657v-133h-657v-496h756v-145h-915z" /> + <glyph glyph-name="Igrave" unicode="Ì" horiz-adv-x="582" +d="M218 1536l-258 291h192l218 -291h-152zM212 0v1413h159v-1413h-159z" /> + <glyph glyph-name="Iacute" unicode="Í" horiz-adv-x="582" +d="M195 1538l217 289h193l-277 -289h-133zM212 0v1413h159v-1413h-159z" /> + <glyph glyph-name="Icircumflex" unicode="Î" horiz-adv-x="582" +d="M-39 1512l329 355l329 -355h-161l-168 186l-167 -186h-162zM212 0v1413h159v-1413h-159z" /> + <glyph glyph-name="Idieresis" unicode="Ï" horiz-adv-x="582" +d="M35 1635v192h169v-192h-169zM372 1635v192h168v-192h-168zM212 0v1413h159v-1413h-159z" /> + <glyph glyph-name="Eth" unicode="Ð" horiz-adv-x="1423" +d="M229 0v655h-112v115h112v643h365q342 0 525 -184.5t183 -532.5q0 -333 -185.5 -514.5t-524.5 -181.5h-363zM391 147h177q125 0 227.5 33t180 99.5t120.5 175.5t43 252q0 276 -137.5 418.5t-411.5 142.5h-199v-498h381v-115h-381v-508z" /> + <glyph glyph-name="Ntilde" unicode="Ñ" horiz-adv-x="1418" +d="M828 1560q-38 0 -71 16t-55.5 39t-42.5 46.5t-42 39.5t-44 16q-69 0 -69 -137h-100q0 114 44 182t125 68q49 0 90 -25t63.5 -54.5t50 -54.5t53.5 -25q71 0 71 153h106q0 -128 -46.5 -196t-132.5 -68zM212 0v1413h229l608 -1245v1245h157v-1413h-232l-604 1247v-1247h-158 +z" /> + <glyph glyph-name="Ograve" unicode="Ò" horiz-adv-x="1515" +d="M684 1536l-258 291h192l218 -291h-152zM756 -20q-126 0 -230.5 38t-178.5 105t-125 159t-75 199t-24 226t24 226t75 199t125 159t178.5 105t230.5 38q157 0 280.5 -58t200 -159t116 -231t39.5 -279q0 -150 -39.5 -279.5t-116 -230.5t-200 -159t-280.5 -58zM756 126 +q100 0 182 31.5t137 85.5t92 128.5t54 158.5t17 177t-17 176.5t-54 158t-92 128.5t-137 85.5t-182 31.5q-99 0 -179.5 -31.5t-135.5 -85.5t-92 -128.5t-54 -158t-17 -176.5t17 -177t54 -158.5t92 -128.5t135.5 -85.5t179.5 -31.5z" /> + <glyph glyph-name="Oacute" unicode="Ó" horiz-adv-x="1515" +d="M661 1538l217 289h193l-277 -289h-133zM756 -20q-126 0 -230.5 38t-178.5 105t-125 159t-75 199t-24 226t24 226t75 199t125 159t178.5 105t230.5 38q157 0 280.5 -58t200 -159t116 -231t39.5 -279q0 -150 -39.5 -279.5t-116 -230.5t-200 -159t-280.5 -58zM756 126 +q100 0 182 31.5t137 85.5t92 128.5t54 158.5t17 177t-17 176.5t-54 158t-92 128.5t-137 85.5t-182 31.5q-99 0 -179.5 -31.5t-135.5 -85.5t-92 -128.5t-54 -158t-17 -176.5t17 -177t54 -158.5t92 -128.5t135.5 -85.5t179.5 -31.5z" /> + <glyph glyph-name="Ocircumflex" unicode="Ô" horiz-adv-x="1515" +d="M427 1512l329 355l329 -355h-161l-168 186l-167 -186h-162zM756 -20q-126 0 -230.5 38t-178.5 105t-125 159t-75 199t-24 226t24 226t75 199t125 159t178.5 105t230.5 38q157 0 280.5 -58t200 -159t116 -231t39.5 -279q0 -150 -39.5 -279.5t-116 -230.5t-200 -159 +t-280.5 -58zM756 126q100 0 182 31.5t137 85.5t92 128.5t54 158.5t17 177t-17 176.5t-54 158t-92 128.5t-137 85.5t-182 31.5q-99 0 -179.5 -31.5t-135.5 -85.5t-92 -128.5t-54 -158t-17 -176.5t17 -177t54 -158.5t92 -128.5t135.5 -85.5t179.5 -31.5z" /> + <glyph glyph-name="Otilde" unicode="Õ" horiz-adv-x="1515" +d="M877 1560q-38 0 -71 16t-55.5 39t-42.5 46.5t-42 39.5t-44 16q-69 0 -69 -137h-100q0 114 44 182t125 68q49 0 90 -25t63.5 -54.5t50 -54.5t53.5 -25q71 0 71 153h106q0 -128 -46.5 -196t-132.5 -68zM756 -20q-126 0 -230.5 38t-178.5 105t-125 159t-75 199t-24 226 +t24 226t75 199t125 159t178.5 105t230.5 38q157 0 280.5 -58t200 -159t116 -231t39.5 -279q0 -150 -39.5 -279.5t-116 -230.5t-200 -159t-280.5 -58zM756 126q100 0 182 31.5t137 85.5t92 128.5t54 158.5t17 177t-17 176.5t-54 158t-92 128.5t-137 85.5t-182 31.5 +q-99 0 -179.5 -31.5t-135.5 -85.5t-92 -128.5t-54 -158t-17 -176.5t17 -177t54 -158.5t92 -128.5t135.5 -85.5t179.5 -31.5z" /> + <glyph glyph-name="Odieresis" unicode="Ö" horiz-adv-x="1515" +d="M501 1635v192h169v-192h-169zM838 1635v192h168v-192h-168zM756 -20q-126 0 -230.5 38t-178.5 105t-125 159t-75 199t-24 226t24 226t75 199t125 159t178.5 105t230.5 38q157 0 280.5 -58t200 -159t116 -231t39.5 -279q0 -150 -39.5 -279.5t-116 -230.5t-200 -159 +t-280.5 -58zM756 126q100 0 182 31.5t137 85.5t92 128.5t54 158.5t17 177t-17 176.5t-54 158t-92 128.5t-137 85.5t-182 31.5q-99 0 -179.5 -31.5t-135.5 -85.5t-92 -128.5t-54 -158t-17 -176.5t17 -177t54 -158.5t92 -128.5t135.5 -85.5t179.5 -31.5z" /> + <glyph glyph-name="multiply" unicode="×" horiz-adv-x="1104" +d="M229 221l-81 80l323 324l-326 325l81 82l327 -327l322 323l81 -80l-323 -323l326 -326l-80 -82l-326 327z" /> + <glyph glyph-name="Oslash" unicode="Ø" horiz-adv-x="1515" +d="M1156 1300q117 -98 176.5 -253t59.5 -340q0 -150 -39.5 -279.5t-116 -230.5t-200 -159t-280.5 -58q-176 0 -308 73l-30 -53h-128l66 116q-115 97 -174 252t-59 339q0 119 24 226t75 199t125 159t178.5 105t230.5 38q174 0 307 -72l29 51h128zM278 707q0 -138 38.5 -257 +t116.5 -198l556 980q-101 55 -233 55q-99 0 -179.5 -31.5t-135.5 -85.5t-92 -128.5t-54 -158t-17 -176.5zM756 126q100 0 182 31.5t137 85.5t92 128.5t54 158.5t17 177q0 140 -39.5 259.5t-119.5 198.5l-557 -982q101 -57 234 -57z" /> + <glyph glyph-name="Ugrave" unicode="Ù" horiz-adv-x="1352" +d="M608 1536l-258 291h192l218 -291h-152zM675 -20q-102 0 -185.5 29t-139.5 78.5t-94 118.5t-55 147t-17 165v895h159v-850q0 -433 332 -433q336 0 336 433v850h159v-885q0 -90 -17.5 -170t-56 -150t-95.5 -120t-140 -79t-186 -29z" /> + <glyph glyph-name="Uacute" unicode="Ú" horiz-adv-x="1352" +d="M585 1538l217 289h193l-277 -289h-133zM675 -20q-102 0 -185.5 29t-139.5 78.5t-94 118.5t-55 147t-17 165v895h159v-850q0 -433 332 -433q336 0 336 433v850h159v-885q0 -90 -17.5 -170t-56 -150t-95.5 -120t-140 -79t-186 -29z" /> + <glyph glyph-name="Ucircumflex" unicode="Û" horiz-adv-x="1352" +d="M351 1512l329 355l329 -355h-161l-168 186l-167 -186h-162zM675 -20q-102 0 -185.5 29t-139.5 78.5t-94 118.5t-55 147t-17 165v895h159v-850q0 -433 332 -433q336 0 336 433v850h159v-885q0 -90 -17.5 -170t-56 -150t-95.5 -120t-140 -79t-186 -29z" /> + <glyph glyph-name="Udieresis" unicode="Ü" horiz-adv-x="1352" +d="M425 1635v192h169v-192h-169zM762 1635v192h168v-192h-168zM675 -20q-102 0 -185.5 29t-139.5 78.5t-94 118.5t-55 147t-17 165v895h159v-850q0 -433 332 -433q336 0 336 433v850h159v-885q0 -90 -17.5 -170t-56 -150t-95.5 -120t-140 -79t-186 -29z" /> + <glyph glyph-name="Yacute" unicode="Ý" horiz-adv-x="1316" +d="M562 1538l217 289h193l-277 -289h-133zM581 0v553l-529 860h186l419 -699l422 699h185l-527 -860v-553h-156z" /> + <glyph glyph-name="Thorn" unicode="Þ" horiz-adv-x="1149" +d="M212 0v1413h159v-199h250q202 0 321 -105.5t119 -289.5q0 -183 -123 -285t-329 -102h-238v-432h-159zM371 579h238q141 0 217 60t76 177t-76.5 180t-216.5 63h-238v-480z" /> + <glyph glyph-name="germandbls" unicode="ß" horiz-adv-x="1178" +d="M719 -18q-118 0 -265 66l61 140q103 -57 203 -57q72 0 131 48t59 114q0 58 -33 108t-79.5 88t-93 76.5t-79.5 91.5t-33 115q0 48 24 84.5t58 60.5t68 47.5t58 59t24 82.5q0 81 -66 136t-175 55q-262 0 -262 -390v-907h-149v908q0 141 31.5 245t88 164t128 88.5 +t159.5 28.5q97 0 187.5 -40.5t150.5 -120t60 -179.5q0 -47 -17 -84.5t-42.5 -60t-55.5 -44t-55.5 -38.5t-42.5 -42.5t-17 -56.5q0 -30 17.5 -58t45 -52t61 -49t67.5 -54.5t61.5 -63.5t45 -81t17.5 -102q0 -143 -97.5 -234.5t-243.5 -91.5z" /> + <glyph glyph-name="agrave" unicode="à" horiz-adv-x="1025" +d="M430 1122l-258 291h192l218 -291h-152zM401 -20q-144 0 -234 80t-90 218q0 293 440 293h228q0 319 -245 319q-172 0 -277 -151l-109 85q142 196 377 196q187 0 289 -110.5t102 -296.5v-613h-127l-3 193q-52 -108 -145 -160.5t-206 -52.5zM418 106q97 0 174 55t115 134.5 +t38 162.5h-214q-152 0 -226 -43t-74 -141q0 -85 51.5 -126.5t135.5 -41.5z" /> + <glyph glyph-name="aacute" unicode="á" horiz-adv-x="1025" +d="M407 1124l217 289h193l-277 -289h-133zM401 -20q-144 0 -234 80t-90 218q0 293 440 293h228q0 319 -245 319q-172 0 -277 -151l-109 85q142 196 377 196q187 0 289 -110.5t102 -296.5v-613h-127l-3 193q-52 -108 -145 -160.5t-206 -52.5zM418 106q97 0 174 55t115 134.5 +t38 162.5h-214q-152 0 -226 -43t-74 -141q0 -85 51.5 -126.5t135.5 -41.5z" /> + <glyph glyph-name="acircumflex" unicode="â" horiz-adv-x="1025" +d="M173 1098l329 355l329 -355h-161l-168 186l-167 -186h-162zM401 -20q-144 0 -234 80t-90 218q0 293 440 293h228q0 319 -245 319q-172 0 -277 -151l-109 85q142 196 377 196q187 0 289 -110.5t102 -296.5v-613h-127l-3 193q-52 -108 -145 -160.5t-206 -52.5zM418 106 +q97 0 174 55t115 134.5t38 162.5h-214q-152 0 -226 -43t-74 -141q0 -85 51.5 -126.5t135.5 -41.5z" /> + <glyph glyph-name="atilde" unicode="ã" horiz-adv-x="1025" +d="M623 1146q-38 0 -71 16t-55.5 39t-42.5 46.5t-42 39.5t-44 16q-69 0 -69 -137h-100q0 114 44 182t125 68q49 0 90 -25t63.5 -54.5t50 -54.5t53.5 -25q71 0 71 153h106q0 -128 -46.5 -196t-132.5 -68zM401 -20q-144 0 -234 80t-90 218q0 293 440 293h228q0 319 -245 319 +q-172 0 -277 -151l-109 85q142 196 377 196q187 0 289 -110.5t102 -296.5v-613h-127l-3 193q-52 -108 -145 -160.5t-206 -52.5zM418 106q97 0 174 55t115 134.5t38 162.5h-214q-152 0 -226 -43t-74 -141q0 -85 51.5 -126.5t135.5 -41.5z" /> + <glyph glyph-name="adieresis" unicode="ä" horiz-adv-x="1025" +d="M247 1221v192h169v-192h-169zM584 1221v192h168v-192h-168zM401 -20q-144 0 -234 80t-90 218q0 293 440 293h228q0 319 -245 319q-172 0 -277 -151l-109 85q142 196 377 196q187 0 289 -110.5t102 -296.5v-613h-127l-3 193q-52 -108 -145 -160.5t-206 -52.5zM418 106 +q97 0 174 55t115 134.5t38 162.5h-214q-152 0 -226 -43t-74 -141q0 -85 51.5 -126.5t135.5 -41.5z" /> + <glyph glyph-name="aring" unicode="å" horiz-adv-x="1025" +d="M500 1079q-86 0 -144.5 59.5t-58.5 143.5q0 85 59 144.5t144 59.5q83 0 143.5 -59.5t60.5 -144.5q0 -84 -59.5 -143.5t-144.5 -59.5zM500 1182q42 0 71 29t29 72q0 42 -28 70t-72 28t-71 -27t-27 -71t28 -72.5t70 -28.5zM401 -20q-144 0 -234 80t-90 218q0 293 440 293 +h228q0 319 -245 319q-172 0 -277 -151l-109 85q142 196 377 196q187 0 289 -110.5t102 -296.5v-613h-127l-3 193q-52 -108 -145 -160.5t-206 -52.5zM418 106q97 0 174 55t115 134.5t38 162.5h-214q-152 0 -226 -43t-74 -141q0 -85 51.5 -126.5t135.5 -41.5z" /> + <glyph glyph-name="ae" unicode="æ" horiz-adv-x="1664" +d="M396 -20q-134 0 -227 82t-93 211q0 154 97.5 226t267.5 72h310q0 325 -257 325q-86 0 -154.5 -42t-108.5 -105l-115 76q76 97 167 144t220 47q244 0 327 -190q96 186 328 186q95 0 169.5 -29t121.5 -77t77.5 -117t43 -142.5t12.5 -159.5l-2 -38h-696q-1 -140 74.5 -234.5 +t214.5 -94.5q95 0 160.5 22.5t126.5 81.5l98 -82q-81 -82 -172 -118t-211 -36q-152 0 -248 75.5t-136 205.5q-106 -289 -395 -289zM883 571h558q1 141 -71.5 224.5t-212.5 83.5q-128 0 -199 -87t-75 -221zM435 108q133 0 227 105.5t89 235.5h-296q-96 0 -159 -46t-63 -129 +q0 -68 65 -117t137 -49z" /> + <glyph glyph-name="ccedilla" unicode="ç" horiz-adv-x="974" +d="M524 106q91 0 158 53t90 142l130 -56q-40 -111 -123 -179.5t-197 -82.5l-58 -100q90 -4 138 -55t48 -125q0 -83 -58.5 -145t-153.5 -62q-62 0 -111.5 35.5t-70.5 88.5l99 51q6 -29 30.5 -50.5t58.5 -21.5q44 0 71 28t27 68q0 51 -48 88t-138 37h-42l90 164 +q-177 24 -274.5 169.5t-97.5 344.5q0 102 27.5 195t80 166.5t136.5 117t188 43.5q134 0 235 -70.5t154 -195.5l-141 -60q-22 91 -90 145.5t-158 54.5q-74 0 -130.5 -36t-87.5 -95.5t-46 -126t-15 -138.5q0 -73 15 -139t46 -124.5t87 -93.5t131 -35z" /> + <glyph glyph-name="egrave" unicode="è" horiz-adv-x="1038" +d="M440 1122l-258 291h192l218 -291h-152zM541 -14q-111 0 -198 41t-141.5 111.5t-82.5 161t-28 194.5q0 81 17 156.5t52.5 142t86 115t122 77t156.5 28.5q94 0 168.5 -29t121.5 -76t78 -111.5t43.5 -131t12.5 -139.5q0 -32 -5 -77h-696q-1 -141 75.5 -236.5t216.5 -95.5 +q91 0 158 23.5t123 83.5l102 -82q-81 -82 -171.5 -119t-210.5 -37zM248 571h558q-2 63 -17.5 117.5t-47 101t-87 73.5t-129.5 27q-88 0 -150.5 -45t-92.5 -115t-34 -159z" /> + <glyph glyph-name="eacute" unicode="é" horiz-adv-x="1038" +d="M417 1124l217 289h193l-277 -289h-133zM541 -14q-111 0 -198 41t-141.5 111.5t-82.5 161t-28 194.5q0 81 17 156.5t52.5 142t86 115t122 77t156.5 28.5q94 0 168.5 -29t121.5 -76t78 -111.5t43.5 -131t12.5 -139.5q0 -32 -5 -77h-696q-1 -141 75.5 -236.5t216.5 -95.5 +q91 0 158 23.5t123 83.5l102 -82q-81 -82 -171.5 -119t-210.5 -37zM248 571h558q-2 63 -17.5 117.5t-47 101t-87 73.5t-129.5 27q-88 0 -150.5 -45t-92.5 -115t-34 -159z" /> + <glyph glyph-name="ecircumflex" unicode="ê" horiz-adv-x="1038" +d="M183 1098l329 355l329 -355h-161l-168 186l-167 -186h-162zM541 -14q-111 0 -198 41t-141.5 111.5t-82.5 161t-28 194.5q0 81 17 156.5t52.5 142t86 115t122 77t156.5 28.5q94 0 168.5 -29t121.5 -76t78 -111.5t43.5 -131t12.5 -139.5q0 -32 -5 -77h-696 +q-1 -141 75.5 -236.5t216.5 -95.5q91 0 158 23.5t123 83.5l102 -82q-81 -82 -171.5 -119t-210.5 -37zM248 571h558q-2 63 -17.5 117.5t-47 101t-87 73.5t-129.5 27q-88 0 -150.5 -45t-92.5 -115t-34 -159z" /> + <glyph glyph-name="edieresis" unicode="ë" horiz-adv-x="1038" +d="M257 1221v192h169v-192h-169zM594 1221v192h168v-192h-168zM541 -14q-111 0 -198 41t-141.5 111.5t-82.5 161t-28 194.5q0 81 17 156.5t52.5 142t86 115t122 77t156.5 28.5q94 0 168.5 -29t121.5 -76t78 -111.5t43.5 -131t12.5 -139.5q0 -32 -5 -77h-696 +q-1 -141 75.5 -236.5t216.5 -95.5q91 0 158 23.5t123 83.5l102 -82q-81 -82 -171.5 -119t-210.5 -37zM248 571h558q-2 63 -17.5 117.5t-47 101t-87 73.5t-129.5 27q-88 0 -150.5 -45t-92.5 -115t-34 -159z" /> + <glyph glyph-name="igrave" unicode="ì" horiz-adv-x="501" +d="M178 1122l-258 291h192l218 -291h-152zM168 0v999h165v-999h-165z" /> + <glyph glyph-name="iacute" unicode="í" horiz-adv-x="501" +d="M155 1124l217 289h193l-277 -289h-133zM168 0v999h165v-999h-165z" /> + <glyph glyph-name="icircumflex" unicode="î" horiz-adv-x="501" +d="M-79 1098l329 355l329 -355h-161l-168 186l-167 -186h-162zM168 0v999h165v-999h-165z" /> + <glyph glyph-name="idieresis" unicode="ï" horiz-adv-x="501" +d="M-5 1221v192h169v-192h-169zM332 1221v192h168v-192h-168zM168 0v999h165v-999h-165z" /> + <glyph glyph-name="eth" unicode="ð" horiz-adv-x="1156" +d="M633 1383q210 -136 310.5 -343.5t100.5 -516.5q0 -148 -55 -269t-165 -195.5t-256 -74.5q-112 0 -204 43.5t-151.5 117.5t-92 169.5t-32.5 201.5q0 141 54.5 254.5t159.5 181.5t242 68q89 0 162.5 -27t110.5 -67q-41 192 -264 340l-91 -134l-90 59l88 132q-69 38 -167 77 +l76 116q97 -38 169 -77l62 92l95 -56zM567 127q103 0 175.5 57.5t104.5 143.5t32 189q0 105 -33.5 191t-106 141.5t-172.5 55.5q-78 0 -140 -33t-98.5 -88.5t-55.5 -123.5t-19 -144t19 -144t55.5 -123.5t98.5 -88.5t140 -33z" /> + <glyph glyph-name="ntilde" unicode="ñ" +d="M671 1146q-38 0 -71 16t-55.5 39t-42.5 46.5t-42 39.5t-44 16q-69 0 -69 -137h-100q0 114 44 182t125 68q49 0 90 -25t63.5 -54.5t50 -54.5t53.5 -25q71 0 71 153h106q0 -128 -46.5 -196t-132.5 -68zM168 0v999h149v-174q51 90 133.5 141t188.5 51q86 0 152 -32.5 +t105 -90t58.5 -130t19.5 -157.5v-607h-148v592q0 56 -11 105.5t-36 94.5t-71 71.5t-109 26.5q-124 0 -203 -96t-79 -275v-519h-149z" /> + <glyph glyph-name="ograve" unicode="ò" +d="M486 1122l-258 291h192l218 -291h-152zM557 -20q-137 0 -246 71t-167 190t-58 261t58 259.5t166.5 188t246.5 70.5q137 0 247 -70t169.5 -188.5t59.5 -259.5q0 -142 -59.5 -261t-169.5 -190t-247 -71zM558 104q81 0 144.5 34t102 91t58 126.5t19.5 146.5t-19.5 146 +t-57.5 125.5t-101.5 89.5t-143.5 33t-143.5 -33t-102 -89t-58.5 -125.5t-20 -146.5q0 -78 20 -148t58 -126.5t101 -90t143 -33.5z" /> + <glyph glyph-name="oacute" unicode="ó" +d="M463 1124l217 289h193l-277 -289h-133zM557 -20q-137 0 -246 71t-167 190t-58 261t58 259.5t166.5 188t246.5 70.5q137 0 247 -70t169.5 -188.5t59.5 -259.5q0 -142 -59.5 -261t-169.5 -190t-247 -71zM558 104q81 0 144.5 34t102 91t58 126.5t19.5 146.5t-19.5 146 +t-57.5 125.5t-101.5 89.5t-143.5 33t-143.5 -33t-102 -89t-58.5 -125.5t-20 -146.5q0 -78 20 -148t58 -126.5t101 -90t143 -33.5z" /> + <glyph glyph-name="ocircumflex" unicode="ô" +d="M229 1098l329 355l329 -355h-161l-168 186l-167 -186h-162zM557 -20q-137 0 -246 71t-167 190t-58 261t58 259.5t166.5 188t246.5 70.5q137 0 247 -70t169.5 -188.5t59.5 -259.5q0 -142 -59.5 -261t-169.5 -190t-247 -71zM558 104q81 0 144.5 34t102 91t58 126.5 +t19.5 146.5t-19.5 146t-57.5 125.5t-101.5 89.5t-143.5 33t-143.5 -33t-102 -89t-58.5 -125.5t-20 -146.5q0 -78 20 -148t58 -126.5t101 -90t143 -33.5z" /> + <glyph glyph-name="otilde" unicode="õ" +d="M679 1146q-38 0 -71 16t-55.5 39t-42.5 46.5t-42 39.5t-44 16q-69 0 -69 -137h-100q0 114 44 182t125 68q49 0 90 -25t63.5 -54.5t50 -54.5t53.5 -25q71 0 71 153h106q0 -128 -46.5 -196t-132.5 -68zM557 -20q-137 0 -246 71t-167 190t-58 261t58 259.5t166.5 188 +t246.5 70.5q137 0 247 -70t169.5 -188.5t59.5 -259.5q0 -142 -59.5 -261t-169.5 -190t-247 -71zM558 104q81 0 144.5 34t102 91t58 126.5t19.5 146.5t-19.5 146t-57.5 125.5t-101.5 89.5t-143.5 33t-143.5 -33t-102 -89t-58.5 -125.5t-20 -146.5q0 -78 20 -148t58 -126.5 +t101 -90t143 -33.5z" /> + <glyph glyph-name="odieresis" unicode="ö" +d="M303 1221v192h169v-192h-169zM640 1221v192h168v-192h-168zM557 -20q-137 0 -246 71t-167 190t-58 261t58 259.5t166.5 188t246.5 70.5q137 0 247 -70t169.5 -188.5t59.5 -259.5q0 -142 -59.5 -261t-169.5 -190t-247 -71zM558 104q81 0 144.5 34t102 91t58 126.5 +t19.5 146.5t-19.5 146t-57.5 125.5t-101.5 89.5t-143.5 33t-143.5 -33t-102 -89t-58.5 -125.5t-20 -146.5q0 -78 20 -148t58 -126.5t101 -90t143 -33.5z" /> + <glyph glyph-name="divide" unicode="÷" horiz-adv-x="958" +d="M377 902v194h196v-194h-196zM125 571v114h700v-114h-700zM377 142v193h196v-193h-196z" /> + <glyph glyph-name="oslash" unicode="ø" +d="M842 922q90 -71 140.5 -181.5t50.5 -238.5q0 -142 -59.5 -261t-169.5 -190t-247 -71q-118 0 -219 55l-19 -34h-90l44 78q-89 71 -138 182t-49 241q0 142 58 259.5t166.5 188t246.5 70.5q117 0 219 -54l19 33h91zM236 502q0 -193 104 -306l374 661q-66 39 -154 39 +q-80 0 -143.5 -33t-102 -89t-58.5 -125.5t-20 -146.5zM558 104q81 0 144.5 34t102 91t58 126.5t19.5 146.5q0 194 -105 305l-376 -661q67 -42 157 -42z" /> + <glyph glyph-name="ugrave" unicode="ù" horiz-adv-x="1117" +d="M487 1122l-258 291h192l218 -291h-152zM486 -22q-119 0 -197.5 59.5t-112 155.5t-33.5 226v580h149v-590q0 -59 9.5 -109t31 -96.5t65 -73t104.5 -26.5q122 0 210 98.5t88 243.5v553h148v-999h-148v169q-34 -74 -119.5 -132.5t-194.5 -58.5z" /> + <glyph glyph-name="uacute" unicode="ú" horiz-adv-x="1117" +d="M464 1124l217 289h193l-277 -289h-133zM486 -22q-119 0 -197.5 59.5t-112 155.5t-33.5 226v580h149v-590q0 -59 9.5 -109t31 -96.5t65 -73t104.5 -26.5q122 0 210 98.5t88 243.5v553h148v-999h-148v169q-34 -74 -119.5 -132.5t-194.5 -58.5z" /> + <glyph glyph-name="ucircumflex" unicode="û" horiz-adv-x="1117" +d="M230 1098l329 355l329 -355h-161l-168 186l-167 -186h-162zM486 -22q-119 0 -197.5 59.5t-112 155.5t-33.5 226v580h149v-590q0 -59 9.5 -109t31 -96.5t65 -73t104.5 -26.5q122 0 210 98.5t88 243.5v553h148v-999h-148v169q-34 -74 -119.5 -132.5t-194.5 -58.5z" /> + <glyph glyph-name="udieresis" unicode="ü" horiz-adv-x="1117" +d="M304 1221v192h169v-192h-169zM641 1221v192h168v-192h-168zM486 -22q-119 0 -197.5 59.5t-112 155.5t-33.5 226v580h149v-590q0 -59 9.5 -109t31 -96.5t65 -73t104.5 -26.5q122 0 210 98.5t88 243.5v553h148v-999h-148v169q-34 -74 -119.5 -132.5t-194.5 -58.5z" /> + <glyph glyph-name="yacute" unicode="ý" horiz-adv-x="975" +d="M388 1124l217 289h193l-277 -289h-133zM248 -430l171 435l-384 994h165l293 -817l284 817h163l-535 -1429h-157z" /> + <glyph glyph-name="thorn" unicode="þ" horiz-adv-x="1140" +d="M172 -438v1851h159v-553q106 160 315 160q94 0 170.5 -41t125.5 -112t75.5 -165t26.5 -202t-26.5 -202t-75.5 -165t-125.5 -112t-170.5 -41q-208 0 -315 159v-577h-159zM605 118q96 0 162 53.5t95 137.5t29 191q0 78 -17 145.5t-51 121t-90 84t-128 30.5t-128.5 -30.5 +t-91 -84t-52.5 -121t-18 -145.5q0 -165 74.5 -273.5t215.5 -108.5z" /> + <glyph glyph-name="ydieresis" unicode="ÿ" horiz-adv-x="975" +d="M228 1221v192h169v-192h-169zM565 1221v192h168v-192h-168zM248 -430l171 435l-384 994h165l293 -817l284 817h163l-535 -1429h-157z" /> + <glyph glyph-name="Amacron" unicode="Ā" horiz-adv-x="1306" +d="M385 1597v125h541v-125h-541zM63 0l531 1413h122l527 -1413h-170l-108 307h-621l-108 -307h-173zM397 452h514l-255 728z" /> + <glyph glyph-name="amacron" unicode="ā" horiz-adv-x="1025" +d="M233 1183v125h541v-125h-541zM401 -20q-144 0 -234 80t-90 218q0 293 440 293h228q0 319 -245 319q-172 0 -277 -151l-109 85q142 196 377 196q187 0 289 -110.5t102 -296.5v-613h-127l-3 193q-52 -108 -145 -160.5t-206 -52.5zM418 106q97 0 174 55t115 134.5t38 162.5 +h-214q-152 0 -226 -43t-74 -141q0 -85 51.5 -126.5t135.5 -41.5z" /> + <glyph glyph-name="Abreve" unicode="Ă" horiz-adv-x="1306" +d="M654 1557q-138 0 -222.5 71t-84.5 199h136q0 -69 49.5 -112.5t121.5 -43.5t121 43t49 113h136q0 -129 -84.5 -199.5t-221.5 -70.5zM63 0l531 1413h122l527 -1413h-170l-108 307h-621l-108 -307h-173zM397 452h514l-255 728z" /> + <glyph glyph-name="abreve" unicode="ă" horiz-adv-x="1025" +d="M502 1143q-138 0 -222.5 71t-84.5 199h136q0 -69 49.5 -112.5t121.5 -43.5t121 43t49 113h136q0 -129 -84.5 -199.5t-221.5 -70.5zM401 -20q-144 0 -234 80t-90 218q0 293 440 293h228q0 319 -245 319q-172 0 -277 -151l-109 85q142 196 377 196q187 0 289 -110.5 +t102 -296.5v-613h-127l-3 193q-52 -108 -145 -160.5t-206 -52.5zM418 106q97 0 174 55t115 134.5t38 162.5h-214q-152 0 -226 -43t-74 -141q0 -85 51.5 -126.5t135.5 -41.5z" /> + <glyph glyph-name="Aogonek" unicode="Ą" horiz-adv-x="1306" +d="M1225 -273l93 -65q-79 -113 -206 -113q-90 0 -148 56.5t-58 148.5q0 53 23.5 98.5t60 74.5t68.5 46.5t61 26.5h-46l-108 307h-621l-108 -307h-173l531 1413h122l527 -1413q-4 -1 -13.5 -5t-32.5 -14.5t-45 -23.5t-47.5 -33t-44.5 -42t-31.5 -51t-12.5 -60 +q0 -51 24.5 -79.5t62.5 -28.5q76 0 122 64zM397 452h514l-255 728z" /> + <glyph glyph-name="aogonek" unicode="ą" horiz-adv-x="1025" +d="M864 -273l93 -65q-79 -113 -206 -113q-90 0 -148 56.5t-58 148.5q0 53 23.5 98.5t60 74.5t68.5 46.5t61 26.5h-3l-3 193q-52 -108 -145 -160.5t-206 -52.5q-144 0 -234 80t-90 218q0 293 440 293h228q0 319 -245 319q-172 0 -277 -151l-109 85q142 196 377 196 +q187 0 289 -110.5t102 -296.5v-613q-4 -1 -13.5 -5t-32.5 -14.5t-45 -23.5t-47.5 -33t-44.5 -42t-31.5 -51t-12.5 -60q0 -51 24.5 -79.5t62.5 -28.5q76 0 122 64zM418 106q97 0 174 55t115 134.5t38 162.5h-214q-152 0 -226 -43t-74 -141q0 -85 51.5 -126.5t135.5 -41.5z +" /> + <glyph glyph-name="Cacute" unicode="Ć" horiz-adv-x="1420" +d="M623 1538l217 289h193l-277 -289h-133zM754 -20q-156 0 -278 57.5t-197.5 158.5t-114.5 231.5t-39 282.5q0 119 23 225.5t73.5 198.5t124.5 159t181.5 105t239.5 38q202 0 347 -92.5t218 -283.5l-146 -63q-22 79 -66 137.5t-102.5 91.5t-122.5 48t-135 15 +q-101 0 -182 -31t-136 -84t-91.5 -127t-53 -157.5t-16.5 -177.5q0 -121 27.5 -224t84 -185.5t151.5 -129.5t220 -47q317 0 424 295l146 -63q-80 -183 -228.5 -280.5t-351.5 -97.5z" /> + <glyph glyph-name="cacute" unicode="ć" horiz-adv-x="974" +d="M431 1124l217 289h193l-277 -289h-133zM526 -20q-105 0 -189 42.5t-136.5 115t-80.5 165t-28 195.5q0 102 27.5 195t80 166.5t136.5 117t188 43.5q134 0 235 -70.5t154 -195.5l-141 -60q-22 91 -90 145.5t-158 54.5q-74 0 -130.5 -36t-87.5 -95.5t-46 -126t-15 -138.5 +q0 -73 15 -139t46 -124.5t87 -93.5t131 -35q91 0 158 53t90 142l130 -56q-45 -125 -143 -195t-233 -70z" /> + <glyph glyph-name="Cdotaccent" unicode="Ċ" horiz-adv-x="1420" +d="M630 1635v192h173v-192h-173zM754 -20q-156 0 -278 57.5t-197.5 158.5t-114.5 231.5t-39 282.5q0 119 23 225.5t73.5 198.5t124.5 159t181.5 105t239.5 38q202 0 347 -92.5t218 -283.5l-146 -63q-22 79 -66 137.5t-102.5 91.5t-122.5 48t-135 15q-101 0 -182 -31 +t-136 -84t-91.5 -127t-53 -157.5t-16.5 -177.5q0 -121 27.5 -224t84 -185.5t151.5 -129.5t220 -47q317 0 424 295l146 -63q-80 -183 -228.5 -280.5t-351.5 -97.5z" /> + <glyph glyph-name="cdotaccent" unicode="ċ" horiz-adv-x="974" +d="M438 1221v192h173v-192h-173zM526 -20q-105 0 -189 42.5t-136.5 115t-80.5 165t-28 195.5q0 102 27.5 195t80 166.5t136.5 117t188 43.5q134 0 235 -70.5t154 -195.5l-141 -60q-22 91 -90 145.5t-158 54.5q-74 0 -130.5 -36t-87.5 -95.5t-46 -126t-15 -138.5 +q0 -73 15 -139t46 -124.5t87 -93.5t131 -35q91 0 158 53t90 142l130 -56q-45 -125 -143 -195t-233 -70z" /> + <glyph glyph-name="Ccaron" unicode="Č" horiz-adv-x="1420" +d="M718 1495l-329 332h162l167 -181l168 181h161zM754 -20q-156 0 -278 57.5t-197.5 158.5t-114.5 231.5t-39 282.5q0 119 23 225.5t73.5 198.5t124.5 159t181.5 105t239.5 38q202 0 347 -92.5t218 -283.5l-146 -63q-22 79 -66 137.5t-102.5 91.5t-122.5 48t-135 15 +q-101 0 -182 -31t-136 -84t-91.5 -127t-53 -157.5t-16.5 -177.5q0 -121 27.5 -224t84 -185.5t151.5 -129.5t220 -47q317 0 424 295l146 -63q-80 -183 -228.5 -280.5t-351.5 -97.5z" /> + <glyph glyph-name="ccaron" unicode="č" horiz-adv-x="974" +d="M526 1081l-329 332h162l167 -181l168 181h161zM526 -20q-105 0 -189 42.5t-136.5 115t-80.5 165t-28 195.5q0 102 27.5 195t80 166.5t136.5 117t188 43.5q134 0 235 -70.5t154 -195.5l-141 -60q-22 91 -90 145.5t-158 54.5q-74 0 -130.5 -36t-87.5 -95.5t-46 -126 +t-15 -138.5q0 -73 15 -139t46 -124.5t87 -93.5t131 -35q91 0 158 53t90 142l130 -56q-45 -125 -143 -195t-233 -70z" /> + <glyph glyph-name="Dcaron" unicode="Ď" horiz-adv-x="1406" +d="M721 1495l-329 332h162l167 -181l168 181h161zM212 0v1413h360q345 0 529 -184.5t184 -532.5q0 -334 -186.5 -515t-528.5 -181h-358zM371 145h175q126 0 230 33.5t183 101t123 176.5t44 251q0 276 -140 420t-418 144h-197v-1126z" /> + <glyph glyph-name="dcaron" unicode="ď" horiz-adv-x="1193" +d="M504 -20q-129 0 -223 71t-139.5 187t-45.5 262q0 145 45.5 261.5t139.5 187.5t222 71q98 0 177 -41t129 -116v550h149v-1413h-149v136q-110 -156 -305 -156zM1069 1017l103 396h212l-208 -396h-107zM537 116q73 0 129 31t89 85.5t49.5 121.5t16.5 146q0 106 -28 189.5 +t-93.5 138t-162.5 54.5q-73 0 -129.5 -31t-90.5 -84.5t-51 -121t-17 -145.5q0 -106 29 -190.5t95.5 -139t163.5 -54.5z" /> + <glyph glyph-name="Dcroat" unicode="Đ" horiz-adv-x="1423" +d="M229 0v655h-112v115h112v643h365q342 0 525 -184.5t183 -532.5q0 -333 -185.5 -514.5t-524.5 -181.5h-363zM391 147h177q125 0 227.5 33t180 99.5t120.5 175.5t43 252q0 276 -137.5 418.5t-411.5 142.5h-199v-498h381v-115h-381v-508z" /> + <glyph glyph-name="dcroat" unicode="đ" horiz-adv-x="1129" +d="M1146 1274v-116h-188v-1158h-145l-3 139q-110 -159 -313 -159q-124 0 -216.5 71t-138.5 188t-46 261q0 145 46 261.5t138 187.5t216 71q205 0 313 -157v295h-297v116h297v139h149v-139h188zM535 106q74 0 130.5 32.5t89.5 88.5t49.5 124.5t16.5 148.5q0 62 -10 118.5 +t-32 107.5t-55 88t-81.5 58.5t-107.5 21.5q-72 0 -128.5 -33t-90 -89t-50.5 -125t-17 -147q0 -79 17 -148t50.5 -125t90 -88.5t128.5 -32.5z" /> + <glyph glyph-name="Emacron" unicode="Ē" horiz-adv-x="1239" +d="M397 1597v125h541v-125h-541zM212 0v1413h915v-137h-756v-502h657v-133h-657v-496h756v-145h-915z" /> + <glyph glyph-name="emacron" unicode="ē" horiz-adv-x="1038" +d="M243 1183v125h541v-125h-541zM541 -14q-111 0 -198 41t-141.5 111.5t-82.5 161t-28 194.5q0 81 17 156.5t52.5 142t86 115t122 77t156.5 28.5q94 0 168.5 -29t121.5 -76t78 -111.5t43.5 -131t12.5 -139.5q0 -32 -5 -77h-696q-1 -141 75.5 -236.5t216.5 -95.5 +q91 0 158 23.5t123 83.5l102 -82q-81 -82 -171.5 -119t-210.5 -37zM248 571h558q-2 63 -17.5 117.5t-47 101t-87 73.5t-129.5 27q-88 0 -150.5 -45t-92.5 -115t-34 -159z" /> + <glyph glyph-name="Edotaccent" unicode="Ė" horiz-adv-x="1239" +d="M578 1635v192h173v-192h-173zM212 0v1413h915v-137h-756v-502h657v-133h-657v-496h756v-145h-915z" /> + <glyph glyph-name="edotaccent" unicode="ė" horiz-adv-x="1038" +d="M424 1221v192h173v-192h-173zM541 -14q-111 0 -198 41t-141.5 111.5t-82.5 161t-28 194.5q0 81 17 156.5t52.5 142t86 115t122 77t156.5 28.5q94 0 168.5 -29t121.5 -76t78 -111.5t43.5 -131t12.5 -139.5q0 -32 -5 -77h-696q-1 -141 75.5 -236.5t216.5 -95.5 +q91 0 158 23.5t123 83.5l102 -82q-81 -82 -171.5 -119t-210.5 -37zM248 571h558q-2 63 -17.5 117.5t-47 101t-87 73.5t-129.5 27q-88 0 -150.5 -45t-92.5 -115t-34 -159z" /> + <glyph glyph-name="Eogonek" unicode="Ę" horiz-adv-x="1239" +d="M1109 -273l93 -65q-79 -113 -206 -113q-90 0 -148 56.5t-58 148.5q0 53 23.5 98.5t60 74.5t68.5 46.5t61 26.5h-791v1413h915v-137h-756v-502h657v-133h-657v-496h756v-145q-4 -1 -13.5 -5t-32.5 -14.5t-45 -23.5t-47.5 -33t-44.5 -42t-31.5 -51t-12.5 -60 +q0 -51 24.5 -79.5t62.5 -28.5q76 0 122 64z" /> + <glyph glyph-name="eogonek" unicode="ę" horiz-adv-x="1038" +d="M944 449h-696q-1 -141 75.5 -236.5t216.5 -95.5q91 0 158 23.5t123 83.5l102 -82q-100 -101 -218 -135q-145 -83 -145 -191q0 -51 24.5 -79.5t62.5 -28.5q76 0 122 64l93 -65q-79 -113 -206 -113q-90 0 -148 56.5t-58 148.5q0 112 100 187h-9q-111 0 -198 41 +t-141.5 111.5t-82.5 161t-28 194.5q0 81 17 156.5t52.5 142t86 115t122 77t156.5 28.5q94 0 168.5 -29t121.5 -76t78 -111.5t43.5 -131t12.5 -139.5q0 -32 -5 -77zM525 890q-88 0 -150.5 -45t-92.5 -115t-34 -159h558q-2 63 -17.5 117.5t-47 101t-87 73.5t-129.5 27z" /> + <glyph glyph-name="Ecaron" unicode="Ě" horiz-adv-x="1239" +d="M666 1495l-329 332h162l167 -181l168 181h161zM212 0v1413h915v-137h-756v-502h657v-133h-657v-496h756v-145h-915z" /> + <glyph glyph-name="ecaron" unicode="ě" horiz-adv-x="1038" +d="M512 1081l-329 332h162l167 -181l168 181h161zM541 -14q-111 0 -198 41t-141.5 111.5t-82.5 161t-28 194.5q0 81 17 156.5t52.5 142t86 115t122 77t156.5 28.5q94 0 168.5 -29t121.5 -76t78 -111.5t43.5 -131t12.5 -139.5q0 -32 -5 -77h-696q-1 -141 75.5 -236.5 +t216.5 -95.5q91 0 158 23.5t123 83.5l102 -82q-81 -82 -171.5 -119t-210.5 -37zM248 571h558q-2 63 -17.5 117.5t-47 101t-87 73.5t-129.5 27q-88 0 -150.5 -45t-92.5 -115t-34 -159z" /> + <glyph glyph-name="Gbreve" unicode="Ğ" horiz-adv-x="1509" +d="M760 1557q-138 0 -222.5 71t-84.5 199h136q0 -69 49.5 -112.5t121.5 -43.5t121 43t49 113h136q0 -129 -84.5 -199.5t-221.5 -70.5zM759 -20q-127 0 -232.5 38t-179 104.5t-124 158.5t-74.5 199t-24 227q0 119 24 226.5t75 200t124.5 159.5t178 105t230.5 38 +q199 0 346 -96.5t228 -279.5l-145 -63q-64 141 -173.5 215.5t-257.5 74.5q-98 0 -177.5 -30.5t-134 -83.5t-91.5 -125.5t-54 -155.5t-17 -175q0 -122 27.5 -226t83.5 -186.5t150 -129.5t217 -47q188 0 315 123t131 339h-323v125h473v-715h-132l-2 258 +q-46 -117 -168.5 -197.5t-293.5 -80.5z" /> + <glyph glyph-name="gbreve" unicode="ğ" horiz-adv-x="1024" +d="M500 1143q-138 0 -222.5 71t-84.5 199h136q0 -69 49.5 -112.5t121.5 -43.5t121 43t49 113h136q0 -129 -84.5 -199.5t-221.5 -70.5zM527 129q49 -7 76.5 -11t72.5 -12.5t71.5 -18.5t61 -25t54.5 -34.5t39.5 -45.5t28 -60.5t8.5 -75.5q0 -99 -57 -169.5t-145.5 -102.5 +t-197.5 -32q-192 0 -311.5 97.5t-119.5 242.5q0 17 3 38l144 145q-127 70 -127 205q0 102 73 165q-84 94 -84 228q0 156 107 253t267 97q155 0 258 -93l150 136l85 -106l-161 -127q37 -74 37 -162q0 -157 -104.5 -250.5t-264.5 -93.5q-102 0 -188 42q-43 -33 -43 -77 +q0 -37 20.5 -64t61 -44t82.5 -26.5t103 -18.5zM489 895q-99 0 -159.5 -67t-60.5 -162q0 -102 59.5 -163.5t160.5 -61.5t161 61.5t60 163.5q0 97 -60.5 163t-160.5 66zM551 -326q107 0 181 42t74 119q0 21 -5 38t-16.5 30.5t-23.5 24t-33.5 18.5t-39 13.5t-46.5 11t-49 9 +t-54.5 8.5t-55.5 9q-83 15 -119 26l-118 -144q1 -82 83.5 -143.5t221.5 -61.5z" /> + <glyph glyph-name="Gdotaccent" unicode="Ġ" horiz-adv-x="1509" +d="M672 1635v192h173v-192h-173zM759 -20q-127 0 -232.5 38t-179 104.5t-124 158.5t-74.5 199t-24 227q0 119 24 226.5t75 200t124.5 159.5t178 105t230.5 38q199 0 346 -96.5t228 -279.5l-145 -63q-64 141 -173.5 215.5t-257.5 74.5q-98 0 -177.5 -30.5t-134 -83.5 +t-91.5 -125.5t-54 -155.5t-17 -175q0 -122 27.5 -226t83.5 -186.5t150 -129.5t217 -47q188 0 315 123t131 339h-323v125h473v-715h-132l-2 258q-46 -117 -168.5 -197.5t-293.5 -80.5z" /> + <glyph glyph-name="gdotaccent" unicode="ġ" horiz-adv-x="1024" +d="M585 1413v-192h-173v192h173zM527 129q49 -7 76.5 -11t72.5 -12.5t71.5 -18.5t61 -25t54.5 -34.5t39.5 -45.5t28 -60.5t8.5 -75.5q0 -99 -57 -169.5t-145.5 -102.5t-197.5 -32q-192 0 -311.5 97.5t-119.5 242.5q0 17 3 38l144 145q-127 70 -127 205q0 102 73 165 +q-84 94 -84 228q0 156 107 253t267 97q155 0 258 -93l150 136l85 -106l-161 -127q37 -74 37 -162q0 -157 -104.5 -250.5t-264.5 -93.5q-102 0 -188 42q-43 -33 -43 -77q0 -37 20.5 -64t61 -44t82.5 -26.5t103 -18.5zM489 895q-99 0 -159.5 -67t-60.5 -162 +q0 -102 59.5 -163.5t160.5 -61.5t161 61.5t60 163.5q0 97 -60.5 163t-160.5 66zM551 -326q107 0 181 42t74 119q0 21 -5 38t-16.5 30.5t-23.5 24t-33.5 18.5t-39 13.5t-46.5 11t-49 9t-54.5 8.5t-55.5 9q-83 15 -119 26l-118 -144q1 -82 83.5 -143.5t221.5 -61.5z" /> + <glyph glyph-name="Gcommaaccent" unicode="Ģ" horiz-adv-x="1509" +d="M759 -20q-127 0 -232.5 38t-179 104.5t-124 158.5t-74.5 199t-24 227q0 119 24 226.5t75 200t124.5 159.5t178 105t230.5 38q199 0 346 -96.5t228 -279.5l-145 -63q-64 141 -173.5 215.5t-257.5 74.5q-98 0 -177.5 -30.5t-134 -83.5t-91.5 -125.5t-54 -155.5t-17 -175 +q0 -122 27.5 -226t83.5 -186.5t150 -129.5t217 -47q188 0 315 123t131 339h-323v125h473v-715h-132l-2 258q-46 -117 -168.5 -197.5t-293.5 -80.5zM555 -446l123 335h212l-228 -335h-107z" /> + <glyph glyph-name="gcommaaccent" unicode="ģ" horiz-adv-x="1024" +d="M722 1423l-123 -300h-212l228 300h107zM527 129q49 -7 76.5 -11t72.5 -12.5t71.5 -18.5t61 -25t54.5 -34.5t39.5 -45.5t28 -60.5t8.5 -75.5q0 -99 -57 -169.5t-145.5 -102.5t-197.5 -32q-192 0 -311.5 97.5t-119.5 242.5q0 17 3 38l144 145q-127 70 -127 205 +q0 102 73 165q-84 94 -84 228q0 156 107 253t267 97q155 0 258 -93l150 136l85 -106l-161 -127q37 -74 37 -162q0 -157 -104.5 -250.5t-264.5 -93.5q-102 0 -188 42q-43 -33 -43 -77q0 -37 20.5 -64t61 -44t82.5 -26.5t103 -18.5zM489 895q-99 0 -159.5 -67t-60.5 -162 +q0 -102 59.5 -163.5t160.5 -61.5t161 61.5t60 163.5q0 97 -60.5 163t-160.5 66zM551 -326q107 0 181 42t74 119q0 21 -5 38t-16.5 30.5t-23.5 24t-33.5 18.5t-39 13.5t-46.5 11t-49 9t-54.5 8.5t-55.5 9q-83 15 -119 26l-118 -144q1 -82 83.5 -143.5t221.5 -61.5z" /> + <glyph glyph-name="Hbar" unicode="Ħ" horiz-adv-x="1455" +d="M1356 1160v-89h-113v-1071h-159v641h-713v-641h-159v1071h-115v89h115v253h159v-253h713v253h159v-253h113zM1084 774v297h-713v-297h713z" /> + <glyph glyph-name="hbar" unicode="ħ" horiz-adv-x="1124" +d="M643 1017q87 0 153 -32.5t105 -89t58.5 -127t19.5 -152.5v-616h-151v592q0 44 -5.5 82t-20 76.5t-37.5 65.5t-61 44t-88 17q-129 0 -213.5 -98.5t-84.5 -239.5v-539h-148v1128h-181v116h181v169h148v-169h305v-116h-305v-293q50 82 139 132t186 50z" /> + <glyph glyph-name="Itilde" unicode="Ĩ" horiz-adv-x="582" +d="M411 1560q-38 0 -71 16t-55.5 39t-42.5 46.5t-42 39.5t-44 16q-69 0 -69 -137h-100q0 114 44 182t125 68q49 0 90 -25t63.5 -54.5t50 -54.5t53.5 -25q71 0 71 153h106q0 -128 -46.5 -196t-132.5 -68zM212 0v1413h159v-1413h-159z" /> + <glyph glyph-name="itilde" unicode="ĩ" horiz-adv-x="501" +d="M371 1146q-38 0 -71 16t-55.5 39t-42.5 46.5t-42 39.5t-44 16q-69 0 -69 -137h-100q0 114 44 182t125 68q49 0 90 -25t63.5 -54.5t50 -54.5t53.5 -25q71 0 71 153h106q0 -128 -46.5 -196t-132.5 -68zM168 0v999h165v-999h-165z" /> + <glyph glyph-name="Imacron" unicode="Ī" horiz-adv-x="582" +d="M21 1597v125h541v-125h-541zM212 0v1413h159v-1413h-159z" /> + <glyph glyph-name="imacron" unicode="ī" horiz-adv-x="501" +d="M-19 1183v125h541v-125h-541zM168 0v999h165v-999h-165z" /> + <glyph glyph-name="Iogonek" unicode="Į" horiz-adv-x="582" +d="M353 -273l93 -65q-79 -113 -206 -113q-90 0 -148 56.5t-58 148.5q0 53 23.5 98.5t60 74.5t68.5 46.5t61 26.5h-35v1413h159v-1413q-4 -1 -13.5 -5t-32.5 -14.5t-45 -23.5t-47.5 -33t-44.5 -42t-31.5 -51t-12.5 -60q0 -51 24.5 -79.5t62.5 -28.5q76 0 122 64z" /> + <glyph glyph-name="iogonek" unicode="į" horiz-adv-x="501" +d="M335 1413v-192h-173v192h173zM315 -273l93 -65q-79 -113 -206 -113q-90 0 -148 56.5t-58 148.5q0 53 23.5 98.5t60 74.5t68.5 46.5t61 26.5h-41v999h165v-999q-4 -1 -13.5 -5t-32.5 -14.5t-45 -23.5t-47.5 -33t-44.5 -42t-31.5 -51t-12.5 -60q0 -51 24.5 -79.5 +t62.5 -28.5q76 0 122 64z" /> + <glyph glyph-name="Idotaccent" unicode="İ" horiz-adv-x="582" +d="M202 1635v192h173v-192h-173zM212 0v1413h159v-1413h-159z" /> + <glyph glyph-name="dotlessi" unicode="ı" horiz-adv-x="501" +d="M168 0v999h165v-999h-165z" /> + <glyph glyph-name="IJ" unicode="IJ" horiz-adv-x="1701" +d="M212 0v1413h159v-1413h-159zM1080 -20q-187 0 -300 118t-126 298l155 21q4 -58 21 -109t48.5 -94.5t83.5 -68.5t118 -25q67 0 116.5 19t79 51t47.5 80.5t24.5 99t6.5 115.5v791h-532v137h691v-911q0 -522 -433 -522z" /> + <glyph glyph-name="Kcommaaccent" unicode="Ķ" horiz-adv-x="1452" +d="M212 0v1413h159v-829l781 829h204l-534 -557l567 -856h-191l-482 747l-345 -357v-390h-159zM479 -446l123 335h212l-228 -335h-107z" /> + <glyph glyph-name="kcommaaccent" unicode="ķ" horiz-adv-x="1048" +d="M170 0v1413h151v-952l445 538h187l-326 -367l391 -632h-177l-306 530l-214 -237v-293h-151zM373 -446l123 335h212l-228 -335h-107z" /> + <glyph glyph-name="kgreenlandic" unicode="ĸ" horiz-adv-x="1044" +d="M168 0v999h149v-523l446 523h186l-326 -367l392 -632h-179l-305 527l-214 -237v-290h-149z" /> + <glyph glyph-name="Lacute" unicode="Ĺ" horiz-adv-x="1037" +d="M216 1538l217 289h193l-277 -289h-133zM212 0v1413h159v-1268h604v-145h-763z" /> + <glyph glyph-name="lacute" unicode="ĺ" horiz-adv-x="518" +d="M553 1827l-277 -289h-133l217 289h193zM316 167q0 -2 0.5 -7t3.5 -14t8 -16.5t14.5 -13.5t22.5 -6q42 0 97 10v-120q-64 -20 -135 -20q-44 0 -75 12.5t-47.5 30.5t-26 49.5t-11.5 59.5t-2 70v1211h151v-1246z" /> + <glyph glyph-name="Lcommaaccent" unicode="Ļ" horiz-adv-x="1037" +d="M212 0v1413h159v-1268h604v-145h-763zM309 -446l123 335h212l-228 -335h-107z" /> + <glyph glyph-name="lcommaaccent" unicode="ļ" horiz-adv-x="518" +d="M365 110q42 0 97 10v-120q-64 -20 -135 -20q-44 0 -75 12.5t-47.5 30.5t-26 49.5t-11.5 59.5t-2 70v1211h151v-1246q0 -2 0.5 -7t3.5 -14t8 -16.5t14.5 -13.5t22.5 -6zM127 -446l123 335h212l-228 -335h-107z" /> + <glyph glyph-name="Lcaron" unicode="Ľ" horiz-adv-x="1051" +d="M212 0v1413h159v-1268h604v-145h-763zM601 1017l103 396h212l-208 -396h-107z" /> + <glyph glyph-name="lcaron" unicode="ľ" horiz-adv-x="567" +d="M316 166q0 -7 2.5 -18t15 -24.5t32.5 -13.5q41 0 96 10v-120q-64 -20 -134 -20q-44 0 -75 12t-48 30.5t-26 50t-11.5 59t-2.5 70.5v1211h151v-1247zM546 1413h212l-207 -396h-108z" /> + <glyph glyph-name="Lslash" unicode="Ł" horiz-adv-x="1058" +d="M380 145h604v-145h-763v307l-95 -105v185l95 108v918h159v-738l375 426v-206l-375 -413v-337z" /> + <glyph glyph-name="lslash" unicode="ł" horiz-adv-x="518" +d="M496 857l-180 -203v-487q0 -2 0.5 -7t3.5 -14t8 -16.5t14.5 -13.5t22.5 -6q42 0 97 10v-120q-64 -20 -135 -20q-44 0 -75 12.5t-47.5 30.5t-26 49.5t-11.5 59.5t-2 70v282l-157 -177v147l157 177v782h151v-612l180 203v-147z" /> + <glyph glyph-name="Nacute" unicode="Ń" horiz-adv-x="1418" +d="M612 1538l217 289h193l-277 -289h-133zM212 0v1413h229l608 -1245v1245h157v-1413h-232l-604 1247v-1247h-158z" /> + <glyph glyph-name="nacute" unicode="ń" +d="M455 1124l217 289h193l-277 -289h-133zM168 0v999h149v-174q51 90 133.5 141t188.5 51q86 0 152 -32.5t105 -90t58.5 -130t19.5 -157.5v-607h-148v592q0 56 -11 105.5t-36 94.5t-71 71.5t-109 26.5q-124 0 -203 -96t-79 -275v-519h-149z" /> + <glyph glyph-name="Ncommaaccent" unicode="Ņ" horiz-adv-x="1418" +d="M212 0v1413h229l608 -1245v1245h157v-1413h-232l-604 1247v-1247h-158zM480 -446l123 335h212l-228 -335h-107z" /> + <glyph glyph-name="ncommaaccent" unicode="ņ" +d="M168 0v999h149v-174q51 90 133.5 141t188.5 51q86 0 152 -32.5t105 -90t58.5 -130t19.5 -157.5v-607h-148v592q0 56 -11 105.5t-36 94.5t-71 71.5t-109 26.5q-124 0 -203 -96t-79 -275v-519h-149zM323 -446l123 335h212l-228 -335h-107z" /> + <glyph glyph-name="Ncaron" unicode="Ň" horiz-adv-x="1418" +d="M707 1495l-329 332h162l167 -181l168 181h161zM212 0v1413h229l608 -1245v1245h157v-1413h-232l-604 1247v-1247h-158z" /> + <glyph glyph-name="ncaron" unicode="ň" +d="M550 1081l-329 332h162l167 -181l168 181h161zM168 0v999h149v-174q51 90 133.5 141t188.5 51q86 0 152 -32.5t105 -90t58.5 -130t19.5 -157.5v-607h-148v592q0 56 -11 105.5t-36 94.5t-71 71.5t-109 26.5q-124 0 -203 -96t-79 -275v-519h-149z" /> + <glyph glyph-name="Eng" unicode="Ŋ" horiz-adv-x="1420" +d="M845 -369v121q114 -1 164 51.5t15 126.5l-654 1298v-1228h-158v1413h222l615 -1228v1228h157v-1413q0 -24 -0.5 -38.5t-3 -46.5t-7 -54t-14 -54t-23 -54.5t-35.5 -47t-49 -39.5t-65.5 -25t-84.5 -10h-79z" /> + <glyph glyph-name="eng" unicode="ŋ" +d="M622 -369v129h56q41 0 70.5 14.5t43.5 33t22 48t9 46t1 40.5v651q0 278 -205 278q-124 0 -212 -89.5t-88 -212.5v-569h-151v999h151v-158q47 79 132.5 127t180.5 48q73 0 131.5 -22t97.5 -60t65 -90.5t37 -111t11 -125.5v-691q0 -285 -267 -285h-85z" /> + <glyph glyph-name="Omacron" unicode="Ō" horiz-adv-x="1515" +d="M487 1597v125h541v-125h-541zM756 -20q-126 0 -230.5 38t-178.5 105t-125 159t-75 199t-24 226t24 226t75 199t125 159t178.5 105t230.5 38q157 0 280.5 -58t200 -159t116 -231t39.5 -279q0 -150 -39.5 -279.5t-116 -230.5t-200 -159t-280.5 -58zM756 126q100 0 182 31.5 +t137 85.5t92 128.5t54 158.5t17 177t-17 176.5t-54 158t-92 128.5t-137 85.5t-182 31.5q-99 0 -179.5 -31.5t-135.5 -85.5t-92 -128.5t-54 -158t-17 -176.5t17 -177t54 -158.5t92 -128.5t135.5 -85.5t179.5 -31.5z" /> + <glyph glyph-name="omacron" unicode="ō" +d="M289 1183v125h541v-125h-541zM557 -20q-137 0 -246 71t-167 190t-58 261t58 259.5t166.5 188t246.5 70.5q137 0 247 -70t169.5 -188.5t59.5 -259.5q0 -142 -59.5 -261t-169.5 -190t-247 -71zM558 104q81 0 144.5 34t102 91t58 126.5t19.5 146.5t-19.5 146t-57.5 125.5 +t-101.5 89.5t-143.5 33t-143.5 -33t-102 -89t-58.5 -125.5t-20 -146.5q0 -78 20 -148t58 -126.5t101 -90t143 -33.5z" /> + <glyph glyph-name="Ohungarumlaut" unicode="Ő" horiz-adv-x="1515" +d="M495 1533l217 294h188l-271 -294h-134zM825 1533l217 294h193l-276 -294h-134zM756 -20q-126 0 -230.5 38t-178.5 105t-125 159t-75 199t-24 226t24 226t75 199t125 159t178.5 105t230.5 38q157 0 280.5 -58t200 -159t116 -231t39.5 -279q0 -150 -39.5 -279.5 +t-116 -230.5t-200 -159t-280.5 -58zM756 126q100 0 182 31.5t137 85.5t92 128.5t54 158.5t17 177t-17 176.5t-54 158t-92 128.5t-137 85.5t-182 31.5q-99 0 -179.5 -31.5t-135.5 -85.5t-92 -128.5t-54 -158t-17 -176.5t17 -177t54 -158.5t92 -128.5t135.5 -85.5t179.5 -31.5 +z" /> + <glyph glyph-name="ohungarumlaut" unicode="ő" +d="M297 1119l217 294h188l-271 -294h-134zM627 1119l217 294h193l-276 -294h-134zM557 -20q-137 0 -246 71t-167 190t-58 261t58 259.5t166.5 188t246.5 70.5q137 0 247 -70t169.5 -188.5t59.5 -259.5q0 -142 -59.5 -261t-169.5 -190t-247 -71zM558 104q81 0 144.5 34 +t102 91t58 126.5t19.5 146.5t-19.5 146t-57.5 125.5t-101.5 89.5t-143.5 33t-143.5 -33t-102 -89t-58.5 -125.5t-20 -146.5q0 -78 20 -148t58 -126.5t101 -90t143 -33.5z" /> + <glyph glyph-name="OE" unicode="Œ" horiz-adv-x="2243" +d="M756 -20q-126 0 -230.5 38t-178.5 105t-125 159t-75 199t-24 226t24 226t75 199t125 159t178.5 105t230.5 38q345 0 477 -276v255h899v-137h-740v-502h657v-133h-657v-496h740v-145h-899v256q-128 -276 -477 -276zM756 124q124 0 218.5 48t149.5 131t82 184.5t27 219.5 +q0 93 -16.5 176.5t-53 158.5t-90.5 129.5t-135.5 86t-181.5 31.5q-123 0 -216.5 -48t-148.5 -130.5t-82 -184.5t-27 -219q0 -93 16.5 -177t53 -159t91 -129.5t134.5 -86t179 -31.5z" /> + <glyph glyph-name="oe" unicode="œ" horiz-adv-x="1785" +d="M557 -20q-138 0 -246.5 70t-166.5 187t-58 259q0 141 58.5 258.5t167 187.5t245.5 70q125 0 220.5 -55.5t153.5 -155.5q49 98 137.5 154.5t213.5 56.5q95 0 169 -29t121 -77.5t77 -117.5t42 -142.5t12 -159.5l-2 -37h-696q1 -142 77 -237.5t215 -95.5q92 0 157 22.5 +t122 83.5l99 -80q-78 -84 -167.5 -119t-208.5 -35q-251 0 -366 208q-56 -101 -152 -158.5t-224 -57.5zM1004 571h560q1 141 -71 226t-211 85q-131 0 -201.5 -87.5t-76.5 -223.5zM557 118q81 0 142 30.5t96 84.5t52 119.5t17 143.5q0 62 -10 116t-33.5 103t-58.5 84 +t-87.5 55.5t-117.5 20.5q-80 0 -140.5 -31t-95.5 -85t-52.5 -120.5t-17.5 -143.5t17.5 -143t53 -119.5t96 -84t139.5 -30.5z" /> + <glyph glyph-name="Racute" unicode="Ŕ" horiz-adv-x="1220" +d="M516 1538l217 289h193l-277 -289h-133zM212 -2v1413h404q192 0 318 -106.5t126 -285.5q0 -141 -82 -239t-219 -127l383 -655h-186l-353 634h-232v-634h-159zM373 778h269q118 6 190 68.5t72 172.5q0 118 -79 185t-207 67h-245v-493z" /> + <glyph glyph-name="racute" unicode="ŕ" horiz-adv-x="795" +d="M269 1124l217 289h193l-277 -289h-133zM168 0v999h149v-177q39 91 119.5 144.5t175.5 53.5t161 -52l-63 -129q-45 38 -122 38q-128 0 -200.5 -99t-72.5 -279v-499h-147z" /> + <glyph glyph-name="Rcommaaccent" unicode="Ŗ" horiz-adv-x="1220" +d="M212 -2v1413h404q192 0 318 -106.5t126 -285.5q0 -141 -82 -239t-219 -127l383 -655h-186l-353 634h-232v-634h-159zM373 778h269q118 6 190 68.5t72 172.5q0 118 -79 185t-207 67h-245v-493zM461 -446l123 335h212l-228 -335h-107z" /> + <glyph glyph-name="rcommaaccent" unicode="ŗ" horiz-adv-x="795" +d="M168 0v999h149v-177q39 91 119.5 144.5t175.5 53.5t161 -52l-63 -129q-45 38 -122 38q-128 0 -200.5 -99t-72.5 -279v-499h-147zM16 -446l123 335h212l-228 -335h-107z" /> + <glyph glyph-name="Rcaron" unicode="Ř" horiz-adv-x="1220" +d="M611 1495l-329 332h162l167 -181l168 181h161zM212 -2v1413h404q192 0 318 -106.5t126 -285.5q0 -141 -82 -239t-219 -127l383 -655h-186l-353 634h-232v-634h-159zM373 778h269q118 6 190 68.5t72 172.5q0 118 -79 185t-207 67h-245v-493z" /> + <glyph glyph-name="rcaron" unicode="ř" horiz-adv-x="795" +d="M364 1081l-329 332h162l167 -181l168 181h161zM168 0v999h149v-177q39 91 119.5 144.5t175.5 53.5t161 -52l-63 -129q-45 38 -122 38q-128 0 -200.5 -99t-72.5 -279v-499h-147z" /> + <glyph glyph-name="Sacute" unicode="Ś" horiz-adv-x="1110" +d="M456 1538l217 289h193l-277 -289h-133zM571 -16q-183 0 -321 98.5t-167 279.5l148 44q14 -136 110.5 -208.5t230.5 -72.5q131 0 208.5 64.5t77.5 188.5q0 74 -37.5 130.5t-97.5 93t-132.5 68.5t-145.5 66.5t-133 76.5t-97.5 109t-37.5 154q0 159 111 258.5t272 99.5 +q263 0 392 -220l-119 -80q-41 81 -114 122t-161 41q-93 0 -160 -57t-67 -150q0 -51 23.5 -92.5t62.5 -71.5t90.5 -56.5t108 -52t112.5 -52t107.5 -62t90.5 -77.5t62.5 -102.5t23.5 -133.5q0 -183 -124.5 -294.5t-316.5 -111.5z" /> + <glyph glyph-name="sacute" unicode="ś" horiz-adv-x="868" +d="M333 1124l217 289h193l-277 -289h-133zM445 -20q-135 0 -236 71t-137 176l126 65q28 -85 91 -137.5t158 -52.5q88 0 142 43t54 122q0 54 -29.5 92.5t-76 60.5t-103 40t-113.5 38.5t-103.5 48.5t-76 77.5t-29.5 118.5q0 130 91.5 203.5t225.5 73.5q112 0 196.5 -53.5 +t131.5 -145.5l-110 -63q-70 141 -223 141q-80 0 -127.5 -38t-47.5 -100q0 -46 29.5 -79t77.5 -52.5t105 -36.5t114.5 -39.5t105.5 -53.5t77.5 -85.5t29.5 -129.5t-29 -134.5t-78 -96t-109.5 -55.5t-126.5 -19z" /> + <glyph glyph-name="Scedilla" unicode="Ş" horiz-adv-x="1110" +d="M1012 390q0 -174 -113 -284t-291 -121l-59 -102q90 -4 138 -55t48 -125q0 -83 -58.5 -145t-153.5 -62q-62 0 -111.5 35.5t-70.5 88.5l99 51q6 -29 30.5 -50.5t58.5 -21.5q44 0 71 28t27 68q0 51 -48 88t-138 37h-42l93 169q-158 21 -271 116.5t-138 256.5l148 44 +q14 -136 110.5 -208.5t230.5 -72.5q131 0 208.5 64.5t77.5 188.5q0 74 -37.5 130.5t-97.5 93t-132.5 68.5t-145.5 66.5t-133 76.5t-97.5 109t-37.5 154q0 159 111 258.5t272 99.5q263 0 392 -220l-119 -80q-41 81 -114 122t-161 41q-93 0 -160 -57t-67 -150 +q0 -51 23.5 -92.5t62.5 -71.5t90.5 -56.5t108 -52t112.5 -52t107.5 -62t90.5 -77.5t62.5 -102.5t23.5 -133.5z" /> + <glyph glyph-name="scedilla" unicode="ş" horiz-adv-x="868" +d="M788 285q0 -124 -75 -200.5t-190 -97.5l-60 -104q90 -4 138 -55t48 -125q0 -83 -58.5 -145t-153.5 -62q-62 0 -111.5 35.5t-70.5 88.5l99 51q6 -29 30.5 -50.5t58.5 -21.5q44 0 71 28t27 68q0 51 -48 88t-138 37h-42l89 162q-120 12 -208.5 80.5t-121.5 164.5l126 65 +q28 -85 91 -137.5t158 -52.5q88 0 142 43t54 122q0 54 -29.5 92.5t-76 60.5t-103 40t-113.5 38.5t-103.5 48.5t-76 77.5t-29.5 118.5q0 130 91.5 203.5t225.5 73.5q112 0 196.5 -53.5t131.5 -145.5l-110 -63q-70 141 -223 141q-80 0 -127.5 -38t-47.5 -100q0 -46 29.5 -79 +t77.5 -52.5t105 -36.5t114.5 -39.5t105.5 -53.5t77.5 -85.5t29.5 -129.5z" /> + <glyph glyph-name="Scaron" unicode="Š" horiz-adv-x="1110" +d="M551 1495l-329 332h162l167 -181l168 181h161zM571 -16q-183 0 -321 98.5t-167 279.5l148 44q14 -136 110.5 -208.5t230.5 -72.5q131 0 208.5 64.5t77.5 188.5q0 74 -37.5 130.5t-97.5 93t-132.5 68.5t-145.5 66.5t-133 76.5t-97.5 109t-37.5 154q0 159 111 258.5 +t272 99.5q263 0 392 -220l-119 -80q-41 81 -114 122t-161 41q-93 0 -160 -57t-67 -150q0 -51 23.5 -92.5t62.5 -71.5t90.5 -56.5t108 -52t112.5 -52t107.5 -62t90.5 -77.5t62.5 -102.5t23.5 -133.5q0 -183 -124.5 -294.5t-316.5 -111.5z" /> + <glyph glyph-name="scaron" unicode="š" horiz-adv-x="868" +d="M428 1081l-329 332h162l167 -181l168 181h161zM445 -20q-135 0 -236 71t-137 176l126 65q28 -85 91 -137.5t158 -52.5q88 0 142 43t54 122q0 54 -29.5 92.5t-76 60.5t-103 40t-113.5 38.5t-103.5 48.5t-76 77.5t-29.5 118.5q0 130 91.5 203.5t225.5 73.5 +q112 0 196.5 -53.5t131.5 -145.5l-110 -63q-70 141 -223 141q-80 0 -127.5 -38t-47.5 -100q0 -46 29.5 -79t77.5 -52.5t105 -36.5t114.5 -39.5t105.5 -53.5t77.5 -85.5t29.5 -129.5t-29 -134.5t-78 -96t-109.5 -55.5t-126.5 -19z" /> + <glyph glyph-name="uni0162" unicode="Ţ" horiz-adv-x="1234" +d="M697 0h-10l-68 -117q90 -4 138 -55t48 -125q0 -83 -58.5 -145t-153.5 -62q-62 0 -111.5 35.5t-70.5 88.5l99 51q6 -29 30.5 -50.5t58.5 -21.5q44 0 71 28t27 68q0 51 -48 88t-138 37h-42l99 180h-31v1282h-477v131h1114v-131h-477v-1282z" /> + <glyph glyph-name="uni0163" unicode="ţ" horiz-adv-x="673" +d="M444 -117q90 -4 138 -55t48 -125q0 -83 -58.5 -145t-153.5 -62q-62 0 -111.5 35.5t-70.5 88.5l99 51q6 -29 30.5 -50.5t58.5 -21.5q44 0 71 28t27 68q0 51 -48 88t-138 37h-42l91 165q-181 33 -181 280v612h-160v122h161v225l148 140v-365h253v-122h-253v-613 +q0 -79 35 -120t92 -41q48 0 100 25v-128q-28 -11 -78 -17z" /> + <glyph glyph-name="Tcaron" unicode="Ť" horiz-adv-x="1234" +d="M621 1495l-329 332h162l167 -181l168 181h161zM537 0v1282h-477v131h1114v-131h-477v-1282h-160z" /> + <glyph glyph-name="tcaron" unicode="ť" horiz-adv-x="675" +d="M478 1104l121 373h196l-223 -373h-94zM448 -20q-246 0 -246 285v608h-157v126h157v225l149 140v-365h256v-126h-256v-617q0 -146 109 -146q35 0 65 4.5t43 9.5l12 4v-128q-52 -20 -132 -20z" /> + <glyph glyph-name="Tbar" unicode="Ŧ" horiz-adv-x="1234" +d="M1174 1282h-477v-518h241v-116h-241v-648h-160v648h-233v116h233v518h-477v131h1114v-131z" /> + <glyph glyph-name="tbar" unicode="ŧ" horiz-adv-x="673" +d="M636 441h-283v-177q0 -79 35 -120t92 -41q48 0 100 25v-128q-49 -20 -134 -20q-242 0 -242 285v176h-202v116h202v320h-160v122h161v225l148 140v-365h253v-122h-253v-320h283v-116z" /> + <glyph glyph-name="Utilde" unicode="Ũ" horiz-adv-x="1352" +d="M801 1560q-38 0 -71 16t-55.5 39t-42.5 46.5t-42 39.5t-44 16q-69 0 -69 -137h-100q0 114 44 182t125 68q49 0 90 -25t63.5 -54.5t50 -54.5t53.5 -25q71 0 71 153h106q0 -128 -46.5 -196t-132.5 -68zM675 -20q-102 0 -185.5 29t-139.5 78.5t-94 118.5t-55 147t-17 165 +v895h159v-850q0 -433 332 -433q336 0 336 433v850h159v-885q0 -90 -17.5 -170t-56 -150t-95.5 -120t-140 -79t-186 -29z" /> + <glyph glyph-name="utilde" unicode="ũ" horiz-adv-x="1117" +d="M680 1146q-38 0 -71 16t-55.5 39t-42.5 46.5t-42 39.5t-44 16q-69 0 -69 -137h-100q0 114 44 182t125 68q49 0 90 -25t63.5 -54.5t50 -54.5t53.5 -25q71 0 71 153h106q0 -128 -46.5 -196t-132.5 -68zM486 -22q-119 0 -197.5 59.5t-112 155.5t-33.5 226v580h149v-590 +q0 -59 9.5 -109t31 -96.5t65 -73t104.5 -26.5q122 0 210 98.5t88 243.5v553h148v-999h-148v169q-34 -74 -119.5 -132.5t-194.5 -58.5z" /> + <glyph glyph-name="Umacron" unicode="Ū" horiz-adv-x="1352" +d="M411 1597v125h541v-125h-541zM675 -20q-102 0 -185.5 29t-139.5 78.5t-94 118.5t-55 147t-17 165v895h159v-850q0 -433 332 -433q336 0 336 433v850h159v-885q0 -90 -17.5 -170t-56 -150t-95.5 -120t-140 -79t-186 -29z" /> + <glyph glyph-name="umacron" unicode="ū" horiz-adv-x="1117" +d="M290 1183v125h541v-125h-541zM486 -22q-119 0 -197.5 59.5t-112 155.5t-33.5 226v580h149v-590q0 -59 9.5 -109t31 -96.5t65 -73t104.5 -26.5q122 0 210 98.5t88 243.5v553h148v-999h-148v169q-34 -74 -119.5 -132.5t-194.5 -58.5z" /> + <glyph glyph-name="Uring" unicode="Ů" horiz-adv-x="1352" +d="M678 1493q-86 0 -144.5 59.5t-58.5 143.5q0 85 59 144.5t144 59.5q83 0 143.5 -59.5t60.5 -144.5q0 -84 -59.5 -143.5t-144.5 -59.5zM678 1596q42 0 71 29t29 72q0 42 -28 70t-72 28t-71 -27t-27 -71t28 -72.5t70 -28.5zM675 -20q-102 0 -185.5 29t-139.5 78.5t-94 118.5 +t-55 147t-17 165v895h159v-850q0 -433 332 -433q336 0 336 433v850h159v-885q0 -90 -17.5 -170t-56 -150t-95.5 -120t-140 -79t-186 -29z" /> + <glyph glyph-name="uring" unicode="ů" horiz-adv-x="1117" +d="M557 1079q-86 0 -144.5 59.5t-58.5 143.5q0 85 59 144.5t144 59.5q83 0 143.5 -59.5t60.5 -144.5q0 -84 -59.5 -143.5t-144.5 -59.5zM557 1182q42 0 71 29t29 72q0 42 -28 70t-72 28t-71 -27t-27 -71t28 -72.5t70 -28.5zM486 -22q-119 0 -197.5 59.5t-112 155.5 +t-33.5 226v580h149v-590q0 -59 9.5 -109t31 -96.5t65 -73t104.5 -26.5q122 0 210 98.5t88 243.5v553h148v-999h-148v169q-34 -74 -119.5 -132.5t-194.5 -58.5z" /> + <glyph glyph-name="Uhungarumlaut" unicode="Ű" horiz-adv-x="1352" +d="M419 1533l217 294h188l-271 -294h-134zM749 1533l217 294h193l-276 -294h-134zM675 -20q-102 0 -185.5 29t-139.5 78.5t-94 118.5t-55 147t-17 165v895h159v-850q0 -433 332 -433q336 0 336 433v850h159v-885q0 -90 -17.5 -170t-56 -150t-95.5 -120t-140 -79t-186 -29z +" /> + <glyph glyph-name="uhungarumlaut" unicode="ű" horiz-adv-x="1117" +d="M298 1119l217 294h188l-271 -294h-134zM628 1119l217 294h193l-276 -294h-134zM486 -22q-119 0 -197.5 59.5t-112 155.5t-33.5 226v580h149v-590q0 -59 9.5 -109t31 -96.5t65 -73t104.5 -26.5q122 0 210 98.5t88 243.5v553h148v-999h-148v169q-34 -74 -119.5 -132.5 +t-194.5 -58.5z" /> + <glyph glyph-name="Uogonek" unicode="Ų" horiz-adv-x="1352" +d="M1011 1413h159v-885q0 -177 -69.5 -312.5t-209.5 -195.5q-1 0 -2 -1q-12 -4 -18 -7q-29 -12 -57 -28t-65.5 -43.5t-61 -67t-23.5 -82.5q0 -51 24.5 -79.5t62.5 -28.5q76 0 122 64l93 -65q-79 -113 -206 -113q-90 0 -148 56.5t-58 148.5q0 127 128 206h-7 +q-102 0 -185.5 29t-139.5 78.5t-94 118.5t-55 147t-17 165v895h159v-850q0 -433 332 -433q336 0 336 433v850z" /> + <glyph glyph-name="uogonek" unicode="ų" horiz-adv-x="1117" +d="M930 -273l93 -65q-79 -113 -206 -113q-90 0 -148 56.5t-58 148.5q0 53 23.5 98.5t60 74.5t68.5 46.5t61 26.5h-24v169q-34 -74 -119.5 -132.5t-194.5 -58.5q-119 0 -197.5 59.5t-112 155.5t-33.5 226v580h149v-590q0 -59 9.5 -109t31 -96.5t65 -73t104.5 -26.5 +q122 0 210 98.5t88 243.5v553h148v-999q-4 -1 -13.5 -5t-32.5 -14.5t-45 -23.5t-47.5 -33t-44.5 -42t-31.5 -51t-12.5 -60q0 -51 24.5 -79.5t62.5 -28.5q76 0 122 64z" /> + <glyph glyph-name="Wcircumflex" unicode="Ŵ" horiz-adv-x="1973" +d="M661 1487l329 355l329 -355h-161l-168 186l-167 -186h-162zM471 0l-397 1413h162l336 -1219l351 1137h128l352 -1137l334 1219h163l-398 -1413h-174l-338 1076l-345 -1076h-174z" /> + <glyph glyph-name="wcircumflex" unicode="ŵ" horiz-adv-x="1419" +d="M383 1098l329 355l329 -355h-161l-168 186l-167 -186h-162zM329 -1l-279 1000h158l204 -802l230 802h137l229 -800l203 800h159l-280 -999h-145l-233 811l-238 -812h-145z" /> + <glyph glyph-name="Ycircumflex" unicode="Ŷ" horiz-adv-x="1316" +d="M328 1512l329 355l329 -355h-161l-168 186l-167 -186h-162zM581 0v553l-529 860h186l419 -699l422 699h185l-527 -860v-553h-156z" /> + <glyph glyph-name="ycircumflex" unicode="ŷ" horiz-adv-x="975" +d="M154 1098l329 355l329 -355h-161l-168 186l-167 -186h-162zM248 -430l171 435l-384 994h165l293 -817l284 817h163l-535 -1429h-157z" /> + <glyph glyph-name="Ydieresis" unicode="Ÿ" horiz-adv-x="1316" +d="M402 1635v192h169v-192h-169zM739 1635v192h168v-192h-168zM581 0v553l-529 860h186l419 -699l422 699h185l-527 -860v-553h-156z" /> + <glyph glyph-name="Zacute" unicode="Ź" horiz-adv-x="1273" +d="M542 1538l217 289h193l-277 -289h-133zM87 0v124l895 1152h-850v137h1043v-130l-891 -1139h891v-144h-1088z" /> + <glyph glyph-name="zacute" unicode="ź" horiz-adv-x="930" +d="M773 1413l-277 -289h-133l217 289h193zM852 999v-123l-600 -748h600v-128h-786v113l611 764h-582v122h757z" /> + <glyph glyph-name="Zdotaccent" unicode="Ż" horiz-adv-x="1273" +d="M549 1635v192h173v-192h-173zM87 0v124l895 1152h-850v137h1043v-130l-891 -1139h891v-144h-1088z" /> + <glyph glyph-name="zdotaccent" unicode="ż" horiz-adv-x="930" +d="M543 1413v-192h-173v192h173zM852 999v-123l-600 -748h600v-128h-786v113l611 764h-582v122h757z" /> + <glyph glyph-name="Zcaron" unicode="Ž" horiz-adv-x="1273" +d="M637 1495l-329 332h162l167 -181l168 181h161zM87 0v124l895 1152h-850v137h1043v-130l-891 -1139h891v-144h-1088z" /> + <glyph glyph-name="zcaron" unicode="ž" horiz-adv-x="930" +d="M787 1413l-329 -332l-329 332h162l167 -181l168 181h161zM852 999v-123l-600 -748h600v-128h-786v113l611 764h-582v122h757z" /> + <glyph glyph-name="florin" unicode="ƒ" horiz-adv-x="1046" +d="M114 -457v135q177 0 257.5 75t80.5 242v872h-178v132h178v161q0 126 77.5 208t189.5 82q110 0 197 -76l-87 -103q-50 44 -110 44q-56 0 -94 -40t-38 -115v-161h305v-132h-305v-872q0 -219 -127 -335.5t-346 -116.5z" /> + <glyph glyph-name="uni01C3" unicode="ǃ" horiz-adv-x="646" +d="M267 379l-29 1056h170l-29 -1056h-112zM226 0v192h194v-192h-194z" /> + <glyph glyph-name="uni01C4" unicode="DŽ" horiz-adv-x="2659" +d="M2023 1495l-329 332h162l167 -181l168 181h161zM212 0v1413h360q345 0 529 -184.5t184 -532.5q0 -334 -186.5 -515t-528.5 -181h-358zM1473 0v124l895 1152h-850v137h1043v-130l-891 -1139h891v-144h-1088zM371 145h175q126 0 230 33.5t183 101t123 176.5t44 251 +q0 276 -140 420t-418 144h-197v-1126z" /> + <glyph glyph-name="uni01C5" unicode="Dž" horiz-adv-x="2338" +d="M572 1413q345 0 529 -184.5t184 -532.5q0 -334 -186.5 -515t-528.5 -181h-358v1413h360zM2195 1413l-329 -332l-329 332h162l167 -181l168 181h161zM546 145q126 0 230 33.5t183 101t123 176.5t44 251q0 276 -140 420t-418 144h-197v-1126h175zM2260 999v-123l-600 -748 +h600v-128h-786v113l611 764h-582v122h757z" /> + <glyph glyph-name="uni01C6" unicode="dž" horiz-adv-x="2059" +d="M809 863v550h149v-1413h-145l-3 139q-110 -159 -313 -159q-124 0 -216.5 71t-138.5 188t-46 261q0 145 46 261.5t138 187.5t216 71q205 0 313 -157zM1916 1413l-329 -332l-329 332h162l167 -181l168 181h161zM1981 999v-123l-600 -748h600v-128h-786v113l611 764h-582 +v122h757zM535 106q74 0 130.5 32.5t89.5 88.5t49.5 124.5t16.5 148.5q0 62 -10 118.5t-32 107.5t-55 88t-81.5 58.5t-107.5 21.5q-72 0 -128.5 -33t-90 -89t-50.5 -125t-17 -147q0 -79 17 -148t50.5 -125t90 -88.5t128.5 -32.5z" /> + <glyph glyph-name="uni01C7" unicode="LJ" horiz-adv-x="2195" +d="M212 0v1413h159v-1268h604v-145h-763zM1574 -20q-187 0 -300 118t-126 298l155 21q4 -58 21 -109t48.5 -94.5t83.5 -68.5t118 -25q67 0 116.5 19t79 51t47.5 80.5t24.5 99t6.5 115.5v791h-532v137h691v-911q0 -522 -433 -522z" /> + <glyph glyph-name="uni01C8" unicode="Lj" horiz-adv-x="1532" +d="M212 0v1413h159v-1268h604v-145h-763zM1200 1227v186h172v-186h-172zM1106 -438q-74 0 -151 31l32 112q55 -17 115 -17q58 0 83 38.5t25 96.5v1176h152v-1154q0 -130 -63 -206.5t-193 -76.5z" /> + <glyph glyph-name="uni01C9" unicode="lj" horiz-adv-x="1011" +d="M462 120v-120q-64 -20 -135 -20q-44 0 -75 12.5t-47.5 30.5t-26 49.5t-11.5 59.5t-2 70v1211h151v-1246q0 -2 0.5 -7t3.5 -14t8 -16.5t14.5 -13.5t22.5 -6q42 0 97 10zM679 1413h172v-186h-172v186zM689 -177v1176h152v-1154q0 -130 -63 -206.5t-193 -76.5q-74 0 -151 31 +l32 112q55 -17 115 -17q58 0 83 38.5t25 96.5z" /> + <glyph glyph-name="uni01CA" unicode="NJ" horiz-adv-x="2537" +d="M212 0v1413h229l608 -1245v1245h157v-1413h-232l-604 1247v-1247h-158zM1916 -20q-187 0 -300 118t-126 298l155 21q4 -58 21 -109t48.5 -94.5t83.5 -68.5t118 -25q67 0 116.5 19t79 51t47.5 80.5t24.5 99t6.5 115.5v791h-532v137h691v-911q0 -522 -433 -522z" /> + <glyph glyph-name="uni01CB" unicode="Nj" horiz-adv-x="1911" +d="M212 0v1413h229l608 -1245v1245h157v-1413h-232l-604 1247v-1247h-158zM1579 1227v186h172v-186h-172zM1485 -438q-74 0 -151 31l32 112q55 -17 115 -17q58 0 83 38.5t25 96.5v1176h152v-1154q0 -130 -63 -206.5t-193 -76.5z" /> + <glyph glyph-name="uni01CC" unicode="nj" horiz-adv-x="1612" +d="M1280 1227v186h172v-186h-172zM168 0v999h149v-174q51 90 133.5 141t188.5 51q86 0 152 -32.5t105 -90t58.5 -130t19.5 -157.5v-607h-148v592q0 56 -11 105.5t-36 94.5t-71 71.5t-109 26.5q-124 0 -203 -96t-79 -275v-519h-149zM1186 -438q-74 0 -151 31l32 112 +q55 -17 115 -17q58 0 83 38.5t25 96.5v1176h152v-1154q0 -130 -63 -206.5t-193 -76.5z" /> + <glyph glyph-name="uni01CD" unicode="Ǎ" horiz-adv-x="1306" +d="M654 1495l-329 332h162l167 -181l168 181h161zM63 0l531 1413h122l527 -1413h-170l-108 307h-621l-108 -307h-173zM397 452h514l-255 728z" /> + <glyph glyph-name="uni01CE" unicode="ǎ" horiz-adv-x="1025" +d="M502 1081l-329 332h162l167 -181l168 181h161zM401 -20q-144 0 -234 80t-90 218q0 293 440 293h228q0 319 -245 319q-172 0 -277 -151l-109 85q142 196 377 196q187 0 289 -110.5t102 -296.5v-613h-127l-3 193q-52 -108 -145 -160.5t-206 -52.5zM418 106q97 0 174 55 +t115 134.5t38 162.5h-214q-152 0 -226 -43t-74 -141q0 -85 51.5 -126.5t135.5 -41.5z" /> + <glyph glyph-name="uni01CF" unicode="Ǐ" horiz-adv-x="582" +d="M290 1495l-329 332h162l167 -181l168 181h161zM212 0v1413h159v-1413h-159z" /> + <glyph glyph-name="uni01D0" unicode="ǐ" horiz-adv-x="501" +d="M250 1081l-329 332h162l167 -181l168 181h161zM168 0v999h165v-999h-165z" /> + <glyph glyph-name="uni01D1" unicode="Ǒ" horiz-adv-x="1515" +d="M756 1495l-329 332h162l167 -181l168 181h161zM756 -20q-126 0 -230.5 38t-178.5 105t-125 159t-75 199t-24 226t24 226t75 199t125 159t178.5 105t230.5 38q157 0 280.5 -58t200 -159t116 -231t39.5 -279q0 -150 -39.5 -279.5t-116 -230.5t-200 -159t-280.5 -58z +M756 126q100 0 182 31.5t137 85.5t92 128.5t54 158.5t17 177t-17 176.5t-54 158t-92 128.5t-137 85.5t-182 31.5q-99 0 -179.5 -31.5t-135.5 -85.5t-92 -128.5t-54 -158t-17 -176.5t17 -177t54 -158.5t92 -128.5t135.5 -85.5t179.5 -31.5z" /> + <glyph glyph-name="uni01D2" unicode="ǒ" +d="M558 1081l-329 332h162l167 -181l168 181h161zM557 -20q-137 0 -246 71t-167 190t-58 261t58 259.5t166.5 188t246.5 70.5q137 0 247 -70t169.5 -188.5t59.5 -259.5q0 -142 -59.5 -261t-169.5 -190t-247 -71zM558 104q81 0 144.5 34t102 91t58 126.5t19.5 146.5 +t-19.5 146t-57.5 125.5t-101.5 89.5t-143.5 33t-143.5 -33t-102 -89t-58.5 -125.5t-20 -146.5q0 -78 20 -148t58 -126.5t101 -90t143 -33.5z" /> + <glyph glyph-name="uni01D3" unicode="Ǔ" horiz-adv-x="1352" +d="M680 1495l-329 332h162l167 -181l168 181h161zM675 -20q-102 0 -185.5 29t-139.5 78.5t-94 118.5t-55 147t-17 165v895h159v-850q0 -433 332 -433q336 0 336 433v850h159v-885q0 -90 -17.5 -170t-56 -150t-95.5 -120t-140 -79t-186 -29z" /> + <glyph glyph-name="uni01D4" unicode="ǔ" horiz-adv-x="1117" +d="M559 1081l-329 332h162l167 -181l168 181h161zM486 -22q-119 0 -197.5 59.5t-112 155.5t-33.5 226v580h149v-590q0 -59 9.5 -109t31 -96.5t65 -73t104.5 -26.5q122 0 210 98.5t88 243.5v553h148v-999h-148v169q-34 -74 -119.5 -132.5t-194.5 -58.5z" /> + <glyph glyph-name="uni01D5" unicode="Ǖ" horiz-adv-x="1352" +d="M411 2011v125h541v-125h-541zM425 1635v192h169v-192h-169zM762 1635v192h168v-192h-168zM675 -20q-102 0 -185.5 29t-139.5 78.5t-94 118.5t-55 147t-17 165v895h159v-850q0 -433 332 -433q336 0 336 433v850h159v-885q0 -90 -17.5 -170t-56 -150t-95.5 -120t-140 -79 +t-186 -29z" /> + <glyph glyph-name="uni01D6" unicode="ǖ" horiz-adv-x="1117" +d="M290 1597v125h541v-125h-541zM304 1221v192h169v-192h-169zM641 1221v192h168v-192h-168zM486 -22q-119 0 -197.5 59.5t-112 155.5t-33.5 226v580h149v-590q0 -59 9.5 -109t31 -96.5t65 -73t104.5 -26.5q122 0 210 98.5t88 243.5v553h148v-999h-148v169 +q-34 -74 -119.5 -132.5t-194.5 -58.5z" /> + <glyph glyph-name="uni01D7" unicode="Ǘ" horiz-adv-x="1352" +d="M585 1952l217 289h193l-277 -289h-133zM425 1635v192h169v-192h-169zM762 1635v192h168v-192h-168zM675 -20q-102 0 -185.5 29t-139.5 78.5t-94 118.5t-55 147t-17 165v895h159v-850q0 -433 332 -433q336 0 336 433v850h159v-885q0 -90 -17.5 -170t-56 -150t-95.5 -120 +t-140 -79t-186 -29z" /> + <glyph glyph-name="uni01D8" unicode="ǘ" horiz-adv-x="1117" +d="M464 1538l217 289h193l-277 -289h-133zM304 1221v192h169v-192h-169zM641 1221v192h168v-192h-168zM486 -22q-119 0 -197.5 59.5t-112 155.5t-33.5 226v580h149v-590q0 -59 9.5 -109t31 -96.5t65 -73t104.5 -26.5q122 0 210 98.5t88 243.5v553h148v-999h-148v169 +q-34 -74 -119.5 -132.5t-194.5 -58.5z" /> + <glyph glyph-name="uni01D9" unicode="Ǚ" horiz-adv-x="1352" +d="M680 1909l-329 332h162l167 -181l168 181h161zM425 1635v192h169v-192h-169zM762 1635v192h168v-192h-168zM675 -20q-102 0 -185.5 29t-139.5 78.5t-94 118.5t-55 147t-17 165v895h159v-850q0 -433 332 -433q336 0 336 433v850h159v-885q0 -90 -17.5 -170t-56 -150 +t-95.5 -120t-140 -79t-186 -29z" /> + <glyph glyph-name="uni01DA" unicode="ǚ" horiz-adv-x="1117" +d="M559 1495l-329 332h162l167 -181l168 181h161zM304 1221v192h169v-192h-169zM641 1221v192h168v-192h-168zM486 -22q-119 0 -197.5 59.5t-112 155.5t-33.5 226v580h149v-590q0 -59 9.5 -109t31 -96.5t65 -73t104.5 -26.5q122 0 210 98.5t88 243.5v553h148v-999h-148v169 +q-34 -74 -119.5 -132.5t-194.5 -58.5z" /> + <glyph glyph-name="uni01DB" unicode="Ǜ" horiz-adv-x="1352" +d="M608 1950l-258 291h192l218 -291h-152zM425 1635v192h169v-192h-169zM762 1635v192h168v-192h-168zM675 -20q-102 0 -185.5 29t-139.5 78.5t-94 118.5t-55 147t-17 165v895h159v-850q0 -433 332 -433q336 0 336 433v850h159v-885q0 -90 -17.5 -170t-56 -150t-95.5 -120 +t-140 -79t-186 -29z" /> + <glyph glyph-name="uni01DC" unicode="ǜ" horiz-adv-x="1117" +d="M487 1536l-258 291h192l218 -291h-152zM304 1221v192h169v-192h-169zM641 1221v192h168v-192h-168zM486 -22q-119 0 -197.5 59.5t-112 155.5t-33.5 226v580h149v-590q0 -59 9.5 -109t31 -96.5t65 -73t104.5 -26.5q122 0 210 98.5t88 243.5v553h148v-999h-148v169 +q-34 -74 -119.5 -132.5t-194.5 -58.5z" /> + <glyph glyph-name="uni01DD" unicode="ǝ" horiz-adv-x="1029" +d="M507 -12q-95 0 -168.5 28.5t-120.5 77t-77.5 117.5t-42.5 143.5t-12 162.5q0 8 1.5 19t1.5 14h696q-1 151 -80.5 241t-211.5 90q-92 0 -159 -23.5t-124 -83.5l-101 82q80 84 171 120t209 36q147 0 251.5 -70.5t153.5 -183t49 -252.5q0 -82 -16.5 -157.5t-52 -141.5 +t-86 -114.5t-123 -76.5t-158.5 -28zM507 120q132 0 202.5 86.5t75.5 219.5h-558q2 -139 73 -222.5t207 -83.5z" /> + <glyph glyph-name="uni01E3" unicode="ǣ" horiz-adv-x="1671" +d="M562 1196v117h532v-117h-532zM395 -20q-133 0 -225.5 82t-92.5 214q0 152 97.5 224.5t265.5 72.5h313q0 323 -260 323q-84 0 -153 -42t-112 -105l-113 74q72 98 165 145.5t221 47.5q245 0 329 -190q101 186 326 186q96 0 170.5 -29t121.5 -77t77.5 -117.5t43 -144 +t12.5 -161.5q0 -6 -0.5 -17.5t-0.5 -16.5h-697q2 -151 81 -241t211 -90q91 0 157.5 24t126.5 85l100 -84q-79 -83 -170.5 -119t-211.5 -36q-153 0 -248.5 74.5t-137.5 204.5q-108 -287 -396 -287zM883 573h558q-2 145 -75.5 225.5t-206.5 80.5q-131 0 -201.5 -87t-74.5 -219 +zM434 108q130 0 223.5 101t95.5 240h-299q-95 0 -157.5 -46t-62.5 -128q0 -70 64 -118.5t136 -48.5z" /> + <glyph glyph-name="uni01EB" unicode="ǫ" +d="M655 -10q-22 -9 -44 -20.5t-52 -32.5t-52 -44t-38 -55.5t-16 -66.5q0 -51 24.5 -79.5t62.5 -28.5q76 0 122 64l93 -65q-79 -113 -206 -113q-90 0 -148 56.5t-58 148.5q0 83 50 139t118 89q-189 18 -307 166.5t-118 353.5q0 142 58 259.5t166.5 188t246.5 70.5 +q137 0 247 -70t169.5 -188.5t59.5 -259.5q0 -190 -104.5 -333t-273.5 -179zM236 502q0 -78 20 -148t58 -126.5t101 -90t143 -33.5q81 0 144.5 34t102 91t58 126.5t19.5 146.5t-19.5 146t-57.5 125.5t-101.5 89.5t-143.5 33t-143.5 -33t-102 -89t-58.5 -125.5t-20 -146.5z +" /> + <glyph glyph-name="uni01F1" unicode="DZ" horiz-adv-x="2659" +d="M212 0v1413h360q345 0 529 -184.5t184 -532.5q0 -334 -186.5 -515t-528.5 -181h-358zM1473 0v124l895 1152h-850v137h1043v-130l-891 -1139h891v-144h-1088zM371 145h175q126 0 230 33.5t183 101t123 176.5t44 251q0 276 -140 420t-418 144h-197v-1126z" /> + <glyph glyph-name="uni01F2" unicode="Dz" horiz-adv-x="2338" +d="M572 1413q345 0 529 -184.5t184 -532.5q0 -334 -186.5 -515t-528.5 -181h-358v1413h360zM546 145q126 0 230 33.5t183 101t123 176.5t44 251q0 276 -140 420t-418 144h-197v-1126h175zM2260 999v-123l-600 -748h600v-128h-786v113l611 764h-582v122h757z" /> + <glyph glyph-name="uni01F3" unicode="dz" horiz-adv-x="2059" +d="M809 863v550h149v-1413h-145l-3 139q-110 -159 -313 -159q-124 0 -216.5 71t-138.5 188t-46 261q0 145 46 261.5t138 187.5t216 71q205 0 313 -157zM1981 999v-123l-600 -748h600v-128h-786v113l611 764h-582v122h757zM535 106q74 0 130.5 32.5t89.5 88.5t49.5 124.5 +t16.5 148.5q0 62 -10 118.5t-32 107.5t-55 88t-81.5 58.5t-107.5 21.5q-72 0 -128.5 -33t-90 -89t-50.5 -125t-17 -147q0 -79 17 -148t50.5 -125t90 -88.5t128.5 -32.5z" /> + <glyph glyph-name="Scommaaccent" unicode="Ș" horiz-adv-x="1110" +d="M571 -16q-183 0 -321 98.5t-167 279.5l148 44q14 -136 110.5 -208.5t230.5 -72.5q131 0 208.5 64.5t77.5 188.5q0 74 -37.5 130.5t-97.5 93t-132.5 68.5t-145.5 66.5t-133 76.5t-97.5 109t-37.5 154q0 159 111 258.5t272 99.5q263 0 392 -220l-119 -80q-41 81 -114 122 +t-161 41q-93 0 -160 -57t-67 -150q0 -51 23.5 -92.5t62.5 -71.5t90.5 -56.5t108 -52t112.5 -52t107.5 -62t90.5 -77.5t62.5 -102.5t23.5 -133.5q0 -183 -124.5 -294.5t-316.5 -111.5zM324 -446l123 335h212l-228 -335h-107z" /> + <glyph glyph-name="scommaaccent" unicode="ș" horiz-adv-x="868" +d="M445 -20q-135 0 -236 71t-137 176l126 65q28 -85 91 -137.5t158 -52.5q88 0 142 43t54 122q0 54 -29.5 92.5t-76 60.5t-103 40t-113.5 38.5t-103.5 48.5t-76 77.5t-29.5 118.5q0 130 91.5 203.5t225.5 73.5q112 0 196.5 -53.5t131.5 -145.5l-110 -63q-70 141 -223 141 +q-80 0 -127.5 -38t-47.5 -100q0 -46 29.5 -79t77.5 -52.5t105 -36.5t114.5 -39.5t105.5 -53.5t77.5 -85.5t29.5 -129.5t-29 -134.5t-78 -96t-109.5 -55.5t-126.5 -19zM238 -446l123 335h212l-228 -335h-107z" /> + <glyph glyph-name="uni021A" unicode="Ț" horiz-adv-x="1234" +d="M537 0v1282h-477v131h1114v-131h-477v-1282h-160zM394 -446l123 335h212l-228 -335h-107z" /> + <glyph glyph-name="uni021B" unicode="ț" horiz-adv-x="673" +d="M446 -20q-242 0 -242 285v612h-160v122h161v225l148 140v-365h253v-122h-253v-613q0 -79 35 -120t92 -41q48 0 100 25v-128q-49 -20 -134 -20zM219 -446l123 335h212l-228 -335h-107z" /> + <glyph glyph-name="uni0237" unicode="ȷ" horiz-adv-x="491" +d="M63 -438q-68 0 -149 31l31 110q58 -16 119 -16q107 0 107 136v1176h150v-1156q0 -130 -63.5 -205.5t-194.5 -75.5z" /> + <glyph glyph-name="uni0250" unicode="ɐ" horiz-adv-x="1055" +d="M551 -20q-181 0 -282 108t-101 293v614h124l8 -177q68 103 153.5 150.5t205.5 47.5q133 0 225 -82.5t92 -214.5q0 -151 -97 -224t-266 -73h-311q0 -152 60 -231t198 -79q84 0 154 41t113 103l110 -84q-71 -99 -163 -145.5t-223 -46.5zM302 546h296q97 0 160.5 46 +t63.5 127q0 84 -57 123t-144 39q-134 0 -226 -102t-93 -233z" /> + <glyph glyph-name="uni0254" unicode="ɔ" horiz-adv-x="970" +d="M452 -20q-134 0 -235 68.5t-155 192.5l142 60q23 -88 90.5 -141t157.5 -53q60 0 108.5 23.5t79.5 62t52 90t30 105t9 110.5q0 73 -15 138.5t-46 124t-87 93t-131 34.5q-90 0 -157.5 -53t-90.5 -141l-130 56q44 127 142 196.5t234 69.5q106 0 190 -42t136.5 -114.5 +t80 -164.5t27.5 -197q0 -82 -16.5 -158t-52 -141.5t-85.5 -114t-121.5 -76.5t-156.5 -28z" /> + <glyph glyph-name="uni0258" unicode="ɘ" horiz-adv-x="1029" +d="M489 -12q-118 0 -209 36t-171 119l101 84q57 -61 124 -85t159 -24q132 0 211 90t81 241h-696q-3 30 -3 34q0 87 12 161.5t42.5 144t77.5 117.5t120.5 77t168.5 29q107 0 192 -42.5t137.5 -115t79.5 -164.5t27 -196q0 -140 -49 -252.5t-153.5 -183t-251.5 -70.5zM227 573 +h558q-5 133 -75.5 219.5t-202.5 86.5q-136 0 -207 -83.5t-73 -222.5z" /> + <glyph glyph-name="uni0259" unicode="ə" horiz-adv-x="1029" +d="M507 -12q-95 0 -168.5 28.5t-120.5 77t-77.5 117.5t-42.5 143.5t-12 162.5q0 8 1.5 19t1.5 14h696q-1 151 -80.5 241t-211.5 90q-92 0 -159 -23.5t-124 -83.5l-101 82q80 84 171 120t209 36q147 0 251.5 -70.5t153.5 -183t49 -252.5q0 -82 -16.5 -157.5t-52 -141.5 +t-86 -114.5t-123 -76.5t-158.5 -28zM507 120q132 0 202.5 86.5t75.5 219.5h-558q2 -139 73 -222.5t207 -83.5z" /> + <glyph glyph-name="uni0261" unicode="ɡ" horiz-adv-x="1117" +d="M947 0q0 -202 -109.5 -317.5t-311.5 -115.5q-130 0 -231 50t-163 147l116 86q95 -154 277 -154q132 0 202.5 82.5t70.5 221.5v140q-48 -69 -126.5 -104.5t-173.5 -35.5q-133 0 -227.5 69t-139.5 181.5t-45 257.5q0 223 107 367.5t298 144.5q99 0 178 -41t129 -116v136 +h151zM526 132q74 0 130 30.5t89 83.5t49.5 119.5t16.5 144.5q0 77 -16.5 143.5t-49.5 119.5t-89 83.5t-130 30.5q-73 0 -129.5 -30.5t-90.5 -83t-51 -119.5t-17 -144q0 -105 29 -188t95.5 -136.5t163.5 -53.5z" /> + <glyph glyph-name="circumflex" unicode="ˆ" horiz-adv-x="750" +d="M43 1098l329 355l329 -355h-161l-168 186l-167 -186h-162z" /> + <glyph glyph-name="caron" unicode="ˇ" horiz-adv-x="751" +d="M376 1081l-329 332h162l167 -181l168 181h161z" /> + <glyph glyph-name="uni02D0" unicode="ː" horiz-adv-x="532" +d="M285 637l-230 362l402 38zM75 -38l171 400l231 -362z" /> + <glyph glyph-name="uni02D1" unicode="ˑ" horiz-adv-x="553" +d="M297 265l-231 363l403 38z" /> + <glyph glyph-name="breve" unicode="˘" horiz-adv-x="831" +d="M412 1143q-138 0 -222.5 71t-84.5 199h136q0 -69 49.5 -112.5t121.5 -43.5t121 43t49 113h136q0 -129 -84.5 -199.5t-221.5 -70.5z" /> + <glyph glyph-name="dotaccent" unicode="˙" horiz-adv-x="501" +d="M166 1221v192h173v-192h-173z" /> + <glyph glyph-name="ring" unicode="˚" horiz-adv-x="634" +d="M314 1079q-86 0 -144.5 59.5t-58.5 143.5q0 85 59 144.5t144 59.5q83 0 143.5 -59.5t60.5 -144.5q0 -84 -59.5 -143.5t-144.5 -59.5zM314 1182q42 0 71 29t29 72q0 42 -28 70t-72 28t-71 -27t-27 -71t28 -72.5t70 -28.5z" /> + <glyph glyph-name="ogonek" unicode="˛" horiz-adv-x="591" +d="M313 -451q-90 0 -148 56.5t-58 148.5q0 53 23.5 98.5t60 74.5t68.5 46.5t61 26.5h124q-4 -1 -13.5 -5t-32.5 -14.5t-45 -23.5t-47.5 -33t-44.5 -42t-31.5 -51t-12.5 -60q0 -51 24.5 -79.5t62.5 -28.5q76 0 122 64l93 -65q-79 -113 -206 -113z" /> + <glyph glyph-name="tilde" unicode="˜" horiz-adv-x="859" +d="M590 1149q-38 0 -71 16t-55.5 39.5t-42.5 46.5t-42 39t-44 16q-69 0 -69 -137h-100q0 114 44 182t125 68q49 0 90 -25t63.5 -54.5t50 -54.5t53.5 -25q71 0 71 153h106q0 -128 -46.5 -196t-132.5 -68z" /> + <glyph glyph-name="hungarumlaut" unicode="˝" horiz-adv-x="865" +d="M68 1119l217 294h188l-271 -294h-134zM398 1119l217 294h193l-276 -294h-134z" /> + <glyph glyph-name="uni02F5" unicode="˵" horiz-adv-x="1285" +d="M464 717l-243 282h198l212 -282h-167zM892 717l-244 282h198l212 -282h-166z" /> + <glyph glyph-name="uni02F6" unicode="˶" horiz-adv-x="1285" +d="M226 717l214 282h196l-243 -282h-167zM654 717l214 282h196l-244 -282h-166z" /> + <glyph glyph-name="gravecomb" unicode="̀" horiz-adv-x="0" +d="M-219 1122l-258 291h192l218 -291h-152z" /> + <glyph glyph-name="acutecomb" unicode="́" horiz-adv-x="0" +d="M-466 1124l217 289h193l-277 -289h-133z" /> + <glyph glyph-name="uni0302" unicode="̂" horiz-adv-x="0" +d="M-704 1098l329 355l329 -355h-161l-168 186l-167 -186h-162z" /> + <glyph glyph-name="tildecomb" unicode="̃" horiz-adv-x="0" +d="M-307 1149q-38 0 -71 16t-55.5 39.5t-42.5 46.5t-42 39t-44 16q-69 0 -69 -137h-100q0 114 44 182t125 68q49 0 90 -25t63.5 -54.5t50 -54.5t53.5 -25q71 0 71 153h106q0 -128 -46.5 -196t-132.5 -68z" /> + <glyph glyph-name="uni0304" unicode="̄" horiz-adv-x="0" +d="M-701 1183v125h541v-125h-541z" /> + <glyph glyph-name="uni0306" unicode="̆" horiz-adv-x="0" +d="M-416 1143q-138 0 -222.5 71t-84.5 199h136q0 -69 49.5 -112.5t121.5 -43.5t121 43t49 113h136q0 -129 -84.5 -199.5t-221.5 -70.5z" /> + <glyph glyph-name="uni0307" unicode="̇" horiz-adv-x="0" +d="M-337 1221v192h173v-192h-173z" /> + <glyph glyph-name="uni0308" unicode="̈" horiz-adv-x="0" +d="M-670 1221v192h169v-192h-169zM-333 1221v192h168v-192h-168z" /> + <glyph glyph-name="uni030A" unicode="̊" horiz-adv-x="0" +d="M-317 1079q-86 0 -144.5 59.5t-58.5 143.5q0 85 59 144.5t144 59.5q83 0 143.5 -59.5t60.5 -144.5q0 -84 -59.5 -143.5t-144.5 -59.5zM-317 1182q42 0 71 29t29 72q0 42 -28 70t-72 28t-71 -27t-27 -71t28 -72.5t70 -28.5z" /> + <glyph glyph-name="uni030B" unicode="̋" horiz-adv-x="0" +d="M-797 1119l217 294h188l-271 -294h-134zM-467 1119l217 294h193l-276 -294h-134z" /> + <glyph glyph-name="uni030C" unicode="̌" horiz-adv-x="0" +d="M-375 1081l-329 332h162l167 -181l168 181h161z" /> + <glyph glyph-name="uni030F" unicode="̏" horiz-adv-x="0" +d="M-570 1119l-258 294h211l217 -294h-170zM-239 1119l-256 294h211l217 -294h-172z" /> + <glyph glyph-name="uni0312" unicode="̒" horiz-adv-x="0" +d="M-108 1423l-123 -300h-212l228 300h107z" /> + <glyph glyph-name="uni031B" unicode="̛" horiz-adv-x="0" +d="M-400 999l124 414h211l-228 -414h-107z" /> + <glyph glyph-name="uni0326" unicode="̦" horiz-adv-x="0" +d="M-399 -446l123 335h212l-228 -335h-107z" /> + <glyph glyph-name="uni0327" unicode="̧" horiz-adv-x="0" +d="M-312 -504q-62 0 -111.5 35.5t-70.5 88.5l99 51q6 -29 30.5 -50.5t58.5 -21.5q44 0 71 28t27 68q0 51 -48 88t-138 37h-42l99 180h119l-68 -117q90 -4 138 -55t48 -125q0 -83 -58.5 -145t-153.5 -62z" /> + <glyph glyph-name="uni0328" unicode="̨" horiz-adv-x="0" +d="M-278 -451q-90 0 -148 56.5t-58 148.5q0 53 23.5 98.5t60 74.5t68.5 46.5t61 26.5h124q-4 -1 -13.5 -5t-32.5 -14.5t-45 -23.5t-47.5 -33t-44.5 -42t-31.5 -51t-12.5 -60q0 -51 24.5 -79.5t62.5 -28.5q76 0 122 64l93 -65q-79 -113 -206 -113z" /> + <glyph glyph-name="pi" unicode="π" horiz-adv-x="989" +d="M827 -20q-91 0 -149 68t-58 162v639h-282v-849h-150v849h-82v150h746v-150h-82v-633q0 -53 20 -81.5t53 -28.5q27 0 54 17l40 -112q-52 -31 -110 -31z" /> + <glyph glyph-name="uni0400" unicode="Ѐ" horiz-adv-x="1239" +d="M594 1536l-258 291h192l218 -291h-152zM212 0v1413h915v-137h-756v-502h657v-133h-657v-496h756v-145h-915z" /> + <glyph glyph-name="uni0401" unicode="Ё" horiz-adv-x="1239" +d="M411 1635v192h169v-192h-169zM748 1635v192h168v-192h-168zM212 0v1413h915v-137h-756v-502h657v-133h-657v-496h756v-145h-915z" /> + <glyph glyph-name="uni0402" unicode="Ђ" horiz-adv-x="1631" +d="M1140 -17q-209 0 -321 127l103 105q73 -88 213 -88q98 0 164.5 91.5t66.5 236.5q0 205 -74.5 300.5t-261.5 95.5q-103 0 -192.5 -41t-140.5 -106v-704h-159v1284h-478v129h1114v-129h-477v-408q139 125 333 125q495 0 495 -543q0 -201 -108.5 -338t-276.5 -137z" /> + <glyph glyph-name="uni0403" unicode="Ѓ" horiz-adv-x="1068" +d="M459 1538l214 288h172l-268 -288h-118zM212 0v1413h796v-135h-639v-1278h-157z" /> + <glyph glyph-name="uni0404" unicode="Є" horiz-adv-x="1420" +d="M759 -20q-127 0 -231.5 37.5t-178.5 104t-125 158.5t-75 199.5t-24 227.5t24 227.5t74.5 200t124 159t178.5 104.5t231 38q198 0 346 -96t229 -280l-146 -60q-43 149 -157.5 219t-273.5 70q-91 0 -167 -27t-129.5 -74.5t-91.5 -113.5t-58 -141.5t-26 -161.5h631v-117 +h-631q7 -113 38 -206.5t87.5 -166.5t146 -114t204.5 -41q318 0 428 292l147 -60q-79 -185 -227.5 -281.5t-347.5 -96.5z" /> + <glyph glyph-name="uni0405" unicode="Ѕ" horiz-adv-x="1110" +d="M571 -16q-183 0 -321 98.5t-167 279.5l148 44q14 -136 110.5 -208.5t230.5 -72.5q131 0 208.5 64.5t77.5 188.5q0 74 -37.5 130.5t-97.5 93t-132.5 68.5t-145.5 66.5t-133 76.5t-97.5 109t-37.5 154q0 159 111 258.5t272 99.5q263 0 392 -220l-119 -80q-41 81 -114 122 +t-161 41q-93 0 -160 -57t-67 -150q0 -51 23.5 -92.5t62.5 -71.5t90.5 -56.5t108 -52t112.5 -52t107.5 -62t90.5 -77.5t62.5 -102.5t23.5 -133.5q0 -183 -124.5 -294.5t-316.5 -111.5z" /> + <glyph glyph-name="uni0406" unicode="І" horiz-adv-x="582" +d="M212 0v1413h159v-1413h-159z" /> + <glyph glyph-name="uni0407" unicode="Ї" horiz-adv-x="581" +d="M45 1598v167h156v-167h-156zM376 1598v167h156v-167h-156zM212 0v1413h157v-1413h-157z" /> + <glyph glyph-name="uni0408" unicode="Ј" +d="M500 -20q-188 0 -301.5 118.5t-126.5 297.5l155 22q4 -59 21.5 -110.5t49.5 -94.5t84 -68t118 -25q82 0 137 27.5t83.5 80t40 114t11.5 144.5v792h-532v135h691v-916q0 -517 -431 -517z" /> + <glyph glyph-name="uni0409" unicode="Љ" horiz-adv-x="2019" +d="M224 -20q-96 0 -169 43l63 145q68 -24 106 -24q40 0 71 50.5t49.5 127.5t30.5 179.5t16 194.5t4 185v532h845v-637h239q208 0 329.5 -101t121.5 -284t-122 -287t-329 -104h-396v1278h-531v-396q0 -67 -0.5 -110t-3.5 -122.5t-8.5 -134.5t-17 -130t-27.5 -127.5 +t-41.5 -108.5t-57 -90.5t-75.5 -56.5t-97 -22zM1240 141h239q142 0 219.5 65.5t77.5 184.5t-77 181.5t-220 62.5h-239v-494z" /> + <glyph glyph-name="uni040A" unicode="Њ" horiz-adv-x="2022" +d="M212 0v1413h157v-639h715v639h159v-637h239q208 0 329.5 -101t121.5 -284t-122 -287t-329 -104h-398v639h-715v-639h-157zM1243 141h239q140 0 218 66t78 184q0 119 -77 181.5t-219 62.5h-239v-494z" /> + <glyph glyph-name="uni040B" unicode="Ћ" horiz-adv-x="1652" +d="M538 0v1284h-478v129h1114v-129h-477v-408q122 125 333 125q129 0 225 -44.5t154.5 -126.5t87 -190.5t28.5 -243.5v-396h-159v401q0 82 -10 148t-33.5 123.5t-61.5 96t-96.5 60.5t-134.5 22q-103 0 -192.5 -41t-140.5 -106v-704h-159z" /> + <glyph glyph-name="uni040C" unicode="Ќ" horiz-adv-x="1266" +d="M493 1538l214 288h172l-268 -288h-118zM212 0v1413h157v-574h168l381 574h201l-411 -597q86 0 154.5 -58t90.5 -115l242 -643h-189l-202 563q-15 47 -68.5 94.5t-121.5 47.5h-245v-705h-157z" /> + <glyph glyph-name="uni040D" unicode="Ѝ" horiz-adv-x="1453" +d="M710 1540l-241 286h171l212 -286h-142zM212 0v1413h157v-1077q0 -49 -10 -147l3 1l681 1223h198v-1413h-157v1081q0 76 10 142l-3 -1l-681 -1222h-198z" /> + <glyph glyph-name="uni040E" unicode="Ў" horiz-adv-x="1115" +d="M559 1556q-131 0 -217 71.5t-86 198.5h123q0 -71 52.5 -117.5t127.5 -46.5q74 0 126.5 46.5t52.5 117.5h123q0 -125 -85.5 -197.5t-216.5 -72.5zM262 0l197 457l-396 956h173l306 -789l333 789h177l-621 -1413h-169z" /> + <glyph glyph-name="uni040F" unicode="Џ" horiz-adv-x="1453" +d="M648 -307v307h-436v1413h157v-1276h715v1276h157v-1413h-436v-307h-157z" /> + <glyph glyph-name="uni0410" unicode="А" horiz-adv-x="1304" +d="M63 0l529 1413h122l527 -1413h-169l-111 307h-616l-110 -307h-172zM395 452h516l-257 729z" /> + <glyph glyph-name="uni0411" unicode="Б" horiz-adv-x="1244" +d="M212 0v1413h746v-143h-589v-477h332q198 0 312 -104t114 -301q0 -179 -125 -283.5t-326 -104.5h-464zM369 147h311q118 0 202.5 70.5t84.5 183.5q0 115 -83 181t-201 66h-314v-501z" /> + <glyph glyph-name="uni0412" unicode="В" horiz-adv-x="1243" +d="M212 0v1413h391q89 0 167 -19t143.5 -59t104 -109.5t38.5 -162.5q0 -209 -183 -315q252 -112 252 -371q0 -82 -25.5 -147.5t-68 -107.5t-101.5 -70t-121.5 -40t-132.5 -12h-464zM367 791h236q128 0 208 62.5t80 188.5q0 66 -22.5 112.5t-63.5 71t-89.5 35t-110.5 10.5 +h-238v-480zM367 147h313q289 0 289 239q0 73 -23 126t-64.5 82t-90.5 42t-108 13h-316v-502z" /> + <glyph glyph-name="uni0413" unicode="Г" horiz-adv-x="1068" +d="M212 0v1413h796v-135h-639v-1278h-157z" /> + <glyph glyph-name="uni0414" unicode="Д" horiz-adv-x="1462" +d="M60 -253v383h123l479 1283h137l479 -1283h124v-383h-157v253h-1028v-253h-157zM346 130h770l-384 1073z" /> + <glyph glyph-name="uni0415" unicode="Е" horiz-adv-x="1239" +d="M212 0v1413h915v-137h-756v-502h657v-133h-657v-496h756v-145h-915z" /> + <glyph glyph-name="uni0416" unicode="Ж" horiz-adv-x="1954" +d="M72 0l243 643q21 57 89 115t155 58l-410 597h199l383 -574h167v574h158v-574h167l381 574h201l-410 -597q86 0 154.5 -58t89.5 -115l243 -643h-190l-200 563q-20 56 -71 99t-121 43h-244v-705h-158v705h-245q-71 0 -120 -40.5t-70 -101.5l-202 -563h-189z" /> + <glyph glyph-name="uni0417" unicode="З" horiz-adv-x="1112" +d="M519 -20q-149 0 -265 58t-170 171l131 86q34 -89 117 -136t187 -47q132 0 226 76.5t94 214.5q0 133 -92 205t-228 72h-167l-1 140h174q109 0 180.5 61.5t71.5 169.5q0 114 -72.5 180t-181.5 66q-100 0 -175 -60.5t-76 -162.5h-154q1 111 57 194t146 124.5t200 41.5 +q170 0 285.5 -98.5t115.5 -265.5q0 -100 -46 -180.5t-133 -127.5q118 -47 184.5 -143.5t66.5 -228.5q0 -101 -38 -180.5t-104 -129t-150.5 -75t-182.5 -25.5z" /> + <glyph glyph-name="uni0418" unicode="И" horiz-adv-x="1418" +d="M1206 0h-158v1247l-604 -1247h-232v1413h157v-1245l608 1245h229v-1413z" /> + <glyph glyph-name="uni0419" unicode="Й" horiz-adv-x="1453" +d="M754 1556q-130 0 -216 71.5t-86 198.5h123q0 -71 52.5 -117.5t126.5 -46.5q75 0 127.5 46.5t52.5 117.5h124q0 -125 -86 -197.5t-218 -72.5zM212 0v1413h157v-1077q0 -49 -10 -147l3 1l681 1223h198v-1413h-157v1081q0 76 10 142l-3 -1l-681 -1222h-198z" /> + <glyph glyph-name="uni041A" unicode="К" horiz-adv-x="1266" +d="M212 0v1413h157v-574h168l381 574h201l-411 -597q86 0 154.5 -58t90.5 -115l242 -643h-189l-202 563q-15 47 -68.5 94.5t-121.5 47.5h-245v-705h-157z" /> + <glyph glyph-name="uni041B" unicode="Л" horiz-adv-x="1325" +d="M63 0l531 1413h136l532 -1413h-164l-435 1203l-433 -1203h-167z" /> + <glyph glyph-name="uni041C" unicode="М" horiz-adv-x="1762" +d="M212 0v1413h258l408 -1135l414 1135h258v-1413h-157v1276l-425 -1153h-174l-424 1153v-1276h-158z" /> + <glyph glyph-name="uni041D" unicode="Н" horiz-adv-x="1455" +d="M212 0v1413h159v-639h713v639h159v-1413h-159v641h-713v-641h-159z" /> + <glyph glyph-name="uni041E" unicode="О" horiz-adv-x="1515" +d="M756 -20q-126 0 -230.5 38t-178.5 105t-125 159t-75 199t-24 226t24 226t75 199t125 159t178.5 105t230.5 38q157 0 280.5 -58t200 -159t116 -231t39.5 -279q0 -150 -39.5 -279.5t-116 -230.5t-200 -159t-280.5 -58zM756 126q100 0 182 31.5t137 85.5t92 128.5t54 158.5 +t17 177t-17 176.5t-54 158t-92 128.5t-137 85.5t-182 31.5q-99 0 -179.5 -31.5t-135.5 -85.5t-92 -128.5t-54 -158t-17 -176.5t17 -177t54 -158.5t92 -128.5t135.5 -85.5t179.5 -31.5z" /> + <glyph glyph-name="uni041F" unicode="П" horiz-adv-x="1453" +d="M212 0v1413h1029v-1413h-157v1278h-715v-1278h-157z" /> + <glyph glyph-name="uni0420" unicode="Р" horiz-adv-x="1148" +d="M212 0v1413h396q208 0 330 -103.5t122 -286.5q0 -184 -121.5 -285t-330.5 -101h-238v-637h-158zM370 779h238q143 0 220 62t77 182q0 118 -78 184t-219 66h-238v-494z" /> + <glyph glyph-name="uni0421" unicode="С" horiz-adv-x="1420" +d="M759 -20q-127 0 -231.5 37.5t-178.5 104t-125 158.5t-75 199.5t-24 227.5t24 227.5t74.5 200t124 159t178.5 104.5t231 38q198 0 346 -96t229 -280l-146 -60q-43 149 -157.5 219t-273.5 70q-98 0 -177.5 -30.5t-134 -83.5t-91.5 -126t-54 -156t-17 -176q0 -98 17 -184 +t54 -161.5t92 -129.5t135.5 -85t179.5 -31q318 0 428 292l147 -60q-79 -185 -227.5 -281.5t-347.5 -96.5z" /> + <glyph glyph-name="uni0422" unicode="Т" horiz-adv-x="1234" +d="M538 0v1284h-478v129h1114v-129h-478v-1284h-158z" /> + <glyph glyph-name="uni0423" unicode="У" horiz-adv-x="1115" +d="M262 0l197 457l-396 956h173l306 -789l333 789h177l-621 -1413h-169z" /> + <glyph glyph-name="uni0424" unicode="Ф" horiz-adv-x="1690" +d="M766 0v116q-643 0 -643 590q0 295 161.5 450.5t481.5 155.5v101h158v-101q321 0 482 -155.5t161 -450.5q0 -590 -643 -590v-116h-158zM766 261v906q-488 0 -488 -461q0 -226 119 -335.5t369 -109.5zM924 261q249 0 368.5 110t119.5 335q0 461 -488 461v-906z" /> + <glyph glyph-name="uni0425" unicode="Х" horiz-adv-x="1260" +d="M72 0l467 707l-465 706h189l366 -587l370 587h187l-463 -706l465 -707h-187l-374 578l-366 -578h-189z" /> + <glyph glyph-name="uni0426" unicode="Ц" horiz-adv-x="1479" +d="M1229 -253v253h-1017v1413h157v-1276h715v1276h157v-1276h144v-390h-156z" /> + <glyph glyph-name="uni0427" unicode="Ч" horiz-adv-x="1325" +d="M955 0v537q-123 -126 -334 -126q-128 0 -224.5 45t-154.5 127t-86.5 190.5t-28.5 243.5v396h159v-402q0 -103 16.5 -181t53.5 -140.5t104 -95t161 -32.5q104 0 193 41t141 106v704h159v-1413h-159z" /> + <glyph glyph-name="uni0428" unicode="Ш" horiz-adv-x="1745" +d="M212 0v1413h157v-1276h422v1276h158v-1276h427v1276h157v-1413h-1321z" /> + <glyph glyph-name="uni0429" unicode="Щ" horiz-adv-x="1770" +d="M1521 -253v253h-1309v1413h157v-1276h422v1276h158v-1276h427v1276h157v-1276h143v-390h-155z" /> + <glyph glyph-name="uni042A" unicode="Ъ" horiz-adv-x="1369" +d="M433 0v1285h-373v128h530v-637h239q208 0 329.5 -101t121.5 -284t-122 -287t-329 -104h-396zM590 141h239q142 0 219.5 65.5t77.5 184.5t-77 181.5t-220 62.5h-239v-494z" /> + <glyph glyph-name="uni042B" unicode="Ы" horiz-adv-x="1627" +d="M212 0v1413h158v-637h238q209 0 330.5 -101t121.5 -284t-122.5 -287t-329.5 -104h-396zM1258 0v1413h157v-1413h-157zM370 141h238q142 0 219.5 65.5t77.5 184.5t-77 181.5t-220 62.5h-238v-494z" /> + <glyph glyph-name="uni042C" unicode="Ь" horiz-adv-x="1148" +d="M212 0v1413h158v-637h238q209 0 330.5 -101t121.5 -284t-122.5 -287t-329.5 -104h-396zM370 141h238q142 0 219.5 65.5t77.5 184.5t-77 181.5t-220 62.5h-238v-494z" /> + <glyph glyph-name="uni042D" unicode="Э" horiz-adv-x="1420" +d="M661 -20q-199 0 -347 96.5t-228 281.5l147 60q111 -292 428 -292q115 0 204.5 41t146 114t87.5 166.5t38 206.5h-631v117h629q-6 108 -36.5 199.5t-86 164t-144.5 113.5t-203 41q-159 0 -273.5 -70t-157.5 -219l-146 60q81 184 229 280t346 96q126 0 231 -38 +t178.5 -104.5t124.5 -159t75 -200t24 -227.5t-24 -227.5t-75.5 -199.5t-125 -158.5t-178.5 -104t-232 -37.5z" /> + <glyph glyph-name="uni042E" unicode="Ю" horiz-adv-x="1892" +d="M1131 -20q-148 0 -266 51t-194 142t-119.5 208.5t-51.5 257.5h-131v-639h-157v1413h157v-639h131q8 139 51.5 257t119.5 209t194 142.5t266 51.5q128 0 233.5 -38t179 -104.5t124.5 -158.5t75 -199t24 -227t-24 -227t-75 -199t-124.5 -158.5t-179 -104.5t-233.5 -38z +M1131 126q99 0 180 31.5t136 85.5t92.5 128.5t54.5 158.5t17 177t-17 177t-54.5 158t-92.5 128t-136 85.5t-180 31.5t-179.5 -31.5t-135 -85.5t-92 -128t-54 -158t-16.5 -177t16.5 -177t54 -158.5t92 -128.5t135 -85.5t179.5 -31.5z" /> + <glyph glyph-name="uni042F" unicode="Я" horiz-adv-x="1220" +d="M1008 -2h-159v634h-232l-353 -634h-186l383 655q-137 29 -219 127t-82 239q0 179 126 285.5t318 106.5h404v-1413zM847 778v493h-245q-128 0 -207 -67t-79 -185q0 -110 72 -172.5t190 -68.5h269z" /> + <glyph glyph-name="uni0430" unicode="а" horiz-adv-x="1025" +d="M401 -20q-144 0 -234 80t-90 218q0 293 440 293h228q0 319 -245 319q-172 0 -277 -151l-109 85q142 196 377 196q187 0 289 -110.5t102 -296.5v-613h-127l-3 193q-52 -108 -145 -160.5t-206 -52.5zM418 106q97 0 174 55t115 134.5t38 162.5h-214q-152 0 -226 -43 +t-74 -141q0 -85 51.5 -126.5t135.5 -41.5z" /> + <glyph glyph-name="uni0431" unicode="б" horiz-adv-x="1126" +d="M614 959q197 0 311.5 -139t114.5 -347q0 -136 -58 -248.5t-164 -178.5t-239 -66t-236 65.5t-158 177.5t-55 252v335q0 311 219 436q171 98 468 188v-145q-124 -44 -172.5 -61.5t-118 -47.5t-107.5 -54q-82 -52 -117 -123.5t-35 -200.5v-21q53 76 144.5 127t202.5 51z +M579 104q77 0 135.5 29.5t93 81.5t51.5 116t17 139q0 74 -16.5 137.5t-51 115t-93 81t-136.5 29.5q-77 0 -135.5 -30.5t-92.5 -82.5t-51 -115t-17 -135q0 -60 10 -112.5t32.5 -99.5t56.5 -81t84.5 -53.5t112.5 -19.5z" /> + <glyph glyph-name="uni0432" unicode="в" horiz-adv-x="1146" +d="M591 -20q-229 0 -340 116t-111 381v503q0 217 108.5 335.5t323.5 118.5q184 0 294 -88t110 -261q0 -73 -52.5 -157.5t-146.5 -116.5q78 -10 137 -66.5t87 -135t28 -165.5q0 -216 -120 -340t-318 -124zM580 112q154 0 220.5 85.5t66.5 246.5q0 146 -76.5 220t-191.5 74 +q-131 0 -200 -56v130q77 47 244 53q57 1 97.5 37.5t57 83.5t16.5 96q0 215 -242 215q-155 0 -218 -75t-63 -235v-509q0 -108 16.5 -179.5t53.5 -112.5t89 -57.5t130 -16.5z" /> + <glyph glyph-name="uni0433" unicode="г" horiz-adv-x="868" +d="M423 -20q-95 0 -171 28t-125.5 91.5t-49.5 154.5q0 77 29.5 133.5t76.5 89.5t104 57t114.5 43t104.5 40t76.5 55t29.5 81q0 126 -163 126q-148 0 -215 -128l-117 67q48 87 132 141.5t200 54.5q129 0 220.5 -71.5t91.5 -192.5q0 -67 -23 -118.5t-60.5 -81.5t-85.5 -54.5 +t-98.5 -39t-98.5 -33t-85.5 -38t-60.5 -53.5t-23 -80q0 -140 195 -140q85 0 153 52.5t94 129.5l124 -68q-33 -104 -134 -175t-235 -71z" /> + <glyph glyph-name="uni0434" unicode="д" horiz-adv-x="1117" +d="M947 0q0 -202 -109.5 -317.5t-311.5 -115.5q-130 0 -231 50t-163 147l116 86q95 -154 277 -154q132 0 202.5 82.5t70.5 221.5v140q-48 -69 -126.5 -104.5t-173.5 -35.5q-133 0 -227.5 69t-139.5 181.5t-45 257.5q0 223 107 367.5t298 144.5q99 0 178 -41t129 -116v136 +h151zM526 132q74 0 130 30.5t89 83.5t49.5 119.5t16.5 144.5q0 77 -16.5 143.5t-49.5 119.5t-89 83.5t-130 30.5q-73 0 -129.5 -30.5t-90.5 -83t-51 -119.5t-17 -144q0 -105 29 -188t95.5 -136.5t163.5 -53.5z" /> + <glyph glyph-name="uni0435" unicode="е" horiz-adv-x="1038" +d="M541 -14q-111 0 -198 41t-141.5 111.5t-82.5 161t-28 194.5q0 81 17 156.5t52.5 142t86 115t122 77t156.5 28.5q94 0 168.5 -29t121.5 -76t78 -111.5t43.5 -131t12.5 -139.5q0 -32 -5 -77h-696q-1 -141 75.5 -236.5t216.5 -95.5q91 0 158 23.5t123 83.5l102 -82 +q-81 -82 -171.5 -119t-210.5 -37zM248 571h558q-2 63 -17.5 117.5t-47 101t-87 73.5t-129.5 27q-88 0 -150.5 -45t-92.5 -115t-34 -159z" /> + <glyph glyph-name="uni0436" unicode="ж" horiz-adv-x="1432" +d="M46 0l163 435q25 64 65.5 112.5t89.5 48.5l-255 403h183l220 -371h129v785h151v-785h128l222 371h182l-255 -403q50 0 89.5 -48.5t63.5 -112.5l163 -435h-172l-123 359q-25 75 -62.5 109t-99.5 34h-136v-502h-151v502h-138q-61 0 -98 -34t-62 -109l-123 -359h-174z" /> + <glyph glyph-name="uni0437" unicode="з" horiz-adv-x="924" +d="M403 -457q-132 0 -219.5 45.5t-172.5 140.5l113 89q87 -143 266 -143q144 0 217 94.5t73 252.5q0 146 -74 220t-187 74h-202v132h246q75 15 122 78.5t47 133.5q0 121 -60.5 174.5t-184.5 53.5q-81 0 -144.5 -42.5t-102.5 -114.5l-117 63q53 104 145.5 161t218.5 57 +q183 0 289 -87t106 -262q0 -46 -17 -97t-62.5 -102.5t-112.5 -73.5q80 -10 137.5 -67.5t83.5 -135t26 -165.5q0 -217 -119.5 -348t-314.5 -131z" /> + <glyph glyph-name="uni0438" unicode="и" horiz-adv-x="1117" +d="M486 -22q-119 0 -197.5 59.5t-112 155.5t-33.5 226v580h149v-590q0 -59 9.5 -109t31 -96.5t65 -73t104.5 -26.5q122 0 210 98.5t88 243.5v553h148v-999h-148v169q-34 -74 -119.5 -132.5t-194.5 -58.5z" /> + <glyph glyph-name="uni0439" unicode="й" horiz-adv-x="1142" +d="M559 1143q-131 0 -217 71.5t-86 198.5h123q0 -71 52.5 -118t127.5 -47q74 0 126.5 47t52.5 118h123q0 -125 -85.5 -197.5t-216.5 -72.5zM513 -23q-91 0 -159.5 34.5t-108 95t-58.5 135.5t-19 163v594h150v-596q0 -58 9 -106.5t31 -93.5t64.5 -71t102.5 -26 +q122 0 211.5 98t89.5 223v572h148v-999h-148v168q-35 -71 -121 -131t-192 -60z" /> + <glyph glyph-name="uni043A" unicode="к" horiz-adv-x="963" +d="M168 0v1413h151v-785h127l222 371h183l-255 -403q49 0 89 -48t66 -113l163 -435h-174l-123 359q-25 75 -62.5 109t-99.5 34h-136v-502h-151z" /> + <glyph glyph-name="uni043B" unicode="л" horiz-adv-x="945" +d="M34 0l372 999h133l372 -999h-163l-276 805l-277 -805h-161z" /> + <glyph glyph-name="uni043C" unicode="м" horiz-adv-x="1393" +d="M168 0v999h209l321 -815l318 814h209v-998h-148v809l-322 -809h-116l-323 807v-807h-148z" /> + <glyph glyph-name="uni043D" unicode="н" horiz-adv-x="1142" +d="M168 0v999h151v-390h506v390h149v-999h-149v491h-506v-491h-151z" /> + <glyph glyph-name="uni043E" unicode="о" +d="M557 -20q-137 0 -246 71t-167 190t-58 261t58 259.5t166.5 188t246.5 70.5q137 0 247 -70t169.5 -188.5t59.5 -259.5q0 -142 -59.5 -261t-169.5 -190t-247 -71zM558 104q81 0 144.5 34t102 91t58 126.5t19.5 146.5t-19.5 146t-57.5 125.5t-101.5 89.5t-143.5 33 +t-143.5 -33t-102 -89t-58.5 -125.5t-20 -146.5q0 -78 20 -148t58 -126.5t101 -90t143 -33.5z" /> + <glyph glyph-name="uni043F" unicode="п" horiz-adv-x="1120" +d="M168 0v999h150v-159q48 80 132.5 128t179.5 48q91 0 159 -32.5t107.5 -90t59 -128.5t19.5 -155v-610h-149v591q0 56 -10 103.5t-32.5 89.5t-65.5 66t-103 24q-122 0 -209.5 -92t-87.5 -216v-566h-150z" /> + <glyph glyph-name="uni0440" unicode="р" horiz-adv-x="1118" +d="M168 -438v1437h150v-138q106 159 311 159q125 0 218 -70t139 -187t46 -263q0 -147 -46 -263.5t-139 -186.5t-218 -70q-204 0 -311 158v-576h-150zM591 111q73 0 129.5 31.5t90.5 86t51 122.5t17 147q0 107 -29 193t-96 141.5t-163 55.5q-73 0 -129 -31.5t-89 -86.5 +t-49.5 -123.5t-16.5 -148.5q0 -79 16.5 -147t49.5 -122.5t89 -86t129 -31.5z" /> + <glyph glyph-name="uni0441" unicode="с" horiz-adv-x="974" +d="M526 -20q-105 0 -189 42.5t-136.5 115t-80.5 165t-28 195.5q0 102 27.5 195t80 166.5t136.5 117t188 43.5q134 0 235 -70.5t154 -195.5l-141 -60q-22 91 -90 145.5t-158 54.5q-74 0 -130.5 -36t-87.5 -95.5t-46 -126t-15 -138.5q0 -73 15 -139t46 -124.5t87 -93.5 +t131 -35q91 0 158 53t90 142l130 -56q-45 -125 -143 -195t-233 -70z" /> + <glyph glyph-name="uni0442" unicode="т" horiz-adv-x="1699" +d="M168 0v999h151v-171q33 86 106 138t165 52q108 0 188.5 -52t119.5 -151q46 99 124.5 150t183.5 51q91 0 160 -32.5t109 -90t59.5 -128.5t19.5 -155v-610h-151v591q0 57 -10 106t-32.5 94.5t-66 72t-104.5 26.5q-116 0 -185 -95.5t-69 -225.5v-569h-152v595 +q0 45 -5.5 84.5t-20 79.5t-37.5 68t-60.5 45.5t-86.5 17.5q-117 0 -186 -95t-69 -226v-569h-151z" /> + <glyph glyph-name="uni0443" unicode="у" horiz-adv-x="975" +d="M251 -430l167 437l-383 992h165l289 -817l286 817h165l-535 -1429h-154z" /> + <glyph glyph-name="uni0444" unicode="ф" horiz-adv-x="1397" +d="M623 -430v415q-32 -5 -64 -5q-137 0 -246 69.5t-168 187t-59 259.5q0 141 59 259t168 187.5t246 69.5q45 -2 64 -6v407h151v-407q28 6 63 6q137 0 246.5 -69.5t169 -187.5t59.5 -259q0 -142 -59.5 -259.5t-169 -187t-246.5 -69.5q-31 0 -63 5v-415h-151zM559 112 +q45 0 64 4v758q-32 5 -64 5q-65 0 -117 -20.5t-87 -56t-58 -85t-33.5 -104.5t-10.5 -117t10.5 -117.5t33.5 -105t58 -85t87 -56t117 -20.5zM837 112q80 0 141 31t96.5 85.5t52.5 121.5t17 146q0 78 -17 145t-52.5 121.5t-96.5 85.5t-141 31q-31 0 -63 -5v-758q19 -4 63 -4z +" /> + <glyph glyph-name="uni0445" unicode="х" horiz-adv-x="922" +d="M46 0l336 504l-336 495h183l233 -372l234 372h180l-333 -495l333 -504h-180l-234 378l-233 -378h-183z" /> + <glyph glyph-name="uni0446" unicode="ц" horiz-adv-x="1147" +d="M949 -307v284q-57 0 -101.5 54.5t-45.5 136.5q-36 -72 -121.5 -131.5t-191.5 -59.5q-91 0 -159.5 34.5t-108 95t-59 135.5t-19.5 163v594h151v-596q0 -58 9 -106.5t31 -93.5t64.5 -71t102.5 -26q122 0 211.5 98t89.5 223v572h151v-786q0 -74 41.5 -112.5t103.5 -38.5 +l-34 -369h-115z" /> + <glyph glyph-name="uni0447" unicode="ч" horiz-adv-x="1077" +d="M757 0v433q-35 -71 -121 -130.5t-192 -59.5q-91 0 -159.5 34.5t-108 95t-59 135.5t-19.5 163v328h151v-331q0 -57 9 -105.5t31 -93.5t64.5 -71t102.5 -26q122 0 211.5 97.5t89.5 223.5v306h151v-999h-151z" /> + <glyph glyph-name="uni0448" unicode="ш" horiz-adv-x="1722" +d="M1133 -18q-109 0 -189.5 51.5t-118.5 150.5q-97 -200 -309 -200q-91 0 -160 32.5t-109 90t-59.5 129t-19.5 155.5v608h151v-590q0 -45 5.5 -85t20.5 -80.5t38 -69.5t60.5 -47t86.5 -18q117 0 187 95.5t70 226.5v568h151v-594q0 -58 9.5 -106.5t31.5 -93.5t65 -70.5 +t103 -25.5q117 0 186.5 95.5t69.5 226.5v568h151v-999h-151v172q-34 -85 -106.5 -137.5t-163.5 -52.5z" /> + <glyph glyph-name="uni0449" unicode="щ" horiz-adv-x="1724" +d="M1525 -307v284q-56 0 -100.5 57t-45.5 138q-35 -85 -107.5 -137.5t-163.5 -52.5q-108 0 -188.5 51.5t-119.5 150.5q-95 -200 -308 -200q-91 0 -160 32.5t-109 90t-59.5 129t-19.5 155.5v608h151v-590q0 -45 5.5 -85t20.5 -80.5t38 -69.5t60.5 -47t86.5 -18 +q117 0 187 95.5t70 226.5v568h151v-594q0 -58 9.5 -106.5t31.5 -93.5t65 -70.5t103 -25.5q117 0 186.5 95.5t69.5 226.5v568h151v-786q0 -74 41.5 -112.5t103.5 -38.5l-35 -369h-115z" /> + <glyph glyph-name="uni044A" unicode="ъ" horiz-adv-x="1160" +d="M632 -20q-174 0 -288.5 102.5t-114.5 293.5v500h-200v123h349v-330q38 57 119.5 98.5t177.5 41.5q178 0 288.5 -106t110.5 -308q0 -136 -60 -231.5t-158 -139.5t-224 -44zM650 112q119 0 188 79t69 204q0 121 -72.5 201.5t-192.5 80.5q-114 0 -189 -70t-75 -178v-67 +q0 -109 74 -179.5t198 -70.5z" /> + <glyph glyph-name="uni044B" unicode="ы" horiz-adv-x="1415" +d="M595 -20q-84 0 -157 25t-130.5 72.5t-90.5 124.5t-33 174v623h148v-330q39 60 107 100t161 40q86 0 162.5 -26t136.5 -75.5t95 -130t35 -182.5q0 -135 -62 -231t-158.5 -140t-213.5 -44zM1182 0v999h147v-999h-147zM595 112q120 0 193 79.5t73 203.5q0 121 -73 201.5 +t-193 80.5q-111 0 -182.5 -69.5t-80.5 -178.5v-67q9 -111 80.5 -180.5t182.5 -69.5z" /> + <glyph glyph-name="uni044C" unicode="ь" horiz-adv-x="1107" +d="M577 -20q-84 0 -157 25t-130.5 72.5t-91 124.5t-33.5 174v623h149v-330q40 60 107 100t161 40q86 0 162 -26t136 -75.5t95 -130t35 -182.5t-35.5 -183t-96 -130.5t-137.5 -75.5t-164 -26zM577 112q120 0 193 79.5t73 203.5q0 121 -73 201.5t-193 80.5q-111 0 -183 -69.5 +t-80 -178.5v-67q8 -111 79.5 -180.5t183.5 -69.5z" /> + <glyph glyph-name="uni044D" unicode="э" horiz-adv-x="968" +d="M448 -20q-136 0 -234 69t-142 196l130 56q23 -87 90.5 -140.5t157.5 -53.5q66 0 117.5 27.5t83.5 75t51 103.5t25 120h-402v111h403q-5 66 -22.5 124.5t-49.5 109.5t-85 80.5t-121 29.5q-90 0 -157.5 -52.5t-90.5 -141.5l-141 60q53 124 154 193t235 69q106 0 190 -42.5 +t136 -115t79 -164.5t27 -196t-27.5 -196.5t-80 -165t-136.5 -114.5t-190 -42z" /> + <glyph glyph-name="uni044E" unicode="ю" horiz-adv-x="1444" +d="M885 -20q-136 0 -244.5 68.5t-168 185t-60.5 257.5h-93v-491h-151v1413h151v-804h102q35 176 161 289.5t303 113.5q137 0 246 -69.5t168 -187.5t59 -259q0 -142 -59 -259.5t-168 -187t-246 -69.5zM885 112q80 0 141 31t96.5 85.5t52.5 121.5t17 146q0 78 -17 145 +t-52.5 121.5t-96.5 85.5t-141 31t-141 -31t-96.5 -85.5t-52.5 -121.5t-17 -145q0 -79 17 -146t52.5 -121.5t96.5 -85.5t141 -31z" /> + <glyph glyph-name="uni044F" unicode="я" horiz-adv-x="983" +d="M76 0l131 342q69 161 153 161q-115 21 -176.5 77.5t-61.5 173.5q0 47 17 88.5t53 78t101 57.5t152 21h370v-999h-150v457h-142q-61 0 -98.5 -34t-63.5 -109l-112 -314h-173zM494 585h171v294h-225q-73 0 -111.5 -36.5t-38.5 -97.5q0 -77 47 -118.5t157 -41.5z" /> + <glyph glyph-name="uni0450" unicode="ѐ" horiz-adv-x="1038" +d="M440 1122l-258 291h192l218 -291h-152zM541 -14q-111 0 -198 41t-141.5 111.5t-82.5 161t-28 194.5q0 81 17 156.5t52.5 142t86 115t122 77t156.5 28.5q94 0 168.5 -29t121.5 -76t78 -111.5t43.5 -131t12.5 -139.5q0 -32 -5 -77h-696q-1 -141 75.5 -236.5t216.5 -95.5 +q91 0 158 23.5t123 83.5l102 -82q-81 -82 -171.5 -119t-210.5 -37zM248 571h558q-2 63 -17.5 117.5t-47 101t-87 73.5t-129.5 27q-88 0 -150.5 -45t-92.5 -115t-34 -159z" /> + <glyph glyph-name="uni0451" unicode="ё" horiz-adv-x="1038" +d="M257 1221v192h169v-192h-169zM594 1221v192h168v-192h-168zM541 -14q-111 0 -198 41t-141.5 111.5t-82.5 161t-28 194.5q0 81 17 156.5t52.5 142t86 115t122 77t156.5 28.5q94 0 168.5 -29t121.5 -76t78 -111.5t43.5 -131t12.5 -139.5q0 -32 -5 -77h-696 +q-1 -141 75.5 -236.5t216.5 -95.5q91 0 158 23.5t123 83.5l102 -82q-81 -82 -171.5 -119t-210.5 -37zM248 571h558q-2 63 -17.5 117.5t-47 101t-87 73.5t-129.5 27q-88 0 -150.5 -45t-92.5 -115t-34 -159z" /> + <glyph glyph-name="uni0452" unicode="ђ" horiz-adv-x="1123" +d="M612 -456q-99 0 -176 40t-159 121l95 97q59 -63 110 -95t116 -32q58 0 100 18t66.5 47.5t39 77.5t19 96.5t4.5 115.5v560q0 284 -211 284q-124 0 -210.5 -96.5t-86.5 -236.5v-541h-149v1146h-183v117h183v150h149v-150h303v-117h-303v-309q48 81 134.5 129.5t181.5 48.5 +q89 0 157 -32.5t107.5 -89t59 -127t19.5 -152.5v-577q0 -493 -366 -493z" /> + <glyph glyph-name="uni0453" unicode="ѓ" horiz-adv-x="763" +d="M326 1124l212 289h172l-266 -289h-118zM165 0v999h571v-118h-421v-881h-150z" /> + <glyph glyph-name="uni0454" unicode="є" horiz-adv-x="968" +d="M520 -20q-106 0 -190 42t-136.5 114.5t-80 165t-27.5 196.5t27 196t79 164.5t136 115t190 42.5q134 0 234.5 -69t154.5 -193l-141 -60q-24 89 -91 141.5t-157 52.5q-68 0 -121 -29.5t-85 -80.5t-49.5 -109.5t-22.5 -124.5h403v-111h-403q6 -64 25 -120t51 -103.5t84 -75 +t118 -27.5q90 0 157 53.5t91 140.5l129 -56q-44 -127 -142 -196t-233 -69z" /> + <glyph glyph-name="uni0455" unicode="ѕ" horiz-adv-x="867" +d="M442 -20q-134 0 -235 71t-135 175l125 68q24 -77 92.5 -129.5t154.5 -52.5q85 0 142 40t57 126q0 41 -18.5 70.5t-49.5 47.5t-71.5 30.5t-85.5 23.5t-89.5 23t-85 32t-71.5 48t-49.5 73.5t-18.5 105.5q0 123 92.5 202.5t218.5 79.5q116 0 200.5 -54.5t132.5 -141.5 +l-117 -67q-69 128 -215 128q-75 0 -125 -37.5t-50 -106.5q0 -39 23.5 -65.5t62 -40.5t87.5 -27.5t100.5 -24.5t100.5 -33.5t87.5 -52.5t62 -83t23.5 -124q0 -91 -49 -161.5t-127 -106.5t-170 -36z" /> + <glyph glyph-name="uni0456" unicode="і" horiz-adv-x="494" +d="M159 1222v191h176v-191h-176zM170 0v999h150v-999h-150z" /> + <glyph glyph-name="uni0457" unicode="ї" horiz-adv-x="483" +d="M-5 1185v166h156v-166h-156zM327 1185v166h156v-166h-156zM159 0v999h163v-999h-163z" /> + <glyph glyph-name="uni0458" unicode="ј" horiz-adv-x="492" +d="M156 1224v197h176v-197h-176zM66 -438q-32 0 -70 8t-60 16l-22 7l32 112q60 -15 115 -15q59 0 84.5 38t25.5 97v1174h151v-1153q0 -130 -64 -207t-192 -77z" /> + <glyph glyph-name="uni0459" unicode="љ" horiz-adv-x="1620" +d="M208 -22q-53 0 -145 44l48 109q57 -32 88 -32q14 0 27 9.5t29.5 42.5t28 86.5t19.5 152t8 229.5v380h634v-334h186q92 0 158 -14t121.5 -50t84 -104.5t28.5 -170.5q0 -152 -109 -239t-282 -87h-337v881h-336v-263q0 -640 -251 -640zM945 122h186q224 0 224 204 +q0 121 -60 169t-164 48h-186v-421z" /> + <glyph glyph-name="uni045A" unicode="њ" horiz-adv-x="1651" +d="M168 0v999h150v-390h508v390h148v-390h188q74 0 128.5 -6.5t106.5 -25.5t84.5 -52t52.5 -88.5t20 -132.5q0 -150 -107 -227t-284 -77h-337v491h-508v-491h-150zM974 122h188q52 0 88 6.5t69 25t50 56t17 94.5q0 51 -12.5 86t-30 54t-50.5 29t-59.5 12t-71.5 2h-188v-365z +" /> + <glyph glyph-name="uni045B" unicode="ћ" horiz-adv-x="1124" +d="M643 1017q87 0 153 -32.5t105 -89t58.5 -127t19.5 -152.5v-616h-151v592q0 44 -5.5 82t-20 76.5t-37.5 65.5t-61 44t-88 17q-129 0 -213.5 -98.5t-84.5 -239.5v-539h-148v1128h-181v116h181v169h148v-169h305v-116h-305v-293q50 82 139 132t186 50z" /> + <glyph glyph-name="uni045C" unicode="ќ" horiz-adv-x="960" +d="M422 1124l212 289h174l-268 -289h-118zM168 0v999h151v-371h127l222 371h183l-255 -403q49 0 89 -48t66 -113l163 -435h-174l-123 359q-25 75 -62.5 109t-99.5 34h-136v-502h-151z" /> + <glyph glyph-name="uni045D" unicode="ѝ" horiz-adv-x="1142" +d="M510 1127l-242 286h172l212 -286h-142zM513 -23q-91 0 -159.5 34.5t-108 95t-58.5 135.5t-19 163v594h150v-596q0 -58 9 -106.5t31 -93.5t64.5 -71t102.5 -26q122 0 211.5 98t89.5 223v572h148v-999h-148v168q-35 -71 -121 -131t-192 -60z" /> + <glyph glyph-name="uni045E" unicode="ў" horiz-adv-x="975" +d="M482 1143q-131 0 -217 71.5t-86 198.5h123q0 -71 52.5 -118t127.5 -47q74 0 126.5 47t52.5 118h123q0 -125 -85.5 -197.5t-216.5 -72.5zM251 -430l167 437l-383 992h165l289 -817l286 817h165l-535 -1429h-154z" /> + <glyph glyph-name="uni045F" unicode="џ" horiz-adv-x="1142" +d="M496 -307v307h-328v999h150v-879h508v879h148v-999h-330v-307h-148z" /> + <glyph glyph-name="uni0462" unicode="Ѣ" horiz-adv-x="1328" +d="M390 0v1101h-322v135h322v177h159v-177h348v-135h-348v-325h239q208 0 329.5 -101t121.5 -284t-122 -287t-329 -104h-398zM549 141h239q141 0 218.5 65.5t77.5 184.5t-77 181.5t-219 62.5h-239v-494z" /> + <glyph glyph-name="uni0463" unicode="ѣ" horiz-adv-x="995" +d="M170 0v1146h-197v117h197v150h148v-150h227v-117h-227v-481h187q92 0 158.5 -14t122.5 -50t84.5 -104.5t28.5 -170.5q0 -152 -109.5 -239t-284.5 -87h-335zM318 122h187q225 0 225 204q0 63 -17 107t-49.5 67.5t-70.5 33t-88 9.5h-187v-421z" /> + <glyph glyph-name="uni0464" unicode="Ѥ" horiz-adv-x="1815" +d="M1154 -20q-149 0 -267.5 51t-195.5 141.5t-120.5 208.5t-51.5 258h-150v-639h-157v1413h157v-639h150q7 111 35 209.5t80 182t124.5 143t173 93.5t220.5 34q198 0 345.5 -96t226.5 -280l-145 -60q-43 149 -157 219t-272 70q-114 0 -203.5 -40.5t-145.5 -112.5t-87 -163 +t-37 -199h630v-135h-629q7 -112 38 -203.5t87.5 -161.5t146 -109t204.5 -39q315 0 425 292l147 -60q-77 -184 -225.5 -281t-346.5 -97z" /> + <glyph glyph-name="uni0465" unicode="ѥ" horiz-adv-x="1339" +d="M891 -20q-104 0 -187 40.5t-135.5 110t-81 159.5t-30.5 193h-139v-483h-150v999h150v-397h147q17 117 67 208t142.5 148.5t214.5 57.5q134 0 235 -69t155 -193l-142 -60q-25 89 -91.5 141.5t-156.5 52.5q-67 0 -122 -31.5t-87 -78.5t-49.5 -93.5t-18.5 -82.5h402v-112 +h-402q2 -172 73 -277.5t204 -105.5q89 0 156 53.5t92 140.5l128 -56q-43 -127 -140.5 -196t-233.5 -69z" /> + <glyph glyph-name="uni0466" unicode="Ѧ" horiz-adv-x="1304" +d="M63 0l529 1413h122l527 -1413h-169l-214 605h-128v-605h-155v605h-126l-214 -605h-172zM497 739h313l-156 442z" /> + <glyph glyph-name="uni0467" unicode="ѧ" horiz-adv-x="1008" +d="M63 0l381 999h122l379 -999h-165l-116 363h-92v-363h-136v363h-87l-137 -363h-149zM388 479h239l-121 334z" /> + <glyph glyph-name="uni0468" unicode="Ѩ" horiz-adv-x="1690" +d="M212 0v1413h157v-639h370l239 639h122l527 -1413h-170l-213 605h-128v-605h-155v605h-127l-213 -605h-172l239 639h-319v-639h-157zM883 739h313l-156 442z" /> + <glyph glyph-name="uni0469" unicode="ѩ" horiz-adv-x="1343" +d="M168 0v999h150v-487h273l186 487h124l379 -999h-167l-114 363h-92v-363h-137v363h-86l-137 -363h-151l150 393h-228v-393h-150zM723 479h239l-121 334z" /> + <glyph glyph-name="uni046A" unicode="Ѫ" horiz-adv-x="1560" +d="M64 0l235 583q75 185 315 185l-371 510v135h1061v-135l-373 -510q243 0 319 -185l238 -583h-185l-202 503q-7 19 -12.5 33t-19 36t-28.5 36.5t-40 25t-54 10.5h-95v-644h-157v644h-93q-106 0 -154 -141l-202 -503h-182zM773 808l346 470h-691z" /> + <glyph glyph-name="uni046B" unicode="ѫ" horiz-adv-x="1256" +d="M1030 435l163 -435h-174l-123 359q-24 73 -67.5 101.5t-126.5 28.5v-489h-148v489q-86 0 -127 -28t-67 -102l-123 -359h-174l163 435q62 161 225 161l-234 285v118h821v-118l-231 -285q161 0 223 -161zM626 599l226 282h-449z" /> + <glyph glyph-name="uni046C" unicode="Ѭ" horiz-adv-x="1917" +d="M212 0v1413h157v-645h621l-374 510v135h1062v-135l-373 -510q120 0 192 -45.5t110 -139.5l238 -583h-169l-201 503q-8 22 -13 33.5t-19.5 35.5t-29 37t-39 24t-53.5 11h-93v-644h-159v644h-92q-29 0 -54.5 -11.5t-39 -23t-29.5 -38.5t-19 -34t-15 -34l-200 -503h-164 +l231 572q24 51 32 64h-350v-636h-157zM1147 808l345 470h-690z" /> + <glyph glyph-name="uni046D" unicode="ѭ" horiz-adv-x="1575" +d="M1349 435l163 -435h-173l-122 359q-31 89 -70.5 115.5t-127.5 26.5v-501h-146v501q-88 0 -127 -28.5t-67 -113.5l-123 -359h-174l158 419q11 39 39 76h-261v-495h-150v999h150v-384h435l-216 266v118h820v-118l-220 -269q48 0 85.5 -16.5t62.5 -47.5t37.5 -54.5 +t26.5 -58.5zM945 599l226 282h-450z" /> + <glyph glyph-name="uni0472" unicode="Ѳ" horiz-adv-x="1515" +d="M756 -20q-127 0 -232 38t-178.5 104.5t-124 158.5t-74.5 199t-24 227t24 227t74.5 199t124 158.5t178.5 104.5t232 38q128 0 233.5 -38t179 -104.5t124.5 -158.5t75 -199t24 -227t-24 -227t-75 -199t-124.5 -158.5t-179 -104.5t-233.5 -38zM281 779h951q-8 106 -40 195.5 +t-88.5 161t-145.5 111.5t-202 40t-202 -40t-145.5 -111t-88.5 -161t-39 -196zM756 126q118 0 209.5 43.5t147.5 119.5t86.5 171t34.5 207h-955q4 -112 34 -207t86.5 -171t147.5 -119.5t209 -43.5z" /> + <glyph glyph-name="uni0473" unicode="ѳ" +d="M559 -20q-137 0 -246 69.5t-168 187t-59 259.5q0 141 59 259t168 187.5t246 69.5q103 0 192 -41t150.5 -110.5t96.5 -164t35 -200.5q0 -217 -133.5 -366.5t-340.5 -149.5zM255 570h606q-15 138 -89.5 223.5t-212.5 85.5q-71 0 -126.5 -24t-91.5 -67t-57.5 -97.5 +t-28.5 -120.5zM559 112q75 0 133 27.5t93 76t54 109t23 133.5h-609q4 -73 23 -133.5t55 -109t94 -76t134 -27.5z" /> + <glyph glyph-name="uni0474" unicode="Ѵ" horiz-adv-x="1288" +d="M510 0l-478 1413h166l381 -1203l291 789q70 191 164.5 288.5t226.5 125.5v-151q-31 -15 -59 -33.5t-48 -35.5t-39.5 -40.5t-30 -38t-24 -40t-18 -35t-14.5 -32.5t-11 -25l-370 -982h-137z" /> + <glyph glyph-name="uni0475" unicode="ѵ" horiz-adv-x="967" +d="M372 0l-336 999h163l240 -803l143 399q75 207 166.5 304.5t182.5 99.5v-153q-22 -7 -32 -11t-32.5 -20.5t-39.5 -39.5t-41 -68t-48 -107l-233 -600h-133z" /> + <glyph glyph-name="uni0478" unicode="Ѹ" horiz-adv-x="2490" +d="M756 -20q-126 0 -230.5 38t-178.5 105t-125 159t-75 199t-24 226t24 226t75 199t125 159t178.5 105t230.5 38q157 0 280.5 -58t200 -159t116 -231t39.5 -279q0 -150 -39.5 -279.5t-116 -230.5t-200 -159t-280.5 -58zM756 126q100 0 182 31.5t137 85.5t92 128.5t54 158.5 +t17 177t-17 176.5t-54 158t-92 128.5t-137 85.5t-182 31.5q-99 0 -179.5 -31.5t-135.5 -85.5t-92 -128.5t-54 -158t-17 -176.5t17 -177t54 -158.5t92 -128.5t135.5 -85.5t179.5 -31.5zM1763 -430l171 435l-384 994h165l293 -817l284 817h163l-535 -1429h-157z" /> + <glyph glyph-name="uni0479" unicode="ѹ" horiz-adv-x="2051" +d="M557 -20q-137 0 -246 71t-167 190t-58 261t58 259.5t166.5 188t246.5 70.5q137 0 247 -70t169.5 -188.5t59.5 -259.5q0 -142 -59.5 -261t-169.5 -190t-247 -71zM1324 -430l171 435l-384 994h165l293 -817l284 817h163l-535 -1429h-157zM558 104q81 0 144.5 34t102 91 +t58 126.5t19.5 146.5t-19.5 146t-57.5 125.5t-101.5 89.5t-143.5 33t-143.5 -33t-102 -89t-58.5 -125.5t-20 -146.5q0 -78 20 -148t58 -126.5t101 -90t143 -33.5z" /> + <glyph glyph-name="uni0483" unicode="҃" horiz-adv-x="0" +d="M-932 1547v261h675v137h130v-245h-682v-153h-123z" /> + <glyph glyph-name="uni0490" unicode="Ґ" horiz-adv-x="1068" +d="M212 0v1413h641v307h155v-442h-639v-1278h-157z" /> + <glyph glyph-name="uni0491" unicode="ґ" horiz-adv-x="766" +d="M165 0v999h424v308h147v-426h-421v-881h-150z" /> + <glyph glyph-name="uni0492" unicode="Ғ" horiz-adv-x="1153" +d="M1093 1278h-640v-456h261v-131h-261v-691h-157v691h-307v131h307v591h797v-135z" /> + <glyph glyph-name="uni0493" unicode="ғ" horiz-adv-x="766" +d="M168 0v999h571v-118h-421v-881h-150z" /> + <glyph glyph-name="uni0496" unicode="Җ" horiz-adv-x="1954" +d="M1819 168h136v-406h-150v238h-113l-200 563q-20 56 -71 99t-121 43h-244v-705h-158v705h-245q-71 0 -120 -40.5t-70 -101.5l-202 -563h-189l243 643q21 57 89 115t155 58l-410 597h199l383 -574h167v574h158v-574h167l381 574h201l-410 -597q86 0 154.5 -58t89.5 -115z +" /> + <glyph glyph-name="uni0497" unicode="җ" horiz-adv-x="1433" +d="M1324 168h138v-406h-150v238h-99l-123 359q-25 75 -62.5 109t-99.5 34h-136v-502h-151v502h-136q-62 0 -99.5 -34t-62.5 -109l-123 -359h-174l163 435q25 64 65.5 112.5t89.5 48.5l-255 403h183l222 -371h127v371h151v-371h128l222 371h182l-255 -403q50 0 90 -48.5 +t65 -112.5z" /> + <glyph glyph-name="uni049A" unicode="Қ" horiz-adv-x="1266" +d="M1132 168h136v-406h-150v238h-112l-202 563q-15 47 -68.5 94.5t-121.5 47.5h-245v-705h-157v1413h157v-574h168l381 574h201l-411 -597q86 0 154.5 -58t90.5 -115z" /> + <glyph glyph-name="uni049B" unicode="қ" horiz-adv-x="963" +d="M851 168h138v-406h-150v238h-99l-123 359q-25 75 -62.5 109t-99.5 34h-136v-502h-151v1413h151v-785h127l222 371h183l-255 -403q49 0 89 -48t66 -113z" /> + <glyph glyph-name="uni04A2" unicode="Ң" horiz-adv-x="1455" +d="M1243 168h136v-406h-150v238h-145v641h-713v-641h-159v1413h159v-639h713v639h159v-1245z" /> + <glyph glyph-name="uni04A3" unicode="ң" horiz-adv-x="1142" +d="M974 168h145v-406h-150v238h-144v491h-506v-491h-151v999h151v-390h506v390h149v-831z" /> + <glyph glyph-name="uni04AE" unicode="Ү" horiz-adv-x="1316" +d="M581 0v553l-529 860h186l419 -699l422 699h185l-527 -860v-553h-156z" /> + <glyph glyph-name="uni04AF" unicode="ү" horiz-adv-x="956" +d="M403 0v443l-351 556h181l245 -399l246 399h180l-349 -556v-443h-152z" /> + <glyph glyph-name="uni04B0" unicode="Ұ" horiz-adv-x="1319" +d="M737 553v-100h181v-131h-181v-322h-156v322h-388v131h388v100l-529 860h186l419 -699l422 699h185z" /> + <glyph glyph-name="uni04B1" unicode="ұ" horiz-adv-x="988" +d="M555 443v-94h225v-131h-225v-218h-152v218h-348v131h348v94l-351 556h181l245 -399l246 399h180z" /> + <glyph glyph-name="uni04B2" unicode="Ҳ" horiz-adv-x="1260" +d="M1078 168h137v-406h-150v238h-64l-374 578l-366 -578h-189l467 707l-465 706h189l366 -587l370 587h187l-463 -706z" /> + <glyph glyph-name="uni04B3" unicode="ҳ" horiz-adv-x="922" +d="M765 168h143v-406h-150v238h-62l-234 378l-233 -378h-183l336 504l-336 495h183l233 -372l234 372h180l-333 -495z" /> + <glyph glyph-name="uni04B6" unicode="Ҷ" horiz-adv-x="1325" +d="M1114 168h137v-406h-150v238h-146v537q-123 -126 -334 -126q-128 0 -224.5 45t-154.5 127t-86.5 190.5t-28.5 243.5v396h159v-402q0 -103 16.5 -181t53.5 -140.5t104 -95t161 -32.5q104 0 193 41t141 106v704h159v-1245z" /> + <glyph glyph-name="uni04B7" unicode="ҷ" horiz-adv-x="1077" +d="M908 168h137v-406h-150v238h-138v433q-35 -71 -121 -130.5t-192 -59.5q-91 0 -159.5 34.5t-108 95t-59 135.5t-19.5 163v328h151v-331q0 -57 9 -105.5t31 -93.5t64.5 -71t102.5 -26q122 0 211.5 97.5t89.5 223.5v306h151v-831z" /> + <glyph glyph-name="uni04BA" unicode="Һ" horiz-adv-x="1325" +d="M370 1413v-537q123 126 334 126q128 0 224.5 -45t154.5 -127t86.5 -190.5t28.5 -243.5v-396h-159v402q0 103 -16.5 181t-53.5 140.5t-104 95t-161 32.5q-104 0 -193 -41t-141 -106v-704h-159v1413h159z" /> + <glyph glyph-name="uni04BB" unicode="һ" horiz-adv-x="1124" +d="M170 0v1413h148v-578q50 82 139 132t186 50q87 0 153 -32.5t105 -89t58.5 -127t19.5 -152.5v-616h-151v592q0 44 -5.5 82t-20 76.5t-37.5 65.5t-61 44t-88 17q-129 0 -213.5 -98.5t-84.5 -239.5v-539h-148z" /> + <glyph glyph-name="uni04C0" unicode="Ӏ" horiz-adv-x="582" +d="M212 0v1413h159v-1413h-159z" /> + <glyph glyph-name="uni04CF" unicode="ӏ" horiz-adv-x="487" +d="M168 0v1413h151v-1413h-151z" /> + <glyph glyph-name="uni04D8" unicode="Ә" horiz-adv-x="1515" +d="M756 -20q-127 0 -232 38t-178.5 104.5t-124 158.5t-74.5 199t-24 227q0 12 1 36t1 36h1107q-8 106 -40 195.5t-88.5 161t-145.5 111.5t-202 40q-258 0 -387 -205l-133 78q80 129 210.5 201.5t309.5 72.5q128 0 233.5 -38t179 -104.5t124.5 -158.5t75 -199t24 -227 +t-24 -227t-75 -199t-124.5 -158.5t-179 -104.5t-233.5 -38zM756 126q118 0 209.5 43.5t147.5 119.5t86.5 171t34.5 207h-955q4 -112 34 -207t86.5 -171t147.5 -119.5t209 -43.5z" /> + <glyph glyph-name="uni04D9" unicode="ә" horiz-adv-x="1038" +d="M497 1013q111 0 198 -41t141.5 -111.5t82.5 -161t28 -194.5q0 -81 -17 -156.5t-52.5 -142t-86 -115t-122 -77t-156.5 -28.5q-94 0 -168.5 29t-121.5 76t-78 111.5t-43.5 131t-12.5 139.5q0 32 5 77h696q1 141 -75.5 236.5t-216.5 95.5q-91 0 -158 -23.5t-123 -83.5 +l-102 82q81 82 171.5 119t210.5 37zM790 428h-558q2 -63 17.5 -117.5t47 -101t87 -73.5t129.5 -27q88 0 150.5 45t92.5 115t34 159z" /> + <glyph glyph-name="uni04E2" unicode="Ӣ" horiz-adv-x="1418" +d="M442 1597v125h541v-125h-541zM1206 0h-158v1247l-604 -1247h-232v1413h157v-1245l608 1245h229v-1413z" /> + <glyph glyph-name="uni04E3" unicode="ӣ" horiz-adv-x="1117" +d="M290 1183v125h541v-125h-541zM486 -22q-119 0 -197.5 59.5t-112 155.5t-33.5 226v580h149v-590q0 -59 9.5 -109t31 -96.5t65 -73t104.5 -26.5q122 0 210 98.5t88 243.5v553h148v-999h-148v169q-34 -74 -119.5 -132.5t-194.5 -58.5z" /> + <glyph glyph-name="uni04E8" unicode="Ө" horiz-adv-x="1515" +d="M756 -20q-127 0 -232 38t-178.5 104.5t-124 158.5t-74.5 199t-24 227t24 227t74.5 199t124 158.5t178.5 104.5t232 38q128 0 233.5 -38t179 -104.5t124.5 -158.5t75 -199t24 -227t-24 -227t-75 -199t-124.5 -158.5t-179 -104.5t-233.5 -38zM281 779h951q-8 106 -40 195.5 +t-88.5 161t-145.5 111.5t-202 40t-202 -40t-145.5 -111t-88.5 -161t-39 -196zM756 126q118 0 209.5 43.5t147.5 119.5t86.5 171t34.5 207h-955q4 -112 34 -207t86.5 -171t147.5 -119.5t209 -43.5z" /> + <glyph glyph-name="uni04E9" unicode="ө" +d="M559 -20q-137 0 -246 69.5t-168 187t-59 259.5q0 141 59 259t168 187.5t246 69.5q103 0 192 -41t150.5 -110.5t96.5 -164t35 -200.5q0 -217 -133.5 -366.5t-340.5 -149.5zM255 570h606q-15 138 -89.5 223.5t-212.5 85.5q-71 0 -126.5 -24t-91.5 -67t-57.5 -97.5 +t-28.5 -120.5zM559 112q75 0 133 27.5t93 76t54 109t23 133.5h-609q4 -73 23 -133.5t55 -109t94 -76t134 -27.5z" /> + <glyph glyph-name="uni04EE" unicode="Ӯ" horiz-adv-x="1115" +d="M289 1597v125h541v-125h-541zM262 0l197 457l-396 956h173l306 -789l333 789h177l-621 -1413h-169z" /> + <glyph glyph-name="uni04EF" unicode="ӯ" horiz-adv-x="975" +d="M219 1183v125h541v-125h-541zM251 -430l167 437l-383 992h165l289 -817l286 817h165l-535 -1429h-154z" /> + <glyph glyph-name="Wgrave" unicode="Ẁ" horiz-adv-x="1973" +d="M918 1511l-258 291h192l218 -291h-152zM471 0l-397 1413h162l336 -1219l351 1137h128l352 -1137l334 1219h163l-398 -1413h-174l-338 1076l-345 -1076h-174z" /> + <glyph glyph-name="wgrave" unicode="ẁ" horiz-adv-x="1419" +d="M640 1122l-258 291h192l218 -291h-152zM329 -1l-279 1000h158l204 -802l230 802h137l229 -800l203 800h159l-280 -999h-145l-233 811l-238 -812h-145z" /> + <glyph glyph-name="Wacute" unicode="Ẃ" horiz-adv-x="1973" +d="M895 1513l217 289h193l-277 -289h-133zM471 0l-397 1413h162l336 -1219l351 1137h128l352 -1137l334 1219h163l-398 -1413h-174l-338 1076l-345 -1076h-174z" /> + <glyph glyph-name="wacute" unicode="ẃ" horiz-adv-x="1419" +d="M617 1124l217 289h193l-277 -289h-133zM329 -1l-279 1000h158l204 -802l230 802h137l229 -800l203 800h159l-280 -999h-145l-233 811l-238 -812h-145z" /> + <glyph glyph-name="Wdieresis" unicode="Ẅ" horiz-adv-x="1973" +d="M735 1610v192h169v-192h-169zM1072 1610v192h168v-192h-168zM471 0l-397 1413h162l336 -1219l351 1137h128l352 -1137l334 1219h163l-398 -1413h-174l-338 1076l-345 -1076h-174z" /> + <glyph glyph-name="wdieresis" unicode="ẅ" horiz-adv-x="1419" +d="M457 1221v192h169v-192h-169zM794 1221v192h168v-192h-168zM329 -1l-279 1000h158l204 -802l230 802h137l229 -800l203 800h159l-280 -999h-145l-233 811l-238 -812h-145z" /> + <glyph glyph-name="uni1EA4" unicode="Ấ" horiz-adv-x="1306" +d="M559 1952l217 289h193l-277 -289h-133zM325 1512l329 355l329 -355h-161l-168 186l-167 -186h-162zM63 0l531 1413h122l527 -1413h-170l-108 307h-621l-108 -307h-173zM397 452h514l-255 728z" /> + <glyph glyph-name="uni1EA5" unicode="ấ" horiz-adv-x="1025" +d="M407 1538l217 289h193l-277 -289h-133zM173 1098l329 355l329 -355h-161l-168 186l-167 -186h-162zM401 -20q-144 0 -234 80t-90 218q0 293 440 293h228q0 319 -245 319q-172 0 -277 -151l-109 85q142 196 377 196q187 0 289 -110.5t102 -296.5v-613h-127l-3 193 +q-52 -108 -145 -160.5t-206 -52.5zM418 106q97 0 174 55t115 134.5t38 162.5h-214q-152 0 -226 -43t-74 -141q0 -85 51.5 -126.5t135.5 -41.5z" /> + <glyph glyph-name="uni1EA6" unicode="Ầ" horiz-adv-x="1306" +d="M582 1950l-258 291h192l218 -291h-152zM325 1512l329 355l329 -355h-161l-168 186l-167 -186h-162zM63 0l531 1413h122l527 -1413h-170l-108 307h-621l-108 -307h-173zM397 452h514l-255 728z" /> + <glyph glyph-name="uni1EA7" unicode="ầ" horiz-adv-x="1025" +d="M430 1536l-258 291h192l218 -291h-152zM173 1098l329 355l329 -355h-161l-168 186l-167 -186h-162zM401 -20q-144 0 -234 80t-90 218q0 293 440 293h228q0 319 -245 319q-172 0 -277 -151l-109 85q142 196 377 196q187 0 289 -110.5t102 -296.5v-613h-127l-3 193 +q-52 -108 -145 -160.5t-206 -52.5zM418 106q97 0 174 55t115 134.5t38 162.5h-214q-152 0 -226 -43t-74 -141q0 -85 51.5 -126.5t135.5 -41.5z" /> + <glyph glyph-name="uni1EAA" unicode="Ẫ" horiz-adv-x="1306" +d="M775 1974q-38 0 -71 16t-55.5 39t-42.5 46.5t-42 39.5t-44 16q-69 0 -69 -137h-100q0 114 44 182t125 68q49 0 90 -25t63.5 -54.5t50 -54.5t53.5 -25q71 0 71 153h106q0 -128 -46.5 -196t-132.5 -68zM325 1512l329 355l329 -355h-161l-168 186l-167 -186h-162zM63 0 +l531 1413h122l527 -1413h-170l-108 307h-621l-108 -307h-173zM397 452h514l-255 728z" /> + <glyph glyph-name="uni1EAB" unicode="ẫ" horiz-adv-x="1025" +d="M623 1560q-38 0 -71 16t-55.5 39t-42.5 46.5t-42 39.5t-44 16q-69 0 -69 -137h-100q0 114 44 182t125 68q49 0 90 -25t63.5 -54.5t50 -54.5t53.5 -25q71 0 71 153h106q0 -128 -46.5 -196t-132.5 -68zM173 1098l329 355l329 -355h-161l-168 186l-167 -186h-162zM401 -20 +q-144 0 -234 80t-90 218q0 293 440 293h228q0 319 -245 319q-172 0 -277 -151l-109 85q142 196 377 196q187 0 289 -110.5t102 -296.5v-613h-127l-3 193q-52 -108 -145 -160.5t-206 -52.5zM418 106q97 0 174 55t115 134.5t38 162.5h-214q-152 0 -226 -43t-74 -141 +q0 -85 51.5 -126.5t135.5 -41.5z" /> + <glyph glyph-name="uni1EAE" unicode="Ắ" horiz-adv-x="1306" +d="M559 1952l217 289h193l-277 -289h-133zM654 1557q-138 0 -222.5 71t-84.5 199h136q0 -69 49.5 -112.5t121.5 -43.5t121 43t49 113h136q0 -129 -84.5 -199.5t-221.5 -70.5zM63 0l531 1413h122l527 -1413h-170l-108 307h-621l-108 -307h-173zM397 452h514l-255 728z" /> + <glyph glyph-name="uni1EAF" unicode="ắ" horiz-adv-x="1025" +d="M407 1538l217 289h193l-277 -289h-133zM502 1143q-138 0 -222.5 71t-84.5 199h136q0 -69 49.5 -112.5t121.5 -43.5t121 43t49 113h136q0 -129 -84.5 -199.5t-221.5 -70.5zM401 -20q-144 0 -234 80t-90 218q0 293 440 293h228q0 319 -245 319q-172 0 -277 -151l-109 85 +q142 196 377 196q187 0 289 -110.5t102 -296.5v-613h-127l-3 193q-52 -108 -145 -160.5t-206 -52.5zM418 106q97 0 174 55t115 134.5t38 162.5h-214q-152 0 -226 -43t-74 -141q0 -85 51.5 -126.5t135.5 -41.5z" /> + <glyph glyph-name="uni1EB0" unicode="Ằ" horiz-adv-x="1306" +d="M582 1950l-258 291h192l218 -291h-152zM654 1557q-138 0 -222.5 71t-84.5 199h136q0 -69 49.5 -112.5t121.5 -43.5t121 43t49 113h136q0 -129 -84.5 -199.5t-221.5 -70.5zM63 0l531 1413h122l527 -1413h-170l-108 307h-621l-108 -307h-173zM397 452h514l-255 728z" /> + <glyph glyph-name="uni1EB1" unicode="ằ" horiz-adv-x="1025" +d="M430 1536l-258 291h192l218 -291h-152zM502 1143q-138 0 -222.5 71t-84.5 199h136q0 -69 49.5 -112.5t121.5 -43.5t121 43t49 113h136q0 -129 -84.5 -199.5t-221.5 -70.5zM401 -20q-144 0 -234 80t-90 218q0 293 440 293h228q0 319 -245 319q-172 0 -277 -151l-109 85 +q142 196 377 196q187 0 289 -110.5t102 -296.5v-613h-127l-3 193q-52 -108 -145 -160.5t-206 -52.5zM418 106q97 0 174 55t115 134.5t38 162.5h-214q-152 0 -226 -43t-74 -141q0 -85 51.5 -126.5t135.5 -41.5z" /> + <glyph glyph-name="uni1EB4" unicode="Ẵ" horiz-adv-x="1306" +d="M775 1974q-38 0 -71 16t-55.5 39t-42.5 46.5t-42 39.5t-44 16q-69 0 -69 -137h-100q0 114 44 182t125 68q49 0 90 -25t63.5 -54.5t50 -54.5t53.5 -25q71 0 71 153h106q0 -128 -46.5 -196t-132.5 -68zM654 1557q-138 0 -222.5 71t-84.5 199h136q0 -69 49.5 -112.5 +t121.5 -43.5t121 43t49 113h136q0 -129 -84.5 -199.5t-221.5 -70.5zM63 0l531 1413h122l527 -1413h-170l-108 307h-621l-108 -307h-173zM397 452h514l-255 728z" /> + <glyph glyph-name="uni1EB5" unicode="ẵ" horiz-adv-x="1025" +d="M623 1560q-38 0 -71 16t-55.5 39t-42.5 46.5t-42 39.5t-44 16q-69 0 -69 -137h-100q0 114 44 182t125 68q49 0 90 -25t63.5 -54.5t50 -54.5t53.5 -25q71 0 71 153h106q0 -128 -46.5 -196t-132.5 -68zM502 1143q-138 0 -222.5 71t-84.5 199h136q0 -69 49.5 -112.5 +t121.5 -43.5t121 43t49 113h136q0 -129 -84.5 -199.5t-221.5 -70.5zM401 -20q-144 0 -234 80t-90 218q0 293 440 293h228q0 319 -245 319q-172 0 -277 -151l-109 85q142 196 377 196q187 0 289 -110.5t102 -296.5v-613h-127l-3 193q-52 -108 -145 -160.5t-206 -52.5z +M418 106q97 0 174 55t115 134.5t38 162.5h-214q-152 0 -226 -43t-74 -141q0 -85 51.5 -126.5t135.5 -41.5z" /> + <glyph glyph-name="uni1EBC" unicode="Ẽ" horiz-adv-x="1239" +d="M787 1560q-38 0 -71 16t-55.5 39t-42.5 46.5t-42 39.5t-44 16q-69 0 -69 -137h-100q0 114 44 182t125 68q49 0 90 -25t63.5 -54.5t50 -54.5t53.5 -25q71 0 71 153h106q0 -128 -46.5 -196t-132.5 -68zM212 0v1413h915v-137h-756v-502h657v-133h-657v-496h756v-145h-915z +" /> + <glyph glyph-name="uni1EBD" unicode="ẽ" horiz-adv-x="1038" +d="M633 1146q-38 0 -71 16t-55.5 39t-42.5 46.5t-42 39.5t-44 16q-69 0 -69 -137h-100q0 114 44 182t125 68q49 0 90 -25t63.5 -54.5t50 -54.5t53.5 -25q71 0 71 153h106q0 -128 -46.5 -196t-132.5 -68zM541 -14q-111 0 -198 41t-141.5 111.5t-82.5 161t-28 194.5 +q0 81 17 156.5t52.5 142t86 115t122 77t156.5 28.5q94 0 168.5 -29t121.5 -76t78 -111.5t43.5 -131t12.5 -139.5q0 -32 -5 -77h-696q-1 -141 75.5 -236.5t216.5 -95.5q91 0 158 23.5t123 83.5l102 -82q-81 -82 -171.5 -119t-210.5 -37zM248 571h558q-2 63 -17.5 117.5 +t-47 101t-87 73.5t-129.5 27q-88 0 -150.5 -45t-92.5 -115t-34 -159z" /> + <glyph glyph-name="uni1EBE" unicode="Ế" horiz-adv-x="1239" +d="M571 1952l217 289h193l-277 -289h-133zM337 1512l329 355l329 -355h-161l-168 186l-167 -186h-162zM212 0v1413h915v-137h-756v-502h657v-133h-657v-496h756v-145h-915z" /> + <glyph glyph-name="uni1EBF" unicode="ế" horiz-adv-x="1038" +d="M417 1538l217 289h193l-277 -289h-133zM183 1098l329 355l329 -355h-161l-168 186l-167 -186h-162zM541 -14q-111 0 -198 41t-141.5 111.5t-82.5 161t-28 194.5q0 81 17 156.5t52.5 142t86 115t122 77t156.5 28.5q94 0 168.5 -29t121.5 -76t78 -111.5t43.5 -131 +t12.5 -139.5q0 -32 -5 -77h-696q-1 -141 75.5 -236.5t216.5 -95.5q91 0 158 23.5t123 83.5l102 -82q-81 -82 -171.5 -119t-210.5 -37zM248 571h558q-2 63 -17.5 117.5t-47 101t-87 73.5t-129.5 27q-88 0 -150.5 -45t-92.5 -115t-34 -159z" /> + <glyph glyph-name="uni1EC0" unicode="Ề" horiz-adv-x="1239" +d="M594 1950l-258 291h192l218 -291h-152zM337 1512l329 355l329 -355h-161l-168 186l-167 -186h-162zM212 0v1413h915v-137h-756v-502h657v-133h-657v-496h756v-145h-915z" /> + <glyph glyph-name="uni1EC1" unicode="ề" horiz-adv-x="1038" +d="M440 1536l-258 291h192l218 -291h-152zM183 1098l329 355l329 -355h-161l-168 186l-167 -186h-162zM541 -14q-111 0 -198 41t-141.5 111.5t-82.5 161t-28 194.5q0 81 17 156.5t52.5 142t86 115t122 77t156.5 28.5q94 0 168.5 -29t121.5 -76t78 -111.5t43.5 -131 +t12.5 -139.5q0 -32 -5 -77h-696q-1 -141 75.5 -236.5t216.5 -95.5q91 0 158 23.5t123 83.5l102 -82q-81 -82 -171.5 -119t-210.5 -37zM248 571h558q-2 63 -17.5 117.5t-47 101t-87 73.5t-129.5 27q-88 0 -150.5 -45t-92.5 -115t-34 -159z" /> + <glyph glyph-name="uni1EC4" unicode="Ễ" horiz-adv-x="1239" +d="M787 1974q-38 0 -71 16t-55.5 39t-42.5 46.5t-42 39.5t-44 16q-69 0 -69 -137h-100q0 114 44 182t125 68q49 0 90 -25t63.5 -54.5t50 -54.5t53.5 -25q71 0 71 153h106q0 -128 -46.5 -196t-132.5 -68zM337 1512l329 355l329 -355h-161l-168 186l-167 -186h-162zM212 0 +v1413h915v-137h-756v-502h657v-133h-657v-496h756v-145h-915z" /> + <glyph glyph-name="uni1EC5" unicode="ễ" horiz-adv-x="1038" +d="M633 1560q-38 0 -71 16t-55.5 39t-42.5 46.5t-42 39.5t-44 16q-69 0 -69 -137h-100q0 114 44 182t125 68q49 0 90 -25t63.5 -54.5t50 -54.5t53.5 -25q71 0 71 153h106q0 -128 -46.5 -196t-132.5 -68zM183 1098l329 355l329 -355h-161l-168 186l-167 -186h-162zM541 -14 +q-111 0 -198 41t-141.5 111.5t-82.5 161t-28 194.5q0 81 17 156.5t52.5 142t86 115t122 77t156.5 28.5q94 0 168.5 -29t121.5 -76t78 -111.5t43.5 -131t12.5 -139.5q0 -32 -5 -77h-696q-1 -141 75.5 -236.5t216.5 -95.5q91 0 158 23.5t123 83.5l102 -82q-81 -82 -171.5 -119 +t-210.5 -37zM248 571h558q-2 63 -17.5 117.5t-47 101t-87 73.5t-129.5 27q-88 0 -150.5 -45t-92.5 -115t-34 -159z" /> + <glyph glyph-name="uni1ED0" unicode="Ố" horiz-adv-x="1515" +d="M661 1952l217 289h193l-277 -289h-133zM427 1512l329 355l329 -355h-161l-168 186l-167 -186h-162zM756 -20q-126 0 -230.5 38t-178.5 105t-125 159t-75 199t-24 226t24 226t75 199t125 159t178.5 105t230.5 38q157 0 280.5 -58t200 -159t116 -231t39.5 -279 +q0 -150 -39.5 -279.5t-116 -230.5t-200 -159t-280.5 -58zM756 126q100 0 182 31.5t137 85.5t92 128.5t54 158.5t17 177t-17 176.5t-54 158t-92 128.5t-137 85.5t-182 31.5q-99 0 -179.5 -31.5t-135.5 -85.5t-92 -128.5t-54 -158t-17 -176.5t17 -177t54 -158.5t92 -128.5 +t135.5 -85.5t179.5 -31.5z" /> + <glyph glyph-name="uni1ED1" unicode="ố" +d="M463 1538l217 289h193l-277 -289h-133zM229 1098l329 355l329 -355h-161l-168 186l-167 -186h-162zM557 -20q-137 0 -246 71t-167 190t-58 261t58 259.5t166.5 188t246.5 70.5q137 0 247 -70t169.5 -188.5t59.5 -259.5q0 -142 -59.5 -261t-169.5 -190t-247 -71zM558 104 +q81 0 144.5 34t102 91t58 126.5t19.5 146.5t-19.5 146t-57.5 125.5t-101.5 89.5t-143.5 33t-143.5 -33t-102 -89t-58.5 -125.5t-20 -146.5q0 -78 20 -148t58 -126.5t101 -90t143 -33.5z" /> + <glyph glyph-name="uni1ED2" unicode="Ồ" horiz-adv-x="1515" +d="M684 1950l-258 291h192l218 -291h-152zM427 1512l329 355l329 -355h-161l-168 186l-167 -186h-162zM756 -20q-126 0 -230.5 38t-178.5 105t-125 159t-75 199t-24 226t24 226t75 199t125 159t178.5 105t230.5 38q157 0 280.5 -58t200 -159t116 -231t39.5 -279 +q0 -150 -39.5 -279.5t-116 -230.5t-200 -159t-280.5 -58zM756 126q100 0 182 31.5t137 85.5t92 128.5t54 158.5t17 177t-17 176.5t-54 158t-92 128.5t-137 85.5t-182 31.5q-99 0 -179.5 -31.5t-135.5 -85.5t-92 -128.5t-54 -158t-17 -176.5t17 -177t54 -158.5t92 -128.5 +t135.5 -85.5t179.5 -31.5z" /> + <glyph glyph-name="uni1ED3" unicode="ồ" +d="M486 1536l-258 291h192l218 -291h-152zM229 1098l329 355l329 -355h-161l-168 186l-167 -186h-162zM557 -20q-137 0 -246 71t-167 190t-58 261t58 259.5t166.5 188t246.5 70.5q137 0 247 -70t169.5 -188.5t59.5 -259.5q0 -142 -59.5 -261t-169.5 -190t-247 -71zM558 104 +q81 0 144.5 34t102 91t58 126.5t19.5 146.5t-19.5 146t-57.5 125.5t-101.5 89.5t-143.5 33t-143.5 -33t-102 -89t-58.5 -125.5t-20 -146.5q0 -78 20 -148t58 -126.5t101 -90t143 -33.5z" /> + <glyph glyph-name="uni1ED6" unicode="Ỗ" horiz-adv-x="1515" +d="M877 1974q-38 0 -71 16t-55.5 39t-42.5 46.5t-42 39.5t-44 16q-69 0 -69 -137h-100q0 114 44 182t125 68q49 0 90 -25t63.5 -54.5t50 -54.5t53.5 -25q71 0 71 153h106q0 -128 -46.5 -196t-132.5 -68zM427 1512l329 355l329 -355h-161l-168 186l-167 -186h-162zM756 -20 +q-126 0 -230.5 38t-178.5 105t-125 159t-75 199t-24 226t24 226t75 199t125 159t178.5 105t230.5 38q157 0 280.5 -58t200 -159t116 -231t39.5 -279q0 -150 -39.5 -279.5t-116 -230.5t-200 -159t-280.5 -58zM756 126q100 0 182 31.5t137 85.5t92 128.5t54 158.5t17 177 +t-17 176.5t-54 158t-92 128.5t-137 85.5t-182 31.5q-99 0 -179.5 -31.5t-135.5 -85.5t-92 -128.5t-54 -158t-17 -176.5t17 -177t54 -158.5t92 -128.5t135.5 -85.5t179.5 -31.5z" /> + <glyph glyph-name="uni1ED7" unicode="ỗ" +d="M679 1560q-38 0 -71 16t-55.5 39t-42.5 46.5t-42 39.5t-44 16q-69 0 -69 -137h-100q0 114 44 182t125 68q49 0 90 -25t63.5 -54.5t50 -54.5t53.5 -25q71 0 71 153h106q0 -128 -46.5 -196t-132.5 -68zM229 1098l329 355l329 -355h-161l-168 186l-167 -186h-162zM557 -20 +q-137 0 -246 71t-167 190t-58 261t58 259.5t166.5 188t246.5 70.5q137 0 247 -70t169.5 -188.5t59.5 -259.5q0 -142 -59.5 -261t-169.5 -190t-247 -71zM558 104q81 0 144.5 34t102 91t58 126.5t19.5 146.5t-19.5 146t-57.5 125.5t-101.5 89.5t-143.5 33t-143.5 -33t-102 -89 +t-58.5 -125.5t-20 -146.5q0 -78 20 -148t58 -126.5t101 -90t143 -33.5z" /> + <glyph glyph-name="Ygrave" unicode="Ỳ" horiz-adv-x="1316" +d="M585 1536l-258 291h192l218 -291h-152zM581 0v553l-529 860h186l419 -699l422 699h185l-527 -860v-553h-156z" /> + <glyph glyph-name="ygrave" unicode="ỳ" horiz-adv-x="975" +d="M411 1122l-258 291h192l218 -291h-152zM248 -430l171 435l-384 994h165l293 -817l284 817h163l-535 -1429h-157z" /> + <glyph glyph-name="uni1EF8" unicode="Ỹ" horiz-adv-x="1316" +d="M778 1560q-38 0 -71 16t-55.5 39t-42.5 46.5t-42 39.5t-44 16q-69 0 -69 -137h-100q0 114 44 182t125 68q49 0 90 -25t63.5 -54.5t50 -54.5t53.5 -25q71 0 71 153h106q0 -128 -46.5 -196t-132.5 -68zM581 0v553l-529 860h186l419 -699l422 699h185l-527 -860v-553h-156z +" /> + <glyph glyph-name="uni1EF9" unicode="ỹ" horiz-adv-x="975" +d="M604 1146q-38 0 -71 16t-55.5 39t-42.5 46.5t-42 39.5t-44 16q-69 0 -69 -137h-100q0 114 44 182t125 68q49 0 90 -25t63.5 -54.5t50 -54.5t53.5 -25q71 0 71 153h106q0 -128 -46.5 -196t-132.5 -68zM248 -430l171 435l-384 994h165l293 -817l284 817h163l-535 -1429 +h-157z" /> + <glyph glyph-name="endash" unicode="–" horiz-adv-x="1019" +d="M161 578v114h698v-114h-698z" /> + <glyph glyph-name="emdash" unicode="—" horiz-adv-x="2048" +d="M0 578v114h2048v-114h-2048z" /> + <glyph glyph-name="uni2015" unicode="―" horiz-adv-x="1511" +d="M161 578v114h1189v-114h-1189z" /> + <glyph glyph-name="quoteleft" unicode="‘" horiz-adv-x="559" +d="M322 927l-221 486h196l120 -486h-95z" /> + <glyph glyph-name="quoteright" unicode="’" horiz-adv-x="559" +d="M142 927l121 486h195l-223 -486h-93z" /> + <glyph glyph-name="quotesinglbase" unicode="‚" horiz-adv-x="561" +d="M141 -225l122 489h196l-221 -489h-97z" /> + <glyph glyph-name="quotedblleft" unicode="“" horiz-adv-x="868" +d="M322 927l-221 486h196l120 -486h-95zM632 927l-222 486h195l120 -486h-93z" /> + <glyph glyph-name="quotedblright" unicode="”" horiz-adv-x="868" +d="M142 927l121 486h195l-223 -486h-93zM451 927l122 486h193l-220 -486h-95z" /> + <glyph glyph-name="quotedblbase" unicode="„" horiz-adv-x="877" +d="M141 -225l122 489h196l-221 -489h-97zM456 -225l122 489h197l-222 -489h-97z" /> + <glyph glyph-name="dagger" unicode="†" horiz-adv-x="806" +d="M328 -205v1050h-222v149h222v419h150v-419h222v-149h-222v-1050h-150z" /> + <glyph glyph-name="daggerdbl" unicode="‡" horiz-adv-x="878" +d="M364 -205v418h-221v152h221v480h-221v149h221v419h150v-419h222v-149h-222v-480h222v-152h-222v-418h-150z" /> + <glyph glyph-name="bullet" unicode="•" horiz-adv-x="823" +d="M412 244q-98 0 -168 69.5t-70 167.5t70 168t168 70t167.5 -70t69.5 -168t-69.5 -167.5t-167.5 -69.5z" /> + <glyph glyph-name="uni2023" unicode="‣" horiz-adv-x="797" +d="M236 237v504l446 -251z" /> + <glyph glyph-name="twodotenleader" unicode="‥" horiz-adv-x="1076" +d="M232 0v194h198v-194h-198zM646 0v194h198v-194h-198z" /> + <glyph glyph-name="ellipsis" unicode="…" horiz-adv-x="1489" +d="M232 0v194h198v-194h-198zM646 0v194h198v-194h-198zM1059 0v194h198v-194h-198z" /> + <glyph glyph-name="perthousand" unicode="‰" horiz-adv-x="2169" +d="M378 804q-55 0 -98.5 20.5t-71 52.5t-45.5 74.5t-25.5 84t-7.5 82.5q0 54 12.5 106.5t39 101.5t76 79.5t114.5 30.5q81 0 139.5 -48.5t84 -118.5t25.5 -151q0 -59 -15 -113.5t-43.5 -100t-76.5 -73t-108 -27.5zM339 2l753 1405h132l-753 -1405h-132zM376 904 +q66 0 99.5 65.5t33.5 150.5q0 53 -13 99.5t-45.5 80.5t-78.5 34q-68 0 -102 -65t-34 -151q0 -85 35 -149.5t105 -64.5zM1206 3q-68 0 -118.5 30t-77.5 78.5t-40 100t-13 104.5t12.5 105t39 101t76 79.5t115.5 30.5q61 0 109.5 -27.5t78 -73.5t45 -101.5t15.5 -114.5 +t-15 -113.5t-43.5 -99.5t-76 -72t-107.5 -27zM1797 3q-68 0 -118.5 30t-77.5 78.5t-39.5 100t-12.5 104.5t12.5 105t39 101t76 79.5t114.5 30.5q81 0 139.5 -48t84.5 -118t26 -151q0 -80 -25 -148.5t-82.5 -116t-136.5 -47.5zM1204 103q45 0 76.5 34.5t44.5 81.5t13 98 +q0 54 -13 100t-45.5 79.5t-79.5 33.5q-68 0 -102.5 -64t-34.5 -150q0 -53 13 -99t46 -80t82 -34zM1797 103q44 0 75 34.5t43.5 81.5t12.5 98q0 85 -34.5 149t-102.5 64q-45 0 -77 -33.5t-45 -80t-13 -100.5q0 -84 35.5 -148.5t105.5 -64.5z" /> + <glyph glyph-name="uni2031" unicode="‱" horiz-adv-x="2745" +d="M378 804q-55 0 -98.5 20.5t-71 53t-45.5 75t-25.5 84t-7.5 83.5q0 54 12.5 105.5t38.5 101t75.5 79.5t115.5 30q79 0 137 -48.5t84 -119t26 -150.5t-25.5 -149.5t-81.5 -117t-134 -47.5zM339 2l753 1403h131l-752 -1403h-132zM376 904q66 0 99.5 65.5t33.5 150.5 +q0 86 -34.5 150.5t-102.5 64.5q-69 0 -103.5 -65t-34.5 -150q0 -54 13 -101t46.5 -81t82.5 -34zM1206 3q-68 0 -118.5 30t-77.5 78.5t-40 100t-13 104.5t12.5 105t39 101t76 79.5t115.5 30.5q79 0 137 -48.5t83.5 -118.5t25.5 -150t-25 -149t-81 -116t-134 -47zM1796 3 +q-68 0 -118.5 30t-77.5 78.5t-40 100t-13 104.5t12.5 105t39 101t76 79.5t115.5 30.5q81 0 138.5 -48.5t82.5 -118.5t25 -150q0 -59 -15 -113.5t-43.5 -99.5t-75.5 -72t-106 -27zM2376 3q-68 0 -118.5 30t-77.5 78.5t-39.5 100t-12.5 104.5t12.5 105t39 101t76 79.5 +t114.5 30.5q81 0 139 -48.5t83 -118.5t25 -150q0 -59 -15 -113.5t-43.5 -99.5t-76 -72t-106.5 -27zM1204 101q45 0 76.5 34.5t44.5 82t13 99.5q0 54 -13 100.5t-45.5 80t-79.5 33.5q-69 0 -104 -64.5t-35 -150.5q0 -53 13.5 -99.5t47 -81t82.5 -34.5zM1793 101 +q66 0 100.5 66t34.5 150q0 54 -13 100.5t-45.5 80t-79.5 33.5q-69 0 -104 -64.5t-35 -150.5q0 -53 13.5 -99.5t46.5 -81t82 -34.5zM2374 101q66 0 100.5 66t34.5 150q0 86 -35 150t-104 64t-103.5 -64.5t-34.5 -150.5q0 -53 13 -99.5t46.5 -81t82.5 -34.5z" /> + <glyph glyph-name="guilsinglleft" unicode="‹" horiz-adv-x="598" +d="M433 185l-369 327l369 325v-162l-193 -163l193 -165v-162z" /> + <glyph glyph-name="guilsinglright" unicode="›" horiz-adv-x="599" +d="M163 185v162l194 165l-194 163v162l369 -325z" /> + <glyph glyph-name="fraction" unicode="⁄" horiz-adv-x="750" +d="M-82 0l756 1413h158l-754 -1413h-160z" /> + <glyph glyph-name="Euro" unicode="€" horiz-adv-x="1277" +d="M777 -20q-201 0 -327 134.5t-168 359.5h-137l55 128h64q-2 35 -2 105q0 76 5 117h-122l55 124h84q44 221 169 354.5t322 133.5q231 0 369 -192l-106 -89q-87 140 -266 140q-134 0 -223 -96t-126 -251h526l-55 -128h-492q-4 -68 -4 -105q0 -43 4 -115h547l-55 -129h-471 +q37 -157 126 -254t228 -97q171 0 256 142l99 -108q-134 -174 -355 -174z" /> + <glyph glyph-name="uni20B1" unicode="₱" horiz-adv-x="1345" +d="M1220 1074v-92h-123q-13 -165 -133 -254.5t-317 -89.5h-238v-638h-158v982h-100v92h100v339h396q191 0 311.5 -90.5t137.5 -248.5h124zM409 1272v-198h530q-16 95 -91.5 146.5t-200.5 51.5h-238zM647 779q130 0 205.5 51t88.5 152h-532v-203h238z" /> + <glyph glyph-name="uni20B3" unicode="₳" horiz-adv-x="1306" +d="M1128 307l115 -307h-170l-108 307h-621l-108 -307h-173l115 307h-99v113h142l81 216h-223v113h265l250 664h122l248 -664h262v-113h-220l80 -216h140v-113h-98zM654 1225l-167 -476h332zM448 636l-76 -216h562l-75 216h-411z" /> + <glyph glyph-name="uni20B4" unicode="₴" horiz-adv-x="1244" +d="M950 406l149 -44q-29 -181 -167 -279.5t-321 -98.5q-192 0 -316.5 111.5t-124.5 295.5q0 52 12.5 97t31 78.5t50.5 65t60.5 52t73 44t76 37.5t80.5 35t76 34h-381v98h535q66 66 66 158q0 93 -67 150t-160 57q-87 0 -160 -41t-114 -122l-120 80q129 220 393 220 +q161 0 272 -99.5t111 -258.5q0 -56 -14.5 -102.5t-44 -82.5t-61.5 -63t-80.5 -51.5t-86.5 -41.5t-92.5 -39.5t-87.5 -38.5h423v-99h-570q-66 -69 -66 -170q0 -131 76.5 -196t208.5 -65q133 0 229.5 72t110.5 207z" /> + <glyph glyph-name="uni20B8" unicode="₸" horiz-adv-x="1424" +d="M155 1281v130h1114v-130h-1114zM633 0v993h-478v129h1114v-129h-478v-993h-158z" /> + <glyph glyph-name="uni20BD" unicode="₽" horiz-adv-x="1332" +d="M337 0v357h-175v135h175v149h-175v138h175v634h397q206 0 328 -104t122 -286q0 -184 -121 -283t-329 -99h-240v-149h383v-135h-383v-357h-157zM494 779h240q143 0 220 62t77 182q0 118 -78 183.5t-219 65.5h-240v-493z" /> + <glyph glyph-name="uni2116" unicode="№" horiz-adv-x="2315" +d="M1522 583q0 -160 -87 -281.5t-229 -154.5v-147h-232l-111 230q-63 54 -101.5 133t-46.5 171l-345 713v-1247h-158v1413h229l310 -635q41 97 118.5 161.5t179.5 81.5v392h157v-397q142 -32 229 -152.5t87 -280.5zM1049 912q-99 -24 -152.5 -113t-55.5 -205l159 -325 +q23 -12 49 -18v661zM1206 257q92 32 139.5 122.5t47.5 203.5t-47.5 202.5t-139.5 120.5v-649zM1434 127h700v-127h-700v127z" /> + <glyph glyph-name="trademark" unicode="™" horiz-adv-x="1295" +d="M297 877v467h-146v69h372v-69h-145v-467h-81zM586 877v536h92l138 -353l138 353h88v-536h-81v385l-111 -304h-70l-113 307v-388h-81z" /> + <glyph glyph-name="uni2126" unicode="Ω" horiz-adv-x="1678" +d="M181 0v132h345q-156 88 -248.5 246t-92.5 338q0 132 46.5 259.5t125.5 212.5q91 100 220.5 159.5t261.5 59.5q130 0 260 -59.5t223 -159.5q78 -85 124.5 -212.5t46.5 -259.5q0 -183 -87.5 -341t-234.5 -241h324v-134h-509v134q166 52 265 217.5t99 393.5q0 95 -33.5 189 +t-88.5 158q-74 82 -179.5 131.5t-209.5 49.5q-105 0 -209.5 -49.5t-177.5 -131.5q-57 -64 -90.5 -157t-33.5 -190q0 -210 98 -375t264 -236v-134h-509z" /> + <glyph glyph-name="arrowleft" unicode="←" horiz-adv-x="2187" +d="M1000 137l-896 502l896 496l65 -116l-634 -329h1635v-110h-1622l621 -330z" /> + <glyph glyph-name="arrowright" unicode="→" horiz-adv-x="2187" +d="M1187 137l-65 113l621 330h-1622v110h1634l-633 329l65 116l897 -496z" /> + <glyph glyph-name="partialdiff" unicode="∂" horiz-adv-x="1307" +d="M561 -11q-188 0 -301.5 122t-113.5 318q0 167 71.5 303t199 214.5t284.5 78.5q84 0 155.5 -32.5t120.5 -93.5q-10 197 -93 298.5t-223 101.5q-178 0 -252 -163l-142 36q49 122 154 189t250 67q236 0 348.5 -179t112.5 -511q0 -118 -21 -226t-66 -204t-110.5 -166.5 +t-161.5 -111.5t-212 -41zM572 125q115 0 204.5 64t137 169t47.5 231q0 138 -68 219.5t-199 81.5q-72 0 -135.5 -27t-109.5 -72.5t-80 -105t-50.5 -126t-16.5 -133.5q0 -135 74 -218t196 -83z" /> + <glyph glyph-name="uni2206" unicode="∆" horiz-adv-x="1305" +d="M104 0l549 1429l548 -1429h-1097zM301 134h702l-350 923z" /> + <glyph glyph-name="product" unicode="∏" horiz-adv-x="1335" +d="M267 0v1279h-82v134h966v-134h-82v-1279h-135v1279h-533v-1279h-134z" /> + <glyph glyph-name="summation" unicode="∑" horiz-adv-x="1269" +d="M122 0v64l581 643l-581 642v64h1011v-134h-763l527 -571l-527 -574h763v-134h-1011z" /> + <glyph glyph-name="minus" unicode="−" horiz-adv-x="1192" +d="M246 571v114h700v-114h-700z" /> + <glyph glyph-name="radical" unicode="√" horiz-adv-x="1212" +d="M510 -174l-256 751h-150v134h245l168 -533l464 1238l126 -47z" /> + <glyph glyph-name="infinity" unicode="∞" horiz-adv-x="1898" +d="M544 354q-170 0 -266.5 104.5t-96.5 276.5q0 173 96.5 277t266.5 104q112 0 217.5 -62t188.5 -174q82 112 187 174t218 62q169 0 265.5 -104t96.5 -277q0 -172 -96.5 -276.5t-265.5 -104.5q-113 0 -218 62.5t-187 174.5q-83 -113 -188.5 -175t-217.5 -62zM575 480 +q84 0 167 69.5t137 185.5q-54 113 -137.5 184t-166.5 71q-112 0 -179.5 -68t-67.5 -187t67.5 -187t179.5 -68zM1325 480q110 0 177.5 68.5t67.5 186.5t-67.5 186.5t-177.5 68.5q-85 0 -168 -69.5t-138 -185.5q55 -114 138.5 -184.5t167.5 -70.5z" /> + <glyph glyph-name="integral" unicode="∫" horiz-adv-x="992" +d="M95 -457v135q181 0 262 74.5t81 245.5v1160q0 127 77 209.5t188 82.5q107 0 202 -78l-88 -105q-52 48 -114 48q-54 0 -92 -40.5t-38 -114.5v-1162q0 -222 -127 -338.5t-351 -116.5z" /> + <glyph glyph-name="approxequal" unicode="≈" horiz-adv-x="1170" +d="M741 734q-45 0 -85.5 17.5t-69.5 43t-56.5 50.5t-58.5 42.5t-64 17.5q-96 0 -94 -145h-99q0 109 49 176.5t142 67.5q54 0 98.5 -17.5t74 -42t55.5 -49t54.5 -42t59.5 -17.5q103 0 103 164h106q0 -127 -56 -196.5t-159 -69.5zM743 389q-45 0 -85.5 18t-70 43t-57 50.5 +t-59 43.5t-64.5 18q-96 0 -94 -147h-99q0 109 49 177.5t142 68.5q54 0 98.5 -17.5t74 -42.5t55.5 -49.5t54.5 -42t59.5 -17.5q56 0 79.5 42t23.5 121h106q0 -126 -55.5 -196t-157.5 -70z" /> + <glyph glyph-name="notequal" unicode="≠" horiz-adv-x="1178" +d="M138 0l229 428h-164v141h238l110 206h-348v140h424l266 498h155l-266 -498h184v-140h-258l-111 -206h369v-141h-445l-227 -428h-156z" /> + <glyph glyph-name="lessequal" unicode="≤" horiz-adv-x="1320" +d="M1081 119l-898 503l898 500l68 -118l-716 -382l716 -385zM114 -114v114h1054v-114h-1054z" /> + <glyph glyph-name="greaterequal" unicode="≥" horiz-adv-x="1320" +d="M239 119l-68 118l716 385l-716 382l68 118l898 -500zM152 -114v114h1053v-114h-1053z" /> + <glyph glyph-name="lozenge" unicode="◊" horiz-adv-x="1127" +d="M483 0l-367 717l367 717h162l367 -717l-367 -717h-162zM564 150l285 567l-285 566l-285 -566z" /> + <glyph glyph-name="uniF8FF" unicode="" horiz-adv-x="1794" +d="M897 -61q-158 0 -301 61t-247 165t-165 247t-61 301t61 301t165 247t247 165t301 61t301 -61t247 -165t165 -247t61 -301t-61 -301t-165 -247t-247 -165t-301 -61zM897 10q143 0 273 55.5t224 149.5t149.5 224.5t55.5 273.5t-55.5 273t-149.5 224t-224 149.5t-273 55.5 +t-273 -55.5t-224 -149.5t-149.5 -224t-55.5 -273t55.5 -273.5t149.5 -224.5t224 -149.5t273 -55.5zM494 410q-15 0 -25 9.5t-10 24.5v537q0 15 10.5 26t24.5 11q15 0 25.5 -11t10.5 -26v-537q0 -15 -10.5 -24.5t-25.5 -9.5zM897 410q-15 0 -25 9.5t-10 24.5v537q0 15 10 26 +t25 11t25 -11t10 -26v-537q0 -15 -9.5 -24.5t-25.5 -9.5zM1298 410q-14 0 -22 10l-270 268q-9 10 -9 25q0 16 9 24l272 269q6 12 20 12t25.5 -11.5t11.5 -25.5t-10 -25l-244 -243l244 -244q10 -10 10 -25q0 -13 -11.5 -23.5t-25.5 -10.5zM629 678q-16 0 -25.5 9.5t-9.5 25.5 +q0 15 9.5 25t25.5 10h133q15 0 26 -10t11 -25t-11 -25t-26 -10h-133z" /> + <glyph glyph-name="c.001" horiz-adv-x="974" +d="M526 -20q-105 0 -189 42.5t-136.5 115t-80.5 165t-28 195.5q0 102 27.5 195t80 166.5t136.5 117t188 43.5q133 0 234 -71t155 -195l-141 -60q-22 91 -90 145.5t-158 54.5q-74 0 -130.5 -36t-87.5 -95.5t-46 -126t-15 -138.5q0 -73 15 -139t46 -124.5t87 -93.5t131 -35 +q91 0 158 53t90 142l130 -56q-45 -125 -143 -195t-233 -70z" /> + <glyph glyph-name="g.ss01" horiz-adv-x="1117" +d="M947 0q0 -202 -109.5 -317.5t-311.5 -115.5q-130 0 -231 50t-163 147l116 86q95 -154 277 -154q132 0 202.5 82.5t70.5 221.5v140q-48 -69 -126.5 -104.5t-173.5 -35.5q-133 0 -227.5 69t-139.5 181.5t-45 257.5q0 223 107 367.5t298 144.5q99 0 178 -41t129 -116v136 +h151zM526 132q74 0 130 30.5t89 83.5t49.5 119.5t16.5 144.5q0 77 -16.5 143.5t-49.5 119.5t-89 83.5t-130 30.5q-73 0 -129.5 -30.5t-90.5 -83t-51 -119.5t-17 -144q0 -105 29 -188t95.5 -136.5t163.5 -53.5z" /> + <glyph glyph-name="g.ss04" horiz-adv-x="1061" +d="M663 139q145 0 234.5 -69.5t89.5 -207.5q0 -147 -111 -233t-316 -86q-215 0 -348.5 86t-133.5 244q0 41 10 71l155 98q-130 65 -133 205q-2 122 102 195q-73 90 -73 216q0 157 110.5 257t277.5 100q151 0 254 -82l149 132l76 -97l-145 -125q52 -83 52 -190 +q0 -156 -110 -253.5t-276 -97.5q-129 0 -229 62q-50 -37 -47 -104q1 -63 48 -92t143 -29h221zM530 896q-109 0 -175.5 -67.5t-66.5 -172.5q0 -103 65.5 -168t176.5 -65q108 0 173 65t65 168q0 104 -65.5 172t-172.5 68zM558 -336q130 0 207 45t77 143q0 79 -56.5 119 +t-179.5 40h-237q-9 0 -31 2l-119 -116q-1 -6 0.5 -17t1.5 -14q19 -202 337 -202z" /> + <glyph glyph-name="gbreve.ss01" horiz-adv-x="1117" +d="M530 1143q-138 0 -222.5 71t-84.5 199h136q0 -69 49.5 -112.5t121.5 -43.5t121 43t49 113h136q0 -129 -84.5 -199.5t-221.5 -70.5zM947 0q0 -202 -109.5 -317.5t-311.5 -115.5q-130 0 -231 50t-163 147l116 86q95 -154 277 -154q132 0 202.5 82.5t70.5 221.5v140 +q-48 -69 -126.5 -104.5t-173.5 -35.5q-133 0 -227.5 69t-139.5 181.5t-45 257.5q0 223 107 367.5t298 144.5q99 0 178 -41t129 -116v136h151zM526 132q74 0 130 30.5t89 83.5t49.5 119.5t16.5 144.5q0 77 -16.5 143.5t-49.5 119.5t-89 83.5t-130 30.5q-73 0 -129.5 -30.5 +t-90.5 -83t-51 -119.5t-17 -144q0 -105 29 -188t95.5 -136.5t163.5 -53.5z" /> + <glyph glyph-name="gbreve.ss04" horiz-adv-x="1061" +d="M528 1143q-138 0 -222.5 71t-84.5 199h136q0 -69 49.5 -112.5t121.5 -43.5t121 43t49 113h136q0 -129 -84.5 -199.5t-221.5 -70.5zM663 139q145 0 234.5 -69.5t89.5 -207.5q0 -147 -111 -233t-316 -86q-215 0 -348.5 86t-133.5 244q0 41 10 71l155 98q-130 65 -133 205 +q-2 122 102 195q-73 90 -73 216q0 157 110.5 257t277.5 100q151 0 254 -82l149 132l76 -97l-145 -125q52 -83 52 -190q0 -156 -110 -253.5t-276 -97.5q-129 0 -229 62q-50 -37 -47 -104q1 -63 48 -92t143 -29h221zM530 896q-109 0 -175.5 -67.5t-66.5 -172.5 +q0 -103 65.5 -168t176.5 -65q108 0 173 65t65 168q0 104 -65.5 172t-172.5 68zM558 -336q130 0 207 45t77 143q0 79 -56.5 119t-179.5 40h-237q-9 0 -31 2l-119 -116q-1 -6 0.5 -17t1.5 -14q19 -202 337 -202z" /> + <glyph glyph-name="gcommaaccent.ss01" horiz-adv-x="1117" +d="M757 1398l-123 -300h-212l228 300h107zM947 0q0 -202 -109.5 -317.5t-311.5 -115.5q-130 0 -231 50t-163 147l116 86q95 -154 277 -154q132 0 202.5 82.5t70.5 221.5v140q-48 -69 -126.5 -104.5t-173.5 -35.5q-133 0 -227.5 69t-139.5 181.5t-45 257.5q0 223 107 367.5 +t298 144.5q99 0 178 -41t129 -116v136h151zM526 132q74 0 130 30.5t89 83.5t49.5 119.5t16.5 144.5q0 77 -16.5 143.5t-49.5 119.5t-89 83.5t-130 30.5q-73 0 -129.5 -30.5t-90.5 -83t-51 -119.5t-17 -144q0 -105 29 -188t95.5 -136.5t163.5 -53.5z" /> + <glyph glyph-name="gcommaaccent.ss04" horiz-adv-x="1061" +d="M781 1423l-123 -300h-212l228 300h107zM663 139q145 0 234.5 -69.5t89.5 -207.5q0 -147 -111 -233t-316 -86q-215 0 -348.5 86t-133.5 244q0 41 10 71l155 98q-130 65 -133 205q-2 122 102 195q-73 90 -73 216q0 157 110.5 257t277.5 100q151 0 254 -82l149 132l76 -97 +l-145 -125q52 -83 52 -190q0 -156 -110 -253.5t-276 -97.5q-129 0 -229 62q-50 -37 -47 -104q1 -63 48 -92t143 -29h221zM530 896q-109 0 -175.5 -67.5t-66.5 -172.5q0 -103 65.5 -168t176.5 -65q108 0 173 65t65 168q0 104 -65.5 172t-172.5 68zM558 -336q130 0 207 45 +t77 143q0 79 -56.5 119t-179.5 40h-237q-9 0 -31 2l-119 -116q-1 -6 0.5 -17t1.5 -14q19 -202 337 -202z" /> + <glyph glyph-name="gdotaccent.ss01" horiz-adv-x="1117" +d="M442 1221v192h173v-192h-173zM947 0q0 -202 -109.5 -317.5t-311.5 -115.5q-130 0 -231 50t-163 147l116 86q95 -154 277 -154q132 0 202.5 82.5t70.5 221.5v140q-48 -69 -126.5 -104.5t-173.5 -35.5q-133 0 -227.5 69t-139.5 181.5t-45 257.5q0 223 107 367.5t298 144.5 +q99 0 178 -41t129 -116v136h151zM526 132q74 0 130 30.5t89 83.5t49.5 119.5t16.5 144.5q0 77 -16.5 143.5t-49.5 119.5t-89 83.5t-130 30.5q-73 0 -129.5 -30.5t-90.5 -83t-51 -119.5t-17 -144q0 -105 29 -188t95.5 -136.5t163.5 -53.5z" /> + <glyph glyph-name="gdotaccent.ss04" horiz-adv-x="1061" +d="M613 1413v-192h-173v192h173zM663 139q145 0 234.5 -69.5t89.5 -207.5q0 -147 -111 -233t-316 -86q-215 0 -348.5 86t-133.5 244q0 41 10 71l155 98q-130 65 -133 205q-2 122 102 195q-73 90 -73 216q0 157 110.5 257t277.5 100q151 0 254 -82l149 132l76 -97l-145 -125 +q52 -83 52 -190q0 -156 -110 -253.5t-276 -97.5q-129 0 -229 62q-50 -37 -47 -104q1 -63 48 -92t143 -29h221zM530 896q-109 0 -175.5 -67.5t-66.5 -172.5q0 -103 65.5 -168t176.5 -65q108 0 173 65t65 168q0 104 -65.5 172t-172.5 68zM558 -336q130 0 207 45t77 143 +q0 79 -56.5 119t-179.5 40h-237q-9 0 -31 2l-119 -116q-1 -6 0.5 -17t1.5 -14q19 -202 337 -202z" /> + <glyph glyph-name="i.loclTRK" horiz-adv-x="501" +d="M162 1221v192h173v-192h-173zM168 0v999h165v-999h-165z" /> + <glyph glyph-name="f_t" horiz-adv-x="1215" +d="M987 -20q-244 0 -244 285v612h-380v-877h-149v877h-182v120h183v170q0 129 76.5 198t193.5 69q86 0 164 -38l-36 -119q-65 31 -117 31q-60 0 -96.5 -37.5t-36.5 -111.5v-160h380v225l150 140v-365h255v-122h-255v-613q0 -79 35.5 -120t93.5 -41q47 0 99 25v-128 +q-49 -20 -134 -20z" /> + <glyph glyph-name="uni0414.loclRUS" horiz-adv-x="1448" +d="M61 -307v434h135q95 186 136 357.5t41 433.5v495h842v-1286h121v-434h-156v307h-961v-307h-158zM355 127h703v1151h-528v-360q0 -263 -40.5 -434t-134.5 -357z" /> + <glyph glyph-name="uni0414.loclSRB" horiz-adv-x="1448" +d="M61 -307v437h135q95 187 136 356.5t41 431.5v495h842v-1283h121v-437h-156v307h-961v-307h-158zM355 130h703v1148h-528v-360q0 -263 -40.5 -432.5t-134.5 -355.5z" /> + <glyph glyph-name="uni041B.loclRUS" horiz-adv-x="1458" +d="M231 -20q-94 0 -168 43l63 148q47 -32 88 -32q34 0 62 22t47 70.5t33.5 98t23 133.5t13.5 146.5t7 166.5t2.5 164t0.5 168v305h843v-1413h-155v1278h-531v-182q0 -102 -0.5 -157.5t-2.5 -154.5t-6.5 -157t-12 -144t-20 -138.5t-30 -118t-42 -104t-55.5 -74.5t-71.5 -52 +t-88.5 -16z" /> + <glyph glyph-name="uni041B.loclSRB" horiz-adv-x="1458" +d="M231 -20q-94 0 -168 43l63 148q47 -32 88 -32q34 0 62 22t47 70.5t33.5 98t23 133.5t13.5 146.5t7 166.5t2.5 164t0.5 168v305h843v-1413h-155v1278h-531v-182q0 -102 -0.5 -157.5t-2.5 -154.5t-6.5 -157t-12 -144t-20 -138.5t-30 -118t-42 -104t-55.5 -74.5t-71.5 -52 +t-88.5 -16z" /> + <glyph glyph-name="uni042E.loclRUS" horiz-adv-x="1892" +d="M1131 -20q-148 0 -266 51t-194 142t-119.5 208.5t-51.5 257.5h-131v-639h-157v1413h157v-639h131q8 139 51.5 257t119.5 209t194 142.5t266 51.5q128 0 233.5 -38t179 -104.5t124.5 -158.5t75 -199t24 -227t-24 -227t-75 -199t-124.5 -158.5t-179 -104.5t-233.5 -38z +M1131 126q99 0 180 31.5t136 85.5t92.5 128.5t54.5 158.5t17 177t-17 177t-54.5 158t-92.5 128t-136 85.5t-180 31.5t-179.5 -31.5t-135 -85.5t-92 -128t-54 -158t-16.5 -177t16.5 -177t54 -158.5t92 -128.5t135 -85.5t179.5 -31.5z" /> + <glyph glyph-name="uni0431.loclSRB" horiz-adv-x="1129" +d="M553 -16q-141 0 -249.5 69.5t-164.5 182t-56 247.5q0 97 29 186t102 169.5t183 119.5q-117 79 -149 110q-62 60 -62 139q0 101 77.5 164t213.5 63q174 0 356 -93l-43 -140q-162 107 -303 107q-128 0 -128 -91q0 -59 55.5 -103t188.5 -95q99 -31 173.5 -72.5t133.5 -102 +t90 -146t31 -193.5q0 -231 -133.5 -376t-344.5 -145zM554 112q68 0 123 25t88.5 65t56.5 92t32 102t9 100q0 80 -25 145.5t-62.5 106t-87 69.5t-92.5 42.5t-86 18.5q-260 -84 -260 -388q0 -176 82.5 -277t221.5 -101z" /> + <glyph glyph-name="uni0432.loclRUS" horiz-adv-x="1054" +d="M165 0v999h423q154 0 233.5 -55.5t79.5 -192.5q0 -83 -44 -144.5t-139 -76.5q118 -10 179 -70t61 -157q0 -91 -20.5 -150t-68 -93t-113.5 -47t-169 -13h-422zM304 588h253q79 0 136.5 41.5t57.5 102.5q0 77 -45 110.5t-149 33.5h-253v-288zM304 132h252q145 0 197.5 36.5 +t52.5 136.5q0 85 -66 118t-184 33h-252v-324z" /> + <glyph glyph-name="uni0432.loclSRB" horiz-adv-x="1054" +d="M165 0v999h423q154 0 233.5 -55.5t79.5 -192.5q0 -83 -44 -144.5t-139 -76.5q118 -10 179 -70t61 -157q0 -91 -20.5 -150t-68 -93t-113.5 -47t-169 -13h-422zM304 588h253q79 0 136.5 41.5t57.5 102.5q0 77 -45 110.5t-149 33.5h-253v-288zM304 132h252q145 0 197.5 36.5 +t52.5 136.5q0 85 -66 118t-184 33h-252v-324z" /> + <glyph glyph-name="uni0433.loclRUS" horiz-adv-x="763" +d="M165 0v999h571v-118h-421v-881h-150z" /> + <glyph glyph-name="uni0433.loclSRB" horiz-adv-x="763" +d="M165 0v999h571v-118h-421v-881h-150z" /> + <glyph glyph-name="uni0434.loclRUS" horiz-adv-x="1092" +d="M29 -307v427h105q133 159 133 499v380h636v-879h95v-427h-150v307h-670v-307h-149zM298 120h455v761h-337v-263q0 -347 -118 -498z" /> + <glyph glyph-name="uni0434.loclSRB" horiz-adv-x="1092" +d="M29 -307v427h105q133 159 133 499v380h636v-879h95v-427h-150v307h-670v-307h-149zM298 120h455v761h-337v-263q0 -347 -118 -498z" /> + <glyph glyph-name="uni0436.loclRUS" horiz-adv-x="1433" +d="M46 0l163 435q25 64 65.5 112.5t89.5 48.5l-255 403h183l222 -371h127v371h151v-371h128l222 371h182l-255 -403q50 0 90 -48.5t65 -112.5l163 -435h-174l-123 359q-25 75 -62.5 109t-99.5 34h-136v-502h-151v502h-136q-62 0 -99.5 -34t-62.5 -109l-123 -359h-174z" /> + <glyph glyph-name="uni0436.loclSRB" horiz-adv-x="1433" +d="M46 0l163 435q25 64 65.5 112.5t89.5 48.5l-255 403h183l222 -371h127v371h151v-371h128l222 371h182l-255 -403q50 0 90 -48.5t65 -112.5l163 -435h-174l-123 359q-25 75 -62.5 109t-99.5 34h-136v-502h-151v502h-136q-62 0 -99.5 -34t-62.5 -109l-123 -359h-174z" /> + <glyph glyph-name="uni0437.loclRUS" horiz-adv-x="942" +d="M440 -20q-132 0 -219 46t-173 141l113 89q95 -152 266 -152q269 0 269 176q0 88 -62.5 121.5t-179.5 33.5h-127v130h153q82 17 124 56t42 112t-46 113.5t-160 40.5q-82 0 -153.5 -41.5t-107.5 -109.5l-119 66q56 101 157 155.5t223 54.5q356 0 356 -276q0 -198 -174 -229 +q103 -10 164.5 -74.5t61.5 -152.5q0 -146 -106 -223t-302 -77z" /> + <glyph glyph-name="uni0437.loclSRB" horiz-adv-x="942" +d="M440 -20q-132 0 -219 46t-173 141l113 89q95 -152 266 -152q269 0 269 176q0 88 -62.5 121.5t-179.5 33.5h-127v130h153q82 17 124 56t42 112t-46 113.5t-160 40.5q-82 0 -153.5 -41.5t-107.5 -109.5l-119 66q56 101 157 155.5t223 54.5q356 0 356 -276q0 -198 -174 -229 +q103 -10 164.5 -74.5t61.5 -152.5q0 -146 -106 -223t-302 -77z" /> + <glyph glyph-name="uni0438.loclRUS" horiz-adv-x="1142" +d="M168 0v999h150v-672q0 -19 -10 -117h10l488 789h168v-999h-148v673q0 51 10 116h-10l-488 -789h-170z" /> + <glyph glyph-name="uni0438.loclSRB" horiz-adv-x="1142" +d="M168 0v999h150v-672q0 -19 -10 -117h10l488 789h168v-999h-148v673q0 51 10 116h-10l-488 -789h-170z" /> + <glyph glyph-name="uni0439.loclRUS" horiz-adv-x="1142" +d="M559 1143q-131 0 -217 71.5t-86 198.5h123q0 -71 52.5 -118t127.5 -47q74 0 126.5 47t52.5 118h123q0 -125 -85.5 -197.5t-216.5 -72.5zM168 0v999h150v-672q0 -19 -10 -117h10l488 789h168v-999h-148v673q0 51 10 116h-10l-488 -789h-170z" /> + <glyph glyph-name="uni0439.loclSRB" horiz-adv-x="1142" +d="M559 1143q-131 0 -217 71.5t-86 198.5h123q0 -71 52.5 -118t127.5 -47q74 0 126.5 47t52.5 118h123q0 -125 -85.5 -197.5t-216.5 -72.5zM168 0v999h150v-672q0 -19 -10 -117h10l488 789h168v-999h-148v673q0 51 10 116h-10l-488 -789h-170z" /> + <glyph glyph-name="uni045D.loclRUS" horiz-adv-x="1142" +d="M517 1129l-242 287h172l212 -287h-142zM168 0v999h150v-672q0 -19 -10 -117h10l488 789h168v-999h-148v673q0 51 10 116h-10l-488 -789h-170z" /> + <glyph glyph-name="uni045D.loclSRB" horiz-adv-x="1142" +d="M517 1129l-242 287h172l212 -287h-142zM168 0v999h150v-672q0 -19 -10 -117h10l488 789h168v-999h-148v673q0 51 10 116h-10l-488 -789h-170z" /> + <glyph glyph-name="uni043A.loclRUS" horiz-adv-x="963" +d="M168 0v999h151v-371h127l222 371h183l-255 -403q49 0 89 -48t66 -113l163 -435h-174l-123 359q-25 75 -62.5 109t-99.5 34h-136v-502h-151z" /> + <glyph glyph-name="uni043A.loclSRB" horiz-adv-x="963" +d="M168 0v999h151v-371h127l222 371h183l-255 -403q49 0 89 -48t66 -113l163 -435h-174l-123 359q-25 75 -62.5 109t-99.5 34h-136v-502h-151z" /> + <glyph glyph-name="uni043B.loclRUS" horiz-adv-x="1069" +d="M193 -22q-42 0 -92 13.5t-82 30.5l47 109q3 -1 16.5 -8t22 -11t21.5 -8t23 -4q118 0 118 519v380h633v-999h-149v881h-336v-287q0 -157 -13.5 -272t-34 -180t-51 -103t-59 -49.5t-64.5 -11.5z" /> + <glyph glyph-name="uni043B.loclSRB" horiz-adv-x="1069" +d="M193 -22q-42 0 -92 13.5t-82 30.5l47 109q3 -1 16.5 -8t22 -11t21.5 -8t23 -4q118 0 118 519v380h633v-999h-149v881h-336v-287q0 -157 -13.5 -272t-34 -180t-51 -103t-59 -49.5t-64.5 -11.5z" /> + <glyph glyph-name="uni043F.loclRUS" horiz-adv-x="1142" +d="M168 0v999h806v-999h-148v881h-508v-881h-150z" /> + <glyph glyph-name="uni043F.loclSRB" horiz-adv-x="1142" +d="M168 0v999h806v-999h-148v881h-508v-881h-150z" /> + <glyph glyph-name="uni0442.loclRUS" horiz-adv-x="860" +d="M355 0v881h-328v118h806v-118h-330v-881h-148z" /> + <glyph glyph-name="uni0442.loclSRB" horiz-adv-x="860" +d="M355 0v881h-328v118h806v-118h-330v-881h-148z" /> + <glyph glyph-name="uni0446.loclRUS" horiz-adv-x="1176" +d="M968 -307v307h-800v999h150v-879h508v879h148v-879h142v-427h-148z" /> + <glyph glyph-name="uni0446.loclSRB" horiz-adv-x="1176" +d="M968 -307v307h-800v999h150v-879h508v879h148v-879h142v-427h-148z" /> + <glyph glyph-name="uni0448.loclRUS" horiz-adv-x="1546" +d="M168 0v999h150v-879h382v879h147v-879h383v879h147v-999h-1209z" /> + <glyph glyph-name="uni0448.loclSRB" horiz-adv-x="1546" +d="M168 0v999h150v-879h382v879h147v-879h383v879h147v-999h-1209z" /> + <glyph glyph-name="uni0449.loclRUS" horiz-adv-x="1580" +d="M1371 -307v307h-1203v999h150v-879h382v879h147v-879h383v879h147v-879h142v-427h-148z" /> + <glyph glyph-name="uni0449.loclSRB" horiz-adv-x="1580" +d="M1371 -307v307h-1203v999h150v-879h382v879h147v-879h383v879h147v-879h142v-427h-148z" /> + <glyph glyph-name="uni044C.loclRUS" horiz-adv-x="993" +d="M168 0v999h150v-334h187q91 0 157 -14t122 -50t84.5 -104.5t28.5 -170.5q0 -152 -109 -239t-283 -87h-337zM318 122h187q223 0 223 204q0 63 -17 107t-49 67.5t-70 33t-87 9.5h-187v-421z" /> + <glyph glyph-name="uni044A.loclRUS" horiz-adv-x="1117" +d="M292 0v881h-265v118h413v-334h187q92 0 158.5 -14t122 -50t84 -104.5t28.5 -170.5q0 -152 -109.5 -239t-283.5 -87h-335zM440 122h187q223 0 223 204q0 63 -17 107t-49 67.5t-70 33t-87 9.5h-187v-421z" /> + <glyph glyph-name="uni044B.loclRUS" horiz-adv-x="1377" +d="M168 0v999h150v-334h187q91 0 157 -14t122 -50t84.5 -104.5t28.5 -170.5q0 -152 -109 -239t-283 -87h-337zM1060 0v999h149v-999h-149zM318 122h187q223 0 223 204q0 63 -17 107t-49 67.5t-70 33t-87 9.5h-187v-421z" /> + <glyph glyph-name="uni044E.loclRUS" horiz-adv-x="1443" +d="M884 -20q-136 0 -245 68.5t-168.5 185t-60.5 257.5h-92v-491h-150v999h150v-390h101q35 177 160.5 290t304.5 113q136 0 245 -69.5t168.5 -187.5t59.5 -259q0 -142 -59.5 -259.5t-168.5 -187t-245 -69.5zM884 112q80 0 141 31t96.5 85.5t52.5 121.5t17 146q0 78 -17 145 +t-52.5 121.5t-96.5 85.5t-141 31t-141 -31t-96.5 -85.5t-53 -121.5t-17.5 -145q0 -79 17.5 -146t53 -121.5t96.5 -85.5t141 -31z" /> + <glyph glyph-name="strokecy" horiz-adv-x="1115" +d="M195 322v131h725v-131h-725z" /> + <hkern u1=" " u2="&" k="82" /> + <hkern u1="!" u2="ß" k="4" /> + <hkern u1=""" u2="ï" k="-72" /> + <hkern u1=""" u2="î" k="-72" /> + <hkern u1=""" u2="ì" k="-72" /> + <hkern u1="#" u2="9" k="33" /> + <hkern u1="#" u2="8" k="33" /> + <hkern u1="#" u2="7" k="16" /> + <hkern u1="#" u2="5" k="49" /> + <hkern u1="#" u2="4" k="66" /> + <hkern u1="#" u2="3" k="49" /> + <hkern u1="#" u2="2" k="16" /> + <hkern u1="#" u2="1" k="16" /> + <hkern u1="$" u2="9" k="16" /> + <hkern u1="$" u2="8" k="16" /> + <hkern u1="$" u2="7" k="16" /> + <hkern u1="$" u2="5" k="16" /> + <hkern u1="$" u2="4" k="16" /> + <hkern u1="$" u2="3" k="16" /> + <hkern u1="%" u2="1" k="16" /> + <hkern u1="&" u2="v" k="8" /> + <hkern u1="&" u2="V" k="145" /> + <hkern u1="&" u2="5" k="16" /> + <hkern u1="&" u2="4" k="16" /> + <hkern u1="&" u2="3" k="16" /> + <hkern u1="&" u2="1" k="16" /> + <hkern u1="&" u2=" " k="82" /> + <hkern u1="'" u2="ï" k="-72" /> + <hkern u1="'" u2="î" k="-72" /> + <hkern u1="'" u2="ì" k="-72" /> + <hkern u1="(" u2="ƒ" k="-104" /> + <hkern u1="(" u2="ï" k="-8" /> + <hkern u1="(" u2="î" k="-4" /> + <hkern u1="(" u2="ì" k="-49" /> + <hkern u1="(" u2="ß" k="6" /> + <hkern u1="(" u2="x" k="2" /> + <hkern u1="(" u2="v" k="43" /> + <hkern u1="(" u2="g" k="6" /> + <hkern u1="(" u2="X" k="-37" /> + <hkern u1="(" u2="V" k="-39" /> + <hkern u1="(" u2="−" k="82" /> + <hkern u1="(" u2="7" k="-66" /> + <hkern u1="(" u2="5" k="41" /> + <hkern u1="(" u2="4" k="33" /> + <hkern u1="(" u2="2" k="-8" /> + <hkern u1="(" u2="1" k="8" /> + <hkern u1="(" u2="+" k="104" /> + <hkern u1=")" u2="Ł" k="-37" /> + <hkern u1="*" u2="ƒ" k="12" /> + <hkern u1="*" u2="Ł" k="2" /> + <hkern u1="*" u2="ï" k="-10" /> + <hkern u1="*" u2="î" k="-45" /> + <hkern u1="*" u2="ì" k="-4" /> + <hkern u1="*" u2="x" k="-2" /> + <hkern u1="*" u2="v" k="-25" /> + <hkern u1="*" u2="X" k="2" /> + <hkern u1="*" u2="V" k="-41" /> + <hkern u1="*" u2="7" k="-66" /> + <hkern u1="*" u2="4" k="115" /> + <hkern u1="+" u2="X" k="27" /> + <hkern u1="+" u2="V" k="84" /> + <hkern u1="+" u2="9" k="16" /> + <hkern u1="+" u2="7" k="16" /> + <hkern u1="+" u2="3" k="33" /> + <hkern u1="+" u2="2" k="16" /> + <hkern u1="+" u2="1" k="49" /> + <hkern u1="+" u2=")" k="104" /> + <hkern u1="," u2="j" k="-4" /> + <hkern u1="," u2="g" k="23" /> + <hkern u1="." u2="g" k="23" /> + <hkern u1="/" u2="ƒ" k="25" /> + <hkern u1="/" u2="ž" k="94" /> + <hkern u1="/" u2="š" k="113" /> + <hkern u1="/" u2="ł" k="4" /> + <hkern u1="/" u2="Ł" k="6" /> + <hkern u1="/" u2="ö" k="45" /> + <hkern u1="/" u2="ò" k="41" /> + <hkern u1="/" u2="ð" k="193" /> + <hkern u1="/" u2="ï" k="-66" /> + <hkern u1="/" u2="î" k="-61" /> + <hkern u1="/" u2="í" k="18" /> + <hkern u1="/" u2="ì" k="-143" /> + <hkern u1="/" u2="ë" k="209" /> + <hkern u1="/" u2="è" k="209" /> + <hkern u1="/" u2="å" k="217" /> + <hkern u1="/" u2="ä" k="184" /> + <hkern u1="/" u2="ã" k="195" /> + <hkern u1="/" u2="â" k="209" /> + <hkern u1="/" u2="à" k="186" /> + <hkern u1="/" u2="ß" k="14" /> + <hkern u1="/" u2="x" k="41" /> + <hkern u1="/" u2="v" k="23" /> + <hkern u1="/" u2="X" k="-20" /> + <hkern u1="/" u2="V" k="-41" /> + <hkern u1="/" u2="9" k="33" /> + <hkern u1="/" u2="8" k="49" /> + <hkern u1="/" u2="7" k="-49" /> + <hkern u1="/" u2="5" k="33" /> + <hkern u1="/" u2="4" k="131" /> + <hkern u1="/" u2="2" k="33" /> + <hkern u1="/" u2="/" k="252" /> + <hkern u1="1" u2="≥" k="-16" /> + <hkern u1="1" u2="≠" k="-33" /> + <hkern u1="1" u2="≈" k="-33" /> + <hkern u1="1" u2="∞" k="-33" /> + <hkern u1="1" u2="÷" k="16" /> + <hkern u1="1" u2="°" k="16" /> + <hkern u1="1" u2="|" k="-16" /> + <hkern u1="1" u2=">" k="-49" /> + <hkern u1="1" u2="<" k="16" /> + <hkern u1="1" u2="7" k="-8" /> + <hkern u1="1" u2="2" k="-8" /> + <hkern u1="1" u2="%" k="16" /> + <hkern u1="1" u2="#" k="33" /> + <hkern u1="2" u2="≥" k="-16" /> + <hkern u1="2" u2="≠" k="-16" /> + <hkern u1="2" u2="≈" k="-33" /> + <hkern u1="2" u2="×" k="-16" /> + <hkern u1="2" u2="±" k="-16" /> + <hkern u1="2" u2="°" k="-16" /> + <hkern u1="2" u2="_" k="-16" /> + <hkern u1="2" u2="\" k="16" /> + <hkern u1="2" u2=">" k="-49" /> + <hkern u1="2" u2="4" k="25" /> + <hkern u1="2" u2="1" k="-16" /> + <hkern u1="3" u2="≥" k="-33" /> + <hkern u1="3" u2="≈" k="-33" /> + <hkern u1="3" u2="−" k="-16" /> + <hkern u1="3" u2="‰" k="16" /> + <hkern u1="3" u2="×" k="-16" /> + <hkern u1="3" u2="±" k="-16" /> + <hkern u1="3" u2="°" k="-16" /> + <hkern u1="3" u2="¦" k="-33" /> + <hkern u1="3" u2="~" k="-16" /> + <hkern u1="3" u2="|" k="-33" /> + <hkern u1="3" u2="_" k="16" /> + <hkern u1="3" u2=">" k="-49" /> + <hkern u1="3" u2="7" k="-16" /> + <hkern u1="3" u2="1" k="8" /> + <hkern u1="3" u2="/" k="16" /> + <hkern u1="3" u2="*" k="-16" /> + <hkern u1="3" u2="%" k="16" /> + <hkern u1="3" u2="#" k="33" /> + <hkern u1="4" u2="º" k="66" /> + <hkern u1="4" u2="ª" k="66" /> + <hkern u1="4" u2="≥" k="-49" /> + <hkern u1="4" u2="≤" k="-49" /> + <hkern u1="4" u2="≠" k="-16" /> + <hkern u1="4" u2="≈" k="-49" /> + <hkern u1="4" u2="∞" k="-16" /> + <hkern u1="4" u2="™" k="115" /> + <hkern u1="4" u2="‰" k="49" /> + <hkern u1="4" u2="×" k="-16" /> + <hkern u1="4" u2="±" k="-16" /> + <hkern u1="4" u2="°" k="16" /> + <hkern u1="4" u2="¦" k="-16" /> + <hkern u1="4" u2="~" k="-33" /> + <hkern u1="4" u2=">" k="-49" /> + <hkern u1="4" u2="=" k="-33" /> + <hkern u1="4" u2="7" k="8" /> + <hkern u1="4" u2="*" k="33" /> + <hkern u1="4" u2="%" k="16" /> + <hkern u1="5" u2="≥" k="-33" /> + <hkern u1="5" u2="≤" k="-16" /> + <hkern u1="5" u2="≠" k="-16" /> + <hkern u1="5" u2="≈" k="-33" /> + <hkern u1="5" u2="−" k="-16" /> + <hkern u1="5" u2="‰" k="16" /> + <hkern u1="5" u2="°" k="-16" /> + <hkern u1="5" u2="~" k="-16" /> + <hkern u1="5" u2="_" k="16" /> + <hkern u1="5" u2="@" k="8" /> + <hkern u1="5" u2=">" k="-33" /> + <hkern u1="5" u2="=" k="-16" /> + <hkern u1="5" u2="<" k="-16" /> + <hkern u1="5" u2="7" k="-8" /> + <hkern u1="5" u2="/" k="33" /> + <hkern u1="5" u2="%" k="16" /> + <hkern u1="6" u2="≈" k="-16" /> + <hkern u1="6" u2="−" k="-16" /> + <hkern u1="6" u2="‰" k="33" /> + <hkern u1="6" u2="~" k="-16" /> + <hkern u1="6" u2="_" k="33" /> + <hkern u1="6" u2="\" k="16" /> + <hkern u1="6" u2="@" k="16" /> + <hkern u1="6" u2=">" k="-16" /> + <hkern u1="6" u2="=" k="-16" /> + <hkern u1="6" u2="7" k="-8" /> + <hkern u1="6" u2="+" k="-16" /> + <hkern u1="6" u2="#" k="33" /> + <hkern u1="7" u2="≥" k="-33" /> + <hkern u1="7" u2="≠" k="16" /> + <hkern u1="7" u2="∞" k="16" /> + <hkern u1="7" u2="−" k="49" /> + <hkern u1="7" u2="™" k="-33" /> + <hkern u1="7" u2="‰" k="-16" /> + <hkern u1="7" u2="‡" k="-82" /> + <hkern u1="7" u2="†" k="-82" /> + <hkern u1="7" u2="÷" k="33" /> + <hkern u1="7" u2="¿" k="98" /> + <hkern u1="7" u2="·" k="66" /> + <hkern u1="7" u2="±" k="16" /> + <hkern u1="7" u2="°" k="-49" /> + <hkern u1="7" u2="¦" k="-33" /> + <hkern u1="7" u2="~" k="66" /> + <hkern u1="7" u2="|" k="-33" /> + <hkern u1="7" u2="_" k="147" /> + <hkern u1="7" u2="\" k="-49" /> + <hkern u1="7" u2="@" k="8" /> + <hkern u1="7" u2="?" k="-33" /> + <hkern u1="7" u2=">" k="-49" /> + <hkern u1="7" u2="=" k="-8" /> + <hkern u1="7" u2="<" k="49" /> + <hkern u1="7" u2="9" k="-16" /> + <hkern u1="7" u2="7" k="-49" /> + <hkern u1="7" u2="5" k="25" /> + <hkern u1="7" u2="4" k="90" /> + <hkern u1="7" u2="1" k="-8" /> + <hkern u1="7" u2="/" k="98" /> + <hkern u1="7" u2="+" k="82" /> + <hkern u1="7" u2="*" k="-33" /> + <hkern u1="7" u2="#" k="66" /> + <hkern u1="8" u2="≥" k="-16" /> + <hkern u1="8" u2="≠" k="-16" /> + <hkern u1="8" u2="≈" k="-33" /> + <hkern u1="8" u2="£" k="33" /> + <hkern u1="8" u2="_" k="16" /> + <hkern u1="8" u2="\" k="66" /> + <hkern u1="8" u2=">" k="-16" /> + <hkern u1="8" u2="&" k="16" /> + <hkern u1="8" u2="%" k="8" /> + <hkern u1="8" u2="#" k="16" /> + <hkern u1=";" u2="j" k="-4" /> + <hkern u1="<" u2="Ł" k="-2" /> + <hkern u1="<" u2="v" k="-8" /> + <hkern u1="<" u2="X" k="-2" /> + <hkern u1="<" u2="V" k="-2" /> + <hkern u1="<" u2="9" k="-49" /> + <hkern u1="<" u2="8" k="-49" /> + <hkern u1="<" u2="7" k="-115" /> + <hkern u1="<" u2="5" k="-33" /> + <hkern u1="<" u2="3" k="-16" /> + <hkern u1="<" u2="2" k="-49" /> + <hkern u1="<" u2="1" k="-49" /> + <hkern u1="=" u2="v" k="-2" /> + <hkern u1="=" u2="X" k="23" /> + <hkern u1="=" u2="V" k="29" /> + <hkern u1="=" u2="7" k="16" /> + <hkern u1="=" u2="5" k="-16" /> + <hkern u1=">" u2="ł" k="-2" /> + <hkern u1=">" u2="x" k="2" /> + <hkern u1=">" u2="v" k="2" /> + <hkern u1=">" u2="X" k="53" /> + <hkern u1=">" u2="V" k="49" /> + <hkern u1=">" u2="3" k="33" /> + <hkern u1=">" u2="2" k="16" /> + <hkern u1=">" u2="1" k="16" /> + <hkern u1="?" u2="Ł" k="2" /> + <hkern u1="?" u2="v" k="-37" /> + <hkern u1="?" u2="X" k="2" /> + <hkern u1="?" u2="7" k="-49" /> + <hkern u1="?" u2="4" k="33" /> + <hkern u1="?" u2="1" k="-16" /> + <hkern u1="@" u2="ł" k="2" /> + <hkern u1="@" u2="Ł" k="-16" /> + <hkern u1="@" u2="î" k="-2" /> + <hkern u1="@" u2="ß" k="4" /> + <hkern u1="@" u2="x" k="-8" /> + <hkern u1="@" u2="v" k="-27" /> + <hkern u1="@" u2="X" k="47" /> + <hkern u1="@" u2="V" k="45" /> + <hkern u1="@" u2="7" k="-16" /> + <hkern u1="@" u2="4" k="16" /> + <hkern u1="@" u2="3" k="16" /> + <hkern u1="B" u2="™" k="23" /> + <hkern u1="B" u2="•" k="18" /> + <hkern u1="B" u2="‡" k="-2" /> + <hkern u1="B" u2="†" k="-2" /> + <hkern u1="B" u2="Ł" k="-2" /> + <hkern u1="B" u2="ï" k="-2" /> + <hkern u1="B" u2="î" k="-2" /> + <hkern u1="B" u2="ß" k="31" /> + <hkern u1="B" u2="¿" k="49" /> + <hkern u1="B" u2="º" k="18" /> + <hkern u1="B" u2="·" k="2" /> + <hkern u1="B" u2="ª" k="27" /> + <hkern u1="B" u2="¡" k="2" /> + <hkern u1="B" u2="~" k="-2" /> + <hkern u1="B" u2="{" k="4" /> + <hkern u1="B" u2="v" k="8" /> + <hkern u1="B" u2="_" k="18" /> + <hkern u1="B" u2="\" k="55" /> + <hkern u1="B" u2="X" k="2" /> + <hkern u1="B" u2="V" k="2" /> + <hkern u1="B" u2=">" k="-23" /> + <hkern u1="B" u2="=" k="-2" /> + <hkern u1="B" u2="/" k="29" /> + <hkern u1="B" u2="+" k="8" /> + <hkern u1="B" u2="&" k="16" /> + <hkern u1="C" u2="î" k="-29" /> + <hkern u1="D" u2="ï" k="-2" /> + <hkern u1="D" u2="î" k="-2" /> + <hkern u1="E" u2="ï" k="-4" /> + <hkern u1="E" u2="î" k="-4" /> + <hkern u1="E" u2="ì" k="-23" /> + <hkern u1="F" u2="™" k="-37" /> + <hkern u1="F" u2="•" k="23" /> + <hkern u1="F" u2="‡" k="-41" /> + <hkern u1="F" u2="†" k="-41" /> + <hkern u1="F" u2="ƒ" k="141" /> + <hkern u1="F" u2="÷" k="2" /> + <hkern u1="F" u2="ï" k="-47" /> + <hkern u1="F" u2="î" k="-53" /> + <hkern u1="F" u2="í" k="4" /> + <hkern u1="F" u2="ì" k="-74" /> + <hkern u1="F" u2="ã" k="12" /> + <hkern u1="F" u2="ß" k="43" /> + <hkern u1="F" u2="×" k="2" /> + <hkern u1="F" u2="¿" k="145" /> + <hkern u1="F" u2="·" k="2" /> + <hkern u1="F" u2="¶" k="-37" /> + <hkern u1="F" u2="ª" k="27" /> + <hkern u1="F" u2="§" k="-37" /> + <hkern u1="F" u2="¦" k="-37" /> + <hkern u1="F" u2="¡" k="4" /> + <hkern u1="F" u2="~" k="41" /> + <hkern u1="F" u2="|" k="-41" /> + <hkern u1="F" u2="{" k="37" /> + <hkern u1="F" u2="x" k="31" /> + <hkern u1="F" u2="v" k="39" /> + <hkern u1="F" u2="_" k="195" /> + <hkern u1="F" u2="^" k="-18" /> + <hkern u1="F" u2="\" k="-59" /> + <hkern u1="F" u2="X" k="-4" /> + <hkern u1="F" u2="V" k="-4" /> + <hkern u1="F" u2="@" k="20" /> + <hkern u1="F" u2="?" k="-20" /> + <hkern u1="F" u2=">" k="-23" /> + <hkern u1="F" u2="=" k="2" /> + <hkern u1="F" u2="<" k="2" /> + <hkern u1="F" u2="/" k="119" /> + <hkern u1="F" u2="+" k="39" /> + <hkern u1="F" u2="*" k="-27" /> + <hkern u1="F" u2=")" k="-53" /> + <hkern u1="F" u2="&" k="31" /> + <hkern u1="G" u2="î" k="-8" /> + <hkern u1="H" u2="ï" k="-4" /> + <hkern u1="H" u2="î" k="-2" /> + <hkern u1="H" u2="ì" k="-4" /> + <hkern u1="I" u2="ï" k="-4" /> + <hkern u1="I" u2="î" k="-2" /> + <hkern u1="I" u2="ì" k="-4" /> + <hkern u1="J" u2="ï" k="-2" /> + <hkern u1="J" u2="î" k="-12" /> + <hkern u1="J" u2="ì" k="-2" /> + <hkern u1="K" u2="ï" k="-14" /> + <hkern u1="K" u2="î" k="-6" /> + <hkern u1="K" u2="ì" k="-57" /> + <hkern u1="M" u2="ï" k="-4" /> + <hkern u1="M" u2="î" k="-2" /> + <hkern u1="M" u2="ì" k="-4" /> + <hkern u1="N" u2="ï" k="-4" /> + <hkern u1="N" u2="î" k="-2" /> + <hkern u1="N" u2="ì" k="-4" /> + <hkern u1="O" u2="ï" k="-2" /> + <hkern u1="O" u2="î" k="-2" /> + <hkern u1="P" u2="™" k="2" /> + <hkern u1="P" u2="•" k="39" /> + <hkern u1="P" u2="‡" k="-41" /> + <hkern u1="P" u2="†" k="-41" /> + <hkern u1="P" u2="ƒ" k="121" /> + <hkern u1="P" u2="š" k="29" /> + <hkern u1="P" u2="ł" k="8" /> + <hkern u1="P" u2="ü" k="41" /> + <hkern u1="P" u2="û" k="41" /> + <hkern u1="P" u2="ú" k="41" /> + <hkern u1="P" u2="ù" k="41" /> + <hkern u1="P" u2="÷" k="18" /> + <hkern u1="P" u2="ï" k="-47" /> + <hkern u1="P" u2="î" k="-78" /> + <hkern u1="P" u2="ì" k="-27" /> + <hkern u1="P" u2="ß" k="33" /> + <hkern u1="P" u2="×" k="-18" /> + <hkern u1="P" u2="¿" k="166" /> + <hkern u1="P" u2="·" k="39" /> + <hkern u1="P" u2="¶" k="-39" /> + <hkern u1="P" u2="§" k="-18" /> + <hkern u1="P" u2="~" k="41" /> + <hkern u1="P" u2="{" k="41" /> + <hkern u1="P" u2="v" k="-2" /> + <hkern u1="P" u2="_" k="182" /> + <hkern u1="P" u2="\" k="4" /> + <hkern u1="P" u2="X" k="14" /> + <hkern u1="P" u2="V" k="2" /> + <hkern u1="P" u2="@" k="8" /> + <hkern u1="P" u2="?" k="-41" /> + <hkern u1="P" u2=">" k="-41" /> + <hkern u1="P" u2="<" k="4" /> + <hkern u1="P" u2="/" k="145" /> + <hkern u1="P" u2="+" k="59" /> + <hkern u1="P" u2="*" k="-20" /> + <hkern u1="P" u2=")" k="2" /> + <hkern u1="P" u2="&" k="31" /> + <hkern u1="Q" u2="™" k="41" /> + <hkern u1="Q" u2="‡" k="-2" /> + <hkern u1="Q" u2="†" k="-2" /> + <hkern u1="Q" u2="ƒ" k="37" /> + <hkern u1="Q" u2="Ł" k="-8" /> + <hkern u1="Q" u2="÷" k="-2" /> + <hkern u1="Q" u2="î" k="-2" /> + <hkern u1="Q" u2="ß" k="23" /> + <hkern u1="Q" u2="×" k="-2" /> + <hkern u1="Q" u2="¡" k="2" /> + <hkern u1="Q" u2="~" k="-2" /> + <hkern u1="Q" u2="x" k="-2" /> + <hkern u1="Q" u2="^" k="-2" /> + <hkern u1="Q" u2="\" k="76" /> + <hkern u1="Q" u2="X" k="33" /> + <hkern u1="Q" u2="V" k="53" /> + <hkern u1="Q" u2=">" k="-39" /> + <hkern u1="Q" u2="=" k="-2" /> + <hkern u1="Q" u2="<" k="-20" /> + <hkern u1="Q" u2="+" k="-2" /> + <hkern u1="Q" u2=")" k="25" /> + <hkern u1="Q" u2="&" k="4" /> + <hkern u1="Q" u2="!" k="2" /> + <hkern u1="R" u2="ï" k="-4" /> + <hkern u1="R" u2="î" k="-23" /> + <hkern u1="S" u2="ï" k="-2" /> + <hkern u1="S" u2="î" k="-2" /> + <hkern u1="T" u2="ž" k="59" /> + <hkern u1="T" u2="š" k="23" /> + <hkern u1="T" u2="ÿ" k="102" /> + <hkern u1="T" u2="ü" k="137" /> + <hkern u1="T" u2="û" k="133" /> + <hkern u1="T" u2="ï" k="-70" /> + <hkern u1="T" u2="î" k="-37" /> + <hkern u1="T" u2="í" k="94" /> + <hkern u1="T" u2="ì" k="-82" /> + <hkern u1="T" u2="å" k="131" /> + <hkern u1="T" u2="ä" k="88" /> + <hkern u1="T" u2="ã" k="92" /> + <hkern u1="T" u2="â" k="111" /> + <hkern u1="T" u2="à" k="84" /> + <hkern u1="U" u2="ï" k="-2" /> + <hkern u1="U" u2="î" k="-12" /> + <hkern u1="U" u2="ì" k="-2" /> + <hkern u1="V" u2="™" k="-53" /> + <hkern u1="V" u2="•" k="84" /> + <hkern u1="V" u2="‡" k="-20" /> + <hkern u1="V" u2="†" k="-39" /> + <hkern u1="V" u2="ƒ" k="127" /> + <hkern u1="V" u2="ł" k="4" /> + <hkern u1="V" u2="÷" k="78" /> + <hkern u1="V" u2="ï" k="-37" /> + <hkern u1="V" u2="î" k="-23" /> + <hkern u1="V" u2="í" k="4" /> + <hkern u1="V" u2="ì" k="-70" /> + <hkern u1="V" u2="è" k="25" /> + <hkern u1="V" u2="ã" k="18" /> + <hkern u1="V" u2="ß" k="39" /> + <hkern u1="V" u2="×" k="20" /> + <hkern u1="V" u2="¿" k="133" /> + <hkern u1="V" u2="º" k="2" /> + <hkern u1="V" u2="·" k="63" /> + <hkern u1="V" u2="ª" k="4" /> + <hkern u1="V" u2="§" k="2" /> + <hkern u1="V" u2="¦" k="-39" /> + <hkern u1="V" u2="¡" k="49" /> + <hkern u1="V" u2="~" k="84" /> + <hkern u1="V" u2="|" k="-39" /> + <hkern u1="V" u2="{" k="61" /> + <hkern u1="V" u2="x" k="12" /> + <hkern u1="V" u2="v" k="16" /> + <hkern u1="V" u2="_" k="111" /> + <hkern u1="V" u2="^" k="2" /> + <hkern u1="V" u2="\" k="-41" /> + <hkern u1="V" u2="X" k="-20" /> + <hkern u1="V" u2="V" k="-20" /> + <hkern u1="V" u2="@" k="45" /> + <hkern u1="V" u2="?" k="-18" /> + <hkern u1="V" u2="=" k="29" /> + <hkern u1="V" u2="<" k="49" /> + <hkern u1="V" u2="/" k="133" /> + <hkern u1="V" u2="+" k="84" /> + <hkern u1="V" u2="*" k="-41" /> + <hkern u1="V" u2=")" k="-39" /> + <hkern u1="V" u2="&" k="88" /> + <hkern u1="W" u2="ï" k="-53" /> + <hkern u1="W" u2="î" k="-25" /> + <hkern u1="W" u2="í" k="4" /> + <hkern u1="W" u2="ì" k="-55" /> + <hkern u1="X" u2="•" k="66" /> + <hkern u1="X" u2="ł" k="2" /> + <hkern u1="X" u2="÷" k="25" /> + <hkern u1="X" u2="ï" k="-25" /> + <hkern u1="X" u2="î" k="-20" /> + <hkern u1="X" u2="ì" k="-78" /> + <hkern u1="X" u2="ß" k="4" /> + <hkern u1="X" u2="×" k="23" /> + <hkern u1="X" u2="º" k="8" /> + <hkern u1="X" u2="·" k="63" /> + <hkern u1="X" u2="¶" k="2" /> + <hkern u1="X" u2="ª" k="8" /> + <hkern u1="X" u2="¦" k="-20" /> + <hkern u1="X" u2="¡" k="2" /> + <hkern u1="X" u2="~" k="43" /> + <hkern u1="X" u2="|" k="-39" /> + <hkern u1="X" u2="{" k="61" /> + <hkern u1="X" u2="x" k="-37" /> + <hkern u1="X" u2="v" k="39" /> + <hkern u1="X" u2="_" k="-33" /> + <hkern u1="X" u2="^" k="4" /> + <hkern u1="X" u2="\" k="-20" /> + <hkern u1="X" u2="V" k="-20" /> + <hkern u1="X" u2="@" k="53" /> + <hkern u1="X" u2="?" k="2" /> + <hkern u1="X" u2="=" k="23" /> + <hkern u1="X" u2="<" k="45" /> + <hkern u1="X" u2="/" k="-20" /> + <hkern u1="X" u2="+" k="27" /> + <hkern u1="X" u2="*" k="2" /> + <hkern u1="X" u2=")" k="-37" /> + <hkern u1="X" u2="&" k="29" /> + <hkern u1="Y" u2="š" k="90" /> + <hkern u1="Y" u2="ö" k="29" /> + <hkern u1="Y" u2="õ" k="178" /> + <hkern u1="Y" u2="ò" k="156" /> + <hkern u1="Y" u2="ð" k="162" /> + <hkern u1="Y" u2="ï" k="-29" /> + <hkern u1="Y" u2="î" k="-2" /> + <hkern u1="Y" u2="í" k="66" /> + <hkern u1="Y" u2="ì" k="-82" /> + <hkern u1="Y" u2="ë" k="35" /> + <hkern u1="Y" u2="è" k="35" /> + <hkern u1="Y" u2="ä" k="25" /> + <hkern u1="Y" u2="â" k="29" /> + <hkern u1="Y" u2="à" k="31" /> + <hkern u1="Z" u2="ï" k="-16" /> + <hkern u1="Z" u2="î" k="-16" /> + <hkern u1="Z" u2="ì" k="-35" /> + <hkern u1="[" u2="ï" k="-12" /> + <hkern u1="[" u2="î" k="-4" /> + <hkern u1="[" u2="ì" k="-86" /> + <hkern u1="\" u2="Ł" k="2" /> + <hkern u1="\" u2="x" k="-20" /> + <hkern u1="\" u2="v" k="29" /> + <hkern u1="\" u2="X" k="-20" /> + <hkern u1="\" u2="V" k="133" /> + <hkern u1="\" u2="8" k="33" /> + <hkern u1="\" u2="4" k="16" /> + <hkern u1="\" u2="3" k="16" /> + <hkern u1="\" u2="2" k="-16" /> + <hkern u1="^" u2="v" k="-4" /> + <hkern u1="^" u2="X" k="4" /> + <hkern u1="^" u2="V" k="2" /> + <hkern u1="_" u2="ƒ" k="-125" /> + <hkern u1="_" u2="ł" k="4" /> + <hkern u1="_" u2="x" k="-59" /> + <hkern u1="_" u2="v" k="82" /> + <hkern u1="_" u2="X" k="-33" /> + <hkern u1="_" u2="V" k="111" /> + <hkern u1="_" u2="8" k="16" /> + <hkern u1="_" u2="4" k="82" /> + <hkern u1="f" u2="ï" k="-49" /> + <hkern u1="f" u2="î" k="-49" /> + <hkern u1="f" u2="ì" k="-70" /> + <hkern u1="f" u2="j" k="-6" /> + <hkern u1="f" u2="i" k="-2" /> + <hkern u1="i" u2="ï" k="-2" /> + <hkern u1="i" u2="î" k="-2" /> + <hkern u1="i" u2="ì" k="-2" /> + <hkern u1="l" u2="ï" k="-2" /> + <hkern u1="l" u2="î" k="-2" /> + <hkern u1="q" u2="™" k="12" /> + <hkern u1="v" u2="™" k="2" /> + <hkern u1="v" u2="‡" k="-61" /> + <hkern u1="v" u2="†" k="-61" /> + <hkern u1="v" u2="ƒ" k="4" /> + <hkern u1="v" u2="ł" k="-8" /> + <hkern u1="v" u2="÷" k="2" /> + <hkern u1="v" u2="×" k="-4" /> + <hkern u1="v" u2="¿" k="45" /> + <hkern u1="v" u2="º" k="-4" /> + <hkern u1="v" u2="¶" k="-43" /> + <hkern u1="v" u2="§" k="-4" /> + <hkern u1="v" u2="¦" k="-41" /> + <hkern u1="v" u2="¡" k="2" /> + <hkern u1="v" u2="|" k="-4" /> + <hkern u1="v" u2="x" k="-18" /> + <hkern u1="v" u2="v" k="-8" /> + <hkern u1="v" u2="_" k="82" /> + <hkern u1="v" u2="^" k="-4" /> + <hkern u1="v" u2="\" k="41" /> + <hkern u1="v" u2="@" k="-18" /> + <hkern u1="v" u2="?" k="-41" /> + <hkern u1="v" u2=">" k="-8" /> + <hkern u1="v" u2="=" k="-2" /> + <hkern u1="v" u2="<" k="2" /> + <hkern u1="v" u2="/" k="45" /> + <hkern u1="v" u2="*" k="-25" /> + <hkern u1="v" u2=")" k="43" /> + <hkern u1="v" u2="&" k="8" /> + <hkern u1="x" u2="™" k="20" /> + <hkern u1="x" u2="•" k="2" /> + <hkern u1="x" u2="‡" k="-23" /> + <hkern u1="x" u2="†" k="-23" /> + <hkern u1="x" u2="÷" k="2" /> + <hkern u1="x" u2="¿" k="-2" /> + <hkern u1="x" u2="·" k="20" /> + <hkern u1="x" u2="¶" k="-2" /> + <hkern u1="x" u2="ª" k="2" /> + <hkern u1="x" u2="¦" k="-2" /> + <hkern u1="x" u2="¡" k="-18" /> + <hkern u1="x" u2="~" k="2" /> + <hkern u1="x" u2="|" k="-39" /> + <hkern u1="x" u2="x" k="-8" /> + <hkern u1="x" u2="v" k="-18" /> + <hkern u1="x" u2="_" k="-59" /> + <hkern u1="x" u2="\" k="51" /> + <hkern u1="x" u2="@" k="-8" /> + <hkern u1="x" u2="?" k="-4" /> + <hkern u1="x" u2="<" k="2" /> + <hkern u1="x" u2="/" k="-41" /> + <hkern u1="x" u2="*" k="-2" /> + <hkern u1="x" u2=")" k="2" /> + <hkern u1="x" u2="&" k="23" /> + <hkern u1="{" u2="ï" k="-12" /> + <hkern u1="{" u2="î" k="-4" /> + <hkern u1="{" u2="ì" k="-86" /> + <hkern u1="{" u2="æ" k="10" /> + <hkern u1="{" u2="å" k="10" /> + <hkern u1="{" u2="ä" k="10" /> + <hkern u1="{" u2="ã" k="10" /> + <hkern u1="{" u2="â" k="10" /> + <hkern u1="{" u2="á" k="10" /> + <hkern u1="{" u2="à" k="10" /> + <hkern u1="{" u2="a" k="10" /> + <hkern u1="|" u2="x" k="-39" /> + <hkern u1="|" u2="v" k="-4" /> + <hkern u1="|" u2="X" k="-39" /> + <hkern u1="|" u2="V" k="-39" /> + <hkern u1="|" u2="7" k="-33" /> + <hkern u1="}" u2="Ł" k="-18" /> + <hkern u1="}" u2="X" k="18" /> + <hkern u1="}" u2="V" k="18" /> + <hkern u1="~" u2="x" k="2" /> + <hkern u1="~" u2="X" k="43" /> + <hkern u1="~" u2="V" k="84" /> + <hkern u1="~" u2="7" k="33" /> + <hkern u1="~" u2="2" k="16" /> + <hkern u1="~" u2="1" k="16" /> + <hkern u1="¡" u2="ß" k="2" /> + <hkern u1="¡" u2="x" k="-18" /> + <hkern u1="¡" u2="v" k="2" /> + <hkern u1="¡" u2="X" k="2" /> + <hkern u1="¡" u2="V" k="49" /> + <hkern u1="¡" u2="7" k="-16" /> + <hkern u1="¢" u2="3" k="16" /> + <hkern u1="¥" u2="7" k="-49" /> + <hkern u1="¥" u2="4" k="16" /> + <hkern u1="¦" u2="x" k="-2" /> + <hkern u1="¦" u2="v" k="-41" /> + <hkern u1="¦" u2="X" k="-20" /> + <hkern u1="¦" u2="V" k="-39" /> + <hkern u1="¦" u2="8" k="16" /> + <hkern u1="¦" u2="7" k="-16" /> + <hkern u1="§" u2="V" k="2" /> + <hkern u1="¬" u2="3" k="16" /> + <hkern u1="°" u2="7" k="-66" /> + <hkern u1="°" u2="4" k="66" /> + <hkern u1="°" u2="1" k="-49" /> + <hkern u1="±" u2="7" k="16" /> + <hkern u1="±" u2="3" k="16" /> + <hkern u1="·" u2="x" k="20" /> + <hkern u1="·" u2="X" k="63" /> + <hkern u1="·" u2="V" k="63" /> + <hkern u1="·" u2="7" k="33" /> + <hkern u1="·" u2="1" k="49" /> + <hkern u1="¿" u2="ƒ" k="-14" /> + <hkern u1="¿" u2="ł" k="4" /> + <hkern u1="¿" u2="Ł" k="2" /> + <hkern u1="¿" u2="ß" k="8" /> + <hkern u1="¿" u2="v" k="66" /> + <hkern u1="¿" u2="V" k="137" /> + <hkern u1="¿" u2="9" k="8" /> + <hkern u1="¿" u2="4" k="33" /> + <hkern u1="¿" u2="3" k="16" /> + <hkern u1="¿" u2="1" k="16" /> + <hkern u1="Æ" u2="ï" k="-4" /> + <hkern u1="Æ" u2="î" k="-4" /> + <hkern u1="Æ" u2="ì" k="-23" /> + <hkern u1="Ç" u2="î" k="-29" /> + <hkern u1="È" u2="ï" k="-4" /> + <hkern u1="È" u2="î" k="-4" /> + <hkern u1="È" u2="ì" k="-23" /> + <hkern u1="É" u2="ï" k="-4" /> + <hkern u1="É" u2="î" k="-4" /> + <hkern u1="É" u2="ì" k="-23" /> + <hkern u1="Ê" u2="ï" k="-4" /> + <hkern u1="Ê" u2="î" k="-4" /> + <hkern u1="Ê" u2="ì" k="-23" /> + <hkern u1="Ë" u2="ï" k="-4" /> + <hkern u1="Ë" u2="î" k="-4" /> + <hkern u1="Ë" u2="ì" k="-23" /> + <hkern u1="Ì" u2="ï" k="-4" /> + <hkern u1="Ì" u2="î" k="-2" /> + <hkern u1="Ì" u2="ì" k="-4" /> + <hkern u1="Í" u2="ï" k="-4" /> + <hkern u1="Í" u2="î" k="-2" /> + <hkern u1="Í" u2="ì" k="-4" /> + <hkern u1="Í" u2="Ï" k="-90" /> + <hkern u1="Í" u2="Ì" k="-162" /> + <hkern u1="Î" u2="ï" k="-4" /> + <hkern u1="Î" u2="î" k="-2" /> + <hkern u1="Î" u2="ì" k="-4" /> + <hkern u1="Î" u2="Ï" k="-72" /> + <hkern u1="Î" u2="Î" k="-109" /> + <hkern u1="Î" u2="Ì" k="-53" /> + <hkern u1="Ï" u2="ï" k="-4" /> + <hkern u1="Ï" u2="î" k="-2" /> + <hkern u1="Ï" u2="ì" k="-4" /> + <hkern u1="Ï" u2="Ï" k="-37" /> + <hkern u1="Ï" u2="Î" k="-63" /> + <hkern u1="Ï" u2="Ì" k="-72" /> + <hkern u1="Ð" u2="ï" k="-2" /> + <hkern u1="Ð" u2="î" k="-2" /> + <hkern u1="Ñ" u2="ï" k="-4" /> + <hkern u1="Ñ" u2="î" k="-2" /> + <hkern u1="Ñ" u2="ì" k="-4" /> + <hkern u1="Ò" u2="ï" k="-2" /> + <hkern u1="Ò" u2="î" k="-2" /> + <hkern u1="Ó" u2="ï" k="-2" /> + <hkern u1="Ó" u2="î" k="-2" /> + <hkern u1="Ô" u2="ï" k="-2" /> + <hkern u1="Ô" u2="î" k="-2" /> + <hkern u1="Õ" u2="ï" k="-2" /> + <hkern u1="Õ" u2="î" k="-2" /> + <hkern u1="Ö" u2="ï" k="-2" /> + <hkern u1="Ö" u2="î" k="-2" /> + <hkern u1="×" u2="v" k="-4" /> + <hkern u1="×" u2="X" k="23" /> + <hkern u1="×" u2="V" k="20" /> + <hkern u1="Ø" u2="ï" k="-2" /> + <hkern u1="Ø" u2="î" k="-2" /> + <hkern u1="Ù" u2="ï" k="-2" /> + <hkern u1="Ù" u2="î" k="-12" /> + <hkern u1="Ù" u2="ì" k="-2" /> + <hkern u1="Ú" u2="ï" k="-2" /> + <hkern u1="Ú" u2="î" k="-12" /> + <hkern u1="Ú" u2="ì" k="-2" /> + <hkern u1="Û" u2="ï" k="-2" /> + <hkern u1="Û" u2="î" k="-12" /> + <hkern u1="Û" u2="ì" k="-2" /> + <hkern u1="Ü" u2="ï" k="-2" /> + <hkern u1="Ü" u2="î" k="-12" /> + <hkern u1="Ü" u2="ì" k="-2" /> + <hkern u1="Ý" u2="š" k="90" /> + <hkern u1="Ý" u2="ö" k="29" /> + <hkern u1="Ý" u2="õ" k="178" /> + <hkern u1="Ý" u2="ò" k="156" /> + <hkern u1="Ý" u2="ð" k="162" /> + <hkern u1="Ý" u2="ï" k="-29" /> + <hkern u1="Ý" u2="î" k="-2" /> + <hkern u1="Ý" u2="í" k="57" /> + <hkern u1="Ý" u2="ì" k="-82" /> + <hkern u1="Ý" u2="ë" k="35" /> + <hkern u1="Ý" u2="è" k="35" /> + <hkern u1="Ý" u2="ä" k="25" /> + <hkern u1="Ý" u2="â" k="29" /> + <hkern u1="Ý" u2="à" k="31" /> + <hkern u1="Þ" u2="™" k="63" /> + <hkern u1="Þ" u2="•" k="-2" /> + <hkern u1="Þ" u2="‡" k="-20" /> + <hkern u1="Þ" u2="†" k="-20" /> + <hkern u1="Þ" u2="ƒ" k="84" /> + <hkern u1="Þ" u2="ł" k="-39" /> + <hkern u1="Þ" u2="Ł" k="-27" /> + <hkern u1="Þ" u2="÷" k="-2" /> + <hkern u1="Þ" u2="ß" k="29" /> + <hkern u1="Þ" u2="×" k="-2" /> + <hkern u1="Þ" u2="¿" k="51" /> + <hkern u1="Þ" u2="·" k="-18" /> + <hkern u1="Þ" u2="~" k="-20" /> + <hkern u1="Þ" u2="x" k="-18" /> + <hkern u1="Þ" u2="v" k="-18" /> + <hkern u1="Þ" u2="_" k="66" /> + <hkern u1="Þ" u2="^" k="-2" /> + <hkern u1="Þ" u2="\" k="86" /> + <hkern u1="Þ" u2="X" k="45" /> + <hkern u1="Þ" u2="V" k="33" /> + <hkern u1="Þ" u2="@" k="-8" /> + <hkern u1="Þ" u2="?" k="-18" /> + <hkern u1="Þ" u2=">" k="-20" /> + <hkern u1="Þ" u2="=" k="-2" /> + <hkern u1="Þ" u2="<" k="-2" /> + <hkern u1="Þ" u2="/" k="90" /> + <hkern u1="Þ" u2="+" k="-2" /> + <hkern u1="Þ" u2=")" k="23" /> + <hkern u1="Þ" u2="&" k="23" /> + <hkern u1="ß" u2="™" k="8" /> + <hkern u1="ß" u2="‡" k="-2" /> + <hkern u1="ß" u2="ƒ" k="2" /> + <hkern u1="ß" u2="ł" k="-10" /> + <hkern u1="ß" u2="÷" k="-2" /> + <hkern u1="ß" u2="ï" k="-2" /> + <hkern u1="ß" u2="î" k="-2" /> + <hkern u1="ß" u2="ß" k="27" /> + <hkern u1="ß" u2="º" k="20" /> + <hkern u1="ß" u2="ª" k="41" /> + <hkern u1="ß" u2="v" k="2" /> + <hkern u1="ß" u2="_" k="-4" /> + <hkern u1="ß" u2="\" k="29" /> + <hkern u1="ß" u2=">" k="-12" /> + <hkern u1="ß" u2="=" k="-2" /> + <hkern u1="ß" u2="/" k="-18" /> + <hkern u1="ß" u2=")" k="-37" /> + <hkern u1="ß" u2="&" k="2" /> + <hkern u1="é" u2="\" k="141" /> + <hkern u1="ë" u2="\" k="141" /> + <hkern u1="ì" u2="™" k="8" /> + <hkern u1="ì" u2="\" k="43" /> + <hkern u1="í" u2="™" k="-10" /> + <hkern u1="í" u2="”" k="-119" /> + <hkern u1="í" u2="“" k="-59" /> + <hkern u1="í" u2="’" k="-119" /> + <hkern u1="í" u2="‘" k="-59" /> + <hkern u1="í" u2="š" k="-2" /> + <hkern u1="í" u2="ï" k="-90" /> + <hkern u1="í" u2="î" k="-82" /> + <hkern u1="í" u2="ì" k="-156" /> + <hkern u1="í" u2="}" k="-86" /> + <hkern u1="í" u2="|" k="-8" /> + <hkern u1="í" u2="i" k="-2" /> + <hkern u1="í" u2="]" k="-86" /> + <hkern u1="í" u2="\" k="-139" /> + <hkern u1="í" u2="?" k="-51" /> + <hkern u1="í" u2="*" k="-2" /> + <hkern u1="í" u2=")" k="-63" /> + <hkern u1="í" u2="'" k="-72" /> + <hkern u1="í" u2=""" k="-72" /> + <hkern u1="í" u2="!" k="-2" /> + <hkern u1="î" u2="™" k="-4" /> + <hkern u1="î" u2="†" k="-14" /> + <hkern u1="î" u2="”" k="-63" /> + <hkern u1="î" u2="“" k="-76" /> + <hkern u1="î" u2="’" k="-63" /> + <hkern u1="î" u2="‘" k="-76" /> + <hkern u1="î" u2="š" k="-2" /> + <hkern u1="î" u2="ï" k="-109" /> + <hkern u1="î" u2="î" k="-131" /> + <hkern u1="î" u2="ì" k="-8" /> + <hkern u1="î" u2="}" k="-4" /> + <hkern u1="î" u2="|" k="-4" /> + <hkern u1="î" u2="j" k="-2" /> + <hkern u1="î" u2="i" k="-4" /> + <hkern u1="î" u2="]" k="-4" /> + <hkern u1="î" u2="\" k="-43" /> + <hkern u1="î" u2="?" k="-84" /> + <hkern u1="î" u2="*" k="-63" /> + <hkern u1="î" u2=")" k="-4" /> + <hkern u1="î" u2="'" k="-72" /> + <hkern u1="î" u2="&" k="2" /> + <hkern u1="î" u2=""" k="-72" /> + <hkern u1="î" u2="!" k="-2" /> + <hkern u1="ï" u2="™" k="-10" /> + <hkern u1="ï" u2="†" k="-10" /> + <hkern u1="ï" u2="”" k="-66" /> + <hkern u1="ï" u2="“" k="-57" /> + <hkern u1="ï" u2="’" k="-66" /> + <hkern u1="ï" u2="‘" k="-57" /> + <hkern u1="ï" u2="š" k="-2" /> + <hkern u1="ï" u2="ï" k="-86" /> + <hkern u1="ï" u2="î" k="-90" /> + <hkern u1="ï" u2="ì" k="-82" /> + <hkern u1="ï" u2="ã" k="-2" /> + <hkern u1="ï" u2="}" k="-12" /> + <hkern u1="ï" u2="|" k="-4" /> + <hkern u1="ï" u2="j" k="-4" /> + <hkern u1="ï" u2="i" k="-4" /> + <hkern u1="ï" u2="]" k="-12" /> + <hkern u1="ï" u2="\" k="-31" /> + <hkern u1="ï" u2="?" k="-66" /> + <hkern u1="ï" u2="*" k="-55" /> + <hkern u1="ï" u2=")" k="-8" /> + <hkern u1="ï" u2="'" k="-72" /> + <hkern u1="ï" u2="&" k="2" /> + <hkern u1="ï" u2=""" k="-72" /> + <hkern u1="ï" u2="!" k="-2" /> + <hkern u1="ð" u2="”" k="12" /> + <hkern u1="ð" u2="“" k="12" /> + <hkern u1="ð" u2="’" k="12" /> + <hkern u1="ð" u2="‘" k="12" /> + <hkern u1="ð" u2="\" k="86" /> + <hkern u1="ó" u2="\" k="201" /> + <hkern u1="õ" u2="\" k="201" /> + <hkern u1="ö" u2="\" k="201" /> + <hkern u1="÷" u2="x" k="2" /> + <hkern u1="÷" u2="v" k="2" /> + <hkern u1="÷" u2="X" k="25" /> + <hkern u1="÷" u2="V" k="78" /> + <hkern u1="÷" u2="4" k="16" /> + <hkern u1="÷" u2="3" k="33" /> + <hkern u1="÷" u2="1" k="16" /> + <hkern u1="ł" u2="‡" k="-43" /> + <hkern u1="ł" u2="†" k="-8" /> + <hkern u1="ł" u2="ƒ" k="2" /> + <hkern u1="ł" u2="ł" k="-18" /> + <hkern u1="ł" u2="¿" k="2" /> + <hkern u1="ł" u2="º" k="-2" /> + <hkern u1="ł" u2="·" k="-18" /> + <hkern u1="ł" u2="¶" k="-37" /> + <hkern u1="ł" u2="x" k="-43" /> + <hkern u1="ł" u2="v" k="-57" /> + <hkern u1="ł" u2="@" k="-53" /> + <hkern u1="ł" u2="?" k="-2" /> + <hkern u1="ł" u2=">" k="-10" /> + <hkern u1="ł" u2="=" k="-4" /> + <hkern u1="ł" u2="/" k="-18" /> + <hkern u1="ł" u2="*" k="-4" /> + <hkern u1="ł" u2="&" k="4" /> + <hkern u1="Œ" u2="ï" k="-4" /> + <hkern u1="Œ" u2="î" k="-4" /> + <hkern u1="Œ" u2="ì" k="-23" /> + <hkern u1="Š" u2="ï" k="-2" /> + <hkern u1="Š" u2="î" k="-2" /> + <hkern u1="š" u2="\" k="115" /> + <hkern u1="Ÿ" u2="š" k="90" /> + <hkern u1="Ÿ" u2="ö" k="29" /> + <hkern u1="Ÿ" u2="õ" k="178" /> + <hkern u1="Ÿ" u2="ò" k="156" /> + <hkern u1="Ÿ" u2="ð" k="162" /> + <hkern u1="Ÿ" u2="ï" k="-29" /> + <hkern u1="Ÿ" u2="î" k="-2" /> + <hkern u1="Ÿ" u2="í" k="57" /> + <hkern u1="Ÿ" u2="ì" k="-82" /> + <hkern u1="Ÿ" u2="ë" k="35" /> + <hkern u1="Ÿ" u2="è" k="35" /> + <hkern u1="Ÿ" u2="ä" k="25" /> + <hkern u1="Ÿ" u2="â" k="29" /> + <hkern u1="Ÿ" u2="à" k="31" /> + <hkern u1="Ž" u2="ï" k="-16" /> + <hkern u1="Ž" u2="î" k="-16" /> + <hkern u1="Ž" u2="ì" k="-35" /> + <hkern u1="ž" u2="\" k="68" /> + <hkern u1="ƒ" u2="™" k="-4" /> + <hkern u1="ƒ" u2="‡" k="-37" /> + <hkern u1="ƒ" u2="†" k="-37" /> + <hkern u1="ƒ" u2="ƒ" k="180" /> + <hkern u1="ƒ" u2="÷" k="59" /> + <hkern u1="ƒ" u2="ï" k="-16" /> + <hkern u1="ƒ" u2="î" k="-12" /> + <hkern u1="ƒ" u2="ì" k="-16" /> + <hkern u1="ƒ" u2="×" k="-2" /> + <hkern u1="ƒ" u2="º" k="-2" /> + <hkern u1="ƒ" u2="¶" k="12" /> + <hkern u1="ƒ" u2="ª" k="-2" /> + <hkern u1="ƒ" u2="¦" k="-4" /> + <hkern u1="ƒ" u2="~" k="43" /> + <hkern u1="ƒ" u2="x" k="18" /> + <hkern u1="ƒ" u2="v" k="18" /> + <hkern u1="ƒ" u2="_" k="127" /> + <hkern u1="ƒ" u2="\" k="-82" /> + <hkern u1="ƒ" u2="@" k="37" /> + <hkern u1="ƒ" u2="?" k="-4" /> + <hkern u1="ƒ" u2=">" k="-82" /> + <hkern u1="ƒ" u2="=" k="20" /> + <hkern u1="ƒ" u2="<" k="45" /> + <hkern u1="ƒ" u2="/" k="92" /> + <hkern u1="ƒ" u2="+" k="45" /> + <hkern u1="ƒ" u2="*" k="-61" /> + <hkern u1="ƒ" u2=")" k="-20" /> + <hkern u1="ƒ" u2="&" k="43" /> + <hkern u1="‘" u2="ð" k="18" /> + <hkern u1="‘" u2="ï" k="-66" /> + <hkern u1="‘" u2="î" k="-63" /> + <hkern u1="‘" u2="ì" k="-82" /> + <hkern u1="’" u2="ð" k="33" /> + <hkern u1="’" u2="ï" k="-53" /> + <hkern u1="’" u2="î" k="-72" /> + <hkern u1="’" u2="ì" k="-53" /> + <hkern u1="‚" u2="g" k="-20" /> + <hkern u1="“" u2="ð" k="18" /> + <hkern u1="“" u2="ï" k="-66" /> + <hkern u1="“" u2="î" k="-63" /> + <hkern u1="“" u2="ì" k="-82" /> + <hkern u1="”" u2="ð" k="33" /> + <hkern u1="”" u2="ï" k="-53" /> + <hkern u1="”" u2="î" k="-72" /> + <hkern u1="”" u2="ì" k="-53" /> + <hkern u1="„" u2="g" k="-20" /> + <hkern u1="†" u2="x" k="-23" /> + <hkern u1="†" u2="v" k="-61" /> + <hkern u1="†" u2="V" k="-39" /> + <hkern u1="‡" u2="ł" k="-2" /> + <hkern u1="‡" u2="Ł" k="-4" /> + <hkern u1="‡" u2="x" k="-23" /> + <hkern u1="‡" u2="v" k="-61" /> + <hkern u1="‡" u2="V" k="-20" /> + <hkern u1="•" u2="x" k="2" /> + <hkern u1="•" u2="X" k="66" /> + <hkern u1="•" u2="V" k="84" /> + <hkern u1="…" u2="g" k="23" /> + <hkern u1="−" u2="3" k="33" /> + <hkern u1="−" u2="2" k="16" /> + <hkern u1="−" u2=")" k="82" /> + <hkern u1="√" u2="9" k="66" /> + <hkern u1="√" u2="8" k="66" /> + <hkern u1="√" u2="5" k="82" /> + <hkern u1="√" u2="4" k="164" /> + <hkern u1="√" u2="3" k="66" /> + <hkern u1="√" u2="2" k="82" /> + <hkern u1="√" u2="1" k="49" /> + <hkern u1="∞" u2="7" k="16" /> + <hkern u1="∫" u2="9" k="-33" /> + <hkern u1="∫" u2="8" k="-16" /> + <hkern u1="∫" u2="7" k="-147" /> + <hkern u1="∫" u2="5" k="-33" /> + <hkern u1="∫" u2="3" k="-66" /> + <hkern u1="∫" u2="2" k="-66" /> + <hkern u1="∫" u2="1" k="-66" /> + <hkern u1="≈" u2="8" k="-33" /> + <hkern u1="≈" u2="7" k="33" /> + <hkern u1="≈" u2="4" k="-16" /> + <hkern u1="≠" u2="8" k="-16" /> + <hkern u1="≥" u2="1" k="16" /> + <hkern g1="approxequal" + g2="zero,six" + k="-33" /> + <hkern g1="asciitilde" + g2="zero,six" + k="-16" /> + <hkern g1="cent" + g2="zero,six" + k="16" /> + <hkern g1="copyright,registered" + g2="five" + k="16" /> + <hkern g1="copyright,registered" + g2="four" + k="16" /> + <hkern g1="copyright,registered" + g2="one" + k="16" /> + <hkern g1="copyright,registered" + g2="three" + k="49" /> + <hkern g1="dollar" + g2="zero,six" + k="16" /> + <hkern g1="equal" + g2="zero,six" + k="-16" /> + <hkern g1="greaterequal" + g2="zero,six" + k="-16" /> + <hkern g1="infinity" + g2="zero,six" + k="-16" /> + <hkern g1="less" + g2="zero,six" + k="-33" /> + <hkern g1="lessequal" + g2="zero,six" + k="-16" /> + <hkern g1="minus" + g2="zero,six" + k="-16" /> + <hkern g1="minus" + g2="bracketright,braceright" + k="72" /> + <hkern g1="notequal" + g2="zero,six" + k="-16" /> + <hkern g1="percent" + g2="zero,six" + k="33" /> + <hkern g1="plus" + g2="bracketright,braceright" + k="72" /> + <hkern g1="radical" + g2="zero,six" + k="164" /> + <hkern g1="sterling" + g2="zero,six" + k="16" /> + <hkern g1="backslash" + g2="zero,six" + k="66" /> + <hkern g1="bracketleft,braceleft" + g2="five" + k="33" /> + <hkern g1="bracketleft,braceleft" + g2="four" + k="49" /> + <hkern g1="bracketleft,braceleft" + g2="hyphen,endash,emdash" + k="37" /> + <hkern g1="bracketleft,braceleft" + g2="minus" + k="72" /> + <hkern g1="bracketleft,braceleft" + g2="nine" + k="-16" /> + <hkern g1="bracketleft,braceleft" + g2="plus" + k="72" /> + <hkern g1="bracketleft,braceleft" + g2="seven" + k="-82" /> + <hkern g1="colon,semicolon" + g2="nine" + k="-25" /> + <hkern g1="colon,semicolon" + g2="seven" + k="-16" /> + <hkern g1="comma,period,ellipsis" + g2="zero,six" + k="33" /> + <hkern g1="comma,period,ellipsis" + g2="four" + k="82" /> + <hkern g1="comma,period,ellipsis" + g2="seven" + k="33" /> + <hkern g1="comma,period,ellipsis" + g2="eight" + k="16" /> + <hkern g1="comma,period,ellipsis" + g2="one" + k="115" /> + <hkern g1="guilsinglleft" + g2="one" + k="-33" /> + <hkern g1="guilsinglleft" + g2="two" + k="-25" /> + <hkern g1="guilsinglleft" + g2="exclam" + k="2" /> + <hkern g1="guilsinglright" + g2="seven" + k="49" /> + <hkern g1="guilsinglright" + g2="one" + k="49" /> + <hkern g1="guilsinglright" + g2="two" + k="16" /> + <hkern g1="guilsinglright" + g2="three" + k="16" /> + <hkern g1="hyphen,endash,emdash" + g2="five" + k="16" /> + <hkern g1="hyphen,endash,emdash" + g2="four" + k="8" /> + <hkern g1="hyphen,endash,emdash" + g2="seven" + k="49" /> + <hkern g1="hyphen,endash,emdash" + g2="one" + k="33" /> + <hkern g1="hyphen,endash,emdash" + g2="three" + k="33" /> + <hkern g1="hyphen,endash,emdash" + g2="bracketright,braceright" + k="37" /> + <hkern g1="hyphen,endash,emdash" + g2="parenright" + k="82" /> + <hkern g1="hyphen,endash,emdash" + g2="space" + k="102" /> + <hkern g1="numbersign" + g2="zero,six" + k="33" /> + <hkern g1="parenleft" + g2="zero,six" + k="33" /> + <hkern g1="parenleft" + g2="hyphen,endash,emdash" + k="82" /> + <hkern g1="questiondown" + g2="zero,six" + k="33" /> + <hkern g1="questiondown" + g2="quoteleft,quotedblleft" + k="53" /> + <hkern g1="questiondown" + g2="quotesinglbase,quotedblbase" + k="-72" /> + <hkern g1="quotedbl,quotesingle" + g2="four" + k="82" /> + <hkern g1="quotedbl,quotesingle" + g2="seven" + k="-33" /> + <hkern g1="quotedbl,quotesingle" + g2="one" + k="-49" /> + <hkern g1="quotedbl,quotesingle" + g2="two" + k="-16" /> + <hkern g1="quoteleft,quotedblleft" + g2="zero,six" + k="16" /> + <hkern g1="quoteleft,quotedblleft" + g2="four" + k="115" /> + <hkern g1="quoteleft,quotedblleft" + g2="seven" + k="-33" /> + <hkern g1="quoteleft,quotedblleft" + g2="one" + k="-33" /> + <hkern g1="quoteright,quotedblright" + g2="zero,six" + k="33" /> + <hkern g1="quoteright,quotedblright" + g2="five" + k="49" /> + <hkern g1="quoteright,quotedblright" + g2="four" + k="115" /> + <hkern g1="quoteright,quotedblright" + g2="seven" + k="-33" /> + <hkern g1="quoteright,quotedblright" + g2="eight" + k="16" /> + <hkern g1="quoteright,quotedblright" + g2="one" + k="-16" /> + <hkern g1="quoteright,quotedblright" + g2="two" + k="16" /> + <hkern g1="quoteright,quotedblright" + g2="comma,period,ellipsis" + k="127" /> + <hkern g1="quoteright,quotedblright" + g2="question" + k="-37" /> + <hkern g1="quoteright,quotedblright" + g2="questiondown" + k="109" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="zero,six" + k="49" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="four" + k="49" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="seven" + k="33" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="one" + k="66" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="two" + k="-16" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="three" + k="33" /> + <hkern g1="slash" + g2="zero,six" + k="66" /> + <hkern g1="underscore" + g2="zero,six" + k="33" /> + <hkern g1="exclam" + g2="guilsinglright" + k="2" /> + <hkern g1="eight" + g2="comma,period,ellipsis" + k="16" /> + <hkern g1="eight" + g2="zero,six" + k="8" /> + <hkern g1="five" + g2="comma,period,ellipsis" + k="16" /> + <hkern g1="five" + g2="quoteleft,quotedblleft" + k="16" /> + <hkern g1="five" + g2="quotesinglbase,quotedblbase" + k="16" /> + <hkern g1="four" + g2="quoteleft,quotedblleft" + k="33" /> + <hkern g1="four" + g2="quoteright,quotedblright" + k="33" /> + <hkern g1="one" + g2="comma,period,ellipsis" + k="16" /> + <hkern g1="one" + g2="zero,six" + k="-8" /> + <hkern g1="one" + g2="quoteright,quotedblright" + k="16" /> + <hkern g1="one" + g2="bracketright,braceright" + k="-16" /> + <hkern g1="one" + g2="copyright,registered" + k="16" /> + <hkern g1="one" + g2="quotedbl,quotesingle" + k="16" /> + <hkern g1="seven" + g2="comma,period,ellipsis" + k="180" /> + <hkern g1="seven" + g2="quoteleft,quotedblleft" + k="-49" /> + <hkern g1="seven" + g2="quotesinglbase,quotedblbase" + k="115" /> + <hkern g1="seven" + g2="quoteright,quotedblright" + k="-33" /> + <hkern g1="seven" + g2="copyright,registered" + k="16" /> + <hkern g1="seven" + g2="quotedbl,quotesingle" + k="-33" /> + <hkern g1="seven" + g2="colon,semicolon" + k="49" /> + <hkern g1="seven" + g2="guilsinglleft" + k="98" /> + <hkern g1="seven" + g2="guilsinglright" + k="33" /> + <hkern g1="seven" + g2="hyphen,endash,emdash" + k="82" /> + <hkern g1="six" + g2="comma,period,ellipsis" + k="16" /> + <hkern g1="six" + g2="quotesinglbase,quotedblbase" + k="16" /> + <hkern g1="six" + g2="copyright,registered" + k="16" /> + <hkern g1="three" + g2="comma,period,ellipsis" + k="16" /> + <hkern g1="three" + g2="quoteright,quotedblright" + k="8" /> + <hkern g1="three" + g2="hyphen,endash,emdash" + k="16" /> + <hkern g1="two" + g2="guilsinglright" + k="8" /> + <hkern g1="zero,nine" + g2="comma,period,ellipsis" + k="66" /> + <hkern g1="zero,nine" + g2="zero,six" + k="8" /> + <hkern g1="zero,nine" + g2="quoteleft,quotedblleft" + k="16" /> + <hkern g1="zero,nine" + g2="quotesinglbase,quotedblbase" + k="33" /> + <hkern g1="zero,nine" + g2="quoteright,quotedblright" + k="16" /> + <hkern g1="zero,nine" + g2="approxequal" + k="-33" /> + <hkern g1="zero,nine" + g2="asciitilde" + k="-16" /> + <hkern g1="zero,nine" + g2="backslash" + k="66" /> + <hkern g1="zero,nine" + g2="eight" + k="8" /> + <hkern g1="zero,nine" + g2="equal" + k="-16" /> + <hkern g1="zero,nine" + g2="five" + k="8" /> + <hkern g1="zero,nine" + g2="greaterequal" + k="-16" /> + <hkern g1="zero,nine" + g2="infinity" + k="-16" /> + <hkern g1="zero,nine" + g2="lessequal" + k="-16" /> + <hkern g1="zero,nine" + g2="minus" + k="-16" /> + <hkern g1="zero,nine" + g2="notequal" + k="-16" /> + <hkern g1="zero,nine" + g2="numbersign" + k="33" /> + <hkern g1="zero,nine" + g2="one" + k="8" /> + <hkern g1="zero,nine" + g2="parenright" + k="33" /> + <hkern g1="zero,nine" + g2="percent" + k="33" /> + <hkern g1="zero,nine" + g2="slash" + k="66" /> + <hkern g1="zero,nine" + g2="summation" + k="33" /> + <hkern g1="zero,nine" + g2="three" + k="8" /> + <hkern g1="zero,nine" + g2="underscore" + k="33" /> + <hkern g1="space" + g2="hyphen,endash,emdash" + k="102" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="55" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="J" + k="-18" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="Oslash" + k="43" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="S,Scaron,uni0405" + k="18" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="133" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="33" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="V,uni0423,uni0474" + k="115" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="90" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="Y,Yacute,Ydieresis,uni040E" + k="139" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="10" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="ampersand" + k="18" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="asciicircum" + k="51" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="asciitilde" + k="41" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="asterisk" + k="215" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="at" + k="66" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="backslash" + k="145" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="braceleft" + k="37" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="bullet" + k="63" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="20" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="copyright,registered" + k="55" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="dagger" + k="63" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="divide" + k="23" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="germandbls" + k="8" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="guilsinglleft" + k="45" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="hyphen,endash,emdash" + k="45" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="less" + k="41" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="m,n,p,r,ntilde" + k="8" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="ordfeminine" + k="213" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="ordmasculine" + k="176" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="oslash" + k="10" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="paragraph" + k="49" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="parenleft" + k="18" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="periodcentered" + k="45" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="plus" + k="35" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="question" + k="96" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="questiondown" + k="-59" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="quotedbl,quotesingle" + k="92" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="quoteleft,quotedblleft" + k="225" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="quoteright,quotedblright" + k="225" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="quotesinglbase,quotedblbase" + k="-18" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="slash" + k="-41" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="t" + k="49" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="trademark" + k="176" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="49" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="underscore" + k="-61" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="66" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="w" + k="61" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="57" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="Eth" + k="2" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="X,uni0416,uni0425,uni046A" + k="8" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="Z,Zcaron" + k="-4" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="bracketright,braceright" + k="2" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="colon,semicolon" + k="2" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="daggerdbl" + k="2" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="equal" + k="4" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="exclam" + k="4" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="exclamdown" + k="2" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="f,fi,fl,f_f_i,f_f_l" + k="4" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="greater" + k="-4" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="guilsinglright" + k="2" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="multiply" + k="2" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="parenright" + k="4" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="section" + k="2" /> + <hkern g1="B,uni0411,uni0412,uni0417,uni0432" + g2="J" + k="-33" /> + <hkern g1="B,uni0411,uni0412,uni0417,uni0432" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="-2" /> + <hkern g1="B,uni0411,uni0412,uni0417,uni0432" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="2" /> + <hkern g1="B,uni0411,uni0412,uni0417,uni0432" + g2="Y,Yacute,Ydieresis,uni040E" + k="14" /> + <hkern g1="B,uni0411,uni0412,uni0417,uni0432" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="16" /> + <hkern g1="B,uni0411,uni0412,uni0417,uni0432" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="-10" /> + <hkern g1="B,uni0411,uni0412,uni0417,uni0432" + g2="guilsinglleft" + k="20" /> + <hkern g1="B,uni0411,uni0412,uni0417,uni0432" + g2="m,n,p,r,ntilde" + k="8" /> + <hkern g1="B,uni0411,uni0412,uni0417,uni0432" + g2="oslash" + k="8" /> + <hkern g1="B,uni0411,uni0412,uni0417,uni0432" + g2="quoteright,quotedblright" + k="29" /> + <hkern g1="B,uni0411,uni0412,uni0417,uni0432" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="37" /> + <hkern g1="B,uni0411,uni0412,uni0417,uni0432" + g2="w" + k="8" /> + <hkern g1="B,uni0411,uni0412,uni0417,uni0432" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="8" /> + <hkern g1="B,uni0411,uni0412,uni0417,uni0432" + g2="Z,Zcaron" + k="-2" /> + <hkern g1="B,uni0411,uni0412,uni0417,uni0432" + g2="f,fi,fl,f_f_i,f_f_l" + k="8" /> + <hkern g1="B,uni0411,uni0412,uni0417,uni0432" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="39" /> + <hkern g1="B,uni0411,uni0412,uni0417,uni0432" + g2="comma,period,ellipsis" + k="27" /> + <hkern g1="B,uni0411,uni0412,uni0417,uni0432" + g2="s,scaron,uni0455" + k="8" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="18" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="Oslash" + k="10" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="12" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="2" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="V,uni0423,uni0474" + k="23" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="33" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="Y,Yacute,Ydieresis,uni040E" + k="53" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="39" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="ampersand" + k="33" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="asciicircum" + k="18" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="at" + k="53" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="backslash" + k="55" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="braceleft" + k="37" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="39" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="copyright,registered" + k="8" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="germandbls" + k="41" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="guilsinglleft" + k="25" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="hyphen,endash,emdash" + k="2" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="m,n,p,r,ntilde" + k="29" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="ordfeminine" + k="39" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="ordmasculine" + k="8" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="oslash" + k="29" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="plus" + k="2" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="questiondown" + k="45" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="quoteleft,quotedblleft" + k="2" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="quoteright,quotedblright" + k="2" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="quotesinglbase,quotedblbase" + k="8" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="slash" + k="55" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="t" + k="12" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="trademark" + k="20" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="41" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="underscore" + k="23" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="20" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="w" + k="20" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="29" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="X,uni0416,uni0425,uni046A" + k="35" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="bracketright,braceright" + k="-10" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="f,fi,fl,f_f_i,f_f_l" + k="18" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="greater" + k="-18" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="guilsinglright" + k="2" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="parenright" + k="8" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="section" + k="12" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="45" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="comma,period,ellipsis" + k="25" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="s,scaron,uni0455" + k="18" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="b,h,k,l,thorn" + k="20" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="florin" + k="82" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="x,uni0445,uni04B3" + k="18" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="z,zcaron" + k="18" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="S,Scaron,uni0405" + k="8" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="49" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="V,uni0423,uni0474" + k="51" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="43" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="Y,Yacute,Ydieresis,uni040E" + k="94" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="ampersand" + k="45" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="asciicircum" + k="-20" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="asciitilde" + k="-20" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="asterisk" + k="8" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="backslash" + k="76" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="-2" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="copyright,registered" + k="-18" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="dagger" + k="-2" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="divide" + k="-2" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="germandbls" + k="6" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="guilsinglleft" + k="12" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="less" + k="-2" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="ordfeminine" + k="20" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="periodcentered" + k="-2" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="plus" + k="-2" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="questiondown" + k="49" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="quoteleft,quotedblleft" + k="14" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="quoteright,quotedblright" + k="23" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="quotesinglbase,quotedblbase" + k="102" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="slash" + k="76" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="t" + k="-49" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="trademark" + k="70" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="underscore" + k="82" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="X,uni0416,uni0425,uni046A" + k="66" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="Z,Zcaron" + k="20" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="bracketright,braceright" + k="43" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="daggerdbl" + k="-2" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="equal" + k="-2" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="exclam" + k="2" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="exclamdown" + k="2" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="f,fi,fl,f_f_i,f_f_l" + k="-12" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="greater" + k="-20" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="guilsinglright" + k="20" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="multiply" + k="-2" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="parenright" + k="43" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="55" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="comma,period,ellipsis" + k="63" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="b,h,k,l,thorn" + k="2" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="florin" + k="119" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="z,zcaron" + k="-2" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="Lslash" + k="-18" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="bracketleft" + k="8" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="lslash" + k="-10" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="8" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="J" + k="23" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="Oslash" + k="8" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="-4" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="V,uni0423,uni0474" + k="-2" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-2" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="Y,Yacute,Ydieresis,uni040E" + k="-2" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="27" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="ampersand" + k="4" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="at" + k="45" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="braceleft" + k="57" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="37" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="dagger" + k="-2" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="germandbls" + k="37" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="guilsinglleft" + k="41" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="hyphen,endash,emdash" + k="8" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="m,n,p,r,ntilde" + k="27" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="ordfeminine" + k="20" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="ordmasculine" + k="20" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="oslash" + k="37" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="plus" + k="2" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="quoteright,quotedblright" + k="8" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="29" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="29" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="w" + k="29" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="29" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="X,uni0416,uni0425,uni046A" + k="-2" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="Z,Zcaron" + k="-4" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="bracketright,braceright" + k="-27" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="daggerdbl" + k="-2" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="f,fi,fl,f_f_i,f_f_l" + k="8" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="greater" + k="-23" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="guilsinglright" + k="18" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="parenright" + k="-18" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="s,scaron,uni0455" + k="8" /> + <hkern g1="F" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="10" /> + <hkern g1="F" + g2="J" + k="80" /> + <hkern g1="F" + g2="Oslash" + k="2" /> + <hkern g1="F" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="-63" /> + <hkern g1="F" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="8" /> + <hkern g1="F" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-4" /> + <hkern g1="F" + g2="Y,Yacute,Ydieresis,uni040E" + k="-4" /> + <hkern g1="F" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="72" /> + <hkern g1="F" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="70" /> + <hkern g1="F" + g2="guilsinglleft" + k="41" /> + <hkern g1="F" + g2="hyphen,endash,emdash" + k="23" /> + <hkern g1="F" + g2="m,n,p,r,ntilde" + k="55" /> + <hkern g1="F" + g2="oslash" + k="80" /> + <hkern g1="F" + g2="quotedbl,quotesingle" + k="-41" /> + <hkern g1="F" + g2="quoteleft,quotedblleft" + k="-39" /> + <hkern g1="F" + g2="quoteright,quotedblright" + k="-27" /> + <hkern g1="F" + g2="quotesinglbase,quotedblbase" + k="111" /> + <hkern g1="F" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="90" /> + <hkern g1="F" + g2="w" + k="39" /> + <hkern g1="F" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="35" /> + <hkern g1="F" + g2="Eth" + k="-8" /> + <hkern g1="F" + g2="Z,Zcaron" + k="-23" /> + <hkern g1="F" + g2="bracketright,braceright" + k="-53" /> + <hkern g1="F" + g2="colon,semicolon" + k="2" /> + <hkern g1="F" + g2="f,fi,fl,f_f_i,f_f_l" + k="18" /> + <hkern g1="F" + g2="guilsinglright" + k="20" /> + <hkern g1="F" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="96" /> + <hkern g1="F" + g2="comma,period,ellipsis" + k="207" /> + <hkern g1="F" + g2="s,scaron,uni0455" + k="31" /> + <hkern g1="F" + g2="b,h,k,l,thorn" + k="-8" /> + <hkern g1="F" + g2="z,zcaron" + k="23" /> + <hkern g1="F" + g2="i,igrave,iacute,icircumflex,idieresis,uni0469" + k="8" /> + <hkern g1="F" + g2="j" + k="10" /> + <hkern g1="G" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="12" /> + <hkern g1="G" + g2="V,uni0423,uni0474" + k="33" /> + <hkern g1="G" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="23" /> + <hkern g1="G" + g2="Y,Yacute,Ydieresis,uni040E" + k="63" /> + <hkern g1="G" + g2="ampersand" + k="33" /> + <hkern g1="G" + g2="asciitilde" + k="-8" /> + <hkern g1="G" + g2="backslash" + k="49" /> + <hkern g1="G" + g2="braceleft" + k="18" /> + <hkern g1="G" + g2="germandbls" + k="2" /> + <hkern g1="G" + g2="guilsinglleft" + k="14" /> + <hkern g1="G" + g2="ordmasculine" + k="2" /> + <hkern g1="G" + g2="question" + k="2" /> + <hkern g1="G" + g2="questiondown" + k="-37" /> + <hkern g1="G" + g2="quoteleft,quotedblleft" + k="2" /> + <hkern g1="G" + g2="quoteright,quotedblright" + k="12" /> + <hkern g1="G" + g2="slash" + k="-8" /> + <hkern g1="G" + g2="t" + k="-45" /> + <hkern g1="G" + g2="trademark" + k="23" /> + <hkern g1="G" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="8" /> + <hkern g1="G" + g2="underscore" + k="-20" /> + <hkern g1="G" + g2="X,uni0416,uni0425,uni046A" + k="2" /> + <hkern g1="G" + g2="bracketright,braceright" + k="2" /> + <hkern g1="G" + g2="exclamdown" + k="2" /> + <hkern g1="G" + g2="greater" + k="-39" /> + <hkern g1="G" + g2="guilsinglright" + k="2" /> + <hkern g1="G" + g2="parenright" + k="2" /> + <hkern g1="G" + g2="s,scaron,uni0455" + k="-2" /> + <hkern g1="G" + g2="x,uni0445,uni04B3" + k="-2" /> + <hkern g1="G" + g2="lslash" + k="-37" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="8" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="ampersand" + k="2" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="at" + k="18" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="braceleft" + k="53" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="bullet" + k="18" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="2" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="germandbls" + k="4" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="guilsinglleft" + k="18" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="ordfeminine" + k="4" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="ordmasculine" + k="2" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="oslash" + k="2" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="questiondown" + k="53" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="2" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="w" + k="2" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="greater" + k="-18" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="lslash" + k="2" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="J" + k="2" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="-2" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="2" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="ampersand" + k="14" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="asciitilde" + k="8" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="at" + k="12" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="backslash" + k="2" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="braceleft" + k="41" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="bullet" + k="41" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="10" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="divide" + k="8" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="germandbls" + k="23" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="guilsinglleft" + k="23" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="hyphen,endash,emdash" + k="8" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="less" + k="8" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="m,n,p,r,ntilde" + k="10" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="ordfeminine" + k="2" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="ordmasculine" + k="2" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="oslash" + k="10" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="periodcentered" + k="20" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="plus" + k="8" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="questiondown" + k="49" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="quotesinglbase,quotedblbase" + k="82" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="slash" + k="49" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="trademark" + k="2" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="2" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="underscore" + k="33" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="X,uni0416,uni0425,uni046A" + k="2" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="bracketright,braceright" + k="2" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="colon,semicolon" + k="10" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="equal" + k="2" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="exclamdown" + k="23" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="guilsinglright" + k="2" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="parenright" + k="2" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="59" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="comma,period,ellipsis" + k="55" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="s,scaron,uni0455" + k="2" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="florin" + k="102" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="lslash" + k="2" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="111" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="J" + k="14" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="Oslash" + k="45" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="S,Scaron,uni0405" + k="23" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="-2" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="18" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="V,uni0423,uni0474" + k="27" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="27" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="33" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="ampersand" + k="106" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="asciicircum" + k="41" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="asciitilde" + k="125" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="asterisk" + k="18" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="at" + k="109" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="backslash" + k="-4" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="braceleft" + k="84" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="bullet" + k="100" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="74" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="copyright,registered" + k="115" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="divide" + k="61" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="germandbls" + k="68" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="guilsinglleft" + k="131" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="hyphen,endash,emdash" + k="145" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="less" + k="106" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="m,n,p,r,ntilde" + k="29" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="ordfeminine" + k="82" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="ordmasculine" + k="63" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="oslash" + k="49" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="paragraph" + k="10" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="parenleft" + k="4" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="periodcentered" + k="82" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="plus" + k="80" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="question" + k="14" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="questiondown" + k="-25" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="quoteleft,quotedblleft" + k="8" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="quoteright,quotedblright" + k="2" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="slash" + k="-39" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="t" + k="68" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="trademark" + k="-2" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="113" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="underscore" + k="-43" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="100" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="w" + k="94" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="127" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="Eth" + k="8" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="Z,Zcaron" + k="-2" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="bracketright,braceright" + k="-8" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="colon,semicolon" + k="20" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="equal" + k="94" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="f,fi,fl,f_f_i,f_f_l" + k="43" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="greater" + k="-8" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="guilsinglright" + k="53" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="multiply" + k="20" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="parenright" + k="-8" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="section" + k="29" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="18" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="s,scaron,uni0455" + k="20" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="florin" + k="90" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="x,uni0445,uni04B3" + k="18" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="lslash" + k="2" /> + <hkern g1="L,Lslash" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="68" /> + <hkern g1="L,Lslash" + g2="J" + k="-39" /> + <hkern g1="L,Lslash" + g2="Oslash" + k="39" /> + <hkern g1="L,Lslash" + g2="S,Scaron,uni0405" + k="-2" /> + <hkern g1="L,Lslash" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="143" /> + <hkern g1="L,Lslash" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="20" /> + <hkern g1="L,Lslash" + g2="V,uni0423,uni0474" + k="125" /> + <hkern g1="L,Lslash" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="100" /> + <hkern g1="L,Lslash" + g2="Y,Yacute,Ydieresis,uni040E" + k="135" /> + <hkern g1="L,Lslash" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="-2" /> + <hkern g1="L,Lslash" + g2="ampersand" + k="47" /> + <hkern g1="L,Lslash" + g2="asciicircum" + k="98" /> + <hkern g1="L,Lslash" + g2="asciitilde" + k="90" /> + <hkern g1="L,Lslash" + g2="asterisk" + k="143" /> + <hkern g1="L,Lslash" + g2="at" + k="37" /> + <hkern g1="L,Lslash" + g2="backslash" + k="152" /> + <hkern g1="L,Lslash" + g2="braceleft" + k="53" /> + <hkern g1="L,Lslash" + g2="bullet" + k="39" /> + <hkern g1="L,Lslash" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="8" /> + <hkern g1="L,Lslash" + g2="copyright,registered" + k="39" /> + <hkern g1="L,Lslash" + g2="dagger" + k="4" /> + <hkern g1="L,Lslash" + g2="divide" + k="16" /> + <hkern g1="L,Lslash" + g2="germandbls" + k="8" /> + <hkern g1="L,Lslash" + g2="guilsinglleft" + k="41" /> + <hkern g1="L,Lslash" + g2="hyphen,endash,emdash" + k="74" /> + <hkern g1="L,Lslash" + g2="less" + k="74" /> + <hkern g1="L,Lslash" + g2="ordfeminine" + k="154" /> + <hkern g1="L,Lslash" + g2="ordmasculine" + k="154" /> + <hkern g1="L,Lslash" + g2="oslash" + k="8" /> + <hkern g1="L,Lslash" + g2="paragraph" + k="100" /> + <hkern g1="L,Lslash" + g2="periodcentered" + k="4" /> + <hkern g1="L,Lslash" + g2="plus" + k="39" /> + <hkern g1="L,Lslash" + g2="question" + k="96" /> + <hkern g1="L,Lslash" + g2="questiondown" + k="-59" /> + <hkern g1="L,Lslash" + g2="quotedbl,quotesingle" + k="160" /> + <hkern g1="L,Lslash" + g2="quoteleft,quotedblleft" + k="147" /> + <hkern g1="L,Lslash" + g2="quoteright,quotedblright" + k="127" /> + <hkern g1="L,Lslash" + g2="quotesinglbase,quotedblbase" + k="-45" /> + <hkern g1="L,Lslash" + g2="slash" + k="-80" /> + <hkern g1="L,Lslash" + g2="t" + k="35" /> + <hkern g1="L,Lslash" + g2="trademark" + k="227" /> + <hkern g1="L,Lslash" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="39" /> + <hkern g1="L,Lslash" + g2="underscore" + k="-63" /> + <hkern g1="L,Lslash" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="84" /> + <hkern g1="L,Lslash" + g2="w" + k="80" /> + <hkern g1="L,Lslash" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="94" /> + <hkern g1="L,Lslash" + g2="Z,Zcaron" + k="-8" /> + <hkern g1="L,Lslash" + g2="bracketright,braceright" + k="-18" /> + <hkern g1="L,Lslash" + g2="equal" + k="33" /> + <hkern g1="L,Lslash" + g2="f,fi,fl,f_f_i,f_f_l" + k="20" /> + <hkern g1="L,Lslash" + g2="greater" + k="-8" /> + <hkern g1="L,Lslash" + g2="multiply" + k="-2" /> + <hkern g1="L,Lslash" + g2="parenright" + k="-18" /> + <hkern g1="L,Lslash" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="-37" /> + <hkern g1="L,Lslash" + g2="comma,period,ellipsis" + k="-20" /> + <hkern g1="L,Lslash" + g2="s,scaron,uni0455" + k="-4" /> + <hkern g1="L,Lslash" + g2="z,zcaron" + k="-4" /> + <hkern g1="L,Lslash" + g2="j" + k="-2" /> + <hkern g1="L,Lslash" + g2="bar" + k="-37" /> + <hkern g1="L,Lslash" + g2="brokenbar" + k="-37" /> + <hkern g1="Oslash" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="39" /> + <hkern g1="Oslash" + g2="V,uni0423,uni0474" + k="43" /> + <hkern g1="Oslash" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="35" /> + <hkern g1="Oslash" + g2="Y,Yacute,Ydieresis,uni040E" + k="76" /> + <hkern g1="Oslash" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="8" /> + <hkern g1="Oslash" + g2="ampersand" + k="4" /> + <hkern g1="Oslash" + g2="backslash" + k="55" /> + <hkern g1="Oslash" + g2="dagger" + k="-2" /> + <hkern g1="Oslash" + g2="germandbls" + k="33" /> + <hkern g1="Oslash" + g2="ordfeminine" + k="18" /> + <hkern g1="Oslash" + g2="questiondown" + k="76" /> + <hkern g1="Oslash" + g2="quotesinglbase,quotedblbase" + k="63" /> + <hkern g1="Oslash" + g2="slash" + k="76" /> + <hkern g1="Oslash" + g2="trademark" + k="4" /> + <hkern g1="Oslash" + g2="underscore" + k="82" /> + <hkern g1="Oslash" + g2="X,uni0416,uni0425,uni046A" + k="37" /> + <hkern g1="Oslash" + g2="Z,Zcaron" + k="18" /> + <hkern g1="Oslash" + g2="bracketright,braceright" + k="43" /> + <hkern g1="Oslash" + g2="daggerdbl" + k="-2" /> + <hkern g1="Oslash" + g2="equal" + k="-2" /> + <hkern g1="Oslash" + g2="f,fi,fl,f_f_i,f_f_l" + k="-2" /> + <hkern g1="Oslash" + g2="guilsinglright" + k="2" /> + <hkern g1="Oslash" + g2="parenright" + k="43" /> + <hkern g1="Oslash" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="53" /> + <hkern g1="Oslash" + g2="comma,period,ellipsis" + k="63" /> + <hkern g1="Oslash" + g2="florin" + k="80" /> + <hkern g1="Oslash" + g2="lslash" + k="-8" /> + <hkern g1="P,uni0420" + g2="J" + k="141" /> + <hkern g1="P,uni0420" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="8" /> + <hkern g1="P,uni0420" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="10" /> + <hkern g1="P,uni0420" + g2="Y,Yacute,Ydieresis,uni040E" + k="14" /> + <hkern g1="P,uni0420" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="57" /> + <hkern g1="P,uni0420" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="78" /> + <hkern g1="P,uni0420" + g2="guilsinglleft" + k="59" /> + <hkern g1="P,uni0420" + g2="hyphen,endash,emdash" + k="20" /> + <hkern g1="P,uni0420" + g2="m,n,p,r,ntilde" + k="29" /> + <hkern g1="P,uni0420" + g2="oslash" + k="70" /> + <hkern g1="P,uni0420" + g2="quotedbl,quotesingle" + k="-20" /> + <hkern g1="P,uni0420" + g2="quoteleft,quotedblleft" + k="-27" /> + <hkern g1="P,uni0420" + g2="quoteright,quotedblright" + k="-18" /> + <hkern g1="P,uni0420" + g2="quotesinglbase,quotedblbase" + k="111" /> + <hkern g1="P,uni0420" + g2="t" + k="-20" /> + <hkern g1="P,uni0420" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="41" /> + <hkern g1="P,uni0420" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-18" /> + <hkern g1="P,uni0420" + g2="Eth" + k="-18" /> + <hkern g1="P,uni0420" + g2="Z,Zcaron" + k="18" /> + <hkern g1="P,uni0420" + g2="bracketright,braceright" + k="2" /> + <hkern g1="P,uni0420" + g2="f,fi,fl,f_f_i,f_f_l" + k="-12" /> + <hkern g1="P,uni0420" + g2="guilsinglright" + k="-18" /> + <hkern g1="P,uni0420" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="121" /> + <hkern g1="P,uni0420" + g2="comma,period,ellipsis" + k="254" /> + <hkern g1="P,uni0420" + g2="s,scaron,uni0455" + k="47" /> + <hkern g1="P,uni0420" + g2="b,h,k,l,thorn" + k="18" /> + <hkern g1="P,uni0420" + g2="z,zcaron" + k="18" /> + <hkern g1="P,uni0420" + g2="j" + k="8" /> + <hkern g1="P,uni0420" + g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Ntilde,Thorn,IJ,uni01C4,uni01C7,uni01CA,uni01F1" + k="2" /> + <hkern g1="Q" + g2="J" + k="-8" /> + <hkern g1="Q" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="39" /> + <hkern g1="Q" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="43" /> + <hkern g1="Q" + g2="Y,Yacute,Ydieresis,uni040E" + k="84" /> + <hkern g1="Q" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="6" /> + <hkern g1="Q" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="-2" /> + <hkern g1="Q" + g2="guilsinglleft" + k="2" /> + <hkern g1="Q" + g2="quoteleft,quotedblleft" + k="4" /> + <hkern g1="Q" + g2="quoteright,quotedblright" + k="23" /> + <hkern g1="Q" + g2="t" + k="-4" /> + <hkern g1="Q" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="2" /> + <hkern g1="Q" + g2="w" + k="8" /> + <hkern g1="Q" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="8" /> + <hkern g1="Q" + g2="Eth" + k="-8" /> + <hkern g1="Q" + g2="Z,Zcaron" + k="-2" /> + <hkern g1="Q" + g2="bracketright,braceright" + k="25" /> + <hkern g1="Q" + g2="f,fi,fl,f_f_i,f_f_l" + k="-2" /> + <hkern g1="Q" + g2="guilsinglright" + k="29" /> + <hkern g1="Q" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="27" /> + <hkern g1="Q" + g2="comma,period,ellipsis" + k="25" /> + <hkern g1="Q" + g2="z,zcaron" + k="-2" /> + <hkern g1="Q" + g2="j" + k="-4" /> + <hkern g1="R" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="10" /> + <hkern g1="R" + g2="J" + k="29" /> + <hkern g1="R" + g2="Oslash" + k="8" /> + <hkern g1="R" + g2="V,uni0423,uni0474" + k="10" /> + <hkern g1="R" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="12" /> + <hkern g1="R" + g2="Y,Yacute,Ydieresis,uni040E" + k="20" /> + <hkern g1="R" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="12" /> + <hkern g1="R" + g2="ampersand" + k="14" /> + <hkern g1="R" + g2="asciicircum" + k="-18" /> + <hkern g1="R" + g2="asciitilde" + k="18" /> + <hkern g1="R" + g2="asterisk" + k="-18" /> + <hkern g1="R" + g2="at" + k="29" /> + <hkern g1="R" + g2="backslash" + k="18" /> + <hkern g1="R" + g2="braceleft" + k="20" /> + <hkern g1="R" + g2="bullet" + k="39" /> + <hkern g1="R" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="39" /> + <hkern g1="R" + g2="dagger" + k="-23" /> + <hkern g1="R" + g2="divide" + k="2" /> + <hkern g1="R" + g2="germandbls" + k="27" /> + <hkern g1="R" + g2="guilsinglleft" + k="33" /> + <hkern g1="R" + g2="hyphen,endash,emdash" + k="39" /> + <hkern g1="R" + g2="less" + k="8" /> + <hkern g1="R" + g2="m,n,p,r,ntilde" + k="8" /> + <hkern g1="R" + g2="ordfeminine" + k="37" /> + <hkern g1="R" + g2="oslash" + k="57" /> + <hkern g1="R" + g2="periodcentered" + k="8" /> + <hkern g1="R" + g2="plus" + k="20" /> + <hkern g1="R" + g2="quoteleft,quotedblleft" + k="-18" /> + <hkern g1="R" + g2="t" + k="-4" /> + <hkern g1="R" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="37" /> + <hkern g1="R" + g2="underscore" + k="-14" /> + <hkern g1="R" + g2="w" + k="18" /> + <hkern g1="R" + g2="Z,Zcaron" + k="-2" /> + <hkern g1="R" + g2="bracketright,braceright" + k="-18" /> + <hkern g1="R" + g2="daggerdbl" + k="-23" /> + <hkern g1="R" + g2="f,fi,fl,f_f_i,f_f_l" + k="-2" /> + <hkern g1="R" + g2="greater" + k="-49" /> + <hkern g1="R" + g2="multiply" + k="-27" /> + <hkern g1="R" + g2="parenright" + k="-8" /> + <hkern g1="R" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="8" /> + <hkern g1="R" + g2="comma,period,ellipsis" + k="14" /> + <hkern g1="R" + g2="s,scaron,uni0455" + k="8" /> + <hkern g1="R" + g2="florin" + k="90" /> + <hkern g1="R" + g2="x,uni0445,uni04B3" + k="-18" /> + <hkern g1="R" + g2="lslash" + k="10" /> + <hkern g1="S,Scaron,uni0405" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="8" /> + <hkern g1="S,Scaron,uni0405" + g2="J" + k="-18" /> + <hkern g1="S,Scaron,uni0405" + g2="Oslash" + k="8" /> + <hkern g1="S,Scaron,uni0405" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="8" /> + <hkern g1="S,Scaron,uni0405" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="8" /> + <hkern g1="S,Scaron,uni0405" + g2="V,uni0423,uni0474" + k="2" /> + <hkern g1="S,Scaron,uni0405" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="2" /> + <hkern g1="S,Scaron,uni0405" + g2="Y,Yacute,Ydieresis,uni040E" + k="25" /> + <hkern g1="S,Scaron,uni0405" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="8" /> + <hkern g1="S,Scaron,uni0405" + g2="ampersand" + k="4" /> + <hkern g1="S,Scaron,uni0405" + g2="asciicircum" + k="8" /> + <hkern g1="S,Scaron,uni0405" + g2="backslash" + k="49" /> + <hkern g1="S,Scaron,uni0405" + g2="braceleft" + k="37" /> + <hkern g1="S,Scaron,uni0405" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="18" /> + <hkern g1="S,Scaron,uni0405" + g2="germandbls" + k="57" /> + <hkern g1="S,Scaron,uni0405" + g2="guilsinglleft" + k="8" /> + <hkern g1="S,Scaron,uni0405" + g2="hyphen,endash,emdash" + k="8" /> + <hkern g1="S,Scaron,uni0405" + g2="m,n,p,r,ntilde" + k="55" /> + <hkern g1="S,Scaron,uni0405" + g2="ordfeminine" + k="23" /> + <hkern g1="S,Scaron,uni0405" + g2="ordmasculine" + k="20" /> + <hkern g1="S,Scaron,uni0405" + g2="oslash" + k="18" /> + <hkern g1="S,Scaron,uni0405" + g2="questiondown" + k="4" /> + <hkern g1="S,Scaron,uni0405" + g2="quoteleft,quotedblleft" + k="2" /> + <hkern g1="S,Scaron,uni0405" + g2="quotesinglbase,quotedblbase" + k="4" /> + <hkern g1="S,Scaron,uni0405" + g2="slash" + k="8" /> + <hkern g1="S,Scaron,uni0405" + g2="t" + k="14" /> + <hkern g1="S,Scaron,uni0405" + g2="trademark" + k="4" /> + <hkern g1="S,Scaron,uni0405" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="47" /> + <hkern g1="S,Scaron,uni0405" + g2="underscore" + k="18" /> + <hkern g1="S,Scaron,uni0405" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="41" /> + <hkern g1="S,Scaron,uni0405" + g2="w" + k="39" /> + <hkern g1="S,Scaron,uni0405" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="49" /> + <hkern g1="S,Scaron,uni0405" + g2="X,uni0416,uni0425,uni046A" + k="4" /> + <hkern g1="S,Scaron,uni0405" + g2="Z,Zcaron" + k="-2" /> + <hkern g1="S,Scaron,uni0405" + g2="bracketright,braceright" + k="-25" /> + <hkern g1="S,Scaron,uni0405" + g2="colon,semicolon" + k="2" /> + <hkern g1="S,Scaron,uni0405" + g2="daggerdbl" + k="-2" /> + <hkern g1="S,Scaron,uni0405" + g2="exclamdown" + k="2" /> + <hkern g1="S,Scaron,uni0405" + g2="f,fi,fl,f_f_i,f_f_l" + k="27" /> + <hkern g1="S,Scaron,uni0405" + g2="greater" + k="-45" /> + <hkern g1="S,Scaron,uni0405" + g2="guilsinglright" + k="8" /> + <hkern g1="S,Scaron,uni0405" + g2="multiply" + k="8" /> + <hkern g1="S,Scaron,uni0405" + g2="parenright" + k="2" /> + <hkern g1="S,Scaron,uni0405" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="14" /> + <hkern g1="S,Scaron,uni0405" + g2="comma,period,ellipsis" + k="2" /> + <hkern g1="S,Scaron,uni0405" + g2="b,h,k,l,thorn" + k="10" /> + <hkern g1="S,Scaron,uni0405" + g2="florin" + k="100" /> + <hkern g1="S,Scaron,uni0405" + g2="x,uni0445,uni04B3" + k="27" /> + <hkern g1="S,Scaron,uni0405" + g2="z,zcaron" + k="8" /> + <hkern g1="S,Scaron,uni0405" + g2="Lslash" + k="-8" /> + <hkern g1="S,Scaron,uni0405" + g2="lslash" + k="-2" /> + <hkern g1="S,Scaron,uni0405" + g2="i,igrave,iacute,icircumflex,idieresis,uni0469" + k="8" /> + <hkern g1="S,Scaron,uni0405" + g2="j" + k="8" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="49" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="J" + k="139" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="Oslash" + k="39" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="-41" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="-2" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="V,uni0423,uni0474" + k="-41" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-41" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="Y,Yacute,Ydieresis,uni040E" + k="-41" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="174" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="ampersand" + k="63" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="asciitilde" + k="141" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="asterisk" + k="-41" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="at" + k="51" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="backslash" + k="-78" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="braceleft" + k="63" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="bullet" + k="147" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="195" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="copyright,registered" + k="20" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="dagger" + k="-43" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="divide" + k="115" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="germandbls" + k="70" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="guilsinglleft" + k="244" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="hyphen,endash,emdash" + k="125" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="less" + k="86" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="m,n,p,r,ntilde" + k="127" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="oslash" + k="156" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="paragraph" + k="-23" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="periodcentered" + k="102" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="plus" + k="104" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="question" + k="-39" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="questiondown" + k="131" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="quotedbl,quotesingle" + k="-59" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="quoteleft,quotedblleft" + k="-61" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="quoteright,quotedblright" + k="-61" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="quotesinglbase,quotedblbase" + k="168" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="slash" + k="152" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="t" + k="49" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="trademark" + k="-59" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="190" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="underscore" + k="84" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="139" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="w" + k="147" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="139" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="X,uni0416,uni0425,uni046A" + k="-27" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="Z,Zcaron" + k="-4" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="bracketright,braceright" + k="-37" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="colon,semicolon" + k="119" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="daggerdbl" + k="-25" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="equal" + k="61" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="exclamdown" + k="59" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="f,fi,fl,f_f_i,f_f_l" + k="72" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="greater" + k="12" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="guilsinglright" + k="156" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="multiply" + k="74" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="parenright" + k="-37" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="section" + k="-37" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="133" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="comma,period,ellipsis" + k="209" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="s,scaron,uni0455" + k="143" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="b,h,k,l,thorn" + k="-2" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="florin" + k="217" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="x,uni0445,uni04B3" + k="143" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="z,zcaron" + k="88" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="lslash" + k="41" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="i,igrave,iacute,icircumflex,idieresis,uni0469" + k="37" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="j" + k="18" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="bar" + k="-39" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="brokenbar" + k="-41" /> + <hkern g1="Thorn" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="-8" /> + <hkern g1="Thorn" + g2="J" + k="12" /> + <hkern g1="Thorn" + g2="Oslash" + k="-8" /> + <hkern g1="Thorn" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="43" /> + <hkern g1="Thorn" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="33" /> + <hkern g1="Thorn" + g2="Y,Yacute,Ydieresis,uni040E" + k="49" /> + <hkern g1="Thorn" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="-18" /> + <hkern g1="Thorn" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="-18" /> + <hkern g1="Thorn" + g2="oslash" + k="8" /> + <hkern g1="Thorn" + g2="quoteleft,quotedblleft" + k="4" /> + <hkern g1="Thorn" + g2="quotesinglbase,quotedblbase" + k="57" /> + <hkern g1="Thorn" + g2="t" + k="-47" /> + <hkern g1="Thorn" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="2" /> + <hkern g1="Thorn" + g2="w" + k="-18" /> + <hkern g1="Thorn" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-18" /> + <hkern g1="Thorn" + g2="Eth" + k="-27" /> + <hkern g1="Thorn" + g2="Z,Zcaron" + k="18" /> + <hkern g1="Thorn" + g2="bracketright,braceright" + k="23" /> + <hkern g1="Thorn" + g2="f,fi,fl,f_f_i,f_f_l" + k="-39" /> + <hkern g1="Thorn" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="59" /> + <hkern g1="Thorn" + g2="comma,period,ellipsis" + k="63" /> + <hkern g1="Thorn" + g2="s,scaron,uni0455" + k="-18" /> + <hkern g1="Thorn" + g2="z,zcaron" + k="-37" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="51" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="J" + k="117" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="Oslash" + k="51" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="S,Scaron,uni0405" + k="10" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="-41" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-20" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="Y,Yacute,Ydieresis,uni040E" + k="-20" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="115" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="117" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="copyright,registered" + k="29" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="guilsinglleft" + k="125" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="hyphen,endash,emdash" + k="117" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="m,n,p,r,ntilde" + k="70" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="oslash" + k="117" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="quotedbl,quotesingle" + k="-39" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="quoteleft,quotedblleft" + k="-20" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="quoteright,quotedblright" + k="-37" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="quotesinglbase,quotedblbase" + k="174" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="t" + k="12" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="76" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="w" + k="23" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="14" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="bracketright,braceright" + k="-39" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="colon,semicolon" + k="86" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="f,fi,fl,f_f_i,f_f_l" + k="2" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="guilsinglright" + k="80" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="115" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="comma,period,ellipsis" + k="213" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="s,scaron,uni0455" + k="51" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="z,zcaron" + k="39" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="43" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="J" + k="104" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="Oslash" + k="43" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="S,Scaron,uni0405" + k="2" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="-41" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="V,uni0423,uni0474" + k="-20" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-20" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="Y,Yacute,Ydieresis,uni040E" + k="-20" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="61" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="ampersand" + k="10" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="asciitilde" + k="41" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="asterisk" + k="-20" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="at" + k="41" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="backslash" + k="-41" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="braceleft" + k="59" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="bullet" + k="59" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="74" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="copyright,registered" + k="4" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="dagger" + k="-4" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="divide" + k="43" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="germandbls" + k="37" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="guilsinglleft" + k="70" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="hyphen,endash,emdash" + k="78" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="less" + k="41" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="m,n,p,r,ntilde" + k="61" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="oslash" + k="90" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="periodcentered" + k="59" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="plus" + k="61" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="questiondown" + k="127" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="quotedbl,quotesingle" + k="-37" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="quoteleft,quotedblleft" + k="-39" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="quoteright,quotedblright" + k="-39" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="quotesinglbase,quotedblbase" + k="166" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="slash" + k="127" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="t" + k="8" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="trademark" + k="-41" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="63" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="underscore" + k="94" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="12" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="w" + k="20" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="14" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="Eth" + k="2" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="X,uni0416,uni0425,uni046A" + k="-20" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="Z,Zcaron" + k="-2" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="bracketright,braceright" + k="-37" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="colon,semicolon" + k="23" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="daggerdbl" + k="-2" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="equal" + k="20" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="exclamdown" + k="25" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="f,fi,fl,f_f_i,f_f_l" + k="2" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="greater" + k="-4" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="guilsinglright" + k="20" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="multiply" + k="2" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="parenright" + k="-37" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="90" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="comma,period,ellipsis" + k="201" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="s,scaron,uni0455" + k="41" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="florin" + k="123" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="x,uni0445,uni04B3" + k="2" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="z,zcaron" + k="10" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="lslash" + k="2" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="bar" + k="-39" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="brokenbar" + k="-39" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="47" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="J" + k="29" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="Oslash" + k="37" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="S,Scaron,uni0405" + k="4" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="-27" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="2" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-20" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="Y,Yacute,Ydieresis,uni040E" + k="-20" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="4" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="55" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="copyright,registered" + k="45" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="guilsinglleft" + k="164" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="hyphen,endash,emdash" + k="92" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="m,n,p,r,ntilde" + k="2" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="oslash" + k="25" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="quotedbl,quotesingle" + k="-18" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="quoteleft,quotedblleft" + k="-18" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="quoteright,quotedblright" + k="-18" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="t" + k="8" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="29" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="w" + k="29" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="39" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="Z,Zcaron" + k="-18" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="bracketright,braceright" + k="-37" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="colon,semicolon" + k="4" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="f,fi,fl,f_f_i,f_f_l" + k="2" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="guilsinglright" + k="61" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="8" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="comma,period,ellipsis" + k="2" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="s,scaron,uni0455" + k="4" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="z,zcaron" + k="-8" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="94" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="J" + k="160" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="Oslash" + k="84" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="S,Scaron,uni0405" + k="25" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="-41" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="V,uni0423,uni0474" + k="-20" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-20" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="Y,Yacute,Ydieresis,uni040E" + k="-20" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="139" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="ampersand" + k="111" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="asciicircum" + k="4" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="asciitilde" + k="125" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="asterisk" + k="2" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="at" + k="86" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="backslash" + k="-23" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="braceleft" + k="45" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="bullet" + k="152" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="188" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="copyright,registered" + k="57" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="divide" + k="104" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="germandbls" + k="86" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="guilsinglleft" + k="178" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="hyphen,endash,emdash" + k="168" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="less" + k="127" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="m,n,p,r,ntilde" + k="125" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="ordfeminine" + k="4" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="ordmasculine" + k="4" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="oslash" + k="184" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="periodcentered" + k="125" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="plus" + k="106" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="questiondown" + k="205" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="quotedbl,quotesingle" + k="-18" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="quoteleft,quotedblleft" + k="-37" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="quoteright,quotedblright" + k="-37" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="quotesinglbase,quotedblbase" + k="213" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="slash" + k="182" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="t" + k="27" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="trademark" + k="-4" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="127" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="underscore" + k="131" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="86" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="w" + k="104" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="92" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="Eth" + k="4" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="X,uni0416,uni0425,uni046A" + k="-20" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="Z,Zcaron" + k="-8" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="bracketright,braceright" + k="-37" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="colon,semicolon" + k="129" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="equal" + k="63" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="exclamdown" + k="70" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="f,fi,fl,f_f_i,f_f_l" + k="53" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="guilsinglright" + k="72" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="multiply" + k="61" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="parenright" + k="-37" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="139" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="comma,period,ellipsis" + k="266" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="s,scaron,uni0455" + k="135" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="b,h,k,l,thorn" + k="2" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="florin" + k="184" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="x,uni0445,uni04B3" + k="63" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="z,zcaron" + k="76" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="Lslash" + k="4" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="lslash" + k="4" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="i,igrave,iacute,icircumflex,idieresis,uni0469" + k="12" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="j" + k="8" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="bar" + k="-20" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="brokenbar" + k="-20" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="41" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="Oslash" + k="37" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="-33" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="Y,Yacute,Ydieresis,uni040E" + k="-8" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="ampersand" + k="4" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="asciitilde" + k="2" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="at" + k="27" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="bullet" + k="23" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="12" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="copyright,registered" + k="2" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="dagger" + k="-2" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="divide" + k="2" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="germandbls" + k="8" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="guilsinglleft" + k="53" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="hyphen,endash,emdash" + k="86" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="less" + k="4" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="oslash" + k="2" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="periodcentered" + k="23" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="plus" + k="18" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="question" + k="-8" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="questiondown" + k="-2" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="trademark" + k="-2" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="12" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="underscore" + k="-23" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="2" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="w" + k="10" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="37" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="X,uni0416,uni0425,uni046A" + k="-18" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="daggerdbl" + k="-2" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="f,fi,fl,f_f_i,f_f_l" + k="-4" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="multiply" + k="-2" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="florin" + k="37" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="bar" + k="-2" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="brokenbar" + k="-2" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="ampersand" + k="25" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="asterisk" + k="41" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="at" + k="20" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="backslash" + k="123" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="ordfeminine" + k="23" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="ordmasculine" + k="29" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="quoteleft,quotedblleft" + k="80" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="quoteright,quotedblright" + k="41" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="trademark" + k="137" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="18" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="underscore" + k="-57" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="23" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="2" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="bracketright,braceright" + k="2" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="bullet" + k="2" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="colon,semicolon" + k="2" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="dagger" + k="2" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="daggerdbl" + k="2" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="exclam" + k="4" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="paragraph" + k="2" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="parenright" + k="2" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="question" + k="4" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="quotedbl,quotesingle" + k="4" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="t" + k="2" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="4" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="w" + k="2" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="ampersand" + k="25" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="asterisk" + k="78" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="backslash" + k="203" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="ordfeminine" + k="43" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="ordmasculine" + k="53" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="quoteleft,quotedblleft" + k="82" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="quoteright,quotedblright" + k="82" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="trademark" + k="113" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="8" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="underscore" + k="43" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="43" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="bracketright,braceright" + k="45" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="colon,semicolon" + k="12" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="dagger" + k="2" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="daggerdbl" + k="-2" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="exclam" + k="4" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="parenright" + k="45" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="question" + k="53" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="quotedbl,quotesingle" + k="43" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="t" + k="8" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="31" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="w" + k="23" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="comma,period,ellipsis" + k="33" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="germandbls" + k="8" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="lslash" + k="-37" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="quotesinglbase,quotedblbase" + k="23" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="slash" + k="96" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="x,uni0445,uni04B3" + k="25" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="z,zcaron" + k="8" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="asciitilde" + k="-2" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="exclamdown" + k="4" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="florin" + k="10" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="guilsinglright" + k="2" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="questiondown" + k="10" /> + <hkern g1="c,ccedilla,uni0441" + g2="ampersand" + k="16" /> + <hkern g1="c,ccedilla,uni0441" + g2="asterisk" + k="23" /> + <hkern g1="c,ccedilla,uni0441" + g2="at" + k="8" /> + <hkern g1="c,ccedilla,uni0441" + g2="backslash" + k="145" /> + <hkern g1="c,ccedilla,uni0441" + g2="ordfeminine" + k="23" /> + <hkern g1="c,ccedilla,uni0441" + g2="ordmasculine" + k="20" /> + <hkern g1="c,ccedilla,uni0441" + g2="quoteleft,quotedblleft" + k="29" /> + <hkern g1="c,ccedilla,uni0441" + g2="quoteright,quotedblright" + k="10" /> + <hkern g1="c,ccedilla,uni0441" + g2="trademark" + k="72" /> + <hkern g1="c,ccedilla,uni0441" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="12" /> + <hkern g1="c,ccedilla,uni0441" + g2="underscore" + k="18" /> + <hkern g1="c,ccedilla,uni0441" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="12" /> + <hkern g1="c,ccedilla,uni0441" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="8" /> + <hkern g1="c,ccedilla,uni0441" + g2="bracketright,braceright" + k="4" /> + <hkern g1="c,ccedilla,uni0441" + g2="parenright" + k="8" /> + <hkern g1="c,ccedilla,uni0441" + g2="question" + k="2" /> + <hkern g1="c,ccedilla,uni0441" + g2="quotedbl,quotesingle" + k="8" /> + <hkern g1="c,ccedilla,uni0441" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="12" /> + <hkern g1="c,ccedilla,uni0441" + g2="w" + k="12" /> + <hkern g1="c,ccedilla,uni0441" + g2="comma,period,ellipsis" + k="2" /> + <hkern g1="c,ccedilla,uni0441" + g2="quotesinglbase,quotedblbase" + k="18" /> + <hkern g1="c,ccedilla,uni0441" + g2="slash" + k="33" /> + <hkern g1="c,ccedilla,uni0441" + g2="x,uni0445,uni04B3" + k="12" /> + <hkern g1="c,ccedilla,uni0441" + g2="questiondown" + k="20" /> + <hkern g1="c,ccedilla,uni0441" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="10" /> + <hkern g1="c,ccedilla,uni0441" + g2="oslash" + k="10" /> + <hkern g1="c,ccedilla,uni0441" + g2="hyphen,endash,emdash" + k="2" /> + <hkern g1="d,l,fl" + g2="ampersand" + k="4" /> + <hkern g1="d,l,fl" + g2="backslash" + k="2" /> + <hkern g1="d,l,fl" + g2="ordfeminine" + k="4" /> + <hkern g1="d,l,fl" + g2="ordmasculine" + k="2" /> + <hkern g1="d,l,fl" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="8" /> + <hkern g1="d,l,fl" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="2" /> + <hkern g1="d,l,fl" + g2="dagger" + k="-2" /> + <hkern g1="d,l,fl" + g2="daggerdbl" + k="-2" /> + <hkern g1="d,l,fl" + g2="comma,period,ellipsis" + k="2" /> + <hkern g1="d,l,fl" + g2="germandbls" + k="8" /> + <hkern g1="d,l,fl" + g2="exclamdown" + k="2" /> + <hkern g1="d,l,fl" + g2="questiondown" + k="2" /> + <hkern g1="d,l,fl" + g2="guilsinglleft" + k="2" /> + <hkern g1="d,l,fl" + g2="periodcentered" + k="2" /> + <hkern g1="d,l,fl" + g2="plus" + k="4" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="ampersand" + k="33" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="asterisk" + k="41" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="backslash" + k="145" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="ordfeminine" + k="33" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="ordmasculine" + k="53" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="quoteleft,quotedblleft" + k="80" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="quoteright,quotedblright" + k="82" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="trademark" + k="145" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="27" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="underscore" + k="18" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="18" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="bracketright,braceright" + k="23" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="paragraph" + k="2" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="parenright" + k="25" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="question" + k="49" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="quotedbl,quotesingle" + k="23" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="20" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="w" + k="12" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="comma,period,ellipsis" + k="29" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="germandbls" + k="8" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="lslash" + k="-18" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="quotesinglbase,quotedblbase" + k="20" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="slash" + k="4" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="x,uni0445,uni04B3" + k="12" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="exclamdown" + k="2" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="questiondown" + k="41" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="divide" + k="-2" /> + <hkern g1="f" + g2="asterisk" + k="-82" /> + <hkern g1="f" + g2="at" + k="-4" /> + <hkern g1="f" + g2="backslash" + k="-63" /> + <hkern g1="f" + g2="ordfeminine" + k="-2" /> + <hkern g1="f" + g2="ordmasculine" + k="-4" /> + <hkern g1="f" + g2="quoteleft,quotedblleft" + k="-84" /> + <hkern g1="f" + g2="quoteright,quotedblright" + k="-49" /> + <hkern g1="f" + g2="trademark" + k="-45" /> + <hkern g1="f" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="8" /> + <hkern g1="f" + g2="underscore" + k="45" /> + <hkern g1="f" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-35" /> + <hkern g1="f" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="27" /> + <hkern g1="f" + g2="bracketright,braceright" + k="-49" /> + <hkern g1="f" + g2="bullet" + k="18" /> + <hkern g1="f" + g2="colon,semicolon" + k="-4" /> + <hkern g1="f" + g2="dagger" + k="-86" /> + <hkern g1="f" + g2="daggerdbl" + k="-70" /> + <hkern g1="f" + g2="exclam" + k="-33" /> + <hkern g1="f" + g2="paragraph" + k="-66" /> + <hkern g1="f" + g2="parenright" + k="-59" /> + <hkern g1="f" + g2="question" + k="-45" /> + <hkern g1="f" + g2="quotedbl,quotesingle" + k="-102" /> + <hkern g1="f" + g2="t" + k="-8" /> + <hkern g1="f" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="-23" /> + <hkern g1="f" + g2="w" + k="-23" /> + <hkern g1="f" + g2="comma,period,ellipsis" + k="106" /> + <hkern g1="f" + g2="lslash" + k="-18" /> + <hkern g1="f" + g2="quotesinglbase,quotedblbase" + k="86" /> + <hkern g1="f" + g2="slash" + k="29" /> + <hkern g1="f" + g2="x,uni0445,uni04B3" + k="-23" /> + <hkern g1="f" + g2="z,zcaron" + k="-25" /> + <hkern g1="f" + g2="asciitilde" + k="18" /> + <hkern g1="f" + g2="exclamdown" + k="-2" /> + <hkern g1="f" + g2="guilsinglright" + k="-4" /> + <hkern g1="f" + g2="questiondown" + k="55" /> + <hkern g1="f" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="37" /> + <hkern g1="f" + g2="oslash" + k="37" /> + <hkern g1="f" + g2="hyphen,endash,emdash" + k="12" /> + <hkern g1="f" + g2="guilsinglleft" + k="20" /> + <hkern g1="f" + g2="periodcentered" + k="-2" /> + <hkern g1="f" + g2="plus" + k="18" /> + <hkern g1="f" + g2="asciicircum" + k="-43" /> + <hkern g1="f" + g2="bar" + k="-61" /> + <hkern g1="f" + g2="brokenbar" + k="-82" /> + <hkern g1="f" + g2="copyright,registered" + k="-20" /> + <hkern g1="f" + g2="f,fi,fl,f_f_i,f_f_l" + k="8" /> + <hkern g1="f" + g2="greater" + k="-66" /> + <hkern g1="f" + g2="j" + k="-45" /> + <hkern g1="f" + g2="multiply" + k="-41" /> + <hkern g1="f" + g2="section" + k="-43" /> + <hkern g1="f" + g2="s,scaron,uni0455" + k="-2" /> + <hkern g1="g" + g2="ampersand" + k="16" /> + <hkern g1="g" + g2="backslash" + k="86" /> + <hkern g1="g" + g2="ordfeminine" + k="39" /> + <hkern g1="g" + g2="ordmasculine" + k="2" /> + <hkern g1="g" + g2="quoteleft,quotedblleft" + k="2" /> + <hkern g1="g" + g2="quoteright,quotedblright" + k="8" /> + <hkern g1="g" + g2="trademark" + k="61" /> + <hkern g1="g" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="10" /> + <hkern g1="g" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="10" /> + <hkern g1="g" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="10" /> + <hkern g1="g" + g2="bracketright,braceright" + k="4" /> + <hkern g1="g" + g2="exclam" + k="2" /> + <hkern g1="g" + g2="parenright" + k="4" /> + <hkern g1="g" + g2="question" + k="2" /> + <hkern g1="g" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="2" /> + <hkern g1="g" + g2="w" + k="10" /> + <hkern g1="g" + g2="comma,period,ellipsis" + k="2" /> + <hkern g1="g" + g2="germandbls" + k="2" /> + <hkern g1="g" + g2="hyphen,endash,emdash" + k="2" /> + <hkern g1="g" + g2="guilsinglleft" + k="4" /> + <hkern g1="g" + g2="divide" + k="8" /> + <hkern g1="germandbls" + g2="quoteleft,quotedblleft" + k="2" /> + <hkern g1="germandbls" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="12" /> + <hkern g1="germandbls" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="8" /> + <hkern g1="germandbls" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="-2" /> + <hkern g1="germandbls" + g2="bracketright,braceright" + k="-37" /> + <hkern g1="germandbls" + g2="t" + k="2" /> + <hkern g1="germandbls" + g2="w" + k="2" /> + <hkern g1="germandbls" + g2="oslash" + k="-2" /> + <hkern g1="germandbls" + g2="s,scaron,uni0455" + k="-2" /> + <hkern g1="h,m,n,ntilde,uni04BB" + g2="ampersand" + k="4" /> + <hkern g1="h,m,n,ntilde,uni04BB" + g2="asterisk" + k="18" /> + <hkern g1="h,m,n,ntilde,uni04BB" + g2="at" + k="12" /> + <hkern g1="h,m,n,ntilde,uni04BB" + g2="backslash" + k="135" /> + <hkern g1="h,m,n,ntilde,uni04BB" + g2="ordfeminine" + k="23" /> + <hkern g1="h,m,n,ntilde,uni04BB" + g2="ordmasculine" + k="4" /> + <hkern g1="h,m,n,ntilde,uni04BB" + g2="quoteleft,quotedblleft" + k="78" /> + <hkern g1="h,m,n,ntilde,uni04BB" + g2="quoteright,quotedblright" + k="100" /> + <hkern g1="h,m,n,ntilde,uni04BB" + g2="trademark" + k="94" /> + <hkern g1="h,m,n,ntilde,uni04BB" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="18" /> + <hkern g1="h,m,n,ntilde,uni04BB" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="4" /> + <hkern g1="h,m,n,ntilde,uni04BB" + g2="colon,semicolon" + k="2" /> + <hkern g1="h,m,n,ntilde,uni04BB" + g2="dagger" + k="4" /> + <hkern g1="h,m,n,ntilde,uni04BB" + g2="question" + k="33" /> + <hkern g1="h,m,n,ntilde,uni04BB" + g2="quotedbl,quotesingle" + k="2" /> + <hkern g1="h,m,n,ntilde,uni04BB" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="4" /> + <hkern g1="h,m,n,ntilde,uni04BB" + g2="w" + k="2" /> + <hkern g1="h,m,n,ntilde,uni04BB" + g2="germandbls" + k="18" /> + <hkern g1="h,m,n,ntilde,uni04BB" + g2="exclamdown" + k="2" /> + <hkern g1="h,m,n,ntilde,uni04BB" + g2="periodcentered" + k="2" /> + <hkern g1="h,m,n,ntilde,uni04BB" + g2="copyright,registered" + k="8" /> + <hkern g1="h,m,n,ntilde,uni04BB" + g2="equal" + k="8" /> + <hkern g1="i,q,igrave,iacute,icircumflex,idieresis,fi,f_f_i" + g2="ampersand" + k="4" /> + <hkern g1="i,q,igrave,iacute,icircumflex,idieresis,fi,f_f_i" + g2="backslash" + k="111" /> + <hkern g1="i,q,igrave,iacute,icircumflex,idieresis,fi,f_f_i" + g2="trademark" + k="2" /> + <hkern g1="i,q,igrave,iacute,icircumflex,idieresis,fi,f_f_i" + g2="question" + k="2" /> + <hkern g1="i,q,igrave,iacute,icircumflex,idieresis,fi,f_f_i" + g2="quotesinglbase,quotedblbase" + k="2" /> + <hkern g1="i,q,igrave,iacute,icircumflex,idieresis,fi,f_f_i" + g2="exclamdown" + k="2" /> + <hkern g1="i,q,igrave,iacute,icircumflex,idieresis,fi,f_f_i" + g2="guilsinglleft" + k="2" /> + <hkern g1="j" + g2="ampersand" + k="4" /> + <hkern g1="j" + g2="at" + k="8" /> + <hkern g1="j" + g2="backslash" + k="2" /> + <hkern g1="j" + g2="ordfeminine" + k="2" /> + <hkern g1="j" + g2="quoteright,quotedblright" + k="-2" /> + <hkern g1="j" + g2="dagger" + k="-4" /> + <hkern g1="j" + g2="daggerdbl" + k="-90" /> + <hkern g1="j" + g2="comma,period,ellipsis" + k="2" /> + <hkern g1="j" + g2="germandbls" + k="10" /> + <hkern g1="j" + g2="asciitilde" + k="2" /> + <hkern g1="j" + g2="guilsinglleft" + k="2" /> + <hkern g1="j" + g2="periodcentered" + k="2" /> + <hkern g1="j" + g2="f,fi,fl,f_f_i,f_f_l" + k="-2" /> + <hkern g1="j" + g2="greater" + k="-4" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="ampersand" + k="16" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="asterisk" + k="18" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="at" + k="10" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="backslash" + k="55" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="quoteleft,quotedblleft" + k="-2" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="quoteright,quotedblright" + k="-6" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="trademark" + k="45" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="10" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="underscore" + k="-63" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="29" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="bracketright,braceright" + k="4" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="bullet" + k="39" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="colon,semicolon" + k="12" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="dagger" + k="-23" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="daggerdbl" + k="-23" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="paragraph" + k="-4" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="parenright" + k="4" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="8" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="comma,period,ellipsis" + k="2" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="quotesinglbase,quotedblbase" + k="-39" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="slash" + k="-41" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="z,zcaron" + k="-8" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="asciitilde" + k="37" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="exclamdown" + k="-18" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="guilsinglright" + k="-2" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="questiondown" + k="-8" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="49" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="oslash" + k="4" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="hyphen,endash,emdash" + k="61" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="guilsinglleft" + k="63" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="periodcentered" + k="2" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="plus" + k="23" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="divide" + k="20" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="asciicircum" + k="2" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="brokenbar" + k="-4" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="copyright,registered" + k="2" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="f,fi,fl,f_f_i,f_f_l" + k="-2" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="greater" + k="-84" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="multiply" + k="-37" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="braceleft" + k="18" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="less" + k="43" /> + <hkern g1="lslash" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="-2" /> + <hkern g1="lslash" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-41" /> + <hkern g1="lslash" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="-20" /> + <hkern g1="lslash" + g2="colon,semicolon" + k="-2" /> + <hkern g1="lslash" + g2="quotedbl,quotesingle" + k="-4" /> + <hkern g1="lslash" + g2="t" + k="-41" /> + <hkern g1="lslash" + g2="w" + k="-47" /> + <hkern g1="lslash" + g2="comma,period,ellipsis" + k="10" /> + <hkern g1="lslash" + g2="quotesinglbase,quotedblbase" + k="10" /> + <hkern g1="lslash" + g2="z,zcaron" + k="-41" /> + <hkern g1="lslash" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="-16" /> + <hkern g1="lslash" + g2="oslash" + k="-8" /> + <hkern g1="lslash" + g2="hyphen,endash,emdash" + k="-2" /> + <hkern g1="lslash" + g2="guilsinglleft" + k="-8" /> + <hkern g1="lslash" + g2="copyright,registered" + k="-37" /> + <hkern g1="lslash" + g2="f,fi,fl,f_f_i,f_f_l" + k="-51" /> + <hkern g1="lslash" + g2="s,scaron,uni0455" + k="-20" /> + <hkern g1="oslash" + g2="ampersand" + k="23" /> + <hkern g1="oslash" + g2="backslash" + k="145" /> + <hkern g1="oslash" + g2="quoteleft,quotedblleft" + k="43" /> + <hkern g1="oslash" + g2="quoteright,quotedblright" + k="41" /> + <hkern g1="oslash" + g2="trademark" + k="4" /> + <hkern g1="oslash" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="2" /> + <hkern g1="oslash" + g2="underscore" + k="43" /> + <hkern g1="oslash" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="23" /> + <hkern g1="oslash" + g2="bracketright,braceright" + k="23" /> + <hkern g1="oslash" + g2="parenright" + k="25" /> + <hkern g1="oslash" + g2="quotedbl,quotesingle" + k="37" /> + <hkern g1="oslash" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="23" /> + <hkern g1="oslash" + g2="w" + k="23" /> + <hkern g1="oslash" + g2="comma,period,ellipsis" + k="33" /> + <hkern g1="oslash" + g2="germandbls" + k="2" /> + <hkern g1="oslash" + g2="lslash" + k="-8" /> + <hkern g1="oslash" + g2="quotesinglbase,quotedblbase" + k="25" /> + <hkern g1="oslash" + g2="slash" + k="8" /> + <hkern g1="oslash" + g2="x,uni0445,uni04B3" + k="12" /> + <hkern g1="oslash" + g2="exclamdown" + k="2" /> + <hkern g1="oslash" + g2="guilsinglright" + k="2" /> + <hkern g1="oslash" + g2="questiondown" + k="8" /> + <hkern g1="oslash" + g2="greater" + k="-2" /> + <hkern g1="r" + g2="ampersand" + k="8" /> + <hkern g1="r" + g2="asterisk" + k="-82" /> + <hkern g1="r" + g2="at" + k="-43" /> + <hkern g1="r" + g2="backslash" + k="25" /> + <hkern g1="r" + g2="ordmasculine" + k="-4" /> + <hkern g1="r" + g2="quoteleft,quotedblleft" + k="-2" /> + <hkern g1="r" + g2="quoteright,quotedblright" + k="-57" /> + <hkern g1="r" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="-8" /> + <hkern g1="r" + g2="underscore" + k="25" /> + <hkern g1="r" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-35" /> + <hkern g1="r" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="-2" /> + <hkern g1="r" + g2="bracketright,braceright" + k="-37" /> + <hkern g1="r" + g2="bullet" + k="-2" /> + <hkern g1="r" + g2="colon,semicolon" + k="-8" /> + <hkern g1="r" + g2="dagger" + k="-63" /> + <hkern g1="r" + g2="daggerdbl" + k="-63" /> + <hkern g1="r" + g2="exclam" + k="-57" /> + <hkern g1="r" + g2="paragraph" + k="-84" /> + <hkern g1="r" + g2="parenright" + k="4" /> + <hkern g1="r" + g2="question" + k="-41" /> + <hkern g1="r" + g2="quotedbl,quotesingle" + k="-63" /> + <hkern g1="r" + g2="t" + k="-49" /> + <hkern g1="r" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="-33" /> + <hkern g1="r" + g2="w" + k="-23" /> + <hkern g1="r" + g2="comma,period,ellipsis" + k="180" /> + <hkern g1="r" + g2="quotesinglbase,quotedblbase" + k="59" /> + <hkern g1="r" + g2="slash" + k="4" /> + <hkern g1="r" + g2="x,uni0445,uni04B3" + k="-59" /> + <hkern g1="r" + g2="z,zcaron" + k="-23" /> + <hkern g1="r" + g2="exclamdown" + k="-39" /> + <hkern g1="r" + g2="florin" + k="2" /> + <hkern g1="r" + g2="guilsinglright" + k="-59" /> + <hkern g1="r" + g2="questiondown" + k="23" /> + <hkern g1="r" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="82" /> + <hkern g1="r" + g2="oslash" + k="8" /> + <hkern g1="r" + g2="periodcentered" + k="-2" /> + <hkern g1="r" + g2="plus" + k="-2" /> + <hkern g1="r" + g2="divide" + k="-8" /> + <hkern g1="r" + g2="asciicircum" + k="-10" /> + <hkern g1="r" + g2="bar" + k="-61" /> + <hkern g1="r" + g2="brokenbar" + k="-57" /> + <hkern g1="r" + g2="copyright,registered" + k="-61" /> + <hkern g1="r" + g2="f,fi,fl,f_f_i,f_f_l" + k="-49" /> + <hkern g1="r" + g2="greater" + k="-12" /> + <hkern g1="r" + g2="j" + k="-2" /> + <hkern g1="r" + g2="multiply" + k="-4" /> + <hkern g1="r" + g2="section" + k="-57" /> + <hkern g1="r" + g2="s,scaron,uni0455" + k="55" /> + <hkern g1="r" + g2="equal" + k="-8" /> + <hkern g1="r" + g2="less" + k="-2" /> + <hkern g1="r" + g2="b,h,k,l,thorn" + k="-2" /> + <hkern g1="r" + g2="i,igrave,iacute,icircumflex,idieresis,uni0469" + k="-2" /> + <hkern g1="r" + g2="m,n,p,r,ntilde" + k="-2" /> + <hkern g1="s,scaron,uni0455" + g2="ampersand" + k="4" /> + <hkern g1="s,scaron,uni0455" + g2="asterisk" + k="20" /> + <hkern g1="s,scaron,uni0455" + g2="backslash" + k="123" /> + <hkern g1="s,scaron,uni0455" + g2="ordfeminine" + k="41" /> + <hkern g1="s,scaron,uni0455" + g2="ordmasculine" + k="39" /> + <hkern g1="s,scaron,uni0455" + g2="quoteleft,quotedblleft" + k="23" /> + <hkern g1="s,scaron,uni0455" + g2="quoteright,quotedblright" + k="94" /> + <hkern g1="s,scaron,uni0455" + g2="trademark" + k="86" /> + <hkern g1="s,scaron,uni0455" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="10" /> + <hkern g1="s,scaron,uni0455" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="12" /> + <hkern g1="s,scaron,uni0455" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="18" /> + <hkern g1="s,scaron,uni0455" + g2="bracketright,braceright" + k="2" /> + <hkern g1="s,scaron,uni0455" + g2="parenright" + k="6" /> + <hkern g1="s,scaron,uni0455" + g2="question" + k="2" /> + <hkern g1="s,scaron,uni0455" + g2="quotedbl,quotesingle" + k="18" /> + <hkern g1="s,scaron,uni0455" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="12" /> + <hkern g1="s,scaron,uni0455" + g2="w" + k="12" /> + <hkern g1="s,scaron,uni0455" + g2="germandbls" + k="10" /> + <hkern g1="s,scaron,uni0455" + g2="quotesinglbase,quotedblbase" + k="-2" /> + <hkern g1="s,scaron,uni0455" + g2="slash" + k="-18" /> + <hkern g1="s,scaron,uni0455" + g2="x,uni0445,uni04B3" + k="10" /> + <hkern g1="s,scaron,uni0455" + g2="z,zcaron" + k="-2" /> + <hkern g1="s,scaron,uni0455" + g2="florin" + k="4" /> + <hkern g1="s,scaron,uni0455" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="8" /> + <hkern g1="s,scaron,uni0455" + g2="oslash" + k="8" /> + <hkern g1="s,scaron,uni0455" + g2="guilsinglleft" + k="4" /> + <hkern g1="s,scaron,uni0455" + g2="periodcentered" + k="2" /> + <hkern g1="s,scaron,uni0455" + g2="greater" + k="-18" /> + <hkern g1="t" + g2="asterisk" + k="-8" /> + <hkern g1="t" + g2="backslash" + k="2" /> + <hkern g1="t" + g2="quoteleft,quotedblleft" + k="18" /> + <hkern g1="t" + g2="quoteright,quotedblright" + k="45" /> + <hkern g1="t" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="-2" /> + <hkern g1="t" + g2="underscore" + k="-61" /> + <hkern g1="t" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-14" /> + <hkern g1="t" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="-2" /> + <hkern g1="t" + g2="bracketright,braceright" + k="-18" /> + <hkern g1="t" + g2="colon,semicolon" + k="-2" /> + <hkern g1="t" + g2="paragraph" + k="-4" /> + <hkern g1="t" + g2="parenright" + k="-18" /> + <hkern g1="t" + g2="question" + k="-14" /> + <hkern g1="t" + g2="quotedbl,quotesingle" + k="-2" /> + <hkern g1="t" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="-18" /> + <hkern g1="t" + g2="w" + k="-18" /> + <hkern g1="t" + g2="quotesinglbase,quotedblbase" + k="-18" /> + <hkern g1="t" + g2="slash" + k="-43" /> + <hkern g1="t" + g2="x,uni0445,uni04B3" + k="-43" /> + <hkern g1="t" + g2="z,zcaron" + k="-43" /> + <hkern g1="t" + g2="exclamdown" + k="-2" /> + <hkern g1="t" + g2="guilsinglright" + k="-18" /> + <hkern g1="t" + g2="questiondown" + k="-2" /> + <hkern g1="t" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="8" /> + <hkern g1="t" + g2="asciicircum" + k="-2" /> + <hkern g1="t" + g2="copyright,registered" + k="-2" /> + <hkern g1="t" + g2="greater" + k="-10" /> + <hkern g1="t" + g2="j" + k="-2" /> + <hkern g1="t" + g2="s,scaron,uni0455" + k="-14" /> + <hkern g1="t" + g2="b,h,k,l,thorn" + k="8" /> + <hkern g1="t" + g2="i,igrave,iacute,icircumflex,idieresis,uni0469" + k="-2" /> + <hkern g1="t" + g2="m,n,p,r,ntilde" + k="18" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="ampersand" + k="4" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="at" + k="10" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="backslash" + k="94" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="ordfeminine" + k="39" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="ordmasculine" + k="29" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="quoteleft,quotedblleft" + k="20" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="quoteright,quotedblright" + k="2" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="trademark" + k="43" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="8" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="bracketright,braceright" + k="2" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="parenright" + k="4" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="germandbls" + k="10" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="8" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="oslash" + k="8" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="guilsinglleft" + k="2" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="f,fi,fl,f_f_i,f_f_l" + k="-2" /> + <hkern g1="v,wcircumflex,ycircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-18" /> + <hkern g1="v,wcircumflex,ycircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="8" /> + <hkern g1="v,wcircumflex,ycircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="bracketright,braceright" + k="4" /> + <hkern g1="v,wcircumflex,ycircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="colon,semicolon" + k="2" /> + <hkern g1="v,wcircumflex,ycircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="quotedbl,quotesingle" + k="-23" /> + <hkern g1="v,wcircumflex,ycircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="t" + k="-33" /> + <hkern g1="v,wcircumflex,ycircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="w" + k="-8" /> + <hkern g1="v,wcircumflex,ycircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="comma,period,ellipsis" + k="180" /> + <hkern g1="v,wcircumflex,ycircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="quotesinglbase,quotedblbase" + k="86" /> + <hkern g1="v,wcircumflex,ycircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="z,zcaron" + k="-18" /> + <hkern g1="v,wcircumflex,ycircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="guilsinglright" + k="-37" /> + <hkern g1="v,wcircumflex,ycircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="31" /> + <hkern g1="v,wcircumflex,ycircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="oslash" + k="20" /> + <hkern g1="v,wcircumflex,ycircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="hyphen,endash,emdash" + k="14" /> + <hkern g1="v,wcircumflex,ycircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="guilsinglleft" + k="4" /> + <hkern g1="v,wcircumflex,ycircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="copyright,registered" + k="-2" /> + <hkern g1="v,wcircumflex,ycircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="f,fi,fl,f_f_i,f_f_l" + k="-33" /> + <hkern g1="w" + g2="ampersand" + k="25" /> + <hkern g1="w" + g2="asterisk" + k="-2" /> + <hkern g1="w" + g2="at" + k="-29" /> + <hkern g1="w" + g2="backslash" + k="43" /> + <hkern g1="w" + g2="ordmasculine" + k="-4" /> + <hkern g1="w" + g2="quoteleft,quotedblleft" + k="-2" /> + <hkern g1="w" + g2="quoteright,quotedblright" + k="-2" /> + <hkern g1="w" + g2="trademark" + k="2" /> + <hkern g1="w" + g2="underscore" + k="82" /> + <hkern g1="w" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-8" /> + <hkern g1="w" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="8" /> + <hkern g1="w" + g2="bracketright,braceright" + k="41" /> + <hkern g1="w" + g2="dagger" + k="-61" /> + <hkern g1="w" + g2="daggerdbl" + k="-80" /> + <hkern g1="w" + g2="paragraph" + k="-4" /> + <hkern g1="w" + g2="parenright" + k="43" /> + <hkern g1="w" + g2="question" + k="-4" /> + <hkern g1="w" + g2="quotedbl,quotesingle" + k="-23" /> + <hkern g1="w" + g2="t" + k="-33" /> + <hkern g1="w" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="-8" /> + <hkern g1="w" + g2="comma,period,ellipsis" + k="84" /> + <hkern g1="w" + g2="germandbls" + k="2" /> + <hkern g1="w" + g2="quotesinglbase,quotedblbase" + k="84" /> + <hkern g1="w" + g2="slash" + k="43" /> + <hkern g1="w" + g2="x,uni0445,uni04B3" + k="-8" /> + <hkern g1="w" + g2="z,zcaron" + k="-10" /> + <hkern g1="w" + g2="exclamdown" + k="2" /> + <hkern g1="w" + g2="florin" + k="4" /> + <hkern g1="w" + g2="questiondown" + k="45" /> + <hkern g1="w" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="23" /> + <hkern g1="w" + g2="oslash" + k="23" /> + <hkern g1="w" + g2="hyphen,endash,emdash" + k="12" /> + <hkern g1="w" + g2="guilsinglleft" + k="23" /> + <hkern g1="w" + g2="plus" + k="2" /> + <hkern g1="w" + g2="divide" + k="2" /> + <hkern g1="w" + g2="asciicircum" + k="-4" /> + <hkern g1="w" + g2="bar" + k="-39" /> + <hkern g1="w" + g2="brokenbar" + k="-39" /> + <hkern g1="w" + g2="copyright,registered" + k="-18" /> + <hkern g1="w" + g2="f,fi,fl,f_f_i,f_f_l" + k="-33" /> + <hkern g1="w" + g2="greater" + k="-4" /> + <hkern g1="w" + g2="multiply" + k="-2" /> + <hkern g1="w" + g2="less" + k="2" /> + <hkern g1="x,uni0445,uni04B3" + g2="quoteright,quotedblright" + k="2" /> + <hkern g1="x,uni0445,uni04B3" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="10" /> + <hkern g1="x,uni0445,uni04B3" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-8" /> + <hkern g1="x,uni0445,uni04B3" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="2" /> + <hkern g1="x,uni0445,uni04B3" + g2="bracketright,braceright" + k="2" /> + <hkern g1="x,uni0445,uni04B3" + g2="colon,semicolon" + k="2" /> + <hkern g1="x,uni0445,uni04B3" + g2="quotedbl,quotesingle" + k="-18" /> + <hkern g1="x,uni0445,uni04B3" + g2="t" + k="-12" /> + <hkern g1="x,uni0445,uni04B3" + g2="w" + k="-8" /> + <hkern g1="x,uni0445,uni04B3" + g2="quotesinglbase,quotedblbase" + k="-20" /> + <hkern g1="x,uni0445,uni04B3" + g2="z,zcaron" + k="-39" /> + <hkern g1="x,uni0445,uni04B3" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="25" /> + <hkern g1="x,uni0445,uni04B3" + g2="oslash" + k="14" /> + <hkern g1="x,uni0445,uni04B3" + g2="hyphen,endash,emdash" + k="27" /> + <hkern g1="x,uni0445,uni04B3" + g2="guilsinglleft" + k="23" /> + <hkern g1="x,uni0445,uni04B3" + g2="copyright,registered" + k="2" /> + <hkern g1="x,uni0445,uni04B3" + g2="f,fi,fl,f_f_i,f_f_l" + k="-29" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="ampersand" + k="41" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="asterisk" + k="-4" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="at" + k="-18" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="backslash" + k="61" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="10" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="underscore" + k="102" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-8" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="31" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="bracketright,braceright" + k="10" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="colon,semicolon" + k="4" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="dagger" + k="-43" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="daggerdbl" + k="-43" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="paragraph" + k="-4" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="parenright" + k="10" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="question" + k="-20" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="quotedbl,quotesingle" + k="-20" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="t" + k="-14" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="-8" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="comma,period,ellipsis" + k="221" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="germandbls" + k="2" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="lslash" + k="2" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="quotesinglbase,quotedblbase" + k="141" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="slash" + k="31" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="exclamdown" + k="2" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="florin" + k="8" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="questiondown" + k="66" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="43" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="oslash" + k="33" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="hyphen,endash,emdash" + k="43" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="guilsinglleft" + k="23" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="periodcentered" + k="2" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="divide" + k="2" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="asciicircum" + k="-2" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="bar" + k="-29" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="brokenbar" + k="-23" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="copyright,registered" + k="-2" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="f,fi,fl,f_f_i,f_f_l" + k="-23" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="greater" + k="-8" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="multiply" + k="-4" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="section" + k="-2" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="s,scaron,uni0455" + k="18" /> + <hkern g1="z,zcaron" + g2="ampersand" + k="4" /> + <hkern g1="z,zcaron" + g2="asterisk" + k="-2" /> + <hkern g1="z,zcaron" + g2="backslash" + k="74" /> + <hkern g1="z,zcaron" + g2="trademark" + k="2" /> + <hkern g1="z,zcaron" + g2="underscore" + k="-20" /> + <hkern g1="z,zcaron" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-2" /> + <hkern g1="z,zcaron" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="-2" /> + <hkern g1="z,zcaron" + g2="dagger" + k="-23" /> + <hkern g1="z,zcaron" + g2="daggerdbl" + k="-23" /> + <hkern g1="z,zcaron" + g2="paragraph" + k="-2" /> + <hkern g1="z,zcaron" + g2="t" + k="-6" /> + <hkern g1="z,zcaron" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="-2" /> + <hkern g1="z,zcaron" + g2="w" + k="-2" /> + <hkern g1="z,zcaron" + g2="lslash" + k="-18" /> + <hkern g1="z,zcaron" + g2="quotesinglbase,quotedblbase" + k="-2" /> + <hkern g1="z,zcaron" + g2="slash" + k="-4" /> + <hkern g1="z,zcaron" + g2="x,uni0445,uni04B3" + k="-12" /> + <hkern g1="z,zcaron" + g2="z,zcaron" + k="-2" /> + <hkern g1="z,zcaron" + g2="questiondown" + k="-2" /> + <hkern g1="z,zcaron" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="2" /> + <hkern g1="z,zcaron" + g2="guilsinglleft" + k="18" /> + <hkern g1="z,zcaron" + g2="plus" + k="-2" /> + <hkern g1="z,zcaron" + g2="bar" + k="-29" /> + <hkern g1="z,zcaron" + g2="brokenbar" + k="-2" /> + <hkern g1="z,zcaron" + g2="f,fi,fl,f_f_i,f_f_l" + k="-8" /> + <hkern g1="z,zcaron" + g2="greater" + k="-4" /> + <hkern g1="ampersand" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="143" /> + <hkern g1="ampersand" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="20" /> + <hkern g1="ampersand" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="74" /> + <hkern g1="ampersand" + g2="Y,Yacute,Ydieresis,uni040E" + k="162" /> + <hkern g1="ampersand" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="4" /> + <hkern g1="ampersand" + g2="J" + k="-2" /> + <hkern g1="ampersand" + g2="Oslash" + k="2" /> + <hkern g1="ampersand" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="2" /> + <hkern g1="ampersand" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="8" /> + <hkern g1="asciicircum" + g2="Y,Yacute,Ydieresis,uni040E" + k="4" /> + <hkern g1="asciicircum" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="-20" /> + <hkern g1="asciicircum" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-2" /> + <hkern g1="asciicircum" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="51" /> + <hkern g1="asciicircum" + g2="Eth" + k="-2" /> + <hkern g1="asciicircum" + g2="f,fi,fl,f_f_i,f_f_l" + k="-8" /> + <hkern g1="asciicircum" + g2="w" + k="-4" /> + <hkern g1="asciitilde" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="141" /> + <hkern g1="asciitilde" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="8" /> + <hkern g1="asciitilde" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="41" /> + <hkern g1="asciitilde" + g2="Y,Yacute,Ydieresis,uni040E" + k="125" /> + <hkern g1="asciitilde" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="-20" /> + <hkern g1="asciitilde" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="41" /> + <hkern g1="asciitilde" + g2="Z,Zcaron" + k="2" /> + <hkern g1="asciitilde" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="-2" /> + <hkern g1="asciitilde" + g2="j" + k="2" /> + <hkern g1="asciitilde" + g2="z,zcaron" + k="2" /> + <hkern g1="at" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="51" /> + <hkern g1="at" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="2" /> + <hkern g1="at" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="41" /> + <hkern g1="at" + g2="Y,Yacute,Ydieresis,uni040E" + k="86" /> + <hkern g1="at" + g2="J" + k="25" /> + <hkern g1="at" + g2="Oslash" + k="2" /> + <hkern g1="at" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="2" /> + <hkern g1="at" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-27" /> + <hkern g1="at" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="70" /> + <hkern g1="at" + g2="Eth" + k="-18" /> + <hkern g1="at" + g2="f,fi,fl,f_f_i,f_f_l" + k="-2" /> + <hkern g1="at" + g2="w" + k="-27" /> + <hkern g1="at" + g2="Z,Zcaron" + k="39" /> + <hkern g1="at" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="4" /> + <hkern g1="at" + g2="z,zcaron" + k="-8" /> + <hkern g1="at" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="2" /> + <hkern g1="at" + g2="m,n,p,r,ntilde" + k="4" /> + <hkern g1="at" + g2="oslash" + k="4" /> + <hkern g1="at" + g2="s,scaron,uni0455" + k="2" /> + <hkern g1="bar" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="-39" /> + <hkern g1="bar" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-39" /> + <hkern g1="bar" + g2="Y,Yacute,Ydieresis,uni040E" + k="-20" /> + <hkern g1="bar" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-29" /> + <hkern g1="bar" + g2="w" + k="-39" /> + <hkern g1="bar" + g2="Z,Zcaron" + k="-2" /> + <hkern g1="bar" + g2="j" + k="-8" /> + <hkern g1="bar" + g2="z,zcaron" + k="-20" /> + <hkern g1="brokenbar" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="-41" /> + <hkern g1="brokenbar" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-39" /> + <hkern g1="brokenbar" + g2="Y,Yacute,Ydieresis,uni040E" + k="-20" /> + <hkern g1="brokenbar" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-23" /> + <hkern g1="brokenbar" + g2="w" + k="-39" /> + <hkern g1="brokenbar" + g2="Z,Zcaron" + k="-2" /> + <hkern g1="brokenbar" + g2="z,zcaron" + k="-2" /> + <hkern g1="copyright,registered" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="20" /> + <hkern g1="copyright,registered" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="4" /> + <hkern g1="copyright,registered" + g2="Y,Yacute,Ydieresis,uni040E" + k="57" /> + <hkern g1="copyright,registered" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="-18" /> + <hkern g1="copyright,registered" + g2="J" + k="2" /> + <hkern g1="copyright,registered" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="55" /> + <hkern g1="copyright,registered" + g2="Eth" + k="-18" /> + <hkern g1="copyright,registered" + g2="f,fi,fl,f_f_i,f_f_l" + k="-2" /> + <hkern g1="copyright,registered" + g2="w" + k="-18" /> + <hkern g1="copyright,registered" + g2="Z,Zcaron" + k="2" /> + <hkern g1="copyright,registered" + g2="z,zcaron" + k="8" /> + <hkern g1="copyright,registered" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="37" /> + <hkern g1="copyright,registered" + g2="Lslash" + k="-18" /> + <hkern g1="copyright,registered" + g2="V,uni0423,uni0474" + k="29" /> + <hkern g1="copyright,registered" + g2="X,uni0416,uni0425,uni046A" + k="45" /> + <hkern g1="copyright,registered" + g2="germandbls" + k="2" /> + <hkern g1="copyright,registered" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="-2" /> + <hkern g1="copyright,registered" + g2="x,uni0445,uni04B3" + k="2" /> + <hkern g1="dagger" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="-8" /> + <hkern g1="dagger" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-4" /> + <hkern g1="dagger" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="-2" /> + <hkern g1="dagger" + g2="J" + k="8" /> + <hkern g1="dagger" + g2="Oslash" + k="-2" /> + <hkern g1="dagger" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-43" /> + <hkern g1="dagger" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="63" /> + <hkern g1="dagger" + g2="f,fi,fl,f_f_i,f_f_l" + k="-8" /> + <hkern g1="dagger" + g2="w" + k="-80" /> + <hkern g1="dagger" + g2="Z,Zcaron" + k="-2" /> + <hkern g1="dagger" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="2" /> + <hkern g1="dagger" + g2="j" + k="-4" /> + <hkern g1="dagger" + g2="z,zcaron" + k="-4" /> + <hkern g1="dagger" + g2="S,Scaron,uni0405" + k="-2" /> + <hkern g1="dagger" + g2="b,h,k,l,thorn" + k="-2" /> + <hkern g1="daggerdbl" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="-8" /> + <hkern g1="daggerdbl" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-2" /> + <hkern g1="daggerdbl" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="-2" /> + <hkern g1="daggerdbl" + g2="J" + k="-2" /> + <hkern g1="daggerdbl" + g2="Oslash" + k="-2" /> + <hkern g1="daggerdbl" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-43" /> + <hkern g1="daggerdbl" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="2" /> + <hkern g1="daggerdbl" + g2="f,fi,fl,f_f_i,f_f_l" + k="-4" /> + <hkern g1="daggerdbl" + g2="w" + k="-80" /> + <hkern g1="daggerdbl" + g2="Z,Zcaron" + k="-2" /> + <hkern g1="daggerdbl" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="-2" /> + <hkern g1="daggerdbl" + g2="z,zcaron" + k="-4" /> + <hkern g1="daggerdbl" + g2="b,h,k,l,thorn" + k="-2" /> + <hkern g1="divide" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="115" /> + <hkern g1="divide" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="8" /> + <hkern g1="divide" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="43" /> + <hkern g1="divide" + g2="Y,Yacute,Ydieresis,uni040E" + k="104" /> + <hkern g1="divide" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="-2" /> + <hkern g1="divide" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="2" /> + <hkern g1="divide" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="23" /> + <hkern g1="divide" + g2="w" + k="2" /> + <hkern g1="divide" + g2="Z,Zcaron" + k="2" /> + <hkern g1="equal" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="61" /> + <hkern g1="equal" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="2" /> + <hkern g1="equal" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="20" /> + <hkern g1="equal" + g2="Y,Yacute,Ydieresis,uni040E" + k="63" /> + <hkern g1="equal" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="-2" /> + <hkern g1="equal" + g2="Oslash" + k="-2" /> + <hkern g1="equal" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="4" /> + <hkern g1="florin" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="78" /> + <hkern g1="florin" + g2="w" + k="18" /> + <hkern g1="florin" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="121" /> + <hkern g1="florin" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="119" /> + <hkern g1="florin" + g2="m,n,p,r,ntilde" + k="78" /> + <hkern g1="florin" + g2="oslash" + k="102" /> + <hkern g1="florin" + g2="s,scaron,uni0455" + k="57" /> + <hkern g1="florin" + g2="bracketright,braceright" + k="-43" /> + <hkern g1="florin" + g2="colon,semicolon" + k="39" /> + <hkern g1="florin" + g2="comma,period,ellipsis" + k="168" /> + <hkern g1="florin" + g2="guilsinglleft" + k="45" /> + <hkern g1="florin" + g2="hyphen,endash,emdash" + k="53" /> + <hkern g1="florin" + g2="quotedbl,quotesingle" + k="-82" /> + <hkern g1="florin" + g2="quoteleft,quotedblleft" + k="-80" /> + <hkern g1="florin" + g2="quoteright,quotedblright" + k="-82" /> + <hkern g1="florin" + g2="quotesinglbase,quotedblbase" + k="131" /> + <hkern g1="florin" + g2="t" + k="-2" /> + <hkern g1="greater" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="90" /> + <hkern g1="greater" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="8" /> + <hkern g1="greater" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="43" /> + <hkern g1="greater" + g2="Y,Yacute,Ydieresis,uni040E" + k="127" /> + <hkern g1="greater" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="-2" /> + <hkern g1="greater" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="43" /> + <hkern g1="greater" + g2="w" + k="2" /> + <hkern g1="greater" + g2="Z,Zcaron" + k="29" /> + <hkern g1="greater" + g2="S,Scaron,uni0405" + k="2" /> + <hkern g1="less" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="18" /> + <hkern g1="less" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-4" /> + <hkern g1="less" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="-20" /> + <hkern g1="less" + g2="Oslash" + k="-4" /> + <hkern g1="less" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-8" /> + <hkern g1="less" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="-4" /> + <hkern g1="less" + g2="Eth" + k="-2" /> + <hkern g1="less" + g2="w" + k="-4" /> + <hkern g1="less" + g2="Z,Zcaron" + k="-25" /> + <hkern g1="less" + g2="z,zcaron" + k="-4" /> + <hkern g1="less" + g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Ntilde,Thorn,IJ,uni01C4,uni01C7,uni01CA,uni01F1" + k="-18" /> + <hkern g1="multiply" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="74" /> + <hkern g1="multiply" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="2" /> + <hkern g1="multiply" + g2="Y,Yacute,Ydieresis,uni040E" + k="61" /> + <hkern g1="multiply" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="-2" /> + <hkern g1="multiply" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="2" /> + <hkern g1="multiply" + g2="w" + k="-2" /> + <hkern g1="multiply" + g2="Z,Zcaron" + k="-2" /> + <hkern g1="paragraph" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="-53" /> + <hkern g1="plus" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="104" /> + <hkern g1="plus" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="8" /> + <hkern g1="plus" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="61" /> + <hkern g1="plus" + g2="Y,Yacute,Ydieresis,uni040E" + k="106" /> + <hkern g1="plus" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="-2" /> + <hkern g1="plus" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="35" /> + <hkern g1="plus" + g2="Eth" + k="2" /> + <hkern g1="plus" + g2="w" + k="2" /> + <hkern g1="plus" + g2="Z,Zcaron" + k="37" /> + <hkern g1="plus" + g2="b,h,k,l,thorn" + k="4" /> + <hkern g1="trademark" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="-53" /> + <hkern g1="section" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="2" /> + <hkern g1="section" + g2="Y,Yacute,Ydieresis,uni040E" + k="2" /> + <hkern g1="section" + g2="Oslash" + k="2" /> + <hkern g1="section" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="2" /> + <hkern g1="asterisk" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="215" /> + <hkern g1="asterisk" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="8" /> + <hkern g1="asterisk" + g2="J" + k="102" /> + <hkern g1="asterisk" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="-41" /> + <hkern g1="asterisk" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-20" /> + <hkern g1="asterisk" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="53" /> + <hkern g1="asterisk" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="78" /> + <hkern g1="asterisk" + g2="s,scaron,uni0455" + k="18" /> + <hkern g1="asterisk" + g2="Y,Yacute,Ydieresis,uni040E" + k="2" /> + <hkern g1="asterisk" + g2="f,fi,fl,f_f_i,f_f_l" + k="-10" /> + <hkern g1="asterisk" + g2="oslash" + k="4" /> + <hkern g1="asterisk" + g2="w" + k="-2" /> + <hkern g1="asterisk" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-4" /> + <hkern g1="backslash" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="-4" /> + <hkern g1="backslash" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="76" /> + <hkern g1="backslash" + g2="J" + k="2" /> + <hkern g1="backslash" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="106" /> + <hkern g1="backslash" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="127" /> + <hkern g1="backslash" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="-18" /> + <hkern g1="backslash" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="35" /> + <hkern g1="backslash" + g2="Y,Yacute,Ydieresis,uni040E" + k="141" /> + <hkern g1="backslash" + g2="oslash" + k="4" /> + <hkern g1="backslash" + g2="w" + k="25" /> + <hkern g1="backslash" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="29" /> + <hkern g1="backslash" + g2="Oslash" + k="45" /> + <hkern g1="backslash" + g2="S,Scaron,uni0405" + k="14" /> + <hkern g1="backslash" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="49" /> + <hkern g1="backslash" + g2="Eth" + k="4" /> + <hkern g1="backslash" + g2="Z,Zcaron" + k="-2" /> + <hkern g1="backslash" + g2="t" + k="2" /> + <hkern g1="backslash" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="4" /> + <hkern g1="backslash" + g2="z,zcaron" + k="-2" /> + <hkern g1="braceright" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="18" /> + <hkern g1="braceright" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="37" /> + <hkern g1="braceright" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="18" /> + <hkern g1="braceright" + g2="Y,Yacute,Ydieresis,uni040E" + k="72" /> + <hkern g1="braceright" + g2="Z,Zcaron" + k="37" /> + <hkern g1="bracketleft,braceleft" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="2" /> + <hkern g1="bracketleft,braceleft" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="43" /> + <hkern g1="bracketleft,braceleft" + g2="J" + k="4" /> + <hkern g1="bracketleft,braceleft" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="-37" /> + <hkern g1="bracketleft,braceleft" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-37" /> + <hkern g1="bracketleft,braceleft" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="2" /> + <hkern g1="bracketleft,braceleft" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="29" /> + <hkern g1="bracketleft,braceleft" + g2="s,scaron,uni0455" + k="4" /> + <hkern g1="bracketleft,braceleft" + g2="Y,Yacute,Ydieresis,uni040E" + k="-72" /> + <hkern g1="bracketleft,braceleft" + g2="f,fi,fl,f_f_i,f_f_l" + k="25" /> + <hkern g1="bracketleft,braceleft" + g2="oslash" + k="23" /> + <hkern g1="bracketleft,braceleft" + g2="w" + k="41" /> + <hkern g1="bracketleft,braceleft" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="8" /> + <hkern g1="bracketleft,braceleft" + g2="Oslash" + k="43" /> + <hkern g1="bracketleft,braceleft" + g2="S,Scaron,uni0405" + k="2" /> + <hkern g1="bracketleft,braceleft" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="2" /> + <hkern g1="bracketleft,braceleft" + g2="t" + k="4" /> + <hkern g1="bracketleft,braceleft" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="4" /> + <hkern g1="bracketleft,braceleft" + g2="V,uni0423,uni0474" + k="-39" /> + <hkern g1="bracketleft,braceleft" + g2="X,uni0416,uni0425,uni046A" + k="-37" /> + <hkern g1="bracketleft,braceleft" + g2="florin" + k="-123" /> + <hkern g1="bracketleft,braceleft" + g2="j" + k="-111" /> + <hkern g1="bracketleft,braceleft" + g2="germandbls" + k="4" /> + <hkern g1="bracketleft,braceleft" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="4" /> + <hkern g1="bracketleft,braceleft" + g2="x,uni0445,uni04B3" + k="2" /> + <hkern g1="bullet" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="63" /> + <hkern g1="bullet" + g2="J" + k="18" /> + <hkern g1="bullet" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="147" /> + <hkern g1="bullet" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="78" /> + <hkern g1="bullet" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="18" /> + <hkern g1="bullet" + g2="Y,Yacute,Ydieresis,uni040E" + k="152" /> + <hkern g1="bullet" + g2="Z,Zcaron" + k="39" /> + <hkern g1="bullet" + g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Ntilde,Thorn,IJ,uni01C4,uni01C7,uni01CA,uni01F1" + k="18" /> + <hkern g1="colon,semicolon" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="2" /> + <hkern g1="colon,semicolon" + g2="J" + k="2" /> + <hkern g1="colon,semicolon" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="119" /> + <hkern g1="colon,semicolon" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="23" /> + <hkern g1="colon,semicolon" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="12" /> + <hkern g1="colon,semicolon" + g2="Y,Yacute,Ydieresis,uni040E" + k="129" /> + <hkern g1="colon,semicolon" + g2="f,fi,fl,f_f_i,f_f_l" + k="-2" /> + <hkern g1="colon,semicolon" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="2" /> + <hkern g1="colon,semicolon" + g2="S,Scaron,uni0405" + k="2" /> + <hkern g1="colon,semicolon" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="10" /> + <hkern g1="colon,semicolon" + g2="V,uni0423,uni0474" + k="86" /> + <hkern g1="colon,semicolon" + g2="X,uni0416,uni0425,uni046A" + k="4" /> + <hkern g1="colon,semicolon" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="2" /> + <hkern g1="colon,semicolon" + g2="x,uni0445,uni04B3" + k="2" /> + <hkern g1="comma,period,ellipsis" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="63" /> + <hkern g1="comma,period,ellipsis" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="209" /> + <hkern g1="comma,period,ellipsis" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="201" /> + <hkern g1="comma,period,ellipsis" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="2" /> + <hkern g1="comma,period,ellipsis" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="33" /> + <hkern g1="comma,period,ellipsis" + g2="Y,Yacute,Ydieresis,uni040E" + k="266" /> + <hkern g1="comma,period,ellipsis" + g2="f,fi,fl,f_f_i,f_f_l" + k="4" /> + <hkern g1="comma,period,ellipsis" + g2="oslash" + k="2" /> + <hkern g1="comma,period,ellipsis" + g2="w" + k="84" /> + <hkern g1="comma,period,ellipsis" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="182" /> + <hkern g1="comma,period,ellipsis" + g2="Oslash" + k="45" /> + <hkern g1="comma,period,ellipsis" + g2="S,Scaron,uni0405" + k="20" /> + <hkern g1="comma,period,ellipsis" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="55" /> + <hkern g1="comma,period,ellipsis" + g2="Eth" + k="4" /> + <hkern g1="comma,period,ellipsis" + g2="t" + k="43" /> + <hkern g1="comma,period,ellipsis" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="18" /> + <hkern g1="comma,period,ellipsis" + g2="V,uni0423,uni0474" + k="213" /> + <hkern g1="comma,period,ellipsis" + g2="X,uni0416,uni0425,uni046A" + k="2" /> + <hkern g1="comma,period,ellipsis" + g2="germandbls" + k="2" /> + <hkern g1="comma,period,ellipsis" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="180" /> + <hkern g1="comma,period,ellipsis" + g2="Lslash" + k="2" /> + <hkern g1="comma,period,ellipsis" + g2="b,h,k,l,thorn" + k="2" /> + <hkern g1="comma,period,ellipsis" + g2="lslash" + k="10" /> + <hkern g1="exclamdown" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="2" /> + <hkern g1="exclamdown" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="2" /> + <hkern g1="exclamdown" + g2="J" + k="2" /> + <hkern g1="exclamdown" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="156" /> + <hkern g1="exclamdown" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="25" /> + <hkern g1="exclamdown" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="4" /> + <hkern g1="exclamdown" + g2="Y,Yacute,Ydieresis,uni040E" + k="111" /> + <hkern g1="exclamdown" + g2="oslash" + k="2" /> + <hkern g1="exclamdown" + g2="w" + k="2" /> + <hkern g1="exclamdown" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="2" /> + <hkern g1="exclamdown" + g2="S,Scaron,uni0405" + k="2" /> + <hkern g1="exclamdown" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="23" /> + <hkern g1="exclamdown" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="2" /> + <hkern g1="exclamdown" + g2="j" + k="-63" /> + <hkern g1="exclamdown" + g2="i,igrave,iacute,icircumflex,idieresis,uni0469" + k="2" /> + <hkern g1="guilsinglleft" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="2" /> + <hkern g1="guilsinglleft" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="20" /> + <hkern g1="guilsinglleft" + g2="J" + k="-20" /> + <hkern g1="guilsinglleft" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="156" /> + <hkern g1="guilsinglleft" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="20" /> + <hkern g1="guilsinglleft" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="2" /> + <hkern g1="guilsinglleft" + g2="Y,Yacute,Ydieresis,uni040E" + k="72" /> + <hkern g1="guilsinglleft" + g2="f,fi,fl,f_f_i,f_f_l" + k="-23" /> + <hkern g1="guilsinglleft" + g2="oslash" + k="2" /> + <hkern g1="guilsinglleft" + g2="Oslash" + k="2" /> + <hkern g1="guilsinglleft" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="2" /> + <hkern g1="guilsinglleft" + g2="t" + k="-18" /> + <hkern g1="guilsinglleft" + g2="V,uni0423,uni0474" + k="80" /> + <hkern g1="guilsinglleft" + g2="X,uni0416,uni0425,uni046A" + k="61" /> + <hkern g1="guilsinglleft" + g2="florin" + k="4" /> + <hkern g1="guilsinglleft" + g2="j" + k="2" /> + <hkern g1="guilsinglleft" + g2="germandbls" + k="2" /> + <hkern g1="guilsinglleft" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="-37" /> + <hkern g1="guilsinglleft" + g2="lslash" + k="2" /> + <hkern g1="guilsinglright" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="63" /> + <hkern g1="guilsinglright" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="12" /> + <hkern g1="guilsinglright" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="244" /> + <hkern g1="guilsinglright" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="70" /> + <hkern g1="guilsinglright" + g2="Y,Yacute,Ydieresis,uni040E" + k="178" /> + <hkern g1="guilsinglright" + g2="w" + k="20" /> + <hkern g1="guilsinglright" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="2" /> + <hkern g1="guilsinglright" + g2="S,Scaron,uni0405" + k="2" /> + <hkern g1="guilsinglright" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="23" /> + <hkern g1="guilsinglright" + g2="Z,Zcaron" + k="57" /> + <hkern g1="guilsinglright" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="2" /> + <hkern g1="guilsinglright" + g2="z,zcaron" + k="2" /> + <hkern g1="guilsinglright" + g2="V,uni0423,uni0474" + k="125" /> + <hkern g1="guilsinglright" + g2="X,uni0416,uni0425,uni046A" + k="164" /> + <hkern g1="guilsinglright" + g2="florin" + k="66" /> + <hkern g1="guilsinglright" + g2="germandbls" + k="4" /> + <hkern g1="guilsinglright" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="23" /> + <hkern g1="guilsinglright" + g2="x,uni0445,uni04B3" + k="23" /> + <hkern g1="guilsinglright" + g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Ntilde,Thorn,IJ,uni01C4,uni01C7,uni01CA,uni01F1" + k="18" /> + <hkern g1="guilsinglright" + g2="b,h,k,l,thorn" + k="2" /> + <hkern g1="guilsinglright" + g2="lslash" + k="-37" /> + <hkern g1="hyphen,endash,emdash" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="45" /> + <hkern g1="hyphen,endash,emdash" + g2="J" + k="2" /> + <hkern g1="hyphen,endash,emdash" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="125" /> + <hkern g1="hyphen,endash,emdash" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="78" /> + <hkern g1="hyphen,endash,emdash" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="4" /> + <hkern g1="hyphen,endash,emdash" + g2="Y,Yacute,Ydieresis,uni040E" + k="168" /> + <hkern g1="hyphen,endash,emdash" + g2="w" + k="12" /> + <hkern g1="hyphen,endash,emdash" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="43" /> + <hkern g1="hyphen,endash,emdash" + g2="S,Scaron,uni0405" + k="18" /> + <hkern g1="hyphen,endash,emdash" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="8" /> + <hkern g1="hyphen,endash,emdash" + g2="Z,Zcaron" + k="86" /> + <hkern g1="hyphen,endash,emdash" + g2="t" + k="18" /> + <hkern g1="hyphen,endash,emdash" + g2="z,zcaron" + k="8" /> + <hkern g1="hyphen,endash,emdash" + g2="V,uni0423,uni0474" + k="117" /> + <hkern g1="hyphen,endash,emdash" + g2="X,uni0416,uni0425,uni046A" + k="90" /> + <hkern g1="hyphen,endash,emdash" + g2="j" + k="18" /> + <hkern g1="hyphen,endash,emdash" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="14" /> + <hkern g1="hyphen,endash,emdash" + g2="x,uni0445,uni04B3" + k="27" /> + <hkern g1="hyphen,endash,emdash" + g2="Lslash" + k="-98" /> + <hkern g1="hyphen,endash,emdash" + g2="lslash" + k="-78" /> + <hkern g1="parenleft" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="4" /> + <hkern g1="parenleft" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="43" /> + <hkern g1="parenleft" + g2="J" + k="31" /> + <hkern g1="parenleft" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="-37" /> + <hkern g1="parenleft" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-37" /> + <hkern g1="parenleft" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="8" /> + <hkern g1="parenleft" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="45" /> + <hkern g1="parenleft" + g2="s,scaron,uni0455" + k="6" /> + <hkern g1="parenleft" + g2="Y,Yacute,Ydieresis,uni040E" + k="-37" /> + <hkern g1="parenleft" + g2="f,fi,fl,f_f_i,f_f_l" + k="23" /> + <hkern g1="parenleft" + g2="oslash" + k="25" /> + <hkern g1="parenleft" + g2="w" + k="43" /> + <hkern g1="parenleft" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="10" /> + <hkern g1="parenleft" + g2="Oslash" + k="43" /> + <hkern g1="parenleft" + g2="S,Scaron,uni0405" + k="4" /> + <hkern g1="parenleft" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="2" /> + <hkern g1="parenleft" + g2="t" + k="4" /> + <hkern g1="parenleft" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="8" /> + <hkern g1="parenleft" + g2="z,zcaron" + k="2" /> + <hkern g1="parenleft" + g2="j" + k="-111" /> + <hkern g1="periodcentered" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="45" /> + <hkern g1="periodcentered" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="-2" /> + <hkern g1="periodcentered" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="102" /> + <hkern g1="periodcentered" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="59" /> + <hkern g1="periodcentered" + g2="Y,Yacute,Ydieresis,uni040E" + k="125" /> + <hkern g1="periodcentered" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="2" /> + <hkern g1="periodcentered" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="20" /> + <hkern g1="periodcentered" + g2="Z,Zcaron" + k="12" /> + <hkern g1="question" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="14" /> + <hkern g1="question" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="8" /> + <hkern g1="question" + g2="J" + k="4" /> + <hkern g1="question" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="43" /> + <hkern g1="question" + g2="Y,Yacute,Ydieresis,uni040E" + k="2" /> + <hkern g1="questiondown" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="-39" /> + <hkern g1="questiondown" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="84" /> + <hkern g1="questiondown" + g2="J" + k="4" /> + <hkern g1="questiondown" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="246" /> + <hkern g1="questiondown" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="127" /> + <hkern g1="questiondown" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="43" /> + <hkern g1="questiondown" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="45" /> + <hkern g1="questiondown" + g2="s,scaron,uni0455" + k="4" /> + <hkern g1="questiondown" + g2="Y,Yacute,Ydieresis,uni040E" + k="244" /> + <hkern g1="questiondown" + g2="f,fi,fl,f_f_i,f_f_l" + k="25" /> + <hkern g1="questiondown" + g2="oslash" + k="4" /> + <hkern g1="questiondown" + g2="w" + k="63" /> + <hkern g1="questiondown" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="25" /> + <hkern g1="questiondown" + g2="Oslash" + k="10" /> + <hkern g1="questiondown" + g2="S,Scaron,uni0405" + k="29" /> + <hkern g1="questiondown" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="66" /> + <hkern g1="questiondown" + g2="Eth" + k="10" /> + <hkern g1="questiondown" + g2="Z,Zcaron" + k="-2" /> + <hkern g1="questiondown" + g2="t" + k="29" /> + <hkern g1="questiondown" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="29" /> + <hkern g1="questiondown" + g2="j" + k="-86" /> + <hkern g1="questiondown" + g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Ntilde,Thorn,IJ,uni01C4,uni01C7,uni01CA,uni01F1" + k="2" /> + <hkern g1="questiondown" + g2="b,h,k,l,thorn" + k="18" /> + <hkern g1="questiondown" + g2="m,n,p,r,ntilde" + k="18" /> + <hkern g1="quotedbl,quotesingle" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="127" /> + <hkern g1="quotedbl,quotesingle" + g2="J" + k="72" /> + <hkern g1="quotedbl,quotesingle" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="-59" /> + <hkern g1="quotedbl,quotesingle" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-37" /> + <hkern g1="quotedbl,quotesingle" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="23" /> + <hkern g1="quotedbl,quotesingle" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="43" /> + <hkern g1="quotedbl,quotesingle" + g2="Y,Yacute,Ydieresis,uni040E" + k="-18" /> + <hkern g1="quotedbl,quotesingle" + g2="f,fi,fl,f_f_i,f_f_l" + k="-45" /> + <hkern g1="quotedbl,quotesingle" + g2="oslash" + k="43" /> + <hkern g1="quotedbl,quotesingle" + g2="w" + k="-23" /> + <hkern g1="quotedbl,quotesingle" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-20" /> + <hkern g1="quotedbl,quotesingle" + g2="V,uni0423,uni0474" + k="-39" /> + <hkern g1="quotedbl,quotesingle" + g2="X,uni0416,uni0425,uni046A" + k="-18" /> + <hkern g1="quotedbl,quotesingle" + g2="germandbls" + k="2" /> + <hkern g1="quotedbl,quotesingle" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="-23" /> + <hkern g1="quotedbl,quotesingle" + g2="x,uni0445,uni04B3" + k="-18" /> + <hkern g1="quoteleft,quotedblleft" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="225" /> + <hkern g1="quoteleft,quotedblleft" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="23" /> + <hkern g1="quoteleft,quotedblleft" + g2="J" + k="193" /> + <hkern g1="quoteleft,quotedblleft" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="-61" /> + <hkern g1="quoteleft,quotedblleft" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-39" /> + <hkern g1="quoteleft,quotedblleft" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="86" /> + <hkern g1="quoteleft,quotedblleft" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="80" /> + <hkern g1="quoteleft,quotedblleft" + g2="s,scaron,uni0455" + k="20" /> + <hkern g1="quoteleft,quotedblleft" + g2="Y,Yacute,Ydieresis,uni040E" + k="-37" /> + <hkern g1="quoteleft,quotedblleft" + g2="f,fi,fl,f_f_i,f_f_l" + k="16" /> + <hkern g1="quoteleft,quotedblleft" + g2="oslash" + k="43" /> + <hkern g1="quoteleft,quotedblleft" + g2="w" + k="-2" /> + <hkern g1="quoteleft,quotedblleft" + g2="Oslash" + k="4" /> + <hkern g1="quoteleft,quotedblleft" + g2="t" + k="-4" /> + <hkern g1="quoteleft,quotedblleft" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="18" /> + <hkern g1="quoteleft,quotedblleft" + g2="z,zcaron" + k="-2" /> + <hkern g1="quoteleft,quotedblleft" + g2="V,uni0423,uni0474" + k="-37" /> + <hkern g1="quoteleft,quotedblleft" + g2="X,uni0416,uni0425,uni046A" + k="-18" /> + <hkern g1="quoteleft,quotedblleft" + g2="florin" + k="16" /> + <hkern g1="quoteleft,quotedblleft" + g2="j" + k="-2" /> + <hkern g1="quoteleft,quotedblleft" + g2="i,igrave,iacute,icircumflex,idieresis,uni0469" + k="-2" /> + <hkern g1="quoteleft,quotedblleft" + g2="m,n,p,r,ntilde" + k="43" /> + <hkern g1="quoteright,quotedblright" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="225" /> + <hkern g1="quoteright,quotedblright" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="23" /> + <hkern g1="quoteright,quotedblright" + g2="J" + k="121" /> + <hkern g1="quoteright,quotedblright" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="-61" /> + <hkern g1="quoteright,quotedblright" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-39" /> + <hkern g1="quoteright,quotedblright" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="80" /> + <hkern g1="quoteright,quotedblright" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="127" /> + <hkern g1="quoteright,quotedblright" + g2="s,scaron,uni0455" + k="113" /> + <hkern g1="quoteright,quotedblright" + g2="Y,Yacute,Ydieresis,uni040E" + k="-37" /> + <hkern g1="quoteright,quotedblright" + g2="f,fi,fl,f_f_i,f_f_l" + k="-2" /> + <hkern g1="quoteright,quotedblright" + g2="oslash" + k="55" /> + <hkern g1="quoteright,quotedblright" + g2="w" + k="-2" /> + <hkern g1="quoteright,quotedblright" + g2="Oslash" + k="4" /> + <hkern g1="quoteright,quotedblright" + g2="S,Scaron,uni0405" + k="2" /> + <hkern g1="quoteright,quotedblright" + g2="Eth" + k="4" /> + <hkern g1="quoteright,quotedblright" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="2" /> + <hkern g1="quoteright,quotedblright" + g2="V,uni0423,uni0474" + k="-37" /> + <hkern g1="quoteright,quotedblright" + g2="X,uni0416,uni0425,uni046A" + k="-18" /> + <hkern g1="quoteright,quotedblright" + g2="florin" + k="14" /> + <hkern g1="quoteright,quotedblright" + g2="germandbls" + k="4" /> + <hkern g1="quoteright,quotedblright" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="-2" /> + <hkern g1="quoteright,quotedblright" + g2="Lslash" + k="8" /> + <hkern g1="quoteright,quotedblright" + g2="lslash" + k="53" /> + <hkern g1="quoteright,quotedblright" + g2="m,n,p,r,ntilde" + k="78" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="-57" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="104" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="J" + k="2" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="168" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="166" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="23" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="s,scaron,uni0455" + k="2" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="Y,Yacute,Ydieresis,uni040E" + k="229" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="f,fi,fl,f_f_i,f_f_l" + k="57" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="oslash" + k="2" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="w" + k="84" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="102" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="Oslash" + k="25" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="S,Scaron,uni0405" + k="23" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="86" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="Eth" + k="8" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="Z,Zcaron" + k="-2" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="t" + k="70" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="4" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="z,zcaron" + k="-2" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="V,uni0423,uni0474" + k="174" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="florin" + k="-43" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="j" + k="-29" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="germandbls" + k="2" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="86" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="x,uni0445,uni04B3" + k="-20" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Ntilde,Thorn,IJ,uni01C4,uni01C7,uni01CA,uni01F1" + k="2" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="lslash" + k="4" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="i,igrave,iacute,icircumflex,idieresis,uni0469" + k="2" /> + <hkern g1="slash" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="147" /> + <hkern g1="slash" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="76" /> + <hkern g1="slash" + g2="J" + k="236" /> + <hkern g1="slash" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="-78" /> + <hkern g1="slash" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-41" /> + <hkern g1="slash" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="227" /> + <hkern g1="slash" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="113" /> + <hkern g1="slash" + g2="s,scaron,uni0455" + k="168" /> + <hkern g1="slash" + g2="Y,Yacute,Ydieresis,uni040E" + k="-23" /> + <hkern g1="slash" + g2="f,fi,fl,f_f_i,f_f_l" + k="25" /> + <hkern g1="slash" + g2="oslash" + k="166" /> + <hkern g1="slash" + g2="w" + k="43" /> + <hkern g1="slash" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="23" /> + <hkern g1="slash" + g2="Oslash" + k="76" /> + <hkern g1="slash" + g2="S,Scaron,uni0405" + k="25" /> + <hkern g1="slash" + g2="Eth" + k="6" /> + <hkern g1="slash" + g2="t" + k="2" /> + <hkern g1="slash" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="88" /> + <hkern g1="slash" + g2="z,zcaron" + k="115" /> + <hkern g1="slash" + g2="m,n,p,r,ntilde" + k="119" /> + <hkern g1="underscore" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="-61" /> + <hkern g1="underscore" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="82" /> + <hkern g1="underscore" + g2="J" + k="8" /> + <hkern g1="underscore" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="84" /> + <hkern g1="underscore" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="94" /> + <hkern g1="underscore" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="43" /> + <hkern g1="underscore" + g2="Y,Yacute,Ydieresis,uni040E" + k="131" /> + <hkern g1="underscore" + g2="f,fi,fl,f_f_i,f_f_l" + k="20" /> + <hkern g1="underscore" + g2="oslash" + k="25" /> + <hkern g1="underscore" + g2="w" + k="82" /> + <hkern g1="underscore" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="80" /> + <hkern g1="underscore" + g2="Oslash" + k="61" /> + <hkern g1="underscore" + g2="S,Scaron,uni0405" + k="25" /> + <hkern g1="underscore" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="33" /> + <hkern g1="underscore" + g2="Eth" + k="2" /> + <hkern g1="underscore" + g2="Z,Zcaron" + k="-23" /> + <hkern g1="underscore" + g2="t" + k="39" /> + <hkern g1="underscore" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="33" /> + <hkern g1="underscore" + g2="z,zcaron" + k="-2" /> + <hkern g1="underscore" + g2="j" + k="-111" /> + <hkern g1="exclam" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="4" /> + <hkern g1="exclam" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="2" /> + <hkern g1="exclam" + g2="J" + k="2" /> + <hkern g1="exclam" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="4" /> + <hkern g1="exclam" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="4" /> + <hkern g1="exclam" + g2="S,Scaron,uni0405" + k="2" /> + <hkern g1="ordmasculine" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="53" /> + </font> +</defs></svg> diff --git a/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-Regular.ttf b/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-Regular.ttf new file mode 100755 index 0000000000000000000000000000000000000000..e24bcc69d829025de1259a2ebff5d30ddd51bbea Binary files /dev/null and b/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-Regular.ttf differ diff --git a/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-Regular.woff b/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-Regular.woff new file mode 100755 index 0000000000000000000000000000000000000000..f98582776ccb6ba5c81b41f6f3e8ddce256a48c9 Binary files /dev/null and b/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-Regular.woff differ diff --git a/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-Regular.woff2 b/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-Regular.woff2 new file mode 100755 index 0000000000000000000000000000000000000000..b72ad547a27b69bba0a8065dfba2a067f0de2f9d Binary files /dev/null and b/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-Regular.woff2 differ diff --git a/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-SemiBold.eot b/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-SemiBold.eot new file mode 100755 index 0000000000000000000000000000000000000000..120644547ee008ac95b8a573745276ac5f11f942 Binary files /dev/null and b/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-SemiBold.eot differ diff --git a/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-SemiBold.svg b/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-SemiBold.svg new file mode 100755 index 0000000000000000000000000000000000000000..6a59dff0da4ebe5b526f8ad5f39fdfc9f6f4fdf5 --- /dev/null +++ b/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-SemiBold.svg @@ -0,0 +1,9387 @@ +<?xml version="1.0" standalone="no"?> +<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" > +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1"> +<metadata> +Created by FontForge 20161013 at Sun Mar 19 13:47:55 2017 + By ,,, +Copyright (c)2015, HK Grotesk Latin by Alfredo Marco Pradil (ammpradil@gmail.com) and HK Grotesk Cyrillic by Stefan Peev (http://www.contextbg.net/). HK Grotesk is a trademark of Alfredo Marco Pradil. +</metadata> +<defs> +<font id="HKGrotesk-SemiBold" horiz-adv-x="0" > + <font-face + font-family="HK Grotesk SemiBold" + font-weight="600" + font-stretch="normal" + units-per-em="2048" + panose-1="0 0 7 0 0 0 0 0 0 0" + ascent="1434" + descent="-614" + x-height="999" + cap-height="1412" + bbox="-961 -517 2700 2240" + underline-thickness="82" + underline-position="-410" + unicode-range="U+0020-FB02" + /> +<missing-glyph horiz-adv-x="1124" +d="M153 0v954h819v-954h-819zM255 102h614v750h-614v-750z" /> + <glyph glyph-name="fi" unicode="fi" horiz-adv-x="1074" +d="M177 0v820h-153v179h154q0 94 22.5 171t69.5 137t127.5 93.5t189.5 33.5q62 0 113 -10.5t88.5 -30.5t58.5 -35t49 -39q6 -5 9 -8l-114 -160q-43 44 -89.5 67.5t-117.5 23.5q-108 0 -152.5 -63t-44.5 -180h539v-999h-205v820h-334v-820h-210z" /> + <glyph glyph-name="fl" unicode="fl" horiz-adv-x="1098" +d="M902 -20q-81 0 -131 53t-50 167v992q-69 54 -160 54q-83 0 -128.5 -38t-45.5 -110v-99h178v-179h-178v-820h-210v820h-153v179h154v108q0 149 108 238t282 89q189 0 358 -151v-1015q0 -61 16 -77.5t54 -16.5q22 0 54 8v-182q-86 -20 -148 -20z" /> + <glyph glyph-name="f_f_i" unicode="ffi" horiz-adv-x="1705" +d="M181 0v820h-157v179h157v88q0 105 54.5 185.5t143.5 121t197 40.5q182 0 307 -105q58 51 142 78t165 27q173 0 348 -122l-112 -161q-92 97 -228 97q-103 0 -156.5 -42.5t-53.5 -122.5v-84h572v-999h-204v820h-368v-820h-213v820h-382v-820h-212zM393 999h384v88 +q0 45 6 87q-75 83 -196 83q-95 0 -144.5 -46t-49.5 -128v-84z" /> + <glyph glyph-name="f_f_l" unicode="ffl" horiz-adv-x="1731" +d="M1534 -20q-83 0 -132 47t-49 151v1011q-55 53 -164 53q-91 0 -145 -42t-54 -127v-74h188v-179h-188v-820h-213v820h-384v-820h-214v820h-155v179h157v100q0 109 55 186.5t141.5 113t192.5 35.5q186 0 319 -118q50 61 132 89.5t177 28.5q125 0 207 -39t154 -111v-1045 +q0 -37 15.5 -51t45.5 -14q35 0 64 8v-182q-90 -20 -150 -20zM393 999h386q0 116 4 162q-75 81 -199 81q-94 0 -142.5 -42.5t-48.5 -115.5v-85z" /> + <glyph glyph-name=".notdef" horiz-adv-x="1124" +d="M153 0v954h819v-954h-819zM255 102h614v750h-614v-750z" /> + <glyph glyph-name=".null" + /> + <glyph glyph-name="nonmarkingreturn" horiz-adv-x="682" + /> + <glyph glyph-name="space" unicode=" " horiz-adv-x="507" + /> + <glyph glyph-name="exclam" unicode="!" horiz-adv-x="633" +d="M236 413l-29 1021h219l-28 -1021h-162zM195 0v242h244v-242h-244z" /> + <glyph glyph-name="quotedbl" unicode=""" horiz-adv-x="943" +d="M213 903v510h183v-510h-183zM546 903v510h184v-510h-184z" /> + <glyph glyph-name="numbersign" unicode="#" horiz-adv-x="1378" +d="M232 0l91 421h-236v154h268l58 284h-244v158h276l95 417h170l-96 -437h272l92 437h170l-94 -422h236v-153h-268l-58 -284h244v-158h-277l-92 -417h-168l92 436h-272l-90 -436h-169zM524 575h272l57 284h-271z" /> + <glyph glyph-name="dollar" unicode="$" horiz-adv-x="1125" +d="M477 -246v234q-162 25 -278 126.5t-142 264.5l216 50q14 -118 98.5 -180.5t209.5 -62.5q119 0 184.5 52.5t65.5 158.5q0 47 -23.5 85.5t-62.5 66t-90 52.5t-107.5 48t-113 48.5t-107.5 59t-90 74.5t-62.5 99.5t-23.5 129.5q0 145 92.5 243t233.5 125v231h171v-227 +q232 -32 340 -229l-179 -108q-38 71 -101.5 107.5t-139.5 36.5q-81 0 -137.5 -47t-56.5 -120q0 -56 37.5 -99.5t97.5 -73.5t132.5 -58.5t145 -65t132.5 -82.5t97.5 -120t37.5 -169q0 -175 -115 -289t-291 -131v-230h-171z" /> + <glyph glyph-name="percent" unicode="%" horiz-adv-x="1551" +d="M286 -13l779 1452h186l-778 -1452h-187zM366 779q-61 0 -109.5 22t-78 56t-49.5 79t-28 87t-8 84q0 54 13.5 107t42 105t83.5 84.5t128 32.5q68 0 121.5 -29.5t85.5 -78.5t48.5 -106t16.5 -117q0 -80 -27 -152t-89.5 -123t-149.5 -51zM362 929q52 0 81.5 53t29.5 125 +q0 73 -30 125t-83 52q-54 0 -83.5 -51.5t-29.5 -125.5t30 -126t85 -52zM1193 -6q-61 0 -109.5 22t-78 56.5t-49.5 79.5t-28 87.5t-8 84.5q0 54 13.5 108t42 106.5t83.5 85t128 32.5q68 0 122 -29.5t85.5 -78.5t48 -106.5t16.5 -117.5t-16 -117t-47 -105.5t-84 -78 +t-119 -29.5zM1191 143q51 0 80.5 54.5t29.5 128.5t-30 126.5t-84 52.5q-53 0 -83 -52.5t-30 -128.5q0 -75 30.5 -128t86.5 -53z" /> + <glyph glyph-name="ampersand" unicode="&" horiz-adv-x="1380" +d="M1309 63l-149 -132l-188 217q-181 -170 -433 -170q-193 0 -318.5 90.5t-125.5 252.5q0 63 19 119.5t48.5 99.5t76 86t89 73t100.5 65q-33 36 -56 65.5t-54 76.5t-47.5 98t-16.5 101q0 98 55 173.5t140 113.5t181 38q148 0 252.5 -93.5t104.5 -229.5q0 -62 -20.5 -117 +t-59.5 -102t-81.5 -83t-101.5 -76l230 -262q41 103 46 228l205 -22q-12 -203 -109 -368zM457 1102q0 -93 132 -242q100 62 152.5 118t52.5 126q0 66 -45 111t-117 45t-123.5 -42t-51.5 -116zM536 162q186 0 311 131l-288 332q-62 -39 -102 -68t-80.5 -67.5t-60 -81 +t-19.5 -89.5q0 -78 66 -117.5t173 -39.5z" /> + <glyph glyph-name="quotesingle" unicode="'" horiz-adv-x="609" +d="M213 932v510h183v-510h-183z" /> + <glyph glyph-name="parenleft" unicode="(" horiz-adv-x="569" +d="M353 -96q-110 117 -177 348.5t-67 453.5q0 256 63 462.5t177 336.5h191q-260 -326 -260 -803q0 -248 62 -435.5t196 -362.5h-185z" /> + <glyph glyph-name="parenright" unicode=")" horiz-adv-x="569" +d="M31 -96q134 175 196.5 363.5t62.5 435.5q0 474 -261 802h191q114 -129 177 -334.5t63 -463.5q0 -223 -66.5 -455t-176.5 -348h-186z" /> + <glyph glyph-name="asterisk" unicode="*" horiz-adv-x="891" +d="M331 839l-137 91l162 172l-234 34l53 150l216 -87l-30 214h169l-29 -214l216 87l52 -150l-234 -34l162 -172l-137 -91l-115 216z" /> + <glyph glyph-name="plus" unicode="+" horiz-adv-x="1257" +d="M547 106v438h-456v162h456v437h163v-437h456v-162h-456v-438h-163z" /> + <glyph glyph-name="comma" unicode="," horiz-adv-x="629" +d="M126 -310l138 574h254l-251 -574h-141z" /> + <glyph glyph-name="hyphen" unicode="-" horiz-adv-x="857" +d="M147 530v162h562v-162h-562z" /> + <glyph glyph-name="period" unicode="." horiz-adv-x="652" +d="M210 0v242h231v-242h-231z" /> + <glyph glyph-name="slash" unicode="/" horiz-adv-x="932" +d="M-22 -430l772 1946h204l-772 -1946h-204z" /> + <glyph glyph-name="zero" unicode="0" horiz-adv-x="1178" +d="M599 -20q-122 0 -220.5 47t-160 121t-103 172t-58.5 194t-17 193t16.5 193.5t57 195t100.5 172.5t156 121t215 47q110 0 202.5 -42t156.5 -113t109.5 -165.5t66.5 -198.5t21 -213q0 -108 -21 -211.5t-65 -196.5t-106.5 -163t-153 -111.5t-196.5 -41.5zM593 189 +q82 0 145.5 48.5t99.5 127.5t53.5 166.5t17.5 177.5q0 73 -10.5 143.5t-35.5 138t-61.5 118.5t-92.5 82t-124 31t-124 -31.5t-92.5 -82.5t-61.5 -119t-35.5 -138.5t-10.5 -143.5q0 -92 18 -179.5t55.5 -165.5t104 -125.5t154.5 -47.5z" /> + <glyph glyph-name="one" unicode="1" horiz-adv-x="1178" +d="M563 0v1048h-374v171h227q75 0 116.5 42t41.5 117v35h210v-1413h-221z" /> + <glyph glyph-name="two" unicode="2" horiz-adv-x="1178" +d="M57 0v182q321 207 507 391q115 117 177 221t62 213q0 102 -55 163t-158 61q-86 0 -145 -46t-84 -114.5t-29 -155.5l-219 16q0 137 55.5 250t165 182t253.5 69q194 0 318 -116t124 -298q0 -151 -88 -295.5t-239 -291.5q-143 -140 -289 -231h686v-200h-1042z" /> + <glyph glyph-name="three" unicode="3" horiz-adv-x="1178" +d="M571 -20q-105 0 -196.5 28.5t-162.5 83.5t-111.5 142.5t-40.5 197.5l211 14q0 -122 85.5 -192.5t215.5 -70.5q79 0 144.5 26t108 82.5t42.5 135.5q0 107 -72.5 167.5t-191.5 60.5h-144v189h144q90 0 138 50t48 134q0 95 -62.5 147.5t-158.5 52.5q-102 0 -166 -58 +t-65 -157l-210 16q0 186 126 295.5t312 109.5q117 0 215.5 -44t160 -132t61.5 -203q0 -88 -35.5 -163.5t-100.5 -125.5q105 -50 157 -141.5t55 -208.5q0 -106 -41 -190.5t-111.5 -137.5t-161 -80.5t-193.5 -27.5z" /> + <glyph glyph-name="four" unicode="4" horiz-adv-x="1178" +d="M672 0v347h-653v130l683 936h190v-865h226v-201h-226v-347h-220zM302 548h370v523z" /> + <glyph glyph-name="five" unicode="5" horiz-adv-x="1178" +d="M582 -20q-183 0 -319 119.5t-175 298.5l205 60q11 -54 31.5 -100t53.5 -88t85 -66.5t118 -24.5q123 0 200 90t77 208t-73 200t-200 82q-76 0 -145 -37t-109 -102l-200 59l133 734h758v-204h-583l-59 -324q103 71 237 71q130 0 238 -65.5t169.5 -175.5t61.5 -240 +q0 -131 -67 -245t-183.5 -182t-253.5 -68z" /> + <glyph glyph-name="six" unicode="6" horiz-adv-x="1178" +d="M592 -20q-136 0 -251 64.5t-181.5 175t-66.5 241.5q0 137 73 249l420 703h254l-307 -484q28 4 60 4q136 0 250.5 -59.5t182 -166.5t67.5 -239q0 -129 -63.5 -240.5t-179.5 -179.5t-258 -68zM593 187q116 0 199 82t83 197t-83 196.5t-199 81.5q-117 0 -200 -81.5 +t-83 -196.5t83 -197t200 -82z" /> + <glyph glyph-name="seven" unicode="7" horiz-adv-x="1178" +d="M223 0l600 1211h-727v202h995v-113l-621 -1300h-247z" /> + <glyph glyph-name="eight" unicode="8" horiz-adv-x="1178" +d="M589 -20q-102 0 -192 26.5t-161.5 77.5t-113 132.5t-41.5 183.5q0 121 57.5 214.5t161.5 148.5q-147 109 -147 292q0 116 62 204t159.5 131.5t214.5 43.5q86 0 164.5 -26t139 -73t96.5 -119t36 -159q0 -90 -38.5 -166t-107.5 -128q105 -56 161 -149t56 -212 +q0 -103 -42 -185.5t-113 -133t-161 -77t-191 -26.5zM593 843q96 0 158 54t62 147q0 95 -62 149t-158 54q-92 0 -156 -51.5t-64 -144.5q0 -94 60 -151t160 -57zM587 169q123 0 205 63.5t82 180.5q0 115 -81 180t-206 65q-126 0 -206.5 -64.5t-80.5 -179.5q0 -118 82.5 -181.5 +t204.5 -63.5z" /> + <glyph glyph-name="nine" unicode="9" horiz-adv-x="1178" +d="M338 0l307 484q-28 -4 -61 -4q-208 0 -353.5 133t-145.5 332q0 96 38 185.5t103 156.5t159.5 107t200.5 40q136 0 251 -64.5t181.5 -175.5t66.5 -242q0 -137 -73 -249l-421 -703h-253zM584 669q117 0 200 81.5t83 196.5t-83 197t-200 82q-116 0 -198.5 -82t-82.5 -197 +t82.5 -196.5t198.5 -81.5z" /> + <glyph glyph-name="colon" unicode=":" horiz-adv-x="674" +d="M215 712v242h244v-242h-244zM215 0v242h244v-242h-244z" /> + <glyph glyph-name="semicolon" unicode=";" horiz-adv-x="658" +d="M219 712v242h244v-242h-244zM114 -310l138 574h254l-251 -574h-141z" /> + <glyph glyph-name="less" unicode="<" horiz-adv-x="1229" +d="M1021 157l-958 517l958 516l92 -159l-700 -357l700 -358z" /> + <glyph glyph-name="equal" unicode="=" horiz-adv-x="1266" +d="M229 759v185h808v-185h-808zM229 400v185h808v-185h-808z" /> + <glyph glyph-name="greater" unicode=">" horiz-adv-x="1229" +d="M208 157l-92 159l700 358l-700 357l92 159l958 -516z" /> + <glyph glyph-name="question" unicode="?" horiz-adv-x="1005" +d="M402 409v172q0 64 18.5 112t48 76t65 50t71 41t65 41.5t48 59.5t18.5 88q0 102 -66 153t-176 51q-117 0 -179 -62t-62 -178h-193q0 195 117.5 308t307.5 113q121 0 219.5 -43t160.5 -132.5t62 -212.5q0 -73 -19 -130t-48.5 -92.5t-66 -62.5t-73 -46.5t-66 -37.5 +t-48.5 -42.5t-19 -55.5v-170h-185zM375 0v242h245v-242h-245z" /> + <glyph glyph-name="at" unicode="@" horiz-adv-x="2031" +d="M1008 -348q-183 0 -345.5 61t-284 170.5t-192 274t-70.5 361.5q0 190 66 357.5t183.5 290.5t288.5 194t371 71t370 -71t283.5 -191.5t177 -281t63.5 -339.5q0 -94 -17 -182.5t-54 -168t-90 -138.5t-129.5 -94t-168.5 -35q-129 0 -201 66t-75 182q-61 -62 -139.5 -95.5 +t-160.5 -33.5q-107 0 -183 56t-111 143t-35 194q0 81 20 166t61 164.5t97 142t134 100.5t166 38q94 0 162.5 -41.5t100.5 -110.5l21 103h182q-14 -73 -54.5 -239.5t-68 -303.5t-27.5 -224q0 -69 22.5 -95.5t82.5 -26.5q77 0 135.5 39.5t91 105t48 139.5t15.5 153 +q0 143 -50 271t-140.5 225t-227 154t-299.5 57q-219 0 -388 -99t-258.5 -266t-89.5 -372q0 -160 57.5 -292t156 -218t228.5 -132.5t277 -46.5q124 0 243 39l63 -168q-144 -53 -308 -53zM901 230q63 0 118.5 27.5t94 72.5t66.5 103t41.5 119t13.5 119q0 202 -174 202 +q-79 0 -145 -41t-107 -106.5t-63 -140.5t-22 -148q0 -207 177 -207z" /> + <glyph glyph-name="A" unicode="A" horiz-adv-x="1332" +d="M28 0l555 1413h169l552 -1413h-242l-109 307h-571l-110 -307h-244zM458 502h420l-210 582z" /> + <glyph glyph-name="B" unicode="B" horiz-adv-x="1264" +d="M191 0v1413h459q68 0 131 -12t122.5 -40t103 -69.5t70 -106t26.5 -143.5q0 -98 -47.5 -173.5t-118.5 -115.5q103 -42 169 -139.5t66 -214.5q0 -78 -25 -144t-68 -112.5t-101.5 -79t-125 -48t-137.5 -15.5h-524zM415 827h252q46 0 84.5 10t71 32t50.5 62t18 95 +q0 94 -65.5 139.5t-171.5 45.5h-239v-384zM415 212h304q109 0 171 50.5t62 159.5q0 97 -66.5 153.5t-172.5 56.5h-298v-420z" /> + <glyph glyph-name="C" unicode="C" horiz-adv-x="1428" +d="M762 -20q-165 0 -294.5 58.5t-209.5 159.5t-121.5 231t-41.5 279q0 118 25 224.5t78.5 199t131.5 160t189.5 106t245.5 38.5q208 0 364 -101t238 -296l-209 -84q-40 140 -145 204.5t-252 64.5q-92 0 -166.5 -26.5t-125.5 -73t-85.5 -111t-50.5 -139t-16 -159.5 +q0 -112 26 -205t79 -165.5t140.5 -113t202.5 -40.5q143 0 241.5 64t154.5 209l208 -86q-83 -192 -240.5 -295t-366.5 -103z" /> + <glyph glyph-name="D" unicode="D" horiz-adv-x="1408" +d="M191 0v1413h395q354 0 541 -185t187 -532q0 -332 -189.5 -514t-540.5 -182h-393zM416 206h143q531 0 531 501q0 260 -121.5 380.5t-386.5 120.5h-166v-1002z" /> + <glyph glyph-name="E" unicode="E" horiz-adv-x="1243" +d="M191 0v1413h933v-203h-708v-402h644v-202h-644v-396h708v-210h-933z" /> + <glyph glyph-name="F" unicode="F" horiz-adv-x="1223" +d="M191 0v1413h972v-203h-747v-402h659v-202h-659v-606h-225z" /> + <glyph glyph-name="G" unicode="G" horiz-adv-x="1526" +d="M764 -20q-166 0 -296 58.5t-210 159.5t-121.5 230.5t-41.5 278.5q0 118 25.5 225t79 199.5t131 160t188 106t243.5 38.5q206 0 362.5 -102t240.5 -295l-200 -84q-53 140 -157.5 211t-247.5 71q-112 0 -199 -42t-139 -115.5t-78.5 -165t-26.5 -197.5q0 -112 26.5 -207 +t79 -169.5t140 -116.5t201.5 -42q164 0 280 105t131 282h-322v180h538v-749h-180l-15 217q-55 -106 -169 -171.5t-263 -65.5z" /> + <glyph glyph-name="H" unicode="H" horiz-adv-x="1480" +d="M191 0v1413h225v-605h648v605h224v-1413h-224v606h-648v-606h-225z" /> + <glyph glyph-name="I" unicode="I" horiz-adv-x="607" +d="M191 0v1413h225v-1413h-225z" /> + <glyph glyph-name="J" unicode="J" horiz-adv-x="1133" +d="M505 -20q-102 0 -187 35.5t-142.5 96.5t-91.5 141.5t-40 172.5l220 27q8 -117 67.5 -192.5t173.5 -75.5q72 0 120.5 21.5t73.5 65.5t35 97.5t10 129.5v711h-533v203h757v-906q0 -118 -25.5 -211.5t-79.5 -165.5t-144.5 -111t-213.5 -39z" /> + <glyph glyph-name="K" unicode="K" horiz-adv-x="1479" +d="M191 0v1413h225v-766l717 766h298l-556 -572l573 -841h-277l-450 690l-305 -316v-374h-225z" /> + <glyph glyph-name="L" unicode="L" horiz-adv-x="1055" +d="M191 0v1413h225v-1203h604v-210h-829z" /> + <glyph glyph-name="M" unicode="M" horiz-adv-x="1787" +d="M191 0v1413h316l385 -1046l387 1046h316v-1413h-216v1125l-374 -1002h-223l-373 1002v-1125h-218z" /> + <glyph glyph-name="N" unicode="N" horiz-adv-x="1443" +d="M191 0v1413h245l599 -1069v1069h216v-1413h-247l-595 1071v-1071h-218z" /> + <glyph glyph-name="O" unicode="O" horiz-adv-x="1524" +d="M761 -20q-133 0 -243.5 38.5t-188 105.5t-131 159.5t-78.5 199t-25 224.5t25 224.5t78.5 198.5t131 159.5t188 106t243.5 38.5q134 0 245 -38.5t188 -106t131 -159.5t79 -198.5t25 -224.5t-25 -224.5t-79 -199t-131.5 -159.5t-188 -105.5t-244.5 -38.5zM761 180 +q114 0 200.5 42.5t136.5 117.5t74.5 167t24.5 200q0 86 -14.5 161.5t-48 143t-83 116t-124 77t-166.5 28.5t-165.5 -28.5t-123 -77t-82.5 -116t-47.5 -143t-14.5 -161.5q0 -108 24 -200t74 -167t135.5 -117.5t199.5 -42.5z" /> + <glyph glyph-name="P" unicode="P" horiz-adv-x="1161" +d="M191 0v1413h429q217 0 350.5 -109t133.5 -300t-133 -296.5t-351 -105.5h-206v-602h-223zM414 809h206q262 0 262 195q0 98 -65.5 150t-196.5 52h-206v-397z" /> + <glyph glyph-name="Q" unicode="Q" horiz-adv-x="1564" +d="M1342 -112l-199 202q-154 -110 -382 -110q-133 0 -243.5 38.5t-188 105.5t-131 159.5t-78.5 199t-25 224.5t25 224.5t78.5 198.5t131 159.5t188 106t243.5 38.5q134 0 245 -38.5t188 -106t131 -160t79 -199.5t25 -225q0 -140 -37 -266.5t-107 -220.5l200 -194zM761 189 +q130 0 224 54l-195 185l141 133l193 -183q81 135 81 329q0 107 -25.5 198t-77.5 163.5t-139 114t-202 41.5q-114 0 -201 -41.5t-138.5 -114t-77 -163.5t-25.5 -198t25.5 -198.5t77 -164t138.5 -114t201 -41.5z" /> + <glyph glyph-name="R" unicode="R" horiz-adv-x="1253" +d="M191 -2v1415h441q131 0 238 -47.5t172 -142t65 -219.5q0 -134 -78 -232t-206 -136l390 -638h-258l-350 615h-189v-615h-225zM418 801h237q106 5 168 58t62 142q0 98 -68 154.5t-183 56.5h-216v-411z" /> + <glyph glyph-name="S" unicode="S" horiz-adv-x="1128" +d="M581 -16q-93 0 -179 25.5t-158 74.5t-121.5 127t-65.5 177l219 57q14 -129 99 -195.5t209 -66.5q117 0 183.5 55t66.5 148q0 50 -23.5 90.5t-63 69t-90.5 53t-108 47.5t-113.5 47.5t-107.5 57.5t-90.5 73t-63 99t-23.5 131q0 174 122 277t300 103q134 0 242.5 -59.5 +t176.5 -180.5l-183 -113q-38 75 -102 115t-140 40q-81 0 -137 -47t-56 -122q0 -45 23.5 -81.5t63 -62.5t90.5 -49.5t108 -46t113.5 -47.5t107.5 -59.5t90.5 -76.5t63 -103.5t23.5 -135.5q0 -127 -64 -224t-171.5 -147t-240.5 -50z" /> + <glyph glyph-name="T" unicode="T" horiz-adv-x="1197" +d="M486 0v1216h-453v197h1131v-197h-453v-1216h-225z" /> + <glyph glyph-name="U" unicode="U" horiz-adv-x="1372" +d="M686 -20q-136 0 -238 41t-164.5 117t-93 177t-30.5 226v872h225v-839q0 -188 66.5 -283t234.5 -95t235 95.5t67 282.5v839h224v-862q0 -129 -30.5 -232t-93 -179.5t-164.5 -118t-238 -41.5z" /> + <glyph glyph-name="V" unicode="V" horiz-adv-x="1337" +d="M583 0l-555 1413h245l398 -1064l396 1064h242l-552 -1413h-174z" /> + <glyph glyph-name="W" unicode="W" horiz-adv-x="1994" +d="M456 0l-416 1413h232l312 -1096l325 1014h175l326 -1014l311 1096h233l-416 -1413h-223l-317 975l-319 -975h-223z" /> + <glyph glyph-name="X" unicode="X" horiz-adv-x="1317" +d="M39 0l472 707l-470 706h268l350 -557l351 557h266l-469 -706l471 -707h-266l-355 549l-350 -549h-268z" /> + <glyph glyph-name="Y" unicode="Y" horiz-adv-x="1318" +d="M545 0v551l-530 862h269l373 -643l376 643h270l-528 -862v-551h-230z" /> + <glyph glyph-name="Z" unicode="Z" horiz-adv-x="1272" +d="M68 0v160l822 1050h-777v203h1078v-167l-818 -1043h818v-203h-1123z" /> + <glyph glyph-name="bracketleft" unicode="[" horiz-adv-x="638" +d="M185 -142v1693h410v-139h-236v-1412h236v-142h-410z" /> + <glyph glyph-name="backslash" unicode="\" horiz-adv-x="932" +d="M750 -430l-772 1946h204l772 -1946h-204z" /> + <glyph glyph-name="bracketright" unicode="]" horiz-adv-x="638" +d="M44 -142v142h235v1412h-235v139h410v-1693h-410z" /> + <glyph glyph-name="asciicircum" unicode="^" horiz-adv-x="979" +d="M82 816l406 660l409 -660h-216l-193 311l-190 -311h-216z" /> + <glyph glyph-name="underscore" unicode="_" horiz-adv-x="1244" +d="M208 -162v162h828v-162h-828z" /> + <glyph glyph-name="grave" unicode="`" horiz-adv-x="534" +d="M319 1110l-292 303h239l223 -303h-170z" /> + <glyph glyph-name="a" unicode="a" horiz-adv-x="1050" +d="M413 -20q-154 0 -252.5 85t-98.5 233q0 290 411 290h250q0 114 -53.5 179.5t-158.5 65.5q-85 0 -147.5 -41t-100.5 -103l-163 119q156 212 407 212q197 0 308 -113t111 -299v-608h-177l-13 159q-110 -179 -323 -179zM442 161q116 0 197.5 82.5t83.5 188.5h-236 +q-101 0 -153 -37.5t-52 -103.5q0 -61 43.5 -95.5t116.5 -34.5z" /> + <glyph glyph-name="b" unicode="b" horiz-adv-x="1161" +d="M667 -20q-90 0 -166.5 33.5t-126.5 98.5v-112h-219v1413h219v-525q102 132 290 132q132 0 230 -72.5t145.5 -188.5t47.5 -259q0 -142 -47.5 -258.5t-144.5 -189t-228 -72.5zM613 174q127 0 192.5 92t65.5 234t-65.5 235t-192.5 93t-192.5 -92.5t-65.5 -235.5t65.5 -234.5 +t192.5 -91.5z" /> + <glyph glyph-name="c" unicode="c" horiz-adv-x="994" +d="M536 -20q-114 0 -205 43t-147.5 116t-86 165t-29.5 194q0 80 18 155.5t56 142.5t92 116.5t131.5 78.5t168.5 29q146 0 255 -73t164 -213l-203 -81q-21 79 -79 127t-137 48q-52 0 -94.5 -19t-70.5 -51t-47 -75t-27.5 -89.5t-8.5 -95.5q0 -64 13.5 -120t41.5 -103.5 +t77.5 -75.5t115.5 -28q78 0 136.5 47t79.5 124l192 -75q-47 -135 -154 -211t-252 -76z" /> + <glyph glyph-name="d" unicode="d" horiz-adv-x="1158" +d="M786 1413h218v-1413h-202l-9 119q-102 -139 -297 -139q-132 0 -229.5 72t-145 188.5t-47.5 259.5q0 142 47.5 258.5t144.5 189t227 72.5q90 0 166.5 -33.5t126.5 -98.5v525zM549 171q128 0 191.5 92t63.5 237q0 144 -64 236t-191 92t-192 -93t-65 -235q0 -144 65 -236.5 +t192 -92.5z" /> + <glyph glyph-name="e" unicode="e" horiz-adv-x="1058" +d="M555 -18q-120 0 -215.5 42t-154 114t-88.5 163t-30 194q0 101 29 193t85 166.5t148.5 119t209.5 44.5q99 0 178 -30.5t128.5 -80t83 -116t47 -134t13.5 -138.5q0 -64 -7 -90h-689q11 -116 76.5 -185t186.5 -69q155 0 252 106l148 -127q-160 -172 -401 -172zM293 588h487 +q-10 116 -71.5 183.5t-171.5 67.5t-169.5 -69t-74.5 -182z" /> + <glyph glyph-name="f" unicode="f" horiz-adv-x="685" +d="M206 0v820h-182v179h184v144q0 136 88 213.5t216 77.5q90 0 175 -40l-66 -175q-49 26 -90 26q-47 0 -76 -30t-29 -91v-125h250v-179h-250v-820h-220z" /> + <glyph glyph-name="g" unicode="g" horiz-adv-x="1041" +d="M579 147q49 -6 83 -12t79 -17t75.5 -24.5t63 -35.5t51.5 -49t31.5 -66t12.5 -87q0 -157 -121 -240.5t-308 -83.5q-209 0 -332.5 99t-123.5 252q0 19 4 41l117 109q-108 67 -108 200q0 117 87 194q-83 97 -83 229q0 159 116 260.5t282 101.5q139 0 245 -72l151 132 +l113 -141l-150 -120q41 -79 41 -170q0 -161 -113.5 -259.5t-280.5 -98.5q-102 0 -189 39q-34 -23 -34 -60q0 -59 84 -86q45 -14 207 -35zM510 851q-84 0 -133 -55t-49 -140q0 -86 48.5 -139t133.5 -53q86 0 134 52.5t48 139.5q0 86 -48.5 140.5t-133.5 54.5zM551 -295 +q99 0 161 33.5t62 94.5q0 21 -6.5 37t-24 27.5t-33.5 19t-49 14t-56 10t-69 9.5q-20 3 -30 4q-116 16 -161 27l-71 -103q7 -79 82.5 -126t194.5 -47z" /> + <glyph glyph-name="h" unicode="h" horiz-adv-x="1155" +d="M155 0v1413h216v-545q55 74 135 112.5t165 38.5q92 0 163 -34.5t112.5 -94t62.5 -131.5t21 -154v-605h-218v577q0 246 -190 246q-118 0 -184.5 -86.5t-66.5 -220.5v-516h-216z" /> + <glyph glyph-name="i" unicode="i" horiz-adv-x="519" +d="M145 1198v215h228v-215h-228zM153 0v999h213v-999h-213z" /> + <glyph glyph-name="j" unicode="j" horiz-adv-x="526" +d="M149 1200v213h231v-213h-231zM93 -438q-85 0 -167 32l52 180q53 -21 97 -21q81 0 81 107v1139h217v-1119q0 -141 -70.5 -229.5t-209.5 -88.5z" /> + <glyph glyph-name="k" unicode="k" horiz-adv-x="1096" +d="M155 0v1413h214v-868l398 454h277l-359 -381l408 -618h-254l-297 484l-173 -191v-293h-214z" /> + <glyph glyph-name="l" unicode="l" horiz-adv-x="556" +d="M342 -20q-97 0 -146 52t-49 168v1213h215v-1178q0 -25 17.5 -44.5t52.5 -19.5q33 0 77 7v-178q-90 -20 -167 -20z" /> + <glyph glyph-name="m" unicode="m" horiz-adv-x="1729" +d="M153 0v999h216v-120q42 68 111 104.5t148 36.5q199 0 288 -186q54 92 139 139t187 47q74 0 134.5 -23t102.5 -62t70.5 -93t41.5 -114t13 -126v-602h-218v577q0 247 -178 247q-102 0 -162.5 -80.5t-60.5 -193.5v-550h-218v581q0 243 -174 243q-103 0 -163.5 -83.5 +t-60.5 -200.5v-540h-216z" /> + <glyph glyph-name="n" unicode="n" horiz-adv-x="1148" +d="M153 0v999h212v-134q55 76 135.5 115t168.5 39q74 0 134 -23t100 -62.5t67.5 -93t39.5 -113t12 -125.5v-602h-212v577q0 107 -51 177t-151 70q-112 0 -177.5 -71.5t-65.5 -214.5v-538h-212z" /> + <glyph glyph-name="o" unicode="o" horiz-adv-x="1125" +d="M561 -20q-110 0 -204 42t-158.5 113t-100.5 166t-36 201q0 142 61.5 259.5t176.5 188t261 70.5q147 0 262.5 -70.5t177 -188t61.5 -259.5t-61.5 -260.5t-177.5 -190t-262 -71.5zM562 163q94 0 158.5 49.5t92 123.5t27.5 166q0 143 -70 238.5t-208 95.5t-208 -95.5 +t-70 -238.5q0 -92 27.5 -166.5t92 -123.5t158.5 -49z" /> + <glyph glyph-name="p" unicode="p" horiz-adv-x="1158" +d="M155 -438v1437h217v-111q101 132 288 132q133 0 231 -72t145.5 -188.5t47.5 -259.5q0 -142 -47 -258.5t-144.5 -189t-229.5 -72.5q-88 0 -164.5 33t-126.5 99v-550h-217zM609 174q127 0 192.5 91.5t65.5 234.5t-65.5 236.5t-192.5 93.5t-192 -93.5t-65 -236.5t65 -234.5 +t192 -91.5z" /> + <glyph glyph-name="q" unicode="q" horiz-adv-x="1157" +d="M786 -438v550q-102 -132 -288 -132q-133 0 -231 72t-145.5 188.5t-47.5 259.5q0 106 28 199.5t80 165t133 113.5t180 42q88 0 164.5 -33.5t126.5 -98.5v111h216v-1437h-216zM549 174q128 0 191.5 90.5t63.5 235.5q0 144 -64 236t-191 92t-192 -93t-65 -235 +q0 -143 65 -234.5t192 -91.5z" /> + <glyph glyph-name="r" unicode="r" horiz-adv-x="809" +d="M153 0v999h209v-171q34 89 110.5 140.5t166.5 51.5q108 0 176 -66l-96 -178q-49 36 -113 36q-106 0 -176 -94t-70 -272v-446h-207z" /> + <glyph glyph-name="s" unicode="s" horiz-adv-x="897" +d="M446 -20q-148 0 -257.5 77.5t-147.5 192.5l173 79q61 -172 224 -172q81 0 127 38.5t46 94.5q0 36 -22 62t-58 40.5t-82 29.5t-93.5 27t-93.5 34t-82 50t-58 76t-22 110q0 144 102.5 222.5t251.5 78.5q122 0 215 -56t148 -156l-164 -90q-72 132 -207 132q-65 0 -104 -29 +t-39 -73q0 -36 28.5 -61t74.5 -41t101 -31t110 -38t101 -54.5t74.5 -87.5t28.5 -130q0 -81 -32.5 -145t-86.5 -102t-119.5 -58t-136.5 -20z" /> + <glyph glyph-name="t" unicode="t" horiz-adv-x="729" +d="M483 -20q-141 0 -216 78t-75 215v547h-161v179h164v241l209 163v-404h253v-179h-253v-518q0 -136 118 -136q59 0 127 33v-192q-69 -27 -166 -27z" /> + <glyph glyph-name="u" unicode="u" horiz-adv-x="1151" +d="M481 -21q-181 0 -269.5 127.5t-88.5 349.5v543h217v-552q0 -63 8 -110t28.5 -86.5t59 -60t94.5 -20.5q51 0 94.5 18.5t79.5 57t57 108t21 163.5v482h217v-999h-217v133q-48 -71 -126.5 -112.5t-174.5 -41.5z" /> + <glyph glyph-name="v" unicode="v" horiz-adv-x="984" +d="M402 0l-396 999h234l252 -721l254 721h232l-396 -999h-180z" /> + <glyph glyph-name="w" unicode="w" horiz-adv-x="1452" +d="M321 -3l-298 1002h228l181 -681l201 681h186l201 -679l182 679h229l-301 -999h-196l-207 704l-210 -707h-196z" /> + <glyph glyph-name="x" unicode="x" horiz-adv-x="996" +d="M22 0l340 504l-340 495h261l215 -342l215 342h261l-340 -495l340 -504h-261l-215 349l-215 -349h-261z" /> + <glyph glyph-name="y" unicode="y" horiz-adv-x="1014" +d="M216 -430l180 450l-389 979h236l264 -732l265 732h236l-561 -1429h-231z" /> + <glyph glyph-name="z" unicode="z" horiz-adv-x="980" +d="M908 999v-158l-560 -660h560v-181h-851v146l580 674h-551v179h822z" /> + <glyph glyph-name="braceleft" unicode="{" horiz-adv-x="612" +d="M407 -144q-109 0 -177 97q-36 50 -36 167v363q0 22 -11 39.5t-34 31.5t-39.5 21.5t-46.5 18.5v146q69 22 100 54t31 91v426q0 120 56 182t179 62h51q37 0 73 -3v-140q-50 11 -91 11q-46 0 -64.5 -10t-18.5 -33v-509q0 -75 -39 -124t-114 -87q153 -63 153 -173v-362 +q0 -135 110 -135q23 0 64 9v-140q-72 -3 -75 -3h-71z" /> + <glyph glyph-name="bar" unicode="|" horiz-adv-x="622" +d="M232 -512v2046h158v-2046h-158z" /> + <glyph glyph-name="braceright" unicode="}" horiz-adv-x="612" +d="M135 -144q-4 0 -76 3v140q41 -9 64 -9q110 0 110 135v362q0 107 154 173q-76 36 -115 85t-39 126v509q0 23 -18 33t-65 10q-39 0 -91 -11v140q36 3 74 3h51q122 0 178 -62t56 -182v-426q0 -59 31 -91t100 -54v-146q-30 -11 -46.5 -18.5t-39.5 -21.5t-34 -31.5t-11 -39.5 +v-363q0 -116 -35 -168q-65 -96 -177 -96h-71z" /> + <glyph glyph-name="asciitilde" unicode="~" horiz-adv-x="1158" +d="M736 379q-61 0 -115 19.5t-85.5 42.5t-67.5 42.5t-66 19.5q-43 0 -57 -23.5t-13 -73.5h-148q0 119 56.5 182t159.5 63q58 0 106.5 -12.5t79.5 -30t57 -35t50.5 -30t48.5 -12.5q46 0 61.5 26t15.5 88h156q0 -131 -60.5 -198.5t-178.5 -67.5z" /> + <glyph glyph-name="uni00A0" unicode=" " horiz-adv-x="563" + /> + <glyph glyph-name="exclamdown" unicode="¡" horiz-adv-x="633" +d="M194 757v242h244v-242h-244zM206 -435l29 1021h162l29 -1021h-220z" /> + <glyph glyph-name="cent" unicode="¢" horiz-adv-x="1122" +d="M509 -205v186q-124 20 -211.5 98t-127 185t-39.5 234q0 126 40 233.5t127 185.5t211 98v185h159v-185q235 -37 345 -282l-196 -77q-50 184 -226 184q-54 0 -97.5 -19.5t-72.5 -52t-48.5 -77t-28 -92.5t-8.5 -101t8.5 -101.5t27.5 -93t48 -77t72.5 -51.5t98.5 -19 +q174 0 226 183l182 -72q-92 -250 -331 -286v-186h-159z" /> + <glyph glyph-name="sterling" unicode="£" horiz-adv-x="1213" +d="M145 0v179q10 5 26.5 14.5t59 40.5t75 63.5t59 80t26.5 93.5q0 29 -5.5 64.5t-11.5 56.5l-5 22h-220v183h176q-41 102 -41 233q0 114 47 206t144 149t228 57q141 0 244.5 -85.5t150.5 -217.5l-170 -63q-31 86 -89.5 135t-135.5 49q-112 0 -174.5 -60.5t-62.5 -172.5 +q0 -54 11 -111.5t23 -87.5l11 -31h476v-183h-433q15 -69 15 -139q0 -59 -14.5 -111t-35 -84t-41 -55.5t-34.5 -32.5l-15 -10h749v-182h-1033z" /> + <glyph glyph-name="currency" unicode="¤" horiz-adv-x="1356" +d="M307 141l-118 123l106 104q-83 116 -83 262.5t83 262.5l-104 102l118 124l106 -108q118 84 263.5 85t262.5 -83l106 104l119 -118l-105 -104q83 -117 83 -264t-83 -265l105 -102l-117 -123l-108 107q-117 -84 -263.5 -84t-264.5 84zM463 420q90 -89 213.5 -89t212.5 89 +q87 89 87 212t-88 209q-88 87 -211.5 86.5t-211.5 -88.5q-86 -86 -86.5 -209.5t84.5 -209.5z" /> + <glyph glyph-name="yen" unicode="¥" horiz-adv-x="1318" +d="M565 0v226h-299v164h299v117h-299v164h222l-473 742h224l420 -679l420 679h224l-474 -743h224v-163h-300v-117h300v-164h-300v-226h-188z" /> + <glyph glyph-name="brokenbar" unicode="¦" horiz-adv-x="635" +d="M232 731v744h171v-744h-171zM232 -307v727h171v-727h-171z" /> + <glyph glyph-name="section" unicode="§" horiz-adv-x="1116" +d="M563 -18q-76 0 -144.5 17t-127 51.5t-100 91.5t-57.5 131l204 62q22 -94 80 -135.5t157 -41.5q91 0 148 31t57 98q0 44 -33 73.5t-85.5 45t-116.5 29t-128 32.5t-116.5 47.5t-85.5 82.5t-33 130q0 119 91 210q-89 75 -89 192q0 95 55 166t139 105t182 34q131 0 231 -57.5 +t145 -151.5l-177 -91q-20 63 -73.5 96.5t-132.5 33.5q-85 0 -136.5 -40t-51.5 -99q0 -33 20.5 -56.5t55 -37.5t79.5 -24.5t94.5 -21t99 -23.5t94.5 -35t79.5 -51.5t55 -77.5t20.5 -110q0 -122 -85 -207q85 -73 85 -195q0 -64 -23 -115.5t-61.5 -86t-91 -58t-108.5 -34 +t-116 -10.5zM688 559q92 35 92 127q0 23 -8.5 43t-20 34t-34.5 27.5t-41 21.5t-51 17.5t-53 14.5t-58.5 13.5t-56.5 12.5q-45 -20 -68.5 -58t-23.5 -78q0 -25 9.5 -45t30.5 -35.5t41.5 -27t55.5 -22t59 -16.5t65.5 -15t61.5 -14z" /> + <glyph glyph-name="dieresis" unicode="¨" horiz-adv-x="839" +d="M148 1198v215h194v-215h-194zM497 1198v215h194v-215h-194z" /> + <glyph glyph-name="copyright" unicode="©" horiz-adv-x="1742" +d="M872 -50q-211 0 -390 101.5t-283 275.5t-104 380q0 205 104 379t283 275.5t390 101.5t389.5 -101.5t282.5 -275.5t104 -379q0 -154 -61.5 -294t-165.5 -241.5t-247.5 -161.5t-301.5 -60zM872 117q162 0 302.5 80.5t223.5 216.5t83 293t-83 293t-223.5 216t-302.5 80 +q-122 0 -234.5 -47.5t-194.5 -127t-131 -188.5t-49 -226q0 -157 82.5 -293t223.5 -216.5t303 -80.5zM888 275q-92 0 -165 34.5t-119 94.5t-70 136.5t-24 164.5q0 182 99 305.5t279 123.5q233 0 340 -227l-154 -65q-32 65 -76 94.5t-110 29.5q-106 0 -159.5 -73.5 +t-53.5 -187.5q0 -115 52.5 -187.5t158.5 -72.5q69 0 112 30t74 95l156 -66q-106 -229 -340 -229z" /> + <glyph glyph-name="ordfeminine" unicode="ª" horiz-adv-x="922" +d="M377 709q-100 0 -171 59.5t-71 156.5q0 110 74.5 163t198.5 53h200q-2 83 -40.5 126t-121.5 43q-108 0 -179 -105l-110 73q60 82 129 119t165 37q135 0 212 -77.5t77 -206.5v-427h-122l-5 94q-88 -108 -236 -108zM403 835q81 0 139.5 55.5t65.5 128.5h-190q-61 0 -98 -25 +t-37 -69q0 -37 37.5 -63.5t82.5 -26.5z" /> + <glyph glyph-name="guillemotleft" unicode="«" horiz-adv-x="957" +d="M441 165l-410 345l410 347v-195l-184 -152l184 -150v-195zM804 165l-410 345l410 347v-195l-185 -152l185 -150v-195z" /> + <glyph glyph-name="logicalnot" unicode="¬" horiz-adv-x="1295" +d="M863 291v315h-722v191h926v-506h-204z" /> + <glyph glyph-name="uni00AD" unicode="­" horiz-adv-x="1000" +d="M147 530v162h705v-162h-705z" /> + <glyph glyph-name="registered" unicode="®" horiz-adv-x="1742" +d="M872 -48q-211 0 -390 101.5t-283 275.5t-104 380q0 205 104 379t283 275.5t390 101.5t389.5 -101.5t282.5 -275.5t104 -379q0 -154 -61.5 -294t-165.5 -241.5t-247.5 -161.5t-301.5 -60zM872 111q165 0 307.5 81t226 219t83.5 298t-83.5 297.5t-226 218.5t-307.5 81 +q-166 0 -308.5 -81t-226.5 -218.5t-84 -297.5t84 -298t226.5 -219t308.5 -81zM610 293v817h315q135 0 206.5 -65.5t71.5 -182.5q0 -89 -42 -145.5t-107 -80.5l199 -343h-189l-174 321h-115v-321h-165zM764 769h161q67 0 95 21.5t28 71.5q0 51 -27 72t-96 21h-161v-186z" /> + <glyph glyph-name="macron" unicode="¯" horiz-adv-x="845" +d="M145 1158v138h553v-138h-553z" /> + <glyph glyph-name="degree" unicode="°" horiz-adv-x="900" +d="M450 848q-120 0 -206.5 86t-86.5 207t86.5 207t206.5 86q121 0 206.5 -86t85.5 -207t-85.5 -207t-206.5 -86zM450 990q64 0 108 44t44 107t-44 107t-108 44q-62 0 -106.5 -44.5t-44.5 -106.5q0 -63 44.5 -107t106.5 -44z" /> + <glyph glyph-name="plusminus" unicode="±" horiz-adv-x="1328" +d="M583 106v438h-457v162h457v437h162v-437h457v-162h-457v-438h-162zM127 -162v162h1073v-162h-1073z" /> + <glyph glyph-name="acute" unicode="´" horiz-adv-x="535" +d="M43 1124l223 289h239l-298 -289h-164z" /> + <glyph glyph-name="uni00B5" unicode="µ" horiz-adv-x="1295" +d="M230 -266v1265h206v-586q0 -247 180 -247q110 0 192 82t82 190v561h205v-999h-205v120q-48 -60 -124 -101.5t-165 -41.5q-92 0 -168 37l-19 -280h-184z" /> + <glyph glyph-name="paragraph" unicode="¶" horiz-adv-x="1284" +d="M535 -246v869q-119 0 -220.5 45.5t-167 137.5t-65.5 212t65.5 212t167 137.5t220.5 45.5h159v-1659h-159zM891 -246v1659h161v-1659h-161z" /> + <glyph glyph-name="periodcentered" unicode="·" horiz-adv-x="625" +d="M311 666q-59 0 -99.5 41.5t-40.5 100.5t40.5 99.5t99.5 40.5q60 0 101 -40t41 -100q0 -59 -41 -100.5t-101 -41.5z" /> + <glyph glyph-name="cedilla" unicode="¸" horiz-adv-x="566" +d="M259 -517q-63 0 -116 36t-76 92l123 55q8 -23 28.5 -39t46.5 -16q38 0 61.5 24t23.5 60q0 49 -47 82t-126 33h-61l115 188h136l-74 -103q91 -10 140 -61.5t49 -130.5q0 -92 -63 -156t-160 -64z" /> + <glyph glyph-name="ordmasculine" unicode="º" horiz-adv-x="962" +d="M481 711q-154 0 -253 105t-99 257q0 151 99 256t253 105q153 0 252 -105t99 -256q0 -152 -99 -257t-252 -105zM481 845q99 0 146.5 63.5t47.5 164.5q0 102 -47.5 165.5t-146.5 63.5q-100 0 -148 -63.5t-48 -165.5q0 -101 48 -164.5t148 -63.5z" /> + <glyph glyph-name="guillemotright" unicode="»" horiz-adv-x="958" +d="M151 165v195l184 150l-184 152v195l410 -347zM514 165v195l184 150l-184 152v195l410 -347z" /> + <glyph glyph-name="questiondown" unicode="¿" horiz-adv-x="1001" +d="M385 757v242h244v-242h-244zM519 -434q-121 0 -219.5 43t-160 132.5t-61.5 212.5q0 73 19 130t48.5 92t66 62.5t73 46.5t66 37.5t48.5 43t19 55.5v169h185v-171q0 -64 -18.5 -112t-48 -76.5t-65 -50t-71 -40.5t-65 -42t-48 -60t-18.5 -88q0 -101 65.5 -152t174.5 -51 +q107 0 174.5 57.5t68.5 161.5h193q-1 -122 -59 -214t-154 -139t-213 -47z" /> + <glyph glyph-name="Agrave" unicode="À" horiz-adv-x="1332" +d="M598 1523l-292 303h239l223 -303h-170zM28 0l555 1413h169l552 -1413h-242l-109 307h-571l-110 -307h-244zM458 502h420l-210 582z" /> + <glyph glyph-name="Aacute" unicode="Á" horiz-adv-x="1332" +d="M554 1537l223 289h239l-298 -289h-164zM28 0l555 1413h169l552 -1413h-242l-109 307h-571l-110 -307h-244zM458 502h420l-210 582z" /> + <glyph glyph-name="Acircumflex" unicode="Â" horiz-adv-x="1332" +d="M345 1511l319 353l321 -353h-180l-141 158l-139 -158h-180zM28 0l555 1413h169l552 -1413h-242l-109 307h-571l-110 -307h-244zM458 502h420l-210 582z" /> + <glyph glyph-name="Atilde" unicode="Ã" horiz-adv-x="1332" +d="M791 1532q-42 0 -77 15t-58 37t-43 43.5t-40 36.5t-41 15q-32 0 -49.5 -36.5t-17.5 -100.5h-126q0 130 52.5 202.5t146.5 72.5q48 0 89.5 -23t64.5 -50.5t50 -50.5t51 -23q30 0 47 37t17 104h133q0 -134 -52.5 -206.5t-146.5 -72.5zM28 0l555 1413h169l552 -1413h-242 +l-109 307h-571l-110 -307h-244zM458 502h420l-210 582z" /> + <glyph glyph-name="Adieresis" unicode="Ä" horiz-adv-x="1332" +d="M393 1611v215h194v-215h-194zM742 1611v215h194v-215h-194zM28 0l555 1413h169l552 -1413h-242l-109 307h-571l-110 -307h-244zM458 502h420l-210 582z" /> + <glyph glyph-name="Aring" unicode="Å" horiz-adv-x="1332" +d="M28 0l521 1329q-48 29 -76 79t-28 109q0 92 64.5 156.5t156.5 64.5q91 0 157 -64t66 -157q0 -59 -28.5 -108.5t-76.5 -78.5l520 -1330h-242l-109 307h-571l-110 -307h-244zM666 1417q43 0 71.5 29t28.5 73q0 42 -27 69t-73 27q-45 0 -72 -27t-27 -69q0 -45 28.5 -73.5 +t70.5 -28.5zM458 502h420l-210 582z" /> + <glyph glyph-name="AE" unicode="Æ" horiz-adv-x="1844" +d="M28 0l549 1413h1164v-187h-747v-425h659v-189h-659v-419h747v-193h-956v307h-419l-111 -307h-227zM436 486h349v740h-68z" /> + <glyph glyph-name="Ccedilla" unicode="Ç" horiz-adv-x="1428" +d="M1369 378q-75 -172 -209.5 -273t-313.5 -121l-64 -89q91 -10 140 -61.5t49 -130.5q0 -92 -63 -156t-160 -64q-63 0 -116 36t-76 92l123 55q8 -23 28.5 -39t46.5 -16q38 0 61.5 24t23.5 60q0 49 -47 82t-126 33h-61l105 172q-122 7 -223.5 48.5t-173.5 109t-121.5 157.5 +t-73 193.5t-23.5 217.5q0 118 25 224.5t78.5 199t131.5 160t189.5 106t245.5 38.5q208 0 364 -101t238 -296l-209 -84q-40 140 -145 204.5t-252 64.5q-92 0 -166.5 -26.5t-125.5 -73t-85.5 -111t-50.5 -139t-16 -159.5q0 -112 26 -205t79 -165.5t140.5 -113t202.5 -40.5 +q143 0 241.5 64t154.5 209z" /> + <glyph glyph-name="Egrave" unicode="È" horiz-adv-x="1243" +d="M567 1523l-292 303h239l223 -303h-170zM191 0v1413h933v-203h-708v-402h644v-202h-644v-396h708v-210h-933z" /> + <glyph glyph-name="Eacute" unicode="É" horiz-adv-x="1243" +d="M523 1537l223 289h239l-298 -289h-164zM191 0v1413h933v-203h-708v-402h644v-202h-644v-396h708v-210h-933z" /> + <glyph glyph-name="Ecircumflex" unicode="Ê" horiz-adv-x="1243" +d="M314 1511l319 353l321 -353h-180l-141 158l-139 -158h-180zM191 0v1413h933v-203h-708v-402h644v-202h-644v-396h708v-210h-933z" /> + <glyph glyph-name="Edieresis" unicode="Ë" horiz-adv-x="1243" +d="M362 1611v215h194v-215h-194zM711 1611v215h194v-215h-194zM191 0v1413h933v-203h-708v-402h644v-202h-644v-396h708v-210h-933z" /> + <glyph glyph-name="Igrave" unicode="Ì" horiz-adv-x="607" +d="M235 1523l-292 303h239l223 -303h-170zM191 0v1413h225v-1413h-225z" /> + <glyph glyph-name="Iacute" unicode="Í" horiz-adv-x="607" +d="M191 1537l223 289h239l-298 -289h-164zM191 0v1413h225v-1413h-225z" /> + <glyph glyph-name="Icircumflex" unicode="Î" horiz-adv-x="607" +d="M-18 1511l319 353l321 -353h-180l-141 158l-139 -158h-180zM191 0v1413h225v-1413h-225z" /> + <glyph glyph-name="Idieresis" unicode="Ï" horiz-adv-x="607" +d="M30 1611v215h194v-215h-194zM379 1611v215h194v-215h-194zM191 0v1413h225v-1413h-225z" /> + <glyph glyph-name="Eth" unicode="Ð" horiz-adv-x="1427" +d="M212 0v631h-112v163h112v619h389q352 0 543 -185.5t191 -531.5q0 -332 -193.5 -514t-542.5 -182h-387zM423 197h151q122 0 220.5 29.5t172.5 90t114.5 159.5t40.5 231q0 255 -129.5 383.5t-395.5 128.5h-174v-425h381v-163h-381v-434z" /> + <glyph glyph-name="Ntilde" unicode="Ñ" horiz-adv-x="1443" +d="M846 1532q-42 0 -77 15t-58 37t-43 43.5t-40 36.5t-41 15q-32 0 -49.5 -36.5t-17.5 -100.5h-126q0 130 52.5 202.5t146.5 72.5q48 0 89.5 -23t64.5 -50.5t50 -50.5t51 -23q30 0 47 37t17 104h133q0 -134 -52.5 -206.5t-146.5 -72.5zM191 0v1413h245l599 -1069v1069h216 +v-1413h-247l-595 1071v-1071h-218z" /> + <glyph glyph-name="Ograve" unicode="Ò" horiz-adv-x="1524" +d="M693 1523l-292 303h239l223 -303h-170zM761 -20q-133 0 -243.5 38.5t-188 105.5t-131 159.5t-78.5 199t-25 224.5t25 224.5t78.5 198.5t131 159.5t188 106t243.5 38.5q134 0 245 -38.5t188 -106t131 -159.5t79 -198.5t25 -224.5t-25 -224.5t-79 -199t-131.5 -159.5 +t-188 -105.5t-244.5 -38.5zM761 180q114 0 200.5 42.5t136.5 117.5t74.5 167t24.5 200q0 86 -14.5 161.5t-48 143t-83 116t-124 77t-166.5 28.5t-165.5 -28.5t-123 -77t-82.5 -116t-47.5 -143t-14.5 -161.5q0 -108 24 -200t74 -167t135.5 -117.5t199.5 -42.5z" /> + <glyph glyph-name="Oacute" unicode="Ó" horiz-adv-x="1524" +d="M649 1537l223 289h239l-298 -289h-164zM761 -20q-133 0 -243.5 38.5t-188 105.5t-131 159.5t-78.5 199t-25 224.5t25 224.5t78.5 198.5t131 159.5t188 106t243.5 38.5q134 0 245 -38.5t188 -106t131 -159.5t79 -198.5t25 -224.5t-25 -224.5t-79 -199t-131.5 -159.5 +t-188 -105.5t-244.5 -38.5zM761 180q114 0 200.5 42.5t136.5 117.5t74.5 167t24.5 200q0 86 -14.5 161.5t-48 143t-83 116t-124 77t-166.5 28.5t-165.5 -28.5t-123 -77t-82.5 -116t-47.5 -143t-14.5 -161.5q0 -108 24 -200t74 -167t135.5 -117.5t199.5 -42.5z" /> + <glyph glyph-name="Ocircumflex" unicode="Ô" horiz-adv-x="1524" +d="M440 1511l319 353l321 -353h-180l-141 158l-139 -158h-180zM761 -20q-133 0 -243.5 38.5t-188 105.5t-131 159.5t-78.5 199t-25 224.5t25 224.5t78.5 198.5t131 159.5t188 106t243.5 38.5q134 0 245 -38.5t188 -106t131 -159.5t79 -198.5t25 -224.5t-25 -224.5t-79 -199 +t-131.5 -159.5t-188 -105.5t-244.5 -38.5zM761 180q114 0 200.5 42.5t136.5 117.5t74.5 167t24.5 200q0 86 -14.5 161.5t-48 143t-83 116t-124 77t-166.5 28.5t-165.5 -28.5t-123 -77t-82.5 -116t-47.5 -143t-14.5 -161.5q0 -108 24 -200t74 -167t135.5 -117.5t199.5 -42.5z +" /> + <glyph glyph-name="Otilde" unicode="Õ" horiz-adv-x="1524" +d="M886 1532q-42 0 -77 15t-58 37t-43 43.5t-40 36.5t-41 15q-32 0 -49.5 -36.5t-17.5 -100.5h-126q0 130 52.5 202.5t146.5 72.5q48 0 89.5 -23t64.5 -50.5t50 -50.5t51 -23q30 0 47 37t17 104h133q0 -134 -52.5 -206.5t-146.5 -72.5zM761 -20q-133 0 -243.5 38.5 +t-188 105.5t-131 159.5t-78.5 199t-25 224.5t25 224.5t78.5 198.5t131 159.5t188 106t243.5 38.5q134 0 245 -38.5t188 -106t131 -159.5t79 -198.5t25 -224.5t-25 -224.5t-79 -199t-131.5 -159.5t-188 -105.5t-244.5 -38.5zM761 180q114 0 200.5 42.5t136.5 117.5t74.5 167 +t24.5 200q0 86 -14.5 161.5t-48 143t-83 116t-124 77t-166.5 28.5t-165.5 -28.5t-123 -77t-82.5 -116t-47.5 -143t-14.5 -161.5q0 -108 24 -200t74 -167t135.5 -117.5t199.5 -42.5z" /> + <glyph glyph-name="Odieresis" unicode="Ö" horiz-adv-x="1524" +d="M488 1611v215h194v-215h-194zM837 1611v215h194v-215h-194zM761 -20q-133 0 -243.5 38.5t-188 105.5t-131 159.5t-78.5 199t-25 224.5t25 224.5t78.5 198.5t131 159.5t188 106t243.5 38.5q134 0 245 -38.5t188 -106t131 -159.5t79 -198.5t25 -224.5t-25 -224.5t-79 -199 +t-131.5 -159.5t-188 -105.5t-244.5 -38.5zM761 180q114 0 200.5 42.5t136.5 117.5t74.5 167t24.5 200q0 86 -14.5 161.5t-48 143t-83 116t-124 77t-166.5 28.5t-165.5 -28.5t-123 -77t-82.5 -116t-47.5 -143t-14.5 -161.5q0 -108 24 -200t74 -167t135.5 -117.5t199.5 -42.5z +" /> + <glyph glyph-name="multiply" unicode="×" horiz-adv-x="1094" +d="M224 187l-114 114l322 324l-309 308l115 116l309 -309l323 322l115 -114l-322 -323l308 -309l-115 -116l-309 309z" /> + <glyph glyph-name="Oslash" unicode="Ø" horiz-adv-x="1524" +d="M1190 1292q118 -99 178.5 -251.5t60.5 -333.5q0 -118 -25 -224.5t-79 -199t-131.5 -159.5t-188 -105.5t-244.5 -38.5q-174 0 -311 66l-27 -46h-166l74 124q-117 99 -176.5 251t-59.5 332q0 118 25 224.5t78.5 198.5t131 159.5t188 106t243.5 38.5q175 0 310 -65l26 44 +h165zM328 707q0 -251 117 -391l519 873q-88 44 -203 44q-92 0 -165.5 -28.5t-123 -77t-82.5 -116t-47.5 -143t-14.5 -161.5zM761 180q114 0 200.5 42.5t136.5 117.5t74.5 167t24.5 200q0 253 -120 394l-520 -876q87 -45 204 -45z" /> + <glyph glyph-name="Ugrave" unicode="Ù" horiz-adv-x="1372" +d="M616 1523l-292 303h239l223 -303h-170zM686 -20q-136 0 -238 41t-164.5 117t-93 177t-30.5 226v872h225v-839q0 -188 66.5 -283t234.5 -95t235 95.5t67 282.5v839h224v-862q0 -129 -30.5 -232t-93 -179.5t-164.5 -118t-238 -41.5z" /> + <glyph glyph-name="Uacute" unicode="Ú" horiz-adv-x="1372" +d="M572 1537l223 289h239l-298 -289h-164zM686 -20q-136 0 -238 41t-164.5 117t-93 177t-30.5 226v872h225v-839q0 -188 66.5 -283t234.5 -95t235 95.5t67 282.5v839h224v-862q0 -129 -30.5 -232t-93 -179.5t-164.5 -118t-238 -41.5z" /> + <glyph glyph-name="Ucircumflex" unicode="Û" horiz-adv-x="1372" +d="M363 1511l319 353l321 -353h-180l-141 158l-139 -158h-180zM686 -20q-136 0 -238 41t-164.5 117t-93 177t-30.5 226v872h225v-839q0 -188 66.5 -283t234.5 -95t235 95.5t67 282.5v839h224v-862q0 -129 -30.5 -232t-93 -179.5t-164.5 -118t-238 -41.5z" /> + <glyph glyph-name="Udieresis" unicode="Ü" horiz-adv-x="1372" +d="M411 1611v215h194v-215h-194zM760 1611v215h194v-215h-194zM686 -20q-136 0 -238 41t-164.5 117t-93 177t-30.5 226v872h225v-839q0 -188 66.5 -283t234.5 -95t235 95.5t67 282.5v839h224v-862q0 -129 -30.5 -232t-93 -179.5t-164.5 -118t-238 -41.5z" /> + <glyph glyph-name="Yacute" unicode="Ý" horiz-adv-x="1318" +d="M545 1537l223 289h239l-298 -289h-164zM545 0v551l-530 862h269l373 -643l376 643h270l-528 -862v-551h-230z" /> + <glyph glyph-name="Thorn" unicode="Þ" horiz-adv-x="1150" +d="M191 0v1413h209v-196h254q208 0 322.5 -106.5t114.5 -291.5q0 -199 -130.5 -305t-347.5 -106h-213v-408h-209zM400 599h213q269 0 269 214q0 106 -68 162.5t-201 56.5h-213v-433z" /> + <glyph glyph-name="germandbls" unicode="ß" horiz-adv-x="1183" +d="M726 -18q-107 0 -222 46l77 186q69 -34 140 -34q66 0 110 38t44 93q0 41 -22.5 79t-56 66.5t-72.5 62.5t-72.5 66.5t-56 79.5t-22.5 100q0 52 23 91t55.5 63t65 45.5t55.5 52.5t23 72q0 65 -53 111.5t-151 46.5q-109 0 -166.5 -66t-57.5 -196v-985h-212v985 +q0 110 34 197.5t93.5 141.5t135 82t162.5 28q107 0 204 -43t161 -127t64 -190q0 -62 -24 -108.5t-58.5 -72.5t-68.5 -46t-58 -42t-24 -48q0 -22 17.5 -44.5t45.5 -43.5t61.5 -45t67 -54t61.5 -64.5t45.5 -83.5t17.5 -105q0 -147 -105 -241t-261 -94z" /> + <glyph glyph-name="agrave" unicode="à" horiz-adv-x="1050" +d="M435 1110l-292 303h239l223 -303h-170zM413 -20q-154 0 -252.5 85t-98.5 233q0 290 411 290h250q0 114 -53.5 179.5t-158.5 65.5q-85 0 -147.5 -41t-100.5 -103l-163 119q156 212 407 212q197 0 308 -113t111 -299v-608h-177l-13 159q-110 -179 -323 -179zM442 161 +q116 0 197.5 82.5t83.5 188.5h-236q-101 0 -153 -37.5t-52 -103.5q0 -61 43.5 -95.5t116.5 -34.5z" /> + <glyph glyph-name="aacute" unicode="á" horiz-adv-x="1050" +d="M391 1124l223 289h239l-298 -289h-164zM413 -20q-154 0 -252.5 85t-98.5 233q0 290 411 290h250q0 114 -53.5 179.5t-158.5 65.5q-85 0 -147.5 -41t-100.5 -103l-163 119q156 212 407 212q197 0 308 -113t111 -299v-608h-177l-13 159q-110 -179 -323 -179zM442 161 +q116 0 197.5 82.5t83.5 188.5h-236q-101 0 -153 -37.5t-52 -103.5q0 -61 43.5 -95.5t116.5 -34.5z" /> + <glyph glyph-name="acircumflex" unicode="â" horiz-adv-x="1050" +d="M182 1098l319 353l321 -353h-180l-141 158l-139 -158h-180zM413 -20q-154 0 -252.5 85t-98.5 233q0 290 411 290h250q0 114 -53.5 179.5t-158.5 65.5q-85 0 -147.5 -41t-100.5 -103l-163 119q156 212 407 212q197 0 308 -113t111 -299v-608h-177l-13 159 +q-110 -179 -323 -179zM442 161q116 0 197.5 82.5t83.5 188.5h-236q-101 0 -153 -37.5t-52 -103.5q0 -61 43.5 -95.5t116.5 -34.5z" /> + <glyph glyph-name="atilde" unicode="ã" horiz-adv-x="1050" +d="M628 1119q-42 0 -77 15t-58 36.5t-43 43.5t-40 37t-41 15q-32 0 -49.5 -36.5t-17.5 -100.5h-126q0 130 52.5 202.5t146.5 72.5q48 0 89.5 -23t64.5 -50.5t50 -50.5t51 -23q30 0 47 37t17 104h133q0 -134 -52.5 -206.5t-146.5 -72.5zM413 -20q-154 0 -252.5 85t-98.5 233 +q0 290 411 290h250q0 114 -53.5 179.5t-158.5 65.5q-85 0 -147.5 -41t-100.5 -103l-163 119q156 212 407 212q197 0 308 -113t111 -299v-608h-177l-13 159q-110 -179 -323 -179zM442 161q116 0 197.5 82.5t83.5 188.5h-236q-101 0 -153 -37.5t-52 -103.5q0 -61 43.5 -95.5 +t116.5 -34.5z" /> + <glyph glyph-name="adieresis" unicode="ä" horiz-adv-x="1050" +d="M230 1198v215h194v-215h-194zM579 1198v215h194v-215h-194zM413 -20q-154 0 -252.5 85t-98.5 233q0 290 411 290h250q0 114 -53.5 179.5t-158.5 65.5q-85 0 -147.5 -41t-100.5 -103l-163 119q156 212 407 212q197 0 308 -113t111 -299v-608h-177l-13 159 +q-110 -179 -323 -179zM442 161q116 0 197.5 82.5t83.5 188.5h-236q-101 0 -153 -37.5t-52 -103.5q0 -61 43.5 -95.5t116.5 -34.5z" /> + <glyph glyph-name="aring" unicode="å" horiz-adv-x="1050" +d="M501 1072q-93 0 -157 65.5t-64 157.5t64.5 156.5t156.5 64.5q91 0 157 -64.5t66 -156.5q0 -93 -65 -158t-158 -65zM501 1194q43 0 71.5 29t28.5 73q0 43 -27 70t-73 27q-44 0 -71 -27t-27 -70q0 -44 28 -73t70 -29zM413 -20q-154 0 -252.5 85t-98.5 233q0 290 411 290 +h250q0 114 -53.5 179.5t-158.5 65.5q-85 0 -147.5 -41t-100.5 -103l-163 119q156 212 407 212q197 0 308 -113t111 -299v-608h-177l-13 159q-110 -179 -323 -179zM442 161q116 0 197.5 82.5t83.5 188.5h-236q-101 0 -153 -37.5t-52 -103.5q0 -61 43.5 -95.5t116.5 -34.5z +" /> + <glyph glyph-name="ae" unicode="æ" horiz-adv-x="1673" +d="M398 -20q-143 0 -243 85t-100 222q0 81 29 140t83 93.5t122.5 51t153.5 16.5h283q0 124 -54 186t-175 62q-78 0 -142.5 -38.5t-102.5 -94.5l-154 110q77 102 175 152.5t232 50.5q114 0 199 -45t133 -127q115 168 327 168q122 0 211 -43.5t138 -119t71.5 -164t22.5 -192.5 +q0 -16 -2 -32t-4 -24l-2 -8h-689q9 -110 74.5 -177t181.5 -67q88 0 147.5 20.5t112.5 75.5l148 -127q-85 -88 -182.5 -127t-223.5 -39q-256 0 -361 199q-137 -207 -409 -207zM911 588h487q-21 241 -248 241q-107 0 -167.5 -66.5t-71.5 -174.5zM437 158q114 0 198 83.5 +t91 187.5h-268q-88 0 -142 -38.5t-54 -102.5q0 -60 50.5 -95t124.5 -35z" /> + <glyph glyph-name="ccedilla" unicode="ç" horiz-adv-x="994" +d="M534 171q78 0 136.5 47t79.5 124l192 -75q-42 -121 -133 -195t-214 -89l-64 -88q91 -10 140 -61.5t49 -130.5q0 -92 -63 -156t-160 -64q-63 0 -116 36t-76 92l123 55q8 -23 28.5 -39t46.5 -16q38 0 61.5 24t23.5 60q0 49 -47 82t-126 33h-61l107 175q-127 18 -218 95 +t-133 184.5t-42 233.5q0 80 18 155.5t56 142.5t92 116.5t131.5 78.5t168.5 29q146 0 255 -73t164 -213l-203 -81q-21 79 -79 127t-137 48q-52 0 -94.5 -19t-70.5 -51t-47 -75t-27.5 -89.5t-8.5 -95.5q0 -64 13.5 -120t41.5 -103.5t77.5 -75.5t115.5 -28z" /> + <glyph glyph-name="egrave" unicode="è" horiz-adv-x="1058" +d="M454 1110l-292 303h239l223 -303h-170zM555 -18q-120 0 -215.5 42t-154 114t-88.5 163t-30 194q0 101 29 193t85 166.5t148.5 119t209.5 44.5q99 0 178 -30.5t128.5 -80t83 -116t47 -134t13.5 -138.5q0 -64 -7 -90h-689q11 -116 76.5 -185t186.5 -69q155 0 252 106 +l148 -127q-160 -172 -401 -172zM293 588h487q-10 116 -71.5 183.5t-171.5 67.5t-169.5 -69t-74.5 -182z" /> + <glyph glyph-name="eacute" unicode="é" horiz-adv-x="1058" +d="M410 1124l223 289h239l-298 -289h-164zM555 -18q-120 0 -215.5 42t-154 114t-88.5 163t-30 194q0 101 29 193t85 166.5t148.5 119t209.5 44.5q99 0 178 -30.5t128.5 -80t83 -116t47 -134t13.5 -138.5q0 -64 -7 -90h-689q11 -116 76.5 -185t186.5 -69q155 0 252 106 +l148 -127q-160 -172 -401 -172zM293 588h487q-10 116 -71.5 183.5t-171.5 67.5t-169.5 -69t-74.5 -182z" /> + <glyph glyph-name="ecircumflex" unicode="ê" horiz-adv-x="1058" +d="M201 1098l319 353l321 -353h-180l-141 158l-139 -158h-180zM555 -18q-120 0 -215.5 42t-154 114t-88.5 163t-30 194q0 101 29 193t85 166.5t148.5 119t209.5 44.5q99 0 178 -30.5t128.5 -80t83 -116t47 -134t13.5 -138.5q0 -64 -7 -90h-689q11 -116 76.5 -185t186.5 -69 +q155 0 252 106l148 -127q-160 -172 -401 -172zM293 588h487q-10 116 -71.5 183.5t-171.5 67.5t-169.5 -69t-74.5 -182z" /> + <glyph glyph-name="edieresis" unicode="ë" horiz-adv-x="1058" +d="M249 1198v215h194v-215h-194zM598 1198v215h194v-215h-194zM555 -18q-120 0 -215.5 42t-154 114t-88.5 163t-30 194q0 101 29 193t85 166.5t148.5 119t209.5 44.5q99 0 178 -30.5t128.5 -80t83 -116t47 -134t13.5 -138.5q0 -64 -7 -90h-689q11 -116 76.5 -185t186.5 -69 +q155 0 252 106l148 -127q-160 -172 -401 -172zM293 588h487q-10 116 -71.5 183.5t-171.5 67.5t-169.5 -69t-74.5 -182z" /> + <glyph glyph-name="igrave" unicode="ì" horiz-adv-x="511" +d="M187 1110l-292 303h239l223 -303h-170zM153 0v999h206v-999h-206z" /> + <glyph glyph-name="iacute" unicode="í" horiz-adv-x="511" +d="M143 1124l223 289h239l-298 -289h-164zM153 0v999h206v-999h-206z" /> + <glyph glyph-name="icircumflex" unicode="î" horiz-adv-x="511" +d="M-66 1098l319 353l321 -353h-180l-141 158l-139 -158h-180zM153 0v999h206v-999h-206z" /> + <glyph glyph-name="idieresis" unicode="ï" horiz-adv-x="511" +d="M-18 1198v215h194v-215h-194zM331 1198v215h194v-215h-194zM153 0v999h206v-999h-206z" /> + <glyph glyph-name="eth" unicode="ð" horiz-adv-x="1171" +d="M637 1393q224 -136 332 -339t108 -501q0 -262 -131.5 -415.5t-365.5 -153.5q-123 0 -222.5 43.5t-162 118t-96 169.5t-33.5 201q0 141 56 254.5t165.5 181.5t254.5 68q161 0 263 -85q-57 188 -271 308l-84 -123l-99 63l76 111q-47 21 -145 55l99 167q81 -32 153 -66 +l66 96l101 -60zM571 183q137 0 211 97.5t74 237.5q0 141 -75 236t-210 95q-93 0 -159 -48t-96 -121.5t-30 -163.5q0 -89 30 -163t96.5 -122t158.5 -48z" /> + <glyph glyph-name="ntilde" unicode="ñ" horiz-adv-x="1148" +d="M701 1119q-42 0 -77 15t-58 36.5t-43 43.5t-40 37t-41 15q-32 0 -49.5 -36.5t-17.5 -100.5h-126q0 130 52.5 202.5t146.5 72.5q48 0 89.5 -23t64.5 -50.5t50 -50.5t51 -23q30 0 47 37t17 104h133q0 -134 -52.5 -206.5t-146.5 -72.5zM153 0v999h212v-134q55 76 135.5 115 +t168.5 39q74 0 134 -23t100 -62.5t67.5 -93t39.5 -113t12 -125.5v-602h-212v577q0 107 -51 177t-151 70q-112 0 -177.5 -71.5t-65.5 -214.5v-538h-212z" /> + <glyph glyph-name="ograve" unicode="ò" horiz-adv-x="1125" +d="M494 1110l-292 303h239l223 -303h-170zM561 -20q-110 0 -204 42t-158.5 113t-100.5 166t-36 201q0 142 61.5 259.5t176.5 188t261 70.5q147 0 262.5 -70.5t177 -188t61.5 -259.5t-61.5 -260.5t-177.5 -190t-262 -71.5zM562 163q94 0 158.5 49.5t92 123.5t27.5 166 +q0 143 -70 238.5t-208 95.5t-208 -95.5t-70 -238.5q0 -92 27.5 -166.5t92 -123.5t158.5 -49z" /> + <glyph glyph-name="oacute" unicode="ó" horiz-adv-x="1125" +d="M450 1124l223 289h239l-298 -289h-164zM561 -20q-110 0 -204 42t-158.5 113t-100.5 166t-36 201q0 142 61.5 259.5t176.5 188t261 70.5q147 0 262.5 -70.5t177 -188t61.5 -259.5t-61.5 -260.5t-177.5 -190t-262 -71.5zM562 163q94 0 158.5 49.5t92 123.5t27.5 166 +q0 143 -70 238.5t-208 95.5t-208 -95.5t-70 -238.5q0 -92 27.5 -166.5t92 -123.5t158.5 -49z" /> + <glyph glyph-name="ocircumflex" unicode="ô" horiz-adv-x="1125" +d="M241 1098l319 353l321 -353h-180l-141 158l-139 -158h-180zM561 -20q-110 0 -204 42t-158.5 113t-100.5 166t-36 201q0 142 61.5 259.5t176.5 188t261 70.5q147 0 262.5 -70.5t177 -188t61.5 -259.5t-61.5 -260.5t-177.5 -190t-262 -71.5zM562 163q94 0 158.5 49.5 +t92 123.5t27.5 166q0 143 -70 238.5t-208 95.5t-208 -95.5t-70 -238.5q0 -92 27.5 -166.5t92 -123.5t158.5 -49z" /> + <glyph glyph-name="otilde" unicode="õ" horiz-adv-x="1125" +d="M687 1119q-42 0 -77 15t-58 36.5t-43 43.5t-40 37t-41 15q-32 0 -49.5 -36.5t-17.5 -100.5h-126q0 130 52.5 202.5t146.5 72.5q48 0 89.5 -23t64.5 -50.5t50 -50.5t51 -23q30 0 47 37t17 104h133q0 -134 -52.5 -206.5t-146.5 -72.5zM561 -20q-110 0 -204 42t-158.5 113 +t-100.5 166t-36 201q0 142 61.5 259.5t176.5 188t261 70.5q147 0 262.5 -70.5t177 -188t61.5 -259.5t-61.5 -260.5t-177.5 -190t-262 -71.5zM562 163q94 0 158.5 49.5t92 123.5t27.5 166q0 143 -70 238.5t-208 95.5t-208 -95.5t-70 -238.5q0 -92 27.5 -166.5t92 -123.5 +t158.5 -49z" /> + <glyph glyph-name="odieresis" unicode="ö" horiz-adv-x="1125" +d="M289 1198v215h194v-215h-194zM638 1198v215h194v-215h-194zM561 -20q-110 0 -204 42t-158.5 113t-100.5 166t-36 201q0 142 61.5 259.5t176.5 188t261 70.5q147 0 262.5 -70.5t177 -188t61.5 -259.5t-61.5 -260.5t-177.5 -190t-262 -71.5zM562 163q94 0 158.5 49.5 +t92 123.5t27.5 166q0 143 -70 238.5t-208 95.5t-208 -95.5t-70 -238.5q0 -92 27.5 -166.5t92 -123.5t158.5 -49z" /> + <glyph glyph-name="divide" unicode="÷" horiz-adv-x="1169" +d="M461 855v242h245v-242h-245zM97 547v163h973v-163h-973zM461 143v242h245v-242h-245z" /> + <glyph glyph-name="oslash" unicode="ø" horiz-adv-x="1125" +d="M868 919q92 -72 143 -181t51 -236q0 -142 -61.5 -260.5t-177.5 -190t-262 -71.5q-119 0 -221 50l-18 -30h-117l49 83q-91 72 -141.5 182t-50.5 237q0 142 61.5 259.5t176.5 188t261 70.5q120 0 221 -48l17 28h117zM284 502q0 -153 73 -246l329 554q-57 26 -124 26 +q-138 0 -208 -95.5t-70 -238.5zM562 163q94 0 158.5 49.5t92 123.5t27.5 166q0 155 -75 244l-329 -555q54 -28 126 -28z" /> + <glyph glyph-name="ugrave" unicode="ù" horiz-adv-x="1151" +d="M502 1110l-292 303h239l223 -303h-170zM481 -21q-181 0 -269.5 127.5t-88.5 349.5v543h217v-552q0 -63 8 -110t28.5 -86.5t59 -60t94.5 -20.5q51 0 94.5 18.5t79.5 57t57 108t21 163.5v482h217v-999h-217v133q-48 -71 -126.5 -112.5t-174.5 -41.5z" /> + <glyph glyph-name="uacute" unicode="ú" horiz-adv-x="1151" +d="M458 1124l223 289h239l-298 -289h-164zM481 -21q-181 0 -269.5 127.5t-88.5 349.5v543h217v-552q0 -63 8 -110t28.5 -86.5t59 -60t94.5 -20.5q51 0 94.5 18.5t79.5 57t57 108t21 163.5v482h217v-999h-217v133q-48 -71 -126.5 -112.5t-174.5 -41.5z" /> + <glyph glyph-name="ucircumflex" unicode="û" horiz-adv-x="1151" +d="M249 1098l319 353l321 -353h-180l-141 158l-139 -158h-180zM481 -21q-181 0 -269.5 127.5t-88.5 349.5v543h217v-552q0 -63 8 -110t28.5 -86.5t59 -60t94.5 -20.5q51 0 94.5 18.5t79.5 57t57 108t21 163.5v482h217v-999h-217v133q-48 -71 -126.5 -112.5t-174.5 -41.5z +" /> + <glyph glyph-name="udieresis" unicode="ü" horiz-adv-x="1151" +d="M297 1198v215h194v-215h-194zM646 1198v215h194v-215h-194zM481 -21q-181 0 -269.5 127.5t-88.5 349.5v543h217v-552q0 -63 8 -110t28.5 -86.5t59 -60t94.5 -20.5q51 0 94.5 18.5t79.5 57t57 108t21 163.5v482h217v-999h-217v133q-48 -71 -126.5 -112.5t-174.5 -41.5z +" /> + <glyph glyph-name="yacute" unicode="ý" horiz-adv-x="1014" +d="M394 1124l223 289h239l-298 -289h-164zM216 -430l180 450l-389 979h236l264 -732l265 732h236l-561 -1429h-231z" /> + <glyph glyph-name="thorn" unicode="þ" horiz-adv-x="1150" +d="M155 -438v1851h209v-513q109 120 288 120q134 0 232 -72.5t145.5 -188.5t47.5 -259t-47.5 -259.5t-145.5 -188.5t-232 -72q-179 0 -288 120v-538h-209zM611 168q129 0 196 92.5t67 239.5q0 145 -67 237.5t-196 92.5q-128 0 -195.5 -92.5t-67.5 -237.5q0 -147 67.5 -239.5 +t195.5 -92.5z" /> + <glyph glyph-name="ydieresis" unicode="ÿ" horiz-adv-x="1014" +d="M233 1198v215h194v-215h-194zM582 1198v215h194v-215h-194zM216 -430l180 450l-389 979h236l264 -732l265 732h236l-561 -1429h-231z" /> + <glyph glyph-name="Amacron" unicode="Ā" horiz-adv-x="1332" +d="M389 1571v138h553v-138h-553zM28 0l555 1413h169l552 -1413h-242l-109 307h-571l-110 -307h-244zM458 502h420l-210 582z" /> + <glyph glyph-name="amacron" unicode="ā" horiz-adv-x="1050" +d="M226 1158v138h553v-138h-553zM413 -20q-154 0 -252.5 85t-98.5 233q0 290 411 290h250q0 114 -53.5 179.5t-158.5 65.5q-85 0 -147.5 -41t-100.5 -103l-163 119q156 212 407 212q197 0 308 -113t111 -299v-608h-177l-13 159q-110 -179 -323 -179zM442 161 +q116 0 197.5 82.5t83.5 188.5h-236q-101 0 -153 -37.5t-52 -103.5q0 -61 43.5 -95.5t116.5 -34.5z" /> + <glyph glyph-name="Abreve" unicode="Ă" horiz-adv-x="1332" +d="M666 1556q-154 0 -233.5 69.5t-79.5 200.5h161q0 -65 42.5 -100.5t109.5 -35.5t109 36t42 100h161q0 -134 -80.5 -202t-231.5 -68zM28 0l555 1413h169l552 -1413h-242l-109 307h-571l-110 -307h-244zM458 502h420l-210 582z" /> + <glyph glyph-name="abreve" unicode="ă" horiz-adv-x="1050" +d="M503 1143q-154 0 -233.5 69.5t-79.5 200.5h161q0 -65 42.5 -100.5t109.5 -35.5t109 36t42 100h161q0 -134 -80.5 -202t-231.5 -68zM413 -20q-154 0 -252.5 85t-98.5 233q0 290 411 290h250q0 114 -53.5 179.5t-158.5 65.5q-85 0 -147.5 -41t-100.5 -103l-163 119 +q156 212 407 212q197 0 308 -113t111 -299v-608h-177l-13 159q-110 -179 -323 -179zM442 161q116 0 197.5 82.5t83.5 188.5h-236q-101 0 -153 -37.5t-52 -103.5q0 -61 43.5 -95.5t116.5 -34.5z" /> + <glyph glyph-name="Aogonek" unicode="Ą" horiz-adv-x="1332" +d="M1276 -253l114 -78q-81 -120 -215 -120q-95 0 -157 57t-62 148q0 45 17 86t40 68t50.5 48.5t45 31t26.5 12.5h-73l-109 307h-571l-110 -307h-244l555 1413h169l552 -1413q-15 -5 -41.5 -18.5t-69.5 -40.5t-73 -69.5t-30 -89.5q0 -94 78 -94q66 0 108 59zM458 502h420 +l-210 582z" /> + <glyph glyph-name="aogonek" unicode="ą" horiz-adv-x="1050" +d="M898 -253l114 -78q-81 -120 -215 -120q-95 0 -157 57t-62 148q0 45 17 86t40 68t50.5 48.5t45 31t26.5 12.5h-8l-13 159q-110 -179 -323 -179q-154 0 -252.5 85t-98.5 233q0 290 411 290h250q0 114 -53.5 179.5t-158.5 65.5q-85 0 -147.5 -41t-100.5 -103l-163 119 +q156 212 407 212q197 0 308 -113t111 -299v-608q-15 -5 -41.5 -18.5t-69.5 -40.5t-73 -69.5t-30 -89.5q0 -94 78 -94q66 0 108 59zM442 161q116 0 197.5 82.5t83.5 188.5h-236q-101 0 -153 -37.5t-52 -103.5q0 -61 43.5 -95.5t116.5 -34.5z" /> + <glyph glyph-name="Cacute" unicode="Ć" horiz-adv-x="1428" +d="M602 1537l223 289h239l-298 -289h-164zM762 -20q-165 0 -294.5 58.5t-209.5 159.5t-121.5 231t-41.5 279q0 118 25 224.5t78.5 199t131.5 160t189.5 106t245.5 38.5q208 0 364 -101t238 -296l-209 -84q-40 140 -145 204.5t-252 64.5q-92 0 -166.5 -26.5t-125.5 -73 +t-85.5 -111t-50.5 -139t-16 -159.5q0 -112 26 -205t79 -165.5t140.5 -113t202.5 -40.5q143 0 241.5 64t154.5 209l208 -86q-83 -192 -240.5 -295t-366.5 -103z" /> + <glyph glyph-name="cacute" unicode="ć" horiz-adv-x="994" +d="M423 1124l223 289h239l-298 -289h-164zM536 -20q-114 0 -205 43t-147.5 116t-86 165t-29.5 194q0 80 18 155.5t56 142.5t92 116.5t131.5 78.5t168.5 29q146 0 255 -73t164 -213l-203 -81q-21 79 -79 127t-137 48q-52 0 -94.5 -19t-70.5 -51t-47 -75t-27.5 -89.5 +t-8.5 -95.5q0 -64 13.5 -120t41.5 -103.5t77.5 -75.5t115.5 -28q78 0 136.5 47t79.5 124l192 -75q-47 -135 -154 -211t-252 -76z" /> + <glyph glyph-name="Cdotaccent" unicode="Ċ" horiz-adv-x="1428" +d="M597 1611v215h230v-215h-230zM762 -20q-165 0 -294.5 58.5t-209.5 159.5t-121.5 231t-41.5 279q0 118 25 224.5t78.5 199t131.5 160t189.5 106t245.5 38.5q208 0 364 -101t238 -296l-209 -84q-40 140 -145 204.5t-252 64.5q-92 0 -166.5 -26.5t-125.5 -73t-85.5 -111 +t-50.5 -139t-16 -159.5q0 -112 26 -205t79 -165.5t140.5 -113t202.5 -40.5q143 0 241.5 64t154.5 209l208 -86q-83 -192 -240.5 -295t-366.5 -103z" /> + <glyph glyph-name="cdotaccent" unicode="ċ" horiz-adv-x="994" +d="M418 1198v215h230v-215h-230zM536 -20q-114 0 -205 43t-147.5 116t-86 165t-29.5 194q0 80 18 155.5t56 142.5t92 116.5t131.5 78.5t168.5 29q146 0 255 -73t164 -213l-203 -81q-21 79 -79 127t-137 48q-52 0 -94.5 -19t-70.5 -51t-47 -75t-27.5 -89.5t-8.5 -95.5 +q0 -64 13.5 -120t41.5 -103.5t77.5 -75.5t115.5 -28q78 0 136.5 47t79.5 124l192 -75q-47 -135 -154 -211t-252 -76z" /> + <glyph glyph-name="Ccaron" unicode="Č" horiz-adv-x="1428" +d="M712 1493l-319 332h180l139 -150l141 150h180zM762 -20q-165 0 -294.5 58.5t-209.5 159.5t-121.5 231t-41.5 279q0 118 25 224.5t78.5 199t131.5 160t189.5 106t245.5 38.5q208 0 364 -101t238 -296l-209 -84q-40 140 -145 204.5t-252 64.5q-92 0 -166.5 -26.5 +t-125.5 -73t-85.5 -111t-50.5 -139t-16 -159.5q0 -112 26 -205t79 -165.5t140.5 -113t202.5 -40.5q143 0 241.5 64t154.5 209l208 -86q-83 -192 -240.5 -295t-366.5 -103z" /> + <glyph glyph-name="ccaron" unicode="č" horiz-adv-x="994" +d="M533 1080l-319 332h180l139 -150l141 150h180zM536 -20q-114 0 -205 43t-147.5 116t-86 165t-29.5 194q0 80 18 155.5t56 142.5t92 116.5t131.5 78.5t168.5 29q146 0 255 -73t164 -213l-203 -81q-21 79 -79 127t-137 48q-52 0 -94.5 -19t-70.5 -51t-47 -75t-27.5 -89.5 +t-8.5 -95.5q0 -64 13.5 -120t41.5 -103.5t77.5 -75.5t115.5 -28q78 0 136.5 47t79.5 124l192 -75q-47 -135 -154 -211t-252 -76z" /> + <glyph glyph-name="Dcaron" unicode="Ď" horiz-adv-x="1408" +d="M719 1493l-319 332h180l139 -150l141 150h180zM191 0v1413h395q354 0 541 -185t187 -532q0 -332 -189.5 -514t-540.5 -182h-393zM416 206h143q531 0 531 501q0 260 -121.5 380.5t-386.5 120.5h-166v-1002z" /> + <glyph glyph-name="dcaron" unicode="ď" horiz-adv-x="1253" +d="M498 -20q-133 0 -231 72t-145.5 188.5t-47.5 259.5q0 106 28 199.5t80 165t133 113.5t180 42q88 0 164.5 -33.5t126.5 -98.5v525h218v-1413h-218v112q-102 -132 -288 -132zM1114 977l111 436h242l-221 -436h-132zM549 174q128 0 191.5 90.5t63.5 235.5q0 143 -64 234 +t-191 91t-192 -91.5t-65 -233.5q0 -143 65 -234.5t192 -91.5z" /> + <glyph glyph-name="Dcroat" unicode="Đ" horiz-adv-x="1427" +d="M212 0v631h-112v163h112v619h389q352 0 543 -185.5t191 -531.5q0 -332 -193.5 -514t-542.5 -182h-387zM423 197h151q122 0 220.5 29.5t172.5 90t114.5 159.5t40.5 231q0 255 -129.5 383.5t-395.5 128.5h-174v-425h381v-163h-381v-434z" /> + <glyph glyph-name="dcroat" unicode="đ" horiz-adv-x="1158" +d="M1153 1295v-149h-149v-1146h-202l-9 119q-102 -139 -297 -139q-132 0 -229.5 72t-145 188.5t-47.5 259.5q0 142 47.5 258.5t144.5 189t227 72.5q90 0 166.5 -33.5t126.5 -98.5v258h-268v149h268v118h218v-118h149zM549 171q128 0 191.5 92t63.5 237q0 144 -64 236 +t-191 92t-192 -93t-65 -235q0 -144 65 -236.5t192 -92.5z" /> + <glyph glyph-name="Emacron" unicode="Ē" horiz-adv-x="1243" +d="M358 1571v138h553v-138h-553zM191 0v1413h933v-203h-708v-402h644v-202h-644v-396h708v-210h-933z" /> + <glyph glyph-name="emacron" unicode="ē" horiz-adv-x="1058" +d="M245 1158v138h553v-138h-553zM555 -18q-120 0 -215.5 42t-154 114t-88.5 163t-30 194q0 101 29 193t85 166.5t148.5 119t209.5 44.5q99 0 178 -30.5t128.5 -80t83 -116t47 -134t13.5 -138.5q0 -64 -7 -90h-689q11 -116 76.5 -185t186.5 -69q155 0 252 106l148 -127 +q-160 -172 -401 -172zM293 588h487q-10 116 -71.5 183.5t-171.5 67.5t-169.5 -69t-74.5 -182z" /> + <glyph glyph-name="Edotaccent" unicode="Ė" horiz-adv-x="1243" +d="M518 1611v215h230v-215h-230zM191 0v1413h933v-203h-708v-402h644v-202h-644v-396h708v-210h-933z" /> + <glyph glyph-name="edotaccent" unicode="ė" horiz-adv-x="1058" +d="M405 1198v215h230v-215h-230zM555 -18q-120 0 -215.5 42t-154 114t-88.5 163t-30 194q0 101 29 193t85 166.5t148.5 119t209.5 44.5q99 0 178 -30.5t128.5 -80t83 -116t47 -134t13.5 -138.5q0 -64 -7 -90h-689q11 -116 76.5 -185t186.5 -69q155 0 252 106l148 -127 +q-160 -172 -401 -172zM293 588h487q-10 116 -71.5 183.5t-171.5 67.5t-169.5 -69t-74.5 -182z" /> + <glyph glyph-name="Eogonek" unicode="Ę" horiz-adv-x="1243" +d="M1096 -253l114 -78q-81 -120 -215 -120q-95 0 -157 57t-62 148q0 45 17 86t40 68t50.5 48.5t45 31t26.5 12.5h-764v1413h933v-203h-708v-402h644v-202h-644v-396h708v-210q-15 -5 -41.5 -18.5t-69.5 -40.5t-73 -69.5t-30 -89.5q0 -94 78 -94q66 0 108 59z" /> + <glyph glyph-name="eogonek" unicode="ę" horiz-adv-x="1058" +d="M989 519q0 -64 -7 -90h-689q11 -116 76.5 -185t186.5 -69q155 0 252 106l148 -127q-101 -109 -227 -147q-131 -81 -131 -178q0 -94 78 -94q66 0 108 59l114 -78q-81 -120 -215 -120q-95 0 -157 57t-62 148q0 102 83 181q-95 1 -175 29t-135.5 76t-94.5 113t-57 139.5 +t-18 155.5q0 101 29 193t85 166.5t148.5 119t209.5 44.5q99 0 178 -30.5t128.5 -80t83 -116t47 -134t13.5 -138.5zM293 588h487q-10 116 -71.5 183.5t-171.5 67.5t-169.5 -69t-74.5 -182z" /> + <glyph glyph-name="Ecaron" unicode="Ě" horiz-adv-x="1243" +d="M633 1493l-319 332h180l139 -150l141 150h180zM191 0v1413h933v-203h-708v-402h644v-202h-644v-396h708v-210h-933z" /> + <glyph glyph-name="ecaron" unicode="ě" horiz-adv-x="1058" +d="M520 1080l-319 332h180l139 -150l141 150h180zM555 -18q-120 0 -215.5 42t-154 114t-88.5 163t-30 194q0 101 29 193t85 166.5t148.5 119t209.5 44.5q99 0 178 -30.5t128.5 -80t83 -116t47 -134t13.5 -138.5q0 -64 -7 -90h-689q11 -116 76.5 -185t186.5 -69 +q155 0 252 106l148 -127q-160 -172 -401 -172zM293 588h487q-10 116 -71.5 183.5t-171.5 67.5t-169.5 -69t-74.5 -182z" /> + <glyph glyph-name="Gbreve" unicode="Ğ" horiz-adv-x="1526" +d="M761 1556q-154 0 -233.5 69.5t-79.5 200.5h161q0 -65 42.5 -100.5t109.5 -35.5t109 36t42 100h161q0 -134 -80.5 -202t-231.5 -68zM764 -20q-166 0 -296 58.5t-210 159.5t-121.5 230.5t-41.5 278.5q0 118 25.5 225t79 199.5t131 160t188 106t243.5 38.5q206 0 362.5 -102 +t240.5 -295l-200 -84q-53 140 -157.5 211t-247.5 71q-112 0 -199 -42t-139 -115.5t-78.5 -165t-26.5 -197.5q0 -112 26.5 -207t79 -169.5t140 -116.5t201.5 -42q164 0 280 105t131 282h-322v180h538v-749h-180l-15 217q-55 -106 -169 -171.5t-263 -65.5z" /> + <glyph glyph-name="gbreve" unicode="ğ" horiz-adv-x="1041" +d="M505 1143q-154 0 -233.5 69.5t-79.5 200.5h161q0 -65 42.5 -100.5t109.5 -35.5t109 36t42 100h161q0 -134 -80.5 -202t-231.5 -68zM579 147q49 -6 83 -12t79 -17t75.5 -24.5t63 -35.5t51.5 -49t31.5 -66t12.5 -87q0 -157 -121 -240.5t-308 -83.5q-209 0 -332.5 99 +t-123.5 252q0 19 4 41l117 109q-108 67 -108 200q0 117 87 194q-83 97 -83 229q0 159 116 260.5t282 101.5q139 0 245 -72l151 132l113 -141l-150 -120q41 -79 41 -170q0 -161 -113.5 -259.5t-280.5 -98.5q-102 0 -189 39q-34 -23 -34 -60q0 -59 84 -86q45 -14 207 -35z +M510 851q-84 0 -133 -55t-49 -140q0 -86 48.5 -139t133.5 -53q86 0 134 52.5t48 139.5q0 86 -48.5 140.5t-133.5 54.5zM551 -295q99 0 161 33.5t62 94.5q0 21 -6.5 37t-24 27.5t-33.5 19t-49 14t-56 10t-69 9.5q-20 3 -30 4q-116 16 -161 27l-71 -103q7 -79 82.5 -126 +t194.5 -47z" /> + <glyph glyph-name="Gdotaccent" unicode="Ġ" horiz-adv-x="1526" +d="M644 1611v215h230v-215h-230zM764 -20q-166 0 -296 58.5t-210 159.5t-121.5 230.5t-41.5 278.5q0 118 25.5 225t79 199.5t131 160t188 106t243.5 38.5q206 0 362.5 -102t240.5 -295l-200 -84q-53 140 -157.5 211t-247.5 71q-112 0 -199 -42t-139 -115.5t-78.5 -165 +t-26.5 -197.5q0 -112 26.5 -207t79 -169.5t140 -116.5t201.5 -42q164 0 280 105t131 282h-322v180h538v-749h-180l-15 217q-55 -106 -169 -171.5t-263 -65.5z" /> + <glyph glyph-name="gdotaccent" unicode="ġ" horiz-adv-x="1041" +d="M618 1413v-215h-230v215h230zM579 147q49 -6 83 -12t79 -17t75.5 -24.5t63 -35.5t51.5 -49t31.5 -66t12.5 -87q0 -157 -121 -240.5t-308 -83.5q-209 0 -332.5 99t-123.5 252q0 19 4 41l117 109q-108 67 -108 200q0 117 87 194q-83 97 -83 229q0 159 116 260.5t282 101.5 +q139 0 245 -72l151 132l113 -141l-150 -120q41 -79 41 -170q0 -161 -113.5 -259.5t-280.5 -98.5q-102 0 -189 39q-34 -23 -34 -60q0 -59 84 -86q45 -14 207 -35zM510 851q-84 0 -133 -55t-49 -140q0 -86 48.5 -139t133.5 -53q86 0 134 52.5t48 139.5q0 86 -48.5 140.5 +t-133.5 54.5zM551 -295q99 0 161 33.5t62 94.5q0 21 -6.5 37t-24 27.5t-33.5 19t-49 14t-56 10t-69 9.5q-20 3 -30 4q-116 16 -161 27l-71 -103q7 -79 82.5 -126t194.5 -47z" /> + <glyph glyph-name="Gcommaaccent" unicode="Ģ" horiz-adv-x="1526" +d="M764 -20q-166 0 -296 58.5t-210 159.5t-121.5 230.5t-41.5 278.5q0 118 25.5 225t79 199.5t131 160t188 106t243.5 38.5q206 0 362.5 -102t240.5 -295l-200 -84q-53 140 -157.5 211t-247.5 71q-112 0 -199 -42t-139 -115.5t-78.5 -165t-26.5 -197.5q0 -112 26.5 -207 +t79 -169.5t140 -116.5t201.5 -42q164 0 280 105t131 282h-322v180h538v-749h-180l-15 217q-55 -106 -169 -171.5t-263 -65.5zM530 -455l132 347h241l-242 -347h-131z" /> + <glyph glyph-name="gcommaaccent" unicode="ģ" horiz-adv-x="1041" +d="M743 1431l-132 -310h-241l242 310h131zM579 147q49 -6 83 -12t79 -17t75.5 -24.5t63 -35.5t51.5 -49t31.5 -66t12.5 -87q0 -157 -121 -240.5t-308 -83.5q-209 0 -332.5 99t-123.5 252q0 19 4 41l117 109q-108 67 -108 200q0 117 87 194q-83 97 -83 229q0 159 116 260.5 +t282 101.5q139 0 245 -72l151 132l113 -141l-150 -120q41 -79 41 -170q0 -161 -113.5 -259.5t-280.5 -98.5q-102 0 -189 39q-34 -23 -34 -60q0 -59 84 -86q45 -14 207 -35zM510 851q-84 0 -133 -55t-49 -140q0 -86 48.5 -139t133.5 -53q86 0 134 52.5t48 139.5 +q0 86 -48.5 140.5t-133.5 54.5zM551 -295q99 0 161 33.5t62 94.5q0 21 -6.5 37t-24 27.5t-33.5 19t-49 14t-56 10t-69 9.5q-20 3 -30 4q-116 16 -161 27l-71 -103q7 -79 82.5 -126t194.5 -47z" /> + <glyph glyph-name="Hbar" unicode="Ħ" horiz-adv-x="1480" +d="M1393 1178v-127h-105v-1051h-224v606h-648v-606h-225v1051h-107v127h107v235h225v-235h648v235h224v-235h105zM1064 808v243h-648v-243h648z" /> + <glyph glyph-name="hbar" unicode="ħ" horiz-adv-x="1155" +d="M671 1019q92 0 163 -34.5t112.5 -94t62.5 -131.5t21 -154v-605h-218v577q0 246 -190 246q-118 0 -184.5 -86.5t-66.5 -220.5v-516h-216v1115h-157v149h157v149h216v-149h262v-149h-262v-247q55 74 135 112.5t165 38.5z" /> + <glyph glyph-name="Itilde" unicode="Ĩ" horiz-adv-x="607" +d="M428 1532q-42 0 -77 15t-58 37t-43 43.5t-40 36.5t-41 15q-32 0 -49.5 -36.5t-17.5 -100.5h-126q0 130 52.5 202.5t146.5 72.5q48 0 89.5 -23t64.5 -50.5t50 -50.5t51 -23q30 0 47 37t17 104h133q0 -134 -52.5 -206.5t-146.5 -72.5zM191 0v1413h225v-1413h-225z" /> + <glyph glyph-name="itilde" unicode="ĩ" horiz-adv-x="511" +d="M380 1119q-42 0 -77 15t-58 36.5t-43 43.5t-40 37t-41 15q-32 0 -49.5 -36.5t-17.5 -100.5h-126q0 130 52.5 202.5t146.5 72.5q48 0 89.5 -23t64.5 -50.5t50 -50.5t51 -23q30 0 47 37t17 104h133q0 -134 -52.5 -206.5t-146.5 -72.5zM153 0v999h206v-999h-206z" /> + <glyph glyph-name="Imacron" unicode="Ī" horiz-adv-x="607" +d="M26 1571v138h553v-138h-553zM191 0v1413h225v-1413h-225z" /> + <glyph glyph-name="imacron" unicode="ī" horiz-adv-x="511" +d="M-22 1158v138h553v-138h-553zM153 0v999h206v-999h-206z" /> + <glyph glyph-name="Iogonek" unicode="Į" horiz-adv-x="607" +d="M388 -253l114 -78q-81 -120 -215 -120q-95 0 -157 57t-62 148q0 45 17 86t40 68t50.5 48.5t45 31t26.5 12.5h-56v1413h225v-1413q-15 -5 -41.5 -18.5t-69.5 -40.5t-73 -69.5t-30 -89.5q0 -94 78 -94q66 0 108 59z" /> + <glyph glyph-name="iogonek" unicode="į" horiz-adv-x="511" +d="M368 1413v-215h-230v215h230zM331 -253l114 -78q-81 -120 -215 -120q-95 0 -157 57t-62 148q0 45 17 86t40 68t50.5 48.5t45 31t26.5 12.5h-37v999h206v-999q-15 -5 -41.5 -18.5t-69.5 -40.5t-73 -69.5t-30 -89.5q0 -94 78 -94q66 0 108 59z" /> + <glyph glyph-name="Idotaccent" unicode="İ" horiz-adv-x="607" +d="M186 1611v215h230v-215h-230zM191 0v1413h225v-1413h-225z" /> + <glyph glyph-name="dotlessi" unicode="ı" horiz-adv-x="511" +d="M153 0v999h206v-999h-206z" /> + <glyph glyph-name="IJ" unicode="IJ" horiz-adv-x="1740" +d="M191 0v1413h225v-1413h-225zM1112 -20q-102 0 -187 35.5t-142.5 96.5t-91.5 141.5t-40 172.5l220 27q8 -117 67.5 -192.5t173.5 -75.5q72 0 120.5 21.5t73.5 65.5t35 97.5t10 129.5v711h-533v203h757v-906q0 -118 -25.5 -211.5t-79.5 -165.5t-144.5 -111t-213.5 -39z" /> + <glyph glyph-name="Kcommaaccent" unicode="Ķ" horiz-adv-x="1479" +d="M191 0v1413h225v-766l717 766h298l-556 -572l573 -841h-277l-450 690l-305 -316v-374h-225zM490 -455l132 347h241l-242 -347h-131z" /> + <glyph glyph-name="kcommaaccent" unicode="ķ" horiz-adv-x="1096" +d="M155 0v1413h214v-868l398 454h277l-359 -381l408 -618h-254l-297 484l-173 -191v-293h-214zM372 -455l132 347h241l-242 -347h-131z" /> + <glyph glyph-name="kgreenlandic" unicode="ĸ" horiz-adv-x="1094" +d="M153 0v999h214v-449l398 449h276l-359 -381l408 -618h-254l-297 483l-172 -191v-292h-214z" /> + <glyph glyph-name="Lacute" unicode="Ĺ" horiz-adv-x="1055" +d="M199 1537l223 289h239l-298 -289h-164zM191 0v1413h225v-1203h604v-210h-829z" /> + <glyph glyph-name="lacute" unicode="ĺ" horiz-adv-x="556" +d="M154 1537l223 289h239l-298 -289h-164zM342 -20q-97 0 -146 52t-49 168v1213h215v-1178q0 -25 17.5 -44.5t52.5 -19.5q33 0 77 7v-178q-90 -20 -167 -20z" /> + <glyph glyph-name="Lcommaaccent" unicode="Ļ" horiz-adv-x="1055" +d="M191 0v1413h225v-1203h604v-210h-829zM301 -455l132 347h241l-242 -347h-131z" /> + <glyph glyph-name="lcommaaccent" unicode="ļ" horiz-adv-x="556" +d="M342 -20q-97 0 -146 52t-49 168v1213h215v-1178q0 -25 17.5 -44.5t52.5 -19.5q33 0 77 7v-178q-90 -20 -167 -20zM116 -455l132 347h241l-242 -347h-131z" /> + <glyph glyph-name="Lcaron" unicode="Ľ" horiz-adv-x="1084" +d="M191 0v1413h225v-1203h604v-210h-829zM648 977l111 436h242l-221 -436h-132z" /> + <glyph glyph-name="lcaron" unicode="ľ" horiz-adv-x="635" +d="M346 -20q-101 0 -150 51t-49 169v1213h215v-1178q0 -25 18.5 -44.5t56.5 -19.5q28 0 72 7v-178q-90 -20 -163 -20zM496 977l111 436h242l-221 -436h-132z" /> + <glyph glyph-name="Lslash" unicode="Ł" horiz-adv-x="1080" +d="M428 210h604v-210h-829v301l-92 -103v244l92 104v867h225v-613l291 328v-248l-291 -326v-344z" /> + <glyph glyph-name="lslash" unicode="ł" horiz-adv-x="556" +d="M432 171q33 0 77 7v-178q-90 -20 -167 -20q-97 0 -146 52t-49 168v218l-95 -107v203l95 107v792h215v-549l128 144v-203l-128 -144v-426q0 -25 17.5 -44.5t52.5 -19.5z" /> + <glyph glyph-name="Nacute" unicode="Ń" horiz-adv-x="1443" +d="M609 1537l223 289h239l-298 -289h-164zM191 0v1413h245l599 -1069v1069h216v-1413h-247l-595 1071v-1071h-218z" /> + <glyph glyph-name="nacute" unicode="ń" horiz-adv-x="1148" +d="M464 1124l223 289h239l-298 -289h-164zM153 0v999h212v-134q55 76 135.5 115t168.5 39q74 0 134 -23t100 -62.5t67.5 -93t39.5 -113t12 -125.5v-602h-212v577q0 107 -51 177t-151 70q-112 0 -177.5 -71.5t-65.5 -214.5v-538h-212z" /> + <glyph glyph-name="Ncommaaccent" unicode="Ņ" horiz-adv-x="1443" +d="M191 0v1413h245l599 -1069v1069h216v-1413h-247l-595 1071v-1071h-218zM483 -455l132 347h241l-242 -347h-131z" /> + <glyph glyph-name="ncommaaccent" unicode="ņ" horiz-adv-x="1148" +d="M153 0v999h212v-134q55 76 135.5 115t168.5 39q74 0 134 -23t100 -62.5t67.5 -93t39.5 -113t12 -125.5v-602h-212v577q0 107 -51 177t-151 70q-112 0 -177.5 -71.5t-65.5 -214.5v-538h-212zM338 -455l132 347h241l-242 -347h-131z" /> + <glyph glyph-name="Ncaron" unicode="Ň" horiz-adv-x="1443" +d="M719 1493l-319 332h180l139 -150l141 150h180zM191 0v1413h245l599 -1069v1069h216v-1413h-247l-595 1071v-1071h-218z" /> + <glyph glyph-name="ncaron" unicode="ň" horiz-adv-x="1148" +d="M574 1080l-319 332h180l139 -150l141 150h180zM153 0v999h212v-134q55 76 135.5 115t168.5 39q74 0 134 -23t100 -62.5t67.5 -93t39.5 -113t12 -125.5v-602h-212v577q0 107 -51 177t-151 70q-112 0 -177.5 -71.5t-65.5 -214.5v-538h-212z" /> + <glyph glyph-name="Eng" unicode="Ŋ" horiz-adv-x="1443" +d="M830 -369v148q122 -6 180.5 44t24.5 123l-626 1124v-1070h-218v1412h243l601 -1068v1068h215v-1412q0 -54 -6.5 -100.5t-27 -98t-53.5 -87.5t-91 -59.5t-134 -23.5h-108z" /> + <glyph glyph-name="eng" unicode="ŋ" horiz-adv-x="1145" +d="M610 -369v179h69q36 0 62 12t38.5 28t19.5 43t8 44t1 44v597q0 243 -177 243q-109 0 -188.5 -80t-79.5 -186v-555h-210v999h210v-136q52 75 132.5 114t166.5 39q75 0 135.5 -22.5t101 -61.5t68 -92t39.5 -112t12 -124v-675q0 -24 -1 -43t-7.5 -51.5t-17.5 -57.5t-33 -54 +t-52.5 -48t-79 -31.5t-108.5 -12.5h-109z" /> + <glyph glyph-name="Omacron" unicode="Ō" horiz-adv-x="1524" +d="M484 1571v138h553v-138h-553zM761 -20q-133 0 -243.5 38.5t-188 105.5t-131 159.5t-78.5 199t-25 224.5t25 224.5t78.5 198.5t131 159.5t188 106t243.5 38.5q134 0 245 -38.5t188 -106t131 -159.5t79 -198.5t25 -224.5t-25 -224.5t-79 -199t-131.5 -159.5t-188 -105.5 +t-244.5 -38.5zM761 180q114 0 200.5 42.5t136.5 117.5t74.5 167t24.5 200q0 86 -14.5 161.5t-48 143t-83 116t-124 77t-166.5 28.5t-165.5 -28.5t-123 -77t-82.5 -116t-47.5 -143t-14.5 -161.5q0 -108 24 -200t74 -167t135.5 -117.5t199.5 -42.5z" /> + <glyph glyph-name="omacron" unicode="ō" horiz-adv-x="1125" +d="M285 1158v138h553v-138h-553zM561 -20q-110 0 -204 42t-158.5 113t-100.5 166t-36 201q0 142 61.5 259.5t176.5 188t261 70.5q147 0 262.5 -70.5t177 -188t61.5 -259.5t-61.5 -260.5t-177.5 -190t-262 -71.5zM562 163q94 0 158.5 49.5t92 123.5t27.5 166q0 143 -70 238.5 +t-208 95.5t-208 -95.5t-70 -238.5q0 -92 27.5 -166.5t92 -123.5t158.5 -49z" /> + <glyph glyph-name="Ohungarumlaut" unicode="Ő" horiz-adv-x="1524" +d="M472 1508l223 318h209l-268 -318h-164zM815 1508l222 318h239l-297 -318h-164zM761 -20q-133 0 -243.5 38.5t-188 105.5t-131 159.5t-78.5 199t-25 224.5t25 224.5t78.5 198.5t131 159.5t188 106t243.5 38.5q134 0 245 -38.5t188 -106t131 -159.5t79 -198.5t25 -224.5 +t-25 -224.5t-79 -199t-131.5 -159.5t-188 -105.5t-244.5 -38.5zM761 180q114 0 200.5 42.5t136.5 117.5t74.5 167t24.5 200q0 86 -14.5 161.5t-48 143t-83 116t-124 77t-166.5 28.5t-165.5 -28.5t-123 -77t-82.5 -116t-47.5 -143t-14.5 -161.5q0 -108 24 -200t74 -167 +t135.5 -117.5t199.5 -42.5z" /> + <glyph glyph-name="ohungarumlaut" unicode="ő" horiz-adv-x="1125" +d="M273 1095l223 318h209l-268 -318h-164zM616 1095l222 318h239l-297 -318h-164zM561 -20q-110 0 -204 42t-158.5 113t-100.5 166t-36 201q0 142 61.5 259.5t176.5 188t261 70.5q147 0 262.5 -70.5t177 -188t61.5 -259.5t-61.5 -260.5t-177.5 -190t-262 -71.5zM562 163 +q94 0 158.5 49.5t92 123.5t27.5 166q0 143 -70 238.5t-208 95.5t-208 -95.5t-70 -238.5q0 -92 27.5 -166.5t92 -123.5t158.5 -49z" /> + <glyph glyph-name="OE" unicode="Œ" horiz-adv-x="2251" +d="M761 -20q-133 0 -243.5 38.5t-188 105.5t-131 159.5t-78.5 199t-25 224.5t25 224.5t78.5 198.5t131 159.5t188 106t243.5 38.5q298 0 444 -202v181h927v-203h-703v-402h645v-202h-645v-396h703v-210h-927v181q-148 -201 -444 -201zM761 189q115 0 202 41.5t139 114 +t77.5 163.5t25.5 199q0 107 -25.5 198t-77.5 163.5t-139 114t-202 41.5q-114 0 -201 -41.5t-138.5 -114t-77 -163.5t-25.5 -198t25.5 -198.5t77 -164t138.5 -114t201 -41.5z" /> + <glyph glyph-name="oe" unicode="œ" horiz-adv-x="1815" +d="M561 -20q-147 0 -262 70.5t-176 187.5t-61 258t60.5 258t176 187.5t262.5 70.5q118 0 213.5 -49t158.5 -134q124 183 353 183q103 0 183.5 -29.5t131 -78t83.5 -116.5t46.5 -140t13.5 -154q0 -17 -1.5 -33.5t-2.5 -24.5l-2 -8h-689q10 -105 78.5 -171t183.5 -66 +q84 0 146 24.5t117 81.5l152 -132q-168 -177 -413 -177q-125 0 -221.5 48t-155.5 131q-134 -187 -375 -187zM557 165q138 0 205.5 91.5t67.5 239.5q0 71 -15 129t-46.5 103.5t-84 71t-123.5 25.5q-137 0 -205 -92t-68 -239t66 -238t203 -91zM1050 588h479q-9 114 -69 175.5 +t-174 61.5q-105 0 -164 -65.5t-72 -171.5z" /> + <glyph glyph-name="Racute" unicode="Ŕ" horiz-adv-x="1253" +d="M507 1537l223 289h239l-298 -289h-164zM191 -2v1415h441q131 0 238 -47.5t172 -142t65 -219.5q0 -134 -78 -232t-206 -136l390 -638h-258l-350 615h-189v-615h-225zM418 801h237q106 5 168 58t62 142q0 98 -68 154.5t-183 56.5h-216v-411z" /> + <glyph glyph-name="racute" unicode="ŕ" horiz-adv-x="809" +d="M300 1124l223 289h239l-298 -289h-164zM153 0v999h209v-171q34 89 110.5 140.5t166.5 51.5q108 0 176 -66l-96 -178q-49 36 -113 36q-106 0 -176 -94t-70 -272v-446h-207z" /> + <glyph glyph-name="Rcommaaccent" unicode="Ŗ" horiz-adv-x="1253" +d="M191 -2v1415h441q131 0 238 -47.5t172 -142t65 -219.5q0 -134 -78 -232t-206 -136l390 -638h-258l-350 615h-189v-615h-225zM418 801h237q106 5 168 58t62 142q0 98 -68 154.5t-183 56.5h-216v-411zM450 -455l132 347h241l-242 -347h-131z" /> + <glyph glyph-name="rcommaaccent" unicode="ŗ" horiz-adv-x="809" +d="M153 0v999h209v-171q34 89 110.5 140.5t166.5 51.5q108 0 176 -66l-96 -178q-49 36 -113 36q-106 0 -176 -94t-70 -272v-446h-207zM21 -455l132 347h241l-242 -347h-131z" /> + <glyph glyph-name="Rcaron" unicode="Ř" horiz-adv-x="1253" +d="M617 1493l-319 332h180l139 -150l141 150h180zM191 -2v1415h441q131 0 238 -47.5t172 -142t65 -219.5q0 -134 -78 -232t-206 -136l390 -638h-258l-350 615h-189v-615h-225zM418 801h237q106 5 168 58t62 142q0 98 -68 154.5t-183 56.5h-216v-411z" /> + <glyph glyph-name="rcaron" unicode="ř" horiz-adv-x="809" +d="M410 1080l-319 332h180l139 -150l141 150h180zM153 0v999h209v-171q34 89 110.5 140.5t166.5 51.5q108 0 176 -66l-96 -178q-49 36 -113 36q-106 0 -176 -94t-70 -272v-446h-207z" /> + <glyph glyph-name="Sacute" unicode="Ś" horiz-adv-x="1128" +d="M449 1537l223 289h239l-298 -289h-164zM581 -16q-93 0 -179 25.5t-158 74.5t-121.5 127t-65.5 177l219 57q14 -129 99 -195.5t209 -66.5q117 0 183.5 55t66.5 148q0 50 -23.5 90.5t-63 69t-90.5 53t-108 47.5t-113.5 47.5t-107.5 57.5t-90.5 73t-63 99t-23.5 131 +q0 174 122 277t300 103q134 0 242.5 -59.5t176.5 -180.5l-183 -113q-38 75 -102 115t-140 40q-81 0 -137 -47t-56 -122q0 -45 23.5 -81.5t63 -62.5t90.5 -49.5t108 -46t113.5 -47.5t107.5 -59.5t90.5 -76.5t63 -103.5t23.5 -135.5q0 -127 -64 -224t-171.5 -147t-240.5 -50z +" /> + <glyph glyph-name="sacute" unicode="ś" horiz-adv-x="897" +d="M318 1124l223 289h239l-298 -289h-164zM446 -20q-148 0 -257.5 77.5t-147.5 192.5l173 79q61 -172 224 -172q81 0 127 38.5t46 94.5q0 36 -22 62t-58 40.5t-82 29.5t-93.5 27t-93.5 34t-82 50t-58 76t-22 110q0 144 102.5 222.5t251.5 78.5q122 0 215 -56t148 -156 +l-164 -90q-72 132 -207 132q-65 0 -104 -29t-39 -73q0 -36 28.5 -61t74.5 -41t101 -31t110 -38t101 -54.5t74.5 -87.5t28.5 -130q0 -81 -32.5 -145t-86.5 -102t-119.5 -58t-136.5 -20z" /> + <glyph glyph-name="Scedilla" unicode="Ş" horiz-adv-x="1128" +d="M1057 405q0 -181 -123 -294.5t-312 -125.5l-65 -90q91 -10 140 -61.5t49 -130.5q0 -92 -63 -156t-160 -64q-63 0 -116 36t-76 92l123 55q8 -23 28.5 -39t46.5 -16q38 0 61.5 24t23.5 60q0 49 -47 82t-126 33h-61l110 180q-166 23 -286 125.5t-147 272.5l219 57 +q14 -129 99 -195.5t209 -66.5q117 0 183.5 55t66.5 148q0 50 -23.5 90.5t-63 69t-90.5 53t-108 47.5t-113.5 47.5t-107.5 57.5t-90.5 73t-63 99t-23.5 131q0 174 122 277t300 103q134 0 242.5 -59.5t176.5 -180.5l-183 -113q-38 75 -102 115t-140 40q-81 0 -137 -47 +t-56 -122q0 -45 23.5 -81.5t63 -62.5t90.5 -49.5t108 -46t113.5 -47.5t107.5 -59.5t90.5 -76.5t63 -103.5t23.5 -135.5z" /> + <glyph glyph-name="scedilla" unicode="ş" horiz-adv-x="897" +d="M821 305q0 -129 -77 -209t-196 -105l-69 -96q91 -10 140 -61.5t49 -130.5q0 -92 -63 -156t-160 -64q-63 0 -116 36t-76 92l123 55q8 -23 28.5 -39t46.5 -16q38 0 61.5 24t23.5 60q0 49 -47 82t-126 33h-61l105 172q-134 10 -232.5 85.5t-133.5 182.5l173 79 +q61 -172 224 -172q81 0 127 38.5t46 94.5q0 36 -22 62t-58 40.5t-82 29.5t-93.5 27t-93.5 34t-82 50t-58 76t-22 110q0 144 102.5 222.5t251.5 78.5q122 0 215 -56t148 -156l-164 -90q-72 132 -207 132q-65 0 -104 -29t-39 -73q0 -36 28.5 -61t74.5 -41t101 -31t110 -38 +t101 -54.5t74.5 -87.5t28.5 -130z" /> + <glyph glyph-name="Scaron" unicode="Š" horiz-adv-x="1128" +d="M559 1493l-319 332h180l139 -150l141 150h180zM581 -16q-93 0 -179 25.5t-158 74.5t-121.5 127t-65.5 177l219 57q14 -129 99 -195.5t209 -66.5q117 0 183.5 55t66.5 148q0 50 -23.5 90.5t-63 69t-90.5 53t-108 47.5t-113.5 47.5t-107.5 57.5t-90.5 73t-63 99t-23.5 131 +q0 174 122 277t300 103q134 0 242.5 -59.5t176.5 -180.5l-183 -113q-38 75 -102 115t-140 40q-81 0 -137 -47t-56 -122q0 -45 23.5 -81.5t63 -62.5t90.5 -49.5t108 -46t113.5 -47.5t107.5 -59.5t90.5 -76.5t63 -103.5t23.5 -135.5q0 -127 -64 -224t-171.5 -147t-240.5 -50z +" /> + <glyph glyph-name="scaron" unicode="š" horiz-adv-x="897" +d="M428 1080l-319 332h180l139 -150l141 150h180zM446 -20q-148 0 -257.5 77.5t-147.5 192.5l173 79q61 -172 224 -172q81 0 127 38.5t46 94.5q0 36 -22 62t-58 40.5t-82 29.5t-93.5 27t-93.5 34t-82 50t-58 76t-22 110q0 144 102.5 222.5t251.5 78.5q122 0 215 -56 +t148 -156l-164 -90q-72 132 -207 132q-65 0 -104 -29t-39 -73q0 -36 28.5 -61t74.5 -41t101 -31t110 -38t101 -54.5t74.5 -87.5t28.5 -130q0 -81 -32.5 -145t-86.5 -102t-119.5 -58t-136.5 -20z" /> + <glyph glyph-name="uni0162" unicode="Ţ" horiz-adv-x="1197" +d="M486 0v1216h-453v197h1131v-197h-453v-1216h-225zM562 -517q-63 0 -116 36t-76 92l123 55q8 -23 28.5 -39t46.5 -16q38 0 61.5 24t23.5 60q0 49 -47 82t-126 33h-61l115 188h136l-74 -103q91 -10 140 -61.5t49 -130.5q0 -92 -63 -156t-160 -64z" /> + <glyph glyph-name="uni0163" unicode="ţ" horiz-adv-x="729" +d="M475 -105q91 -10 140 -61.5t49 -130.5q0 -92 -63 -156t-160 -64q-63 0 -116 36t-76 92l123 55q8 -23 28.5 -39t46.5 -16q38 0 61.5 24t23.5 60q0 49 -47 82t-126 33h-61l108 177q-104 20 -159 95t-55 191v547h-161v179h164v241l209 163v-404h253v-179h-253v-518 +q0 -136 118 -136q59 0 127 33v-192q-45 -17 -111 -24z" /> + <glyph glyph-name="Tcaron" unicode="Ť" horiz-adv-x="1197" +d="M598 1493l-319 332h180l139 -150l141 150h180zM486 0v1216h-453v197h1131v-197h-453v-1216h-225z" /> + <glyph glyph-name="tcaron" unicode="ť" horiz-adv-x="733" +d="M516 1132l130 429h236l-240 -429h-126zM470 -20q-140 0 -208.5 79t-68.5 214v535h-161v191h164v241l204 163v-404h258v-191h-258v-537q0 -102 97 -102q44 0 82 7.5t55 15.5l16 7v-192q-61 -27 -180 -27z" /> + <glyph glyph-name="Tbar" unicode="Ŧ" horiz-adv-x="1197" +d="M1164 1216h-453v-434h207v-149h-207v-633h-225v633h-203v149h203v434h-453v197h1131v-197z" /> + <glyph glyph-name="tbar" unicode="ŧ" horiz-adv-x="729" +d="M664 426h-260v-124q0 -136 118 -136q59 0 127 33v-192q-69 -27 -166 -27q-141 0 -216 78t-75 215v153h-163v149h163v245h-161v179h164v241l209 163v-404h253v-179h-253v-245h260v-149z" /> + <glyph glyph-name="Utilde" unicode="Ũ" horiz-adv-x="1372" +d="M809 1532q-42 0 -77 15t-58 37t-43 43.5t-40 36.5t-41 15q-32 0 -49.5 -36.5t-17.5 -100.5h-126q0 130 52.5 202.5t146.5 72.5q48 0 89.5 -23t64.5 -50.5t50 -50.5t51 -23q30 0 47 37t17 104h133q0 -134 -52.5 -206.5t-146.5 -72.5zM686 -20q-136 0 -238 41t-164.5 117 +t-93 177t-30.5 226v872h225v-839q0 -188 66.5 -283t234.5 -95t235 95.5t67 282.5v839h224v-862q0 -129 -30.5 -232t-93 -179.5t-164.5 -118t-238 -41.5z" /> + <glyph glyph-name="utilde" unicode="ũ" horiz-adv-x="1151" +d="M695 1119q-42 0 -77 15t-58 36.5t-43 43.5t-40 37t-41 15q-32 0 -49.5 -36.5t-17.5 -100.5h-126q0 130 52.5 202.5t146.5 72.5q48 0 89.5 -23t64.5 -50.5t50 -50.5t51 -23q30 0 47 37t17 104h133q0 -134 -52.5 -206.5t-146.5 -72.5zM481 -21q-181 0 -269.5 127.5 +t-88.5 349.5v543h217v-552q0 -63 8 -110t28.5 -86.5t59 -60t94.5 -20.5q51 0 94.5 18.5t79.5 57t57 108t21 163.5v482h217v-999h-217v133q-48 -71 -126.5 -112.5t-174.5 -41.5z" /> + <glyph glyph-name="Umacron" unicode="Ū" horiz-adv-x="1372" +d="M407 1571v138h553v-138h-553zM686 -20q-136 0 -238 41t-164.5 117t-93 177t-30.5 226v872h225v-839q0 -188 66.5 -283t234.5 -95t235 95.5t67 282.5v839h224v-862q0 -129 -30.5 -232t-93 -179.5t-164.5 -118t-238 -41.5z" /> + <glyph glyph-name="umacron" unicode="ū" horiz-adv-x="1151" +d="M293 1158v138h553v-138h-553zM481 -21q-181 0 -269.5 127.5t-88.5 349.5v543h217v-552q0 -63 8 -110t28.5 -86.5t59 -60t94.5 -20.5q51 0 94.5 18.5t79.5 57t57 108t21 163.5v482h217v-999h-217v133q-48 -71 -126.5 -112.5t-174.5 -41.5z" /> + <glyph glyph-name="Uring" unicode="Ů" horiz-adv-x="1372" +d="M682 1485q-93 0 -157 65.5t-64 157.5t64.5 156.5t156.5 64.5q91 0 157 -64.5t66 -156.5q0 -93 -65 -158t-158 -65zM682 1607q43 0 71.5 29t28.5 73q0 43 -27 70t-73 27q-44 0 -71 -27t-27 -70q0 -44 28 -73t70 -29zM686 -20q-136 0 -238 41t-164.5 117t-93 177t-30.5 226 +v872h225v-839q0 -188 66.5 -283t234.5 -95t235 95.5t67 282.5v839h224v-862q0 -129 -30.5 -232t-93 -179.5t-164.5 -118t-238 -41.5z" /> + <glyph glyph-name="uring" unicode="ů" horiz-adv-x="1151" +d="M568 1072q-93 0 -157 65.5t-64 157.5t64.5 156.5t156.5 64.5q91 0 157 -64.5t66 -156.5q0 -93 -65 -158t-158 -65zM568 1194q43 0 71.5 29t28.5 73q0 43 -27 70t-73 27q-44 0 -71 -27t-27 -70q0 -44 28 -73t70 -29zM481 -21q-181 0 -269.5 127.5t-88.5 349.5v543h217 +v-552q0 -63 8 -110t28.5 -86.5t59 -60t94.5 -20.5q51 0 94.5 18.5t79.5 57t57 108t21 163.5v482h217v-999h-217v133q-48 -71 -126.5 -112.5t-174.5 -41.5z" /> + <glyph glyph-name="Uhungarumlaut" unicode="Ű" horiz-adv-x="1372" +d="M395 1508l223 318h209l-268 -318h-164zM738 1508l222 318h239l-297 -318h-164zM686 -20q-136 0 -238 41t-164.5 117t-93 177t-30.5 226v872h225v-839q0 -188 66.5 -283t234.5 -95t235 95.5t67 282.5v839h224v-862q0 -129 -30.5 -232t-93 -179.5t-164.5 -118t-238 -41.5z +" /> + <glyph glyph-name="uhungarumlaut" unicode="ű" horiz-adv-x="1151" +d="M281 1095l223 318h209l-268 -318h-164zM624 1095l222 318h239l-297 -318h-164zM481 -21q-181 0 -269.5 127.5t-88.5 349.5v543h217v-552q0 -63 8 -110t28.5 -86.5t59 -60t94.5 -20.5q51 0 94.5 18.5t79.5 57t57 108t21 163.5v482h217v-999h-217v133 +q-48 -71 -126.5 -112.5t-174.5 -41.5z" /> + <glyph glyph-name="Uogonek" unicode="Ų" horiz-adv-x="1372" +d="M988 1413h224v-862q0 -202 -75.5 -341t-229.5 -195q-157 -83 -157 -192q0 -94 78 -94q66 0 108 59l114 -78q-81 -120 -215 -120q-95 0 -157 57t-62 148q0 104 87 185h-17q-136 0 -238 41t-164.5 117t-93 177t-30.5 226v872h225v-839q0 -188 66.5 -283t234.5 -95t235 95.5 +t67 282.5v839z" /> + <glyph glyph-name="uogonek" unicode="ų" horiz-adv-x="1151" +d="M971 -253l114 -78q-81 -120 -215 -120q-95 0 -157 57t-62 148q0 45 17 86t40 68t50.5 48.5t45 31t26.5 12.5h-48v133q-48 -71 -126.5 -112.5t-174.5 -41.5q-181 0 -269.5 127.5t-88.5 349.5v543h217v-552q0 -63 8 -110t28.5 -86.5t59 -60t94.5 -20.5q51 0 94.5 18.5 +t79.5 57t57 108t21 163.5v482h217v-999q-15 -5 -41.5 -18.5t-69.5 -40.5t-73 -69.5t-30 -89.5q0 -94 78 -94q66 0 108 59z" /> + <glyph glyph-name="Wcircumflex" unicode="Ŵ" horiz-adv-x="1994" +d="M677 1503l319 353l321 -353h-180l-141 158l-139 -158h-180zM456 0l-416 1413h232l312 -1096l325 1014h175l326 -1014l311 1096h233l-416 -1413h-223l-317 975l-319 -975h-223z" /> + <glyph glyph-name="wcircumflex" unicode="ŵ" horiz-adv-x="1452" +d="M407 1098l319 353l321 -353h-180l-141 158l-139 -158h-180zM321 -3l-298 1002h228l181 -681l201 681h186l201 -679l182 679h229l-301 -999h-196l-207 704l-210 -707h-196z" /> + <glyph glyph-name="Ycircumflex" unicode="Ŷ" horiz-adv-x="1318" +d="M336 1511l319 353l321 -353h-180l-141 158l-139 -158h-180zM545 0v551l-530 862h269l373 -643l376 643h270l-528 -862v-551h-230z" /> + <glyph glyph-name="ycircumflex" unicode="ŷ" horiz-adv-x="1014" +d="M185 1098l319 353l321 -353h-180l-141 158l-139 -158h-180zM216 -430l180 450l-389 979h236l264 -732l265 732h236l-561 -1429h-231z" /> + <glyph glyph-name="Ydieresis" unicode="Ÿ" horiz-adv-x="1318" +d="M384 1611v215h194v-215h-194zM733 1611v215h194v-215h-194zM545 0v551l-530 862h269l373 -643l376 643h270l-528 -862v-551h-230z" /> + <glyph glyph-name="Zacute" unicode="Ź" horiz-adv-x="1272" +d="M519 1537l223 289h239l-298 -289h-164zM68 0v160l822 1050h-777v203h1078v-167l-818 -1043h818v-203h-1123z" /> + <glyph glyph-name="zacute" unicode="ź" horiz-adv-x="980" +d="M832 1413l-298 -289h-164l223 289h239zM908 999v-158l-560 -660h560v-181h-851v146l580 674h-551v179h822z" /> + <glyph glyph-name="Zdotaccent" unicode="Ż" horiz-adv-x="1272" +d="M514 1611v215h230v-215h-230zM68 0v160l822 1050h-777v203h1078v-167l-818 -1043h818v-203h-1123z" /> + <glyph glyph-name="zdotaccent" unicode="ż" horiz-adv-x="980" +d="M595 1413v-215h-230v215h230zM908 999v-158l-560 -660h560v-181h-851v146l580 674h-551v179h822z" /> + <glyph glyph-name="Zcaron" unicode="Ž" horiz-adv-x="1272" +d="M629 1493l-319 332h180l139 -150l141 150h180zM68 0v160l822 1050h-777v203h1078v-167l-818 -1043h818v-203h-1123z" /> + <glyph glyph-name="zcaron" unicode="ž" horiz-adv-x="980" +d="M801 1412l-321 -332l-319 332h180l139 -150l141 150h180zM908 999v-158l-560 -660h560v-181h-851v146l580 674h-551v179h822z" /> + <glyph glyph-name="florin" unicode="ƒ" horiz-adv-x="1034" +d="M79 -457v183q187 0 262.5 64t75.5 229v800h-178v180h178v137q0 135 84.5 223.5t206.5 88.5q118 0 232 -96l-119 -140q-34 30 -58.5 42t-54.5 12q-45 0 -76.5 -32.5t-31.5 -97.5v-137h305v-180h-305v-800q0 -231 -134.5 -353.5t-386.5 -122.5z" /> + <glyph glyph-name="uni01C3" unicode="ǃ" horiz-adv-x="610" +d="M224 413l-28 1021h219l-29 -1021h-162zM183 0v242h244v-242h-244z" /> + <glyph glyph-name="uni01C4" unicode="DŽ" horiz-adv-x="2660" +d="M2017 1493l-319 332h180l139 -150l141 150h180zM191 0v1413h395q354 0 541 -185t187 -532q0 -332 -189.5 -514t-540.5 -182h-393zM1456 0v160l822 1050h-777v203h1078v-167l-818 -1043h818v-203h-1123zM416 206h143q531 0 531 501q0 260 -121.5 380.5t-386.5 120.5h-166 +v-1002z" /> + <glyph glyph-name="uni01C5" unicode="Dž" horiz-adv-x="2392" +d="M586 1413q354 0 541 -185t187 -532q0 -332 -189.5 -514t-540.5 -182h-393v1413h395zM2213 1412l-321 -332l-319 332h180l139 -150l141 150h180zM559 206q531 0 531 501q0 260 -121.5 380.5t-386.5 120.5h-166v-1002h143zM2320 999v-158l-560 -660h560v-181h-851v146 +l580 674h-551v179h822z" /> + <glyph glyph-name="uni01C6" unicode="dž" horiz-adv-x="2138" +d="M786 888v525h218v-1413h-202l-9 119q-102 -139 -297 -139q-132 0 -229.5 72t-145 188.5t-47.5 259.5q0 142 47.5 258.5t144.5 189t227 72.5q90 0 166.5 -33.5t126.5 -98.5zM1959 1412l-321 -332l-319 332h180l139 -150l141 150h180zM2066 999v-158l-560 -660h560v-181 +h-851v146l580 674h-551v179h822zM549 171q128 0 191.5 92t63.5 237q0 144 -64 236t-191 92t-192 -93t-65 -235q0 -144 65 -236.5t192 -92.5z" /> + <glyph glyph-name="uni01C7" unicode="LJ" horiz-adv-x="2225" +d="M191 0v1413h225v-1203h604v-210h-829zM1597 -20q-102 0 -187 35.5t-142.5 96.5t-91.5 141.5t-40 172.5l220 27q8 -117 67.5 -192.5t173.5 -75.5q72 0 120.5 21.5t73.5 65.5t35 97.5t10 129.5v711h-533v203h757v-906q0 -118 -25.5 -211.5t-79.5 -165.5t-144.5 -111 +t-213.5 -39z" /> + <glyph glyph-name="uni01C8" unicode="Lj" horiz-adv-x="1591" +d="M191 0v1413h225v-1203h604v-210h-829zM1214 1200v213h231v-213h-231zM1158 -438q-85 0 -167 32l52 180q53 -21 97 -21q81 0 81 107v1139h217v-1119q0 -141 -70.5 -229.5t-209.5 -88.5z" /> + <glyph glyph-name="uni01C9" unicode="lj" horiz-adv-x="1082" +d="M342 -20q-97 0 -146 52t-49 168v1213h215v-1178q0 -25 17.5 -44.5t52.5 -19.5q33 0 77 7v-178q-90 -20 -167 -20zM705 1200v213h231v-213h-231zM649 -438q-85 0 -167 32l52 180q53 -21 97 -21q81 0 81 107v1139h217v-1119q0 -141 -70.5 -229.5t-209.5 -88.5z" /> + <glyph glyph-name="uni01CA" unicode="NJ" horiz-adv-x="2576" +d="M191 0v1413h245l599 -1069v1069h216v-1413h-247l-595 1071v-1071h-218zM1948 -20q-102 0 -187 35.5t-142.5 96.5t-91.5 141.5t-40 172.5l220 27q8 -117 67.5 -192.5t173.5 -75.5q72 0 120.5 21.5t73.5 65.5t35 97.5t10 129.5v711h-533v203h757v-906q0 -118 -25.5 -211.5 +t-79.5 -165.5t-144.5 -111t-213.5 -39z" /> + <glyph glyph-name="uni01CB" unicode="Nj" horiz-adv-x="1969" +d="M191 0v1413h245l599 -1069v1069h216v-1413h-247l-595 1071v-1071h-218zM1592 1200v213h231v-213h-231zM1536 -438q-85 0 -167 32l52 180q53 -21 97 -21q81 0 81 107v1139h217v-1119q0 -141 -70.5 -229.5t-209.5 -88.5z" /> + <glyph glyph-name="uni01CC" unicode="nj" horiz-adv-x="1674" +d="M1297 1200v213h231v-213h-231zM153 0v999h212v-134q55 76 135.5 115t168.5 39q74 0 134 -23t100 -62.5t67.5 -93t39.5 -113t12 -125.5v-602h-212v577q0 107 -51 177t-151 70q-112 0 -177.5 -71.5t-65.5 -214.5v-538h-212zM1241 -438q-85 0 -167 32l52 180q53 -21 97 -21 +q81 0 81 107v1139h217v-1119q0 -141 -70.5 -229.5t-209.5 -88.5z" /> + <glyph glyph-name="uni01CD" unicode="Ǎ" horiz-adv-x="1332" +d="M664 1493l-319 332h180l139 -150l141 150h180zM28 0l555 1413h169l552 -1413h-242l-109 307h-571l-110 -307h-244zM458 502h420l-210 582z" /> + <glyph glyph-name="uni01CE" unicode="ǎ" horiz-adv-x="1050" +d="M501 1080l-319 332h180l139 -150l141 150h180zM413 -20q-154 0 -252.5 85t-98.5 233q0 290 411 290h250q0 114 -53.5 179.5t-158.5 65.5q-85 0 -147.5 -41t-100.5 -103l-163 119q156 212 407 212q197 0 308 -113t111 -299v-608h-177l-13 159q-110 -179 -323 -179z +M442 161q116 0 197.5 82.5t83.5 188.5h-236q-101 0 -153 -37.5t-52 -103.5q0 -61 43.5 -95.5t116.5 -34.5z" /> + <glyph glyph-name="uni01CF" unicode="Ǐ" horiz-adv-x="607" +d="M301 1493l-319 332h180l139 -150l141 150h180zM191 0v1413h225v-1413h-225z" /> + <glyph glyph-name="uni01D0" unicode="ǐ" horiz-adv-x="511" +d="M253 1080l-319 332h180l139 -150l141 150h180zM153 0v999h206v-999h-206z" /> + <glyph glyph-name="uni01D1" unicode="Ǒ" horiz-adv-x="1524" +d="M759 1493l-319 332h180l139 -150l141 150h180zM761 -20q-133 0 -243.5 38.5t-188 105.5t-131 159.5t-78.5 199t-25 224.5t25 224.5t78.5 198.5t131 159.5t188 106t243.5 38.5q134 0 245 -38.5t188 -106t131 -159.5t79 -198.5t25 -224.5t-25 -224.5t-79 -199 +t-131.5 -159.5t-188 -105.5t-244.5 -38.5zM761 180q114 0 200.5 42.5t136.5 117.5t74.5 167t24.5 200q0 86 -14.5 161.5t-48 143t-83 116t-124 77t-166.5 28.5t-165.5 -28.5t-123 -77t-82.5 -116t-47.5 -143t-14.5 -161.5q0 -108 24 -200t74 -167t135.5 -117.5t199.5 -42.5z +" /> + <glyph glyph-name="uni01D2" unicode="ǒ" horiz-adv-x="1125" +d="M560 1080l-319 332h180l139 -150l141 150h180zM561 -20q-110 0 -204 42t-158.5 113t-100.5 166t-36 201q0 142 61.5 259.5t176.5 188t261 70.5q147 0 262.5 -70.5t177 -188t61.5 -259.5t-61.5 -260.5t-177.5 -190t-262 -71.5zM562 163q94 0 158.5 49.5t92 123.5t27.5 166 +q0 143 -70 238.5t-208 95.5t-208 -95.5t-70 -238.5q0 -92 27.5 -166.5t92 -123.5t158.5 -49z" /> + <glyph glyph-name="uni01D3" unicode="Ǔ" horiz-adv-x="1372" +d="M682 1493l-319 332h180l139 -150l141 150h180zM686 -20q-136 0 -238 41t-164.5 117t-93 177t-30.5 226v872h225v-839q0 -188 66.5 -283t234.5 -95t235 95.5t67 282.5v839h224v-862q0 -129 -30.5 -232t-93 -179.5t-164.5 -118t-238 -41.5z" /> + <glyph glyph-name="uni01D4" unicode="ǔ" horiz-adv-x="1151" +d="M568 1080l-319 332h180l139 -150l141 150h180zM481 -21q-181 0 -269.5 127.5t-88.5 349.5v543h217v-552q0 -63 8 -110t28.5 -86.5t59 -60t94.5 -20.5q51 0 94.5 18.5t79.5 57t57 108t21 163.5v482h217v-999h-217v133q-48 -71 -126.5 -112.5t-174.5 -41.5z" /> + <glyph glyph-name="uni01D5" unicode="Ǖ" horiz-adv-x="1372" +d="M407 1985v138h553v-138h-553zM411 1611v215h194v-215h-194zM760 1611v215h194v-215h-194zM686 -20q-136 0 -238 41t-164.5 117t-93 177t-30.5 226v872h225v-839q0 -188 66.5 -283t234.5 -95t235 95.5t67 282.5v839h224v-862q0 -129 -30.5 -232t-93 -179.5t-164.5 -118 +t-238 -41.5z" /> + <glyph glyph-name="uni01D6" unicode="ǖ" horiz-adv-x="1151" +d="M293 1572v138h553v-138h-553zM297 1198v215h194v-215h-194zM646 1198v215h194v-215h-194zM481 -21q-181 0 -269.5 127.5t-88.5 349.5v543h217v-552q0 -63 8 -110t28.5 -86.5t59 -60t94.5 -20.5q51 0 94.5 18.5t79.5 57t57 108t21 163.5v482h217v-999h-217v133 +q-48 -71 -126.5 -112.5t-174.5 -41.5z" /> + <glyph glyph-name="uni01D7" unicode="Ǘ" horiz-adv-x="1372" +d="M572 1951l223 289h239l-298 -289h-164zM411 1611v215h194v-215h-194zM760 1611v215h194v-215h-194zM686 -20q-136 0 -238 41t-164.5 117t-93 177t-30.5 226v872h225v-839q0 -188 66.5 -283t234.5 -95t235 95.5t67 282.5v839h224v-862q0 -129 -30.5 -232t-93 -179.5 +t-164.5 -118t-238 -41.5z" /> + <glyph glyph-name="uni01D8" unicode="ǘ" horiz-adv-x="1151" +d="M458 1538l223 289h239l-298 -289h-164zM297 1198v215h194v-215h-194zM646 1198v215h194v-215h-194zM481 -21q-181 0 -269.5 127.5t-88.5 349.5v543h217v-552q0 -63 8 -110t28.5 -86.5t59 -60t94.5 -20.5q51 0 94.5 18.5t79.5 57t57 108t21 163.5v482h217v-999h-217v133 +q-48 -71 -126.5 -112.5t-174.5 -41.5z" /> + <glyph glyph-name="uni01D9" unicode="Ǚ" horiz-adv-x="1372" +d="M682 1907l-319 332h180l139 -150l141 150h180zM411 1611v215h194v-215h-194zM760 1611v215h194v-215h-194zM686 -20q-136 0 -238 41t-164.5 117t-93 177t-30.5 226v872h225v-839q0 -188 66.5 -283t234.5 -95t235 95.5t67 282.5v839h224v-862q0 -129 -30.5 -232 +t-93 -179.5t-164.5 -118t-238 -41.5z" /> + <glyph glyph-name="uni01DA" unicode="ǚ" horiz-adv-x="1151" +d="M568 1494l-319 332h180l139 -150l141 150h180zM297 1198v215h194v-215h-194zM646 1198v215h194v-215h-194zM481 -21q-181 0 -269.5 127.5t-88.5 349.5v543h217v-552q0 -63 8 -110t28.5 -86.5t59 -60t94.5 -20.5q51 0 94.5 18.5t79.5 57t57 108t21 163.5v482h217v-999 +h-217v133q-48 -71 -126.5 -112.5t-174.5 -41.5z" /> + <glyph glyph-name="uni01DB" unicode="Ǜ" horiz-adv-x="1372" +d="M616 1937l-292 303h239l223 -303h-170zM411 1611v215h194v-215h-194zM760 1611v215h194v-215h-194zM686 -20q-136 0 -238 41t-164.5 117t-93 177t-30.5 226v872h225v-839q0 -188 66.5 -283t234.5 -95t235 95.5t67 282.5v839h224v-862q0 -129 -30.5 -232t-93 -179.5 +t-164.5 -118t-238 -41.5z" /> + <glyph glyph-name="uni01DC" unicode="ǜ" horiz-adv-x="1151" +d="M502 1524l-292 303h239l223 -303h-170zM297 1198v215h194v-215h-194zM646 1198v215h194v-215h-194zM481 -21q-181 0 -269.5 127.5t-88.5 349.5v543h217v-552q0 -63 8 -110t28.5 -86.5t59 -60t94.5 -20.5q51 0 94.5 18.5t79.5 57t57 108t21 163.5v482h217v-999h-217v133 +q-48 -71 -126.5 -112.5t-174.5 -41.5z" /> + <glyph glyph-name="uni01DD" unicode="ǝ" horiz-adv-x="1048" +d="M518 -12q-103 0 -183 29t-130.5 77.5t-83.5 117t-46 141t-13 155.5q0 10 0.5 19.5t2 17t2.5 13t1 8.5l1 4h689q-9 113 -75.5 179t-180.5 66q-88 0 -147.5 -21t-112.5 -76l-147 127q84 89 181.5 128t222.5 39q118 0 212.5 -41t153 -111.5t89.5 -161t31 -192.5t-29 -193.5 +t-85 -164.5t-147.5 -116.5t-205.5 -43.5zM518 170q107 0 167 66.5t73 174.5h-487q9 -115 70 -178t177 -63z" /> + <glyph glyph-name="uni01E3" unicode="ǣ" horiz-adv-x="1682" +d="M563 1162v135h551v-135h-551zM405 -20q-142 0 -242.5 85t-100.5 223q0 80 29 139.5t83 94t122.5 51t153.5 16.5h284q0 123 -54.5 185t-176.5 62q-77 0 -141 -38t-103 -95l-154 109q75 103 173.5 153.5t232.5 50.5q115 0 200 -45t133 -127q116 168 327 168q98 0 175.5 -29 +t126.5 -77.5t81.5 -116.5t45.5 -141t13 -156q0 -35 -7 -63h-690q11 -113 77.5 -178.5t180.5 -65.5q86 0 146 21t113 76l148 -127q-84 -89 -181.5 -128t-223.5 -39q-255 0 -361 198q-142 -206 -410 -206zM918 589h487q-10 117 -71.5 178.5t-175.5 61.5q-108 0 -168.5 -66.5 +t-71.5 -173.5zM444 158q114 0 197.5 82t92.5 189h-270q-87 0 -141 -38.5t-54 -101.5q0 -61 50 -96t125 -35z" /> + <glyph glyph-name="uni01EB" unicode="ǫ" horiz-adv-x="1125" +d="M1062 502q0 -178 -96.5 -316.5t-259.5 -185.5h1q-15 -5 -41.5 -18.5t-69.5 -40.5t-73 -69.5t-30 -89.5q0 -94 78 -94q66 0 108 59l114 -78q-81 -120 -215 -120q-95 0 -157 57t-62 148q0 80 45 138t100 91q-197 21 -319.5 168.5t-122.5 350.5q0 142 61.5 259.5t176.5 188 +t261 70.5q147 0 262.5 -70.5t177 -188t61.5 -259.5zM562 163q94 0 158.5 49.5t92 123.5t27.5 166q0 143 -70 238.5t-208 95.5t-208 -95.5t-70 -238.5q0 -92 27.5 -166.5t92 -123.5t158.5 -49z" /> + <glyph glyph-name="uni01F1" unicode="DZ" horiz-adv-x="2660" +d="M191 0v1413h395q354 0 541 -185t187 -532q0 -332 -189.5 -514t-540.5 -182h-393zM1456 0v160l822 1050h-777v203h1078v-167l-818 -1043h818v-203h-1123zM416 206h143q531 0 531 501q0 260 -121.5 380.5t-386.5 120.5h-166v-1002z" /> + <glyph glyph-name="uni01F2" unicode="Dz" horiz-adv-x="2392" +d="M586 1413q354 0 541 -185t187 -532q0 -332 -189.5 -514t-540.5 -182h-393v1413h395zM559 206q531 0 531 501q0 260 -121.5 380.5t-386.5 120.5h-166v-1002h143zM2320 999v-158l-560 -660h560v-181h-851v146l580 674h-551v179h822z" /> + <glyph glyph-name="uni01F3" unicode="dz" horiz-adv-x="2138" +d="M786 888v525h218v-1413h-202l-9 119q-102 -139 -297 -139q-132 0 -229.5 72t-145 188.5t-47.5 259.5q0 142 47.5 258.5t144.5 189t227 72.5q90 0 166.5 -33.5t126.5 -98.5zM2066 999v-158l-560 -660h560v-181h-851v146l580 674h-551v179h822zM549 171q128 0 191.5 92 +t63.5 237q0 144 -64 236t-191 92t-192 -93t-65 -235q0 -144 65 -236.5t192 -92.5z" /> + <glyph glyph-name="Scommaaccent" unicode="Ș" horiz-adv-x="1128" +d="M581 -16q-93 0 -179 25.5t-158 74.5t-121.5 127t-65.5 177l219 57q14 -129 99 -195.5t209 -66.5q117 0 183.5 55t66.5 148q0 50 -23.5 90.5t-63 69t-90.5 53t-108 47.5t-113.5 47.5t-107.5 57.5t-90.5 73t-63 99t-23.5 131q0 174 122 277t300 103q134 0 242.5 -59.5 +t176.5 -180.5l-183 -113q-38 75 -102 115t-140 40q-81 0 -137 -47t-56 -122q0 -45 23.5 -81.5t63 -62.5t90.5 -49.5t108 -46t113.5 -47.5t107.5 -59.5t90.5 -76.5t63 -103.5t23.5 -135.5q0 -127 -64 -224t-171.5 -147t-240.5 -50zM323 -455l132 347h241l-242 -347h-131z" /> + <glyph glyph-name="scommaaccent" unicode="ș" horiz-adv-x="897" +d="M446 -20q-148 0 -257.5 77.5t-147.5 192.5l173 79q61 -172 224 -172q81 0 127 38.5t46 94.5q0 36 -22 62t-58 40.5t-82 29.5t-93.5 27t-93.5 34t-82 50t-58 76t-22 110q0 144 102.5 222.5t251.5 78.5q122 0 215 -56t148 -156l-164 -90q-72 132 -207 132q-65 0 -104 -29 +t-39 -73q0 -36 28.5 -61t74.5 -41t101 -31t110 -38t101 -54.5t74.5 -87.5t28.5 -130q0 -81 -32.5 -145t-86.5 -102t-119.5 -58t-136.5 -20zM245 -455l132 347h241l-242 -347h-131z" /> + <glyph glyph-name="uni021A" unicode="Ț" horiz-adv-x="1197" +d="M486 0v1216h-453v197h1131v-197h-453v-1216h-225zM362 -455l132 347h241l-242 -347h-131z" /> + <glyph glyph-name="uni021B" unicode="ț" horiz-adv-x="729" +d="M483 -20q-141 0 -216 78t-75 215v547h-161v179h164v241l209 163v-404h253v-179h-253v-518q0 -136 118 -136q59 0 127 33v-192q-69 -27 -166 -27zM241 -455l132 347h241l-242 -347h-131z" /> + <glyph glyph-name="uni0237" unicode="ȷ" horiz-adv-x="518" +d="M80 -438q-79 0 -160 32l47 173q53 -15 109 -15q46 0 63 27.5t17 80.5v1139h208v-1127q0 -139 -71.5 -224.5t-212.5 -85.5z" /> + <glyph glyph-name="uni0250" unicode="ɐ" horiz-adv-x="1083" +d="M569 -20q-195 0 -305.5 111t-110.5 296v608h169l21 -154q64 94 143.5 134.5t189.5 40.5q144 0 247 -87t103 -226q0 -81 -30 -140t-85.5 -92t-124.5 -48.5t-155 -15.5h-276q0 -240 223 -240q75 0 139 41t99 99l162 -120q-76 -104 -174.5 -155.5t-234.5 -51.5zM355 566h261 +q85 0 137.5 39t52.5 98q0 60 -48.5 94t-124.5 34q-113 0 -194.5 -79.5t-83.5 -185.5z" /> + <glyph glyph-name="uni0254" unicode="ɔ" horiz-adv-x="990" +d="M461 -20q-143 0 -253 75t-166 206l203 81q21 -77 78.5 -121t137.5 -44q52 0 94.5 18t70.5 48.5t47 72.5t27.5 87t8.5 95q0 63 -13.5 118.5t-41.5 101.5t-77.5 73t-115.5 27q-79 0 -137 -44t-79 -121l-192 76q47 136 154 211.5t252 75.5q92 0 169.5 -28.5t132 -77 +t92.5 -114.5t56 -141.5t18 -156.5q0 -102 -29 -193.5t-85 -164.5t-147 -116.5t-205 -43.5z" /> + <glyph glyph-name="uni0258" unicode="ɘ" horiz-adv-x="1048" +d="M499 -12q-125 0 -223 39t-181 128l147 127q53 -55 112.5 -76t147.5 -21q114 0 180.5 65.5t75.5 178.5h-689q-7 30 -7 63q0 83 13 155.5t46 141t83.5 117t130.5 77.5t183 29q114 0 205.5 -43.5t147.5 -116.5t85 -164.5t29 -193.5q0 -103 -31 -193t-89.5 -160.5 +t-153 -111.5t-212.5 -41zM271 589h487q-13 108 -73 174t-167 66q-116 0 -177 -62.5t-70 -177.5z" /> + <glyph glyph-name="uni0259" unicode="ə" horiz-adv-x="1048" +d="M518 -12q-103 0 -183 29t-130.5 77.5t-83.5 117t-46 141t-13 155.5q0 10 0.5 19.5t2 17t2.5 13t1 8.5l1 4h689q-9 113 -75.5 179t-180.5 66q-88 0 -147.5 -21t-112.5 -76l-147 127q84 89 181.5 128t222.5 39q118 0 212.5 -41t153 -111.5t89.5 -161t31 -192.5t-29 -193.5 +t-85 -164.5t-147.5 -116.5t-205.5 -43.5zM518 170q107 0 167 66.5t73 174.5h-487q9 -115 70 -178t177 -63z" /> + <glyph glyph-name="uni0261" unicode="ɡ" horiz-adv-x="1143" +d="M990 0q0 -204 -119.5 -320.5t-334.5 -116.5q-284 0 -428 210l164 119q37 -64 106 -103t161 -39q114 0 175 64t61 186v127q-98 -127 -287 -127q-102 0 -184 41t-134 111.5t-80 162t-28 194.5t28 195t80 162.5t133 112t180 41.5q88 0 165 -33.5t127 -98.5v111h216zM538 196 +q127 0 191 87.5t64 226.5q0 89 -26 158.5t-84.5 113.5t-144.5 44q-127 0 -192.5 -89.5t-65.5 -226.5q0 -138 65 -226t193 -88z" /> + <glyph glyph-name="circumflex" unicode="ˆ" horiz-adv-x="684" +d="M21 1098l319 353l321 -353h-180l-141 158l-139 -158h-180z" /> + <glyph glyph-name="caron" unicode="ˇ" horiz-adv-x="688" +d="M344 1080l-319 332h180l139 -150l141 150h180z" /> + <glyph glyph-name="uni02D0" unicode="ː" horiz-adv-x="552" +d="M282 558l-245 441l472 12zM43 -12l227 453l245 -441z" /> + <glyph glyph-name="uni02D1" unicode="ˑ" horiz-adv-x="559" +d="M286 228l-246 443l473 11z" /> + <glyph glyph-name="breve" unicode="˘" horiz-adv-x="817" +d="M408 1143q-154 0 -233.5 69.5t-79.5 200.5h161q0 -65 42.5 -100.5t109.5 -35.5t109 36t42 100h161q0 -134 -80.5 -202t-231.5 -68z" /> + <glyph glyph-name="dotaccent" unicode="˙" horiz-adv-x="527" +d="M156 1198v215h230v-215h-230z" /> + <glyph glyph-name="ring" unicode="˚" horiz-adv-x="633" +d="M315 1072q-93 0 -157 65.5t-64 157.5t64.5 156.5t156.5 64.5q91 0 157 -64.5t66 -156.5q0 -93 -65 -158t-158 -65zM315 1194q43 0 71.5 29t28.5 73q0 43 -27 70t-73 27q-44 0 -71 -27t-27 -70q0 -44 28 -73t70 -29z" /> + <glyph glyph-name="ogonek" unicode="˛" horiz-adv-x="579" +d="M312 -451q-95 0 -157 57t-62 148q0 45 17 86t40 68t50.5 48.5t45 31t26.5 12.5h169q-15 -5 -41.5 -18.5t-69.5 -40.5t-73 -69.5t-30 -89.5q0 -94 78 -94q66 0 108 59l114 -78q-81 -120 -215 -120z" /> + <glyph glyph-name="tilde" unicode="˜" horiz-adv-x="868" +d="M596 1134q-42 0 -77 15t-58 37t-43 43.5t-40 36.5t-41 15q-32 0 -49.5 -36.5t-17.5 -100.5h-126q0 130 52.5 202.5t146.5 72.5q48 0 89.5 -23t64.5 -50.5t50 -50.5t51 -23q30 0 47 37t17 104h133q0 -134 -52.5 -206.5t-146.5 -72.5z" /> + <glyph glyph-name="hungarumlaut" unicode="˝" horiz-adv-x="877" +d="M45 1095l223 318h209l-268 -318h-164zM388 1095l222 318h239l-297 -318h-164z" /> + <glyph glyph-name="uni02F5" unicode="˵" horiz-adv-x="1122" +d="M624 999l221 -314h-295l-287 314h361z" /> + <glyph glyph-name="uni02F6" unicode="˶" horiz-adv-x="1122" +d="M859 999l-287 -314h-294l221 314h360z" /> + <glyph glyph-name="gravecomb" unicode="̀" +d="M-214 1110l-292 303h239l223 -303h-170z" /> + <glyph glyph-name="acutecomb" unicode="́" +d="M-492 1124l223 289h239l-298 -289h-164z" /> + <glyph glyph-name="uni0302" unicode="̂" +d="M-662 1098l319 353l321 -353h-180l-141 158l-139 -158h-180z" /> + <glyph glyph-name="tildecomb" unicode="̃" +d="M-308 1134q-42 0 -77 15t-58 37t-43 43.5t-40 36.5t-41 15q-32 0 -49.5 -36.5t-17.5 -100.5h-126q0 130 52.5 202.5t146.5 72.5q48 0 89.5 -23t64.5 -50.5t50 -50.5t51 -23q30 0 47 37t17 104h133q0 -134 -52.5 -206.5t-146.5 -72.5z" /> + <glyph glyph-name="uni0304" unicode="̄" +d="M-699 1158v138h553v-138h-553z" /> + <glyph glyph-name="uni0306" unicode="̆" +d="M-408 1143q-154 0 -233.5 69.5t-79.5 200.5h161q0 -65 42.5 -100.5t109.5 -35.5t109 36t42 100h161q0 -134 -80.5 -202t-231.5 -68z" /> + <glyph glyph-name="uni0307" unicode="̇" +d="M-379 1198v215h230v-215h-230z" /> + <glyph glyph-name="uni0308" unicode="̈" +d="M-691 1198v215h194v-215h-194zM-342 1198v215h194v-215h-194z" /> + <glyph glyph-name="uni030A" unicode="̊" +d="M-317 1072q-93 0 -157 65.5t-64 157.5t64.5 156.5t156.5 64.5q91 0 157 -64.5t66 -156.5q0 -93 -65 -158t-158 -65zM-317 1194q43 0 71.5 29t28.5 73q0 43 -27 70t-73 27q-44 0 -71 -27t-27 -70q0 -44 28 -73t70 -29z" /> + <glyph glyph-name="uni030B" unicode="̋" +d="M-832 1095l223 318h209l-268 -318h-164zM-489 1095l222 318h239l-297 -318h-164z" /> + <glyph glyph-name="uni030C" unicode="̌" +d="M-344 1080l-319 332h180l139 -150l141 150h180z" /> + <glyph glyph-name="uni030F" unicode="̏" +d="M-578 1095l-292 318h244l223 -318h-175zM-222 1095l-291 318h245l223 -318h-177z" /> + <glyph glyph-name="uni0312" unicode="̒" +d="M-86 1431l-132 -310h-241l242 310h131z" /> + <glyph glyph-name="uni031B" unicode="̛" +d="M-412 999l132 414h240l-241 -414h-131z" /> + <glyph glyph-name="uni0326" unicode="̦" +d="M-413 -455l132 347h241l-242 -347h-131z" /> + <glyph glyph-name="uni0327" unicode="̧" +d="M-307 -517q-63 0 -116 36t-76 92l123 55q8 -23 28.5 -39t46.5 -16q38 0 61.5 24t23.5 60q0 49 -47 82t-126 33h-61l115 188h136l-74 -103q91 -10 140 -61.5t49 -130.5q0 -92 -63 -156t-160 -64z" /> + <glyph glyph-name="uni0328" unicode="̨" +d="M-267 -451q-95 0 -157 57t-62 148q0 45 17 86t40 68t50.5 48.5t45 31t26.5 12.5h169q-15 -5 -41.5 -18.5t-69.5 -40.5t-73 -69.5t-30 -89.5q0 -94 78 -94q66 0 108 59l114 -78q-81 -120 -215 -120z" /> + <glyph glyph-name="pi" unicode="π" horiz-adv-x="999" +d="M831 -20q-103 0 -164 69.5t-61 179.5v583h-244v-812h-188v812h-82v187h784v-187h-82v-559q0 -110 54 -110q24 0 45 15l57 -145q-52 -33 -119 -33z" /> + <glyph glyph-name="uni0400" unicode="Ѐ" horiz-adv-x="1243" +d="M567 1523l-292 303h239l223 -303h-170zM191 0v1413h933v-203h-708v-402h644v-202h-644v-396h708v-210h-933z" /> + <glyph glyph-name="uni0401" unicode="Ё" horiz-adv-x="1243" +d="M362 1611v215h194v-215h-194zM711 1611v215h194v-215h-194zM191 0v1413h933v-203h-708v-402h644v-202h-644v-396h708v-210h-933z" /> + <glyph glyph-name="uni0402" unicode="Ђ" horiz-adv-x="1616" +d="M1108 -19q-81 0 -171 36.5t-147 90.5l115 154q69 -72 173 -72q109 0 172.5 63t63.5 173q0 184 -67 271.5t-235 87.5q-103 0 -179.5 -37t-121.5 -90v-658h-225v1215h-453v197h1131v-197h-453v-302q137 88 301 88q268 0 397 -146.5t129 -415.5q0 -225 -116 -341.5 +t-314 -116.5z" /> + <glyph glyph-name="uni0403" unicode="Ѓ" horiz-adv-x="1066" +d="M460 1537l222 288h232l-294 -288h-160zM191 0v1412h842v-203h-618v-1209h-224z" /> + <glyph glyph-name="uni0404" unicode="Є" horiz-adv-x="1428" +d="M764 -20q-165 0 -295.5 58.5t-210.5 159.5t-121.5 230.5t-41.5 278.5q0 119 25.5 226t79 199t131 159.5t188 106t243.5 38.5q207 0 364 -102t241 -295l-209 -83q-40 138 -144.5 203t-253.5 65q-101 0 -180.5 -32t-131.5 -90t-83 -132t-41 -163h587v-197h-586 +q23 -191 132.5 -305t306.5 -114q145 0 243 64t154 208l208 -85q-83 -193 -240 -295.5t-365 -102.5z" /> + <glyph glyph-name="uni0405" unicode="Ѕ" horiz-adv-x="1128" +d="M581 -16q-93 0 -179 25.5t-158 74.5t-121.5 127t-65.5 177l219 57q14 -129 99 -195.5t209 -66.5q117 0 183.5 55t66.5 148q0 50 -23.5 90.5t-63 69t-90.5 53t-108 47.5t-113.5 47.5t-107.5 57.5t-90.5 73t-63 99t-23.5 131q0 174 122 277t300 103q134 0 242.5 -59.5 +t176.5 -180.5l-183 -113q-38 75 -102 115t-140 40q-81 0 -137 -47t-56 -122q0 -45 23.5 -81.5t63 -62.5t90.5 -49.5t108 -46t113.5 -47.5t107.5 -59.5t90.5 -76.5t63 -103.5t23.5 -135.5q0 -127 -64 -224t-171.5 -147t-240.5 -50z" /> + <glyph glyph-name="uni0406" unicode="І" horiz-adv-x="607" +d="M191 0v1412h225v-1412h-225z" /> + <glyph glyph-name="uni0407" unicode="Ї" horiz-adv-x="607" +d="M34 1576v186h189v-186h-189zM381 1576v186h189v-186h-189zM191 0v1412h224v-1412h-224z" /> + <glyph glyph-name="uni0408" unicode="Ј" horiz-adv-x="1133" +d="M505 -20q-135 0 -238.5 61.5t-158.5 161t-64 223.5l220 27q8 -117 67.5 -192.5t173.5 -75.5q72 0 120 21.5t73.5 65.5t35.5 97.5t10 130.5v709h-533v203h757v-906q0 -117 -25.5 -210.5t-79 -165.5t-144.5 -111t-214 -39z" /> + <glyph glyph-name="uni0409" unicode="Љ" horiz-adv-x="1961" +d="M219 -20q-105 0 -197 55l67 174q73 -23 115 -23q35 0 59.5 72t36 188t16.5 224.5t5 218.5v523h893v-602h206q218 0 351 -106t133 -296t-134 -299t-350 -109h-428v1209h-448v-318q0 -75 -0.5 -125t-4 -131.5t-9 -138t-17 -130t-27.5 -124t-41 -104t-56.5 -85.5 +t-74.5 -52.5t-95 -20.5zM1214 207h206q131 0 197 52t66 149q0 195 -263 195h-206v-396z" /> + <glyph glyph-name="uni040A" unicode="Њ" horiz-adv-x="2034" +d="M191 0v1412h224v-604h649v604h224v-602h204q218 0 351.5 -106t133.5 -296t-134 -299t-351 -109h-428v605h-649v-605h-224zM1288 207h204q131 0 197 52t66 149q0 195 -263 195h-204v-396z" /> + <glyph glyph-name="uni040B" unicode="Ћ" horiz-adv-x="1638" +d="M486 0v1215h-453v197h1131v-197h-453v-302q130 88 301 88q136 0 238 -41.5t164.5 -119.5t93 -183t30.5 -238v-419h-224v401q0 94 -14 161.5t-47.5 119t-93.5 77.5t-147 26q-103 0 -179.5 -37t-121.5 -90v-658h-225z" /> + <glyph glyph-name="uni040C" unicode="Ќ" horiz-adv-x="1325" +d="M531 1537l222 288h233l-295 -288h-160zM191 0v1412h224v-530h155l349 530h296l-418 -584q41 0 80 -23t69 -60.5t51 -71.5t36 -68l256 -605h-276l-177 501q-13 38 -35.5 75t-64 68.5t-89.5 31.5h-232v-676h-224z" /> + <glyph glyph-name="uni040D" unicode="Ѝ" horiz-adv-x="1479" +d="M865 1523h-167l-287 302h233zM1023 1412h265v-1412h-224v1059q0 40 1 61l-609 -1120h-265v1412h224v-1037q0 -56 -1 -84z" /> + <glyph glyph-name="uni040E" unicode="Ў" horiz-adv-x="1112" +d="M546 1555q-151 0 -231 69.5t-80 200.5h157q0 -65 43.5 -101.5t110.5 -36.5q68 0 111.5 37t43.5 101h157q0 -133 -81 -201.5t-231 -68.5zM232 0l194 457l-398 955h239l278 -712l299 712h239l-615 -1412h-236z" /> + <glyph glyph-name="uni040F" unicode="Џ" horiz-adv-x="1479" +d="M628 -307v307h-437v1412h224v-1209h649v1209h224v-1412h-437v-307h-223z" /> + <glyph glyph-name="uni0410" unicode="А" horiz-adv-x="1331" +d="M28 0l554 1412h169l552 -1412h-242l-109 307h-570l-110 -307h-244zM457 502h421l-210 581z" /> + <glyph glyph-name="uni0411" unicode="Б" horiz-adv-x="1265" +d="M191 0v1412h800v-203h-576v-381h311q220 0 333.5 -114t113.5 -311q0 -124 -63 -217t-166 -139.5t-229 -46.5h-524zM415 212h304q106 0 169 56t63 158q0 90 -67 148t-171 58h-298v-420z" /> + <glyph glyph-name="uni0412" unicode="В" horiz-adv-x="1264" +d="M191 0v1413h459q68 0 131 -12t122.5 -40t103 -69.5t70 -106t26.5 -143.5q0 -98 -47.5 -173.5t-118.5 -115.5q103 -42 169 -139.5t66 -214.5q0 -78 -25 -144t-68 -112.5t-101.5 -79t-125 -48t-137.5 -15.5h-524zM415 827h252q46 0 84.5 10t71 32t50.5 62t18 95 +q0 94 -65.5 139.5t-171.5 45.5h-239v-384zM415 212h304q109 0 171 50.5t62 159.5q0 97 -66.5 153.5t-172.5 56.5h-298v-420z" /> + <glyph glyph-name="uni0413" unicode="Г" horiz-adv-x="1066" +d="M191 0v1412h842v-203h-618v-1209h-224z" /> + <glyph glyph-name="uni0414" unicode="Д" horiz-adv-x="1472" +d="M33 -290v484h141l474 1219h173l475 -1219h143v-484h-224v290h-958v-290h-224zM414 194h640l-320 870z" /> + <glyph glyph-name="uni0415" unicode="Е" horiz-adv-x="1243" +d="M191 0v1413h933v-203h-708v-402h644v-202h-644v-396h708v-210h-933z" /> + <glyph glyph-name="uni0416" unicode="Ж" horiz-adv-x="2050" +d="M39 0l256 605q15 34 36 68t51 71.5t69 60.5t80 23l-418 584h296l349 -530h155v530h224v-530h155l348 530h297l-418 -584q40 0 79 -23t69 -60.5t51 -71.5t36 -68l256 -605h-276l-176 501q-24 67 -72.5 121t-117.5 54h-231v-676h-224v676h-232q-69 0 -116.5 -53t-71.5 -122 +l-178 -501h-276z" /> + <glyph glyph-name="uni0417" unicode="З" horiz-adv-x="1114" +d="M510 -20q-149 0 -270 55.5t-183 162.5l181 119q62 -140 272 -140q122 0 204.5 64t82.5 178q0 112 -80.5 173t-206.5 61h-142l-2 193h150q96 0 158 51t62 138q0 92 -62.5 144.5t-159.5 52.5q-84 0 -146 -41.5t-71 -115.5h-221q9 165 135 262t301 97q116 0 213.5 -43.5 +t159.5 -131.5t62 -204q0 -99 -43.5 -175.5t-123.5 -116.5q104 -35 171.5 -126t67.5 -234q0 -104 -42 -187t-113.5 -133.5t-161.5 -76.5t-192 -26z" /> + <glyph glyph-name="uni0418" unicode="И" horiz-adv-x="1443" +d="M1252 0h-218v1071l-595 -1071h-247v1413h216v-1069l599 1069h245v-1413z" /> + <glyph glyph-name="uni0419" unicode="Й" horiz-adv-x="1479" +d="M757 1555q-152 0 -232 69.5t-80 200.5h157q0 -65 44 -101.5t111 -36.5q68 0 111 37t43 101h158q0 -133 -81.5 -201.5t-230.5 -68.5zM1023 1412h265v-1412h-224v1059q0 40 1 61l-609 -1120h-265v1412h224v-1037q0 -56 -1 -84z" /> + <glyph glyph-name="uni041A" unicode="К" horiz-adv-x="1325" +d="M191 0v1412h224v-530h155l349 530h296l-418 -584q41 0 80 -23t69 -60.5t51 -71.5t36 -68l256 -605h-276l-177 501q-13 38 -35.5 75t-64 68.5t-89.5 31.5h-232v-676h-224z" /> + <glyph glyph-name="uni041B" unicode="Л" horiz-adv-x="1338" +d="M28 0l553 1413h174l555 -1413h-245l-397 1064l-396 -1064h-244z" /> + <glyph glyph-name="uni041C" unicode="М" horiz-adv-x="1787" +d="M191 0v1413h316l385 -1046l387 1046h316v-1413h-216v1125l-374 -1002h-223l-373 1002v-1125h-218z" /> + <glyph glyph-name="uni041D" unicode="Н" horiz-adv-x="1480" +d="M191 0v1413h225v-605h648v605h224v-1413h-224v606h-648v-606h-225z" /> + <glyph glyph-name="uni041E" unicode="О" horiz-adv-x="1524" +d="M761 -20q-133 0 -243.5 38.5t-188 105.5t-131 159.5t-78.5 199t-25 224.5t25 224.5t78.5 198.5t131 159.5t188 106t243.5 38.5q134 0 245 -38.5t188 -106t131 -159.5t79 -198.5t25 -224.5t-25 -224.5t-79 -199t-131.5 -159.5t-188 -105.5t-244.5 -38.5zM761 180 +q114 0 200.5 42.5t136.5 117.5t74.5 167t24.5 200q0 86 -14.5 161.5t-48 143t-83 116t-124 77t-166.5 28.5t-165.5 -28.5t-123 -77t-82.5 -116t-47.5 -143t-14.5 -161.5q0 -108 24 -200t74 -167t135.5 -117.5t199.5 -42.5z" /> + <glyph glyph-name="uni041F" unicode="П" horiz-adv-x="1479" +d="M191 0v1412h1097v-1412h-224v1209h-649v-1209h-224z" /> + <glyph glyph-name="uni0420" unicode="Р" horiz-adv-x="1161" +d="M191 0v1412h429q217 0 350.5 -108.5t133.5 -299.5t-133 -296.5t-351 -105.5h-206v-602h-223zM414 809h206q263 0 263 195q0 96 -66 148.5t-197 52.5h-206v-396z" /> + <glyph glyph-name="uni0421" unicode="С" horiz-adv-x="1428" +d="M764 -20q-165 0 -295.5 58.5t-210.5 159.5t-121.5 230.5t-41.5 278.5q0 119 25.5 226t79 199t131 159.5t188 106t243.5 38.5q207 0 364 -102t241 -295l-209 -83q-40 138 -144.5 203t-253.5 65q-113 0 -199.5 -40t-139 -110.5t-78.5 -160.5t-26 -196q0 -113 26 -206.5 +t79 -166t140.5 -113t201.5 -40.5q145 0 243 64t154 208l208 -85q-83 -193 -240 -295.5t-365 -102.5z" /> + <glyph glyph-name="uni0422" unicode="Т" horiz-adv-x="1197" +d="M486 0v1215h-453v197h1131v-197h-454v-1215h-224z" /> + <glyph glyph-name="uni0423" unicode="У" horiz-adv-x="1112" +d="M232 0l194 457l-398 955h239l278 -712l299 712h239l-615 -1412h-236z" /> + <glyph glyph-name="uni0424" unicode="Ф" horiz-adv-x="1753" +d="M764 0v106q-326 0 -497.5 160.5t-171.5 438.5t172 442t497 164v101h225v-101q325 0 497 -163.5t172 -442.5q0 -278 -171.5 -438.5t-497.5 -160.5v-106h-225zM764 307v804q-212 0 -324 -108t-112 -298q0 -189 112 -293.5t324 -104.5zM989 307q212 0 324 104.5t112 293.5 +q0 190 -112 298t-324 108v-804z" /> + <glyph glyph-name="uni0425" unicode="Х" horiz-adv-x="1317" +d="M39 0l471 707l-469 706h268l349 -558l351 558h267l-469 -706l471 -707h-267l-355 549l-349 -549h-268z" /> + <glyph glyph-name="uni0426" unicode="Ц" horiz-adv-x="1512" +d="M1213 -290v290h-1022v1412h224v-1209h649v1209h224v-1209h149v-493h-224z" /> + <glyph glyph-name="uni0427" unicode="Ч" horiz-adv-x="1343" +d="M928 0v499q-134 -89 -302 -89q-136 0 -237.5 41.5t-164 119.5t-93.5 183t-31 238v420h225v-402q0 -94 14 -161.5t47.5 -119t93 -77.5t146.5 -26q104 0 180 37t122 91v658h224v-1412h-224z" /> + <glyph glyph-name="uni0428" unicode="Ш" horiz-adv-x="1784" +d="M191 0v1412h224v-1209h364v1209h225v-1209h365v1209h224v-1412h-1402z" /> + <glyph glyph-name="uni0429" unicode="Щ" horiz-adv-x="1818" +d="M1519 -290v290h-1328v1412h224v-1209h364v1209h225v-1209h365v1209h224v-1209h149v-493h-223z" /> + <glyph glyph-name="uni042A" unicode="Ъ" horiz-adv-x="1394" +d="M424 0v1215h-391v197h613v-602h206q218 0 351 -106t133 -296t-133.5 -299t-350.5 -109h-428zM646 207h206q131 0 197 52t66 149q0 195 -263 195h-206v-396z" /> + <glyph glyph-name="uni042B" unicode="Ы" horiz-adv-x="1708" +d="M191 0v1412h223v-602h206q218 0 351 -106t133 -296t-133.5 -299t-350.5 -109h-429zM1293 0v1412h224v-1412h-224zM414 207h206q131 0 197 52t66 149q0 195 -263 195h-206v-396z" /> + <glyph glyph-name="uni042C" unicode="Ь" horiz-adv-x="1161" +d="M191 0v1412h223v-602h206q218 0 351 -106t133 -296t-133.5 -299t-350.5 -109h-429zM414 207h206q131 0 197 52t66 149q0 195 -263 195h-206v-396z" /> + <glyph glyph-name="uni042D" unicode="Э" horiz-adv-x="1428" +d="M664 -20q-208 0 -365 102.5t-240 295.5l208 85q56 -144 154 -208t243 -64q197 0 306.5 114t132.5 305h-586v197h587q-10 89 -41 163t-83 132t-131.5 90t-180.5 32q-149 0 -253.5 -65t-144.5 -203l-209 83q84 193 241 295t364 102q133 0 243.5 -38.5t188 -106t131 -159.5 +t79 -199t25.5 -226q0 -149 -41.5 -278.5t-121.5 -230.5t-210.5 -159.5t-295.5 -58.5z" /> + <glyph glyph-name="uni042E" unicode="Ю" horiz-adv-x="1970" +d="M1207 -20q-152 0 -273.5 48.5t-201.5 135t-127 198t-60 243.5h-130v-605h-224v1412h224v-604h130q13 132 60 243t127 198t202 136t273 49q166 0 296 -58.5t209.5 -160t120.5 -230.5t41 -278t-41 -278t-120.5 -230.5t-209.5 -160t-296 -58.5zM1207 180q114 0 199.5 42.5 +t135.5 117.5t74.5 167t24.5 200t-24.5 200t-74.5 166.5t-135.5 117t-199.5 42.5t-200 -42.5t-136 -117t-74 -166.5t-24 -200q0 -86 14.5 -162t47.5 -143.5t82.5 -116t123.5 -77t166 -28.5z" /> + <glyph glyph-name="uni042F" unicode="Я" horiz-adv-x="1253" +d="M1062 -2h-225v615h-189l-350 -615h-258l390 638q-128 38 -206 136t-78 232q0 125 65 219.5t172 142t238 47.5h441v-1415zM835 801v411h-216q-115 0 -183 -56.5t-68 -154.5q0 -89 62 -142t168 -58h237z" /> + <glyph glyph-name="uni0430" unicode="а" horiz-adv-x="1050" +d="M413 -20q-154 0 -252.5 85t-98.5 233q0 290 411 290h250q0 114 -53.5 179.5t-158.5 65.5q-85 0 -147.5 -41t-100.5 -103l-163 119q156 212 407 212q197 0 308 -113t111 -299v-608h-177l-13 159q-110 -179 -323 -179zM442 161q116 0 197.5 82.5t83.5 188.5h-236 +q-101 0 -153 -37.5t-52 -103.5q0 -61 43.5 -95.5t116.5 -34.5z" /> + <glyph glyph-name="uni0431" unicode="б" horiz-adv-x="1171" +d="M665 960q109 0 194.5 -36.5t139 -101t81.5 -149.5t28 -185q0 -139 -63 -255t-179 -184.5t-261 -68.5q-226 0 -363 141t-137 382v220q0 360 220 512q56 40 123 71.5t157 56.5t139.5 37t155.5 34v-210q-131 -25 -260.5 -63.5t-179.5 -65.5q-41 -22 -67 -42.5t-50 -56 +t-35 -90t-12 -131.5q57 83 154 134t215 51zM605 163q129 0 199.5 87.5t70.5 223.5q0 138 -66 220t-204 82q-64 0 -117 -27t-85.5 -71t-50 -96.5t-17.5 -107.5q0 -140 66 -225.5t204 -85.5z" /> + <glyph glyph-name="uni0432" unicode="в" horiz-adv-x="1178" +d="M617 -20q-106 0 -195 27t-158 80.5t-107.5 141.5t-38.5 202v540q0 106 27.5 187.5t73.5 133t111 84t133.5 45.5t148.5 13q88 0 164.5 -24.5t134 -70.5t90.5 -118t33 -161q0 -80 -40.5 -158t-112.5 -123q102 -43 153.5 -139t51.5 -220q0 -107 -35.5 -191.5t-99 -138.5 +t-148.5 -82t-186 -28zM613 177q249 0 249 255q0 119 -63.5 180t-178.5 61q-99 0 -177 -49v192q66 44 194 44q86 1 133.5 53.5t47.5 131.5q0 91 -52.5 139t-151.5 48q-47 0 -83.5 -6t-74.5 -25.5t-63 -52t-41 -89.5t-16 -134v-483q0 -136 74 -200.5t203 -64.5z" /> + <glyph glyph-name="uni0433" unicode="г" horiz-adv-x="895" +d="M443 -20q-72 0 -137.5 19t-119.5 56t-86 99t-32 141q0 75 28.5 131.5t74 89t100.5 55.5t110 39t100.5 32t74 41.5t28.5 61.5q0 45 -37.5 69.5t-102.5 24.5q-135 0 -203 -123l-157 86q53 93 145 152.5t217 59.5q90 0 166.5 -31t127.5 -99t51 -163q0 -73 -28 -126 +t-73.5 -82.5t-100 -50.5t-109 -35.5t-100 -31t-73.5 -43.5t-28 -66q0 -55 46 -90.5t126 -35.5q88 0 143 49t81 121l172 -81q-37 -115 -147 -192t-257 -77z" /> + <glyph glyph-name="uni0434" unicode="д" horiz-adv-x="1143" +d="M990 0q0 -204 -119.5 -320.5t-334.5 -116.5q-284 0 -428 210l164 119q37 -64 106 -103t161 -39q114 0 175 64t61 186v127q-98 -127 -287 -127q-102 0 -184 41t-134 111.5t-80 162t-28 194.5t28 195t80 162.5t133 112t180 41.5q88 0 165 -33.5t127 -98.5v111h216zM538 196 +q127 0 191 87.5t64 226.5q0 89 -26 158.5t-84.5 113.5t-144.5 44q-127 0 -192.5 -89.5t-65.5 -226.5q0 -138 65 -226t193 -88z" /> + <glyph glyph-name="uni0435" unicode="е" horiz-adv-x="1058" +d="M555 -18q-120 0 -215.5 42t-154 114t-88.5 163t-30 194q0 101 29 193t85 166.5t148.5 119t209.5 44.5q99 0 178 -30.5t128.5 -80t83 -116t47 -134t13.5 -138.5q0 -64 -7 -90h-689q11 -116 76.5 -185t186.5 -69q155 0 252 106l148 -127q-160 -172 -401 -172zM293 588h487 +q-10 116 -71.5 183.5t-171.5 67.5t-169.5 -69t-74.5 -182z" /> + <glyph glyph-name="uni0436" unicode="ж" horiz-adv-x="1499" +d="M22 0l172 449q25 58 69 108t94 50l-281 392h252l229 -361h86v774h214v-774h85l230 361h251l-281 -392q50 0 94 -49.5t70 -108.5l172 -449h-253l-121 354q-20 58 -53.5 89.5t-87.5 31.5h-106v-475h-214v475h-107q-99 0 -140 -121l-122 -354h-252z" /> + <glyph glyph-name="uni0437" unicode="з" horiz-adv-x="989" +d="M419 -447q-131 0 -244.5 58t-178.5 166l181 132q26 -75 93 -116.5t145 -41.5q125 0 201.5 69.5t76.5 189.5q0 112 -56 176.5t-157 64.5h-191v189h209q82 4 124 54t42 129q0 94 -58.5 142.5t-160.5 48.5q-157 0 -250 -179l-199 96q66 148 175 214.5t272 66.5 +q119 0 216 -41.5t157.5 -128t60.5 -204.5q0 -85 -44.5 -162t-135.5 -119q218 -77 218 -359q0 -106 -40 -192t-108.5 -140.5t-157.5 -83.5t-190 -29z" /> + <glyph glyph-name="uni0438" unicode="и" horiz-adv-x="1151" +d="M481 -21q-181 0 -269.5 127.5t-88.5 349.5v543h217v-552q0 -63 8 -110t28.5 -86.5t59 -60t94.5 -20.5q51 0 94.5 18.5t79.5 57t57 108t21 163.5v482h217v-999h-217v133q-48 -71 -126.5 -112.5t-174.5 -41.5z" /> + <glyph glyph-name="uni0439" unicode="й" horiz-adv-x="1181" +d="M591 1143q-151 0 -231 69.5t-80 200.5h157q0 -66 43.5 -102.5t110.5 -36.5q68 0 111.5 37.5t43.5 101.5h157q0 -133 -81 -201.5t-231 -68.5zM515 -23q-93 0 -164.5 36t-113.5 98t-63 137.5t-21 161.5v589h217v-582q0 -240 174 -240q108 0 188 79.5t80 183.5v559h216v-999 +h-216v133q-48 -70 -127.5 -113t-169.5 -43z" /> + <glyph glyph-name="uni043A" unicode="к" horiz-adv-x="1015" +d="M153 0v1412h214v-774h85l230 361h251l-281 -392q50 0 94 -49.5t70 -108.5l172 -449h-253l-121 354q-20 58 -53.5 89.5t-87.5 31.5h-106v-475h-214z" /> + <glyph glyph-name="uni043B" unicode="л" horiz-adv-x="983" +d="M5 0l396 999h180l396 -999h-234l-252 722l-254 -722h-232z" /> + <glyph glyph-name="uni043C" unicode="м" horiz-adv-x="1446" +d="M153 0v999h275l297 -741l292 742h277v-1000h-200v724l-291 -724h-158l-293 722v-722h-199z" /> + <glyph glyph-name="uni043D" unicode="н" horiz-adv-x="1181" +d="M153 0v999h217v-365h441v365h217v-999h-217v472h-441v-472h-217z" /> + <glyph glyph-name="uni043E" unicode="о" horiz-adv-x="1125" +d="M561 -20q-110 0 -204 42t-158.5 113t-100.5 166t-36 201q0 142 61.5 259.5t176.5 188t261 70.5q147 0 262.5 -70.5t177 -188t61.5 -259.5t-61.5 -260.5t-177.5 -190t-262 -71.5zM562 163q94 0 158.5 49.5t92 123.5t27.5 166q0 143 -70 238.5t-208 95.5t-208 -95.5 +t-70 -238.5q0 -92 27.5 -166.5t92 -123.5t158.5 -49z" /> + <glyph glyph-name="uni043F" unicode="п" horiz-adv-x="1153" +d="M153 0v999h217v-130q53 73 132 110t164 37q93 0 164.5 -34.5t113.5 -93.5t62.5 -131t20.5 -154v-603h-217v576q0 239 -176 239q-107 0 -185.5 -79t-78.5 -183v-553h-217z" /> + <glyph glyph-name="uni0440" unicode="р" horiz-adv-x="1146" +d="M153 -438v1437h217v-112q103 133 294 133q130 0 226.5 -72t144.5 -189t48 -259q0 -143 -48 -259.5t-144.5 -188.5t-226.5 -72q-193 0 -294 132v-550h-217zM610 176q125 0 190 90.5t65 232.5q0 143 -65 236t-190 93t-188.5 -92t-63.5 -237q0 -143 63 -233t189 -90z" /> + <glyph glyph-name="uni0441" unicode="с" horiz-adv-x="994" +d="M536 -20q-114 0 -205 43t-147.5 116t-86 165t-29.5 194q0 80 18 155.5t56 142.5t92 116.5t131.5 78.5t168.5 29q146 0 255 -73t164 -213l-203 -81q-21 79 -79 127t-137 48q-52 0 -94.5 -19t-70.5 -51t-47 -75t-27.5 -89.5t-8.5 -95.5q0 -64 13.5 -120t41.5 -103.5 +t77.5 -75.5t115.5 -28q78 0 136.5 47t79.5 124l192 -75q-47 -135 -154 -211t-252 -76z" /> + <glyph glyph-name="uni0442" unicode="т" horiz-adv-x="1729" +d="M153 0v999h216v-125q43 71 111 107.5t144 36.5q198 0 293 -169q53 82 138 124.5t185 42.5q93 0 165 -34.5t114.5 -93.5t63.5 -131t21 -154v-603h-218v576q0 246 -178 246q-101 0 -162 -77.5t-61 -189.5v-555h-218v580q0 242 -175 242q-102 0 -162.5 -77.5t-60.5 -189.5 +v-555h-216z" /> + <glyph glyph-name="uni0443" unicode="у" horiz-adv-x="1014" +d="M217 -430l178 450l-388 979h236l263 -732l266 732h236l-561 -1429h-230z" /> + <glyph glyph-name="uni0444" unicode="ф" horiz-adv-x="1466" +d="M626 -430v414q-36 -4 -57 -4q-147 0 -263.5 69.5t-180 187.5t-63.5 259t63.5 258.5t180.5 187.5t263 70q6 -1 26 -2t31 -3v405h214v-405q30 5 57 5q146 0 263 -70t180.5 -187.5t63.5 -258.5t-63.5 -259t-180 -187.5t-263.5 -69.5q-21 0 -57 4v-414h-214zM569 166 +q39 0 57 4v651q-36 4 -57 4q-138 0 -205.5 -93t-67.5 -236q0 -144 67.5 -237t205.5 -93zM897 166q138 0 205.5 93t67.5 237q0 143 -67.5 236t-205.5 93q-21 0 -57 -4v-651q18 -4 57 -4z" /> + <glyph glyph-name="uni0445" unicode="х" horiz-adv-x="996" +d="M22 0l339 504l-339 495h261l215 -343l215 343h262l-341 -495l341 -504h-262l-215 349l-215 -349h-261z" /> + <glyph glyph-name="uni0446" unicode="ц" horiz-adv-x="1182" +d="M933 -307v284q-51 0 -95 43.5t-55 112.5q-48 -70 -127.5 -113t-169.5 -43q-75 0 -136.5 24t-103 64.5t-70 96.5t-41 118t-12.5 130v589h218v-582q0 -240 175 -240q107 0 187 79.5t80 183.5v559h217v-765q0 -70 42 -108.5t108 -38.5l-39 -394h-178z" /> + <glyph glyph-name="uni0447" unicode="ч" horiz-adv-x="1104" +d="M734 0v397q-48 -69 -127.5 -112t-169.5 -43q-75 0 -136.5 24t-103 64.5t-70 96.5t-41 117.5t-12.5 129.5v325h218v-317q0 -241 174 -241q108 0 188 80t80 184v294h217v-999h-217z" /> + <glyph glyph-name="uni0448" unicode="ш" horiz-adv-x="1756" +d="M1133 -18q-199 0 -294 169q-54 -82 -138.5 -124.5t-184.5 -42.5q-93 0 -164.5 34.5t-114 93t-63.5 131t-21 154.5v602h217v-576q0 -245 177 -245q103 0 163.5 77.5t60.5 188.5v555h218v-580q0 -241 175 -241q102 0 163 77.5t61 188.5v555h216v-999h-216v125 +q-43 -70 -111 -106.5t-144 -36.5z" /> + <glyph glyph-name="uni0449" unicode="щ" horiz-adv-x="1757" +d="M1507 -307v284q-51 0 -95 44.5t-55 112.5q-44 -72 -111.5 -112t-141.5 -40q-199 0 -294 169q-54 -82 -138.5 -124.5t-184.5 -42.5q-93 0 -164.5 34.5t-114 93t-63.5 131t-21 154.5v602h218v-576q0 -245 177 -245q102 0 162.5 77.5t60.5 188.5v555h218v-580 +q0 -241 175 -241q102 0 163 77.5t61 188.5v555h216v-765q0 -70 42 -108.5t107 -38.5l-38 -394h-179z" /> + <glyph glyph-name="uni044A" unicode="ъ" horiz-adv-x="1203" +d="M671 -20q-205 0 -317.5 117.5t-112.5 326.5v410h-235v165h436v-282q116 105 265 105q208 0 320.5 -113.5t112.5 -307.5q0 -191 -126.5 -306t-342.5 -115zM676 166q109 0 169.5 65t60.5 170q0 96 -62.5 165t-169.5 69q-106 0 -169 -60.5t-63 -154.5v-29q0 -100 62 -162.5 +t172 -62.5z" /> + <glyph glyph-name="uni044B" unicode="ы" horiz-adv-x="1464" +d="M593 -20q-206 0 -319.5 118t-113.5 326v575h201v-282q116 105 256 105q209 0 325.5 -114t116.5 -307q0 -191 -127 -306t-339 -115zM1200 0v999h201v-999h-201zM593 166q109 0 170.5 65.5t61.5 169.5q0 96 -62.5 165t-169.5 69q-105 0 -167 -60.5t-65 -154.5v-29 +q3 -100 64 -162.5t168 -62.5z" /> + <glyph glyph-name="uni044C" unicode="ь" horiz-adv-x="1120" +d="M580 -20q-205 0 -319 118t-114 326v575h202v-282q116 105 255 105q209 0 326 -114t117 -307q0 -191 -127 -306t-340 -115zM580 166q110 0 171.5 65.5t61.5 169.5q0 96 -63 165t-170 69q-105 0 -167 -60.5t-64 -154.5v-29q2 -100 63 -162.5t168 -62.5z" /> + <glyph glyph-name="uni044D" unicode="э" horiz-adv-x="990" +d="M458 -20q-145 0 -251.5 75.5t-154.5 211.5l193 75q21 -76 79 -120.5t136 -44.5q105 0 164.5 65.5t75.5 168.5h-365v160h367q-15 107 -75 177t-167 70q-80 0 -137 -43.5t-78 -121.5l-204 81q57 132 166.5 207t252.5 75q114 0 205 -43.5t147 -116.5t85 -164.5t29 -193.5 +q0 -81 -18 -156.5t-56 -141.5t-92.5 -114.5t-132 -77t-169.5 -28.5z" /> + <glyph glyph-name="uni044E" unicode="ю" horiz-adv-x="1552" +d="M982 -20q-214 0 -356 141.5t-151 350.5h-105v-472h-217v1413h217v-779h122q42 166 174.5 272t315.5 106q146 0 263 -70t180.5 -187.5t63.5 -258.5t-63.5 -259t-180 -187.5t-263.5 -69.5zM982 166q138 0 205.5 93t67.5 237q0 143 -67.5 236t-205.5 93t-205.5 -93 +t-67.5 -236q0 -144 67.5 -237t205.5 -93z" /> + <glyph glyph-name="uni044F" unicode="я" horiz-adv-x="1047" +d="M60 0l115 307q26 60 69.5 109t93.5 49q-39 10 -68 20t-62 30.5t-54.5 46.5t-35.5 67t-14 94q0 51 17.5 96t58 87.5t119.5 67.5t188 25h407v-999h-215v419h-107q-54 0 -87.5 -31.5t-53.5 -89.5l-118 -298h-253zM474 583h205v231h-225q-59 0 -91 -32t-32 -77 +q0 -55 34 -88.5t109 -33.5z" /> + <glyph glyph-name="uni0450" unicode="ѐ" horiz-adv-x="1058" +d="M454 1110l-292 303h239l223 -303h-170zM555 -18q-120 0 -215.5 42t-154 114t-88.5 163t-30 194q0 101 29 193t85 166.5t148.5 119t209.5 44.5q99 0 178 -30.5t128.5 -80t83 -116t47 -134t13.5 -138.5q0 -64 -7 -90h-689q11 -116 76.5 -185t186.5 -69q155 0 252 106 +l148 -127q-160 -172 -401 -172zM293 588h487q-10 116 -71.5 183.5t-171.5 67.5t-169.5 -69t-74.5 -182z" /> + <glyph glyph-name="uni0451" unicode="ё" horiz-adv-x="1058" +d="M249 1198v215h194v-215h-194zM598 1198v215h194v-215h-194zM555 -18q-120 0 -215.5 42t-154 114t-88.5 163t-30 194q0 101 29 193t85 166.5t148.5 119t209.5 44.5q99 0 178 -30.5t128.5 -80t83 -116t47 -134t13.5 -138.5q0 -64 -7 -90h-689q11 -116 76.5 -185t186.5 -69 +q155 0 252 106l148 -127q-160 -172 -401 -172zM293 588h487q-10 116 -71.5 183.5t-171.5 67.5t-169.5 -69t-74.5 -182z" /> + <glyph glyph-name="uni0452" unicode="ђ" horiz-adv-x="1152" +d="M611 -444q-143 0 -277 97l103 167q84 -64 167 -64q205 0 205 289v534q0 51 -8 90.5t-27 72.5t-54.5 51t-86.5 18q-107 0 -183.5 -76.5t-76.5 -207.5v-527h-218v1134h-159v149h159v130h218v-130h258v-149h-258v-258q51 71 124 107.5t155 36.5q79 0 143.5 -23.5t107 -64 +t71 -95.5t41 -115.5t12.5 -127.5v-490q0 -281 -102 -414.5t-314 -133.5z" /> + <glyph glyph-name="uni0453" unicode="ѓ" horiz-adv-x="785" +d="M322 1124l221 289h232l-294 -289h-159zM147 0v999h632v-162h-414v-837h-218z" /> + <glyph glyph-name="uni0454" unicode="є" horiz-adv-x="988" +d="M530 -20q-92 0 -169.5 28.5t-132 77t-92.5 114.5t-56 141.5t-18 156.5q0 102 29 193.5t85 164.5t147 116.5t205 43.5q143 0 252.5 -75t166.5 -207l-204 -81q-21 78 -78 121.5t-137 43.5q-107 0 -167 -70t-75 -177h367v-160h-365q16 -103 75.5 -168.5t164.5 -65.5 +q78 0 136 44.5t79 120.5l193 -75q-48 -136 -154.5 -211.5t-251.5 -75.5z" /> + <glyph glyph-name="uni0455" unicode="ѕ" horiz-adv-x="890" +d="M445 -20q-147 0 -257 77t-147 192l173 81q25 -71 80 -120.5t143 -49.5q80 0 127 38t47 96q0 39 -28.5 65.5t-73.5 41.5t-100 28t-110 32.5t-100 48t-73.5 81t-28.5 125.5q0 94 51 163.5t128 102t166 32.5q126 0 217.5 -59.5t144.5 -152.5l-156 -86q-68 123 -204 123 +q-65 0 -104 -26.5t-39 -73.5q0 -30 22.5 -52.5t59 -35t83 -26.5t95.5 -27t95.5 -37t83 -54.5t59 -83t22.5 -119.5q0 -104 -56 -179.5t-139.5 -110t-180.5 -34.5z" /> + <glyph glyph-name="uni0456" unicode="і" horiz-adv-x="522" +d="M145 1197v215h231v-215h-231zM153 0v999h213v-999h-213z" /> + <glyph glyph-name="uni0457" unicode="ї" horiz-adv-x="506" +d="M-17 1164v186h190v-186h-190zM330 1164v186h190v-186h-190zM150 0v999h205v-999h-205z" /> + <glyph glyph-name="uni0458" unicode="ј" horiz-adv-x="527" +d="M152 1184v230h230v-230h-230zM90 -438q-36 0 -77 8t-65 16l-23 8l52 180q57 -15 105 -15q43 0 58.5 24.5t15.5 77.5v1138h216v-1119q0 -142 -70.5 -230t-211.5 -88z" /> + <glyph glyph-name="uni0459" unicode="љ" horiz-adv-x="1669" +d="M223 -21q-91 0 -195 52l60 141q38 -26 77 -26q52 0 76 130.5t24 337.5v385h737v-307h160q220 0 326.5 -78t106.5 -263q0 -173 -110 -262t-322 -89h-378v837h-304v-220q0 -185 -17.5 -312t-52 -197t-80 -99.5t-108.5 -29.5zM1002 183h160q91 0 143.5 37.5t52.5 130.5 +q0 158 -196 158h-160v-326z" /> + <glyph glyph-name="uni045A" unicode="њ" horiz-adv-x="1696" +d="M153 0v999h217v-365h442v365h216v-365h160q88 0 154 -9t120.5 -30.5t88.5 -57.5t52.5 -90t18.5 -128q0 -169 -107 -244t-325 -75h-378v472h-442v-472h-217zM1028 183h160q36 0 62.5 2.5t53.5 11t43.5 23t27 39.5t10.5 60q0 36 -11 61.5t-26.5 39t-44 21t-52.5 9t-63 1.5 +h-160v-268z" /> + <glyph glyph-name="uni045B" unicode="ћ" horiz-adv-x="1155" +d="M671 1019q92 0 163 -34.5t112.5 -94t62.5 -131.5t21 -154v-605h-218v577q0 246 -190 246q-118 0 -184.5 -86.5t-66.5 -220.5v-516h-216v1115h-157v149h157v149h216v-149h262v-149h-262v-247q55 74 135 112.5t165 38.5z" /> + <glyph glyph-name="uni045C" unicode="ќ" horiz-adv-x="1010" +d="M418 1124l221 289h233l-295 -289h-159zM153 0v999h214v-361h85l230 361h251l-281 -392q50 0 94 -49.5t70 -108.5l172 -449h-253l-121 354q-20 58 -53.5 89.5t-87.5 31.5h-106v-475h-214z" /> + <glyph glyph-name="uni045D" unicode="ѝ" horiz-adv-x="1181" +d="M531 1111l-287 302h233l221 -302h-167zM515 -23q-93 0 -164.5 36t-113.5 98t-63 137.5t-21 161.5v589h217v-582q0 -240 174 -240q108 0 188 79.5t80 183.5v559h216v-999h-216v133q-48 -70 -127.5 -113t-169.5 -43z" /> + <glyph glyph-name="uni045E" unicode="ў" horiz-adv-x="1014" +d="M505 1143q-151 0 -231 69.5t-80 200.5h157q0 -66 43.5 -102.5t110.5 -36.5q68 0 111.5 37.5t43.5 101.5h157q0 -133 -81 -201.5t-231 -68.5zM217 -430l178 450l-388 979h236l263 -732l266 732h236l-561 -1429h-230z" /> + <glyph glyph-name="uni045F" unicode="џ" horiz-adv-x="1181" +d="M482 -307v307h-329v999h217v-836h442v836h216v-999h-330v-307h-216z" /> + <glyph glyph-name="uni0462" unicode="Ѣ" horiz-adv-x="1263" +d="M292 0v1069h-247v203h247v140h223v-140h310v-203h-310v-259h206q218 0 351 -106t133 -296t-133.5 -299t-350.5 -109h-429zM515 207h206q131 0 197 52t66 149q0 195 -263 195h-206v-396z" /> + <glyph glyph-name="uni0463" unicode="ѣ" horiz-adv-x="1039" +d="M155 0v1134h-189v149h189v129h216v-129h265v-149h-265v-442h160q221 0 327.5 -78t106.5 -263q0 -173 -110 -262t-323 -89h-377zM371 183h160q92 0 144.5 37.5t52.5 130.5q0 158 -197 158h-160v-326z" /> + <glyph glyph-name="uni0464" unicode="Ѥ" horiz-adv-x="1899" +d="M1235 -20q-122 0 -225 32t-179 88.5t-131.5 135.5t-87.5 171.5t-42 197.5h-155v-605h-224v1412h224v-604h155q13 132 60.5 244t127.5 199t202 136t273 49q208 0 364.5 -102t239.5 -295l-209 -83q-39 138 -143.5 203t-253.5 65q-101 0 -180.5 -32t-131.5 -89.5t-83 -131.5 +t-41 -163h586v-203h-585q23 -190 132.5 -302t306.5 -112q145 0 242.5 64t153.5 208l208 -85q-82 -193 -239 -295.5t-365 -102.5z" /> + <glyph glyph-name="uni0465" unicode="ѥ" horiz-adv-x="1446" +d="M988 -20q-104 0 -189 35.5t-141.5 98t-90 142t-43.5 171.5h-154v-427h-217v999h217v-410h157q12 88 46 163.5t89.5 135.5t139 94t184.5 34q143 0 253 -75t166 -207l-203 -81q-22 78 -79 121.5t-137 43.5q-105 0 -167 -69t-75 -160h367v-160h-365q13 -114 73 -183t167 -69 +q78 0 136 44.5t80 120.5l192 -75q-47 -136 -154 -211.5t-252 -75.5z" /> + <glyph glyph-name="uni0466" unicode="Ѧ" horiz-adv-x="1331" +d="M28 0l554 1412h169l552 -1412h-242l-141 400h-141v-400h-223v400h-141l-143 -400h-244zM489 591h357l-178 492z" /> + <glyph glyph-name="uni0467" unicode="ѧ" horiz-adv-x="985" +d="M28 0l381 999h169l379 -999h-212l-69 225h-102v-225h-160v225h-101l-76 -225h-209zM364 382h263l-132 359z" /> + <glyph glyph-name="uni0468" unicode="Ѩ" horiz-adv-x="1793" +d="M191 0v1412h224v-604h392l236 604h169l552 -1412h-241l-142 400h-141v-400h-223v400h-141l-143 -400h-244l237 605h-311v-605h-224zM950 591h357l-178 492z" /> + <glyph glyph-name="uni0469" unicode="ѩ" horiz-adv-x="1408" +d="M153 0v999h217v-438h294l167 438h170l379 -999h-213l-68 225h-102v-225h-161v225h-100l-77 -225h-208l151 399h-232v-399h-217zM786 382h264l-132 359z" /> + <glyph glyph-name="uni046A" unicode="Ѫ" horiz-adv-x="1574" +d="M38 0l212 586q32 87 102.5 157t154.5 70l-289 396v203h1113v-203l-288 -396q85 0 154 -69.5t105 -157.5l233 -586h-253l-178 482q-60 175 -177 175h-40v-657h-223v657h-39q-37 0 -68 -17.5t-52.5 -47t-34.5 -55.5t-23 -55l-177 -482h-232zM777 828l275 381h-555z" /> + <glyph glyph-name="uni046B" unicode="ѫ" horiz-adv-x="1274" +d="M1074 449l172 -449h-253l-122 354q-18 54 -51 78.5t-87 27.5v-460h-192v460q-56 -5 -87.5 -28t-51.5 -78l-121 -354h-253l172 449q70 158 172 158l-187 230v162h902v-162l-184 -230q101 0 171 -158zM635 616l185 221h-360z" /> + <glyph glyph-name="uni046C" unicode="Ѭ" horiz-adv-x="2030" +d="M191 0v1412h224v-606h559l-296 403v203h1113v-203l-288 -396q59 0 112.5 -37.5t86 -85.5t55.5 -104l233 -586h-248l-177 482q-63 175 -178 175h-39v-657h-224v657h-39q-115 0 -178 -175l-177 -482h-226l192 529q13 38 28 75h-309v-604h-224zM1237 828l275 381h-555z" /> + <glyph glyph-name="uni046D" unicode="ѭ" horiz-adv-x="1676" +d="M1476 449l172 -449h-252l-122 354q-22 64 -52.5 87.5t-86.5 21.5v-463h-192v463q-103 0 -138 -109l-121 -354h-253l136 355q30 73 32 76h-229v-431h-217v999h217v-406h414l-197 244v162h903v-162l-181 -225q33 0 61 -15.5t49 -45t32 -50t25 -52.5zM1038 616l184 221h-360 +z" /> + <glyph glyph-name="uni0472" unicode="Ѳ" horiz-adv-x="1524" +d="M761 -20q-166 0 -295.5 58.5t-209 160t-120.5 230.5t-41 278t41 278t120.5 230.5t209 160t295.5 58.5q134 0 245 -38.5t188.5 -105.5t131 -159.5t78.5 -199t25 -224.5t-25 -224.5t-78.5 -199t-131 -159.5t-188.5 -105.5t-245 -38.5zM331 794h859q-9 94 -38 171 +t-79.5 138.5t-130 95.5t-181.5 34t-182 -34t-130.5 -95.5t-79.5 -139t-38 -170.5zM761 180q104 0 184.5 35.5t131 99t79 142.5t36.5 175h-861q7 -95 35.5 -174.5t79 -143t131 -99t184.5 -35.5z" /> + <glyph glyph-name="uni0473" unicode="ѳ" horiz-adv-x="1140" +d="M569 -20q-147 0 -263.5 69.5t-180 187.5t-63.5 259t63.5 258.5t180.5 187.5t263 70t263 -70t180.5 -187.5t63.5 -258.5t-63.5 -259t-180 -187.5t-263.5 -69.5zM302 582h532q-19 110 -84.5 176.5t-180.5 66.5q-116 0 -182 -66.5t-85 -176.5zM569 166q118 0 183.5 70 +t81.5 184h-532q16 -114 82 -184t185 -70z" /> + <glyph glyph-name="uni0474" unicode="Ѵ" horiz-adv-x="1333" +d="M557 0l-539 1413h245l381 -1064l246 655q57 151 122.5 241t135 126t161.5 42v-208q-70 -26 -117 -86.5t-93 -172.5l-369 -946h-173z" /> + <glyph glyph-name="uni0475" unicode="ѵ" horiz-adv-x="989" +d="M391 0l-385 999h234l241 -721l126 354q30 82 66 144.5t71 101t78 64.5t79.5 38t82.5 19v-202q-29 -11 -42.5 -18t-38 -26t-44.5 -52t-40 -83l-249 -618h-179z" /> + <glyph glyph-name="uni0478" unicode="Ѹ" horiz-adv-x="2538" +d="M761 -20q-133 0 -243.5 38.5t-188 105.5t-131 159.5t-78.5 199t-25 224.5t25 224.5t78.5 198.5t131 159.5t188 106t243.5 38.5q134 0 245 -38.5t188 -106t131 -159.5t79 -198.5t25 -224.5t-25 -224.5t-79 -199t-131.5 -159.5t-188 -105.5t-244.5 -38.5zM761 180 +q114 0 200.5 42.5t136.5 117.5t74.5 167t24.5 200q0 86 -14.5 161.5t-48 143t-83 116t-124 77t-166.5 28.5t-165.5 -28.5t-123 -77t-82.5 -116t-47.5 -143t-14.5 -161.5q0 -108 24 -200t74 -167t135.5 -117.5t199.5 -42.5zM1740 -430l180 450l-389 979h236l264 -732l265 732 +h236l-561 -1429h-231z" /> + <glyph glyph-name="uni0479" unicode="ѹ" horiz-adv-x="2094" +d="M561 -20q-110 0 -204 42t-158.5 113t-100.5 166t-36 201q0 142 61.5 259.5t176.5 188t261 70.5q147 0 262.5 -70.5t177 -188t61.5 -259.5t-61.5 -260.5t-177.5 -190t-262 -71.5zM1296 -430l180 450l-389 979h236l264 -732l265 732h236l-561 -1429h-231zM562 163 +q94 0 158.5 49.5t92 123.5t27.5 166q0 143 -70 238.5t-208 95.5t-208 -95.5t-70 -238.5q0 -92 27.5 -166.5t92 -123.5t158.5 -49z" /> + <glyph glyph-name="uni0483" unicode="҃" +d="M-961 1568v325h626v128h213v-321h-633v-132h-206z" /> + <glyph glyph-name="uni0490" unicode="Ґ" horiz-adv-x="1066" +d="M191 0v1412h619v307h223v-510h-618v-1209h-224z" /> + <glyph glyph-name="uni0491" unicode="ґ" horiz-adv-x="787" +d="M147 0v999h416v308h216v-470h-414v-837h-218z" /> + <glyph glyph-name="uni0492" unicode="Ғ" horiz-adv-x="1238" +d="M1203 1209h-618v-370h179v-188h-179v-651h-224v651h-344v188h344v573h842v-203z" /> + <glyph glyph-name="uni0493" unicode="ғ" horiz-adv-x="790" +d="M153 0v999h631v-162h-414v-837h-217z" /> + <glyph glyph-name="uni0496" unicode="Җ" horiz-adv-x="2050" +d="M1939 168h166v-406h-213v238h-158l-176 501q-24 67 -72.5 121t-117.5 54h-231v-676h-224v676h-232q-69 0 -116.5 -53t-71.5 -122l-178 -501h-276l256 605q15 34 36 68t51 71.5t69 60.5t80 23l-418 584h296l349 -530h155v530h224v-530h155l348 530h297l-418 -584 +q40 0 79 -23t69 -60.5t51 -71.5t36 -68z" /> + <glyph glyph-name="uni0497" unicode="җ" horiz-adv-x="1500" +d="M1414 168h171v-406h-213v238h-147l-121 354q-20 58 -53.5 89.5t-87.5 31.5h-106v-475h-214v475h-106q-100 0 -141 -121l-122 -354h-252l172 449q25 58 69 108t94 50l-281 392h252l230 -361h85v361h214v-361h85l230 361h251l-281 -392q50 0 94 -49.5t70 -108.5z" /> + <glyph glyph-name="uni049A" unicode="Қ" horiz-adv-x="1325" +d="M1218 168h163v-406h-213v238h-155l-177 501q-13 38 -35.5 75t-64 68.5t-89.5 31.5h-232v-676h-224v1412h224v-530h155l349 530h296l-418 -584q41 0 80 -23t69 -60.5t51 -71.5t36 -68z" /> + <glyph glyph-name="uni049B" unicode="қ" horiz-adv-x="1015" +d="M924 168h171v-406h-213v238h-147l-121 354q-20 58 -53.5 89.5t-87.5 31.5h-106v-475h-214v1412h214v-774h85l230 361h251l-281 -392q50 0 94 -49.5t70 -108.5z" /> + <glyph glyph-name="uni04A2" unicode="Ң" horiz-adv-x="1480" +d="M1288 168h167v-406h-213v238h-178v606h-648v-606h-225v1413h225v-605h648v605h224v-1245z" /> + <glyph glyph-name="uni04A3" unicode="ң" horiz-adv-x="1181" +d="M1028 168h201v-406h-213v238h-205v472h-441v-472h-217v999h217v-365h441v365h217v-831z" /> + <glyph glyph-name="uni04AE" unicode="Ү" horiz-adv-x="1318" +d="M545 0v551l-530 862h269l373 -643l376 643h270l-528 -862v-551h-230z" /> + <glyph glyph-name="uni04AF" unicode="ү" horiz-adv-x="994" +d="M391 0v433l-376 566h252l230 -367l231 367h251l-375 -566v-433h-213z" /> + <glyph glyph-name="uni04B0" unicode="Ұ" horiz-adv-x="1319" +d="M775 551v-81h127v-188h-127v-282h-230v282h-390v188h390v81l-530 862h269l373 -643l376 643h270z" /> + <glyph glyph-name="uni04B1" unicode="ұ" horiz-adv-x="1051" +d="M604 433v-67h187v-188h-187v-178h-213v178h-347v188h347v67l-376 566h252l230 -367l231 367h251z" /> + <glyph glyph-name="uni04B2" unicode="Ҳ" horiz-adv-x="1317" +d="M1166 168h193v-406h-213v238h-135l-355 549l-349 -549h-268l471 707l-469 706h268l349 -558l351 558h267l-469 -706z" /> + <glyph glyph-name="uni04B3" unicode="ҳ" horiz-adv-x="996" +d="M861 168h208v-406h-213v238h-143l-215 349l-215 -349h-261l339 504l-339 495h261l215 -343l215 343h262l-341 -495z" /> + <glyph glyph-name="uni04B6" unicode="Ҷ" horiz-adv-x="1343" +d="M1152 168h181v-406h-213v238h-192v499q-134 -89 -302 -89q-136 0 -237.5 41.5t-164 119.5t-93.5 183t-31 238v420h225v-402q0 -94 14 -161.5t47.5 -119t93 -77.5t146.5 -26q104 0 180 37t122 91v658h224v-1244z" /> + <glyph glyph-name="uni04B7" unicode="ҷ" horiz-adv-x="1104" +d="M951 168h184v-406h-213v238h-188v397q-48 -69 -127.5 -112t-169.5 -43q-75 0 -136.5 24t-103 64.5t-70 96.5t-41 117.5t-12.5 129.5v325h218v-317q0 -241 174 -241q108 0 188 80t80 184v294h217v-831z" /> + <glyph glyph-name="uni04BA" unicode="Һ" horiz-adv-x="1343" +d="M415 1413v-499q133 89 302 89q136 0 237.5 -41.5t164 -119.5t93.5 -183t31 -238v-420h-225v402q0 94 -14 161.5t-47.5 119t-93 77.5t-146.5 26q-104 0 -180 -37t-122 -91v-658h-224v1412h224z" /> + <glyph glyph-name="uni04BB" unicode="һ" horiz-adv-x="1155" +d="M155 0v1413h216v-545q55 74 135 112.5t165 38.5q92 0 163 -34.5t112.5 -94t62.5 -131.5t21 -154v-605h-218v577q0 246 -190 246q-118 0 -184.5 -86.5t-66.5 -220.5v-516h-216z" /> + <glyph glyph-name="uni04C0" unicode="Ӏ" horiz-adv-x="607" +d="M191 0v1412h225v-1412h-225z" /> + <glyph glyph-name="uni04CF" unicode="ӏ" horiz-adv-x="520" +d="M153 0v1412h214v-1412h-214z" /> + <glyph glyph-name="uni04D8" unicode="Ә" horiz-adv-x="1524" +d="M761 -20q-166 0 -295.5 58.5t-209 160t-120.5 230.5t-41 278q0 48 4 87h1091q-9 94 -38 171t-79.5 138.5t-130 95.5t-181.5 34q-239 0 -351 -184l-195 109q85 130 222 203t324 73q134 0 245 -38.5t188.5 -105.5t131 -159.5t78.5 -199t25 -224.5t-25 -224.5t-78.5 -199 +t-131 -159.5t-188.5 -105.5t-245 -38.5zM761 180q104 0 184.5 35.5t131 99t79 142.5t36.5 175h-861q7 -95 35.5 -174.5t79 -143t131 -99t184.5 -35.5z" /> + <glyph glyph-name="uni04D9" unicode="ә" horiz-adv-x="1058" +d="M503 1017q120 0 215.5 -42t154 -114t88.5 -163t30 -194q0 -101 -29 -193t-85 -166.5t-148.5 -119t-209.5 -44.5q-99 0 -178 30.5t-128.5 80t-83 116t-47 134t-13.5 138.5q0 64 7 90h689q-11 116 -76.5 185t-186.5 69q-155 0 -252 -106l-148 127q160 172 401 172zM765 411 +h-487q10 -116 71.5 -183.5t171.5 -67.5t169.5 69t74.5 182z" /> + <glyph glyph-name="uni04E2" unicode="Ӣ" horiz-adv-x="1443" +d="M445 1571v138h553v-138h-553zM1252 0h-218v1071l-595 -1071h-247v1413h216v-1069l599 1069h245v-1413z" /> + <glyph glyph-name="uni04E3" unicode="ӣ" horiz-adv-x="1151" +d="M293 1158v138h553v-138h-553zM481 -21q-181 0 -269.5 127.5t-88.5 349.5v543h217v-552q0 -63 8 -110t28.5 -86.5t59 -60t94.5 -20.5q51 0 94.5 18.5t79.5 57t57 108t21 163.5v482h217v-999h-217v133q-48 -71 -126.5 -112.5t-174.5 -41.5z" /> + <glyph glyph-name="uni04E8" unicode="Ө" horiz-adv-x="1524" +d="M761 -20q-166 0 -295.5 58.5t-209 160t-120.5 230.5t-41 278t41 278t120.5 230.5t209 160t295.5 58.5q134 0 245 -38.5t188.5 -105.5t131 -159.5t78.5 -199t25 -224.5t-25 -224.5t-78.5 -199t-131 -159.5t-188.5 -105.5t-245 -38.5zM331 794h859q-9 94 -38 171 +t-79.5 138.5t-130 95.5t-181.5 34t-182 -34t-130.5 -95.5t-79.5 -139t-38 -170.5zM761 180q104 0 184.5 35.5t131 99t79 142.5t36.5 175h-861q7 -95 35.5 -174.5t79 -143t131 -99t184.5 -35.5z" /> + <glyph glyph-name="uni04E9" unicode="ө" horiz-adv-x="1140" +d="M569 -20q-147 0 -263.5 69.5t-180 187.5t-63.5 259t63.5 258.5t180.5 187.5t263 70t263 -70t180.5 -187.5t63.5 -258.5t-63.5 -259t-180 -187.5t-263.5 -69.5zM302 582h532q-19 110 -84.5 176.5t-180.5 66.5q-116 0 -182 -66.5t-85 -176.5zM569 166q118 0 183.5 70 +t81.5 184h-532q16 -114 82 -184t185 -70z" /> + <glyph glyph-name="uni04EE" unicode="Ӯ" horiz-adv-x="1112" +d="M279 1572v138h553v-138h-553zM232 0l194 457l-398 955h239l278 -712l299 712h239l-615 -1412h-236z" /> + <glyph glyph-name="uni04EF" unicode="ӯ" horiz-adv-x="1014" +d="M230 1158v138h553v-138h-553zM217 -430l178 450l-388 979h236l263 -732l266 732h236l-561 -1429h-230z" /> + <glyph glyph-name="Wgrave" unicode="Ẁ" horiz-adv-x="1994" +d="M930 1515l-292 303h239l223 -303h-170zM456 0l-416 1413h232l312 -1096l325 1014h175l326 -1014l311 1096h233l-416 -1413h-223l-317 975l-319 -975h-223z" /> + <glyph glyph-name="wgrave" unicode="ẁ" horiz-adv-x="1452" +d="M660 1110l-292 303h239l223 -303h-170zM321 -3l-298 1002h228l181 -681l201 681h186l201 -679l182 679h229l-301 -999h-196l-207 704l-210 -707h-196z" /> + <glyph glyph-name="Wacute" unicode="Ẃ" horiz-adv-x="1994" +d="M886 1529l223 289h239l-298 -289h-164zM456 0l-416 1413h232l312 -1096l325 1014h175l326 -1014l311 1096h233l-416 -1413h-223l-317 975l-319 -975h-223z" /> + <glyph glyph-name="wacute" unicode="ẃ" horiz-adv-x="1452" +d="M616 1124l223 289h239l-298 -289h-164zM321 -3l-298 1002h228l181 -681l201 681h186l201 -679l182 679h229l-301 -999h-196l-207 704l-210 -707h-196z" /> + <glyph glyph-name="Wdieresis" unicode="Ẅ" horiz-adv-x="1994" +d="M725 1603v215h194v-215h-194zM1074 1603v215h194v-215h-194zM456 0l-416 1413h232l312 -1096l325 1014h175l326 -1014l311 1096h233l-416 -1413h-223l-317 975l-319 -975h-223z" /> + <glyph glyph-name="wdieresis" unicode="ẅ" horiz-adv-x="1452" +d="M455 1198v215h194v-215h-194zM804 1198v215h194v-215h-194zM321 -3l-298 1002h228l181 -681l201 681h186l201 -679l182 679h229l-301 -999h-196l-207 704l-210 -707h-196z" /> + <glyph glyph-name="uni1EA4" unicode="Ấ" horiz-adv-x="1332" +d="M554 1950l223 289h239l-298 -289h-164zM345 1511l319 353l321 -353h-180l-141 158l-139 -158h-180zM28 0l555 1413h169l552 -1413h-242l-109 307h-571l-110 -307h-244zM458 502h420l-210 582z" /> + <glyph glyph-name="uni1EA5" unicode="ấ" horiz-adv-x="1050" +d="M391 1537l223 289h239l-298 -289h-164zM182 1098l319 353l321 -353h-180l-141 158l-139 -158h-180zM413 -20q-154 0 -252.5 85t-98.5 233q0 290 411 290h250q0 114 -53.5 179.5t-158.5 65.5q-85 0 -147.5 -41t-100.5 -103l-163 119q156 212 407 212q197 0 308 -113 +t111 -299v-608h-177l-13 159q-110 -179 -323 -179zM442 161q116 0 197.5 82.5t83.5 188.5h-236q-101 0 -153 -37.5t-52 -103.5q0 -61 43.5 -95.5t116.5 -34.5z" /> + <glyph glyph-name="uni1EA6" unicode="Ầ" horiz-adv-x="1332" +d="M598 1936l-292 303h239l223 -303h-170zM345 1511l319 353l321 -353h-180l-141 158l-139 -158h-180zM28 0l555 1413h169l552 -1413h-242l-109 307h-571l-110 -307h-244zM458 502h420l-210 582z" /> + <glyph glyph-name="uni1EA7" unicode="ầ" horiz-adv-x="1050" +d="M435 1523l-292 303h239l223 -303h-170zM182 1098l319 353l321 -353h-180l-141 158l-139 -158h-180zM413 -20q-154 0 -252.5 85t-98.5 233q0 290 411 290h250q0 114 -53.5 179.5t-158.5 65.5q-85 0 -147.5 -41t-100.5 -103l-163 119q156 212 407 212q197 0 308 -113 +t111 -299v-608h-177l-13 159q-110 -179 -323 -179zM442 161q116 0 197.5 82.5t83.5 188.5h-236q-101 0 -153 -37.5t-52 -103.5q0 -61 43.5 -95.5t116.5 -34.5z" /> + <glyph glyph-name="uni1EAA" unicode="Ẫ" horiz-adv-x="1332" +d="M791 1945q-42 0 -77 15t-58 36.5t-43 43.5t-40 37t-41 15q-32 0 -49.5 -36.5t-17.5 -100.5h-126q0 130 52.5 202.5t146.5 72.5q48 0 89.5 -23t64.5 -50.5t50 -50.5t51 -23q30 0 47 37t17 104h133q0 -134 -52.5 -206.5t-146.5 -72.5zM345 1511l319 353l321 -353h-180 +l-141 158l-139 -158h-180zM28 0l555 1413h169l552 -1413h-242l-109 307h-571l-110 -307h-244zM458 502h420l-210 582z" /> + <glyph glyph-name="uni1EAB" unicode="ẫ" horiz-adv-x="1050" +d="M628 1532q-42 0 -77 15t-58 37t-43 43.5t-40 36.5t-41 15q-32 0 -49.5 -36.5t-17.5 -100.5h-126q0 130 52.5 202.5t146.5 72.5q48 0 89.5 -23t64.5 -50.5t50 -50.5t51 -23q30 0 47 37t17 104h133q0 -134 -52.5 -206.5t-146.5 -72.5zM182 1098l319 353l321 -353h-180 +l-141 158l-139 -158h-180zM413 -20q-154 0 -252.5 85t-98.5 233q0 290 411 290h250q0 114 -53.5 179.5t-158.5 65.5q-85 0 -147.5 -41t-100.5 -103l-163 119q156 212 407 212q197 0 308 -113t111 -299v-608h-177l-13 159q-110 -179 -323 -179zM442 161q116 0 197.5 82.5 +t83.5 188.5h-236q-101 0 -153 -37.5t-52 -103.5q0 -61 43.5 -95.5t116.5 -34.5z" /> + <glyph glyph-name="uni1EAE" unicode="Ắ" horiz-adv-x="1332" +d="M554 1951l223 289h239l-298 -289h-164zM666 1556q-154 0 -233.5 69.5t-79.5 200.5h161q0 -65 42.5 -100.5t109.5 -35.5t109 36t42 100h161q0 -134 -80.5 -202t-231.5 -68zM28 0l555 1413h169l552 -1413h-242l-109 307h-571l-110 -307h-244zM458 502h420l-210 582z" /> + <glyph glyph-name="uni1EAF" unicode="ắ" horiz-adv-x="1050" +d="M391 1538l223 289h239l-298 -289h-164zM503 1143q-154 0 -233.5 69.5t-79.5 200.5h161q0 -65 42.5 -100.5t109.5 -35.5t109 36t42 100h161q0 -134 -80.5 -202t-231.5 -68zM413 -20q-154 0 -252.5 85t-98.5 233q0 290 411 290h250q0 114 -53.5 179.5t-158.5 65.5 +q-85 0 -147.5 -41t-100.5 -103l-163 119q156 212 407 212q197 0 308 -113t111 -299v-608h-177l-13 159q-110 -179 -323 -179zM442 161q116 0 197.5 82.5t83.5 188.5h-236q-101 0 -153 -37.5t-52 -103.5q0 -61 43.5 -95.5t116.5 -34.5z" /> + <glyph glyph-name="uni1EB0" unicode="Ằ" horiz-adv-x="1332" +d="M598 1937l-292 303h239l223 -303h-170zM666 1556q-154 0 -233.5 69.5t-79.5 200.5h161q0 -65 42.5 -100.5t109.5 -35.5t109 36t42 100h161q0 -134 -80.5 -202t-231.5 -68zM28 0l555 1413h169l552 -1413h-242l-109 307h-571l-110 -307h-244zM458 502h420l-210 582z" /> + <glyph glyph-name="uni1EB1" unicode="ằ" horiz-adv-x="1050" +d="M435 1524l-292 303h239l223 -303h-170zM503 1143q-154 0 -233.5 69.5t-79.5 200.5h161q0 -65 42.5 -100.5t109.5 -35.5t109 36t42 100h161q0 -134 -80.5 -202t-231.5 -68zM413 -20q-154 0 -252.5 85t-98.5 233q0 290 411 290h250q0 114 -53.5 179.5t-158.5 65.5 +q-85 0 -147.5 -41t-100.5 -103l-163 119q156 212 407 212q197 0 308 -113t111 -299v-608h-177l-13 159q-110 -179 -323 -179zM442 161q116 0 197.5 82.5t83.5 188.5h-236q-101 0 -153 -37.5t-52 -103.5q0 -61 43.5 -95.5t116.5 -34.5z" /> + <glyph glyph-name="uni1EB4" unicode="Ẵ" horiz-adv-x="1332" +d="M791 1946q-42 0 -77 15t-58 37t-43 43.5t-40 36.5t-41 15q-32 0 -49.5 -36.5t-17.5 -100.5h-126q0 130 52.5 202.5t146.5 72.5q48 0 89.5 -23t64.5 -50.5t50 -50.5t51 -23q30 0 47 37t17 104h133q0 -134 -52.5 -206.5t-146.5 -72.5zM666 1556q-154 0 -233.5 69.5 +t-79.5 200.5h161q0 -65 42.5 -100.5t109.5 -35.5t109 36t42 100h161q0 -134 -80.5 -202t-231.5 -68zM28 0l555 1413h169l552 -1413h-242l-109 307h-571l-110 -307h-244zM458 502h420l-210 582z" /> + <glyph glyph-name="uni1EB5" unicode="ẵ" horiz-adv-x="1050" +d="M628 1533q-42 0 -77 15t-58 36.5t-43 43.5t-40 37t-41 15q-32 0 -49.5 -36.5t-17.5 -100.5h-126q0 130 52.5 202.5t146.5 72.5q48 0 89.5 -23t64.5 -50.5t50 -50.5t51 -23q30 0 47 37t17 104h133q0 -134 -52.5 -206.5t-146.5 -72.5zM503 1143q-154 0 -233.5 69.5 +t-79.5 200.5h161q0 -65 42.5 -100.5t109.5 -35.5t109 36t42 100h161q0 -134 -80.5 -202t-231.5 -68zM413 -20q-154 0 -252.5 85t-98.5 233q0 290 411 290h250q0 114 -53.5 179.5t-158.5 65.5q-85 0 -147.5 -41t-100.5 -103l-163 119q156 212 407 212q197 0 308 -113 +t111 -299v-608h-177l-13 159q-110 -179 -323 -179zM442 161q116 0 197.5 82.5t83.5 188.5h-236q-101 0 -153 -37.5t-52 -103.5q0 -61 43.5 -95.5t116.5 -34.5z" /> + <glyph glyph-name="uni1EBC" unicode="Ẽ" horiz-adv-x="1243" +d="M760 1532q-42 0 -77 15t-58 37t-43 43.5t-40 36.5t-41 15q-32 0 -49.5 -36.5t-17.5 -100.5h-126q0 130 52.5 202.5t146.5 72.5q48 0 89.5 -23t64.5 -50.5t50 -50.5t51 -23q30 0 47 37t17 104h133q0 -134 -52.5 -206.5t-146.5 -72.5zM191 0v1413h933v-203h-708v-402h644 +v-202h-644v-396h708v-210h-933z" /> + <glyph glyph-name="uni1EBD" unicode="ẽ" horiz-adv-x="1058" +d="M647 1119q-42 0 -77 15t-58 36.5t-43 43.5t-40 37t-41 15q-32 0 -49.5 -36.5t-17.5 -100.5h-126q0 130 52.5 202.5t146.5 72.5q48 0 89.5 -23t64.5 -50.5t50 -50.5t51 -23q30 0 47 37t17 104h133q0 -134 -52.5 -206.5t-146.5 -72.5zM555 -18q-120 0 -215.5 42t-154 114 +t-88.5 163t-30 194q0 101 29 193t85 166.5t148.5 119t209.5 44.5q99 0 178 -30.5t128.5 -80t83 -116t47 -134t13.5 -138.5q0 -64 -7 -90h-689q11 -116 76.5 -185t186.5 -69q155 0 252 106l148 -127q-160 -172 -401 -172zM293 588h487q-10 116 -71.5 183.5t-171.5 67.5 +t-169.5 -69t-74.5 -182z" /> + <glyph glyph-name="uni1EBE" unicode="Ế" horiz-adv-x="1243" +d="M523 1950l223 289h239l-298 -289h-164zM314 1511l319 353l321 -353h-180l-141 158l-139 -158h-180zM191 0v1413h933v-203h-708v-402h644v-202h-644v-396h708v-210h-933z" /> + <glyph glyph-name="uni1EBF" unicode="ế" horiz-adv-x="1058" +d="M410 1537l223 289h239l-298 -289h-164zM201 1098l319 353l321 -353h-180l-141 158l-139 -158h-180zM555 -18q-120 0 -215.5 42t-154 114t-88.5 163t-30 194q0 101 29 193t85 166.5t148.5 119t209.5 44.5q99 0 178 -30.5t128.5 -80t83 -116t47 -134t13.5 -138.5 +q0 -64 -7 -90h-689q11 -116 76.5 -185t186.5 -69q155 0 252 106l148 -127q-160 -172 -401 -172zM293 588h487q-10 116 -71.5 183.5t-171.5 67.5t-169.5 -69t-74.5 -182z" /> + <glyph glyph-name="uni1EC0" unicode="Ề" horiz-adv-x="1243" +d="M567 1936l-292 303h239l223 -303h-170zM314 1511l319 353l321 -353h-180l-141 158l-139 -158h-180zM191 0v1413h933v-203h-708v-402h644v-202h-644v-396h708v-210h-933z" /> + <glyph glyph-name="uni1EC1" unicode="ề" horiz-adv-x="1058" +d="M454 1523l-292 303h239l223 -303h-170zM201 1098l319 353l321 -353h-180l-141 158l-139 -158h-180zM555 -18q-120 0 -215.5 42t-154 114t-88.5 163t-30 194q0 101 29 193t85 166.5t148.5 119t209.5 44.5q99 0 178 -30.5t128.5 -80t83 -116t47 -134t13.5 -138.5 +q0 -64 -7 -90h-689q11 -116 76.5 -185t186.5 -69q155 0 252 106l148 -127q-160 -172 -401 -172zM293 588h487q-10 116 -71.5 183.5t-171.5 67.5t-169.5 -69t-74.5 -182z" /> + <glyph glyph-name="uni1EC4" unicode="Ễ" horiz-adv-x="1243" +d="M760 1945q-42 0 -77 15t-58 36.5t-43 43.5t-40 37t-41 15q-32 0 -49.5 -36.5t-17.5 -100.5h-126q0 130 52.5 202.5t146.5 72.5q48 0 89.5 -23t64.5 -50.5t50 -50.5t51 -23q30 0 47 37t17 104h133q0 -134 -52.5 -206.5t-146.5 -72.5zM314 1511l319 353l321 -353h-180 +l-141 158l-139 -158h-180zM191 0v1413h933v-203h-708v-402h644v-202h-644v-396h708v-210h-933z" /> + <glyph glyph-name="uni1EC5" unicode="ễ" horiz-adv-x="1058" +d="M647 1532q-42 0 -77 15t-58 37t-43 43.5t-40 36.5t-41 15q-32 0 -49.5 -36.5t-17.5 -100.5h-126q0 130 52.5 202.5t146.5 72.5q48 0 89.5 -23t64.5 -50.5t50 -50.5t51 -23q30 0 47 37t17 104h133q0 -134 -52.5 -206.5t-146.5 -72.5zM201 1098l319 353l321 -353h-180 +l-141 158l-139 -158h-180zM555 -18q-120 0 -215.5 42t-154 114t-88.5 163t-30 194q0 101 29 193t85 166.5t148.5 119t209.5 44.5q99 0 178 -30.5t128.5 -80t83 -116t47 -134t13.5 -138.5q0 -64 -7 -90h-689q11 -116 76.5 -185t186.5 -69q155 0 252 106l148 -127 +q-160 -172 -401 -172zM293 588h487q-10 116 -71.5 183.5t-171.5 67.5t-169.5 -69t-74.5 -182z" /> + <glyph glyph-name="uni1ED0" unicode="Ố" horiz-adv-x="1524" +d="M649 1950l223 289h239l-298 -289h-164zM440 1511l319 353l321 -353h-180l-141 158l-139 -158h-180zM761 -20q-133 0 -243.5 38.5t-188 105.5t-131 159.5t-78.5 199t-25 224.5t25 224.5t78.5 198.5t131 159.5t188 106t243.5 38.5q134 0 245 -38.5t188 -106t131 -159.5 +t79 -198.5t25 -224.5t-25 -224.5t-79 -199t-131.5 -159.5t-188 -105.5t-244.5 -38.5zM761 180q114 0 200.5 42.5t136.5 117.5t74.5 167t24.5 200q0 86 -14.5 161.5t-48 143t-83 116t-124 77t-166.5 28.5t-165.5 -28.5t-123 -77t-82.5 -116t-47.5 -143t-14.5 -161.5 +q0 -108 24 -200t74 -167t135.5 -117.5t199.5 -42.5z" /> + <glyph glyph-name="uni1ED1" unicode="ố" horiz-adv-x="1125" +d="M450 1537l223 289h239l-298 -289h-164zM241 1098l319 353l321 -353h-180l-141 158l-139 -158h-180zM561 -20q-110 0 -204 42t-158.5 113t-100.5 166t-36 201q0 142 61.5 259.5t176.5 188t261 70.5q147 0 262.5 -70.5t177 -188t61.5 -259.5t-61.5 -260.5t-177.5 -190 +t-262 -71.5zM562 163q94 0 158.5 49.5t92 123.5t27.5 166q0 143 -70 238.5t-208 95.5t-208 -95.5t-70 -238.5q0 -92 27.5 -166.5t92 -123.5t158.5 -49z" /> + <glyph glyph-name="uni1ED2" unicode="Ồ" horiz-adv-x="1524" +d="M693 1936l-292 303h239l223 -303h-170zM440 1511l319 353l321 -353h-180l-141 158l-139 -158h-180zM761 -20q-133 0 -243.5 38.5t-188 105.5t-131 159.5t-78.5 199t-25 224.5t25 224.5t78.5 198.5t131 159.5t188 106t243.5 38.5q134 0 245 -38.5t188 -106t131 -159.5 +t79 -198.5t25 -224.5t-25 -224.5t-79 -199t-131.5 -159.5t-188 -105.5t-244.5 -38.5zM761 180q114 0 200.5 42.5t136.5 117.5t74.5 167t24.5 200q0 86 -14.5 161.5t-48 143t-83 116t-124 77t-166.5 28.5t-165.5 -28.5t-123 -77t-82.5 -116t-47.5 -143t-14.5 -161.5 +q0 -108 24 -200t74 -167t135.5 -117.5t199.5 -42.5z" /> + <glyph glyph-name="uni1ED3" unicode="ồ" horiz-adv-x="1125" +d="M494 1523l-292 303h239l223 -303h-170zM241 1098l319 353l321 -353h-180l-141 158l-139 -158h-180zM561 -20q-110 0 -204 42t-158.5 113t-100.5 166t-36 201q0 142 61.5 259.5t176.5 188t261 70.5q147 0 262.5 -70.5t177 -188t61.5 -259.5t-61.5 -260.5t-177.5 -190 +t-262 -71.5zM562 163q94 0 158.5 49.5t92 123.5t27.5 166q0 143 -70 238.5t-208 95.5t-208 -95.5t-70 -238.5q0 -92 27.5 -166.5t92 -123.5t158.5 -49z" /> + <glyph glyph-name="uni1ED6" unicode="Ỗ" horiz-adv-x="1524" +d="M886 1945q-42 0 -77 15t-58 36.5t-43 43.5t-40 37t-41 15q-32 0 -49.5 -36.5t-17.5 -100.5h-126q0 130 52.5 202.5t146.5 72.5q48 0 89.5 -23t64.5 -50.5t50 -50.5t51 -23q30 0 47 37t17 104h133q0 -134 -52.5 -206.5t-146.5 -72.5zM440 1511l319 353l321 -353h-180 +l-141 158l-139 -158h-180zM761 -20q-133 0 -243.5 38.5t-188 105.5t-131 159.5t-78.5 199t-25 224.5t25 224.5t78.5 198.5t131 159.5t188 106t243.5 38.5q134 0 245 -38.5t188 -106t131 -159.5t79 -198.5t25 -224.5t-25 -224.5t-79 -199t-131.5 -159.5t-188 -105.5 +t-244.5 -38.5zM761 180q114 0 200.5 42.5t136.5 117.5t74.5 167t24.5 200q0 86 -14.5 161.5t-48 143t-83 116t-124 77t-166.5 28.5t-165.5 -28.5t-123 -77t-82.5 -116t-47.5 -143t-14.5 -161.5q0 -108 24 -200t74 -167t135.5 -117.5t199.5 -42.5z" /> + <glyph glyph-name="uni1ED7" unicode="ỗ" horiz-adv-x="1125" +d="M687 1532q-42 0 -77 15t-58 37t-43 43.5t-40 36.5t-41 15q-32 0 -49.5 -36.5t-17.5 -100.5h-126q0 130 52.5 202.5t146.5 72.5q48 0 89.5 -23t64.5 -50.5t50 -50.5t51 -23q30 0 47 37t17 104h133q0 -134 -52.5 -206.5t-146.5 -72.5zM241 1098l319 353l321 -353h-180 +l-141 158l-139 -158h-180zM561 -20q-110 0 -204 42t-158.5 113t-100.5 166t-36 201q0 142 61.5 259.5t176.5 188t261 70.5q147 0 262.5 -70.5t177 -188t61.5 -259.5t-61.5 -260.5t-177.5 -190t-262 -71.5zM562 163q94 0 158.5 49.5t92 123.5t27.5 166q0 143 -70 238.5 +t-208 95.5t-208 -95.5t-70 -238.5q0 -92 27.5 -166.5t92 -123.5t158.5 -49z" /> + <glyph glyph-name="Ygrave" unicode="Ỳ" horiz-adv-x="1318" +d="M589 1523l-292 303h239l223 -303h-170zM545 0v551l-530 862h269l373 -643l376 643h270l-528 -862v-551h-230z" /> + <glyph glyph-name="ygrave" unicode="ỳ" horiz-adv-x="1014" +d="M438 1110l-292 303h239l223 -303h-170zM216 -430l180 450l-389 979h236l264 -732l265 732h236l-561 -1429h-231z" /> + <glyph glyph-name="uni1EF8" unicode="Ỹ" horiz-adv-x="1318" +d="M782 1532q-42 0 -77 15t-58 37t-43 43.5t-40 36.5t-41 15q-32 0 -49.5 -36.5t-17.5 -100.5h-126q0 130 52.5 202.5t146.5 72.5q48 0 89.5 -23t64.5 -50.5t50 -50.5t51 -23q30 0 47 37t17 104h133q0 -134 -52.5 -206.5t-146.5 -72.5zM545 0v551l-530 862h269l373 -643 +l376 643h270l-528 -862v-551h-230z" /> + <glyph glyph-name="uni1EF9" unicode="ỹ" horiz-adv-x="1014" +d="M631 1119q-42 0 -77 15t-58 36.5t-43 43.5t-40 37t-41 15q-32 0 -49.5 -36.5t-17.5 -100.5h-126q0 130 52.5 202.5t146.5 72.5q48 0 89.5 -23t64.5 -50.5t50 -50.5t51 -23q30 0 47 37t17 104h133q0 -134 -52.5 -206.5t-146.5 -72.5zM216 -430l180 450l-389 979h236 +l264 -732l265 732h236l-561 -1429h-231z" /> + <glyph glyph-name="endash" unicode="–" horiz-adv-x="1041" +d="M147 530v162h746v-162h-746z" /> + <glyph glyph-name="emdash" unicode="—" horiz-adv-x="2048" +d="M0 530v162h2048v-162h-2048z" /> + <glyph glyph-name="uni2015" unicode="―" horiz-adv-x="1532" +d="M147 530v162h1238v-162h-1238z" /> + <glyph glyph-name="quoteleft" unicode="‘" horiz-adv-x="569" +d="M312 878l-242 535h251l132 -535h-141z" /> + <glyph glyph-name="quoteright" unicode="’" horiz-adv-x="569" +d="M116 878l132 535h251l-242 -535h-141z" /> + <glyph glyph-name="quotesinglbase" unicode="‚" horiz-adv-x="556" +d="M117 -225l130 489h236l-238 -489h-128z" /> + <glyph glyph-name="quotedblleft" unicode="“" horiz-adv-x="933" +d="M312 878l-242 535h251l132 -535h-141zM676 878l-242 535h251l132 -535h-141z" /> + <glyph glyph-name="quotedblright" unicode="”" horiz-adv-x="933" +d="M116 878l132 535h251l-242 -535h-141zM480 878l133 535h250l-242 -535h-141z" /> + <glyph glyph-name="quotedblbase" unicode="„" horiz-adv-x="893" +d="M117 -225l130 489h236l-238 -489h-128zM455 -225l130 489h236l-238 -489h-128z" /> + <glyph glyph-name="dagger" unicode="†" horiz-adv-x="787" +d="M294 -205v1025h-221v199h221v394h199v-394h221v-199h-221v-1025h-199z" /> + <glyph glyph-name="daggerdbl" unicode="‡" horiz-adv-x="888" +d="M345 -205v394h-222v200h222v431h-222v199h222v394h199v-394h221v-199h-221v-431h221v-200h-221v-394h-199z" /> + <glyph glyph-name="bullet" unicode="•" horiz-adv-x="778" +d="M389 244q-98 0 -167.5 69.5t-69.5 167.5t69.5 168t167.5 70t168 -70t70 -168t-70 -167.5t-168 -69.5z" /> + <glyph glyph-name="uni2023" unicode="‣" horiz-adv-x="879" +d="M215 173v692l597 -346z" /> + <glyph glyph-name="twodotenleader" unicode="‥" horiz-adv-x="1065" +d="M210 0v242h231v-242h-231zM624 0v242h231v-242h-231z" /> + <glyph glyph-name="ellipsis" unicode="…" horiz-adv-x="1479" +d="M210 0v242h231v-242h-231zM624 0v242h231v-242h-231zM1038 0v242h231v-242h-231z" /> + <glyph glyph-name="perthousand" unicode="‰" horiz-adv-x="2176" +d="M286 -13l779 1452h186l-778 -1452h-187zM366 779q-61 0 -109.5 22t-78 56t-49.5 79t-28 87t-8 84q0 54 13.5 107t42 105t83.5 84.5t128 32.5q68 0 121.5 -29.5t85.5 -78.5t48.5 -106t16.5 -117q0 -80 -27 -152t-89.5 -123t-149.5 -51zM362 929q52 0 81.5 53t29.5 125 +q0 73 -30 125t-83 52q-54 0 -83.5 -51.5t-29.5 -125.5t30 -126t85 -52zM1193 -6q-61 0 -109.5 22t-78 56.5t-49.5 79.5t-28 87.5t-8 84.5q0 54 13.5 108t42 106.5t83.5 85t128 32.5q68 0 122 -29.5t85.5 -78.5t48 -106.5t16.5 -117.5t-16 -117t-47 -105.5t-84 -78 +t-119 -29.5zM1818 -6q-61 0 -109.5 22t-78.5 56.5t-50 79.5t-28 87.5t-8 84.5t7.5 85t27.5 88.5t49 80t76.5 56.5t106.5 22q55 0 101 -19.5t77 -52.5t53 -76t32 -89.5t10 -94.5q0 -60 -16 -117t-47.5 -105.5t-84 -78t-118.5 -29.5zM1191 143q51 0 80.5 54.5t29.5 128.5 +t-30 126.5t-84 52.5q-53 0 -83 -52.5t-30 -128.5q0 -75 30.5 -128t86.5 -53zM1815 143q51 0 80.5 54.5t29.5 128.5t-30 126.5t-84 52.5t-83 -52.5t-29 -128.5q0 -75 30 -128t86 -53z" /> + <glyph glyph-name="uni2031" unicode="‱" horiz-adv-x="2792" +d="M286 -13l779 1452h186l-778 -1452h-187zM366 779q-61 0 -109.5 22t-78 56t-49.5 79t-28 87t-8 84q0 54 13.5 107t42 105t83.5 84.5t128 32.5q67 0 120.5 -29.5t85.5 -78.5t48.5 -106t16.5 -117q0 -80 -27 -152t-89 -123t-149 -51zM362 929q52 0 81.5 53t29.5 125 +q0 74 -30 126t-83 52q-54 0 -84 -52t-30 -126t30.5 -126t85.5 -52zM1193 -6q-61 0 -109.5 22t-78 56.5t-49.5 79.5t-28 87.5t-8 84.5q0 54 13.5 108t42 106.5t83.5 85t128 32.5q68 0 122 -30t85.5 -79t48 -106t16.5 -117t-16 -117t-47.5 -105.5t-84 -78t-118.5 -29.5z +M1817 -6q-61 0 -109.5 22t-78 56.5t-49.5 79.5t-28 87.5t-8 84.5q0 54 13.5 108t42 106.5t83.5 85t128 32.5q67 0 121 -30t85.5 -79t48 -106t16.5 -117t-16 -117t-47 -105.5t-83.5 -78t-118.5 -29.5zM2435 -6q-61 0 -109.5 22t-78 56.5t-49.5 79.5t-28 87.5t-8 84.5 +q0 54 13.5 108t42 106.5t83.5 85t128 32.5q67 0 121 -30t85.5 -79t48 -106t16.5 -117t-16 -117t-47 -105.5t-83.5 -78t-118.5 -29.5zM1191 143q51 0 80.5 54.5t29.5 128.5t-30 126.5t-84 52.5q-53 0 -83 -52.5t-30 -128.5t30 -128.5t87 -52.5zM1814 143q51 0 81 54t30 129 +q0 74 -30 126.5t-84 52.5t-84 -52.5t-30 -128.5q0 -75 30.5 -128t86.5 -53zM2431 143q52 0 82 54t30 129q0 74 -30 126.5t-84 52.5t-84 -52.5t-30 -128.5q0 -75 30.5 -128t85.5 -53z" /> + <glyph glyph-name="guilsinglleft" unicode="‹" horiz-adv-x="594" +d="M441 165l-410 345l410 347v-195l-184 -152l184 -150v-195z" /> + <glyph glyph-name="guilsinglright" unicode="›" horiz-adv-x="595" +d="M151 165v195l184 150l-184 152v195l410 -347z" /> + <glyph glyph-name="fraction" unicode="⁄" horiz-adv-x="826" +d="M-82 0l780 1413h210l-779 -1413h-211z" /> + <glyph glyph-name="Euro" unicode="€" horiz-adv-x="1269" +d="M785 -20q-105 0 -192 36t-149.5 101.5t-104.5 151t-65 190.5h-162l70 164h69q-2 29 -2 84q0 8 3 95h-140l70 167h94q49 213 177 340t330 127q241 0 387 -201l-140 -112q-83 118 -248 118q-122 0 -202 -73t-120 -199h529l-70 -165h-488q-4 -58 -4 -84q0 -36 4 -92h558 +l-70 -164h-459q39 -136 120 -213t205 -77q156 0 241 122l132 -134q-71 -89 -166.5 -135.5t-206.5 -46.5z" /> + <glyph glyph-name="uni20B1" unicode="₱" horiz-adv-x="1350" +d="M1264 1061v-104h-126q-17 -169 -147.5 -262t-334.5 -93h-206v-602h-223v957h-88v104h88v352h429q199 0 329.5 -93t151.5 -259h127zM450 1206v-145h461q-34 145 -255 145h-206zM656 809q227 0 258 148h-464v-148h206z" /> + <glyph glyph-name="uni20B3" unicode="₳" horiz-adv-x="1332" +d="M1184 307l120 -307h-242l-109 307h-571l-110 -307h-244l121 307h-102v143h158l81 206h-239v143h295l241 614h169l240 -614h292v-143h-236l80 -206h156v-143h-100zM666 1140l-119 -341h240zM496 656l-72 -206h487l-73 206h-342z" /> + <glyph glyph-name="uni20B4" unicode="₴" horiz-adv-x="1253" +d="M916 445l220 -57q-16 -99 -65.5 -177t-121.5 -127t-158 -74.5t-179 -25.5q-133 0 -240.5 50t-171.5 147.5t-64 225.5q0 55 14.5 103t30.5 82t56 69.5t61.5 53t79.5 46t76.5 36.5t83.5 34l51 21h-342v126h540q29 40 29 91q0 74 -55.5 120.5t-136.5 46.5q-75 0 -139 -40 +t-102 -115l-182 113q68 121 176.5 180.5t242.5 59.5q178 0 300 -103t122 -277q0 -39 -7.5 -73.5t-18 -61.5t-31 -52t-38 -42.5t-47.5 -35t-51.5 -28.5t-57.5 -24.5t-58 -21t-60.5 -19.5t-58.5 -19h395v-127h-610q-37 -53 -37 -126q0 -115 65 -174.5t182 -59.5 +q123 0 208.5 65.5t98.5 189.5z" /> + <glyph glyph-name="uni20B8" unicode="₸" horiz-adv-x="1391" +d="M130 1215v198h1131v-198h-1131zM584 0v898h-454v196h1131v-196h-454v-898h-223z" /> + <glyph glyph-name="uni20BD" unicode="₽" horiz-adv-x="1347" +d="M324 0v292h-178v177h178v148h-178v192h178v604h428q217 0 350.5 -109t133.5 -300q0 -189 -132 -288t-352 -99h-206v-148h349v-177h-349v-292h-222zM546 809h206q263 0 263 195q0 97 -66 149.5t-197 52.5h-206v-397z" /> + <glyph glyph-name="uni2116" unicode="№" horiz-adv-x="2357" +d="M1558 583q0 -151 -84 -268t-223 -153v-162h-247l-140 252q-99 90 -129 232l-326 587v-1071h-218v1413h245l342 -611q85 159 257 201v410h216v-412q140 -36 223.5 -151.5t83.5 -266.5zM910 583v-16l125 -223v494q-63 -32 -94 -100.5t-31 -154.5zM1251 327 +q61 34 91.5 102.5t30.5 153.5t-30.5 152.5t-91.5 100.5v-509zM1446 166h788v-166h-788v166z" /> + <glyph glyph-name="trademark" unicode="™" horiz-adv-x="1371" +d="M284 877v419h-145v117h420v-117h-145v-419h-130zM638 877v536h132l121 -327l122 327h129v-536h-129v303l-77 -222h-88l-81 226v-307h-129z" /> + <glyph glyph-name="uni2126" unicode="Ω" horiz-adv-x="1675" +d="M155 0v181h295q-133 95 -212 240.5t-79 297.5q0 130 48 257t130 213q95 100 230 159t270 59q134 0 269 -59.5t231 -159.5q81 -86 129 -213.5t48 -259.5q0 -157 -73.5 -302.5t-197.5 -236.5h275v-176h-558v172q166 33 264.5 182.5t98.5 368.5q0 98 -31.5 188.5 +t-84.5 146.5q-69 76 -170 121t-200 45t-199 -45t-172 -121q-53 -57 -84.5 -147t-31.5 -188q0 -214 98.5 -363.5t264.5 -187.5v-172h-558z" /> + <glyph glyph-name="arrowleft" unicode="←" horiz-adv-x="2215" +d="M1036 92l-974 547l974 538l98 -171l-594 -284h1583v-175h-1572l583 -284z" /> + <glyph glyph-name="arrowright" unicode="→" horiz-adv-x="2215" +d="M1179 92l-98 171l583 284h-1571v175h1582l-594 284l98 171l974 -538z" /> + <glyph glyph-name="partialdiff" unicode="∂" horiz-adv-x="1290" +d="M561 -12q-207 0 -327.5 126.5t-120.5 329.5q0 121 44 228t118 181t172.5 116.5t205.5 42.5q159 0 280 -102q-3 176 -82 266t-208 90q-175 0 -242 -159l-167 49q53 130 164.5 201.5t263.5 71.5q101 0 182 -33t137.5 -92t94 -143.5t55 -185.5t17.5 -219q0 -220 -66 -391.5 +t-200.5 -274t-320.5 -102.5zM574 174q144 0 249 108.5t105 277.5q0 124 -64.5 198.5t-191.5 74.5q-84 0 -153.5 -34.5t-112.5 -91t-66 -124.5t-23 -139q0 -127 73.5 -198.5t183.5 -71.5z" /> + <glyph glyph-name="uni2206" unicode="∆" horiz-adv-x="1293" +d="M63 0l583 1471l584 -1471h-1167zM331 183h632l-317 830z" /> + <glyph glyph-name="product" unicode="∏" horiz-adv-x="1341" +d="M245 0v1230h-82v183h1015v-183h-82v-1230h-183v1230h-485v-1230h-183z" /> + <glyph glyph-name="summation" unicode="∑" horiz-adv-x="1268" +d="M93 0v93l572 614l-572 613v93h1060v-183h-733l505 -523l-505 -524h733v-183h-1060z" /> + <glyph glyph-name="minus" unicode="−" horiz-adv-x="1423" +d="M225 547v163h973v-163h-973z" /> + <glyph glyph-name="radical" unicode="√" horiz-adv-x="1192" +d="M497 -221l-273 773h-155v183h286l153 -484l449 1173l170 -64z" /> + <glyph glyph-name="infinity" unicode="∞" horiz-adv-x="1886" +d="M538 354q-180 0 -283.5 105t-103.5 276t103.5 276t283.5 105q108 0 215 -57.5t190 -164.5q83 107 190.5 164.5t215.5 57.5q179 0 282.5 -105t103.5 -276t-103.5 -276t-282.5 -105q-109 0 -216.5 58t-189.5 164q-83 -107 -190 -164.5t-215 -57.5zM568 529q70 0 147.5 54.5 +t130.5 151.5q-54 97 -131.5 152t-146.5 55q-102 0 -162 -54.5t-60 -152.5q0 -97 60 -151.5t162 -54.5zM1318 529q102 0 162 54.5t60 151.5q0 98 -60 152.5t-162 54.5q-70 0 -147.5 -55t-131.5 -152q56 -97 132.5 -151.5t146.5 -54.5z" /> + <glyph glyph-name="integral" unicode="∫" horiz-adv-x="928" +d="M58 -457v183q173 0 245.5 65.5t72.5 221.5v1130q0 132 84 218.5t206 86.5q119 0 217 -83l-118 -140q-48 41 -99 41q-44 0 -75.5 -32t-31.5 -96v-1129q0 -225 -134.5 -345.5t-366.5 -120.5z" /> + <glyph glyph-name="approxequal" unicode="≈" horiz-adv-x="1167" +d="M740 735q-61 0 -115 19.5t-85.5 42.5t-67.5 42.5t-66 19.5q-43 0 -57 -23.5t-13 -74.5h-148q0 120 56.5 183t159.5 63q71 0 128.5 -19t88 -41.5t64 -41.5t61.5 -19q46 0 61.5 26.5t15.5 88.5h156q0 -131 -60.5 -198.5t-178.5 -67.5zM740 388q-61 0 -115 19.5t-85.5 42.5 +t-67.5 42.5t-66 19.5q-43 0 -57 -23.5t-13 -74.5h-148q0 119 56.5 182.5t159.5 63.5q71 0 128.5 -19t88 -41t64 -41t61.5 -19q46 0 61.5 26t15.5 88h156q0 -266 -239 -266z" /> + <glyph glyph-name="notequal" unicode="≠" horiz-adv-x="1168" +d="M105 0l228 413h-151v172h243l94 174h-337v172h429l265 482h192l-265 -482h173v-172h-265l-94 -174h359v-172h-451l-228 -413h-192z" /> + <glyph glyph-name="lessequal" unicode="≤" horiz-adv-x="1318" +d="M1085 143l-958 534l958 534l92 -159l-698 -375l698 -375zM85 -162v162h1102v-162h-1102z" /> + <glyph glyph-name="greaterequal" unicode="≥" horiz-adv-x="1316" +d="M231 143l-92 159l699 375l-699 375l92 159l958 -534zM129 -162v162h1102v-162h-1102z" /> + <glyph glyph-name="lozenge" unicode="◊" horiz-adv-x="1107" +d="M458 0l-380 717l380 717h191l380 -717l-380 -717h-191zM553 203l259 514l-259 513l-258 -513z" /> + <glyph glyph-name="uniF8FF" unicode="" horiz-adv-x="1738" +d="M869 -61q-158 0 -301 61t-247 165t-165 247t-61 301t61 301t165 247t247 165t301 61t301 -61t247 -165t165 -247t61 -301t-61 -301t-165 -247t-247 -165t-301 -61zM869 10q143 0 273 55.5t224 149.5t149.5 224.5t55.5 273.5t-55.5 273t-149.5 224t-224 149.5t-273 55.5 +t-273.5 -55.5t-224.5 -149.5t-149.5 -224t-55.5 -273q0 -191 94 -353t256 -256t353 -94zM465 410q-14 0 -24 9.5t-10 24.5v537q0 15 10 26t24 11q16 0 26.5 -11t10.5 -26v-537q0 -15 -10.5 -24.5t-26.5 -9.5zM869 410q-16 0 -25.5 9.5t-9.5 24.5v537q0 15 10 26t25 11 +t25 -11t10 -26v-537q0 -15 -10 -24.5t-25 -9.5zM1270 410q-14 0 -22 10l-271 268q-8 11 -8 25q0 16 8 24l271 269q9 12 22 12q14 0 25.5 -11.5t11.5 -25.5t-10 -25l-244 -243l244 -244q10 -10 10 -25q0 -13 -11.5 -23.5t-25.5 -10.5zM601 678q-16 0 -25.5 9.5t-9.5 25.5 +q0 15 9.5 25t25.5 10h133q15 0 26 -10t11 -25t-11 -25t-26 -10h-133z" /> + <glyph glyph-name="c.001" horiz-adv-x="994" +d="M536 -20q-114 0 -205 43t-147.5 116t-86 165t-29.5 194q0 80 18 155.5t56 142.5t92 116.5t131.5 78.5t168.5 29q142 0 252 -77t167 -209l-203 -81q-21 79 -79 127t-137 48q-52 0 -94.5 -19t-70.5 -51t-47 -75t-27.5 -89.5t-8.5 -95.5q0 -64 13.5 -120t41.5 -103.5 +t77.5 -75.5t115.5 -28q78 0 136.5 47t79.5 124l192 -75q-47 -135 -154 -211t-252 -76z" /> + <glyph glyph-name="g.ss01" horiz-adv-x="1143" +d="M990 0q0 -204 -119.5 -320.5t-334.5 -116.5q-284 0 -428 210l164 119q37 -64 106 -103t161 -39q114 0 175 64t61 186v127q-98 -127 -287 -127q-102 0 -184 41t-134 111.5t-80 162t-28 194.5t28 195t80 162.5t133 112t180 41.5q88 0 165 -33.5t127 -98.5v111h216zM538 196 +q127 0 191 87.5t64 226.5q0 89 -26 158.5t-84.5 113.5t-144.5 44q-127 0 -192.5 -89.5t-65.5 -226.5q0 -138 65 -226t193 -88z" /> + <glyph glyph-name="g.ss04" horiz-adv-x="1068" +d="M656 162q66 0 124.5 -14.5t110.5 -46t82.5 -90t30.5 -138.5q0 -154 -113.5 -242.5t-333.5 -88.5q-139 0 -249.5 34t-180.5 109.5t-70 183.5q0 49 14 85l143 67q-132 78 -133 218q-2 133 116 210q-63 90 -63 206q0 160 114.5 261.5t286.5 101.5q137 0 239 -67l152 131 +l109 -137l-145 -120q44 -79 44 -177q0 -160 -114.5 -259.5t-284.5 -99.5q-120 0 -214 51q-40 -28 -40 -81q1 -52 41 -74.5t120 -22.5h214zM539 849q-88 0 -139.5 -56t-51.5 -142q0 -84 51 -137.5t140 -53.5q87 0 137.5 53.5t50.5 137.5q0 86 -51 142t-137 56zM554 -285 +q117 0 180.5 32.5t63.5 109.5q0 70 -55.5 97t-171.5 27h-216l-98 -92q0 -13 4 -29q14 -75 82.5 -110t210.5 -35z" /> + <glyph glyph-name="gbreve.ss01" horiz-adv-x="1143" +d="M529 1143q-154 0 -233.5 69.5t-79.5 200.5h161q0 -65 42.5 -100.5t109.5 -35.5t109 36t42 100h161q0 -134 -80.5 -202t-231.5 -68zM990 0q0 -204 -119.5 -320.5t-334.5 -116.5q-284 0 -428 210l164 119q37 -64 106 -103t161 -39q114 0 175 64t61 186v127 +q-98 -127 -287 -127q-102 0 -184 41t-134 111.5t-80 162t-28 194.5t28 195t80 162.5t133 112t180 41.5q88 0 165 -33.5t127 -98.5v111h216zM538 196q127 0 191 87.5t64 226.5q0 89 -26 158.5t-84.5 113.5t-144.5 44q-127 0 -192.5 -89.5t-65.5 -226.5q0 -138 65 -226 +t193 -88z" /> + <glyph glyph-name="gbreve.ss04" horiz-adv-x="1068" +d="M534 1143q-154 0 -233.5 69.5t-79.5 200.5h161q0 -65 42.5 -100.5t109.5 -35.5t109 36t42 100h161q0 -134 -80.5 -202t-231.5 -68zM656 162q66 0 124.5 -14.5t110.5 -46t82.5 -90t30.5 -138.5q0 -154 -113.5 -242.5t-333.5 -88.5q-139 0 -249.5 34t-180.5 109.5 +t-70 183.5q0 49 14 85l143 67q-132 78 -133 218q-2 133 116 210q-63 90 -63 206q0 160 114.5 261.5t286.5 101.5q137 0 239 -67l152 131l109 -137l-145 -120q44 -79 44 -177q0 -160 -114.5 -259.5t-284.5 -99.5q-120 0 -214 51q-40 -28 -40 -81q1 -52 41 -74.5t120 -22.5 +h214zM539 849q-88 0 -139.5 -56t-51.5 -142q0 -84 51 -137.5t140 -53.5q87 0 137.5 53.5t50.5 137.5q0 86 -51 142t-137 56zM554 -285q117 0 180.5 32.5t63.5 109.5q0 70 -55.5 97t-171.5 27h-216l-98 -92q0 -13 4 -29q14 -75 82.5 -110t210.5 -35z" /> + <glyph glyph-name="gcommaaccent.ss01" horiz-adv-x="1143" +d="M767 1406l-132 -310h-241l242 310h131zM990 0q0 -204 -119.5 -320.5t-334.5 -116.5q-284 0 -428 210l164 119q37 -64 106 -103t161 -39q114 0 175 64t61 186v127q-98 -127 -287 -127q-102 0 -184 41t-134 111.5t-80 162t-28 194.5t28 195t80 162.5t133 112t180 41.5 +q88 0 165 -33.5t127 -98.5v111h216zM538 196q127 0 191 87.5t64 226.5q0 89 -26 158.5t-84.5 113.5t-144.5 44q-127 0 -192.5 -89.5t-65.5 -226.5q0 -138 65 -226t193 -88z" /> + <glyph glyph-name="gcommaaccent.ss04" horiz-adv-x="1068" +d="M761 1431l-132 -310h-241l242 310h131zM656 162q66 0 124.5 -14.5t110.5 -46t82.5 -90t30.5 -138.5q0 -154 -113.5 -242.5t-333.5 -88.5q-139 0 -249.5 34t-180.5 109.5t-70 183.5q0 49 14 85l143 67q-132 78 -133 218q-2 133 116 210q-63 90 -63 206q0 160 114.5 261.5 +t286.5 101.5q137 0 239 -67l152 131l109 -137l-145 -120q44 -79 44 -177q0 -160 -114.5 -259.5t-284.5 -99.5q-120 0 -214 51q-40 -28 -40 -81q1 -52 41 -74.5t120 -22.5h214zM539 849q-88 0 -139.5 -56t-51.5 -142q0 -84 51 -137.5t140 -53.5q87 0 137.5 53.5t50.5 137.5 +q0 86 -51 142t-137 56zM554 -285q117 0 180.5 32.5t63.5 109.5q0 70 -55.5 97t-171.5 27h-216l-98 -92q0 -13 4 -29q14 -75 82.5 -110t210.5 -35z" /> + <glyph glyph-name="gdotaccent.ss01" horiz-adv-x="1143" +d="M412 1198v215h230v-215h-230zM990 0q0 -204 -119.5 -320.5t-334.5 -116.5q-284 0 -428 210l164 119q37 -64 106 -103t161 -39q114 0 175 64t61 186v127q-98 -127 -287 -127q-102 0 -184 41t-134 111.5t-80 162t-28 194.5t28 195t80 162.5t133 112t180 41.5 +q88 0 165 -33.5t127 -98.5v111h216zM538 196q127 0 191 87.5t64 226.5q0 89 -26 158.5t-84.5 113.5t-144.5 44q-127 0 -192.5 -89.5t-65.5 -226.5q0 -138 65 -226t193 -88z" /> + <glyph glyph-name="gdotaccent.ss04" horiz-adv-x="1068" +d="M647 1413v-215h-230v215h230zM656 162q66 0 124.5 -14.5t110.5 -46t82.5 -90t30.5 -138.5q0 -154 -113.5 -242.5t-333.5 -88.5q-139 0 -249.5 34t-180.5 109.5t-70 183.5q0 49 14 85l143 67q-132 78 -133 218q-2 133 116 210q-63 90 -63 206q0 160 114.5 261.5 +t286.5 101.5q137 0 239 -67l152 131l109 -137l-145 -120q44 -79 44 -177q0 -160 -114.5 -259.5t-284.5 -99.5q-120 0 -214 51q-40 -28 -40 -81q1 -52 41 -74.5t120 -22.5h214zM539 849q-88 0 -139.5 -56t-51.5 -142q0 -84 51 -137.5t140 -53.5q87 0 137.5 53.5t50.5 137.5 +q0 86 -51 142t-137 56zM554 -285q117 0 180.5 32.5t63.5 109.5q0 70 -55.5 97t-171.5 27h-216l-98 -92q0 -13 4 -29q14 -75 82.5 -110t210.5 -35z" /> + <glyph glyph-name="i.loclTRK" horiz-adv-x="511" +d="M138 1198v215h230v-215h-230zM153 0v999h206v-999h-206z" /> + <glyph glyph-name="f_t" horiz-adv-x="1306" +d="M1060 -20q-140 0 -215.5 78t-75.5 215v547h-343v-820h-220v820h-182v177h184v146q0 136 88 213.5t216 77.5q90 0 175 -40l-66 -175q-49 26 -90 26q-47 0 -76 -30t-29 -91v-125h346v241l204 163v-404h258v-179h-258v-518q0 -70 34.5 -103t88.5 -33q61 0 127 33v-192 +q-66 -27 -166 -27z" /> + <glyph glyph-name="uni0414.loclRUS" horiz-adv-x="1463" +d="M33 -307v500h168q76 164 110 333t34 375v511h894v-1219h150v-500h-223v307h-909v-306zM436 193h579v1016h-447v-307q0 -216 -29.5 -382.5t-102.5 -326.5z" /> + <glyph glyph-name="uni0414.loclSRB" horiz-adv-x="1463" +d="M33 -307v501h168q76 164 110 332.5t34 374.5v511h894v-1218h150v-501h-223v307h-909v-306zM436 194h579v1015h-447v-307q0 -216 -29.5 -382t-102.5 -326z" /> + <glyph glyph-name="uni041B.loclRUS" horiz-adv-x="1413" +d="M220 -20q-100 0 -192 55l73 196q43 -30 77 -30q36 0 62.5 28t42.5 95.5t25.5 128t13 178.5t4.5 190.5t1 217.5v25v348h895v-1412h-224v1209h-447v-220q0 -377 -18 -539q-37 -343 -180 -433q-58 -37 -133 -37z" /> + <glyph glyph-name="uni041B.loclSRB" horiz-adv-x="1413" +d="M220 -20q-100 0 -192 55l73 196q43 -30 77 -30q36 0 62.5 28t42.5 95.5t25.5 128t13 178.5t4.5 190.5t1 217.5v25v348h895v-1412h-224v1209h-447v-220q0 -377 -18 -539q-37 -343 -180 -433q-58 -37 -133 -37z" /> + <glyph glyph-name="uni042E.loclRUS" horiz-adv-x="1970" +d="M1207 -20q-152 0 -273.5 48.5t-201.5 135t-127 198t-60 243.5h-130v-605h-224v1412h224v-604h130q13 132 60 243t127 198t202 136t273 49q166 0 296 -58.5t209.5 -160t120.5 -230.5t41 -278t-41 -278t-120.5 -230.5t-209.5 -160t-296 -58.5zM1207 180q114 0 199.5 42.5 +t135.5 117.5t74.5 167t24.5 200t-24.5 200t-74.5 166.5t-135.5 117t-199.5 42.5t-200 -42.5t-136 -117t-74 -166.5t-24 -200q0 -86 14.5 -162t47.5 -143.5t82.5 -116t123.5 -77t166 -28.5z" /> + <glyph glyph-name="uni0431.loclSRB" horiz-adv-x="1143" +d="M560 -16q-146 0 -261.5 66t-178.5 179.5t-63 252.5q0 68 16.5 132.5t52 129.5t102 121t157.5 93q-101 49 -156 107t-55 143q0 101 77.5 163.5t212.5 62.5q174 0 357 -93l-66 -201q-55 47 -130 79t-138 32q-88 0 -88 -67q0 -47 52 -85t161 -75q230 -70 344.5 -196 +t114.5 -325q0 -228 -144.5 -373.5t-366.5 -145.5zM563 166q63 0 112.5 23.5t79 58.5t49 80.5t26.5 86t7 78.5q0 64 -23.5 119t-56 89t-78 61.5t-77 40t-65.5 22.5q-123 -28 -184.5 -121t-61.5 -217q0 -136 70.5 -228.5t201.5 -92.5z" /> + <glyph glyph-name="uni0432.loclRUS" horiz-adv-x="1074" +d="M147 0v999h435q89 0 153 -11.5t118 -40.5t81.5 -85.5t27.5 -139.5q0 -67 -37 -124t-112 -76q187 -31 187 -230q0 -86 -27 -143.5t-83 -90t-130 -45.5t-179 -13h-434zM361 605h243q72 0 108.5 28t36.5 72q0 48 -33 72.5t-114 24.5h-241v-197zM361 198h238q99 0 140 24.5 +t41 86.5q0 58 -45.5 82.5t-135.5 24.5h-238v-218z" /> + <glyph glyph-name="uni0432.loclSRB" horiz-adv-x="1074" +d="M147 0v999h435q89 0 153 -11.5t118 -40.5t81.5 -85.5t27.5 -139.5q0 -67 -37 -124t-112 -76q187 -31 187 -230q0 -86 -27 -143.5t-83 -90t-130 -45.5t-179 -13h-434zM361 605h243q72 0 108.5 28t36.5 72q0 48 -33 72.5t-114 24.5h-241v-197zM361 198h238q99 0 140 24.5 +t41 86.5q0 58 -45.5 82.5t-135.5 24.5h-238v-218z" /> + <glyph glyph-name="uni0433.loclRUS" horiz-adv-x="785" +d="M147 0v999h632v-162h-414v-837h-218z" /> + <glyph glyph-name="uni0433.loclSRB" horiz-adv-x="785" +d="M147 0v999h632v-162h-414v-837h-218z" /> + <glyph glyph-name="uni0434.loclRUS" horiz-adv-x="1196" +d="M6 -307v470h136q115 125 115 451v385h752v-836h131v-470h-217v307h-700v-307h-217zM364 163h428v674h-318v-220q0 -331 -110 -454z" /> + <glyph glyph-name="uni0434.loclSRB" horiz-adv-x="1196" +d="M6 -307v470h136q115 125 115 451v385h752v-836h131v-470h-217v307h-700v-307h-217zM364 163h428v674h-318v-220q0 -331 -110 -454z" /> + <glyph glyph-name="uni0436.loclRUS" horiz-adv-x="1500" +d="M22 0l172 449q25 58 69 108t94 50l-281 392h252l230 -361h85v361h214v-361h85l230 361h251l-281 -392q50 0 94 -49.5t70 -108.5l172 -449h-253l-121 354q-20 58 -53.5 89.5t-87.5 31.5h-106v-475h-214v475h-106q-100 0 -141 -121l-122 -354h-252z" /> + <glyph glyph-name="uni0436.loclSRB" horiz-adv-x="1500" +d="M22 0l172 449q25 58 69 108t94 50l-281 392h252l230 -361h85v361h214v-361h85l230 361h251l-281 -392q50 0 94 -49.5t70 -108.5l172 -449h-253l-121 354q-20 58 -53.5 89.5t-87.5 31.5h-106v-475h-214v475h-106q-100 0 -141 -121l-122 -354h-252z" /> + <glyph glyph-name="uni0437.loclRUS" horiz-adv-x="1000" +d="M457 -20q-131 0 -244.5 58t-177.5 166l180 132q26 -75 93.5 -118t144.5 -43q126 0 184.5 28t58.5 93q0 72 -39 95.5t-153 23.5h-112v188h124q84 5 117.5 31t33.5 82q0 52 -46.5 75t-146.5 23q-66 0 -131.5 -34t-109.5 -109l-199 105q48 72 102 120.5t111 73t109.5 33.5 +t116.5 9q407 0 407 -281q0 -83 -41 -134t-133 -77q100 -17 155.5 -75.5t55.5 -159.5q0 -305 -460 -305z" /> + <glyph glyph-name="uni0437.loclSRB" horiz-adv-x="1000" +d="M457 -20q-131 0 -244.5 58t-177.5 166l180 132q26 -75 93.5 -118t144.5 -43q126 0 184.5 28t58.5 93q0 72 -39 95.5t-153 23.5h-112v188h124q84 5 117.5 31t33.5 82q0 52 -46.5 75t-146.5 23q-66 0 -131.5 -34t-109.5 -109l-199 105q48 72 102 120.5t111 73t109.5 33.5 +t116.5 9q407 0 407 -281q0 -83 -41 -134t-133 -77q100 -17 155.5 -75.5t55.5 -159.5q0 -305 -460 -305z" /> + <glyph glyph-name="uni0438.loclRUS" horiz-adv-x="1181" +d="M153 0v999h217v-573q0 -49 -11 -122h11l421 695h237v-999h-216v573q0 55 10 123h-10l-422 -696h-237z" /> + <glyph glyph-name="uni0438.loclSRB" horiz-adv-x="1181" +d="M153 0v999h217v-573q0 -49 -11 -122h11l421 695h237v-999h-216v573q0 55 10 123h-10l-422 -696h-237z" /> + <glyph glyph-name="uni0439.loclRUS" horiz-adv-x="1181" +d="M591 1143q-151 0 -231 69.5t-80 200.5h157q0 -66 43.5 -102.5t110.5 -36.5q68 0 111.5 37.5t43.5 101.5h157q0 -133 -81 -201.5t-231 -68.5zM153 0v999h217v-573q0 -49 -11 -122h11l421 695h237v-999h-216v573q0 55 10 123h-10l-422 -696h-237z" /> + <glyph glyph-name="uni0439.loclSRB" horiz-adv-x="1181" +d="M591 1143q-151 0 -231 69.5t-80 200.5h157q0 -66 43.5 -102.5t110.5 -36.5q68 0 111.5 37.5t43.5 101.5h157q0 -133 -81 -201.5t-231 -68.5zM153 0v999h217v-573q0 -49 -11 -122h11l421 695h237v-999h-216v573q0 55 10 123h-10l-422 -696h-237z" /> + <glyph glyph-name="uni045D.loclRUS" horiz-adv-x="1181" +d="M514 1126l-287 302h232l221 -302h-166zM153 0v999h217v-573q0 -49 -11 -122h11l421 695h237v-999h-216v573q0 55 10 123h-10l-422 -696h-237z" /> + <glyph glyph-name="uni045D.loclSRB" horiz-adv-x="1181" +d="M514 1126l-287 302h232l221 -302h-166zM153 0v999h217v-573q0 -49 -11 -122h11l421 695h237v-999h-216v573q0 55 10 123h-10l-422 -696h-237z" /> + <glyph glyph-name="uni043A.loclRUS" horiz-adv-x="1015" +d="M153 0v999h214v-361h85l230 361h251l-281 -392q50 0 94 -49.5t70 -108.5l172 -449h-253l-121 354q-20 58 -53.5 89.5t-87.5 31.5h-106v-475h-214z" /> + <glyph glyph-name="uni043A.loclSRB" horiz-adv-x="1015" +d="M153 0v999h214v-361h85l230 361h251l-281 -392q50 0 94 -49.5t70 -108.5l172 -449h-253l-121 354q-20 58 -53.5 89.5t-87.5 31.5h-106v-475h-214z" /> + <glyph glyph-name="uni043B.loclRUS" horiz-adv-x="1118" +d="M196 -21q-104 0 -204 52l60 141q48 -22 72 -22q65 0 84.5 105t19.5 359v385h738v-999h-217v837h-304v-312q0 -204 -30 -326.5t-83 -171t-136 -48.5z" /> + <glyph glyph-name="uni043B.loclSRB" horiz-adv-x="1118" +d="M196 -21q-104 0 -204 52l60 141q48 -22 72 -22q65 0 84.5 105t19.5 359v385h738v-999h-217v837h-304v-312q0 -204 -30 -326.5t-83 -171t-136 -48.5z" /> + <glyph glyph-name="uni043F.loclRUS" horiz-adv-x="1181" +d="M153 0v999h875v-999h-216v837h-442v-837h-217z" /> + <glyph glyph-name="uni043F.loclSRB" horiz-adv-x="1181" +d="M153 0v999h875v-999h-216v837h-442v-837h-217z" /> + <glyph glyph-name="uni0442.loclRUS" horiz-adv-x="887" +d="M335 0v837h-329v162h875v-162h-330v-837h-216z" /> + <glyph glyph-name="uni0442.loclSRB" horiz-adv-x="887" +d="M335 0v837h-329v162h875v-162h-330v-837h-216z" /> + <glyph glyph-name="uni0446.loclRUS" horiz-adv-x="1229" +d="M983 -307v307h-830v999h217v-836h442v836h216v-836h171v-470h-216z" /> + <glyph glyph-name="uni0446.loclSRB" horiz-adv-x="1229" +d="M983 -307v307h-830v999h217v-836h442v836h216v-836h171v-470h-216z" /> + <glyph glyph-name="uni0448.loclRUS" horiz-adv-x="1646" +d="M153 0v999h217v-836h344v836h217v-836h346v836h217v-999h-1341z" /> + <glyph glyph-name="uni0448.loclSRB" horiz-adv-x="1646" +d="M153 0v999h217v-836h344v836h217v-836h346v836h217v-999h-1341z" /> + <glyph glyph-name="uni0449.loclRUS" horiz-adv-x="1695" +d="M1448 -307v307h-1295v999h217v-836h344v836h217v-836h346v836h217v-836h171v-470h-217z" /> + <glyph glyph-name="uni0449.loclSRB" horiz-adv-x="1695" +d="M1448 -307v307h-1295v999h217v-836h344v836h217v-836h346v836h217v-836h171v-470h-217z" /> + <glyph glyph-name="uni044C.loclRUS" horiz-adv-x="1037" +d="M153 0v999h217v-307h159q221 0 327.5 -78t106.5 -263q0 -173 -110 -262t-322 -89h-378zM370 183h159q92 0 144.5 37.5t52.5 130.5q0 158 -197 158h-159v-326z" /> + <glyph glyph-name="uni044A.loclRUS" horiz-adv-x="1185" +d="M301 0v837h-295v162h512v-307h159q221 0 328 -78t107 -263q0 -173 -110 -262t-323 -89h-378zM518 183h159q92 0 144.5 37.5t52.5 130.5q0 158 -197 158h-159v-326z" /> + <glyph glyph-name="uni044B.loclRUS" horiz-adv-x="1436" +d="M153 0v999h217v-307h159q221 0 327.5 -78t106.5 -263q0 -173 -110 -262t-322 -89h-378zM1082 0v999h201v-999h-201zM370 183h159q92 0 144.5 37.5t52.5 130.5q0 158 -197 158h-159v-326z" /> + <glyph glyph-name="uni044E.loclRUS" horiz-adv-x="1552" +d="M982 -20q-215 0 -357 141.5t-150 350.5h-105v-472h-217v999h217v-365h122q42 166 174 272t316 106q146 0 263 -70t180 -187.5t63 -258.5q0 -106 -37.5 -200.5t-103 -164t-160.5 -110.5t-205 -41zM982 166q138 0 205.5 93t67.5 237q0 143 -67.5 236t-205.5 93 +q-71 0 -125.5 -26.5t-86 -73t-47 -104t-15.5 -125.5t15.5 -126t47 -104.5t86 -73t125.5 -26.5z" /> + <glyph glyph-name="strokecy" horiz-adv-x="1061" +d="M157 282v188h747v-188h-747z" /> + <hkern u1=" " u2="&" k="82" /> + <hkern u1="!" u2="ß" k="18" /> + <hkern u1=""" u2="ï" k="-45" /> + <hkern u1=""" u2="î" k="-45" /> + <hkern u1=""" u2="ì" k="-45" /> + <hkern u1="#" u2="9" k="10" /> + <hkern u1="#" u2="8" k="10" /> + <hkern u1="#" u2="7" k="6" /> + <hkern u1="#" u2="5" k="16" /> + <hkern u1="#" u2="4" k="20" /> + <hkern u1="#" u2="3" k="16" /> + <hkern u1="#" u2="2" k="6" /> + <hkern u1="#" u2="1" k="6" /> + <hkern u1="$" u2="9" k="6" /> + <hkern u1="$" u2="8" k="6" /> + <hkern u1="$" u2="7" k="6" /> + <hkern u1="$" u2="5" k="6" /> + <hkern u1="$" u2="4" k="6" /> + <hkern u1="$" u2="3" k="6" /> + <hkern u1="%" u2="1" k="6" /> + <hkern u1="&" u2="v" k="29" /> + <hkern u1="&" u2="V" k="127" /> + <hkern u1="&" u2="5" k="6" /> + <hkern u1="&" u2="4" k="6" /> + <hkern u1="&" u2="3" k="6" /> + <hkern u1="&" u2="1" k="6" /> + <hkern u1="&" u2=" " k="82" /> + <hkern u1="'" u2="ï" k="-45" /> + <hkern u1="'" u2="î" k="-45" /> + <hkern u1="'" u2="ì" k="-45" /> + <hkern u1="(" u2="ƒ" k="-113" /> + <hkern u1="(" u2="ï" k="-29" /> + <hkern u1="(" u2="î" k="-18" /> + <hkern u1="(" u2="ì" k="-70" /> + <hkern u1="(" u2="ß" k="23" /> + <hkern u1="(" u2="x" k="10" /> + <hkern u1="(" u2="v" k="45" /> + <hkern u1="(" u2="g" k="23" /> + <hkern u1="(" u2="X" k="-23" /> + <hkern u1="(" u2="V" k="-33" /> + <hkern u1="(" u2="−" k="82" /> + <hkern u1="(" u2="7" k="-20" /> + <hkern u1="(" u2="5" k="12" /> + <hkern u1="(" u2="4" k="10" /> + <hkern u1="(" u2="2" k="-2" /> + <hkern u1="(" u2="1" k="2" /> + <hkern u1="(" u2="+" k="113" /> + <hkern u1=")" u2="Ł" k="-23" /> + <hkern u1="*" u2="ƒ" k="47" /> + <hkern u1="*" u2="Ł" k="10" /> + <hkern u1="*" u2="ï" k="-37" /> + <hkern u1="*" u2="î" k="-59" /> + <hkern u1="*" u2="ì" k="-18" /> + <hkern u1="*" u2="x" k="-10" /> + <hkern u1="*" u2="v" k="-39" /> + <hkern u1="*" u2="X" k="10" /> + <hkern u1="*" u2="V" k="-41" /> + <hkern u1="*" u2="7" k="-20" /> + <hkern u1="*" u2="4" k="37" /> + <hkern u1="+" u2="X" k="43" /> + <hkern u1="+" u2="V" k="92" /> + <hkern u1="+" u2="9" k="6" /> + <hkern u1="+" u2="7" k="6" /> + <hkern u1="+" u2="3" k="10" /> + <hkern u1="+" u2="2" k="6" /> + <hkern u1="+" u2="1" k="16" /> + <hkern u1="+" u2=")" k="113" /> + <hkern u1="," u2="j" k="-18" /> + <hkern u1="," u2="g" k="31" /> + <hkern u1="." u2="g" k="31" /> + <hkern u1="/" u2="ƒ" k="92" /> + <hkern u1="/" u2="ž" k="76" /> + <hkern u1="/" u2="š" k="86" /> + <hkern u1="/" u2="ł" k="18" /> + <hkern u1="/" u2="Ł" k="23" /> + <hkern u1="/" u2="ö" k="166" /> + <hkern u1="/" u2="ò" k="152" /> + <hkern u1="/" u2="ð" k="213" /> + <hkern u1="/" u2="ï" k="-80" /> + <hkern u1="/" u2="î" k="-61" /> + <hkern u1="/" u2="í" k="12" /> + <hkern u1="/" u2="ì" k="-143" /> + <hkern u1="/" u2="ë" k="193" /> + <hkern u1="/" u2="è" k="193" /> + <hkern u1="/" u2="å" k="199" /> + <hkern u1="/" u2="ä" k="154" /> + <hkern u1="/" u2="ã" k="168" /> + <hkern u1="/" u2="â" k="193" /> + <hkern u1="/" u2="à" k="162" /> + <hkern u1="/" u2="ß" k="55" /> + <hkern u1="/" u2="x" k="41" /> + <hkern u1="/" u2="v" k="31" /> + <hkern u1="/" u2="X" k="-20" /> + <hkern u1="/" u2="V" k="-41" /> + <hkern u1="/" u2="9" k="10" /> + <hkern u1="/" u2="8" k="16" /> + <hkern u1="/" u2="7" k="-16" /> + <hkern u1="/" u2="5" k="10" /> + <hkern u1="/" u2="4" k="41" /> + <hkern u1="/" u2="2" k="10" /> + <hkern u1="/" u2="/" k="158" /> + <hkern u1="1" u2="≥" k="-6" /> + <hkern u1="1" u2="≠" k="-10" /> + <hkern u1="1" u2="≈" k="-10" /> + <hkern u1="1" u2="∞" k="-10" /> + <hkern u1="1" u2="÷" k="6" /> + <hkern u1="1" u2="°" k="6" /> + <hkern u1="1" u2="|" k="-6" /> + <hkern u1="1" u2=">" k="-16" /> + <hkern u1="1" u2="<" k="6" /> + <hkern u1="1" u2="7" k="-2" /> + <hkern u1="1" u2="2" k="-2" /> + <hkern u1="1" u2="%" k="6" /> + <hkern u1="1" u2="#" k="10" /> + <hkern u1="2" u2="≥" k="-6" /> + <hkern u1="2" u2="≠" k="-6" /> + <hkern u1="2" u2="≈" k="-10" /> + <hkern u1="2" u2="×" k="-6" /> + <hkern u1="2" u2="±" k="-6" /> + <hkern u1="2" u2="°" k="-6" /> + <hkern u1="2" u2="_" k="-6" /> + <hkern u1="2" u2="\" k="6" /> + <hkern u1="2" u2=">" k="-16" /> + <hkern u1="2" u2="4" k="8" /> + <hkern u1="2" u2="1" k="-6" /> + <hkern u1="3" u2="≥" k="-10" /> + <hkern u1="3" u2="≈" k="-10" /> + <hkern u1="3" u2="−" k="-6" /> + <hkern u1="3" u2="‰" k="6" /> + <hkern u1="3" u2="×" k="-6" /> + <hkern u1="3" u2="±" k="-6" /> + <hkern u1="3" u2="°" k="-6" /> + <hkern u1="3" u2="¦" k="-10" /> + <hkern u1="3" u2="~" k="-6" /> + <hkern u1="3" u2="|" k="-10" /> + <hkern u1="3" u2="_" k="6" /> + <hkern u1="3" u2=">" k="-16" /> + <hkern u1="3" u2="7" k="-6" /> + <hkern u1="3" u2="1" k="2" /> + <hkern u1="3" u2="/" k="6" /> + <hkern u1="3" u2="*" k="-6" /> + <hkern u1="3" u2="%" k="6" /> + <hkern u1="3" u2="#" k="10" /> + <hkern u1="4" u2="º" k="20" /> + <hkern u1="4" u2="ª" k="20" /> + <hkern u1="4" u2="≥" k="-16" /> + <hkern u1="4" u2="≤" k="-16" /> + <hkern u1="4" u2="≠" k="-6" /> + <hkern u1="4" u2="≈" k="-16" /> + <hkern u1="4" u2="∞" k="-6" /> + <hkern u1="4" u2="™" k="37" /> + <hkern u1="4" u2="‰" k="16" /> + <hkern u1="4" u2="×" k="-6" /> + <hkern u1="4" u2="±" k="-6" /> + <hkern u1="4" u2="°" k="6" /> + <hkern u1="4" u2="¦" k="-6" /> + <hkern u1="4" u2="~" k="-10" /> + <hkern u1="4" u2=">" k="-16" /> + <hkern u1="4" u2="=" k="-10" /> + <hkern u1="4" u2="7" k="2" /> + <hkern u1="4" u2="*" k="10" /> + <hkern u1="4" u2="%" k="6" /> + <hkern u1="5" u2="≥" k="-10" /> + <hkern u1="5" u2="≤" k="-6" /> + <hkern u1="5" u2="≠" k="-6" /> + <hkern u1="5" u2="≈" k="-10" /> + <hkern u1="5" u2="−" k="-6" /> + <hkern u1="5" u2="‰" k="6" /> + <hkern u1="5" u2="°" k="-6" /> + <hkern u1="5" u2="~" k="-6" /> + <hkern u1="5" u2="_" k="6" /> + <hkern u1="5" u2="@" k="2" /> + <hkern u1="5" u2=">" k="-10" /> + <hkern u1="5" u2="=" k="-6" /> + <hkern u1="5" u2="<" k="-6" /> + <hkern u1="5" u2="7" k="-2" /> + <hkern u1="5" u2="/" k="10" /> + <hkern u1="5" u2="%" k="6" /> + <hkern u1="6" u2="≈" k="-6" /> + <hkern u1="6" u2="−" k="-6" /> + <hkern u1="6" u2="‰" k="10" /> + <hkern u1="6" u2="~" k="-6" /> + <hkern u1="6" u2="_" k="10" /> + <hkern u1="6" u2="\" k="6" /> + <hkern u1="6" u2="@" k="6" /> + <hkern u1="6" u2=">" k="-6" /> + <hkern u1="6" u2="=" k="-6" /> + <hkern u1="6" u2="7" k="-2" /> + <hkern u1="6" u2="+" k="-6" /> + <hkern u1="6" u2="#" k="10" /> + <hkern u1="7" u2="≥" k="-10" /> + <hkern u1="7" u2="≠" k="6" /> + <hkern u1="7" u2="∞" k="6" /> + <hkern u1="7" u2="−" k="16" /> + <hkern u1="7" u2="™" k="-10" /> + <hkern u1="7" u2="‰" k="-6" /> + <hkern u1="7" u2="‡" k="-27" /> + <hkern u1="7" u2="†" k="-27" /> + <hkern u1="7" u2="÷" k="10" /> + <hkern u1="7" u2="¿" k="31" /> + <hkern u1="7" u2="·" k="20" /> + <hkern u1="7" u2="±" k="6" /> + <hkern u1="7" u2="°" k="-16" /> + <hkern u1="7" u2="¦" k="-10" /> + <hkern u1="7" u2="~" k="20" /> + <hkern u1="7" u2="|" k="-10" /> + <hkern u1="7" u2="_" k="47" /> + <hkern u1="7" u2="\" k="-16" /> + <hkern u1="7" u2="@" k="2" /> + <hkern u1="7" u2="?" k="-10" /> + <hkern u1="7" u2=">" k="-16" /> + <hkern u1="7" u2="=" k="-2" /> + <hkern u1="7" u2="<" k="16" /> + <hkern u1="7" u2="9" k="-6" /> + <hkern u1="7" u2="7" k="-16" /> + <hkern u1="7" u2="5" k="8" /> + <hkern u1="7" u2="4" k="29" /> + <hkern u1="7" u2="1" k="-2" /> + <hkern u1="7" u2="/" k="31" /> + <hkern u1="7" u2="+" k="27" /> + <hkern u1="7" u2="*" k="-10" /> + <hkern u1="7" u2="#" k="20" /> + <hkern u1="8" u2="≥" k="-6" /> + <hkern u1="8" u2="≠" k="-6" /> + <hkern u1="8" u2="≈" k="-10" /> + <hkern u1="8" u2="£" k="10" /> + <hkern u1="8" u2="_" k="6" /> + <hkern u1="8" u2="\" k="20" /> + <hkern u1="8" u2=">" k="-6" /> + <hkern u1="8" u2="&" k="6" /> + <hkern u1="8" u2="%" k="2" /> + <hkern u1="8" u2="#" k="6" /> + <hkern u1=";" u2="j" k="-18" /> + <hkern u1="<" u2="Ł" k="-10" /> + <hkern u1="<" u2="v" k="-29" /> + <hkern u1="<" u2="X" k="-10" /> + <hkern u1="<" u2="V" k="-10" /> + <hkern u1="<" u2="9" k="-16" /> + <hkern u1="<" u2="8" k="-16" /> + <hkern u1="<" u2="7" k="-37" /> + <hkern u1="<" u2="5" k="-10" /> + <hkern u1="<" u2="3" k="-6" /> + <hkern u1="<" u2="2" k="-16" /> + <hkern u1="<" u2="1" k="-16" /> + <hkern u1="=" u2="v" k="-10" /> + <hkern u1="=" u2="X" k="31" /> + <hkern u1="=" u2="V" k="49" /> + <hkern u1="=" u2="7" k="6" /> + <hkern u1="=" u2="5" k="-6" /> + <hkern u1=">" u2="ł" k="-10" /> + <hkern u1=">" u2="x" k="10" /> + <hkern u1=">" u2="v" k="10" /> + <hkern u1=">" u2="X" k="88" /> + <hkern u1=">" u2="V" k="70" /> + <hkern u1=">" u2="3" k="10" /> + <hkern u1=">" u2="2" k="6" /> + <hkern u1=">" u2="1" k="6" /> + <hkern u1="?" u2="Ł" k="10" /> + <hkern u1="?" u2="v" k="-23" /> + <hkern u1="?" u2="X" k="10" /> + <hkern u1="?" u2="7" k="-16" /> + <hkern u1="?" u2="4" k="10" /> + <hkern u1="?" u2="1" k="-6" /> + <hkern u1="@" u2="ł" k="10" /> + <hkern u1="@" u2="Ł" k="-6" /> + <hkern u1="@" u2="î" k="-10" /> + <hkern u1="@" u2="ß" k="18" /> + <hkern u1="@" u2="x" k="-2" /> + <hkern u1="@" u2="v" k="-16" /> + <hkern u1="@" u2="X" k="63" /> + <hkern u1="@" u2="V" k="59" /> + <hkern u1="@" u2="7" k="-6" /> + <hkern u1="@" u2="4" k="6" /> + <hkern u1="@" u2="3" k="6" /> + <hkern u1="B" u2="™" k="31" /> + <hkern u1="B" u2="•" k="12" /> + <hkern u1="B" u2="‡" k="-4" /> + <hkern u1="B" u2="†" k="-4" /> + <hkern u1="B" u2="Ł" k="-10" /> + <hkern u1="B" u2="ï" k="-4" /> + <hkern u1="B" u2="î" k="-4" /> + <hkern u1="B" u2="ß" k="31" /> + <hkern u1="B" u2="¿" k="47" /> + <hkern u1="B" u2="º" k="12" /> + <hkern u1="B" u2="·" k="4" /> + <hkern u1="B" u2="ª" k="16" /> + <hkern u1="B" u2="¡" k="10" /> + <hkern u1="B" u2="~" k="-4" /> + <hkern u1="B" u2="{" k="18" /> + <hkern u1="B" u2="v" k="6" /> + <hkern u1="B" u2="_" k="12" /> + <hkern u1="B" u2="\" k="66" /> + <hkern u1="B" u2="X" k="4" /> + <hkern u1="B" u2="V" k="10" /> + <hkern u1="B" u2=">" k="-25" /> + <hkern u1="B" u2="=" k="-4" /> + <hkern u1="B" u2="/" k="27" /> + <hkern u1="B" u2="+" k="6" /> + <hkern u1="B" u2="&" k="33" /> + <hkern u1="C" u2="î" k="-23" /> + <hkern u1="D" u2="ï" k="-4" /> + <hkern u1="D" u2="î" k="-4" /> + <hkern u1="E" u2="ï" k="-14" /> + <hkern u1="E" u2="î" k="-18" /> + <hkern u1="E" u2="ì" k="-25" /> + <hkern u1="F" u2="™" k="-27" /> + <hkern u1="F" u2="•" k="31" /> + <hkern u1="F" u2="‡" k="-41" /> + <hkern u1="F" u2="†" k="-41" /> + <hkern u1="F" u2="ƒ" k="135" /> + <hkern u1="F" u2="÷" k="4" /> + <hkern u1="F" u2="ï" k="-63" /> + <hkern u1="F" u2="î" k="-55" /> + <hkern u1="F" u2="í" k="12" /> + <hkern u1="F" u2="ì" k="-76" /> + <hkern u1="F" u2="ã" k="49" /> + <hkern u1="F" u2="ß" k="45" /> + <hkern u1="F" u2="×" k="10" /> + <hkern u1="F" u2="¿" k="154" /> + <hkern u1="F" u2="·" k="10" /> + <hkern u1="F" u2="¶" k="-23" /> + <hkern u1="F" u2="ª" k="16" /> + <hkern u1="F" u2="§" k="-23" /> + <hkern u1="F" u2="¦" k="-23" /> + <hkern u1="F" u2="¡" k="18" /> + <hkern u1="F" u2="~" k="41" /> + <hkern u1="F" u2="|" k="-41" /> + <hkern u1="F" u2="{" k="23" /> + <hkern u1="F" u2="x" k="31" /> + <hkern u1="F" u2="v" k="37" /> + <hkern u1="F" u2="_" k="168" /> + <hkern u1="F" u2="^" k="-12" /> + <hkern u1="F" u2="\" k="-53" /> + <hkern u1="F" u2="X" k="-14" /> + <hkern u1="F" u2="V" k="-14" /> + <hkern u1="F" u2="@" k="20" /> + <hkern u1="F" u2="?" k="-20" /> + <hkern u1="F" u2=">" k="-31" /> + <hkern u1="F" u2="=" k="10" /> + <hkern u1="F" u2="<" k="10" /> + <hkern u1="F" u2="/" k="135" /> + <hkern u1="F" u2="+" k="33" /> + <hkern u1="F" u2="*" k="-16" /> + <hkern u1="F" u2=")" k="-35" /> + <hkern u1="F" u2="&" k="57" /> + <hkern u1="G" u2="î" k="-6" /> + <hkern u1="H" u2="ï" k="-18" /> + <hkern u1="H" u2="î" k="-10" /> + <hkern u1="H" u2="ì" k="-18" /> + <hkern u1="I" u2="ï" k="-18" /> + <hkern u1="I" u2="î" k="-10" /> + <hkern u1="I" u2="ì" k="-18" /> + <hkern u1="J" u2="ï" k="-10" /> + <hkern u1="J" u2="î" k="-14" /> + <hkern u1="J" u2="ì" k="-10" /> + <hkern u1="K" u2="ï" k="-55" /> + <hkern u1="K" u2="î" k="-23" /> + <hkern u1="K" u2="ì" k="-43" /> + <hkern u1="M" u2="ï" k="-18" /> + <hkern u1="M" u2="î" k="-10" /> + <hkern u1="M" u2="ì" k="-18" /> + <hkern u1="N" u2="ï" k="-18" /> + <hkern u1="N" u2="î" k="-10" /> + <hkern u1="N" u2="ì" k="-18" /> + <hkern u1="O" u2="ï" k="-4" /> + <hkern u1="O" u2="î" k="-4" /> + <hkern u1="P" u2="™" k="10" /> + <hkern u1="P" u2="•" k="33" /> + <hkern u1="P" u2="‡" k="-41" /> + <hkern u1="P" u2="†" k="-41" /> + <hkern u1="P" u2="ƒ" k="115" /> + <hkern u1="P" u2="š" k="27" /> + <hkern u1="P" u2="ł" k="6" /> + <hkern u1="P" u2="ü" k="41" /> + <hkern u1="P" u2="û" k="41" /> + <hkern u1="P" u2="ú" k="41" /> + <hkern u1="P" u2="ù" k="41" /> + <hkern u1="P" u2="÷" k="12" /> + <hkern u1="P" u2="ï" k="-63" /> + <hkern u1="P" u2="î" k="-68" /> + <hkern u1="P" u2="ì" k="-16" /> + <hkern u1="P" u2="ß" k="41" /> + <hkern u1="P" u2="×" k="-12" /> + <hkern u1="P" u2="¿" k="174" /> + <hkern u1="P" u2="·" k="33" /> + <hkern u1="P" u2="¶" k="-33" /> + <hkern u1="P" u2="§" k="-12" /> + <hkern u1="P" u2="~" k="41" /> + <hkern u1="P" u2="{" k="41" /> + <hkern u1="P" u2="v" k="-4" /> + <hkern u1="P" u2="_" k="176" /> + <hkern u1="P" u2="\" k="18" /> + <hkern u1="P" u2="X" k="25" /> + <hkern u1="P" u2="V" k="4" /> + <hkern u1="P" u2="@" k="6" /> + <hkern u1="P" u2="?" k="-41" /> + <hkern u1="P" u2=">" k="-41" /> + <hkern u1="P" u2="<" k="18" /> + <hkern u1="P" u2="/" k="154" /> + <hkern u1="P" u2="+" k="53" /> + <hkern u1="P" u2="*" k="-20" /> + <hkern u1="P" u2=")" k="10" /> + <hkern u1="P" u2="&" k="57" /> + <hkern u1="Q" u2="™" k="41" /> + <hkern u1="Q" u2="‡" k="-10" /> + <hkern u1="Q" u2="†" k="-10" /> + <hkern u1="Q" u2="ƒ" k="23" /> + <hkern u1="Q" u2="Ł" k="-6" /> + <hkern u1="Q" u2="÷" k="-10" /> + <hkern u1="Q" u2="î" k="-4" /> + <hkern u1="Q" u2="ß" k="25" /> + <hkern u1="Q" u2="×" k="-10" /> + <hkern u1="Q" u2="¡" k="10" /> + <hkern u1="Q" u2="~" k="-10" /> + <hkern u1="Q" u2="x" k="-10" /> + <hkern u1="Q" u2="^" k="-10" /> + <hkern u1="Q" u2="\" k="86" /> + <hkern u1="Q" u2="X" k="41" /> + <hkern u1="Q" u2="V" k="55" /> + <hkern u1="Q" u2=">" k="-33" /> + <hkern u1="Q" u2="=" k="-10" /> + <hkern u1="Q" u2="<" k="-20" /> + <hkern u1="Q" u2="+" k="-10" /> + <hkern u1="Q" u2=")" k="39" /> + <hkern u1="Q" u2="&" k="18" /> + <hkern u1="Q" u2="!" k="10" /> + <hkern u1="R" u2="ï" k="-14" /> + <hkern u1="R" u2="î" k="-31" /> + <hkern u1="S" u2="ï" k="-6" /> + <hkern u1="S" u2="î" k="-6" /> + <hkern u1="T" u2="ž" k="53" /> + <hkern u1="T" u2="š" k="31" /> + <hkern u1="T" u2="ÿ" k="102" /> + <hkern u1="T" u2="ü" k="121" /> + <hkern u1="T" u2="û" k="133" /> + <hkern u1="T" u2="ï" k="-90" /> + <hkern u1="T" u2="î" k="-53" /> + <hkern u1="T" u2="í" k="70" /> + <hkern u1="T" u2="ì" k="-82" /> + <hkern u1="T" u2="å" k="125" /> + <hkern u1="T" u2="ä" k="78" /> + <hkern u1="T" u2="ã" k="92" /> + <hkern u1="T" u2="â" k="104" /> + <hkern u1="T" u2="à" k="86" /> + <hkern u1="U" u2="ï" k="-10" /> + <hkern u1="U" u2="î" k="-14" /> + <hkern u1="U" u2="ì" k="-10" /> + <hkern u1="V" u2="™" k="-35" /> + <hkern u1="V" u2="•" k="92" /> + <hkern u1="V" u2="‡" k="-20" /> + <hkern u1="V" u2="†" k="-33" /> + <hkern u1="V" u2="ƒ" k="141" /> + <hkern u1="V" u2="ł" k="18" /> + <hkern u1="V" u2="÷" k="63" /> + <hkern u1="V" u2="ï" k="-80" /> + <hkern u1="V" u2="î" k="-31" /> + <hkern u1="V" u2="í" k="18" /> + <hkern u1="V" u2="ì" k="-68" /> + <hkern u1="V" u2="è" k="90" /> + <hkern u1="V" u2="ã" k="72" /> + <hkern u1="V" u2="ß" k="59" /> + <hkern u1="V" u2="×" k="20" /> + <hkern u1="V" u2="¿" k="160" /> + <hkern u1="V" u2="º" k="4" /> + <hkern u1="V" u2="·" k="72" /> + <hkern u1="V" u2="ª" k="18" /> + <hkern u1="V" u2="§" k="10" /> + <hkern u1="V" u2="¦" k="-33" /> + <hkern u1="V" u2="¡" k="70" /> + <hkern u1="V" u2="~" k="92" /> + <hkern u1="V" u2="|" k="-33" /> + <hkern u1="V" u2="{" k="61" /> + <hkern u1="V" u2="x" k="20" /> + <hkern u1="V" u2="v" k="33" /> + <hkern u1="V" u2="_" k="131" /> + <hkern u1="V" u2="^" k="10" /> + <hkern u1="V" u2="\" k="-41" /> + <hkern u1="V" u2="X" k="-20" /> + <hkern u1="V" u2="V" k="-20" /> + <hkern u1="V" u2="@" k="59" /> + <hkern u1="V" u2="?" k="-12" /> + <hkern u1="V" u2="=" k="49" /> + <hkern u1="V" u2="<" k="70" /> + <hkern u1="V" u2="/" k="160" /> + <hkern u1="V" u2="+" k="92" /> + <hkern u1="V" u2="*" k="-41" /> + <hkern u1="V" u2=")" k="-33" /> + <hkern u1="V" u2="&" k="78" /> + <hkern u1="W" u2="ï" k="-88" /> + <hkern u1="W" u2="î" k="-39" /> + <hkern u1="W" u2="í" k="14" /> + <hkern u1="W" u2="ì" k="-66" /> + <hkern u1="X" u2="•" k="80" /> + <hkern u1="X" u2="ł" k="10" /> + <hkern u1="X" u2="÷" k="39" /> + <hkern u1="X" u2="ï" k="-35" /> + <hkern u1="X" u2="î" k="-20" /> + <hkern u1="X" u2="ì" k="-63" /> + <hkern u1="X" u2="ß" k="18" /> + <hkern u1="X" u2="×" k="31" /> + <hkern u1="X" u2="º" k="29" /> + <hkern u1="X" u2="·" k="72" /> + <hkern u1="X" u2="¶" k="10" /> + <hkern u1="X" u2="ª" k="29" /> + <hkern u1="X" u2="¦" k="-20" /> + <hkern u1="X" u2="¡" k="10" /> + <hkern u1="X" u2="~" k="51" /> + <hkern u1="X" u2="|" k="-33" /> + <hkern u1="X" u2="{" k="61" /> + <hkern u1="X" u2="x" k="-27" /> + <hkern u1="X" u2="v" k="59" /> + <hkern u1="X" u2="_" k="-35" /> + <hkern u1="X" u2="^" k="18" /> + <hkern u1="X" u2="\" k="-20" /> + <hkern u1="X" u2="V" k="-20" /> + <hkern u1="X" u2="@" k="61" /> + <hkern u1="X" u2="?" k="10" /> + <hkern u1="X" u2="=" k="31" /> + <hkern u1="X" u2="<" k="59" /> + <hkern u1="X" u2="/" k="-20" /> + <hkern u1="X" u2="+" k="43" /> + <hkern u1="X" u2="*" k="10" /> + <hkern u1="X" u2=")" k="-23" /> + <hkern u1="X" u2="&" k="49" /> + <hkern u1="Y" u2="š" k="84" /> + <hkern u1="Y" u2="ö" k="106" /> + <hkern u1="Y" u2="õ" k="193" /> + <hkern u1="Y" u2="ò" k="164" /> + <hkern u1="Y" u2="ð" k="182" /> + <hkern u1="Y" u2="ï" k="-49" /> + <hkern u1="Y" u2="î" k="-6" /> + <hkern u1="Y" u2="í" k="80" /> + <hkern u1="Y" u2="ì" k="-82" /> + <hkern u1="Y" u2="ë" k="129" /> + <hkern u1="Y" u2="è" k="129" /> + <hkern u1="Y" u2="ä" k="90" /> + <hkern u1="Y" u2="â" k="104" /> + <hkern u1="Y" u2="à" k="115" /> + <hkern u1="Z" u2="ï" k="-33" /> + <hkern u1="Z" u2="î" k="-33" /> + <hkern u1="Z" u2="ì" k="-45" /> + <hkern u1="[" u2="ï" k="-47" /> + <hkern u1="[" u2="î" k="-18" /> + <hkern u1="[" u2="ì" k="-100" /> + <hkern u1="\" u2="Ł" k="10" /> + <hkern u1="\" u2="x" k="-20" /> + <hkern u1="\" u2="v" k="49" /> + <hkern u1="\" u2="X" k="-20" /> + <hkern u1="\" u2="V" k="160" /> + <hkern u1="\" u2="8" k="10" /> + <hkern u1="\" u2="4" k="6" /> + <hkern u1="\" u2="3" k="6" /> + <hkern u1="\" u2="2" k="-6" /> + <hkern u1="^" u2="v" k="-18" /> + <hkern u1="^" u2="X" k="18" /> + <hkern u1="^" u2="V" k="10" /> + <hkern u1="_" u2="ƒ" k="-133" /> + <hkern u1="_" u2="ł" k="18" /> + <hkern u1="_" u2="x" k="-53" /> + <hkern u1="_" u2="v" k="82" /> + <hkern u1="_" u2="X" k="-35" /> + <hkern u1="_" u2="V" k="131" /> + <hkern u1="_" u2="8" k="6" /> + <hkern u1="_" u2="4" k="27" /> + <hkern u1="f" u2="ï" k="-74" /> + <hkern u1="f" u2="î" k="-70" /> + <hkern u1="f" u2="ì" k="-90" /> + <hkern u1="f" u2="j" k="-25" /> + <hkern u1="f" u2="i" k="-10" /> + <hkern u1="i" u2="ï" k="-10" /> + <hkern u1="i" u2="î" k="-10" /> + <hkern u1="i" u2="ì" k="-10" /> + <hkern u1="l" u2="ï" k="-4" /> + <hkern u1="l" u2="î" k="-4" /> + <hkern u1="q" u2="™" k="47" /> + <hkern u1="v" u2="™" k="10" /> + <hkern u1="v" u2="‡" k="-61" /> + <hkern u1="v" u2="†" k="-61" /> + <hkern u1="v" u2="ƒ" k="18" /> + <hkern u1="v" u2="ł" k="-6" /> + <hkern u1="v" u2="÷" k="10" /> + <hkern u1="v" u2="×" k="-18" /> + <hkern u1="v" u2="¿" k="59" /> + <hkern u1="v" u2="º" k="-14" /> + <hkern u1="v" u2="¶" k="-51" /> + <hkern u1="v" u2="§" k="-18" /> + <hkern u1="v" u2="¦" k="-41" /> + <hkern u1="v" u2="¡" k="10" /> + <hkern u1="v" u2="|" k="-18" /> + <hkern u1="v" u2="x" k="-12" /> + <hkern u1="v" u2="v" k="-6" /> + <hkern u1="v" u2="_" k="82" /> + <hkern u1="v" u2="^" k="-18" /> + <hkern u1="v" u2="\" k="41" /> + <hkern u1="v" u2="@" k="-12" /> + <hkern u1="v" u2="?" k="-41" /> + <hkern u1="v" u2=">" k="-29" /> + <hkern u1="v" u2="=" k="-10" /> + <hkern u1="v" u2="<" k="10" /> + <hkern u1="v" u2="/" k="59" /> + <hkern u1="v" u2="*" k="-39" /> + <hkern u1="v" u2=")" k="45" /> + <hkern u1="v" u2="&" k="29" /> + <hkern u1="x" u2="™" k="20" /> + <hkern u1="x" u2="•" k="10" /> + <hkern u1="x" u2="‡" k="-31" /> + <hkern u1="x" u2="†" k="-31" /> + <hkern u1="x" u2="÷" k="10" /> + <hkern u1="x" u2="¿" k="-10" /> + <hkern u1="x" u2="·" k="20" /> + <hkern u1="x" u2="¶" k="-10" /> + <hkern u1="x" u2="ª" k="10" /> + <hkern u1="x" u2="¦" k="-10" /> + <hkern u1="x" u2="¡" k="-12" /> + <hkern u1="x" u2="~" k="10" /> + <hkern u1="x" u2="|" k="-33" /> + <hkern u1="x" u2="x" k="-6" /> + <hkern u1="x" u2="v" k="-12" /> + <hkern u1="x" u2="_" k="-53" /> + <hkern u1="x" u2="\" k="78" /> + <hkern u1="x" u2="@" k="-6" /> + <hkern u1="x" u2="?" k="-18" /> + <hkern u1="x" u2="<" k="10" /> + <hkern u1="x" u2="/" k="-41" /> + <hkern u1="x" u2="*" k="-10" /> + <hkern u1="x" u2=")" k="10" /> + <hkern u1="x" u2="&" k="31" /> + <hkern u1="{" u2="ï" k="-47" /> + <hkern u1="{" u2="î" k="-18" /> + <hkern u1="{" u2="ì" k="-100" /> + <hkern u1="{" u2="æ" k="10" /> + <hkern u1="{" u2="å" k="10" /> + <hkern u1="{" u2="ä" k="10" /> + <hkern u1="{" u2="ã" k="10" /> + <hkern u1="{" u2="â" k="10" /> + <hkern u1="{" u2="á" k="10" /> + <hkern u1="{" u2="à" k="10" /> + <hkern u1="{" u2="a" k="10" /> + <hkern u1="|" u2="x" k="-33" /> + <hkern u1="|" u2="v" k="-18" /> + <hkern u1="|" u2="X" k="-33" /> + <hkern u1="|" u2="V" k="-33" /> + <hkern u1="|" u2="7" k="-10" /> + <hkern u1="}" u2="Ł" k="-12" /> + <hkern u1="}" u2="X" k="12" /> + <hkern u1="}" u2="V" k="12" /> + <hkern u1="~" u2="x" k="10" /> + <hkern u1="~" u2="X" k="51" /> + <hkern u1="~" u2="V" k="92" /> + <hkern u1="~" u2="7" k="10" /> + <hkern u1="~" u2="2" k="6" /> + <hkern u1="~" u2="1" k="6" /> + <hkern u1="¡" u2="ß" k="10" /> + <hkern u1="¡" u2="x" k="-12" /> + <hkern u1="¡" u2="v" k="10" /> + <hkern u1="¡" u2="X" k="10" /> + <hkern u1="¡" u2="V" k="70" /> + <hkern u1="¡" u2="7" k="-6" /> + <hkern u1="¢" u2="3" k="6" /> + <hkern u1="¥" u2="7" k="-16" /> + <hkern u1="¥" u2="4" k="6" /> + <hkern u1="¦" u2="x" k="-10" /> + <hkern u1="¦" u2="v" k="-41" /> + <hkern u1="¦" u2="X" k="-20" /> + <hkern u1="¦" u2="V" k="-33" /> + <hkern u1="¦" u2="8" k="6" /> + <hkern u1="¦" u2="7" k="-6" /> + <hkern u1="§" u2="V" k="10" /> + <hkern u1="¬" u2="3" k="6" /> + <hkern u1="°" u2="7" k="-20" /> + <hkern u1="°" u2="4" k="20" /> + <hkern u1="°" u2="1" k="-16" /> + <hkern u1="±" u2="7" k="6" /> + <hkern u1="±" u2="3" k="6" /> + <hkern u1="·" u2="x" k="20" /> + <hkern u1="·" u2="X" k="72" /> + <hkern u1="·" u2="V" k="72" /> + <hkern u1="·" u2="7" k="10" /> + <hkern u1="·" u2="1" k="16" /> + <hkern u1="¿" u2="ƒ" k="-55" /> + <hkern u1="¿" u2="ł" k="18" /> + <hkern u1="¿" u2="Ł" k="10" /> + <hkern u1="¿" u2="ß" k="29" /> + <hkern u1="¿" u2="v" k="76" /> + <hkern u1="¿" u2="V" k="174" /> + <hkern u1="¿" u2="9" k="29" /> + <hkern u1="¿" u2="4" k="10" /> + <hkern u1="¿" u2="3" k="6" /> + <hkern u1="¿" u2="1" k="6" /> + <hkern u1="Æ" u2="ï" k="-14" /> + <hkern u1="Æ" u2="î" k="-18" /> + <hkern u1="Æ" u2="ì" k="-25" /> + <hkern u1="Ç" u2="î" k="-23" /> + <hkern u1="È" u2="ï" k="-14" /> + <hkern u1="È" u2="î" k="-18" /> + <hkern u1="È" u2="ì" k="-25" /> + <hkern u1="É" u2="ï" k="-14" /> + <hkern u1="É" u2="î" k="-18" /> + <hkern u1="É" u2="ì" k="-25" /> + <hkern u1="Ê" u2="ï" k="-14" /> + <hkern u1="Ê" u2="î" k="-18" /> + <hkern u1="Ê" u2="ì" k="-25" /> + <hkern u1="Ë" u2="ï" k="-14" /> + <hkern u1="Ë" u2="î" k="-18" /> + <hkern u1="Ë" u2="ì" k="-25" /> + <hkern u1="Ì" u2="ï" k="-18" /> + <hkern u1="Ì" u2="î" k="-10" /> + <hkern u1="Ì" u2="ì" k="-18" /> + <hkern u1="Í" u2="ï" k="-18" /> + <hkern u1="Í" u2="î" k="-10" /> + <hkern u1="Í" u2="ì" k="-18" /> + <hkern u1="Í" u2="Ï" k="-57" /> + <hkern u1="Í" u2="Ì" k="-102" /> + <hkern u1="Î" u2="ï" k="-18" /> + <hkern u1="Î" u2="î" k="-10" /> + <hkern u1="Î" u2="ì" k="-18" /> + <hkern u1="Î" u2="Ï" k="-45" /> + <hkern u1="Î" u2="Î" k="-68" /> + <hkern u1="Î" u2="Ì" k="-35" /> + <hkern u1="Ï" u2="ï" k="-18" /> + <hkern u1="Ï" u2="î" k="-10" /> + <hkern u1="Ï" u2="ì" k="-18" /> + <hkern u1="Ï" u2="Ï" k="-23" /> + <hkern u1="Ï" u2="Î" k="-39" /> + <hkern u1="Ï" u2="Ì" k="-45" /> + <hkern u1="Ð" u2="ï" k="-4" /> + <hkern u1="Ð" u2="î" k="-4" /> + <hkern u1="Ñ" u2="ï" k="-18" /> + <hkern u1="Ñ" u2="î" k="-10" /> + <hkern u1="Ñ" u2="ì" k="-18" /> + <hkern u1="Ò" u2="ï" k="-4" /> + <hkern u1="Ò" u2="î" k="-4" /> + <hkern u1="Ó" u2="ï" k="-4" /> + <hkern u1="Ó" u2="î" k="-4" /> + <hkern u1="Ô" u2="ï" k="-4" /> + <hkern u1="Ô" u2="î" k="-4" /> + <hkern u1="Õ" u2="ï" k="-4" /> + <hkern u1="Õ" u2="î" k="-4" /> + <hkern u1="Ö" u2="ï" k="-4" /> + <hkern u1="Ö" u2="î" k="-4" /> + <hkern u1="×" u2="v" k="-18" /> + <hkern u1="×" u2="X" k="31" /> + <hkern u1="×" u2="V" k="20" /> + <hkern u1="Ø" u2="ï" k="-10" /> + <hkern u1="Ø" u2="î" k="-10" /> + <hkern u1="Ù" u2="ï" k="-10" /> + <hkern u1="Ù" u2="î" k="-14" /> + <hkern u1="Ù" u2="ì" k="-10" /> + <hkern u1="Ú" u2="ï" k="-10" /> + <hkern u1="Ú" u2="î" k="-14" /> + <hkern u1="Ú" u2="ì" k="-10" /> + <hkern u1="Û" u2="ï" k="-10" /> + <hkern u1="Û" u2="î" k="-14" /> + <hkern u1="Û" u2="ì" k="-10" /> + <hkern u1="Ü" u2="ï" k="-10" /> + <hkern u1="Ü" u2="î" k="-14" /> + <hkern u1="Ü" u2="ì" k="-10" /> + <hkern u1="Ý" u2="š" k="84" /> + <hkern u1="Ý" u2="ö" k="106" /> + <hkern u1="Ý" u2="õ" k="193" /> + <hkern u1="Ý" u2="ò" k="164" /> + <hkern u1="Ý" u2="ð" k="182" /> + <hkern u1="Ý" u2="ï" k="-49" /> + <hkern u1="Ý" u2="î" k="-6" /> + <hkern u1="Ý" u2="í" k="43" /> + <hkern u1="Ý" u2="ì" k="-82" /> + <hkern u1="Ý" u2="ë" k="129" /> + <hkern u1="Ý" u2="è" k="129" /> + <hkern u1="Ý" u2="ä" k="90" /> + <hkern u1="Ý" u2="â" k="104" /> + <hkern u1="Ý" u2="à" k="115" /> + <hkern u1="Þ" u2="™" k="72" /> + <hkern u1="Þ" u2="•" k="-10" /> + <hkern u1="Þ" u2="‡" k="-20" /> + <hkern u1="Þ" u2="†" k="-20" /> + <hkern u1="Þ" u2="ƒ" k="92" /> + <hkern u1="Þ" u2="ł" k="-33" /> + <hkern u1="Þ" u2="Ł" k="-16" /> + <hkern u1="Þ" u2="÷" k="-10" /> + <hkern u1="Þ" u2="ß" k="27" /> + <hkern u1="Þ" u2="×" k="-10" /> + <hkern u1="Þ" u2="¿" k="78" /> + <hkern u1="Þ" u2="·" k="-12" /> + <hkern u1="Þ" u2="~" k="-20" /> + <hkern u1="Þ" u2="x" k="-12" /> + <hkern u1="Þ" u2="v" k="-12" /> + <hkern u1="Þ" u2="_" k="80" /> + <hkern u1="Þ" u2="^" k="-10" /> + <hkern u1="Þ" u2="\" k="100" /> + <hkern u1="Þ" u2="X" k="59" /> + <hkern u1="Þ" u2="V" k="35" /> + <hkern u1="Þ" u2="@" k="-6" /> + <hkern u1="Þ" u2="?" k="-12" /> + <hkern u1="Þ" u2=">" k="-20" /> + <hkern u1="Þ" u2="=" k="-10" /> + <hkern u1="Þ" u2="<" k="-10" /> + <hkern u1="Þ" u2="/" k="111" /> + <hkern u1="Þ" u2="+" k="-10" /> + <hkern u1="Þ" u2=")" k="31" /> + <hkern u1="Þ" u2="&" k="31" /> + <hkern u1="ß" u2="™" k="29" /> + <hkern u1="ß" u2="‡" k="-10" /> + <hkern u1="ß" u2="ƒ" k="10" /> + <hkern u1="ß" u2="ł" k="-10" /> + <hkern u1="ß" u2="÷" k="-10" /> + <hkern u1="ß" u2="ï" k="-4" /> + <hkern u1="ß" u2="î" k="-4" /> + <hkern u1="ß" u2="ß" k="16" /> + <hkern u1="ß" u2="º" k="20" /> + <hkern u1="ß" u2="ª" k="41" /> + <hkern u1="ß" u2="v" k="10" /> + <hkern u1="ß" u2="_" k="-18" /> + <hkern u1="ß" u2="\" k="49" /> + <hkern u1="ß" u2=">" k="-47" /> + <hkern u1="ß" u2="=" k="-10" /> + <hkern u1="ß" u2="/" k="-12" /> + <hkern u1="ß" u2=")" k="-23" /> + <hkern u1="ß" u2="&" k="10" /> + <hkern u1="é" u2="\" k="135" /> + <hkern u1="ë" u2="\" k="135" /> + <hkern u1="ì" u2="™" k="29" /> + <hkern u1="ì" u2="\" k="51" /> + <hkern u1="í" u2="™" k="-37" /> + <hkern u1="í" u2="”" k="-104" /> + <hkern u1="í" u2="“" k="-53" /> + <hkern u1="í" u2="’" k="-104" /> + <hkern u1="í" u2="‘" k="-53" /> + <hkern u1="í" u2="š" k="-4" /> + <hkern u1="í" u2="ï" k="-115" /> + <hkern u1="í" u2="î" k="-82" /> + <hkern u1="í" u2="ì" k="-137" /> + <hkern u1="í" u2="}" k="-100" /> + <hkern u1="í" u2="|" k="-29" /> + <hkern u1="í" u2="i" k="-10" /> + <hkern u1="í" u2="]" k="-100" /> + <hkern u1="í" u2="\" k="-125" /> + <hkern u1="í" u2="?" k="-25" /> + <hkern u1="í" u2="*" k="-10" /> + <hkern u1="í" u2=")" k="-72" /> + <hkern u1="í" u2="'" k="-45" /> + <hkern u1="í" u2=""" k="-45" /> + <hkern u1="í" u2="!" k="-10" /> + <hkern u1="î" u2="™" k="-18" /> + <hkern u1="î" u2="†" k="-55" /> + <hkern u1="î" u2="”" k="-72" /> + <hkern u1="î" u2="“" k="-86" /> + <hkern u1="î" u2="’" k="-72" /> + <hkern u1="î" u2="‘" k="-86" /> + <hkern u1="î" u2="š" k="-4" /> + <hkern u1="î" u2="ï" k="-125" /> + <hkern u1="î" u2="î" k="-98" /> + <hkern u1="î" u2="ì" k="-29" /> + <hkern u1="î" u2="}" k="-18" /> + <hkern u1="î" u2="|" k="-18" /> + <hkern u1="î" u2="j" k="-10" /> + <hkern u1="î" u2="i" k="-14" /> + <hkern u1="î" u2="]" k="-18" /> + <hkern u1="î" u2="\" k="-51" /> + <hkern u1="î" u2="?" k="-92" /> + <hkern u1="î" u2="*" k="-72" /> + <hkern u1="î" u2=")" k="-18" /> + <hkern u1="î" u2="'" k="-45" /> + <hkern u1="î" u2="&" k="10" /> + <hkern u1="î" u2=""" k="-45" /> + <hkern u1="î" u2="!" k="-10" /> + <hkern u1="ï" u2="™" k="-37" /> + <hkern u1="ï" u2="†" k="-37" /> + <hkern u1="ï" u2="”" k="-80" /> + <hkern u1="ï" u2="“" k="-74" /> + <hkern u1="ï" u2="’" k="-80" /> + <hkern u1="ï" u2="‘" k="-74" /> + <hkern u1="ï" u2="š" k="-4" /> + <hkern u1="ï" u2="ï" k="-123" /> + <hkern u1="ï" u2="î" k="-111" /> + <hkern u1="ï" u2="ì" k="-113" /> + <hkern u1="ï" u2="ã" k="-10" /> + <hkern u1="ï" u2="}" k="-47" /> + <hkern u1="ï" u2="|" k="-18" /> + <hkern u1="ï" u2="j" k="-18" /> + <hkern u1="ï" u2="i" k="-18" /> + <hkern u1="ï" u2="]" k="-47" /> + <hkern u1="ï" u2="\" k="-57" /> + <hkern u1="ï" u2="?" k="-80" /> + <hkern u1="ï" u2="*" k="-66" /> + <hkern u1="ï" u2=")" k="-29" /> + <hkern u1="ï" u2="'" k="-45" /> + <hkern u1="ï" u2="&" k="10" /> + <hkern u1="ï" u2=""" k="-45" /> + <hkern u1="ï" u2="!" k="-10" /> + <hkern u1="ð" u2="”" k="43" /> + <hkern u1="ð" u2="“" k="43" /> + <hkern u1="ð" u2="’" k="43" /> + <hkern u1="ð" u2="‘" k="43" /> + <hkern u1="ð" u2="\" k="100" /> + <hkern u1="ó" u2="\" k="186" /> + <hkern u1="õ" u2="\" k="186" /> + <hkern u1="ö" u2="\" k="190" /> + <hkern u1="÷" u2="x" k="10" /> + <hkern u1="÷" u2="v" k="10" /> + <hkern u1="÷" u2="X" k="39" /> + <hkern u1="÷" u2="V" k="63" /> + <hkern u1="÷" u2="4" k="6" /> + <hkern u1="÷" u2="3" k="10" /> + <hkern u1="÷" u2="1" k="6" /> + <hkern u1="ł" u2="‡" k="-51" /> + <hkern u1="ł" u2="†" k="-29" /> + <hkern u1="ł" u2="ƒ" k="10" /> + <hkern u1="ł" u2="ł" k="-12" /> + <hkern u1="ł" u2="¿" k="10" /> + <hkern u1="ł" u2="º" k="-10" /> + <hkern u1="ł" u2="·" k="-12" /> + <hkern u1="ł" u2="¶" k="-23" /> + <hkern u1="ł" u2="x" k="-45" /> + <hkern u1="ł" u2="v" k="-43" /> + <hkern u1="ł" u2="@" k="-35" /> + <hkern u1="ł" u2="?" k="-10" /> + <hkern u1="ł" u2=">" k="-37" /> + <hkern u1="ł" u2="=" k="-18" /> + <hkern u1="ł" u2="/" k="-12" /> + <hkern u1="ł" u2="*" k="-18" /> + <hkern u1="ł" u2="&" k="18" /> + <hkern u1="Œ" u2="ï" k="-14" /> + <hkern u1="Œ" u2="î" k="-18" /> + <hkern u1="Œ" u2="ì" k="-25" /> + <hkern u1="Š" u2="ï" k="-6" /> + <hkern u1="Š" u2="î" k="-6" /> + <hkern u1="š" u2="\" k="96" /> + <hkern u1="Ÿ" u2="š" k="84" /> + <hkern u1="Ÿ" u2="ö" k="106" /> + <hkern u1="Ÿ" u2="õ" k="193" /> + <hkern u1="Ÿ" u2="ò" k="164" /> + <hkern u1="Ÿ" u2="ð" k="182" /> + <hkern u1="Ÿ" u2="ï" k="-49" /> + <hkern u1="Ÿ" u2="î" k="-6" /> + <hkern u1="Ÿ" u2="í" k="43" /> + <hkern u1="Ÿ" u2="ì" k="-82" /> + <hkern u1="Ÿ" u2="ë" k="129" /> + <hkern u1="Ÿ" u2="è" k="129" /> + <hkern u1="Ÿ" u2="ä" k="90" /> + <hkern u1="Ÿ" u2="â" k="104" /> + <hkern u1="Ÿ" u2="à" k="115" /> + <hkern u1="Ž" u2="ï" k="-33" /> + <hkern u1="Ž" u2="î" k="-33" /> + <hkern u1="Ž" u2="ì" k="-45" /> + <hkern u1="ž" u2="\" k="57" /> + <hkern u1="ƒ" u2="™" k="-18" /> + <hkern u1="ƒ" u2="‡" k="-23" /> + <hkern u1="ƒ" u2="†" k="-23" /> + <hkern u1="ƒ" u2="ƒ" k="166" /> + <hkern u1="ƒ" u2="÷" k="53" /> + <hkern u1="ƒ" u2="ï" k="-66" /> + <hkern u1="ƒ" u2="î" k="-47" /> + <hkern u1="ƒ" u2="ì" k="-66" /> + <hkern u1="ƒ" u2="×" k="-10" /> + <hkern u1="ƒ" u2="º" k="-10" /> + <hkern u1="ƒ" u2="¶" k="-8" /> + <hkern u1="ƒ" u2="ª" k="-10" /> + <hkern u1="ƒ" u2="¦" k="-18" /> + <hkern u1="ƒ" u2="~" k="51" /> + <hkern u1="ƒ" u2="x" k="12" /> + <hkern u1="ƒ" u2="v" k="12" /> + <hkern u1="ƒ" u2="_" k="80" /> + <hkern u1="ƒ" u2="\" k="-82" /> + <hkern u1="ƒ" u2="@" k="23" /> + <hkern u1="ƒ" u2="?" k="-18" /> + <hkern u1="ƒ" u2=">" k="-82" /> + <hkern u1="ƒ" u2="=" k="20" /> + <hkern u1="ƒ" u2="<" k="59" /> + <hkern u1="ƒ" u2="/" k="119" /> + <hkern u1="ƒ" u2="+" k="59" /> + <hkern u1="ƒ" u2="*" k="-61" /> + <hkern u1="ƒ" u2=")" k="-20" /> + <hkern u1="ƒ" u2="&" k="51" /> + <hkern u1="‘" u2="ð" k="66" /> + <hkern u1="‘" u2="ï" k="-80" /> + <hkern u1="‘" u2="î" k="-72" /> + <hkern u1="‘" u2="ì" k="-82" /> + <hkern u1="’" u2="ð" k="121" /> + <hkern u1="’" u2="ï" k="-35" /> + <hkern u1="’" u2="î" k="-45" /> + <hkern u1="’" u2="ì" k="-35" /> + <hkern u1="‚" u2="g" k="-20" /> + <hkern u1="“" u2="ð" k="66" /> + <hkern u1="“" u2="ï" k="-80" /> + <hkern u1="“" u2="î" k="-72" /> + <hkern u1="“" u2="ì" k="-82" /> + <hkern u1="”" u2="ð" k="121" /> + <hkern u1="”" u2="ï" k="-35" /> + <hkern u1="”" u2="î" k="-45" /> + <hkern u1="”" u2="ì" k="-35" /> + <hkern u1="„" u2="g" k="-20" /> + <hkern u1="†" u2="x" k="-31" /> + <hkern u1="†" u2="v" k="-61" /> + <hkern u1="†" u2="V" k="-33" /> + <hkern u1="‡" u2="ł" k="-10" /> + <hkern u1="‡" u2="Ł" k="-18" /> + <hkern u1="‡" u2="x" k="-31" /> + <hkern u1="‡" u2="v" k="-61" /> + <hkern u1="‡" u2="V" k="-20" /> + <hkern u1="•" u2="x" k="10" /> + <hkern u1="•" u2="X" k="80" /> + <hkern u1="•" u2="V" k="92" /> + <hkern u1="…" u2="g" k="31" /> + <hkern u1="−" u2="3" k="10" /> + <hkern u1="−" u2="2" k="6" /> + <hkern u1="−" u2=")" k="82" /> + <hkern u1="√" u2="9" k="20" /> + <hkern u1="√" u2="8" k="20" /> + <hkern u1="√" u2="5" k="27" /> + <hkern u1="√" u2="4" k="51" /> + <hkern u1="√" u2="3" k="20" /> + <hkern u1="√" u2="2" k="27" /> + <hkern u1="√" u2="1" k="16" /> + <hkern u1="∞" u2="7" k="6" /> + <hkern u1="∫" u2="9" k="-10" /> + <hkern u1="∫" u2="8" k="-6" /> + <hkern u1="∫" u2="7" k="-47" /> + <hkern u1="∫" u2="5" k="-10" /> + <hkern u1="∫" u2="3" k="-20" /> + <hkern u1="∫" u2="2" k="-20" /> + <hkern u1="∫" u2="1" k="-20" /> + <hkern u1="≈" u2="8" k="-10" /> + <hkern u1="≈" u2="7" k="10" /> + <hkern u1="≈" u2="4" k="-6" /> + <hkern u1="≠" u2="8" k="-6" /> + <hkern u1="≥" u2="1" k="6" /> + <hkern g1="approxequal" + g2="zero,six" + k="-10" /> + <hkern g1="asciitilde" + g2="zero,six" + k="-6" /> + <hkern g1="cent" + g2="zero,six" + k="6" /> + <hkern g1="copyright,registered" + g2="five" + k="6" /> + <hkern g1="copyright,registered" + g2="four" + k="6" /> + <hkern g1="copyright,registered" + g2="one" + k="6" /> + <hkern g1="copyright,registered" + g2="three" + k="16" /> + <hkern g1="dollar" + g2="zero,six" + k="6" /> + <hkern g1="equal" + g2="zero,six" + k="-6" /> + <hkern g1="greaterequal" + g2="zero,six" + k="-6" /> + <hkern g1="infinity" + g2="zero,six" + k="-6" /> + <hkern g1="less" + g2="zero,six" + k="-10" /> + <hkern g1="lessequal" + g2="zero,six" + k="-6" /> + <hkern g1="minus" + g2="zero,six" + k="-6" /> + <hkern g1="minus" + g2="bracketright,braceright" + k="45" /> + <hkern g1="notequal" + g2="zero,six" + k="-6" /> + <hkern g1="percent" + g2="zero,six" + k="10" /> + <hkern g1="plus" + g2="bracketright,braceright" + k="45" /> + <hkern g1="radical" + g2="zero,six" + k="51" /> + <hkern g1="sterling" + g2="zero,six" + k="6" /> + <hkern g1="backslash" + g2="zero,six" + k="20" /> + <hkern g1="bracketleft,braceleft" + g2="five" + k="10" /> + <hkern g1="bracketleft,braceleft" + g2="four" + k="16" /> + <hkern g1="bracketleft,braceleft" + g2="hyphen,endash,emdash" + k="23" /> + <hkern g1="bracketleft,braceleft" + g2="minus" + k="45" /> + <hkern g1="bracketleft,braceleft" + g2="nine" + k="-6" /> + <hkern g1="bracketleft,braceleft" + g2="plus" + k="45" /> + <hkern g1="bracketleft,braceleft" + g2="seven" + k="-27" /> + <hkern g1="colon,semicolon" + g2="nine" + k="-8" /> + <hkern g1="colon,semicolon" + g2="seven" + k="-6" /> + <hkern g1="comma,period,ellipsis" + g2="zero,six" + k="10" /> + <hkern g1="comma,period,ellipsis" + g2="four" + k="27" /> + <hkern g1="comma,period,ellipsis" + g2="seven" + k="10" /> + <hkern g1="comma,period,ellipsis" + g2="eight" + k="6" /> + <hkern g1="comma,period,ellipsis" + g2="one" + k="37" /> + <hkern g1="guilsinglleft" + g2="one" + k="-10" /> + <hkern g1="guilsinglleft" + g2="two" + k="-8" /> + <hkern g1="guilsinglleft" + g2="exclam" + k="10" /> + <hkern g1="guilsinglright" + g2="seven" + k="16" /> + <hkern g1="guilsinglright" + g2="one" + k="16" /> + <hkern g1="guilsinglright" + g2="two" + k="6" /> + <hkern g1="guilsinglright" + g2="three" + k="6" /> + <hkern g1="hyphen,endash,emdash" + g2="five" + k="6" /> + <hkern g1="hyphen,endash,emdash" + g2="four" + k="2" /> + <hkern g1="hyphen,endash,emdash" + g2="seven" + k="16" /> + <hkern g1="hyphen,endash,emdash" + g2="one" + k="10" /> + <hkern g1="hyphen,endash,emdash" + g2="three" + k="10" /> + <hkern g1="hyphen,endash,emdash" + g2="bracketright,braceright" + k="23" /> + <hkern g1="hyphen,endash,emdash" + g2="parenright" + k="82" /> + <hkern g1="hyphen,endash,emdash" + g2="space" + k="102" /> + <hkern g1="numbersign" + g2="zero,six" + k="10" /> + <hkern g1="parenleft" + g2="zero,six" + k="10" /> + <hkern g1="parenleft" + g2="hyphen,endash,emdash" + k="82" /> + <hkern g1="questiondown" + g2="zero,six" + k="10" /> + <hkern g1="questiondown" + g2="quoteleft,quotedblleft" + k="35" /> + <hkern g1="questiondown" + g2="quotesinglbase,quotedblbase" + k="-45" /> + <hkern g1="quotedbl,quotesingle" + g2="four" + k="27" /> + <hkern g1="quotedbl,quotesingle" + g2="seven" + k="-10" /> + <hkern g1="quotedbl,quotesingle" + g2="one" + k="-16" /> + <hkern g1="quotedbl,quotesingle" + g2="two" + k="-6" /> + <hkern g1="quoteleft,quotedblleft" + g2="zero,six" + k="6" /> + <hkern g1="quoteleft,quotedblleft" + g2="four" + k="37" /> + <hkern g1="quoteleft,quotedblleft" + g2="seven" + k="-10" /> + <hkern g1="quoteleft,quotedblleft" + g2="one" + k="-10" /> + <hkern g1="quoteright,quotedblright" + g2="zero,six" + k="10" /> + <hkern g1="quoteright,quotedblright" + g2="five" + k="16" /> + <hkern g1="quoteright,quotedblright" + g2="four" + k="37" /> + <hkern g1="quoteright,quotedblright" + g2="seven" + k="-10" /> + <hkern g1="quoteright,quotedblright" + g2="eight" + k="6" /> + <hkern g1="quoteright,quotedblright" + g2="one" + k="-6" /> + <hkern g1="quoteright,quotedblright" + g2="two" + k="6" /> + <hkern g1="quoteright,quotedblright" + g2="comma,period,ellipsis" + k="80" /> + <hkern g1="quoteright,quotedblright" + g2="question" + k="-23" /> + <hkern g1="quoteright,quotedblright" + g2="questiondown" + k="68" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="zero,six" + k="16" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="four" + k="16" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="seven" + k="10" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="one" + k="20" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="two" + k="-6" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="three" + k="10" /> + <hkern g1="slash" + g2="zero,six" + k="20" /> + <hkern g1="underscore" + g2="zero,six" + k="10" /> + <hkern g1="exclam" + g2="guilsinglright" + k="10" /> + <hkern g1="eight" + g2="comma,period,ellipsis" + k="6" /> + <hkern g1="eight" + g2="zero,six" + k="2" /> + <hkern g1="five" + g2="comma,period,ellipsis" + k="6" /> + <hkern g1="five" + g2="quoteleft,quotedblleft" + k="6" /> + <hkern g1="five" + g2="quotesinglbase,quotedblbase" + k="6" /> + <hkern g1="four" + g2="quoteleft,quotedblleft" + k="10" /> + <hkern g1="four" + g2="quoteright,quotedblright" + k="10" /> + <hkern g1="one" + g2="comma,period,ellipsis" + k="6" /> + <hkern g1="one" + g2="zero,six" + k="-2" /> + <hkern g1="one" + g2="quoteright,quotedblright" + k="6" /> + <hkern g1="one" + g2="bracketright,braceright" + k="-6" /> + <hkern g1="one" + g2="copyright,registered" + k="6" /> + <hkern g1="one" + g2="quotedbl,quotesingle" + k="6" /> + <hkern g1="seven" + g2="comma,period,ellipsis" + k="57" /> + <hkern g1="seven" + g2="quoteleft,quotedblleft" + k="-16" /> + <hkern g1="seven" + g2="quotesinglbase,quotedblbase" + k="37" /> + <hkern g1="seven" + g2="quoteright,quotedblright" + k="-10" /> + <hkern g1="seven" + g2="copyright,registered" + k="6" /> + <hkern g1="seven" + g2="quotedbl,quotesingle" + k="-10" /> + <hkern g1="seven" + g2="colon,semicolon" + k="16" /> + <hkern g1="seven" + g2="guilsinglleft" + k="31" /> + <hkern g1="seven" + g2="guilsinglright" + k="10" /> + <hkern g1="seven" + g2="hyphen,endash,emdash" + k="27" /> + <hkern g1="six" + g2="comma,period,ellipsis" + k="6" /> + <hkern g1="six" + g2="quotesinglbase,quotedblbase" + k="6" /> + <hkern g1="six" + g2="copyright,registered" + k="6" /> + <hkern g1="three" + g2="comma,period,ellipsis" + k="6" /> + <hkern g1="three" + g2="quoteright,quotedblright" + k="2" /> + <hkern g1="three" + g2="hyphen,endash,emdash" + k="6" /> + <hkern g1="two" + g2="guilsinglright" + k="2" /> + <hkern g1="zero,nine" + g2="comma,period,ellipsis" + k="20" /> + <hkern g1="zero,nine" + g2="zero,six" + k="2" /> + <hkern g1="zero,nine" + g2="quoteleft,quotedblleft" + k="6" /> + <hkern g1="zero,nine" + g2="quotesinglbase,quotedblbase" + k="10" /> + <hkern g1="zero,nine" + g2="quoteright,quotedblright" + k="6" /> + <hkern g1="zero,nine" + g2="approxequal" + k="-10" /> + <hkern g1="zero,nine" + g2="asciitilde" + k="-6" /> + <hkern g1="zero,nine" + g2="backslash" + k="20" /> + <hkern g1="zero,nine" + g2="eight" + k="2" /> + <hkern g1="zero,nine" + g2="equal" + k="-6" /> + <hkern g1="zero,nine" + g2="five" + k="2" /> + <hkern g1="zero,nine" + g2="greaterequal" + k="-6" /> + <hkern g1="zero,nine" + g2="infinity" + k="-6" /> + <hkern g1="zero,nine" + g2="lessequal" + k="-6" /> + <hkern g1="zero,nine" + g2="minus" + k="-6" /> + <hkern g1="zero,nine" + g2="notequal" + k="-6" /> + <hkern g1="zero,nine" + g2="numbersign" + k="10" /> + <hkern g1="zero,nine" + g2="one" + k="2" /> + <hkern g1="zero,nine" + g2="parenright" + k="10" /> + <hkern g1="zero,nine" + g2="percent" + k="10" /> + <hkern g1="zero,nine" + g2="slash" + k="20" /> + <hkern g1="zero,nine" + g2="summation" + k="10" /> + <hkern g1="zero,nine" + g2="three" + k="2" /> + <hkern g1="zero,nine" + g2="underscore" + k="10" /> + <hkern g1="space" + g2="hyphen,endash,emdash" + k="102" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="66" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="J" + k="-12" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="Oslash" + k="51" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="S,Scaron,uni0405" + k="12" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="133" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="41" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="V,uni0423,uni0474" + k="123" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="88" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="Y,Yacute,Ydieresis,uni040E" + k="156" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="10" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="ampersand" + k="43" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="asciicircum" + k="78" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="asciitilde" + k="41" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="asterisk" + k="188" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="at" + k="80" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="backslash" + k="154" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="braceleft" + k="23" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="bullet" + k="72" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="20" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="copyright,registered" + k="66" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="dagger" + k="72" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="divide" + k="31" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="germandbls" + k="6" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="guilsinglleft" + k="59" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="hyphen,endash,emdash" + k="59" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="less" + k="41" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="m,n,p,r,ntilde" + k="6" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="ordfeminine" + k="180" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="ordmasculine" + k="158" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="oslash" + k="10" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="paragraph" + k="70" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="parenleft" + k="12" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="periodcentered" + k="59" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="plus" + k="45" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="question" + k="106" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="questiondown" + k="-53" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="quotedbl,quotesingle" + k="119" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="quoteleft,quotedblleft" + k="225" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="quoteright,quotedblright" + k="225" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="quotesinglbase,quotedblbase" + k="-12" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="slash" + k="-41" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="t" + k="47" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="trademark" + k="211" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="43" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="underscore" + k="-61" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="80" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="w" + k="61" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="74" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="Eth" + k="10" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="X,uni0416,uni0425,uni046A" + k="29" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="Z,Zcaron" + k="-14" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="bracketright,braceright" + k="10" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="colon,semicolon" + k="10" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="daggerdbl" + k="10" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="equal" + k="18" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="exclam" + k="18" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="exclamdown" + k="10" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="f,fi,fl,f_f_i,f_f_l" + k="18" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="greater" + k="-18" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="guilsinglright" + k="10" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="multiply" + k="10" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="parenright" + k="18" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni0410,uni0414,uni041B,uni0466,uni0468,uni2206" + g2="section" + k="10" /> + <hkern g1="B,uni0411,uni0412,uni0417,uni0432" + g2="J" + k="-35" /> + <hkern g1="B,uni0411,uni0412,uni0417,uni0432" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="-4" /> + <hkern g1="B,uni0411,uni0412,uni0417,uni0432" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="10" /> + <hkern g1="B,uni0411,uni0412,uni0417,uni0432" + g2="Y,Yacute,Ydieresis,uni040E" + k="25" /> + <hkern g1="B,uni0411,uni0412,uni0417,uni0432" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="6" /> + <hkern g1="B,uni0411,uni0412,uni0417,uni0432" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="-10" /> + <hkern g1="B,uni0411,uni0412,uni0417,uni0432" + g2="guilsinglleft" + k="20" /> + <hkern g1="B,uni0411,uni0412,uni0417,uni0432" + g2="m,n,p,r,ntilde" + k="6" /> + <hkern g1="B,uni0411,uni0412,uni0417,uni0432" + g2="oslash" + k="2" /> + <hkern g1="B,uni0411,uni0412,uni0417,uni0432" + g2="quoteright,quotedblright" + k="27" /> + <hkern g1="B,uni0411,uni0412,uni0417,uni0432" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="23" /> + <hkern g1="B,uni0411,uni0412,uni0417,uni0432" + g2="w" + k="6" /> + <hkern g1="B,uni0411,uni0412,uni0417,uni0432" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="6" /> + <hkern g1="B,uni0411,uni0412,uni0417,uni0432" + g2="Z,Zcaron" + k="-10" /> + <hkern g1="B,uni0411,uni0412,uni0417,uni0432" + g2="f,fi,fl,f_f_i,f_f_l" + k="6" /> + <hkern g1="B,uni0411,uni0412,uni0417,uni0432" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="37" /> + <hkern g1="B,uni0411,uni0412,uni0417,uni0432" + g2="comma,period,ellipsis" + k="16" /> + <hkern g1="B,uni0411,uni0412,uni0417,uni0432" + g2="s,scaron,uni0455" + k="6" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="16" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="Oslash" + k="10" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="14" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="10" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="V,uni0423,uni0474" + k="31" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="35" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="Y,Yacute,Ydieresis,uni040E" + k="61" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="33" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="ampersand" + k="35" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="asciicircum" + k="12" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="at" + k="35" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="backslash" + k="66" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="braceleft" + k="23" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="37" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="copyright,registered" + k="6" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="germandbls" + k="41" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="guilsinglleft" + k="39" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="hyphen,endash,emdash" + k="10" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="m,n,p,r,ntilde" + k="23" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="ordfeminine" + k="33" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="ordmasculine" + k="6" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="oslash" + k="27" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="plus" + k="10" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="questiondown" + k="59" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="quoteleft,quotedblleft" + k="10" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="quoteright,quotedblright" + k="10" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="quotesinglbase,quotedblbase" + k="29" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="slash" + k="66" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="t" + k="14" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="trademark" + k="20" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="41" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="underscore" + k="31" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="20" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="w" + k="20" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="27" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="X,uni0416,uni0425,uni046A" + k="49" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="bracketright,braceright" + k="16" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="f,fi,fl,f_f_i,f_f_l" + k="16" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="greater" + k="-12" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="guilsinglright" + k="10" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="parenright" + k="29" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="section" + k="14" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="55" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="comma,period,ellipsis" + k="39" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="s,scaron,uni0455" + k="12" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="b,h,k,l,thorn" + k="20" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="florin" + k="82" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="x,uni0445,uni04B3" + k="16" /> + <hkern g1="C,Ccedilla,uni0421,uni0464" + g2="z,zcaron" + k="12" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="S,Scaron,uni0405" + k="6" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="43" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="V,uni0423,uni0474" + k="51" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="45" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="Y,Yacute,Ydieresis,uni040E" + k="96" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="ampersand" + k="59" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="asciicircum" + k="-20" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="asciitilde" + k="-20" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="asterisk" + k="6" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="backslash" + k="86" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="-4" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="copyright,registered" + k="-12" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="dagger" + k="-10" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="divide" + k="-10" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="germandbls" + k="23" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="guilsinglleft" + k="14" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="less" + k="-10" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="ordfeminine" + k="20" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="periodcentered" + k="-10" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="plus" + k="-10" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="questiondown" + k="70" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="quoteleft,quotedblleft" + k="25" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="quoteright,quotedblright" + k="31" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="quotesinglbase,quotedblbase" + k="102" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="slash" + k="86" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="t" + k="-47" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="trademark" + k="68" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="underscore" + k="82" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="X,uni0416,uni0425,uni046A" + k="76" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="Z,Zcaron" + k="20" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="bracketright,braceright" + k="51" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="daggerdbl" + k="-10" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="equal" + k="-10" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="exclam" + k="10" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="exclamdown" + k="10" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="f,fi,fl,f_f_i,f_f_l" + k="-20" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="greater" + k="-20" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="guilsinglright" + k="20" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="multiply" + k="-10" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="parenright" + k="51" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="66" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="comma,period,ellipsis" + k="72" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="b,h,k,l,thorn" + k="4" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="florin" + k="104" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="z,zcaron" + k="-4" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="Lslash" + k="-12" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="bracketleft" + k="6" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="lslash" + k="-10" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="6" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="J" + k="31" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="Oslash" + k="6" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="-18" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="V,uni0423,uni0474" + k="-4" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-4" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="Y,Yacute,Ydieresis,uni040E" + k="-10" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="16" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="ampersand" + k="18" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="at" + k="29" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="braceleft" + k="43" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="27" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="dagger" + k="-10" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="germandbls" + k="27" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="guilsinglleft" + k="41" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="hyphen,endash,emdash" + k="6" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="m,n,p,r,ntilde" + k="16" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="ordfeminine" + k="20" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="ordmasculine" + k="20" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="oslash" + k="27" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="plus" + k="10" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="quoteright,quotedblright" + k="6" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="23" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="27" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="w" + k="23" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="27" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="X,uni0416,uni0425,uni046A" + k="-4" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="Z,Zcaron" + k="-18" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="bracketright,braceright" + k="-16" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="daggerdbl" + k="-10" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="f,fi,fl,f_f_i,f_f_l" + k="6" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="greater" + k="-31" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="guilsinglright" + k="12" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="parenright" + k="-12" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE,uni0400,uni0401,uni0415" + g2="s,scaron,uni0455" + k="6" /> + <hkern g1="F" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="10" /> + <hkern g1="F" + g2="J" + k="78" /> + <hkern g1="F" + g2="Oslash" + k="4" /> + <hkern g1="F" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="-72" /> + <hkern g1="F" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="6" /> + <hkern g1="F" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-14" /> + <hkern g1="F" + g2="Y,Yacute,Ydieresis,uni040E" + k="-14" /> + <hkern g1="F" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="72" /> + <hkern g1="F" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="68" /> + <hkern g1="F" + g2="guilsinglleft" + k="41" /> + <hkern g1="F" + g2="hyphen,endash,emdash" + k="31" /> + <hkern g1="F" + g2="m,n,p,r,ntilde" + k="66" /> + <hkern g1="F" + g2="oslash" + k="78" /> + <hkern g1="F" + g2="quotedbl,quotesingle" + k="-41" /> + <hkern g1="F" + g2="quoteleft,quotedblleft" + k="-33" /> + <hkern g1="F" + g2="quoteright,quotedblright" + k="-16" /> + <hkern g1="F" + g2="quotesinglbase,quotedblbase" + k="131" /> + <hkern g1="F" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="84" /> + <hkern g1="F" + g2="w" + k="37" /> + <hkern g1="F" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="49" /> + <hkern g1="F" + g2="Eth" + k="-6" /> + <hkern g1="F" + g2="Z,Zcaron" + k="-31" /> + <hkern g1="F" + g2="bracketright,braceright" + k="-35" /> + <hkern g1="F" + g2="colon,semicolon" + k="10" /> + <hkern g1="F" + g2="f,fi,fl,f_f_i,f_f_l" + k="12" /> + <hkern g1="F" + g2="guilsinglright" + k="20" /> + <hkern g1="F" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="106" /> + <hkern g1="F" + g2="comma,period,ellipsis" + k="215" /> + <hkern g1="F" + g2="s,scaron,uni0455" + k="31" /> + <hkern g1="F" + g2="b,h,k,l,thorn" + k="-6" /> + <hkern g1="F" + g2="z,zcaron" + k="31" /> + <hkern g1="F" + g2="i,igrave,iacute,icircumflex,idieresis,uni0469" + k="6" /> + <hkern g1="F" + g2="j" + k="10" /> + <hkern g1="G" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="20" /> + <hkern g1="G" + g2="V,uni0423,uni0474" + k="35" /> + <hkern g1="G" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="31" /> + <hkern g1="G" + g2="Y,Yacute,Ydieresis,uni040E" + k="66" /> + <hkern g1="G" + g2="ampersand" + k="35" /> + <hkern g1="G" + g2="asciitilde" + k="-6" /> + <hkern g1="G" + g2="backslash" + k="70" /> + <hkern g1="G" + g2="braceleft" + k="12" /> + <hkern g1="G" + g2="germandbls" + k="10" /> + <hkern g1="G" + g2="guilsinglleft" + k="25" /> + <hkern g1="G" + g2="ordmasculine" + k="10" /> + <hkern g1="G" + g2="question" + k="10" /> + <hkern g1="G" + g2="questiondown" + k="-23" /> + <hkern g1="G" + g2="quoteleft,quotedblleft" + k="10" /> + <hkern g1="G" + g2="quoteright,quotedblright" + k="14" /> + <hkern g1="G" + g2="slash" + k="-6" /> + <hkern g1="G" + g2="t" + k="-29" /> + <hkern g1="G" + g2="trademark" + k="31" /> + <hkern g1="G" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="6" /> + <hkern g1="G" + g2="underscore" + k="-20" /> + <hkern g1="G" + g2="X,uni0416,uni0425,uni046A" + k="4" /> + <hkern g1="G" + g2="bracketright,braceright" + k="10" /> + <hkern g1="G" + g2="exclamdown" + k="10" /> + <hkern g1="G" + g2="greater" + k="-33" /> + <hkern g1="G" + g2="guilsinglright" + k="10" /> + <hkern g1="G" + g2="parenright" + k="10" /> + <hkern g1="G" + g2="s,scaron,uni0455" + k="-10" /> + <hkern g1="G" + g2="x,uni0445,uni04B3" + k="-4" /> + <hkern g1="G" + g2="lslash" + k="-23" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="6" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="ampersand" + k="10" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="at" + k="12" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="braceleft" + k="35" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="bullet" + k="12" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="4" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="germandbls" + k="14" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="guilsinglleft" + k="12" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="ordfeminine" + k="18" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="ordmasculine" + k="10" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="oslash" + k="10" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="questiondown" + k="35" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="4" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="w" + k="4" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="greater" + k="-12" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="lslash" + k="10" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="J" + k="4" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="-4" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="4" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="ampersand" + k="25" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="asciitilde" + k="6" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="at" + k="14" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="backslash" + k="10" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="braceleft" + k="41" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="bullet" + k="41" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="10" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="divide" + k="6" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="germandbls" + k="31" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="guilsinglleft" + k="31" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="hyphen,endash,emdash" + k="6" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="less" + k="6" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="m,n,p,r,ntilde" + k="10" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="ordfeminine" + k="10" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="ordmasculine" + k="10" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="oslash" + k="10" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="periodcentered" + k="20" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="plus" + k="6" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="questiondown" + k="70" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="quotesinglbase,quotedblbase" + k="82" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="slash" + k="70" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="trademark" + k="10" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="10" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="underscore" + k="35" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="X,uni0416,uni0425,uni046A" + k="4" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="bracketright,braceright" + k="10" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="colon,semicolon" + k="10" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="equal" + k="4" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="exclamdown" + k="31" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="guilsinglright" + k="10" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="parenright" + k="10" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="57" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="comma,period,ellipsis" + k="66" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="s,scaron,uni0455" + k="4" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="florin" + k="102" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="lslash" + k="10" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="109" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="J" + k="25" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="Oslash" + k="59" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="S,Scaron,uni0405" + k="25" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="-4" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="16" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="V,uni0423,uni0474" + k="16" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="16" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="41" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="ampersand" + k="90" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="asciicircum" + k="41" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="asciitilde" + k="133" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="asterisk" + k="12" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="at" + k="98" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="backslash" + k="-18" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="braceleft" + k="92" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="bullet" + k="94" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="82" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="copyright,registered" + k="117" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="divide" + k="61" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="germandbls" + k="57" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="guilsinglleft" + k="129" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="hyphen,endash,emdash" + k="147" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="less" + k="121" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="m,n,p,r,ntilde" + k="27" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="ordfeminine" + k="82" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="ordmasculine" + k="72" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="oslash" + k="47" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="paragraph" + k="37" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="parenleft" + k="18" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="periodcentered" + k="82" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="plus" + k="74" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="question" + k="25" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="questiondown" + k="-39" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="quoteleft,quotedblleft" + k="29" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="quoteright,quotedblright" + k="10" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="slash" + k="-33" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="t" + k="84" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="trademark" + k="-10" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="113" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="underscore" + k="-51" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="121" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="w" + k="102" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="137" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="Eth" + k="29" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="Z,Zcaron" + k="-10" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="bracketright,braceright" + k="-6" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="colon,semicolon" + k="20" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="equal" + k="76" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="f,fi,fl,f_f_i,f_f_l" + k="45" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="greater" + k="-29" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="guilsinglright" + k="61" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="multiply" + k="20" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="parenright" + k="-6" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="section" + k="27" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="12" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="s,scaron,uni0455" + k="20" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="florin" + k="57" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="x,uni0445,uni04B3" + k="12" /> + <hkern g1="K,uni040C,uni041A,uni046C" + g2="lslash" + k="10" /> + <hkern g1="L,Lslash" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="53" /> + <hkern g1="L,Lslash" + g2="J" + k="-37" /> + <hkern g1="L,Lslash" + g2="Oslash" + k="33" /> + <hkern g1="L,Lslash" + g2="S,Scaron,uni0405" + k="-4" /> + <hkern g1="L,Lslash" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="143" /> + <hkern g1="L,Lslash" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="20" /> + <hkern g1="L,Lslash" + g2="V,uni0423,uni0474" + k="133" /> + <hkern g1="L,Lslash" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="98" /> + <hkern g1="L,Lslash" + g2="Y,Yacute,Ydieresis,uni040E" + k="143" /> + <hkern g1="L,Lslash" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="-10" /> + <hkern g1="L,Lslash" + g2="ampersand" + k="37" /> + <hkern g1="L,Lslash" + g2="asciicircum" + k="84" /> + <hkern g1="L,Lslash" + g2="asciitilde" + k="57" /> + <hkern g1="L,Lslash" + g2="asterisk" + k="143" /> + <hkern g1="L,Lslash" + g2="at" + k="27" /> + <hkern g1="L,Lslash" + g2="backslash" + k="172" /> + <hkern g1="L,Lslash" + g2="braceleft" + k="35" /> + <hkern g1="L,Lslash" + g2="bullet" + k="33" /> + <hkern g1="L,Lslash" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="2" /> + <hkern g1="L,Lslash" + g2="copyright,registered" + k="33" /> + <hkern g1="L,Lslash" + g2="dagger" + k="18" /> + <hkern g1="L,Lslash" + g2="divide" + k="2" /> + <hkern g1="L,Lslash" + g2="germandbls" + k="6" /> + <hkern g1="L,Lslash" + g2="guilsinglleft" + k="41" /> + <hkern g1="L,Lslash" + g2="hyphen,endash,emdash" + k="55" /> + <hkern g1="L,Lslash" + g2="less" + k="55" /> + <hkern g1="L,Lslash" + g2="ordfeminine" + k="127" /> + <hkern g1="L,Lslash" + g2="ordmasculine" + k="127" /> + <hkern g1="L,Lslash" + g2="oslash" + k="6" /> + <hkern g1="L,Lslash" + g2="paragraph" + k="94" /> + <hkern g1="L,Lslash" + g2="periodcentered" + k="18" /> + <hkern g1="L,Lslash" + g2="plus" + k="33" /> + <hkern g1="L,Lslash" + g2="question" + k="106" /> + <hkern g1="L,Lslash" + g2="questiondown" + k="-53" /> + <hkern g1="L,Lslash" + g2="quotedbl,quotesingle" + k="145" /> + <hkern g1="L,Lslash" + g2="quoteleft,quotedblleft" + k="162" /> + <hkern g1="L,Lslash" + g2="quoteright,quotedblright" + k="141" /> + <hkern g1="L,Lslash" + g2="quotesinglbase,quotedblbase" + k="-59" /> + <hkern g1="L,Lslash" + g2="slash" + k="-74" /> + <hkern g1="L,Lslash" + g2="t" + k="45" /> + <hkern g1="L,Lslash" + g2="trademark" + k="236" /> + <hkern g1="L,Lslash" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="33" /> + <hkern g1="L,Lslash" + g2="underscore" + k="-72" /> + <hkern g1="L,Lslash" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="92" /> + <hkern g1="L,Lslash" + g2="w" + k="78" /> + <hkern g1="L,Lslash" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="96" /> + <hkern g1="L,Lslash" + g2="Z,Zcaron" + k="-29" /> + <hkern g1="L,Lslash" + g2="bracketright,braceright" + k="-12" /> + <hkern g1="L,Lslash" + g2="equal" + k="14" /> + <hkern g1="L,Lslash" + g2="f,fi,fl,f_f_i,f_f_l" + k="20" /> + <hkern g1="L,Lslash" + g2="greater" + k="-29" /> + <hkern g1="L,Lslash" + g2="multiply" + k="-10" /> + <hkern g1="L,Lslash" + g2="parenright" + k="-12" /> + <hkern g1="L,Lslash" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="-23" /> + <hkern g1="L,Lslash" + g2="comma,period,ellipsis" + k="-20" /> + <hkern g1="L,Lslash" + g2="s,scaron,uni0455" + k="-14" /> + <hkern g1="L,Lslash" + g2="z,zcaron" + k="-14" /> + <hkern g1="L,Lslash" + g2="j" + k="-10" /> + <hkern g1="L,Lslash" + g2="bar" + k="-23" /> + <hkern g1="L,Lslash" + g2="brokenbar" + k="-23" /> + <hkern g1="Oslash" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="33" /> + <hkern g1="Oslash" + g2="V,uni0423,uni0474" + k="45" /> + <hkern g1="Oslash" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="45" /> + <hkern g1="Oslash" + g2="Y,Yacute,Ydieresis,uni040E" + k="90" /> + <hkern g1="Oslash" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="6" /> + <hkern g1="Oslash" + g2="ampersand" + k="18" /> + <hkern g1="Oslash" + g2="backslash" + k="66" /> + <hkern g1="Oslash" + g2="dagger" + k="-10" /> + <hkern g1="Oslash" + g2="germandbls" + k="41" /> + <hkern g1="Oslash" + g2="ordfeminine" + k="12" /> + <hkern g1="Oslash" + g2="questiondown" + k="86" /> + <hkern g1="Oslash" + g2="quotesinglbase,quotedblbase" + k="72" /> + <hkern g1="Oslash" + g2="slash" + k="86" /> + <hkern g1="Oslash" + g2="trademark" + k="18" /> + <hkern g1="Oslash" + g2="underscore" + k="82" /> + <hkern g1="Oslash" + g2="X,uni0416,uni0425,uni046A" + k="53" /> + <hkern g1="Oslash" + g2="Z,Zcaron" + k="16" /> + <hkern g1="Oslash" + g2="bracketright,braceright" + k="51" /> + <hkern g1="Oslash" + g2="daggerdbl" + k="-10" /> + <hkern g1="Oslash" + g2="equal" + k="-10" /> + <hkern g1="Oslash" + g2="f,fi,fl,f_f_i,f_f_l" + k="-10" /> + <hkern g1="Oslash" + g2="guilsinglright" + k="10" /> + <hkern g1="Oslash" + g2="parenright" + k="51" /> + <hkern g1="Oslash" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="61" /> + <hkern g1="Oslash" + g2="comma,period,ellipsis" + k="72" /> + <hkern g1="Oslash" + g2="florin" + k="74" /> + <hkern g1="Oslash" + g2="lslash" + k="-6" /> + <hkern g1="P,uni0420" + g2="J" + k="135" /> + <hkern g1="P,uni0420" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="2" /> + <hkern g1="P,uni0420" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="10" /> + <hkern g1="P,uni0420" + g2="Y,Yacute,Ydieresis,uni040E" + k="25" /> + <hkern g1="P,uni0420" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="43" /> + <hkern g1="P,uni0420" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="68" /> + <hkern g1="P,uni0420" + g2="guilsinglleft" + k="53" /> + <hkern g1="P,uni0420" + g2="hyphen,endash,emdash" + k="20" /> + <hkern g1="P,uni0420" + g2="m,n,p,r,ntilde" + k="27" /> + <hkern g1="P,uni0420" + g2="oslash" + k="68" /> + <hkern g1="P,uni0420" + g2="quotedbl,quotesingle" + k="-20" /> + <hkern g1="P,uni0420" + g2="quoteleft,quotedblleft" + k="-16" /> + <hkern g1="P,uni0420" + g2="quoteright,quotedblright" + k="-12" /> + <hkern g1="P,uni0420" + g2="quotesinglbase,quotedblbase" + k="131" /> + <hkern g1="P,uni0420" + g2="t" + k="-20" /> + <hkern g1="P,uni0420" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="41" /> + <hkern g1="P,uni0420" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-12" /> + <hkern g1="P,uni0420" + g2="Eth" + k="-12" /> + <hkern g1="P,uni0420" + g2="Z,Zcaron" + k="12" /> + <hkern g1="P,uni0420" + g2="bracketright,braceright" + k="10" /> + <hkern g1="P,uni0420" + g2="f,fi,fl,f_f_i,f_f_l" + k="-14" /> + <hkern g1="P,uni0420" + g2="guilsinglright" + k="-12" /> + <hkern g1="P,uni0420" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="119" /> + <hkern g1="P,uni0420" + g2="comma,period,ellipsis" + k="274" /> + <hkern g1="P,uni0420" + g2="s,scaron,uni0455" + k="37" /> + <hkern g1="P,uni0420" + g2="b,h,k,l,thorn" + k="16" /> + <hkern g1="P,uni0420" + g2="z,zcaron" + k="12" /> + <hkern g1="P,uni0420" + g2="j" + k="6" /> + <hkern g1="P,uni0420" + g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Ntilde,Thorn,IJ,uni01C4,uni01C7,uni01CA,uni01F1" + k="4" /> + <hkern g1="Q" + g2="J" + k="-6" /> + <hkern g1="Q" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="37" /> + <hkern g1="Q" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="45" /> + <hkern g1="Q" + g2="Y,Yacute,Ydieresis,uni040E" + k="92" /> + <hkern g1="Q" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="-4" /> + <hkern g1="Q" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="-4" /> + <hkern g1="Q" + g2="guilsinglleft" + k="10" /> + <hkern g1="Q" + g2="quoteleft,quotedblleft" + k="18" /> + <hkern g1="Q" + g2="quoteright,quotedblright" + k="31" /> + <hkern g1="Q" + g2="t" + k="-14" /> + <hkern g1="Q" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="4" /> + <hkern g1="Q" + g2="w" + k="6" /> + <hkern g1="Q" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="6" /> + <hkern g1="Q" + g2="Eth" + k="-6" /> + <hkern g1="Q" + g2="Z,Zcaron" + k="-4" /> + <hkern g1="Q" + g2="bracketright,braceright" + k="39" /> + <hkern g1="Q" + g2="f,fi,fl,f_f_i,f_f_l" + k="-10" /> + <hkern g1="Q" + g2="guilsinglright" + k="27" /> + <hkern g1="Q" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="16" /> + <hkern g1="Q" + g2="comma,period,ellipsis" + k="39" /> + <hkern g1="Q" + g2="z,zcaron" + k="-4" /> + <hkern g1="Q" + g2="j" + k="-18" /> + <hkern g1="R" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="10" /> + <hkern g1="R" + g2="J" + k="27" /> + <hkern g1="R" + g2="Oslash" + k="6" /> + <hkern g1="R" + g2="V,uni0423,uni0474" + k="10" /> + <hkern g1="R" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="14" /> + <hkern g1="R" + g2="Y,Yacute,Ydieresis,uni040E" + k="20" /> + <hkern g1="R" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="14" /> + <hkern g1="R" + g2="ampersand" + k="25" /> + <hkern g1="R" + g2="asciicircum" + k="-12" /> + <hkern g1="R" + g2="asciitilde" + k="12" /> + <hkern g1="R" + g2="asterisk" + k="-12" /> + <hkern g1="R" + g2="at" + k="23" /> + <hkern g1="R" + g2="backslash" + k="39" /> + <hkern g1="R" + g2="braceleft" + k="20" /> + <hkern g1="R" + g2="bullet" + k="33" /> + <hkern g1="R" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="33" /> + <hkern g1="R" + g2="dagger" + k="-31" /> + <hkern g1="R" + g2="divide" + k="10" /> + <hkern g1="R" + g2="germandbls" + k="16" /> + <hkern g1="R" + g2="guilsinglleft" + k="35" /> + <hkern g1="R" + g2="hyphen,endash,emdash" + k="33" /> + <hkern g1="R" + g2="less" + k="6" /> + <hkern g1="R" + g2="m,n,p,r,ntilde" + k="6" /> + <hkern g1="R" + g2="ordfeminine" + k="23" /> + <hkern g1="R" + g2="oslash" + k="43" /> + <hkern g1="R" + g2="periodcentered" + k="6" /> + <hkern g1="R" + g2="plus" + k="20" /> + <hkern g1="R" + g2="quoteleft,quotedblleft" + k="-12" /> + <hkern g1="R" + g2="t" + k="-14" /> + <hkern g1="R" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="27" /> + <hkern g1="R" + g2="underscore" + k="-25" /> + <hkern g1="R" + g2="w" + k="12" /> + <hkern g1="R" + g2="Z,Zcaron" + k="-4" /> + <hkern g1="R" + g2="bracketright,braceright" + k="-12" /> + <hkern g1="R" + g2="daggerdbl" + k="-31" /> + <hkern g1="R" + g2="f,fi,fl,f_f_i,f_f_l" + k="-4" /> + <hkern g1="R" + g2="greater" + k="-47" /> + <hkern g1="R" + g2="multiply" + k="-16" /> + <hkern g1="R" + g2="parenright" + k="-6" /> + <hkern g1="R" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="6" /> + <hkern g1="R" + g2="comma,period,ellipsis" + k="25" /> + <hkern g1="R" + g2="s,scaron,uni0455" + k="6" /> + <hkern g1="R" + g2="florin" + k="57" /> + <hkern g1="R" + g2="x,uni0445,uni04B3" + k="-12" /> + <hkern g1="R" + g2="lslash" + k="10" /> + <hkern g1="S,Scaron,uni0405" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="6" /> + <hkern g1="S,Scaron,uni0405" + g2="J" + k="-12" /> + <hkern g1="S,Scaron,uni0405" + g2="Oslash" + k="6" /> + <hkern g1="S,Scaron,uni0405" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="6" /> + <hkern g1="S,Scaron,uni0405" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="6" /> + <hkern g1="S,Scaron,uni0405" + g2="V,uni0423,uni0474" + k="4" /> + <hkern g1="S,Scaron,uni0405" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="4" /> + <hkern g1="S,Scaron,uni0405" + g2="Y,Yacute,Ydieresis,uni040E" + k="35" /> + <hkern g1="S,Scaron,uni0405" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="6" /> + <hkern g1="S,Scaron,uni0405" + g2="ampersand" + k="18" /> + <hkern g1="S,Scaron,uni0405" + g2="asciicircum" + k="6" /> + <hkern g1="S,Scaron,uni0405" + g2="backslash" + k="47" /> + <hkern g1="S,Scaron,uni0405" + g2="braceleft" + k="23" /> + <hkern g1="S,Scaron,uni0405" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="12" /> + <hkern g1="S,Scaron,uni0405" + g2="germandbls" + k="47" /> + <hkern g1="S,Scaron,uni0405" + g2="guilsinglleft" + k="6" /> + <hkern g1="S,Scaron,uni0405" + g2="hyphen,endash,emdash" + k="6" /> + <hkern g1="S,Scaron,uni0405" + g2="m,n,p,r,ntilde" + k="39" /> + <hkern g1="S,Scaron,uni0405" + g2="ordfeminine" + k="31" /> + <hkern g1="S,Scaron,uni0405" + g2="ordmasculine" + k="20" /> + <hkern g1="S,Scaron,uni0405" + g2="oslash" + k="12" /> + <hkern g1="S,Scaron,uni0405" + g2="questiondown" + k="18" /> + <hkern g1="S,Scaron,uni0405" + g2="quoteleft,quotedblleft" + k="10" /> + <hkern g1="S,Scaron,uni0405" + g2="quotesinglbase,quotedblbase" + k="18" /> + <hkern g1="S,Scaron,uni0405" + g2="slash" + k="29" /> + <hkern g1="S,Scaron,uni0405" + g2="t" + k="-2" /> + <hkern g1="S,Scaron,uni0405" + g2="trademark" + k="18" /> + <hkern g1="S,Scaron,uni0405" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="33" /> + <hkern g1="S,Scaron,uni0405" + g2="underscore" + k="12" /> + <hkern g1="S,Scaron,uni0405" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="41" /> + <hkern g1="S,Scaron,uni0405" + g2="w" + k="33" /> + <hkern g1="S,Scaron,uni0405" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="47" /> + <hkern g1="S,Scaron,uni0405" + g2="X,uni0416,uni0425,uni046A" + k="18" /> + <hkern g1="S,Scaron,uni0405" + g2="Z,Zcaron" + k="-10" /> + <hkern g1="S,Scaron,uni0405" + g2="bracketright,braceright" + k="-8" /> + <hkern g1="S,Scaron,uni0405" + g2="colon,semicolon" + k="10" /> + <hkern g1="S,Scaron,uni0405" + g2="daggerdbl" + k="-10" /> + <hkern g1="S,Scaron,uni0405" + g2="exclamdown" + k="10" /> + <hkern g1="S,Scaron,uni0405" + g2="f,fi,fl,f_f_i,f_f_l" + k="16" /> + <hkern g1="S,Scaron,uni0405" + g2="greater" + k="-29" /> + <hkern g1="S,Scaron,uni0405" + g2="guilsinglright" + k="6" /> + <hkern g1="S,Scaron,uni0405" + g2="multiply" + k="6" /> + <hkern g1="S,Scaron,uni0405" + g2="parenright" + k="10" /> + <hkern g1="S,Scaron,uni0405" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="25" /> + <hkern g1="S,Scaron,uni0405" + g2="comma,period,ellipsis" + k="10" /> + <hkern g1="S,Scaron,uni0405" + g2="b,h,k,l,thorn" + k="10" /> + <hkern g1="S,Scaron,uni0405" + g2="florin" + k="94" /> + <hkern g1="S,Scaron,uni0405" + g2="x,uni0445,uni04B3" + k="16" /> + <hkern g1="S,Scaron,uni0405" + g2="z,zcaron" + k="6" /> + <hkern g1="S,Scaron,uni0405" + g2="Lslash" + k="-6" /> + <hkern g1="S,Scaron,uni0405" + g2="lslash" + k="-4" /> + <hkern g1="S,Scaron,uni0405" + g2="i,igrave,iacute,icircumflex,idieresis,uni0469" + k="6" /> + <hkern g1="S,Scaron,uni0405" + g2="j" + k="6" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="43" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="J" + k="156" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="Oslash" + k="33" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="-41" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="-4" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="V,uni0423,uni0474" + k="-41" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-41" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="Y,Yacute,Ydieresis,uni040E" + k="-41" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="174" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="ampersand" + k="72" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="asciitilde" + k="135" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="asterisk" + k="-41" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="at" + k="51" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="backslash" + k="-63" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="braceleft" + k="72" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="bullet" + k="162" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="195" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="copyright,registered" + k="20" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="dagger" + k="-51" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="divide" + k="96" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="germandbls" + k="68" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="guilsinglleft" + k="238" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="hyphen,endash,emdash" + k="133" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="less" + k="100" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="m,n,p,r,ntilde" + k="141" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="oslash" + k="164" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="paragraph" + k="-31" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="periodcentered" + k="102" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="plus" + k="113" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="question" + k="-33" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="questiondown" + k="152" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="quotedbl,quotesingle" + k="-53" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="quoteleft,quotedblleft" + k="-61" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="quoteright,quotedblright" + k="-61" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="quotesinglbase,quotedblbase" + k="182" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="slash" + k="172" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="t" + k="47" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="trademark" + k="-53" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="176" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="underscore" + k="92" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="125" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="w" + k="131" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="125" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="X,uni0416,uni0425,uni046A" + k="-12" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="Z,Zcaron" + k="-18" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="bracketright,braceright" + k="-23" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="colon,semicolon" + k="109" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="daggerdbl" + k="-39" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="equal" + k="61" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="exclamdown" + k="53" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="f,fi,fl,f_f_i,f_f_l" + k="45" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="greater" + k="-8" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="guilsinglright" + k="137" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="multiply" + k="55" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="parenright" + k="-23" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="section" + k="-23" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="133" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="comma,period,ellipsis" + k="223" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="s,scaron,uni0455" + k="143" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="b,h,k,l,thorn" + k="-4" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="florin" + k="199" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="x,uni0445,uni04B3" + k="113" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="z,zcaron" + k="78" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="lslash" + k="41" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="i,igrave,iacute,icircumflex,idieresis,uni0469" + k="23" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="j" + k="12" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="bar" + k="-33" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0403,uni0413,uni0422,uni0490,Ygrave,uni1EF8" + g2="brokenbar" + k="-41" /> + <hkern g1="Thorn" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="-6" /> + <hkern g1="Thorn" + g2="J" + k="20" /> + <hkern g1="Thorn" + g2="Oslash" + k="-6" /> + <hkern g1="Thorn" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="45" /> + <hkern g1="Thorn" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="35" /> + <hkern g1="Thorn" + g2="Y,Yacute,Ydieresis,uni040E" + k="70" /> + <hkern g1="Thorn" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="-16" /> + <hkern g1="Thorn" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="-16" /> + <hkern g1="Thorn" + g2="oslash" + k="6" /> + <hkern g1="Thorn" + g2="quoteleft,quotedblleft" + k="18" /> + <hkern g1="Thorn" + g2="quotesinglbase,quotedblbase" + k="74" /> + <hkern g1="Thorn" + g2="t" + k="-37" /> + <hkern g1="Thorn" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="4" /> + <hkern g1="Thorn" + g2="w" + k="-12" /> + <hkern g1="Thorn" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-12" /> + <hkern g1="Thorn" + g2="Eth" + k="-16" /> + <hkern g1="Thorn" + g2="Z,Zcaron" + k="16" /> + <hkern g1="Thorn" + g2="bracketright,braceright" + k="31" /> + <hkern g1="Thorn" + g2="f,fi,fl,f_f_i,f_f_l" + k="-33" /> + <hkern g1="Thorn" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="84" /> + <hkern g1="Thorn" + g2="comma,period,ellipsis" + k="72" /> + <hkern g1="Thorn" + g2="s,scaron,uni0455" + k="-12" /> + <hkern g1="Thorn" + g2="z,zcaron" + k="-23" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="51" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="J" + k="127" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="Oslash" + k="51" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="S,Scaron,uni0405" + k="10" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="-41" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-20" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="Y,Yacute,Ydieresis,uni040E" + k="-20" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="123" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="127" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="copyright,registered" + k="49" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="guilsinglleft" + k="133" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="hyphen,endash,emdash" + k="127" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="m,n,p,r,ntilde" + k="90" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="oslash" + k="127" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="quotedbl,quotesingle" + k="-33" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="quoteleft,quotedblleft" + k="-20" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="quoteright,quotedblright" + k="-23" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="quotesinglbase,quotedblbase" + k="201" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="t" + k="14" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="86" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="w" + k="31" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="29" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="bracketright,braceright" + k="-33" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="colon,semicolon" + k="100" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="f,fi,fl,f_f_i,f_f_l" + k="4" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="guilsinglright" + k="74" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="123" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="comma,period,ellipsis" + k="233" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="s,scaron,uni0455" + k="78" /> + <hkern g1="V,uni040E,uni0423,uni0474" + g2="z,zcaron" + k="37" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="45" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="J" + k="113" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="Oslash" + k="51" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="S,Scaron,uni0405" + k="4" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="-41" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="V,uni0423,uni0474" + k="-20" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-20" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="Y,Yacute,Ydieresis,uni040E" + k="-20" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="61" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="ampersand" + k="37" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="asciitilde" + k="41" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="asterisk" + k="-20" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="at" + k="41" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="backslash" + k="-41" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="braceleft" + k="53" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="bullet" + k="53" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="76" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="copyright,registered" + k="18" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="dagger" + k="-18" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="divide" + k="45" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="germandbls" + k="53" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="guilsinglleft" + k="90" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="hyphen,endash,emdash" + k="63" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="less" + k="41" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="m,n,p,r,ntilde" + k="61" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="oslash" + k="88" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="periodcentered" + k="53" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="plus" + k="61" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="questiondown" + k="141" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="quotedbl,quotesingle" + k="-23" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="quoteleft,quotedblleft" + k="-33" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="quoteright,quotedblright" + k="-33" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="quotesinglbase,quotedblbase" + k="174" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="slash" + k="141" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="t" + k="6" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="trademark" + k="-41" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="66" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="underscore" + k="96" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="14" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="w" + k="20" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="29" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="Eth" + k="4" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="X,uni0416,uni0425,uni046A" + k="-20" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="Z,Zcaron" + k="-4" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="bracketright,braceright" + k="-23" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="colon,semicolon" + k="31" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="daggerdbl" + k="-10" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="equal" + k="20" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="exclamdown" + k="39" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="f,fi,fl,f_f_i,f_f_l" + k="4" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="greater" + k="-18" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="guilsinglright" + k="20" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="multiply" + k="10" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="parenright" + k="-23" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="88" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="comma,period,ellipsis" + k="186" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="s,scaron,uni0455" + k="41" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="florin" + k="123" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="x,uni0445,uni04B3" + k="4" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="z,zcaron" + k="10" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="lslash" + k="10" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="bar" + k="-33" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="brokenbar" + k="-33" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="63" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="J" + k="49" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="Oslash" + k="53" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="S,Scaron,uni0405" + k="18" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="-12" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="4" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-20" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="Y,Yacute,Ydieresis,uni040E" + k="-20" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="18" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="70" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="copyright,registered" + k="82" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="guilsinglleft" + k="164" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="hyphen,endash,emdash" + k="119" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="m,n,p,r,ntilde" + k="4" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="oslash" + k="39" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="quotedbl,quotesingle" + k="-12" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="quoteleft,quotedblleft" + k="-12" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="quoteright,quotedblright" + k="-12" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="t" + k="29" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="49" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="w" + k="53" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="59" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="Z,Zcaron" + k="-12" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="bracketright,braceright" + k="-23" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="colon,semicolon" + k="18" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="f,fi,fl,f_f_i,f_f_l" + k="10" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="guilsinglright" + k="61" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="29" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="comma,period,ellipsis" + k="10" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="s,scaron,uni0455" + k="18" /> + <hkern g1="X,uni0416,uni0425,uni046A" + g2="z,zcaron" + k="-6" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="96" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="J" + k="176" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="Oslash" + k="86" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="S,Scaron,uni0405" + k="35" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="-41" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="V,uni0423,uni0474" + k="-20" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-20" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="Y,Yacute,Ydieresis,uni040E" + k="-20" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="156" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="ampersand" + k="131" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="asciicircum" + k="18" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="asciitilde" + k="133" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="asterisk" + k="10" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="at" + k="100" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="backslash" + k="-31" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="braceleft" + k="59" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="bullet" + k="172" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="199" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="copyright,registered" + k="74" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="divide" + k="113" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="germandbls" + k="96" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="guilsinglleft" + k="219" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="hyphen,endash,emdash" + k="182" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="less" + k="141" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="m,n,p,r,ntilde" + k="133" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="ordfeminine" + k="18" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="ordmasculine" + k="18" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="oslash" + k="184" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="periodcentered" + k="133" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="plus" + k="121" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="questiondown" + k="205" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="quotedbl,quotesingle" + k="-12" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="quoteleft,quotedblleft" + k="-23" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="quoteright,quotedblright" + k="-23" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="quotesinglbase,quotedblbase" + k="233" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="slash" + k="207" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="t" + k="43" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="trademark" + k="-18" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="137" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="underscore" + k="152" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="96" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="w" + k="106" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="92" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="Eth" + k="18" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="X,uni0416,uni0425,uni046A" + k="-20" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="Z,Zcaron" + k="-6" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="bracketright,braceright" + k="-23" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="colon,semicolon" + k="145" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="equal" + k="72" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="exclamdown" + k="90" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="f,fi,fl,f_f_i,f_f_l" + k="55" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="guilsinglright" + k="98" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="multiply" + k="61" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="parenright" + k="-23" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="156" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="comma,period,ellipsis" + k="266" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="s,scaron,uni0455" + k="143" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="b,h,k,l,thorn" + k="4" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="florin" + k="184" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="x,uni0445,uni04B3" + k="72" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="z,zcaron" + k="86" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="Lslash" + k="18" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="lslash" + k="18" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="i,igrave,iacute,icircumflex,idieresis,uni0469" + k="14" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="j" + k="6" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="bar" + k="-20" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="brokenbar" + k="-20" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="41" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="Oslash" + k="27" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="-35" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="Y,Yacute,Ydieresis,uni040E" + k="-6" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="ampersand" + k="18" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="asciitilde" + k="10" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="at" + k="16" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="bullet" + k="31" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="14" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="copyright,registered" + k="10" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="dagger" + k="-10" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="divide" + k="10" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="germandbls" + k="6" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="guilsinglleft" + k="55" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="hyphen,endash,emdash" + k="70" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="less" + k="14" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="oslash" + k="10" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="periodcentered" + k="31" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="plus" + k="16" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="question" + k="-6" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="questiondown" + k="-10" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="trademark" + k="-10" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="14" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="underscore" + k="-31" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="4" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="w" + k="10" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="23" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="X,uni0416,uni0425,uni046A" + k="-12" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="daggerdbl" + k="-10" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="f,fi,fl,f_f_i,f_f_l" + k="-14" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="multiply" + k="-10" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="florin" + k="23" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="bar" + k="-10" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="brokenbar" + k="-10" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="ampersand" + k="39" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="asterisk" + k="41" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="at" + k="20" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="backslash" + k="123" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="ordfeminine" + k="31" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="ordmasculine" + k="27" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="quoteleft,quotedblleft" + k="74" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="quoteright,quotedblright" + k="41" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="trademark" + k="121" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="16" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="underscore" + k="-43" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="25" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="4" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="bracketright,braceright" + k="10" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="bullet" + k="4" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="4" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="colon,semicolon" + k="4" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="dagger" + k="10" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="daggerdbl" + k="10" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="exclam" + k="18" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="paragraph" + k="10" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="parenright" + k="10" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="question" + k="18" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="quotedbl,quotesingle" + k="18" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="t" + k="4" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="14" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring,uni0430" + g2="w" + k="10" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="ampersand" + k="39" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="asterisk" + k="63" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="backslash" + k="197" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="ordfeminine" + k="45" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="ordmasculine" + k="35" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="quoteleft,quotedblleft" + k="82" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="quoteright,quotedblright" + k="82" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="trademark" + k="139" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="6" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="underscore" + k="51" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="45" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="bracketright,braceright" + k="59" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="colon,semicolon" + k="14" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="dagger" + k="10" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="daggerdbl" + k="-10" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="exclam" + k="18" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="parenright" + k="59" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="question" + k="55" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="quotedbl,quotesingle" + k="51" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="t" + k="6" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="31" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="w" + k="25" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="comma,period,ellipsis" + k="35" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="germandbls" + k="6" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="lslash" + k="-23" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="quotesinglbase,quotedblbase" + k="31" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="slash" + k="82" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="x,uni0445,uni04B3" + k="35" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="z,zcaron" + k="6" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="asciitilde" + k="-10" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="exclamdown" + k="18" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="florin" + k="37" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="guilsinglright" + k="10" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn,uni0409,uni040A,uni042A,uni042C" + g2="questiondown" + k="37" /> + <hkern g1="c,ccedilla,uni0441" + g2="ampersand" + k="33" /> + <hkern g1="c,ccedilla,uni0441" + g2="asterisk" + k="31" /> + <hkern g1="c,ccedilla,uni0441" + g2="at" + k="6" /> + <hkern g1="c,ccedilla,uni0441" + g2="backslash" + k="154" /> + <hkern g1="c,ccedilla,uni0441" + g2="ordfeminine" + k="25" /> + <hkern g1="c,ccedilla,uni0441" + g2="ordmasculine" + k="20" /> + <hkern g1="c,ccedilla,uni0441" + g2="quoteleft,quotedblleft" + k="49" /> + <hkern g1="c,ccedilla,uni0441" + g2="quoteright,quotedblright" + k="37" /> + <hkern g1="c,ccedilla,uni0441" + g2="trademark" + k="98" /> + <hkern g1="c,ccedilla,uni0441" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="14" /> + <hkern g1="c,ccedilla,uni0441" + g2="underscore" + k="12" /> + <hkern g1="c,ccedilla,uni0441" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="20" /> + <hkern g1="c,ccedilla,uni0441" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="6" /> + <hkern g1="c,ccedilla,uni0441" + g2="bracketright,braceright" + k="18" /> + <hkern g1="c,ccedilla,uni0441" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="10" /> + <hkern g1="c,ccedilla,uni0441" + g2="parenright" + k="29" /> + <hkern g1="c,ccedilla,uni0441" + g2="question" + k="10" /> + <hkern g1="c,ccedilla,uni0441" + g2="quotedbl,quotesingle" + k="29" /> + <hkern g1="c,ccedilla,uni0441" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="20" /> + <hkern g1="c,ccedilla,uni0441" + g2="w" + k="20" /> + <hkern g1="c,ccedilla,uni0441" + g2="comma,period,ellipsis" + k="10" /> + <hkern g1="c,ccedilla,uni0441" + g2="quotesinglbase,quotedblbase" + k="16" /> + <hkern g1="c,ccedilla,uni0441" + g2="slash" + k="35" /> + <hkern g1="c,ccedilla,uni0441" + g2="x,uni0445,uni04B3" + k="14" /> + <hkern g1="c,ccedilla,uni0441" + g2="questiondown" + k="20" /> + <hkern g1="c,ccedilla,uni0441" + g2="oslash" + k="10" /> + <hkern g1="c,ccedilla,uni0441" + g2="hyphen,endash,emdash" + k="4" /> + <hkern g1="d,l,fl" + g2="ampersand" + k="18" /> + <hkern g1="d,l,fl" + g2="backslash" + k="10" /> + <hkern g1="d,l,fl" + g2="ordfeminine" + k="18" /> + <hkern g1="d,l,fl" + g2="ordmasculine" + k="10" /> + <hkern g1="d,l,fl" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="6" /> + <hkern g1="d,l,fl" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="4" /> + <hkern g1="d,l,fl" + g2="dagger" + k="-10" /> + <hkern g1="d,l,fl" + g2="daggerdbl" + k="-10" /> + <hkern g1="d,l,fl" + g2="comma,period,ellipsis" + k="10" /> + <hkern g1="d,l,fl" + g2="germandbls" + k="6" /> + <hkern g1="d,l,fl" + g2="exclamdown" + k="10" /> + <hkern g1="d,l,fl" + g2="questiondown" + k="10" /> + <hkern g1="d,l,fl" + g2="guilsinglleft" + k="10" /> + <hkern g1="d,l,fl" + g2="periodcentered" + k="10" /> + <hkern g1="d,l,fl" + g2="plus" + k="18" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="ampersand" + k="35" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="asterisk" + k="41" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="backslash" + k="154" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="ordfeminine" + k="35" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="ordmasculine" + k="35" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="quoteleft,quotedblleft" + k="74" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="quoteright,quotedblright" + k="82" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="trademark" + k="154" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="16" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="underscore" + k="12" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="16" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="bracketright,braceright" + k="31" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="paragraph" + k="10" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="parenright" + k="39" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="question" + k="47" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="quotedbl,quotesingle" + k="31" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="20" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="w" + k="14" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="comma,period,ellipsis" + k="27" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="germandbls" + k="6" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="lslash" + k="-12" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="quotesinglbase,quotedblbase" + k="20" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="slash" + k="14" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="x,uni0445,uni04B3" + k="14" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="exclamdown" + k="10" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="questiondown" + k="41" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe,uni0435,uni0450,uni0451" + g2="divide" + k="-10" /> + <hkern g1="f" + g2="asterisk" + k="-82" /> + <hkern g1="f" + g2="at" + k="-14" /> + <hkern g1="f" + g2="backslash" + k="-72" /> + <hkern g1="f" + g2="ordfeminine" + k="-10" /> + <hkern g1="f" + g2="ordmasculine" + k="-18" /> + <hkern g1="f" + g2="quoteleft,quotedblleft" + k="-92" /> + <hkern g1="f" + g2="quoteright,quotedblright" + k="-70" /> + <hkern g1="f" + g2="trademark" + k="-59" /> + <hkern g1="f" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="6" /> + <hkern g1="f" + g2="underscore" + k="59" /> + <hkern g1="f" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-45" /> + <hkern g1="f" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="16" /> + <hkern g1="f" + g2="bracketright,braceright" + k="-47" /> + <hkern g1="f" + g2="bullet" + k="12" /> + <hkern g1="f" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="27" /> + <hkern g1="f" + g2="colon,semicolon" + k="-18" /> + <hkern g1="f" + g2="dagger" + k="-100" /> + <hkern g1="f" + g2="daggerdbl" + k="-90" /> + <hkern g1="f" + g2="exclam" + k="-35" /> + <hkern g1="f" + g2="paragraph" + k="-80" /> + <hkern g1="f" + g2="parenright" + k="-53" /> + <hkern g1="f" + g2="question" + k="-59" /> + <hkern g1="f" + g2="quotedbl,quotesingle" + k="-102" /> + <hkern g1="f" + g2="t" + k="-33" /> + <hkern g1="f" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="-25" /> + <hkern g1="f" + g2="w" + k="-25" /> + <hkern g1="f" + g2="comma,period,ellipsis" + k="121" /> + <hkern g1="f" + g2="lslash" + k="-12" /> + <hkern g1="f" + g2="quotesinglbase,quotedblbase" + k="100" /> + <hkern g1="f" + g2="slash" + k="27" /> + <hkern g1="f" + g2="x,uni0445,uni04B3" + k="-31" /> + <hkern g1="f" + g2="z,zcaron" + k="-39" /> + <hkern g1="f" + g2="asciitilde" + k="12" /> + <hkern g1="f" + g2="exclamdown" + k="-10" /> + <hkern g1="f" + g2="guilsinglright" + k="-18" /> + <hkern g1="f" + g2="questiondown" + k="66" /> + <hkern g1="f" + g2="oslash" + k="27" /> + <hkern g1="f" + g2="hyphen,endash,emdash" + k="14" /> + <hkern g1="f" + g2="guilsinglleft" + k="20" /> + <hkern g1="f" + g2="periodcentered" + k="-10" /> + <hkern g1="f" + g2="plus" + k="12" /> + <hkern g1="f" + g2="asciicircum" + k="-51" /> + <hkern g1="f" + g2="bar" + k="-61" /> + <hkern g1="f" + g2="brokenbar" + k="-82" /> + <hkern g1="f" + g2="copyright,registered" + k="-20" /> + <hkern g1="f" + g2="f,fi,fl,f_f_i,f_f_l" + k="2" /> + <hkern g1="f" + g2="greater" + k="-80" /> + <hkern g1="f" + g2="j" + k="-29" /> + <hkern g1="f" + g2="multiply" + k="-41" /> + <hkern g1="f" + g2="section" + k="-51" /> + <hkern g1="f" + g2="s,scaron,uni0455" + k="-10" /> + <hkern g1="g" + g2="ampersand" + k="33" /> + <hkern g1="g" + g2="backslash" + k="100" /> + <hkern g1="g" + g2="ordfeminine" + k="37" /> + <hkern g1="g" + g2="ordmasculine" + k="4" /> + <hkern g1="g" + g2="quoteleft,quotedblleft" + k="10" /> + <hkern g1="g" + g2="quoteright,quotedblright" + k="29" /> + <hkern g1="g" + g2="trademark" + k="61" /> + <hkern g1="g" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="10" /> + <hkern g1="g" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="10" /> + <hkern g1="g" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="10" /> + <hkern g1="g" + g2="bracketright,braceright" + k="18" /> + <hkern g1="g" + g2="exclam" + k="10" /> + <hkern g1="g" + g2="parenright" + k="18" /> + <hkern g1="g" + g2="question" + k="10" /> + <hkern g1="g" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="4" /> + <hkern g1="g" + g2="w" + k="10" /> + <hkern g1="g" + g2="comma,period,ellipsis" + k="10" /> + <hkern g1="g" + g2="germandbls" + k="10" /> + <hkern g1="g" + g2="hyphen,endash,emdash" + k="4" /> + <hkern g1="g" + g2="guilsinglleft" + k="18" /> + <hkern g1="g" + g2="divide" + k="6" /> + <hkern g1="germandbls" + g2="quoteleft,quotedblleft" + k="10" /> + <hkern g1="germandbls" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="14" /> + <hkern g1="germandbls" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="6" /> + <hkern g1="germandbls" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="-4" /> + <hkern g1="germandbls" + g2="bracketright,braceright" + k="-23" /> + <hkern g1="germandbls" + g2="t" + k="4" /> + <hkern g1="germandbls" + g2="w" + k="10" /> + <hkern g1="germandbls" + g2="oslash" + k="-4" /> + <hkern g1="germandbls" + g2="s,scaron,uni0455" + k="-4" /> + <hkern g1="h,m,n,ntilde,uni04BB" + g2="ampersand" + k="18" /> + <hkern g1="h,m,n,ntilde,uni04BB" + g2="asterisk" + k="12" /> + <hkern g1="h,m,n,ntilde,uni04BB" + g2="at" + k="14" /> + <hkern g1="h,m,n,ntilde,uni04BB" + g2="backslash" + k="137" /> + <hkern g1="h,m,n,ntilde,uni04BB" + g2="ordfeminine" + k="31" /> + <hkern g1="h,m,n,ntilde,uni04BB" + g2="ordmasculine" + k="18" /> + <hkern g1="h,m,n,ntilde,uni04BB" + g2="quoteleft,quotedblleft" + k="63" /> + <hkern g1="h,m,n,ntilde,uni04BB" + g2="quoteright,quotedblright" + k="94" /> + <hkern g1="h,m,n,ntilde,uni04BB" + g2="trademark" + k="129" /> + <hkern g1="h,m,n,ntilde,uni04BB" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="12" /> + <hkern g1="h,m,n,ntilde,uni04BB" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="14" /> + <hkern g1="h,m,n,ntilde,uni04BB" + g2="colon,semicolon" + k="4" /> + <hkern g1="h,m,n,ntilde,uni04BB" + g2="dagger" + k="14" /> + <hkern g1="h,m,n,ntilde,uni04BB" + g2="question" + k="35" /> + <hkern g1="h,m,n,ntilde,uni04BB" + g2="quotedbl,quotesingle" + k="10" /> + <hkern g1="h,m,n,ntilde,uni04BB" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="14" /> + <hkern g1="h,m,n,ntilde,uni04BB" + g2="w" + k="4" /> + <hkern g1="h,m,n,ntilde,uni04BB" + g2="germandbls" + k="12" /> + <hkern g1="h,m,n,ntilde,uni04BB" + g2="exclamdown" + k="4" /> + <hkern g1="h,m,n,ntilde,uni04BB" + g2="periodcentered" + k="4" /> + <hkern g1="h,m,n,ntilde,uni04BB" + g2="copyright,registered" + k="6" /> + <hkern g1="h,m,n,ntilde,uni04BB" + g2="equal" + k="6" /> + <hkern g1="i,q,igrave,iacute,icircumflex,idieresis,fi,f_f_i" + g2="ampersand" + k="18" /> + <hkern g1="i,q,igrave,iacute,icircumflex,idieresis,fi,f_f_i" + g2="backslash" + k="78" /> + <hkern g1="i,q,igrave,iacute,icircumflex,idieresis,fi,f_f_i" + g2="trademark" + k="10" /> + <hkern g1="i,q,igrave,iacute,icircumflex,idieresis,fi,f_f_i" + g2="question" + k="10" /> + <hkern g1="i,q,igrave,iacute,icircumflex,idieresis,fi,f_f_i" + g2="quotesinglbase,quotedblbase" + k="10" /> + <hkern g1="i,q,igrave,iacute,icircumflex,idieresis,fi,f_f_i" + g2="exclamdown" + k="10" /> + <hkern g1="i,q,igrave,iacute,icircumflex,idieresis,fi,f_f_i" + g2="guilsinglleft" + k="10" /> + <hkern g1="j" + g2="ampersand" + k="18" /> + <hkern g1="j" + g2="at" + k="6" /> + <hkern g1="j" + g2="backslash" + k="10" /> + <hkern g1="j" + g2="ordfeminine" + k="10" /> + <hkern g1="j" + g2="quoteright,quotedblright" + k="-10" /> + <hkern g1="j" + g2="dagger" + k="-18" /> + <hkern g1="j" + g2="daggerdbl" + k="-57" /> + <hkern g1="j" + g2="comma,period,ellipsis" + k="10" /> + <hkern g1="j" + g2="germandbls" + k="10" /> + <hkern g1="j" + g2="asciitilde" + k="10" /> + <hkern g1="j" + g2="guilsinglleft" + k="10" /> + <hkern g1="j" + g2="periodcentered" + k="10" /> + <hkern g1="j" + g2="f,fi,fl,f_f_i,f_f_l" + k="-4" /> + <hkern g1="j" + g2="greater" + k="-18" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="ampersand" + k="33" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="asterisk" + k="12" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="at" + k="10" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="backslash" + k="66" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="quoteleft,quotedblleft" + k="-10" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="quoteright,quotedblright" + k="4" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="trademark" + k="59" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="10" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="underscore" + k="-72" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="27" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="bracketright,braceright" + k="18" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="bullet" + k="33" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="47" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="colon,semicolon" + k="20" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="dagger" + k="-31" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="daggerdbl" + k="-31" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="paragraph" + k="-18" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="parenright" + k="18" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="29" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="comma,period,ellipsis" + k="10" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="quotesinglbase,quotedblbase" + k="-33" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="slash" + k="-41" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="z,zcaron" + k="-6" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="asciitilde" + k="23" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="exclamdown" + k="-12" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="guilsinglright" + k="-10" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="questiondown" + k="-29" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="oslash" + k="18" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="hyphen,endash,emdash" + k="61" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="guilsinglleft" + k="72" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="periodcentered" + k="10" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="plus" + k="31" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="divide" + k="20" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="asciicircum" + k="10" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="brokenbar" + k="-18" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="copyright,registered" + k="10" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="f,fi,fl,f_f_i,f_f_l" + k="-4" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="greater" + k="-92" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="multiply" + k="-23" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="braceleft" + k="12" /> + <hkern g1="k,uni043A,uni045C,uni043A.loclRUS,uni043A.loclSRB" + g2="less" + k="51" /> + <hkern g1="lslash" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="-4" /> + <hkern g1="lslash" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-41" /> + <hkern g1="lslash" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="-20" /> + <hkern g1="lslash" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="-6" /> + <hkern g1="lslash" + g2="colon,semicolon" + k="-10" /> + <hkern g1="lslash" + g2="quotedbl,quotesingle" + k="-18" /> + <hkern g1="lslash" + g2="t" + k="-41" /> + <hkern g1="lslash" + g2="w" + k="-37" /> + <hkern g1="lslash" + g2="comma,period,ellipsis" + k="37" /> + <hkern g1="lslash" + g2="quotesinglbase,quotedblbase" + k="37" /> + <hkern g1="lslash" + g2="z,zcaron" + k="-41" /> + <hkern g1="lslash" + g2="oslash" + k="-6" /> + <hkern g1="lslash" + g2="hyphen,endash,emdash" + k="-10" /> + <hkern g1="lslash" + g2="guilsinglleft" + k="-6" /> + <hkern g1="lslash" + g2="copyright,registered" + k="-23" /> + <hkern g1="lslash" + g2="f,fi,fl,f_f_i,f_f_l" + k="-51" /> + <hkern g1="lslash" + g2="s,scaron,uni0455" + k="-20" /> + <hkern g1="oslash" + g2="ampersand" + k="31" /> + <hkern g1="oslash" + g2="backslash" + k="154" /> + <hkern g1="oslash" + g2="quoteleft,quotedblleft" + k="51" /> + <hkern g1="oslash" + g2="quoteright,quotedblright" + k="41" /> + <hkern g1="oslash" + g2="trademark" + k="18" /> + <hkern g1="oslash" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="4" /> + <hkern g1="oslash" + g2="underscore" + k="51" /> + <hkern g1="oslash" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="31" /> + <hkern g1="oslash" + g2="bracketright,braceright" + k="31" /> + <hkern g1="oslash" + g2="parenright" + k="39" /> + <hkern g1="oslash" + g2="quotedbl,quotesingle" + k="23" /> + <hkern g1="oslash" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="25" /> + <hkern g1="oslash" + g2="w" + k="25" /> + <hkern g1="oslash" + g2="comma,period,ellipsis" + k="35" /> + <hkern g1="oslash" + g2="germandbls" + k="10" /> + <hkern g1="oslash" + g2="lslash" + k="-6" /> + <hkern g1="oslash" + g2="quotesinglbase,quotedblbase" + k="39" /> + <hkern g1="oslash" + g2="slash" + k="29" /> + <hkern g1="oslash" + g2="x,uni0445,uni04B3" + k="20" /> + <hkern g1="oslash" + g2="exclamdown" + k="10" /> + <hkern g1="oslash" + g2="guilsinglright" + k="10" /> + <hkern g1="oslash" + g2="questiondown" + k="29" /> + <hkern g1="oslash" + g2="greater" + k="-10" /> + <hkern g1="r" + g2="ampersand" + k="29" /> + <hkern g1="r" + g2="asterisk" + k="-82" /> + <hkern g1="r" + g2="at" + k="-51" /> + <hkern g1="r" + g2="backslash" + k="39" /> + <hkern g1="r" + g2="ordmasculine" + k="-18" /> + <hkern g1="r" + g2="quoteleft,quotedblleft" + k="-10" /> + <hkern g1="r" + g2="quoteright,quotedblright" + k="-43" /> + <hkern g1="r" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="-6" /> + <hkern g1="r" + g2="underscore" + k="39" /> + <hkern g1="r" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-45" /> + <hkern g1="r" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="-10" /> + <hkern g1="r" + g2="bracketright,braceright" + k="-23" /> + <hkern g1="r" + g2="bullet" + k="-10" /> + <hkern g1="r" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="57" /> + <hkern g1="r" + g2="colon,semicolon" + k="-29" /> + <hkern g1="r" + g2="dagger" + k="-72" /> + <hkern g1="r" + g2="daggerdbl" + k="-72" /> + <hkern g1="r" + g2="exclam" + k="-43" /> + <hkern g1="r" + g2="paragraph" + k="-92" /> + <hkern g1="r" + g2="parenright" + k="18" /> + <hkern g1="r" + g2="question" + k="-41" /> + <hkern g1="r" + g2="quotedbl,quotesingle" + k="-72" /> + <hkern g1="r" + g2="t" + k="-47" /> + <hkern g1="r" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="-35" /> + <hkern g1="r" + g2="w" + k="-31" /> + <hkern g1="r" + g2="comma,period,ellipsis" + k="166" /> + <hkern g1="r" + g2="quotesinglbase,quotedblbase" + k="53" /> + <hkern g1="r" + g2="slash" + k="18" /> + <hkern g1="r" + g2="x,uni0445,uni04B3" + k="-53" /> + <hkern g1="r" + g2="z,zcaron" + k="-31" /> + <hkern g1="r" + g2="exclamdown" + k="-33" /> + <hkern g1="r" + g2="florin" + k="10" /> + <hkern g1="r" + g2="guilsinglright" + k="-53" /> + <hkern g1="r" + g2="questiondown" + k="31" /> + <hkern g1="r" + g2="oslash" + k="6" /> + <hkern g1="r" + g2="periodcentered" + k="-10" /> + <hkern g1="r" + g2="plus" + k="-10" /> + <hkern g1="r" + g2="divide" + k="-29" /> + <hkern g1="r" + g2="asciicircum" + k="-37" /> + <hkern g1="r" + g2="bar" + k="-61" /> + <hkern g1="r" + g2="brokenbar" + k="-43" /> + <hkern g1="r" + g2="copyright,registered" + k="-61" /> + <hkern g1="r" + g2="f,fi,fl,f_f_i,f_f_l" + k="-47" /> + <hkern g1="r" + g2="greater" + k="-47" /> + <hkern g1="r" + g2="j" + k="-4" /> + <hkern g1="r" + g2="multiply" + k="-18" /> + <hkern g1="r" + g2="section" + k="-43" /> + <hkern g1="r" + g2="s,scaron,uni0455" + k="37" /> + <hkern g1="r" + g2="equal" + k="-29" /> + <hkern g1="r" + g2="less" + k="-10" /> + <hkern g1="r" + g2="b,h,k,l,thorn" + k="-4" /> + <hkern g1="r" + g2="i,igrave,iacute,icircumflex,idieresis,uni0469" + k="-4" /> + <hkern g1="r" + g2="m,n,p,r,ntilde" + k="-4" /> + <hkern g1="s,scaron,uni0455" + g2="ampersand" + k="18" /> + <hkern g1="s,scaron,uni0455" + g2="asterisk" + k="20" /> + <hkern g1="s,scaron,uni0455" + g2="backslash" + k="123" /> + <hkern g1="s,scaron,uni0455" + g2="ordfeminine" + k="41" /> + <hkern g1="s,scaron,uni0455" + g2="ordmasculine" + k="33" /> + <hkern g1="s,scaron,uni0455" + g2="quoteleft,quotedblleft" + k="31" /> + <hkern g1="s,scaron,uni0455" + g2="quoteright,quotedblright" + k="43" /> + <hkern g1="s,scaron,uni0455" + g2="trademark" + k="100" /> + <hkern g1="s,scaron,uni0455" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="8" /> + <hkern g1="s,scaron,uni0455" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="14" /> + <hkern g1="s,scaron,uni0455" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="12" /> + <hkern g1="s,scaron,uni0455" + g2="bracketright,braceright" + k="10" /> + <hkern g1="s,scaron,uni0455" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="6" /> + <hkern g1="s,scaron,uni0455" + g2="parenright" + k="23" /> + <hkern g1="s,scaron,uni0455" + g2="question" + k="10" /> + <hkern g1="s,scaron,uni0455" + g2="quotedbl,quotesingle" + k="12" /> + <hkern g1="s,scaron,uni0455" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="14" /> + <hkern g1="s,scaron,uni0455" + g2="w" + k="14" /> + <hkern g1="s,scaron,uni0455" + g2="germandbls" + k="10" /> + <hkern g1="s,scaron,uni0455" + g2="quotesinglbase,quotedblbase" + k="-4" /> + <hkern g1="s,scaron,uni0455" + g2="slash" + k="-12" /> + <hkern g1="s,scaron,uni0455" + g2="x,uni0445,uni04B3" + k="10" /> + <hkern g1="s,scaron,uni0455" + g2="z,zcaron" + k="-4" /> + <hkern g1="s,scaron,uni0455" + g2="florin" + k="18" /> + <hkern g1="s,scaron,uni0455" + g2="oslash" + k="6" /> + <hkern g1="s,scaron,uni0455" + g2="guilsinglleft" + k="18" /> + <hkern g1="s,scaron,uni0455" + g2="periodcentered" + k="10" /> + <hkern g1="s,scaron,uni0455" + g2="greater" + k="-12" /> + <hkern g1="t" + g2="asterisk" + k="-29" /> + <hkern g1="t" + g2="backslash" + k="10" /> + <hkern g1="t" + g2="quoteleft,quotedblleft" + k="12" /> + <hkern g1="t" + g2="quoteright,quotedblright" + k="29" /> + <hkern g1="t" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="-10" /> + <hkern g1="t" + g2="underscore" + k="-61" /> + <hkern g1="t" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-25" /> + <hkern g1="t" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="-10" /> + <hkern g1="t" + g2="bracketright,braceright" + k="-12" /> + <hkern g1="t" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="6" /> + <hkern g1="t" + g2="colon,semicolon" + k="-10" /> + <hkern g1="t" + g2="paragraph" + k="-18" /> + <hkern g1="t" + g2="parenright" + k="-12" /> + <hkern g1="t" + g2="question" + k="-25" /> + <hkern g1="t" + g2="quotedbl,quotesingle" + k="-10" /> + <hkern g1="t" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="-12" /> + <hkern g1="t" + g2="w" + k="-12" /> + <hkern g1="t" + g2="quotesinglbase,quotedblbase" + k="-12" /> + <hkern g1="t" + g2="slash" + k="-51" /> + <hkern g1="t" + g2="x,uni0445,uni04B3" + k="-51" /> + <hkern g1="t" + g2="z,zcaron" + k="-45" /> + <hkern g1="t" + g2="exclamdown" + k="-10" /> + <hkern g1="t" + g2="guilsinglright" + k="-12" /> + <hkern g1="t" + g2="questiondown" + k="-10" /> + <hkern g1="t" + g2="asciicircum" + k="-10" /> + <hkern g1="t" + g2="copyright,registered" + k="-10" /> + <hkern g1="t" + g2="greater" + k="-37" /> + <hkern g1="t" + g2="j" + k="-10" /> + <hkern g1="t" + g2="s,scaron,uni0455" + k="-25" /> + <hkern g1="t" + g2="b,h,k,l,thorn" + k="33" /> + <hkern g1="t" + g2="i,igrave,iacute,icircumflex,idieresis,uni0469" + k="-4" /> + <hkern g1="t" + g2="m,n,p,r,ntilde" + k="12" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="ampersand" + k="18" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="at" + k="10" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="backslash" + k="76" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="ordfeminine" + k="33" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="ordmasculine" + k="27" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="quoteleft,quotedblleft" + k="20" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="quoteright,quotedblright" + k="10" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="trademark" + k="51" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="6" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="bracketright,braceright" + k="4" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="6" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="parenright" + k="14" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="germandbls" + k="10" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="oslash" + k="6" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="guilsinglleft" + k="10" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="f,fi,fl,f_f_i,f_f_l" + k="-4" /> + <hkern g1="v,wcircumflex,ycircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-12" /> + <hkern g1="v,wcircumflex,ycircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="6" /> + <hkern g1="v,wcircumflex,ycircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="bracketright,braceright" + k="18" /> + <hkern g1="v,wcircumflex,ycircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="31" /> + <hkern g1="v,wcircumflex,ycircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="colon,semicolon" + k="10" /> + <hkern g1="v,wcircumflex,ycircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="quotedbl,quotesingle" + k="-31" /> + <hkern g1="v,wcircumflex,ycircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="t" + k="-35" /> + <hkern g1="v,wcircumflex,ycircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="w" + k="-6" /> + <hkern g1="v,wcircumflex,ycircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="comma,period,ellipsis" + k="166" /> + <hkern g1="v,wcircumflex,ycircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="quotesinglbase,quotedblbase" + k="100" /> + <hkern g1="v,wcircumflex,ycircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="z,zcaron" + k="-12" /> + <hkern g1="v,wcircumflex,ycircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="guilsinglright" + k="-23" /> + <hkern g1="v,wcircumflex,ycircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="oslash" + k="20" /> + <hkern g1="v,wcircumflex,ycircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="hyphen,endash,emdash" + k="25" /> + <hkern g1="v,wcircumflex,ycircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="guilsinglleft" + k="18" /> + <hkern g1="v,wcircumflex,ycircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="copyright,registered" + k="-10" /> + <hkern g1="v,wcircumflex,ycircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="f,fi,fl,f_f_i,f_f_l" + k="-41" /> + <hkern g1="w" + g2="ampersand" + k="39" /> + <hkern g1="w" + g2="asterisk" + k="-10" /> + <hkern g1="w" + g2="at" + k="-23" /> + <hkern g1="w" + g2="backslash" + k="51" /> + <hkern g1="w" + g2="ordmasculine" + k="-14" /> + <hkern g1="w" + g2="quoteleft,quotedblleft" + k="-10" /> + <hkern g1="w" + g2="quoteright,quotedblright" + k="-10" /> + <hkern g1="w" + g2="trademark" + k="10" /> + <hkern g1="w" + g2="underscore" + k="82" /> + <hkern g1="w" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-6" /> + <hkern g1="w" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="6" /> + <hkern g1="w" + g2="bracketright,braceright" + k="41" /> + <hkern g1="w" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="25" /> + <hkern g1="w" + g2="dagger" + k="-61" /> + <hkern g1="w" + g2="daggerdbl" + k="-74" /> + <hkern g1="w" + g2="paragraph" + k="-18" /> + <hkern g1="w" + g2="parenright" + k="51" /> + <hkern g1="w" + g2="question" + k="-18" /> + <hkern g1="w" + g2="quotedbl,quotesingle" + k="-31" /> + <hkern g1="w" + g2="t" + k="-35" /> + <hkern g1="w" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="-6" /> + <hkern g1="w" + g2="comma,period,ellipsis" + k="92" /> + <hkern g1="w" + g2="germandbls" + k="4" /> + <hkern g1="w" + g2="quotesinglbase,quotedblbase" + k="92" /> + <hkern g1="w" + g2="slash" + k="51" /> + <hkern g1="w" + g2="x,uni0445,uni04B3" + k="-6" /> + <hkern g1="w" + g2="z,zcaron" + k="-10" /> + <hkern g1="w" + g2="exclamdown" + k="10" /> + <hkern g1="w" + g2="florin" + k="18" /> + <hkern g1="w" + g2="questiondown" + k="59" /> + <hkern g1="w" + g2="oslash" + k="25" /> + <hkern g1="w" + g2="hyphen,endash,emdash" + k="14" /> + <hkern g1="w" + g2="guilsinglleft" + k="25" /> + <hkern g1="w" + g2="plus" + k="4" /> + <hkern g1="w" + g2="divide" + k="10" /> + <hkern g1="w" + g2="asciicircum" + k="-18" /> + <hkern g1="w" + g2="bar" + k="-33" /> + <hkern g1="w" + g2="brokenbar" + k="-33" /> + <hkern g1="w" + g2="copyright,registered" + k="-12" /> + <hkern g1="w" + g2="f,fi,fl,f_f_i,f_f_l" + k="-35" /> + <hkern g1="w" + g2="greater" + k="-18" /> + <hkern g1="w" + g2="multiply" + k="-10" /> + <hkern g1="w" + g2="less" + k="10" /> + <hkern g1="x,uni0445,uni04B3" + g2="quoteright,quotedblright" + k="10" /> + <hkern g1="x,uni0445,uni04B3" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="10" /> + <hkern g1="x,uni0445,uni04B3" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-6" /> + <hkern g1="x,uni0445,uni04B3" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="4" /> + <hkern g1="x,uni0445,uni04B3" + g2="bracketright,braceright" + k="10" /> + <hkern g1="x,uni0445,uni04B3" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="35" /> + <hkern g1="x,uni0445,uni04B3" + g2="colon,semicolon" + k="10" /> + <hkern g1="x,uni0445,uni04B3" + g2="quotedbl,quotesingle" + k="-12" /> + <hkern g1="x,uni0445,uni04B3" + g2="t" + k="-14" /> + <hkern g1="x,uni0445,uni04B3" + g2="w" + k="-6" /> + <hkern g1="x,uni0445,uni04B3" + g2="quotesinglbase,quotedblbase" + k="-20" /> + <hkern g1="x,uni0445,uni04B3" + g2="z,zcaron" + k="-33" /> + <hkern g1="x,uni0445,uni04B3" + g2="oslash" + k="25" /> + <hkern g1="x,uni0445,uni04B3" + g2="hyphen,endash,emdash" + k="43" /> + <hkern g1="x,uni0445,uni04B3" + g2="guilsinglleft" + k="31" /> + <hkern g1="x,uni0445,uni04B3" + g2="copyright,registered" + k="10" /> + <hkern g1="x,uni0445,uni04B3" + g2="f,fi,fl,f_f_i,f_f_l" + k="-27" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="ampersand" + k="41" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="asterisk" + k="-18" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="at" + k="-12" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="backslash" + k="61" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="10" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="underscore" + k="102" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-6" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="31" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="bracketright,braceright" + k="37" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="45" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="colon,semicolon" + k="14" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="dagger" + k="-51" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="daggerdbl" + k="-51" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="paragraph" + k="-18" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="parenright" + k="37" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="question" + k="-20" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="quotedbl,quotesingle" + k="-20" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="t" + k="-25" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="-6" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="comma,period,ellipsis" + k="207" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="germandbls" + k="4" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="lslash" + k="4" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="quotesinglbase,quotedblbase" + k="135" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="slash" + k="57" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="exclamdown" + k="10" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="florin" + k="29" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="questiondown" + k="80" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="oslash" + k="41" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="hyphen,endash,emdash" + k="51" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="guilsinglleft" + k="31" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="periodcentered" + k="10" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="divide" + k="10" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="asciicircum" + k="-10" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="bar" + k="-27" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="brokenbar" + k="-31" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="copyright,registered" + k="-10" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="f,fi,fl,f_f_i,f_f_l" + k="-31" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="greater" + k="-29" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="multiply" + k="-18" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="section" + k="-10" /> + <hkern g1="y,yacute,ydieresis,uni0478,uni0479" + g2="s,scaron,uni0455" + k="16" /> + <hkern g1="z,zcaron" + g2="ampersand" + k="18" /> + <hkern g1="z,zcaron" + g2="asterisk" + k="-10" /> + <hkern g1="z,zcaron" + g2="backslash" + k="82" /> + <hkern g1="z,zcaron" + g2="trademark" + k="10" /> + <hkern g1="z,zcaron" + g2="underscore" + k="-20" /> + <hkern g1="z,zcaron" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-4" /> + <hkern g1="z,zcaron" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="-10" /> + <hkern g1="z,zcaron" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="4" /> + <hkern g1="z,zcaron" + g2="dagger" + k="-31" /> + <hkern g1="z,zcaron" + g2="daggerdbl" + k="-31" /> + <hkern g1="z,zcaron" + g2="paragraph" + k="-10" /> + <hkern g1="z,zcaron" + g2="t" + k="-23" /> + <hkern g1="z,zcaron" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="-4" /> + <hkern g1="z,zcaron" + g2="w" + k="-4" /> + <hkern g1="z,zcaron" + g2="lslash" + k="-12" /> + <hkern g1="z,zcaron" + g2="quotesinglbase,quotedblbase" + k="-10" /> + <hkern g1="z,zcaron" + g2="slash" + k="-18" /> + <hkern g1="z,zcaron" + g2="x,uni0445,uni04B3" + k="-14" /> + <hkern g1="z,zcaron" + g2="z,zcaron" + k="-4" /> + <hkern g1="z,zcaron" + g2="questiondown" + k="-10" /> + <hkern g1="z,zcaron" + g2="guilsinglleft" + k="16" /> + <hkern g1="z,zcaron" + g2="plus" + k="-10" /> + <hkern g1="z,zcaron" + g2="bar" + k="-27" /> + <hkern g1="z,zcaron" + g2="brokenbar" + k="-10" /> + <hkern g1="z,zcaron" + g2="f,fi,fl,f_f_i,f_f_l" + k="-29" /> + <hkern g1="z,zcaron" + g2="greater" + k="-18" /> + <hkern g1="ampersand" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="143" /> + <hkern g1="ampersand" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="20" /> + <hkern g1="ampersand" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="76" /> + <hkern g1="ampersand" + g2="Y,Yacute,Ydieresis,uni040E" + k="182" /> + <hkern g1="ampersand" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="14" /> + <hkern g1="ampersand" + g2="J" + k="-10" /> + <hkern g1="ampersand" + g2="Oslash" + k="10" /> + <hkern g1="ampersand" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="4" /> + <hkern g1="ampersand" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="29" /> + <hkern g1="asciicircum" + g2="Y,Yacute,Ydieresis,uni040E" + k="18" /> + <hkern g1="asciicircum" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="-20" /> + <hkern g1="asciicircum" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-10" /> + <hkern g1="asciicircum" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="78" /> + <hkern g1="asciicircum" + g2="Eth" + k="-10" /> + <hkern g1="asciicircum" + g2="f,fi,fl,f_f_i,f_f_l" + k="-29" /> + <hkern g1="asciicircum" + g2="w" + k="-18" /> + <hkern g1="asciitilde" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="135" /> + <hkern g1="asciitilde" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="6" /> + <hkern g1="asciitilde" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="41" /> + <hkern g1="asciitilde" + g2="Y,Yacute,Ydieresis,uni040E" + k="133" /> + <hkern g1="asciitilde" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="-20" /> + <hkern g1="asciitilde" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="41" /> + <hkern g1="asciitilde" + g2="Z,Zcaron" + k="10" /> + <hkern g1="asciitilde" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="-10" /> + <hkern g1="asciitilde" + g2="j" + k="10" /> + <hkern g1="asciitilde" + g2="z,zcaron" + k="4" /> + <hkern g1="at" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="51" /> + <hkern g1="at" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="10" /> + <hkern g1="at" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="41" /> + <hkern g1="at" + g2="Y,Yacute,Ydieresis,uni040E" + k="100" /> + <hkern g1="at" + g2="J" + k="39" /> + <hkern g1="at" + g2="Oslash" + k="4" /> + <hkern g1="at" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="4" /> + <hkern g1="at" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-12" /> + <hkern g1="at" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="90" /> + <hkern g1="at" + g2="Eth" + k="-12" /> + <hkern g1="at" + g2="f,fi,fl,f_f_i,f_f_l" + k="-10" /> + <hkern g1="at" + g2="w" + k="-16" /> + <hkern g1="at" + g2="Z,Zcaron" + k="33" /> + <hkern g1="at" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="18" /> + <hkern g1="at" + g2="z,zcaron" + k="-6" /> + <hkern g1="at" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="10" /> + <hkern g1="at" + g2="m,n,p,r,ntilde" + k="14" /> + <hkern g1="at" + g2="oslash" + k="14" /> + <hkern g1="at" + g2="s,scaron,uni0455" + k="4" /> + <hkern g1="bar" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="-33" /> + <hkern g1="bar" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-33" /> + <hkern g1="bar" + g2="Y,Yacute,Ydieresis,uni040E" + k="-20" /> + <hkern g1="bar" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-27" /> + <hkern g1="bar" + g2="w" + k="-33" /> + <hkern g1="bar" + g2="Z,Zcaron" + k="-10" /> + <hkern g1="bar" + g2="j" + k="-29" /> + <hkern g1="bar" + g2="z,zcaron" + k="-20" /> + <hkern g1="brokenbar" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="-41" /> + <hkern g1="brokenbar" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-33" /> + <hkern g1="brokenbar" + g2="Y,Yacute,Ydieresis,uni040E" + k="-20" /> + <hkern g1="brokenbar" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-31" /> + <hkern g1="brokenbar" + g2="w" + k="-33" /> + <hkern g1="brokenbar" + g2="Z,Zcaron" + k="-10" /> + <hkern g1="brokenbar" + g2="z,zcaron" + k="-10" /> + <hkern g1="copyright,registered" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="20" /> + <hkern g1="copyright,registered" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="18" /> + <hkern g1="copyright,registered" + g2="Y,Yacute,Ydieresis,uni040E" + k="74" /> + <hkern g1="copyright,registered" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="-12" /> + <hkern g1="copyright,registered" + g2="J" + k="10" /> + <hkern g1="copyright,registered" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="66" /> + <hkern g1="copyright,registered" + g2="Eth" + k="-12" /> + <hkern g1="copyright,registered" + g2="f,fi,fl,f_f_i,f_f_l" + k="-10" /> + <hkern g1="copyright,registered" + g2="w" + k="-12" /> + <hkern g1="copyright,registered" + g2="Z,Zcaron" + k="10" /> + <hkern g1="copyright,registered" + g2="z,zcaron" + k="6" /> + <hkern g1="copyright,registered" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="23" /> + <hkern g1="copyright,registered" + g2="Lslash" + k="-12" /> + <hkern g1="copyright,registered" + g2="V,uni0423,uni0474" + k="49" /> + <hkern g1="copyright,registered" + g2="X,uni0416,uni0425,uni046A" + k="82" /> + <hkern g1="copyright,registered" + g2="germandbls" + k="10" /> + <hkern g1="copyright,registered" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="-10" /> + <hkern g1="copyright,registered" + g2="x,uni0445,uni04B3" + k="10" /> + <hkern g1="dagger" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="-29" /> + <hkern g1="dagger" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-18" /> + <hkern g1="dagger" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="-10" /> + <hkern g1="dagger" + g2="J" + k="29" /> + <hkern g1="dagger" + g2="Oslash" + k="-10" /> + <hkern g1="dagger" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-51" /> + <hkern g1="dagger" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="72" /> + <hkern g1="dagger" + g2="f,fi,fl,f_f_i,f_f_l" + k="-29" /> + <hkern g1="dagger" + g2="w" + k="-74" /> + <hkern g1="dagger" + g2="Z,Zcaron" + k="-10" /> + <hkern g1="dagger" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="10" /> + <hkern g1="dagger" + g2="j" + k="-18" /> + <hkern g1="dagger" + g2="z,zcaron" + k="-18" /> + <hkern g1="dagger" + g2="S,Scaron,uni0405" + k="-10" /> + <hkern g1="dagger" + g2="b,h,k,l,thorn" + k="-10" /> + <hkern g1="daggerdbl" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="-29" /> + <hkern g1="daggerdbl" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-10" /> + <hkern g1="daggerdbl" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="-10" /> + <hkern g1="daggerdbl" + g2="J" + k="-10" /> + <hkern g1="daggerdbl" + g2="Oslash" + k="-10" /> + <hkern g1="daggerdbl" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-51" /> + <hkern g1="daggerdbl" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="10" /> + <hkern g1="daggerdbl" + g2="f,fi,fl,f_f_i,f_f_l" + k="-18" /> + <hkern g1="daggerdbl" + g2="w" + k="-74" /> + <hkern g1="daggerdbl" + g2="Z,Zcaron" + k="-10" /> + <hkern g1="daggerdbl" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="-10" /> + <hkern g1="daggerdbl" + g2="z,zcaron" + k="-18" /> + <hkern g1="daggerdbl" + g2="b,h,k,l,thorn" + k="-10" /> + <hkern g1="divide" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="96" /> + <hkern g1="divide" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="6" /> + <hkern g1="divide" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="45" /> + <hkern g1="divide" + g2="Y,Yacute,Ydieresis,uni040E" + k="113" /> + <hkern g1="divide" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="-10" /> + <hkern g1="divide" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="10" /> + <hkern g1="divide" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="31" /> + <hkern g1="divide" + g2="w" + k="10" /> + <hkern g1="divide" + g2="Z,Zcaron" + k="10" /> + <hkern g1="equal" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="61" /> + <hkern g1="equal" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="4" /> + <hkern g1="equal" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="20" /> + <hkern g1="equal" + g2="Y,Yacute,Ydieresis,uni040E" + k="72" /> + <hkern g1="equal" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="-10" /> + <hkern g1="equal" + g2="Oslash" + k="-10" /> + <hkern g1="equal" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="18" /> + <hkern g1="florin" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="63" /> + <hkern g1="florin" + g2="w" + k="12" /> + <hkern g1="florin" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="115" /> + <hkern g1="florin" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="104" /> + <hkern g1="florin" + g2="m,n,p,r,ntilde" + k="63" /> + <hkern g1="florin" + g2="oslash" + k="102" /> + <hkern g1="florin" + g2="s,scaron,uni0455" + k="43" /> + <hkern g1="florin" + g2="bracketright,braceright" + k="-51" /> + <hkern g1="florin" + g2="colon,semicolon" + k="33" /> + <hkern g1="florin" + g2="comma,period,ellipsis" + k="182" /> + <hkern g1="florin" + g2="guilsinglleft" + k="59" /> + <hkern g1="florin" + g2="hyphen,endash,emdash" + k="35" /> + <hkern g1="florin" + g2="quotedbl,quotesingle" + k="-82" /> + <hkern g1="florin" + g2="quoteleft,quotedblleft" + k="-74" /> + <hkern g1="florin" + g2="quoteright,quotedblright" + k="-82" /> + <hkern g1="florin" + g2="quotesinglbase,quotedblbase" + k="152" /> + <hkern g1="florin" + g2="t" + k="-10" /> + <hkern g1="greater" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="111" /> + <hkern g1="greater" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="6" /> + <hkern g1="greater" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="51" /> + <hkern g1="greater" + g2="Y,Yacute,Ydieresis,uni040E" + k="141" /> + <hkern g1="greater" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="-10" /> + <hkern g1="greater" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="45" /> + <hkern g1="greater" + g2="w" + k="10" /> + <hkern g1="greater" + g2="Z,Zcaron" + k="27" /> + <hkern g1="greater" + g2="S,Scaron,uni0405" + k="4" /> + <hkern g1="less" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="12" /> + <hkern g1="less" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-18" /> + <hkern g1="less" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="-20" /> + <hkern g1="less" + g2="Oslash" + k="-18" /> + <hkern g1="less" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-29" /> + <hkern g1="less" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="-18" /> + <hkern g1="less" + g2="Eth" + k="-10" /> + <hkern g1="less" + g2="w" + k="-18" /> + <hkern g1="less" + g2="Z,Zcaron" + k="-39" /> + <hkern g1="less" + g2="z,zcaron" + k="-18" /> + <hkern g1="less" + g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Ntilde,Thorn,IJ,uni01C4,uni01C7,uni01CA,uni01F1" + k="-12" /> + <hkern g1="multiply" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="55" /> + <hkern g1="multiply" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="10" /> + <hkern g1="multiply" + g2="Y,Yacute,Ydieresis,uni040E" + k="61" /> + <hkern g1="multiply" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="-10" /> + <hkern g1="multiply" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="10" /> + <hkern g1="multiply" + g2="w" + k="-10" /> + <hkern g1="multiply" + g2="Z,Zcaron" + k="-10" /> + <hkern g1="paragraph" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="-35" /> + <hkern g1="plus" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="113" /> + <hkern g1="plus" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="6" /> + <hkern g1="plus" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="61" /> + <hkern g1="plus" + g2="Y,Yacute,Ydieresis,uni040E" + k="121" /> + <hkern g1="plus" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="-10" /> + <hkern g1="plus" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="45" /> + <hkern g1="plus" + g2="Eth" + k="10" /> + <hkern g1="plus" + g2="w" + k="4" /> + <hkern g1="plus" + g2="Z,Zcaron" + k="27" /> + <hkern g1="plus" + g2="b,h,k,l,thorn" + k="18" /> + <hkern g1="trademark" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="-35" /> + <hkern g1="section" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="10" /> + <hkern g1="section" + g2="Y,Yacute,Ydieresis,uni040E" + k="10" /> + <hkern g1="section" + g2="Oslash" + k="4" /> + <hkern g1="section" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="10" /> + <hkern g1="asterisk" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="188" /> + <hkern g1="asterisk" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="6" /> + <hkern g1="asterisk" + g2="J" + k="102" /> + <hkern g1="asterisk" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="-41" /> + <hkern g1="asterisk" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-20" /> + <hkern g1="asterisk" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="35" /> + <hkern g1="asterisk" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="63" /> + <hkern g1="asterisk" + g2="s,scaron,uni0455" + k="12" /> + <hkern g1="asterisk" + g2="Y,Yacute,Ydieresis,uni040E" + k="10" /> + <hkern g1="asterisk" + g2="f,fi,fl,f_f_i,f_f_l" + k="-37" /> + <hkern g1="asterisk" + g2="oslash" + k="18" /> + <hkern g1="asterisk" + g2="w" + k="-10" /> + <hkern g1="asterisk" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-18" /> + <hkern g1="backslash" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="-18" /> + <hkern g1="backslash" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="86" /> + <hkern g1="backslash" + g2="J" + k="10" /> + <hkern g1="backslash" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="121" /> + <hkern g1="backslash" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="141" /> + <hkern g1="backslash" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="-12" /> + <hkern g1="backslash" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="45" /> + <hkern g1="backslash" + g2="Y,Yacute,Ydieresis,uni040E" + k="166" /> + <hkern g1="backslash" + g2="oslash" + k="18" /> + <hkern g1="backslash" + g2="w" + k="39" /> + <hkern g1="backslash" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="53" /> + <hkern g1="backslash" + g2="Oslash" + k="59" /> + <hkern g1="backslash" + g2="S,Scaron,uni0405" + k="25" /> + <hkern g1="backslash" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="70" /> + <hkern g1="backslash" + g2="Eth" + k="18" /> + <hkern g1="backslash" + g2="Z,Zcaron" + k="-10" /> + <hkern g1="backslash" + g2="t" + k="10" /> + <hkern g1="backslash" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="18" /> + <hkern g1="backslash" + g2="z,zcaron" + k="-10" /> + <hkern g1="braceright" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="12" /> + <hkern g1="braceright" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="23" /> + <hkern g1="braceright" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="12" /> + <hkern g1="braceright" + g2="Y,Yacute,Ydieresis,uni040E" + k="45" /> + <hkern g1="braceright" + g2="Z,Zcaron" + k="23" /> + <hkern g1="bracketleft,braceleft" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="10" /> + <hkern g1="bracketleft,braceleft" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="51" /> + <hkern g1="bracketleft,braceleft" + g2="J" + k="18" /> + <hkern g1="bracketleft,braceleft" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="-23" /> + <hkern g1="bracketleft,braceleft" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-23" /> + <hkern g1="bracketleft,braceleft" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="4" /> + <hkern g1="bracketleft,braceleft" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="49" /> + <hkern g1="bracketleft,braceleft" + g2="s,scaron,uni0455" + k="18" /> + <hkern g1="bracketleft,braceleft" + g2="Y,Yacute,Ydieresis,uni040E" + k="-45" /> + <hkern g1="bracketleft,braceleft" + g2="f,fi,fl,f_f_i,f_f_l" + k="39" /> + <hkern g1="bracketleft,braceleft" + g2="oslash" + k="31" /> + <hkern g1="bracketleft,braceleft" + g2="w" + k="41" /> + <hkern g1="bracketleft,braceleft" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="29" /> + <hkern g1="bracketleft,braceleft" + g2="Oslash" + k="51" /> + <hkern g1="bracketleft,braceleft" + g2="S,Scaron,uni0405" + k="10" /> + <hkern g1="bracketleft,braceleft" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="10" /> + <hkern g1="bracketleft,braceleft" + g2="t" + k="18" /> + <hkern g1="bracketleft,braceleft" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="18" /> + <hkern g1="bracketleft,braceleft" + g2="V,uni0423,uni0474" + k="-33" /> + <hkern g1="bracketleft,braceleft" + g2="X,uni0416,uni0425,uni046A" + k="-23" /> + <hkern g1="bracketleft,braceleft" + g2="florin" + k="-123" /> + <hkern g1="bracketleft,braceleft" + g2="j" + k="-131" /> + <hkern g1="bracketleft,braceleft" + g2="germandbls" + k="18" /> + <hkern g1="bracketleft,braceleft" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="18" /> + <hkern g1="bracketleft,braceleft" + g2="x,uni0445,uni04B3" + k="10" /> + <hkern g1="bullet" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="72" /> + <hkern g1="bullet" + g2="J" + k="12" /> + <hkern g1="bullet" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="162" /> + <hkern g1="bullet" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="63" /> + <hkern g1="bullet" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="12" /> + <hkern g1="bullet" + g2="Y,Yacute,Ydieresis,uni040E" + k="172" /> + <hkern g1="bullet" + g2="Z,Zcaron" + k="33" /> + <hkern g1="bullet" + g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Ntilde,Thorn,IJ,uni01C4,uni01C7,uni01CA,uni01F1" + k="12" /> + <hkern g1="colon,semicolon" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="10" /> + <hkern g1="colon,semicolon" + g2="J" + k="10" /> + <hkern g1="colon,semicolon" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="109" /> + <hkern g1="colon,semicolon" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="31" /> + <hkern g1="colon,semicolon" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="14" /> + <hkern g1="colon,semicolon" + g2="Y,Yacute,Ydieresis,uni040E" + k="145" /> + <hkern g1="colon,semicolon" + g2="f,fi,fl,f_f_i,f_f_l" + k="-10" /> + <hkern g1="colon,semicolon" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="10" /> + <hkern g1="colon,semicolon" + g2="S,Scaron,uni0405" + k="10" /> + <hkern g1="colon,semicolon" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="10" /> + <hkern g1="colon,semicolon" + g2="V,uni0423,uni0474" + k="100" /> + <hkern g1="colon,semicolon" + g2="X,uni0416,uni0425,uni046A" + k="18" /> + <hkern g1="colon,semicolon" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="10" /> + <hkern g1="colon,semicolon" + g2="x,uni0445,uni04B3" + k="10" /> + <hkern g1="comma,period,ellipsis" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="72" /> + <hkern g1="comma,period,ellipsis" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="223" /> + <hkern g1="comma,period,ellipsis" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="186" /> + <hkern g1="comma,period,ellipsis" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="10" /> + <hkern g1="comma,period,ellipsis" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="35" /> + <hkern g1="comma,period,ellipsis" + g2="Y,Yacute,Ydieresis,uni040E" + k="266" /> + <hkern g1="comma,period,ellipsis" + g2="f,fi,fl,f_f_i,f_f_l" + k="18" /> + <hkern g1="comma,period,ellipsis" + g2="oslash" + k="10" /> + <hkern g1="comma,period,ellipsis" + g2="w" + k="92" /> + <hkern g1="comma,period,ellipsis" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="176" /> + <hkern g1="comma,period,ellipsis" + g2="Oslash" + k="59" /> + <hkern g1="comma,period,ellipsis" + g2="S,Scaron,uni0405" + k="20" /> + <hkern g1="comma,period,ellipsis" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="66" /> + <hkern g1="comma,period,ellipsis" + g2="Eth" + k="18" /> + <hkern g1="comma,period,ellipsis" + g2="t" + k="51" /> + <hkern g1="comma,period,ellipsis" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="12" /> + <hkern g1="comma,period,ellipsis" + g2="V,uni0423,uni0474" + k="233" /> + <hkern g1="comma,period,ellipsis" + g2="X,uni0416,uni0425,uni046A" + k="10" /> + <hkern g1="comma,period,ellipsis" + g2="germandbls" + k="10" /> + <hkern g1="comma,period,ellipsis" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="166" /> + <hkern g1="comma,period,ellipsis" + g2="Lslash" + k="10" /> + <hkern g1="comma,period,ellipsis" + g2="b,h,k,l,thorn" + k="10" /> + <hkern g1="comma,period,ellipsis" + g2="lslash" + k="37" /> + <hkern g1="exclamdown" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="10" /> + <hkern g1="exclamdown" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="10" /> + <hkern g1="exclamdown" + g2="J" + k="10" /> + <hkern g1="exclamdown" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="137" /> + <hkern g1="exclamdown" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="39" /> + <hkern g1="exclamdown" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="18" /> + <hkern g1="exclamdown" + g2="Y,Yacute,Ydieresis,uni040E" + k="135" /> + <hkern g1="exclamdown" + g2="oslash" + k="10" /> + <hkern g1="exclamdown" + g2="w" + k="10" /> + <hkern g1="exclamdown" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="10" /> + <hkern g1="exclamdown" + g2="S,Scaron,uni0405" + k="10" /> + <hkern g1="exclamdown" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="31" /> + <hkern g1="exclamdown" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="4" /> + <hkern g1="exclamdown" + g2="j" + k="-72" /> + <hkern g1="exclamdown" + g2="i,igrave,iacute,icircumflex,idieresis,uni0469" + k="10" /> + <hkern g1="guilsinglleft" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="10" /> + <hkern g1="guilsinglleft" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="20" /> + <hkern g1="guilsinglleft" + g2="J" + k="-20" /> + <hkern g1="guilsinglleft" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="137" /> + <hkern g1="guilsinglleft" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="20" /> + <hkern g1="guilsinglleft" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="10" /> + <hkern g1="guilsinglleft" + g2="Y,Yacute,Ydieresis,uni040E" + k="98" /> + <hkern g1="guilsinglleft" + g2="f,fi,fl,f_f_i,f_f_l" + k="-31" /> + <hkern g1="guilsinglleft" + g2="oslash" + k="10" /> + <hkern g1="guilsinglleft" + g2="Oslash" + k="10" /> + <hkern g1="guilsinglleft" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="10" /> + <hkern g1="guilsinglleft" + g2="t" + k="-12" /> + <hkern g1="guilsinglleft" + g2="V,uni0423,uni0474" + k="74" /> + <hkern g1="guilsinglleft" + g2="X,uni0416,uni0425,uni046A" + k="61" /> + <hkern g1="guilsinglleft" + g2="florin" + k="18" /> + <hkern g1="guilsinglleft" + g2="j" + k="4" /> + <hkern g1="guilsinglleft" + g2="germandbls" + k="10" /> + <hkern g1="guilsinglleft" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="-23" /> + <hkern g1="guilsinglleft" + g2="lslash" + k="10" /> + <hkern g1="guilsinglright" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="72" /> + <hkern g1="guilsinglright" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="14" /> + <hkern g1="guilsinglright" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="238" /> + <hkern g1="guilsinglright" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="90" /> + <hkern g1="guilsinglright" + g2="Y,Yacute,Ydieresis,uni040E" + k="219" /> + <hkern g1="guilsinglright" + g2="w" + k="20" /> + <hkern g1="guilsinglright" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="10" /> + <hkern g1="guilsinglright" + g2="S,Scaron,uni0405" + k="10" /> + <hkern g1="guilsinglright" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="31" /> + <hkern g1="guilsinglright" + g2="Z,Zcaron" + k="47" /> + <hkern g1="guilsinglright" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="10" /> + <hkern g1="guilsinglright" + g2="z,zcaron" + k="4" /> + <hkern g1="guilsinglright" + g2="V,uni0423,uni0474" + k="133" /> + <hkern g1="guilsinglright" + g2="X,uni0416,uni0425,uni046A" + k="164" /> + <hkern g1="guilsinglright" + g2="florin" + k="80" /> + <hkern g1="guilsinglright" + g2="germandbls" + k="14" /> + <hkern g1="guilsinglright" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="31" /> + <hkern g1="guilsinglright" + g2="x,uni0445,uni04B3" + k="31" /> + <hkern g1="guilsinglright" + g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Ntilde,Thorn,IJ,uni01C4,uni01C7,uni01CA,uni01F1" + k="12" /> + <hkern g1="guilsinglright" + g2="b,h,k,l,thorn" + k="10" /> + <hkern g1="guilsinglright" + g2="lslash" + k="-23" /> + <hkern g1="hyphen,endash,emdash" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="59" /> + <hkern g1="hyphen,endash,emdash" + g2="J" + k="10" /> + <hkern g1="hyphen,endash,emdash" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="133" /> + <hkern g1="hyphen,endash,emdash" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="63" /> + <hkern g1="hyphen,endash,emdash" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="18" /> + <hkern g1="hyphen,endash,emdash" + g2="Y,Yacute,Ydieresis,uni040E" + k="182" /> + <hkern g1="hyphen,endash,emdash" + g2="w" + k="14" /> + <hkern g1="hyphen,endash,emdash" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="51" /> + <hkern g1="hyphen,endash,emdash" + g2="S,Scaron,uni0405" + k="12" /> + <hkern g1="hyphen,endash,emdash" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="6" /> + <hkern g1="hyphen,endash,emdash" + g2="Z,Zcaron" + k="70" /> + <hkern g1="hyphen,endash,emdash" + g2="t" + k="12" /> + <hkern g1="hyphen,endash,emdash" + g2="z,zcaron" + k="6" /> + <hkern g1="hyphen,endash,emdash" + g2="V,uni0423,uni0474" + k="127" /> + <hkern g1="hyphen,endash,emdash" + g2="X,uni0416,uni0425,uni046A" + k="111" /> + <hkern g1="hyphen,endash,emdash" + g2="j" + k="12" /> + <hkern g1="hyphen,endash,emdash" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="25" /> + <hkern g1="hyphen,endash,emdash" + g2="x,uni0445,uni04B3" + k="43" /> + <hkern g1="hyphen,endash,emdash" + g2="Lslash" + k="-84" /> + <hkern g1="hyphen,endash,emdash" + g2="lslash" + k="-63" /> + <hkern g1="parenleft" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="18" /> + <hkern g1="parenleft" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="51" /> + <hkern g1="parenleft" + g2="J" + k="31" /> + <hkern g1="parenleft" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="-23" /> + <hkern g1="parenleft" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-23" /> + <hkern g1="parenleft" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="6" /> + <hkern g1="parenleft" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="59" /> + <hkern g1="parenleft" + g2="s,scaron,uni0455" + k="23" /> + <hkern g1="parenleft" + g2="Y,Yacute,Ydieresis,uni040E" + k="-23" /> + <hkern g1="parenleft" + g2="f,fi,fl,f_f_i,f_f_l" + k="31" /> + <hkern g1="parenleft" + g2="oslash" + k="39" /> + <hkern g1="parenleft" + g2="w" + k="51" /> + <hkern g1="parenleft" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="37" /> + <hkern g1="parenleft" + g2="Oslash" + k="51" /> + <hkern g1="parenleft" + g2="S,Scaron,uni0405" + k="14" /> + <hkern g1="parenleft" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="10" /> + <hkern g1="parenleft" + g2="t" + k="18" /> + <hkern g1="parenleft" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="29" /> + <hkern g1="parenleft" + g2="z,zcaron" + k="4" /> + <hkern g1="parenleft" + g2="j" + k="-131" /> + <hkern g1="periodcentered" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="59" /> + <hkern g1="periodcentered" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="-10" /> + <hkern g1="periodcentered" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="102" /> + <hkern g1="periodcentered" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="53" /> + <hkern g1="periodcentered" + g2="Y,Yacute,Ydieresis,uni040E" + k="133" /> + <hkern g1="periodcentered" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="10" /> + <hkern g1="periodcentered" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="20" /> + <hkern g1="periodcentered" + g2="Z,Zcaron" + k="14" /> + <hkern g1="question" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="55" /> + <hkern g1="question" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="6" /> + <hkern g1="question" + g2="J" + k="18" /> + <hkern g1="question" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="51" /> + <hkern g1="question" + g2="Y,Yacute,Ydieresis,uni040E" + k="10" /> + <hkern g1="questiondown" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="-33" /> + <hkern g1="questiondown" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="92" /> + <hkern g1="questiondown" + g2="J" + k="18" /> + <hkern g1="questiondown" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="246" /> + <hkern g1="questiondown" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="141" /> + <hkern g1="questiondown" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="51" /> + <hkern g1="questiondown" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="59" /> + <hkern g1="questiondown" + g2="s,scaron,uni0455" + k="18" /> + <hkern g1="questiondown" + g2="Y,Yacute,Ydieresis,uni040E" + k="242" /> + <hkern g1="questiondown" + g2="f,fi,fl,f_f_i,f_f_l" + k="35" /> + <hkern g1="questiondown" + g2="oslash" + k="18" /> + <hkern g1="questiondown" + g2="w" + k="72" /> + <hkern g1="questiondown" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="39" /> + <hkern g1="questiondown" + g2="Oslash" + k="37" /> + <hkern g1="questiondown" + g2="S,Scaron,uni0405" + k="49" /> + <hkern g1="questiondown" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="80" /> + <hkern g1="questiondown" + g2="Eth" + k="37" /> + <hkern g1="questiondown" + g2="Z,Zcaron" + k="-10" /> + <hkern g1="questiondown" + g2="t" + k="49" /> + <hkern g1="questiondown" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="49" /> + <hkern g1="questiondown" + g2="j" + k="-100" /> + <hkern g1="questiondown" + g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Ntilde,Thorn,IJ,uni01C4,uni01C7,uni01CA,uni01F1" + k="4" /> + <hkern g1="questiondown" + g2="b,h,k,l,thorn" + k="12" /> + <hkern g1="questiondown" + g2="m,n,p,r,ntilde" + k="12" /> + <hkern g1="quotedbl,quotesingle" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="141" /> + <hkern g1="quotedbl,quotesingle" + g2="J" + k="45" /> + <hkern g1="quotedbl,quotesingle" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="-53" /> + <hkern g1="quotedbl,quotesingle" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-23" /> + <hkern g1="quotedbl,quotesingle" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="31" /> + <hkern g1="quotedbl,quotesingle" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="51" /> + <hkern g1="quotedbl,quotesingle" + g2="Y,Yacute,Ydieresis,uni040E" + k="-12" /> + <hkern g1="quotedbl,quotesingle" + g2="f,fi,fl,f_f_i,f_f_l" + k="-59" /> + <hkern g1="quotedbl,quotesingle" + g2="oslash" + k="51" /> + <hkern g1="quotedbl,quotesingle" + g2="w" + k="-31" /> + <hkern g1="quotedbl,quotesingle" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-20" /> + <hkern g1="quotedbl,quotesingle" + g2="V,uni0423,uni0474" + k="-33" /> + <hkern g1="quotedbl,quotesingle" + g2="X,uni0416,uni0425,uni046A" + k="-12" /> + <hkern g1="quotedbl,quotesingle" + g2="germandbls" + k="10" /> + <hkern g1="quotedbl,quotesingle" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="-31" /> + <hkern g1="quotedbl,quotesingle" + g2="x,uni0445,uni04B3" + k="-12" /> + <hkern g1="quoteleft,quotedblleft" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="225" /> + <hkern g1="quoteleft,quotedblleft" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="31" /> + <hkern g1="quoteleft,quotedblleft" + g2="J" + k="190" /> + <hkern g1="quoteleft,quotedblleft" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="-61" /> + <hkern g1="quoteleft,quotedblleft" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-33" /> + <hkern g1="quoteleft,quotedblleft" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="70" /> + <hkern g1="quoteleft,quotedblleft" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="78" /> + <hkern g1="quoteleft,quotedblleft" + g2="s,scaron,uni0455" + k="20" /> + <hkern g1="quoteleft,quotedblleft" + g2="Y,Yacute,Ydieresis,uni040E" + k="-23" /> + <hkern g1="quoteleft,quotedblleft" + g2="f,fi,fl,f_f_i,f_f_l" + k="2" /> + <hkern g1="quoteleft,quotedblleft" + g2="oslash" + k="51" /> + <hkern g1="quoteleft,quotedblleft" + g2="w" + k="-10" /> + <hkern g1="quoteleft,quotedblleft" + g2="Oslash" + k="18" /> + <hkern g1="quoteleft,quotedblleft" + g2="t" + k="-14" /> + <hkern g1="quoteleft,quotedblleft" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="16" /> + <hkern g1="quoteleft,quotedblleft" + g2="z,zcaron" + k="-4" /> + <hkern g1="quoteleft,quotedblleft" + g2="V,uni0423,uni0474" + k="-23" /> + <hkern g1="quoteleft,quotedblleft" + g2="X,uni0416,uni0425,uni046A" + k="-12" /> + <hkern g1="quoteleft,quotedblleft" + g2="florin" + k="66" /> + <hkern g1="quoteleft,quotedblleft" + g2="j" + k="-4" /> + <hkern g1="quoteleft,quotedblleft" + g2="i,igrave,iacute,icircumflex,idieresis,uni0469" + k="-4" /> + <hkern g1="quoteleft,quotedblleft" + g2="m,n,p,r,ntilde" + k="51" /> + <hkern g1="quoteright,quotedblright" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="225" /> + <hkern g1="quoteright,quotedblright" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="31" /> + <hkern g1="quoteright,quotedblright" + g2="J" + k="115" /> + <hkern g1="quoteright,quotedblright" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="-61" /> + <hkern g1="quoteright,quotedblright" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-33" /> + <hkern g1="quoteright,quotedblright" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="74" /> + <hkern g1="quoteright,quotedblright" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="141" /> + <hkern g1="quoteright,quotedblright" + g2="s,scaron,uni0455" + k="113" /> + <hkern g1="quoteright,quotedblright" + g2="Y,Yacute,Ydieresis,uni040E" + k="-23" /> + <hkern g1="quoteright,quotedblright" + g2="f,fi,fl,f_f_i,f_f_l" + k="-10" /> + <hkern g1="quoteright,quotedblright" + g2="oslash" + k="96" /> + <hkern g1="quoteright,quotedblright" + g2="w" + k="-10" /> + <hkern g1="quoteright,quotedblright" + g2="Oslash" + k="18" /> + <hkern g1="quoteright,quotedblright" + g2="S,Scaron,uni0405" + k="4" /> + <hkern g1="quoteright,quotedblright" + g2="Eth" + k="18" /> + <hkern g1="quoteright,quotedblright" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="4" /> + <hkern g1="quoteright,quotedblright" + g2="V,uni0423,uni0474" + k="-23" /> + <hkern g1="quoteright,quotedblright" + g2="X,uni0416,uni0425,uni046A" + k="-12" /> + <hkern g1="quoteright,quotedblright" + g2="florin" + k="55" /> + <hkern g1="quoteright,quotedblright" + g2="germandbls" + k="18" /> + <hkern g1="quoteright,quotedblright" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="-10" /> + <hkern g1="quoteright,quotedblright" + g2="Lslash" + k="29" /> + <hkern g1="quoteright,quotedblright" + g2="lslash" + k="35" /> + <hkern g1="quoteright,quotedblright" + g2="m,n,p,r,ntilde" + k="63" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="-43" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="106" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="J" + k="10" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="182" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="174" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="31" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="s,scaron,uni0455" + k="4" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="Y,Yacute,Ydieresis,uni040E" + k="244" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="f,fi,fl,f_f_i,f_f_l" + k="43" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="oslash" + k="10" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="w" + k="92" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="102" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="Oslash" + k="39" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="S,Scaron,uni0405" + k="31" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="96" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="Eth" + k="29" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="Z,Zcaron" + k="-4" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="t" + k="90" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="14" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="z,zcaron" + k="-10" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="V,uni0423,uni0474" + k="201" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="florin" + k="-51" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="j" + k="-49" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="germandbls" + k="10" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="v,wcircumflex,uni0443,uni045E,uni04AF,uni04EF,wgrave,wacute,wdieresis" + k="100" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="x,uni0445,uni04B3" + k="-20" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Ntilde,Thorn,IJ,uni01C4,uni01C7,uni01CA,uni01F1" + k="10" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="lslash" + k="18" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="i,igrave,iacute,icircumflex,idieresis,uni0469" + k="10" /> + <hkern g1="slash" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="162" /> + <hkern g1="slash" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="86" /> + <hkern g1="slash" + g2="J" + k="209" /> + <hkern g1="slash" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="-63" /> + <hkern g1="slash" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-41" /> + <hkern g1="slash" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="203" /> + <hkern g1="slash" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="86" /> + <hkern g1="slash" + g2="s,scaron,uni0455" + k="182" /> + <hkern g1="slash" + g2="Y,Yacute,Ydieresis,uni040E" + k="-31" /> + <hkern g1="slash" + g2="f,fi,fl,f_f_i,f_f_l" + k="35" /> + <hkern g1="slash" + g2="oslash" + k="174" /> + <hkern g1="slash" + g2="w" + k="51" /> + <hkern g1="slash" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="31" /> + <hkern g1="slash" + g2="Oslash" + k="86" /> + <hkern g1="slash" + g2="S,Scaron,uni0405" + k="39" /> + <hkern g1="slash" + g2="Eth" + k="23" /> + <hkern g1="slash" + g2="t" + k="10" /> + <hkern g1="slash" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="74" /> + <hkern g1="slash" + g2="z,zcaron" + k="96" /> + <hkern g1="slash" + g2="m,n,p,r,ntilde" + k="104" /> + <hkern g1="underscore" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="-61" /> + <hkern g1="underscore" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="82" /> + <hkern g1="underscore" + g2="J" + k="29" /> + <hkern g1="underscore" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,uni0422,uni0427,Ygrave,uni1EF8" + k="92" /> + <hkern g1="underscore" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="96" /> + <hkern g1="underscore" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="51" /> + <hkern g1="underscore" + g2="Y,Yacute,Ydieresis,uni040E" + k="152" /> + <hkern g1="underscore" + g2="f,fi,fl,f_f_i,f_f_l" + k="20" /> + <hkern g1="underscore" + g2="oslash" + k="39" /> + <hkern g1="underscore" + g2="w" + k="82" /> + <hkern g1="underscore" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="74" /> + <hkern g1="underscore" + g2="Oslash" + k="61" /> + <hkern g1="underscore" + g2="S,Scaron,uni0405" + k="39" /> + <hkern g1="underscore" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,uni0432" + k="35" /> + <hkern g1="underscore" + g2="Eth" + k="10" /> + <hkern g1="underscore" + g2="Z,Zcaron" + k="-31" /> + <hkern g1="underscore" + g2="t" + k="63" /> + <hkern g1="underscore" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="35" /> + <hkern g1="underscore" + g2="z,zcaron" + k="-10" /> + <hkern g1="underscore" + g2="j" + k="-131" /> + <hkern g1="exclam" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,uni0410,uni0414,uni041B,uni0466" + k="18" /> + <hkern g1="exclam" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="10" /> + <hkern g1="exclam" + g2="J" + k="10" /> + <hkern g1="exclam" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni0430,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff,c.001,g.ss01,gbreve.ss01,gcommaaccent.ss01,gdotaccent.ss01" + k="18" /> + <hkern g1="exclam" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="18" /> + <hkern g1="exclam" + g2="S,Scaron,uni0405" + k="10" /> + <hkern g1="ordmasculine" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="35" /> + </font> +</defs></svg> diff --git a/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-SemiBold.ttf b/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-SemiBold.ttf new file mode 100755 index 0000000000000000000000000000000000000000..f4195009e1e945ec42cd1ca081c948b7d05fe4c8 Binary files /dev/null and b/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-SemiBold.ttf differ diff --git a/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-SemiBold.woff b/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-SemiBold.woff new file mode 100755 index 0000000000000000000000000000000000000000..2b0841784109b0ac9715d4e42c9f5037dc941fe0 Binary files /dev/null and b/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-SemiBold.woff differ diff --git a/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-SemiBold.woff2 b/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-SemiBold.woff2 new file mode 100755 index 0000000000000000000000000000000000000000..cb2e7d95e80653c21a0147804fc991207180e2b0 Binary files /dev/null and b/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-SemiBold.woff2 differ diff --git a/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-SemiBoldItalic.eot b/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-SemiBoldItalic.eot new file mode 100755 index 0000000000000000000000000000000000000000..952ad09c46e2a82cfc5449f2f695b5ba43e673d7 Binary files /dev/null and b/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-SemiBoldItalic.eot differ diff --git a/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-SemiBoldItalic.svg b/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-SemiBoldItalic.svg new file mode 100755 index 0000000000000000000000000000000000000000..2e1d7079bb9ce0506507838f09e95fa2e0cc6e6c --- /dev/null +++ b/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-SemiBoldItalic.svg @@ -0,0 +1,8946 @@ +<?xml version="1.0" standalone="no"?> +<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" > +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1"> +<metadata> +Created by FontForge 20161013 at Sun Mar 19 13:47:40 2017 + By ,,, +Copyright (c)2015, HK Grotesk Latin by Alfredo Marco Pradil (ammpradil@gmail.com) and HK Grotesk Cyrillic by Stefan Peev (http://www.contextbg.net/). HK Grotesk is a trademark of Alfredo Marco Pradil. +</metadata> +<defs> +<font id="HKGrotesk-SemiBoldItalic" horiz-adv-x="1158" > + <font-face + font-family="HK Grotesk SemiBold Italic" + font-weight="600" + font-style="italic" + font-stretch="normal" + units-per-em="2048" + panose-1="0 0 7 0 0 0 0 0 0 0" + ascent="1434" + descent="-614" + x-height="999" + cap-height="1413" + bbox="-716 -517 2790 2240" + underline-thickness="82" + underline-position="-410" + slope="-13" + unicode-range="U+0020-FB02" + /> +<missing-glyph horiz-adv-x="1257" +d="M104 0l220 954h819l-219 -954h-820zM229 102h615l174 750h-615z" /> + <glyph glyph-name="fi" unicode="fi" horiz-adv-x="1069" +d="M62 0l189 820h-153l41 179l157 10q22 94 60.5 169t97 133.5t142.5 90.5t188 32q118 0 186 -35.5t115 -91.5l-137 -149q-32 42 -72 63t-107 21q-212 0 -269 -252l540 9l-229 -999h-204l188 820h-334l-189 -820h-210z" /> + <glyph glyph-name="fl" unicode="fl" horiz-adv-x="1094" +d="M797 -20q-86 0 -128 56.5t-15 172.5l233 990q-55 47 -146 47q-83 0 -142 -43t-76 -114l-21 -90h178l-41 -179h-178l-189 -820h-210l189 820h-153l41 179h153l29 118q34 147 156.5 232t292.5 85q190 0 330 -158l-230 -1017q-6 -26 -6 -43.5t1.5 -26.5t11.5 -12.5t14.5 -4 +t19.5 -0.5q26 0 60 12l-33 -186q-76 -18 -141 -18z" /> + <glyph glyph-name="f_f_i" unicode="ffi" horiz-adv-x="1703" +d="M66 0l188 820h-156l41 179h157l23 97q37 157 167.5 247.5t292.5 90.5q85 0 161 -27.5t125 -77.5q73 54 161 79.5t168 25.5q172 0 327 -127l-140 -152q-1 1 -8.5 9t-12 12.5t-16 13.5t-21.5 15.5t-26 14t-32.5 12t-38.5 7.5t-46 3q-101 0 -172 -48.5t-87 -119.5l-18 -75 +h572l-230 -999h-204l189 820h-368l-189 -820h-213l189 820h-382l-188 -820h-213zM508 999h384l23 97q14 58 27 84q-64 62 -167 62q-98 0 -165 -48t-84 -120z" /> + <glyph glyph-name="f_f_l" unicode="ffl" horiz-adv-x="1731" +d="M1427 -20q-88 0 -128.5 53t-14.5 167l234 996q-42 46 -151 46q-87 0 -157 -44t-87 -119l-19 -80h173l-41 -179h-173l-188 -820h-213l188 820h-383l-188 -820h-214l188 820h-155l41 179h157l26 109q25 109 95.5 184.5t162 108.5t199.5 33q173 0 280 -102q143 102 353 102 +q206 0 321 -158l-237 -1047q-8 -36 3 -46t39 -10t67 11l-30 -186q-86 -18 -148 -18zM508 999l389 10q28 119 45 168q-41 39 -86 53q-39 12 -87 12q-98 0 -162.5 -47t-80.5 -120z" /> + <glyph glyph-name=".notdef" horiz-adv-x="1257" +d="M104 0l220 954h819l-219 -954h-820zM229 102h615l174 750h-615z" /> + <glyph glyph-name=".null" horiz-adv-x="0" + /> + <glyph glyph-name="nonmarkingreturn" horiz-adv-x="682" + /> + <glyph glyph-name="space" unicode=" " horiz-adv-x="553" + /> + <glyph glyph-name="exclam" unicode="!" horiz-adv-x="635" +d="M217 413l206 1021h220l-264 -1021h-162zM81 0l55 242h244l-55 -242h-244z" /> + <glyph glyph-name="quotedbl" unicode=""" horiz-adv-x="945" +d="M307 903l118 510h183l-119 -510h-182zM640 903l118 510h184l-119 -510h-183z" /> + <glyph glyph-name="numbersign" unicode="#" horiz-adv-x="1380" +d="M117 0l188 421h-235l36 154h266l124 284h-244l38 158h275l191 417h172l-196 -437h268l194 437h172l-191 -422h235l-37 -153h-266l-124 -284h244l-38 -158h-275l-188 -417h-171l193 436h-270l-191 -436h-170zM543 575h270l123 284h-269z" /> + <glyph glyph-name="dollar" unicode="$" horiz-adv-x="1113" +d="M303 -246l61 235q-156 26 -250.5 131t-82.5 269l221 31q-14 -117 53.5 -175.5t188.5 -58.5q124 0 207 58.5t110 172.5q11 45 -4 82.5t-48 63.5t-78.5 51.5t-96.5 46.5t-101.5 49t-94 59.5t-73 76.5t-39.5 101t7 133q32 138 143 230.5t258 119.5l59 229h172l-59 -229 +q106 -15 181 -74.5t108 -161.5l-195 -90q-41 135 -200 135q-86 0 -159 -53t-91 -134q-11 -48 9.5 -86t62 -64t96.5 -53t113 -52t110.5 -61.5t89.5 -82t50.5 -113.5t-6.5 -155q-38 -168 -175.5 -277t-315.5 -125l-59 -229h-172z" /> + <glyph glyph-name="percent" unicode="%" horiz-adv-x="1551" +d="M165 -13l1114 1452h192l-1114 -1452h-192zM444 779q-63 0 -108.5 23t-68.5 59t-33.5 83.5t-8.5 92.5t12 90q10 39 26 78t44 82t62.5 75t85 53t108.5 21q70 0 119.5 -31.5t70 -82t26 -113t-11.5 -124.5q-13 -55 -40 -107.5t-67 -98t-96.5 -73t-119.5 -27.5zM449 929 +q56 0 103 59t65 139q18 61 1.5 109t-65.5 48q-58 0 -104.5 -57.5t-66.5 -139.5q-17 -61 -0.5 -109.5t67.5 -48.5zM1090 -6q-63 0 -108 23t-68.5 59.5t-34 84t-8.5 93t13 90.5q9 39 25.5 79t44.5 82.5t63.5 75.5t86 54t107.5 21t100 -20.5t67.5 -55.5t36.5 -80.5t11.5 -95 +t-12.5 -100.5q-13 -56 -40 -109t-67 -99t-96.5 -74t-120.5 -28zM1097 143q55 0 102.5 60.5t65.5 142.5q17 62 1 110.5t-64 48.5q-59 0 -106 -58.5t-67 -142.5q-8 -42 -7 -78t20.5 -59.5t54.5 -23.5z" /> + <glyph glyph-name="ampersand" unicode="&" horiz-adv-x="1377" +d="M1241 664q-58 -199 -190 -364l155 -237l-175 -132l-137 215q-216 -168 -465 -168q-198 0 -305 96t-69 267q18 76 59.5 141t106.5 119t124.5 92t144.5 83q-130 190 -93 349q21 92 90.5 163t159.5 106.5t182 35.5q101 0 175.5 -45t106 -124t9.5 -174q-13 -60 -45 -113 +t-80.5 -98.5t-99 -81t-117.5 -74.5l163 -251q70 110 103 235zM589 1082q-18 -80 69 -218q121 65 191 125t87 135q13 58 -18.5 97t-98.5 39q-77 0 -144 -48t-86 -130zM443 162q192 0 352 137l-203 319q-72 -39 -120.5 -69.5t-99 -70.5t-81 -84.5t-42.5 -94.5 +q-16 -70 38 -103.5t156 -33.5z" /> + <glyph glyph-name="quotesingle" unicode="'" horiz-adv-x="611" +d="M314 932l117 510h183l-117 -510h-183z" /> + <glyph glyph-name="parenleft" unicode="(" horiz-adv-x="571" +d="M223 -89q-56 78 -82 216.5t-19.5 295t40.5 303.5q57 250 165.5 453.5t251.5 332.5l197 -14q-341 -331 -454 -816q-55 -247 -36.5 -429.5t111.5 -355.5z" /> + <glyph glyph-name="parenright" unicode=")" horiz-adv-x="572" +d="M-106 -89q175 177 282.5 368t165.5 444q109 467 -73 789l179 -14q85 -130 101 -334t-44 -477q-50 -218 -168 -447t-254 -343z" /> + <glyph glyph-name="asterisk" unicode="*" horiz-adv-x="894" +d="M415 839l-121 91l200 172l-225 34l86 150l198 -87l21 214h169l-79 -214l233 87l19 -150l-243 -34l125 -172l-154 -91l-65 216z" /> + <glyph glyph-name="plus" unicode="+" horiz-adv-x="1261" +d="M557 106v438h-457v162h457v437h162v-437h457v-162h-457v-438h-162z" /> + <glyph glyph-name="comma" unicode="," horiz-adv-x="632" +d="M-4 -225l214 489h257l-328 -489h-143z" /> + <glyph glyph-name="hyphen" unicode="-" horiz-adv-x="858" +d="M162 560l37 162h561l-36 -162h-562z" /> + <glyph glyph-name="period" unicode="." horiz-adv-x="654" +d="M97 0l55 242h230l-54 -242h-231z" /> + <glyph glyph-name="slash" unicode="/" horiz-adv-x="935" +d="M-238 -430l1222 1946h208l-1221 -1946h-209z" /> + <glyph glyph-name="zero" unicode="0" horiz-adv-x="1183" +d="M493 -20q-104 0 -184 33t-127.5 91t-76.5 131t-36 158.5t-0.5 168.5t25.5 165q22 94 59 187.5t98 189t136 168t179.5 118.5t221.5 46q111 0 196 -43t134 -116t73.5 -169.5t22 -204t-28.5 -219.5q-25 -105 -68.5 -205.5t-107.5 -191t-140.5 -158.5t-174 -108.5 +t-201.5 -40.5zM509 189q84 0 161.5 50t134 131.5t96.5 173t61 185.5q20 89 22.5 172t-15.5 157t-70.5 119t-134.5 45q-87 0 -165.5 -48.5t-135 -128.5t-96.5 -171t-62 -187q-16 -70 -22 -137.5t2.5 -133.5t33 -116t73 -80.5t117.5 -30.5z" /> + <glyph glyph-name="one" unicode="1" horiz-adv-x="1183" +d="M453 0l241 1046h-320l39 173h166q75 0 131.5 46.5t73.5 121.5l6 26h209l-325 -1413h-221z" /> + <glyph glyph-name="two" unicode="2" horiz-adv-x="1183" +d="M-49 0l39 188q383 221 594 399q143 109 232.5 216t116.5 224q22 94 -16.5 149t-136.5 55q-67 0 -125.5 -27.5t-100.5 -74t-71.5 -103t-47.5 -120.5l-212 34q50 211 207 351.5t369 140.5q198 0 297.5 -122t56.5 -312q-17 -75 -59.5 -151.5t-106.5 -151t-131.5 -140 +t-155.5 -139.5q-173 -128 -343 -222l682 6l-46 -200h-1042z" /> + <glyph glyph-name="three" unicode="3" horiz-adv-x="1183" +d="M472 -20q-106 0 -192.5 29.5t-146.5 87.5t-81 144t4 200l210 -4q-27 -121 39 -187.5t188 -66.5q130 0 236 69.5t133 188.5q25 103 -37.5 156t-185.5 53h-136l47 199h122q94 0 163.5 55t91.5 151q19 81 -30 127t-141 46q-103 0 -185.5 -62.5t-107.5 -161.5l-201 34 +q43 186 188.5 291t327.5 105q89 0 164 -27t125.5 -79t69.5 -126t-2 -169q-19 -80 -70.5 -153t-130.5 -124q92 -47 124 -142t6 -218q-23 -102 -81.5 -183t-139 -131t-175 -76t-196.5 -26z" /> + <glyph glyph-name="four" unicode="4" horiz-adv-x="1183" +d="M578 0l79 347h-652l28 130l898 936h193l-200 -865h225l-46 -201h-225l-80 -347h-220zM335 548h368l123 523z" /> + <glyph glyph-name="five" unicode="5" horiz-adv-x="1183" +d="M475 -20q-187 0 -298.5 123.5t-108.5 303.5l211 42q-1 -54 8 -99t31.5 -85.5t67 -63t108.5 -22.5q128 0 231 96t132 222q25 110 -26.5 186t-173.5 76q-78 0 -159 -41t-137 -107l-189 68l301 734h760l-47 -204h-583l-138 -318q111 65 245 65q132 0 227.5 -68t132 -183 +t5.5 -250q-30 -126 -119.5 -235t-218 -174.5t-262.5 -65.5z" /> + <glyph glyph-name="six" unicode="6" horiz-adv-x="1183" +d="M485 -20q-139 0 -241.5 67t-144 182.5t-10.5 251.5q30 131 122 238l584 694h258l-427 -483q32 3 54 3q213 0 330.5 -138.5t70.5 -346.5q-29 -124 -115.5 -230.5t-214 -172t-266.5 -65.5zM509 187q121 0 227.5 88t134.5 211q25 107 -36 182.5t-173 75.5q-122 0 -229 -87.5 +t-135 -210.5q-25 -107 37 -183t174 -76z" /> + <glyph glyph-name="seven" unicode="7" horiz-adv-x="1183" +d="M104 0l880 1211h-725l47 202h994l-25 -113l-919 -1300h-252z" /> + <glyph glyph-name="eight" unicode="8" horiz-adv-x="1183" +d="M483 -20q-103 0 -189 27.5t-147 83t-83 138.5t2 194q25 112 102.5 202t197.5 149q-57 49 -78 127.5t0 173.5q39 166 185 262.5t322 96.5q89 0 163 -27t124.5 -78t69.5 -125t-2 -169q-18 -81 -72.5 -155t-138.5 -127q91 -52 126.5 -148.5t6.5 -221.5q-23 -100 -81.5 -179 +t-140 -127t-174.5 -72.5t-193 -24.5zM663 843q99 0 178.5 58.5t101.5 153.5q20 84 -28 130.5t-139 46.5q-95 0 -176 -56t-103 -148q-19 -85 26 -135t140 -50zM503 177q127 0 229.5 70t129.5 192q25 105 -38.5 162t-183.5 57q-132 0 -233 -69t-128 -190q-25 -106 41 -164 +t183 -58z" /> + <glyph glyph-name="nine" unicode="9" horiz-adv-x="1183" +d="M225 0l427 483q-32 -3 -56 -3q-212 0 -328.5 138.5t-69.5 346.5q43 190 215 329.5t382 139.5q139 0 241 -67t143.5 -183t10.5 -252q-32 -133 -122 -238l-584 -694h-259zM615 669q123 0 230 87.5t135 210.5q26 107 -36 183t-174 76q-121 0 -228.5 -88t-135.5 -211 +q-25 -107 36.5 -182.5t172.5 -75.5z" /> + <glyph glyph-name="colon" unicode=":" horiz-adv-x="676" +d="M264 712l57 242h244l-57 -242h-244zM101 0l55 242h244l-54 -242h-245z" /> + <glyph glyph-name="semicolon" unicode=";" horiz-adv-x="659" +d="M293 712l56 242h244l-56 -242h-244zM10 -225l214 489h257l-328 -489h-143z" /> + <glyph glyph-name="less" unicode="<" horiz-adv-x="1244" +d="M1031 157l-958 517l958 516l91 -159l-700 -357l700 -358z" /> + <glyph glyph-name="equal" unicode="=" horiz-adv-x="1258" +d="M231 759v185h807v-185h-807zM231 400v185h807v-185h-807z" /> + <glyph glyph-name="greater" unicode=">" horiz-adv-x="1244" +d="M233 157l-92 159l700 358l-700 357l92 159l958 -516z" /> + <glyph glyph-name="question" unicode="?" horiz-adv-x="1008" +d="M382 409l42 181q15 64 44.5 112t65.5 76t76.5 50.5t80.5 42.5t75 43.5t62.5 62.5t39.5 92q22 94 -28.5 139t-157.5 45q-121 0 -203 -66.5t-108 -182.5l-188 18q45 195 183 303.5t324 108.5q92 0 167.5 -26.5t127 -78t69.5 -128t-4 -175.5q-16 -71 -47.5 -126.5 +t-69.5 -89.5t-80.5 -60.5t-83 -45t-75 -37t-59 -43t-31.5 -55.5l-37 -160h-185zM262 0l55 242h244l-55 -242h-244z" /> + <glyph glyph-name="at" unicode="@" horiz-adv-x="2026" +d="M822 -348q-185 0 -336 61.5t-247.5 176.5t-130.5 279.5t14 369.5q43 186 146 350t246 284t328 189.5t383 69.5q117 0 219 -24.5t181.5 -69.5t142 -107.5t103 -141t61 -167.5t18.5 -189t-26 -204q-27 -115 -78.5 -219.5t-124.5 -190.5t-172.5 -137t-210.5 -51 +q-133 0 -192.5 69.5t-32.5 181.5q-147 -132 -323 -132q-83 0 -142 34t-86 91t-33.5 131.5t14.5 156.5q23 98 78.5 200.5t133 190.5t181 144t210.5 56q97 0 158 -45.5t76 -116.5l50 113l181 -10q-30 -71 -110 -239t-139.5 -307.5t-79.5 -230.5q-15 -60 -1.5 -81t68.5 -21 +q80 0 150.5 41.5t120.5 109.5t84.5 145.5t53.5 160.5q23 93 19.5 180t-26 163t-70.5 139.5t-114 109t-157 70.5t-199 25q-167 0 -321.5 -59t-273.5 -161.5t-204.5 -241t-122.5 -295.5q-37 -161 -10.5 -285.5t104.5 -209.5t195 -129.5t262 -44.5q120 0 258 42l37 -175 +q-150 -49 -313 -49zM823 230q81 0 158.5 43.5t135.5 112t99.5 148t59.5 157.5q20 89 -7 135.5t-112 46.5q-81 0 -159.5 -43t-136.5 -111t-99.5 -146.5t-59.5 -155.5q-42 -187 121 -187z" /> + <glyph glyph-name="A" unicode="A" horiz-adv-x="1332" +d="M-88 0l880 1413h169l226 -1413h-238l-38 307h-572l-179 -307h-248zM461 502h420l-74 582z" /> + <glyph glyph-name="B" unicode="B" horiz-adv-x="1264" +d="M77 0l325 1413h453q86 0 159 -21t132 -67.5t79 -121t-1 -181.5q-22 -92 -84.5 -164.5t-145.5 -113.5q91 -39 135 -140t15 -225q-28 -123 -113 -211t-194 -128t-231 -40h-529zM490 827h247q99 0 176.5 53t103.5 166q20 87 -33.5 126t-159.5 39h-245zM349 212h298 +q108 0 186.5 57t105.5 173q21 90 -31 140t-158 50h-305z" /> + <glyph glyph-name="C" unicode="C" horiz-adv-x="1430" +d="M657 -20q-113 0 -204.5 27.5t-154 77.5t-104 118.5t-58.5 152t-14 177t26 194.5q27 115 75 219t121 194t164 155.5t208.5 103t248.5 37.5q214 0 355 -106.5t168 -299.5l-221 -65q-9 140 -96.5 207t-230.5 67q-115 0 -214 -44t-169.5 -120.5t-119 -172t-74.5 -205.5 +q-20 -86 -22 -160.5t17 -138.5t58 -109.5t106 -71.5t158 -26q299 0 473 282l187 -104q-125 -191 -301.5 -290t-381.5 -99z" /> + <glyph glyph-name="D" unicode="D" horiz-adv-x="1408" +d="M77 0l325 1413h389q355 0 500.5 -191.5t63.5 -545.5q-76 -325 -303 -500.5t-577 -175.5h-398zM348 206h137q251 0 423 126t234 395q58 252 -33.5 366.5t-356.5 114.5h-172z" /> + <glyph glyph-name="E" unicode="E" horiz-adv-x="1243" +d="M77 0l325 1413h933l-47 -203h-708l-94 -402h645l-47 -202h-644l-91 -396h708l-48 -210h-932z" /> + <glyph glyph-name="F" unicode="F" horiz-adv-x="1223" +d="M77 0l325 1413h972l-46 -203h-748l-94 -402h660l-47 -202h-659l-139 -606h-224z" /> + <glyph glyph-name="G" unicode="G" horiz-adv-x="1526" +d="M657 -20q-113 0 -204.5 27.5t-154 77.5t-104 118.5t-58.5 152t-14 177t26 194.5q27 115 75 219t121 194t164 155.5t208.5 103t248.5 37.5q210 0 345 -106t176 -300l-212 -66q-20 139 -106 206t-225 67q-115 0 -214.5 -44t-170.5 -120t-120.5 -171t-74.5 -205 +q-20 -86 -22 -161.5t16.5 -141t57.5 -112.5t106 -73.5t157 -26.5q168 0 312.5 109t202.5 287l-324 -9l42 180h537l-172 -749h-179l35 208q-78 -105 -203.5 -166.5t-271.5 -61.5z" /> + <glyph glyph-name="H" unicode="H" horiz-adv-x="1480" +d="M77 0l325 1413h225l-141 -605h649l140 605h224l-325 -1413h-225l139 606h-648l-139 -606h-224z" /> + <glyph glyph-name="I" unicode="I" horiz-adv-x="607" +d="M77 0l325 1413h225l-326 -1413h-224z" /> + <glyph glyph-name="J" unicode="J" horiz-adv-x="1133" +d="M398 -20q-104 0 -183 37t-123 100t-60 145t-2 174l220 7q-10 -53 -4.5 -100t23 -82t56.5 -55.5t95 -20.5q75 0 131 23t93 68.5t60.5 100.5t41.5 131l162 702h-532l46 203h757l-211 -915q-119 -518 -570 -518z" /> + <glyph glyph-name="K" unicode="K" horiz-adv-x="1478" +d="M77 0l325 1413h225l-179 -766l894 766h302l-690 -572l376 -841h-269l-289 693l-383 -319l-88 -374h-224z" /> + <glyph glyph-name="L" unicode="L" horiz-adv-x="1055" +d="M77 0l325 1413h225l-278 -1203h604l-48 -210h-828z" /> + <glyph glyph-name="M" unicode="M" horiz-adv-x="1787" +d="M77 0l325 1413h314l143 -1046l629 1046h318l-325 -1413h-217l262 1125l-607 -1002h-223l-140 1002l-262 -1125h-217z" /> + <glyph glyph-name="N" unicode="N" horiz-adv-x="1443" +d="M77 0l325 1413h241l354 -1064l249 1064h216l-325 -1413h-244l-351 1066l-248 -1066h-217z" /> + <glyph glyph-name="O" unicode="O" horiz-adv-x="1524" +d="M654 -20q-113 0 -204 27.5t-153 77.5t-103.5 119t-58.5 152.5t-14 177t26 193.5q27 115 75 218t121.5 193t164.5 155.5t208.5 103t248.5 37.5q113 0 204 -27.5t153 -78t103.5 -119t58.5 -152.5t14.5 -177t-25.5 -193q-27 -115 -75.5 -218.5t-121.5 -193t-164 -155 +t-208.5 -103t-249.5 -37.5zM674 180q117 0 216 44t169 121.5t117 173.5t73 208q19 82 22 155t-14 138t-54 111.5t-103.5 74t-156.5 27.5q-93 0 -175.5 -29.5t-145 -80t-113.5 -120.5t-84.5 -148.5t-53.5 -167.5q-19 -83 -22 -155.5t14 -138t54 -112t102.5 -74t154.5 -27.5z +" /> + <glyph glyph-name="P" unicode="P" horiz-adv-x="1161" +d="M77 0l325 1413h422q218 0 328 -115t63 -314q-41 -183 -194 -282.5t-371 -99.5h-212l-138 -602h-223zM485 809h200q133 0 213.5 55t103.5 160q21 89 -31 135.5t-183 46.5h-211z" /> + <glyph glyph-name="Q" unicode="Q" horiz-adv-x="1564" +d="M1205 -112l-153 196q-170 -104 -398 -104q-113 0 -204 27.5t-153 77.5t-103.5 119t-58.5 152.5t-14 177t26 193.5q27 115 75 218t121.5 193t164.5 155.5t208.5 103t248.5 37.5q113 0 204 -27.5t153 -78t103.5 -119.5t58.5 -153t14.5 -177t-25.5 -194 +q-32 -135 -96.5 -258.5t-157.5 -216.5l157 -186zM677 189q126 0 247 58l-150 181l168 133l153 -174q115 137 162 340q19 82 21 154t-16.5 135.5t-57.5 109t-105.5 72t-156.5 26.5q-117 0 -216.5 -43t-170 -118t-119 -170t-74.5 -206q-19 -82 -20.5 -154.5t17 -136t57 -109 +t105 -72t156.5 -26.5z" /> + <glyph glyph-name="R" unicode="R" horiz-adv-x="1252" +d="M75 -2l327 1415h435q202 0 314.5 -117t68.5 -312q-30 -126 -128 -220t-234 -131l236 -635h-242l-208 615h-202l-143 -615h-224zM487 801h232q108 5 186.5 64t100.5 156q20 90 -33.5 140.5t-167.5 50.5h-223z" /> + <glyph glyph-name="S" unicode="S" horiz-adv-x="1129" +d="M510 -16q-98 0 -183.5 27t-151.5 77.5t-104 130t-38 178.5l228 39q0 -119 73 -182.5t199 -63.5q127 0 204 62.5t77 165.5q0 61 -30 108.5t-77.5 79.5t-105.5 61t-116 61t-105.5 71t-77.5 99.5t-30 138.5q0 173 133 285t329 112q149 0 261.5 -65.5t152.5 -183.5l-191 -92 +q-20 70 -82.5 110.5t-142.5 40.5q-93 0 -162.5 -53.5t-69.5 -138.5q0 -51 30 -93t77.5 -72.5t105.5 -60t116 -64.5t105.5 -77t77.5 -107t30 -145q0 -129 -72 -232.5t-193 -160t-267 -56.5z" /> + <glyph glyph-name="T" unicode="T" horiz-adv-x="1197" +d="M371 0l280 1216h-453l46 197h1131l-46 -197h-453l-280 -1216h-225z" /> + <glyph glyph-name="U" unicode="U" horiz-adv-x="1372" +d="M578 -20q-111 0 -194 28t-133 78.5t-77 121.5t-25 157t23 185l199 863h224l-196 -848q-26 -117 -22.5 -199t59 -126t167.5 -44q172 0 266 100t137 288l192 829h224l-200 -871q-61 -265 -221 -413.5t-423 -148.5z" /> + <glyph glyph-name="V" unicode="V" horiz-adv-x="1337" +d="M470 0l-229 1413h240l150 -1064l644 1064h247l-879 -1413h-173z" /> + <glyph glyph-name="W" unicode="W" horiz-adv-x="1994" +d="M342 0l-90 1413h229l57 -1096l561 1014h175l90 -1014l566 1096h236l-742 -1413h-223l-90 975l-546 -975h-223z" /> + <glyph glyph-name="X" unicode="X" horiz-adv-x="1318" +d="M-78 0l637 707l-304 706h263l219 -557l482 557h270l-634 -706l305 -707h-260l-226 549l-479 -549h-273z" /> + <glyph glyph-name="Y" unicode="Y" horiz-adv-x="1375" +d="M462 0l129 551l-365 862h259l257 -656l565 656h267l-760 -862l-129 -551h-223z" /> + <glyph glyph-name="Z" unicode="Z" horiz-adv-x="1273" +d="M-46 0l33 160l1062 1050h-771l47 203h1077l-36 -167l-1056 -1043h814l-47 -203h-1123z" /> + <glyph glyph-name="bracketleft" unicode="[" horiz-adv-x="641" +d="M37 -142l392 1693h410l-32 -139h-236l-325 -1412h235l-34 -142h-410z" /> + <glyph glyph-name="backslash" unicode="\" horiz-adv-x="935" +d="M539 -430l-322 1946h199l322 -1946h-199z" /> + <glyph glyph-name="bracketright" unicode="]" horiz-adv-x="641" +d="M-103 -142l33 142h236l326 1412h-236l32 139h410l-391 -1693h-410z" /> + <glyph glyph-name="asciicircum" unicode="^" horiz-adv-x="979" +d="M153 816l557 660l258 -660h-210l-119 311l-265 -311h-221z" /> + <glyph glyph-name="underscore" unicode="_" horiz-adv-x="1246" +d="M56 -162l38 162h828l-38 -162h-828z" /> + <glyph glyph-name="grave" unicode="`" horiz-adv-x="535" +d="M461 1110l-221 303h219l153 -303h-151z" /> + <glyph glyph-name="a" unicode="a" +d="M901 999h217l-229 -999h-202l16 107q-126 -127 -314 -127q-82 0 -146 28t-103.5 78t-61.5 118t-20.5 148t19.5 168q32 137 103.5 248.5t182 181.5t237.5 70q93 0 164 -36.5t106 -102.5zM808 520q17 63 14 118.5t-20.5 97t-60 65.5t-105.5 24q-132 0 -223.5 -97.5 +t-124.5 -247.5q-18 -86 -11 -153.5t54.5 -108.5t129.5 -41q134 0 223.5 95t123.5 248z" /> + <glyph glyph-name="b" unicode="b" horiz-adv-x="1160" +d="M560 -20q-93 0 -164 36.5t-106 102.5l-31 -119h-220l326 1412h220l-124 -517q126 125 310 125q82 0 146.5 -28t103.5 -78t61.5 -118t20.5 -148t-20 -168q-32 -137 -103.5 -249t-181.5 -181.5t-238 -69.5zM524 176q134 0 225.5 97t124.5 247q18 85 11 153.5t-54.5 111 +t-130.5 42.5q-132 0 -223.5 -98t-125.5 -249q-18 -86 -11 -153.5t54.5 -109t129.5 -41.5z" /> + <glyph glyph-name="c" unicode="c" horiz-adv-x="994" +d="M429 -20q-78 0 -142 20.5t-107.5 57.5t-73 87t-42 110.5t-10.5 126.5t18 136q23 97 71.5 185t119 158.5t169 112.5t209.5 42q146 0 240.5 -79t120.5 -212l-214 -62q-2 76 -47 115.5t-120 39.5q-68 0 -126.5 -29t-100 -78t-70 -108t-43.5 -125q-16 -57 -13.5 -111 +t17.5 -96t57 -68t105 -26q83 0 155.5 48t110.5 126l176 -93q-79 -135 -199 -206.5t-261 -71.5z" /> + <glyph glyph-name="d" unicode="d" +d="M997 1413h217l-325 -1413h-202l16 107q-126 -127 -314 -127q-82 0 -146 28t-103.5 78t-61.5 118t-20.5 148t19.5 168q32 137 103.5 248.5t182 181.5t237.5 70q93 0 164 -36.5t106 -102.5zM808 520q17 63 14 118.5t-20.5 97t-60 65.5t-105.5 24q-132 0 -223.5 -97.5 +t-124.5 -247.5q-18 -86 -11 -153.5t54.5 -108.5t129.5 -41q134 0 223.5 95t123.5 248z" /> + <glyph glyph-name="e" unicode="e" horiz-adv-x="1057" +d="M445 -12q-81 0 -147 19.5t-111.5 54.5t-76.5 83.5t-44.5 107t-12.5 124.5t17 137q22 97 70.5 185t119 158.5t168.5 112.5t209 42q105 0 180.5 -31t116.5 -82t58.5 -122t14 -146t-23.5 -158q-8 -30 -17 -53h-693q-17 -109 31 -172t160 -63q90 0 157 23.5t132 79.5 +l126 -141q-102 -87 -206.5 -123t-227.5 -36zM312 579h490q19 128 -24 189t-157 61q-110 0 -190 -70t-119 -180z" /> + <glyph glyph-name="f" unicode="f" horiz-adv-x="685" +d="M92 0l188 820h-182l41 177h184l37 161q32 135 124 205.5t233 70.5q85 0 171 -44l-101 -162q-41 23 -86 23q-46 0 -80.5 -30t-47.5 -86l-32 -136h250l-41 -179h-250l-189 -820h-219z" /> + <glyph glyph-name="g" unicode="g" horiz-adv-x="1156" +d="M882 -9q-46 -204 -187 -316t-352 -112q-285 0 -389 217l183 103q21 -62 79 -97.5t148 -35.5q117 0 198 68t110 191l28 111q-124 -125 -307 -125q-83 0 -147.5 28t-104 77.5t-62 116.5t-20.5 145.5t20 164.5q30 133 101 243.5t181.5 180t239.5 69.5q90 0 161 -36.5 +t107 -103.5l31 119h216zM464 191q132 0 221 94.5t124 241.5q16 60 13 114.5t-21 95.5t-60.5 65t-104.5 24q-132 0 -224 -97t-124 -242q-31 -129 11.5 -212.5t164.5 -83.5z" /> + <glyph glyph-name="h" unicode="h" horiz-adv-x="1151" +d="M38 0l326 1413h216l-128 -537q70 72 155.5 106t168.5 34q76 0 133 -23.5t90.5 -63.5t50 -94.5t16 -114t-15.5 -124.5l-137 -596h-218l135 586q13 65 14.5 116t-29 82.5t-94.5 31.5q-112 0 -215.5 -85.5t-127.5 -192.5l-124 -538h-216z" /> + <glyph glyph-name="i" unicode="i" horiz-adv-x="519" +d="M307 1198l49 215h230l-49 -215h-230zM38 0l229 999h214l-230 -999h-213z" /> + <glyph glyph-name="j" unicode="j" horiz-adv-x="527" +d="M311 1185l54 230h230l-54 -230h-230zM-110 -438q-84 0 -167 36l81 173q43 -18 86 -18q46 0 77.5 32.5t43.5 83.5l260 1130h217l-260 -1129q-33 -140 -118.5 -224t-219.5 -84z" /> + <glyph glyph-name="k" unicode="k" horiz-adv-x="1095" +d="M39 0l326 1413h215l-204 -868l504 454h280l-448 -381l262 -618h-248l-184 484l-218 -191l-70 -293h-215z" /> + <glyph glyph-name="l" unicode="l" horiz-adv-x="556" +d="M239 -20q-212 0 -159 229l278 1204h215l-275 -1184q-7 -34 6 -47t50 -13q11 0 75 11l-29 -182q-88 -18 -161 -18z" /> + <glyph glyph-name="m" unicode="m" horiz-adv-x="1729" +d="M38 0l229 999h216l-29 -117q57 69 130 102.5t147 33.5q102 0 168 -45t91 -124q147 167 357 167q76 0 134 -23.5t92 -64t51 -95t16.5 -115t-15.5 -125.5l-136 -593h-218l135 586q13 65 14 117.5t-30 85.5t-96 33q-106 0 -189.5 -81.5t-109.5 -194.5l-125 -546h-217 +l136 590q12 52 13.5 90.5t-7.5 72t-38.5 51.5t-78.5 18q-106 0 -189.5 -81.5t-109.5 -194.5l-125 -546h-216z" /> + <glyph glyph-name="n" unicode="n" horiz-adv-x="1152" +d="M38 0l229 999h217l-31 -121q69 71 153 104.5t167 33.5q77 0 134.5 -23.5t91 -64t50 -95t16 -114.5t-15.5 -126l-137 -593h-217l135 586q12 52 14 90t-7.5 71.5t-39 50.5t-78.5 17q-110 0 -212.5 -83.5t-126.5 -187.5l-125 -544h-217z" /> + <glyph glyph-name="o" unicode="o" horiz-adv-x="1125" +d="M455 -20q-150 0 -251.5 72.5t-136.5 194.5t-1 269q32 136 117 248.5t213 180t271 67.5q113 0 200 -42.5t135 -115.5t65 -170.5t-11 -207.5q-24 -102 -80 -192.5t-133.5 -158t-178.5 -106.5t-209 -39zM473 166q73 0 135.5 28t107.5 77.5t75.5 111t47.5 133.5 +q17 62 13.5 117.5t-22.5 98.5t-65.5 68t-115.5 25q-143 0 -237 -99t-129 -250q-17 -62 -13 -118t22.5 -99t65 -68t115.5 -25z" /> + <glyph glyph-name="p" unicode="p" +d="M-62 -438l331 1437h213l-23 -104q125 125 310 125q82 0 146.5 -28t103.5 -78t61.5 -118t20.5 -148t-20 -168q-32 -137 -103.5 -249t-181.5 -181.5t-238 -69.5q-93 0 -164 36.5t-106 102.5l-133 -557h-217zM520 176q135 0 226 96.5t125 247.5q17 63 14 119t-21.5 98 +t-61.5 66.5t-106 24.5q-131 0 -222.5 -98.5t-125.5 -249.5q-18 -86 -11 -153.5t54 -109t129 -41.5z" /> + <glyph glyph-name="q" unicode="q" horiz-adv-x="1156" +d="M569 -438l129 542q-125 -124 -309 -124q-82 0 -146 28t-103.5 78t-61.5 118t-20.5 148t19.5 168q23 101 71 191t114 159t154 109.5t184 40.5q93 0 163.5 -36t106.5 -103l35 118h212l-332 -1437h-216zM460 176q134 0 223.5 95.5t123.5 248.5q18 86 12 154t-53 110t-130 42 +q-132 0 -223.5 -98t-124.5 -248q-18 -86 -11 -153.5t54 -109t129 -41.5z" /> + <glyph glyph-name="r" unicode="r" horiz-adv-x="808" +d="M38 0l229 999h207l-34 -162q55 93 131.5 135t150.5 42q54 0 106.5 -17t85.5 -48l-122 -168q-59 34 -121 34q-107 0 -194.5 -97.5t-124.5 -260.5l-105 -457h-209z" /> + <glyph glyph-name="s" unicode="s" horiz-adv-x="897" +d="M369 -20q-159 0 -262 82.5t-115 196.5l184 61q7 -66 58.5 -112.5t139.5 -46.5q89 0 144.5 47.5t55.5 108.5q0 37 -23.5 62t-61 39.5t-82.5 27.5t-90.5 31t-83 43t-61 70.5t-23.5 107.5q0 144 110 230t272 86q131 0 227.5 -58.5t128.5 -156.5l-178 -73q-17 56 -64.5 88 +t-120.5 32q-74 0 -120.5 -33t-46.5 -88q0 -35 23.5 -60t61.5 -40.5t84 -29.5t91.5 -33t83.5 -46t61.5 -74t23.5 -111q0 -147 -121 -249t-296 -102z" /> + <glyph glyph-name="t" unicode="t" horiz-adv-x="732" +d="M377 -20q-145 0 -206 82t-29 220l124 538h-161l41 179h164l54 241l242 163l-92 -404h259l-41 -179h-259l-122 -527q-30 -127 82 -127q61 0 142 37l-34 -199q-65 -24 -164 -24z" /> + <glyph glyph-name="u" unicode="u" horiz-adv-x="1151" +d="M377 -23q-77 0 -134.5 25t-90.5 67t-49.5 99t-15 120t16.5 131l134 580h217l-137 -591q-13 -65 -13.5 -116.5t33.5 -83t104 -31.5q53 0 103.5 18t97 54.5t83 99.5t55.5 146l116 504h216l-229 -999h-212l27 125q-63 -69 -149 -108.5t-173 -39.5z" /> + <glyph glyph-name="v" unicode="v" horiz-adv-x="984" +d="M289 0l-167 999h230l84 -721l423 721h235l-626 -999h-179z" /> + <glyph glyph-name="w" unicode="w" horiz-adv-x="1452" +d="M206 -3l-67 1002h226l21 -681l359 681h188l42 -679l341 679h231l-530 -999h-198l-43 704l-374 -707h-196z" /> + <glyph glyph-name="x" unicode="x" horiz-adv-x="997" +d="M-96 0l458 504l-222 495h256l134 -342l296 342h267l-459 -495l223 -504h-256l-133 349l-298 -349h-266z" /> + <glyph glyph-name="y" unicode="y" horiz-adv-x="1014" +d="M-2 -430l287 450l-162 979h232l94 -732l436 732h239l-890 -1429h-236z" /> + <glyph glyph-name="z" unicode="z" horiz-adv-x="982" +d="M1023 999l-33 -158l-711 -660h557l-42 -181h-851l31 146l733 674h-547l41 179h822z" /> + <glyph glyph-name="braceleft" unicode="{" horiz-adv-x="614" +d="M265 -144q-112 0 -150 113q-33 41 -5 161l84 362q5 20 -0.5 36.5t-21 28t-30 19t-37.5 17.5q-4 2 -6.5 3t-5.5 2l21 145q75 23 117 57.5t56 93.5l98 426q27 120 92.5 177.5t188.5 57.5h52q37 0 73 -3l-20 -138q-39 9 -81 9q-97 0 -109 -52l-117 -509q-19 -77 -67 -124.5 +t-135 -85.5q62 -27 93.5 -72.5t19.5 -101.5l-84 -362q-16 -60 0 -93t70 -33q26 0 72 12l-20 -143q-72 -3 -77 -3h-71z" /> + <glyph glyph-name="bar" unicode="|" horiz-adv-x="622" +d="M-2 -512l474 2046h158l-473 -2046h-159z" /> + <glyph glyph-name="braceright" unicode="}" horiz-adv-x="614" +d="M-8 -144q-4 0 -73 3l19 138q31 -7 56 -7q62 0 102 40t55 105l82 361q24 105 193 173q-138 72 -104 211l118 509q4 22 -7.5 28t-55.5 6q-41 0 -100 -13l19 142q38 3 74 3h51q122 0 166.5 -66.5t16.5 -186.5l-99 -426q-14 -59 8 -88.5t85 -51.5l-21 -146 +q-43 -15 -70.5 -26.5t-58 -36t-36.5 -53.5l-83 -363q-26 -116 -69 -175q-87 -80 -196 -80h-72z" /> + <glyph glyph-name="asciitilde" unicode="~" +d="M737 379q-61 0 -115 19.5t-85.5 42.5t-67.5 42.5t-66 19.5q-43 0 -57 -23.5t-13 -73.5h-148q0 119 56.5 182t159.5 63q58 0 106.5 -12.5t79.5 -30t57 -35t50.5 -30t48.5 -12.5q46 0 61.5 26t15.5 88h156q0 -131 -60.5 -198.5t-178.5 -67.5z" /> + <glyph glyph-name="uni00A0" unicode=" " horiz-adv-x="563" + /> + <glyph glyph-name="exclamdown" unicode="¡" horiz-adv-x="635" +d="M255 757l55 242h244l-55 -242h-244zM-8 -435l264 1021h162l-207 -1021h-219z" /> + <glyph glyph-name="cent" unicode="¢" horiz-adv-x="1121" +d="M346 -205l51 188q-91 15 -154.5 65t-92 121.5t-34.5 162t18 186.5q43 188 171 328t317 170l49 184h158l-49 -187q228 -35 282 -290l-204 -58q-4 90 -47 132.5t-129 42.5q-69 0 -129.5 -31t-103.5 -83t-73 -115t-46 -133q-14 -64 -14 -119t16.5 -102t58.5 -74t108 -27 +q93 0 164 51t117 142l166 -91q-75 -124 -171 -192t-222 -87l-47 -184h-160z" /> + <glyph glyph-name="sterling" unicode="£" horiz-adv-x="1213" +d="M31 0l39 170q169 89 249 192t80 258h-223l42 173h181q-28 165 25.5 314.5t176.5 242t286 92.5q146 0 242 -91t114 -222l-178 -44q-11 82 -64.5 128.5t-129.5 46.5q-66 0 -122 -27.5t-93 -73t-61.5 -106t-27.5 -126.5t8 -134h481l-42 -173h-439q0 -147 -54.5 -268 +t-161.5 -174l746 4l-42 -182h-1032z" /> + <glyph glyph-name="currency" unicode="¤" horiz-adv-x="1228" +d="M163 141l-93 123l136 111q-57 115 -25.5 263t142.5 263l-81 94l141 124l81 -102q138 83 282 79.5t241 -88.5l134 109l95 -118l-133 -111q58 -116 26 -264.5t-143 -264.5l82 -95l-143 -123l-83 102q-137 -83 -280.5 -78.5t-242.5 89.5zM412 408q89 -83 208 -73t220 101 +q63 55 93 131.5t18.5 155.5t-66.5 134q-89 80 -206.5 69t-219.5 -100q-95 -82 -111 -207.5t64 -210.5z" /> + <glyph glyph-name="yen" unicode="¥" horiz-adv-x="1315" +d="M448 0l52 226h-299l37 164h299l28 117h-299l38 164h225l-303 742h220l261 -679l579 679h228l-644 -743h220l-37 -163h-299l-29 -117h300l-37 -164h-299l-53 -226h-188z" /> + <glyph glyph-name="brokenbar" unicode="¦" horiz-adv-x="635" +d="M285 731l172 744h172l-172 -744h-172zM46 -307l168 727h171l-168 -727h-171z" /> + <glyph glyph-name="section" unicode="§" horiz-adv-x="1112" +d="M456 -18q-105 0 -187.5 31.5t-133.5 101t-51 167.5l213 44q-1 -93 45 -130.5t141 -37.5t165 37t87 112q9 37 -11 63.5t-59 40t-89.5 27t-104 25t-102 32.5t-83.5 51t-49 80.5t2 120.5q25 107 138 204q-72 69 -43 198q21 90 89.5 156.5t156.5 97.5t183 31q133 0 223 -61.5 +t114 -156.5l-191 -73q-10 121 -167 121q-90 0 -156.5 -46t-81.5 -113q-9 -39 18 -64t77 -38.5t111 -25.5t120 -32t105 -50.5t65.5 -88t1.5 -138.5q-27 -113 -133 -202q70 -68 40 -200q-18 -75 -64.5 -131.5t-110.5 -89t-134 -48t-144 -15.5zM690 561q54 18 90 56t47 89 +q18 76 -78 114q-39 15 -136 35q-40 9 -59 13q-55 -21 -92 -63.5t-48 -90.5q-5 -22 0.5 -40.5t22 -32t35 -23t49 -18t54 -14t59.5 -13t56 -12.5z" /> + <glyph glyph-name="dieresis" unicode="¨" horiz-adv-x="840" +d="M383 1198l49 215h194l-49 -215h-194zM732 1198l49 215h194l-50 -215h-193z" /> + <glyph glyph-name="copyright" unicode="©" horiz-adv-x="1782" +d="M940 -50q-212 0 -391 101.5t-283 275.5t-104 380q0 205 104 379t283 275.5t391 101.5q158 0 301.5 -60t247 -161t165 -241t61.5 -294t-61.5 -294t-165 -241.5t-247 -161.5t-301.5 -60zM940 117q121 0 233.5 47.5t194.5 127.5t131 189t49 226t-49 226t-131 188.5 +t-194.5 127t-233.5 47.5q-122 0 -235 -47.5t-195 -127t-131 -188.5t-49 -226q0 -157 82.5 -293t223.5 -216.5t304 -80.5zM956 275q-122 0 -209.5 60.5t-128 156t-40.5 213.5t40.5 213t128 155.5t209.5 60.5q233 0 339 -227l-153 -65q-32 65 -76 94.5t-110 29.5 +q-106 0 -160 -73.5t-54 -187.5t53 -187t159 -73q69 0 112 30t74 95l155 -66q-106 -229 -339 -229z" /> + <glyph glyph-name="ordfeminine" unicode="ª" horiz-adv-x="832" +d="M393 709q-105 0 -165 65.5t-35 170.5q23 102 105.5 149t206.5 47l208 9q16 82 -8.5 121t-103.5 39q-113 0 -212 -114l-99 90q78 80 152 114t167 34q140 0 202 -81.5t32 -211.5l-97 -418h-122l20 86q-107 -100 -251 -100zM423 835q84 0 161 60t101 134l-186 -10 +q-62 0 -108.5 -31t-58.5 -83q-7 -29 22 -49.5t69 -20.5z" /> + <glyph glyph-name="guillemotleft" unicode="«" horiz-adv-x="960" +d="M367 165l-332 345l488 347l-42 -195l-220 -152l148 -150zM730 165l-332 345l488 347l-42 -195l-221 -152l149 -150z" /> + <glyph glyph-name="logicalnot" unicode="¬" horiz-adv-x="1308" +d="M878 291v315h-722v191h926v-506h-204z" /> + <glyph glyph-name="uni00AD" unicode="­" horiz-adv-x="1001" +d="M155 530l38 162h705l-38 -162h-705z" /> + <glyph glyph-name="registered" unicode="®" horiz-adv-x="1782" +d="M940 -48q-211 0 -390 101.5t-283 275.5t-104 380q0 205 104 379t283 275.5t390 101.5t389.5 -101.5t282.5 -275.5t104 -379q0 -154 -61.5 -294t-165.5 -241.5t-247.5 -161.5t-301.5 -60zM940 111q165 0 307.5 81t226 219t83.5 298t-83.5 297.5t-226 218.5t-307.5 81 +q-166 0 -308.5 -81t-226.5 -218.5t-84 -297.5t84 -298t226.5 -219t308.5 -81zM678 293v817h315q135 0 206.5 -65.5t71.5 -182.5q0 -89 -42 -145.5t-107 -80.5l199 -343h-189l-174 321h-115v-321h-165zM833 769h160q67 0 95 21.5t28 71.5q0 51 -27 72t-96 21h-160v-186z" /> + <glyph glyph-name="macron" unicode="¯" horiz-adv-x="848" +d="M328 1158l32 138h553l-32 -138h-553z" /> + <glyph glyph-name="degree" unicode="°" horiz-adv-x="848" +d="M460 848q-120 0 -206.5 86t-86.5 207t86.5 207t206.5 86q122 0 207.5 -86t85.5 -207t-85.5 -207t-207.5 -86zM460 990q64 0 108 44t44 107t-44 107t-108 44q-62 0 -106.5 -44.5t-44.5 -106.5q0 -63 44.5 -107t106.5 -44z" /> + <glyph glyph-name="plusminus" unicode="±" horiz-adv-x="1354" +d="M585 106v438h-457v162h457v437h162v-437h457v-162h-457v-438h-162zM130 -162v162h1072v-162h-1072z" /> + <glyph glyph-name="acute" unicode="´" horiz-adv-x="537" +d="M223 1124l291 289h243l-364 -289h-170z" /> + <glyph glyph-name="uni00B5" unicode="µ" horiz-adv-x="1295" +d="M54 -266l291 1265h205l-136 -595q-13 -52 -15 -92.5t8 -74.5t40 -52.5t80 -18.5q114 0 220 86t131 195l126 552h205l-229 -999h-205l29 113q-59 -59 -142.5 -97.5t-169.5 -38.5q-90 0 -165 41l-90 -284h-183z" /> + <glyph glyph-name="paragraph" unicode="¶" horiz-adv-x="1284" +d="M363 -246l207 869q-88 0 -164 28t-128.5 81.5t-72.5 130.5t2 175q27 115 110 202t193.5 130t229.5 43h165l-383 -1659h-159zM719 -246l383 1659h161l-383 -1659h-161z" /> + <glyph glyph-name="periodcentered" unicode="·" horiz-adv-x="627" +d="M363 666q-63 0 -96.5 47.5t-18.5 114.5q12 51 56.5 85.5t98.5 34.5q64 0 99 -46t19 -114q-12 -51 -57.5 -86.5t-100.5 -35.5z" /> + <glyph glyph-name="cedilla" unicode="¸" horiz-adv-x="554" +d="M31 -517q-66 0 -113 40t-59 97l130 37q3 -46 52 -46q43 0 77.5 30t45.5 74q9 41 -28 68t-112 27h-69l152 188h141l-107 -105q90 -10 128.5 -67t19.5 -143q-20 -84 -93 -142t-165 -58z" /> + <glyph glyph-name="ordmasculine" unicode="º" horiz-adv-x="851" +d="M486 711q-159 0 -236.5 111t-40.5 271q34 143 152 242t268 99q157 0 234.5 -111t40.5 -270q-34 -144 -151.5 -243t-266.5 -99zM493 845q103 0 170.5 69.5t92.5 178.5q23 93 -8 151t-125 58q-105 0 -173 -69.5t-93 -179.5q-21 -94 9.5 -151t126.5 -57z" /> + <glyph glyph-name="guillemotright" unicode="»" horiz-adv-x="962" +d="M76 165l42 195l220 150l-146 152l40 195l332 -347zM439 165l41 195l221 150l-147 152l40 195l333 -347z" /> + <glyph glyph-name="questiondown" unicode="¿" horiz-adv-x="1005" +d="M446 757l55 242h244l-54 -242h-245zM317 -434q-92 0 -167.5 26.5t-126.5 78t-69 127.5t4 176q19 82 58.5 143.5t85 95t96 61.5t92.5 46t74 46.5t40 64.5l37 159h185l-42 -180q-15 -64 -44.5 -112t-65.5 -76.5t-77 -50.5t-81 -42t-75 -44t-62.5 -63t-39.5 -92 +q-22 -93 29 -138t156 -45q110 0 196 61.5t112 166.5l189 -18q-44 -182 -185.5 -286.5t-318.5 -104.5z" /> + <glyph glyph-name="Agrave" unicode="À" horiz-adv-x="1332" +d="M838 1523l-221 303h219l153 -303h-151zM-88 0l880 1413h169l226 -1413h-238l-38 307h-572l-179 -307h-248zM461 502h420l-74 582z" /> + <glyph glyph-name="Aacute" unicode="Á" horiz-adv-x="1332" +d="M793 1537l291 289h243l-364 -289h-170zM-88 0l880 1413h169l226 -1413h-238l-38 307h-572l-179 -307h-248zM461 502h420l-74 582z" /> + <glyph glyph-name="Acircumflex" unicode="Â" horiz-adv-x="1332" +d="M578 1511l400 353l240 -353h-174l-103 158l-177 -158h-186zM-88 0l880 1413h169l226 -1413h-238l-38 307h-572l-179 -307h-248zM461 502h420l-74 582z" /> + <glyph glyph-name="Atilde" unicode="Ã" horiz-adv-x="1332" +d="M1042 1532q-53 0 -88 23t-48.5 50.5t-31.5 50.5t-41 23q-36 0 -66.5 -39t-46.5 -98h-137q29 135 93 205t154 70q41 0 71.5 -15t47 -36.5t29 -43.5t26.5 -37t32 -15q34 0 65 39.5t47 101.5h144q-31 -139 -95 -209t-155 -70zM-88 0l880 1413h169l226 -1413h-238l-38 307 +h-572l-179 -307h-248zM461 502h420l-74 582z" /> + <glyph glyph-name="Adieresis" unicode="Ä" horiz-adv-x="1332" +d="M652 1611l49 215h194l-49 -215h-194zM1001 1611l49 215h194l-50 -215h-193zM-88 0l880 1413h169l226 -1413h-238l-38 307h-572l-179 -307h-248zM461 502h420l-74 582z" /> + <glyph glyph-name="Aring" unicode="Å" horiz-adv-x="1332" +d="M979 1325l208 -1325h-230l-38 307h-580l-179 -307h-248l835 1334q-42 29 -59.5 85.5t-2.5 117.5q22 87 95 144t158 57q96 0 151 -70t31 -171q-30 -116 -141 -172zM879 1407q53 0 92 41t41 92q1 40 -23 62.5t-66 22.5q-57 0 -93 -39.5t-38 -88.5q-2 -40 22.5 -65t64.5 -25 +zM461 502h427l-74 592z" /> + <glyph glyph-name="AE" unicode="Æ" horiz-adv-x="1845" +d="M-88 0l874 1413h1167l-43 -187h-748l-99 -425h660l-44 -189h-659l-97 -419h748l-44 -193h-956l69 307h-416l-181 -307h-231zM435 486h347l171 740h-65z" /> + <glyph glyph-name="Ccedilla" unicode="Ç" horiz-adv-x="1430" +d="M680 191q299 0 473 282l187 -104q-114 -174 -271.5 -272t-340.5 -114l-92 -90q90 -10 128.5 -67t19.5 -143q-20 -84 -93 -142t-165 -58q-66 0 -113 40t-59 97l130 37q3 -46 52 -46q43 0 77.5 30t45.5 74q9 41 -28 68t-112 27h-69l140 173q-120 9 -211 53t-147 113 +t-84 161t-27.5 197t27.5 220t75 219t121 194t164 155.5t208.5 103t248.5 37.5q214 0 355 -106.5t168 -299.5l-221 -65q-9 140 -96.5 207t-230.5 67q-115 0 -214 -44t-169.5 -120.5t-119 -172t-74.5 -205.5q-20 -86 -22 -160.5t17 -138.5t58 -109.5t106 -71.5t158 -26z" /> + <glyph glyph-name="Egrave" unicode="È" horiz-adv-x="1243" +d="M806 1523l-221 303h219l153 -303h-151zM77 0l325 1413h933l-47 -203h-708l-94 -402h645l-47 -202h-644l-91 -396h708l-48 -210h-932z" /> + <glyph glyph-name="Eacute" unicode="É" horiz-adv-x="1243" +d="M761 1537l291 289h243l-364 -289h-170zM77 0l325 1413h933l-47 -203h-708l-94 -402h645l-47 -202h-644l-91 -396h708l-48 -210h-932z" /> + <glyph glyph-name="Ecircumflex" unicode="Ê" horiz-adv-x="1243" +d="M546 1511l400 353l240 -353h-174l-103 158l-177 -158h-186zM77 0l325 1413h933l-47 -203h-708l-94 -402h645l-47 -202h-644l-91 -396h708l-48 -210h-932z" /> + <glyph glyph-name="Edieresis" unicode="Ë" horiz-adv-x="1243" +d="M620 1611l49 215h194l-49 -215h-194zM969 1611l49 215h194l-50 -215h-193zM77 0l325 1413h933l-47 -203h-708l-94 -402h645l-47 -202h-644l-91 -396h708l-48 -210h-932z" /> + <glyph glyph-name="Igrave" unicode="Ì" horiz-adv-x="607" +d="M474 1523l-221 303h219l153 -303h-151zM77 0l325 1413h225l-326 -1413h-224z" /> + <glyph glyph-name="Iacute" unicode="Í" horiz-adv-x="607" +d="M429 1537l291 289h243l-364 -289h-170zM77 0l325 1413h225l-326 -1413h-224z" /> + <glyph glyph-name="Icircumflex" unicode="Î" horiz-adv-x="607" +d="M214 1511l400 353l240 -353h-174l-103 158l-177 -158h-186zM77 0l325 1413h225l-326 -1413h-224z" /> + <glyph glyph-name="Idieresis" unicode="Ï" horiz-adv-x="607" +d="M288 1611l49 215h194l-49 -215h-194zM637 1611l49 215h194l-50 -215h-193zM77 0l325 1413h225l-326 -1413h-224z" /> + <glyph glyph-name="Eth" unicode="Ð" horiz-adv-x="1427" +d="M98 0l145 631h-112l36 163h113l143 619h383q353 0 502.5 -191.5t67.5 -545.5q-76 -324 -306.5 -500t-579.5 -176h-392zM353 197h145q97 0 184.5 19.5t167 60.5t142.5 102.5t110.5 150t72.5 197.5q56 248 -41.5 370t-363.5 122h-181l-98 -425h381l-37 -163h-381z" /> + <glyph glyph-name="Ntilde" unicode="Ñ" horiz-adv-x="1443" +d="M1096 1532q-53 0 -88 23t-48.5 50.5t-31.5 50.5t-41 23q-36 0 -66.5 -39t-46.5 -98h-137q29 135 93 205t154 70q41 0 71.5 -15t47 -36.5t29 -43.5t26.5 -37t32 -15q34 0 65 39.5t47 101.5h144q-31 -139 -95 -209t-155 -70zM77 0l325 1413h241l354 -1064l249 1064h216 +l-325 -1413h-244l-351 1066l-248 -1066h-217z" /> + <glyph glyph-name="Ograve" unicode="Ò" horiz-adv-x="1524" +d="M932 1523l-221 303h219l153 -303h-151zM654 -20q-113 0 -204 27.5t-153 77.5t-103.5 119t-58.5 152.5t-14 177t26 193.5q27 115 75 218t121.5 193t164.5 155.5t208.5 103t248.5 37.5q113 0 204 -27.5t153 -78t103.5 -119t58.5 -152.5t14.5 -177t-25.5 -193 +q-27 -115 -75.5 -218.5t-121.5 -193t-164 -155t-208.5 -103t-249.5 -37.5zM674 180q117 0 216 44t169 121.5t117 173.5t73 208q19 82 22 155t-14 138t-54 111.5t-103.5 74t-156.5 27.5q-93 0 -175.5 -29.5t-145 -80t-113.5 -120.5t-84.5 -148.5t-53.5 -167.5 +q-19 -83 -22 -155.5t14 -138t54 -112t102.5 -74t154.5 -27.5z" /> + <glyph glyph-name="Oacute" unicode="Ó" horiz-adv-x="1524" +d="M887 1537l291 289h243l-364 -289h-170zM654 -20q-113 0 -204 27.5t-153 77.5t-103.5 119t-58.5 152.5t-14 177t26 193.5q27 115 75 218t121.5 193t164.5 155.5t208.5 103t248.5 37.5q113 0 204 -27.5t153 -78t103.5 -119t58.5 -152.5t14.5 -177t-25.5 -193 +q-27 -115 -75.5 -218.5t-121.5 -193t-164 -155t-208.5 -103t-249.5 -37.5zM674 180q117 0 216 44t169 121.5t117 173.5t73 208q19 82 22 155t-14 138t-54 111.5t-103.5 74t-156.5 27.5q-93 0 -175.5 -29.5t-145 -80t-113.5 -120.5t-84.5 -148.5t-53.5 -167.5 +q-19 -83 -22 -155.5t14 -138t54 -112t102.5 -74t154.5 -27.5z" /> + <glyph glyph-name="Ocircumflex" unicode="Ô" horiz-adv-x="1524" +d="M672 1511l400 353l240 -353h-174l-103 158l-177 -158h-186zM654 -20q-113 0 -204 27.5t-153 77.5t-103.5 119t-58.5 152.5t-14 177t26 193.5q27 115 75 218t121.5 193t164.5 155.5t208.5 103t248.5 37.5q113 0 204 -27.5t153 -78t103.5 -119t58.5 -152.5t14.5 -177 +t-25.5 -193q-27 -115 -75.5 -218.5t-121.5 -193t-164 -155t-208.5 -103t-249.5 -37.5zM674 180q117 0 216 44t169 121.5t117 173.5t73 208q19 82 22 155t-14 138t-54 111.5t-103.5 74t-156.5 27.5q-93 0 -175.5 -29.5t-145 -80t-113.5 -120.5t-84.5 -148.5t-53.5 -167.5 +q-19 -83 -22 -155.5t14 -138t54 -112t102.5 -74t154.5 -27.5z" /> + <glyph glyph-name="Otilde" unicode="Õ" horiz-adv-x="1524" +d="M1136 1532q-53 0 -88 23t-48.5 50.5t-31.5 50.5t-41 23q-36 0 -66.5 -39t-46.5 -98h-137q29 135 93 205t154 70q41 0 71.5 -15t47 -36.5t29 -43.5t26.5 -37t32 -15q34 0 65 39.5t47 101.5h144q-31 -139 -95 -209t-155 -70zM654 -20q-113 0 -204 27.5t-153 77.5 +t-103.5 119t-58.5 152.5t-14 177t26 193.5q27 115 75 218t121.5 193t164.5 155.5t208.5 103t248.5 37.5q113 0 204 -27.5t153 -78t103.5 -119t58.5 -152.5t14.5 -177t-25.5 -193q-27 -115 -75.5 -218.5t-121.5 -193t-164 -155t-208.5 -103t-249.5 -37.5zM674 180 +q117 0 216 44t169 121.5t117 173.5t73 208q19 82 22 155t-14 138t-54 111.5t-103.5 74t-156.5 27.5q-93 0 -175.5 -29.5t-145 -80t-113.5 -120.5t-84.5 -148.5t-53.5 -167.5q-19 -83 -22 -155.5t14 -138t54 -112t102.5 -74t154.5 -27.5z" /> + <glyph glyph-name="Odieresis" unicode="Ö" horiz-adv-x="1524" +d="M746 1611l49 215h194l-49 -215h-194zM1095 1611l49 215h194l-50 -215h-193zM654 -20q-113 0 -204 27.5t-153 77.5t-103.5 119t-58.5 152.5t-14 177t26 193.5q27 115 75 218t121.5 193t164.5 155.5t208.5 103t248.5 37.5q113 0 204 -27.5t153 -78t103.5 -119t58.5 -152.5 +t14.5 -177t-25.5 -193q-27 -115 -75.5 -218.5t-121.5 -193t-164 -155t-208.5 -103t-249.5 -37.5zM674 180q117 0 216 44t169 121.5t117 173.5t73 208q19 82 22 155t-14 138t-54 111.5t-103.5 74t-156.5 27.5q-93 0 -175.5 -29.5t-145 -80t-113.5 -120.5t-84.5 -148.5 +t-53.5 -167.5q-19 -83 -22 -155.5t14 -138t54 -112t102.5 -74t154.5 -27.5z" /> + <glyph glyph-name="multiply" unicode="×" horiz-adv-x="1116" +d="M242 187l-115 114l323 324l-309 308l115 116l309 -309l323 322l114 -114l-322 -323l309 -309l-115 -116l-309 309z" /> + <glyph glyph-name="Oslash" unicode="Ø" horiz-adv-x="1524" +d="M1370 1285q95 -102 120.5 -262t-17.5 -336q-27 -115 -75.5 -218.5t-121.5 -193t-164 -155t-208.5 -103t-249.5 -37.5q-180 0 -302 69l-41 -49h-171l108 131q-94 101 -119.5 261t18.5 335q27 115 75 218t121.5 193t164.5 155.5t208.5 103t248.5 37.5q178 0 302 -69l39 48 +h170zM371 687q-57 -240 26 -376l728 883q-73 39 -182 39q-93 0 -175.5 -29.5t-145 -80t-113.5 -120.5t-84.5 -148.5t-53.5 -167.5zM1249 727q57 243 -27 378l-730 -885q72 -40 182 -40q117 0 216 44t169 121.5t117 173.5t73 208z" /> + <glyph glyph-name="Ugrave" unicode="Ù" horiz-adv-x="1372" +d="M854 1523l-221 303h219l153 -303h-151zM578 -20q-111 0 -194 28t-133 78.5t-77 121.5t-25 157t23 185l199 863h224l-196 -848q-26 -117 -22.5 -199t59 -126t167.5 -44q172 0 266 100t137 288l192 829h224l-200 -871q-61 -265 -221 -413.5t-423 -148.5z" /> + <glyph glyph-name="Uacute" unicode="Ú" horiz-adv-x="1372" +d="M809 1537l291 289h243l-364 -289h-170zM578 -20q-111 0 -194 28t-133 78.5t-77 121.5t-25 157t23 185l199 863h224l-196 -848q-26 -117 -22.5 -199t59 -126t167.5 -44q172 0 266 100t137 288l192 829h224l-200 -871q-61 -265 -221 -413.5t-423 -148.5z" /> + <glyph glyph-name="Ucircumflex" unicode="Û" horiz-adv-x="1372" +d="M594 1511l400 353l240 -353h-174l-103 158l-177 -158h-186zM578 -20q-111 0 -194 28t-133 78.5t-77 121.5t-25 157t23 185l199 863h224l-196 -848q-26 -117 -22.5 -199t59 -126t167.5 -44q172 0 266 100t137 288l192 829h224l-200 -871q-61 -265 -221 -413.5t-423 -148.5 +z" /> + <glyph glyph-name="Udieresis" unicode="Ü" horiz-adv-x="1372" +d="M668 1611l49 215h194l-49 -215h-194zM1017 1611l49 215h194l-50 -215h-193zM578 -20q-111 0 -194 28t-133 78.5t-77 121.5t-25 157t23 185l199 863h224l-196 -848q-26 -117 -22.5 -199t59 -126t167.5 -44q172 0 266 100t137 288l192 829h224l-200 -871 +q-61 -265 -221 -413.5t-423 -148.5z" /> + <glyph glyph-name="Yacute" unicode="Ý" horiz-adv-x="1375" +d="M814 1537l291 289h243l-364 -289h-170zM462 0l129 551l-365 862h259l257 -656l565 656h267l-760 -862l-129 -551h-223z" /> + <glyph glyph-name="Thorn" unicode="Þ" horiz-adv-x="1147" +d="M77 0l325 1413h209l-45 -196h248q208 0 299 -112.5t48 -305.5q-45 -191 -195 -291t-367 -100h-221l-92 -408h-209zM423 599h206q134 0 218.5 60t111.5 174q22 98 -31 148.5t-186 50.5h-218z" /> + <glyph glyph-name="germandbls" unicode="ß" horiz-adv-x="1183" +d="M619 -18q-98 0 -220 49l109 179q57 -30 127 -30t128.5 44t72.5 107q9 38 -5 74t-41.5 64t-58.5 61.5t-57 67.5t-37.5 82t1.5 105q12 49 43.5 86t69.5 60t75.5 45.5t68 55.5t40.5 77q13 57 -26 97.5t-133 40.5q-112 0 -190.5 -70.5t-109.5 -201.5l-224 -975h-212l229 994 +q34 146 115.5 247.5t183 147t215.5 45.5q110 0 199.5 -45.5t134.5 -134.5t19 -200q-14 -59 -48 -103.5t-74 -69.5t-78.5 -45.5t-68 -45t-36.5 -53.5q-6 -27 20 -57t64.5 -59t76 -74.5t54 -103.5t-1.5 -146q-32 -139 -152.5 -227t-272.5 -88z" /> + <glyph glyph-name="agrave" unicode="à" +d="M808 1110h-151l-221 303h219zM901 999h217l-229 -999h-202l16 107q-126 -127 -314 -127q-82 0 -146 28t-103.5 78t-61.5 118t-20.5 148t19.5 168q32 137 103.5 248.5t182 181.5t237.5 70q93 0 164 -36.5t106 -102.5zM808 520q17 63 14 118.5t-20.5 97t-60 65.5t-105.5 24 +q-132 0 -223.5 -97.5t-124.5 -247.5q-18 -86 -11 -153.5t54.5 -108.5t129.5 -41q134 0 223.5 95t123.5 248z" /> + <glyph glyph-name="aacute" unicode="á" +d="M1146 1413l-364 -289h-170l291 289h243zM870 881l31 118h217l-229 -999h-202l16 107q-126 -127 -314 -127q-82 0 -146 28t-103.5 78t-61.5 118t-20.5 148t19.5 168q32 137 103.5 248.5t182 181.5t237.5 70q93 0 164 -36.5t106 -102.5zM808 520q17 63 14 118.5t-20.5 97 +t-60 65.5t-105.5 24q-132 0 -223.5 -97.5t-124.5 -247.5q-18 -86 -11 -153.5t54.5 -108.5t129.5 -41q134 0 223.5 95t123.5 248z" /> + <glyph glyph-name="acircumflex" unicode="â" +d="M760 1256l-177 -158h-186l400 353l240 -353h-174zM901 999h217l-229 -999h-202l16 107q-126 -127 -314 -127q-82 0 -146 28t-103.5 78t-61.5 118t-20.5 148t19.5 168q32 137 103.5 248.5t182 181.5t237.5 70q93 0 164 -36.5t106 -102.5zM808 520q17 63 14 118.5t-20.5 97 +t-60 65.5t-105.5 24q-132 0 -223.5 -97.5t-124.5 -247.5q-18 -86 -11 -153.5t54.5 -108.5t129.5 -41q134 0 223.5 95t123.5 248z" /> + <glyph glyph-name="atilde" unicode="ã" +d="M652 1266q-36 0 -66.5 -39t-46.5 -98h-137q29 135 93 205t154 70q41 0 71.5 -15t47 -37t29 -43.5t26.5 -36.5t32 -15q34 0 65 39.5t47 101.5h144q-31 -139 -95 -209t-155 -70q-53 0 -88 23t-48.5 50.5t-31.5 50.5t-41 23zM901 999h217l-229 -999h-202l16 107 +q-126 -127 -314 -127q-82 0 -146 28t-103.5 78t-61.5 118t-20.5 148t19.5 168q32 137 103.5 248.5t182 181.5t237.5 70q93 0 164 -36.5t106 -102.5zM808 520q17 63 14 118.5t-20.5 97t-60 65.5t-105.5 24q-132 0 -223.5 -97.5t-124.5 -247.5q-18 -86 -11 -153.5t54.5 -108.5 +t129.5 -41q134 0 223.5 95t123.5 248z" /> + <glyph glyph-name="adieresis" unicode="ä" +d="M714 1413l-49 -215h-194l49 215h194zM1063 1413l-50 -215h-193l49 215h194zM901 999h217l-229 -999h-202l16 107q-126 -127 -314 -127q-82 0 -146 28t-103.5 78t-61.5 118t-20.5 148t19.5 168q32 137 103.5 248.5t182 181.5t237.5 70q93 0 164 -36.5t106 -102.5zM808 520 +q17 63 14 118.5t-20.5 97t-60 65.5t-105.5 24q-132 0 -223.5 -97.5t-124.5 -247.5q-18 -86 -11 -153.5t54.5 -108.5t129.5 -41q134 0 223.5 95t123.5 248z" /> + <glyph glyph-name="aring" unicode="å" +d="M727 1072q-100 0 -152.5 72.5t-27.5 170.5q21 84 94 142.5t160 58.5q98 0 152 -72t29 -169q-22 -86 -95.5 -144.5t-159.5 -58.5zM664 1276q-1 -39 20.5 -60.5t58.5 -21.5q51 0 86 38t37 86q1 38 -21.5 59t-59.5 21q-54 0 -86.5 -36t-34.5 -86zM901 999h217l-229 -999 +h-202l16 107q-126 -127 -314 -127q-82 0 -146 28t-103.5 78t-61.5 118t-20.5 148t19.5 168q32 137 103.5 248.5t182 181.5t237.5 70q93 0 164 -36.5t106 -102.5zM808 520q17 63 14 118.5t-20.5 97t-60 65.5t-105.5 24q-132 0 -223.5 -97.5t-124.5 -247.5q-18 -86 -11 -153.5 +t54.5 -108.5t129.5 -41q134 0 223.5 95t123.5 248z" /> + <glyph glyph-name="ae" unicode="æ" horiz-adv-x="1675" +d="M291 -20q-148 0 -231.5 91t-50.5 236q35 149 151 214t298 67h290q28 130 -8 189t-154 59q-80 0 -156 -42t-128 -100l-134 126q98 101 204.5 148.5t238.5 47.5q116 0 192.5 -46.5t105.5 -125.5q154 168 360 168q102 0 175 -31.5t111.5 -83.5t55.5 -123t13 -145.5 +t-24 -155.5q-11 -36 -18 -44h-692q-16 -115 31 -179.5t160 -64.5q89 0 156.5 23.5t133.5 79.5l126 -141q-104 -87 -207.5 -123t-226.5 -36q-137 0 -216 54.5t-105 145.5q-183 -208 -451 -208zM929 588h492q17 121 -26.5 181t-156.5 60q-110 0 -191 -69t-118 -172zM346 158 +q117 0 225 86t140 185h-264q-89 -2 -156 -46t-84 -115q-12 -52 28 -81t111 -29z" /> + <glyph glyph-name="ccedilla" unicode="ç" horiz-adv-x="994" +d="M447 177q83 0 155.5 48t110.5 126l176 -93q-72 -123 -179.5 -194t-234.5 -82l-91 -89q90 -10 128.5 -67t19.5 -143q-20 -84 -93 -142t-165 -58q-66 0 -113 40t-59 97l130 37q3 -46 52 -46q43 0 77.5 30t45.5 74q9 41 -28 68t-112 27h-69l143 177q-91 16 -155.5 66.5 +t-94.5 122t-36.5 160.5t17.5 182q23 97 71.5 185t119 158.5t169 112.5t209.5 42q146 0 240.5 -79t120.5 -212l-214 -62q-2 76 -47 115.5t-120 39.5q-68 0 -126.5 -29t-100 -78t-70 -108t-43.5 -125q-16 -57 -13.5 -111t17.5 -96t57 -68t105 -26z" /> + <glyph glyph-name="egrave" unicode="è" horiz-adv-x="1057" +d="M596 1110l-221 303h219l153 -303h-151zM445 -12q-81 0 -147 19.5t-111.5 54.5t-76.5 83.5t-44.5 107t-12.5 124.5t17 137q22 97 70.5 185t119 158.5t168.5 112.5t209 42q105 0 180.5 -31t116.5 -82t58.5 -122t14 -146t-23.5 -158q-8 -30 -17 -53h-693q-17 -109 31 -172 +t160 -63q90 0 157 23.5t132 79.5l126 -141q-102 -87 -206.5 -123t-227.5 -36zM312 579h490q19 128 -24 189t-157 61q-110 0 -190 -70t-119 -180z" /> + <glyph glyph-name="eacute" unicode="é" horiz-adv-x="1057" +d="M551 1124l291 289h243l-364 -289h-170zM445 -12q-81 0 -147 19.5t-111.5 54.5t-76.5 83.5t-44.5 107t-12.5 124.5t17 137q22 97 70.5 185t119 158.5t168.5 112.5t209 42q105 0 180.5 -31t116.5 -82t58.5 -122t14 -146t-23.5 -158q-8 -30 -17 -53h-693q-17 -109 31 -172 +t160 -63q90 0 157 23.5t132 79.5l126 -141q-102 -87 -206.5 -123t-227.5 -36zM312 579h490q19 128 -24 189t-157 61q-110 0 -190 -70t-119 -180z" /> + <glyph glyph-name="ecircumflex" unicode="ê" horiz-adv-x="1057" +d="M336 1098l400 353l240 -353h-174l-103 158l-177 -158h-186zM445 -12q-81 0 -147 19.5t-111.5 54.5t-76.5 83.5t-44.5 107t-12.5 124.5t17 137q22 97 70.5 185t119 158.5t168.5 112.5t209 42q105 0 180.5 -31t116.5 -82t58.5 -122t14 -146t-23.5 -158q-8 -30 -17 -53h-693 +q-17 -109 31 -172t160 -63q90 0 157 23.5t132 79.5l126 -141q-102 -87 -206.5 -123t-227.5 -36zM312 579h490q19 128 -24 189t-157 61q-110 0 -190 -70t-119 -180z" /> + <glyph glyph-name="edieresis" unicode="ë" horiz-adv-x="1057" +d="M410 1198l49 215h194l-49 -215h-194zM759 1198l49 215h194l-50 -215h-193zM445 -12q-81 0 -147 19.5t-111.5 54.5t-76.5 83.5t-44.5 107t-12.5 124.5t17 137q22 97 70.5 185t119 158.5t168.5 112.5t209 42q105 0 180.5 -31t116.5 -82t58.5 -122t14 -146t-23.5 -158 +q-8 -30 -17 -53h-693q-17 -109 31 -172t160 -63q90 0 157 23.5t132 79.5l126 -141q-102 -87 -206.5 -123t-227.5 -36zM312 579h490q19 128 -24 189t-157 61q-110 0 -190 -70t-119 -180z" /> + <glyph glyph-name="igrave" unicode="ì" horiz-adv-x="506" +d="M328 1110l-221 303h219l153 -303h-151zM38 0l229 999h201l-229 -999h-201z" /> + <glyph glyph-name="iacute" unicode="í" horiz-adv-x="506" +d="M283 1124l291 289h243l-364 -289h-170zM38 0l229 999h201l-229 -999h-201z" /> + <glyph glyph-name="icircumflex" unicode="î" horiz-adv-x="506" +d="M68 1098l400 353l240 -353h-174l-103 158l-177 -158h-186zM38 0l229 999h201l-229 -999h-201z" /> + <glyph glyph-name="idieresis" unicode="ï" horiz-adv-x="506" +d="M142 1198l49 215h194l-49 -215h-194zM491 1198l49 215h194l-50 -215h-193zM38 0l229 999h201l-229 -999h-201z" /> + <glyph glyph-name="eth" unicode="ð" horiz-adv-x="1171" +d="M840 1387q193 -137 253 -341.5t-9 -511.5q-58 -255 -219.5 -402.5t-391.5 -147.5q-84 0 -153 20.5t-117.5 58t-82 88.5t-49 113t-15 130.5t16.5 141.5q48 208 205.5 346t370.5 138q174 0 261 -103q-4 206 -198 329l-115 -126l-89 63l106 116q-44 19 -133 53l128 160 +q73 -32 138 -66l91 100l92 -60zM865 538q31 133 -20 222t-180 89q-142 0 -243.5 -103t-136.5 -250q-17 -61 -11 -117.5t27 -100t69 -69.5t116 -26q142 0 243 103t136 252z" /> + <glyph glyph-name="ntilde" unicode="ñ" horiz-adv-x="1152" +d="M855 1119q-53 0 -88 23t-48.5 50.5t-31.5 50.5t-41 23q-36 0 -66.5 -39t-46.5 -98h-137q29 135 93 205t154 70q41 0 71.5 -15t47 -37t29 -43.5t26.5 -36.5t32 -15q34 0 65 39.5t47 101.5h144q-31 -139 -95 -209t-155 -70zM38 0l229 999h217l-31 -121q69 71 153 104.5 +t167 33.5q77 0 134.5 -23.5t91 -64t50 -95t16 -114.5t-15.5 -126l-137 -593h-217l135 586q12 52 14 90t-7.5 71.5t-39 50.5t-78.5 17q-110 0 -212.5 -83.5t-126.5 -187.5l-125 -544h-217z" /> + <glyph glyph-name="ograve" unicode="ò" horiz-adv-x="1125" +d="M636 1110l-221 303h219l153 -303h-151zM455 -20q-150 0 -251.5 72.5t-136.5 194.5t-1 269q32 136 117 248.5t213 180t271 67.5q113 0 200 -42.5t135 -115.5t65 -170.5t-11 -207.5q-24 -102 -80 -192.5t-133.5 -158t-178.5 -106.5t-209 -39zM473 166q73 0 135.5 28 +t107.5 77.5t75.5 111t47.5 133.5q17 62 13.5 117.5t-22.5 98.5t-65.5 68t-115.5 25q-143 0 -237 -99t-129 -250q-17 -62 -13 -118t22.5 -99t65 -68t115.5 -25z" /> + <glyph glyph-name="oacute" unicode="ó" horiz-adv-x="1125" +d="M591 1124l291 289h243l-364 -289h-170zM455 -20q-150 0 -251.5 72.5t-136.5 194.5t-1 269q32 136 117 248.5t213 180t271 67.5q113 0 200 -42.5t135 -115.5t65 -170.5t-11 -207.5q-24 -102 -80 -192.5t-133.5 -158t-178.5 -106.5t-209 -39zM473 166q73 0 135.5 28 +t107.5 77.5t75.5 111t47.5 133.5q17 62 13.5 117.5t-22.5 98.5t-65.5 68t-115.5 25q-143 0 -237 -99t-129 -250q-17 -62 -13 -118t22.5 -99t65 -68t115.5 -25z" /> + <glyph glyph-name="ocircumflex" unicode="ô" horiz-adv-x="1125" +d="M376 1098l400 353l240 -353h-174l-103 158l-177 -158h-186zM455 -20q-150 0 -251.5 72.5t-136.5 194.5t-1 269q32 136 117 248.5t213 180t271 67.5q113 0 200 -42.5t135 -115.5t65 -170.5t-11 -207.5q-24 -102 -80 -192.5t-133.5 -158t-178.5 -106.5t-209 -39zM473 166 +q73 0 135.5 28t107.5 77.5t75.5 111t47.5 133.5q17 62 13.5 117.5t-22.5 98.5t-65.5 68t-115.5 25q-143 0 -237 -99t-129 -250q-17 -62 -13 -118t22.5 -99t65 -68t115.5 -25z" /> + <glyph glyph-name="otilde" unicode="õ" horiz-adv-x="1125" +d="M840 1119q-53 0 -88 23t-48.5 50.5t-31.5 50.5t-41 23q-36 0 -66.5 -39t-46.5 -98h-137q29 135 93 205t154 70q41 0 71.5 -15t47 -37t29 -43.5t26.5 -36.5t32 -15q34 0 65 39.5t47 101.5h144q-31 -139 -95 -209t-155 -70zM455 -20q-150 0 -251.5 72.5t-136.5 194.5 +t-1 269q32 136 117 248.5t213 180t271 67.5q113 0 200 -42.5t135 -115.5t65 -170.5t-11 -207.5q-24 -102 -80 -192.5t-133.5 -158t-178.5 -106.5t-209 -39zM473 166q73 0 135.5 28t107.5 77.5t75.5 111t47.5 133.5q17 62 13.5 117.5t-22.5 98.5t-65.5 68t-115.5 25 +q-143 0 -237 -99t-129 -250q-17 -62 -13 -118t22.5 -99t65 -68t115.5 -25z" /> + <glyph glyph-name="odieresis" unicode="ö" horiz-adv-x="1125" +d="M450 1198l49 215h194l-49 -215h-194zM799 1198l49 215h194l-50 -215h-193zM455 -20q-150 0 -251.5 72.5t-136.5 194.5t-1 269q32 136 117 248.5t213 180t271 67.5q113 0 200 -42.5t135 -115.5t65 -170.5t-11 -207.5q-24 -102 -80 -192.5t-133.5 -158t-178.5 -106.5 +t-209 -39zM473 166q73 0 135.5 28t107.5 77.5t75.5 111t47.5 133.5q17 62 13.5 117.5t-22.5 98.5t-65.5 68t-115.5 25q-143 0 -237 -99t-129 -250q-17 -62 -13 -118t22.5 -99t65 -68t115.5 -25z" /> + <glyph glyph-name="divide" unicode="÷" horiz-adv-x="1179" +d="M473 855v242h244v-242h-244zM109 547v163h973v-163h-973zM473 143v242h244v-242h-244z" /> + <glyph glyph-name="oslash" unicode="ø" horiz-adv-x="1125" +d="M957 907q77 -74 103 -186.5t-4 -244.5q-24 -102 -80 -192.5t-133.5 -158t-178.5 -106.5t-209 -39q-124 0 -219 52l-26 -32h-121l72 88q-75 74 -100 185.5t5 242.5q32 136 117 248.5t213 180t271 67.5q123 0 215 -50l32 38h120zM283 476q-33 -143 14 -224l456 553 +q-43 20 -104 20q-143 0 -237 -99t-129 -250zM839 516q33 147 -16 228l-458 -556q44 -22 108 -22q73 0 135.5 28t107.5 77.5t75.5 111t47.5 133.5z" /> + <glyph glyph-name="ugrave" unicode="ù" horiz-adv-x="1151" +d="M645 1110l-221 303h219l153 -303h-151zM377 -23q-77 0 -134.5 25t-90.5 67t-49.5 99t-15 120t16.5 131l134 580h217l-137 -591q-13 -65 -13.5 -116.5t33.5 -83t104 -31.5q53 0 103.5 18t97 54.5t83 99.5t55.5 146l116 504h216l-229 -999h-212l27 125q-63 -69 -149 -108.5 +t-173 -39.5z" /> + <glyph glyph-name="uacute" unicode="ú" horiz-adv-x="1151" +d="M600 1124l291 289h243l-364 -289h-170zM377 -23q-77 0 -134.5 25t-90.5 67t-49.5 99t-15 120t16.5 131l134 580h217l-137 -591q-13 -65 -13.5 -116.5t33.5 -83t104 -31.5q53 0 103.5 18t97 54.5t83 99.5t55.5 146l116 504h216l-229 -999h-212l27 125q-63 -69 -149 -108.5 +t-173 -39.5z" /> + <glyph glyph-name="ucircumflex" unicode="û" horiz-adv-x="1151" +d="M385 1098l400 353l240 -353h-174l-103 158l-177 -158h-186zM377 -23q-77 0 -134.5 25t-90.5 67t-49.5 99t-15 120t16.5 131l134 580h217l-137 -591q-13 -65 -13.5 -116.5t33.5 -83t104 -31.5q53 0 103.5 18t97 54.5t83 99.5t55.5 146l116 504h216l-229 -999h-212l27 125 +q-63 -69 -149 -108.5t-173 -39.5z" /> + <glyph glyph-name="udieresis" unicode="ü" horiz-adv-x="1151" +d="M459 1198l49 215h194l-49 -215h-194zM808 1198l49 215h194l-50 -215h-193zM377 -23q-77 0 -134.5 25t-90.5 67t-49.5 99t-15 120t16.5 131l134 580h217l-137 -591q-13 -65 -13.5 -116.5t33.5 -83t104 -31.5q53 0 103.5 18t97 54.5t83 99.5t55.5 146l116 504h216 +l-229 -999h-212l27 125q-63 -69 -149 -108.5t-173 -39.5z" /> + <glyph glyph-name="yacute" unicode="ý" horiz-adv-x="1014" +d="M535 1124l291 289h243l-364 -289h-170zM-2 -430l287 450l-162 979h232l94 -732l436 732h239l-890 -1429h-236z" /> + <glyph glyph-name="thorn" unicode="þ" horiz-adv-x="1145" +d="M-63 -438l428 1851h204l-121 -509q126 116 308 116q103 0 177 -43.5t110 -117t44.5 -171.5t-19.5 -208q-33 -138 -104 -249.5t-182 -181t-240 -69.5q-94 0 -162 35.5t-107 95.5l-132 -549h-204zM519 163q133 0 227 100t131 256q17 66 14 123.5t-22.5 100t-63 67.5 +t-107.5 25q-134 0 -228.5 -100t-130.5 -255q-33 -140 10.5 -228.5t169.5 -88.5z" /> + <glyph glyph-name="ydieresis" unicode="ÿ" horiz-adv-x="1014" +d="M394 1198l49 215h194l-49 -215h-194zM743 1198l49 215h194l-50 -215h-193zM-2 -430l287 450l-162 979h232l94 -732l436 732h239l-890 -1429h-236z" /> + <glyph glyph-name="Amacron" unicode="Ā" horiz-adv-x="1332" +d="M638 1571l32 138h553l-32 -138h-553zM-88 0l880 1413h169l226 -1413h-238l-38 307h-572l-179 -307h-248zM461 502h420l-74 582z" /> + <glyph glyph-name="amacron" unicode="ā" +d="M1042 1296l-32 -138h-553l32 138h553zM901 999h217l-229 -999h-202l16 107q-126 -127 -314 -127q-82 0 -146 28t-103.5 78t-61.5 118t-20.5 148t19.5 168q32 137 103.5 248.5t182 181.5t237.5 70q93 0 164 -36.5t106 -102.5zM808 520q17 63 14 118.5t-20.5 97t-60 65.5 +t-105.5 24q-132 0 -223.5 -97.5t-124.5 -247.5q-18 -86 -11 -153.5t54.5 -108.5t129.5 -41q134 0 223.5 95t123.5 248z" /> + <glyph glyph-name="Abreve" unicode="Ă" horiz-adv-x="1332" +d="M925 1556q-157 0 -224.5 72t-36.5 198h156q-15 -70 16 -103t94 -33q70 0 127 39t71 97h157q-60 -270 -360 -270zM-88 0l880 1413h169l226 -1413h-238l-38 307h-572l-179 -307h-248zM461 502h420l-74 582z" /> + <glyph glyph-name="abreve" unicode="ă" +d="M744 1143q-157 0 -224.5 72t-36.5 198h156q-15 -70 16 -103t94 -33q70 0 127 39t71 97h157q-60 -270 -360 -270zM901 999h217l-229 -999h-202l16 107q-126 -127 -314 -127q-82 0 -146 28t-103.5 78t-61.5 118t-20.5 148t19.5 168q32 137 103.5 248.5t182 181.5t237.5 70 +q93 0 164 -36.5t106 -102.5zM808 520q17 63 14 118.5t-20.5 97t-60 65.5t-105.5 24q-132 0 -223.5 -97.5t-124.5 -247.5q-18 -86 -11 -153.5t54.5 -108.5t129.5 -41q134 0 223.5 95t123.5 248z" /> + <glyph glyph-name="Aogonek" unicode="Ą" horiz-adv-x="1332" +d="M1099 -246l99 -93q-99 -112 -232 -112q-99 0 -150.5 63t-29.5 162q11 47 40 88.5t65.5 69t63 43.5t48.5 25h-54l-38 307h-572l-179 -307h-248l880 1413h169l226 -1413h-73l76 -3q-16 -5 -46 -19.5t-81 -44t-92 -75.5t-53 -96q-17 -74 48 -74q70 0 133 66zM461 502h420 +l-74 582z" /> + <glyph glyph-name="aogonek" unicode="ą" horiz-adv-x="1075" +d="M1118 999l-229 -999h-152l76 -3q-16 -5 -46 -19.5t-81 -44t-92 -75.5t-53 -96q-17 -74 48 -74q70 0 133 66l99 -93q-99 -112 -232 -112q-99 0 -150.5 63t-29.5 162q12 51 46 96t74 72.5t66.5 42t40.5 19.5l51 -2l16 105q-126 -127 -314 -127q-82 0 -146 28t-103.5 78 +t-61.5 118t-20.5 148t19.5 168q32 137 103.5 248.5t182 181.5t237.5 70q93 0 164 -36.5t106 -102.5l31 118h217zM808 520q17 63 14 118.5t-20.5 97t-60 65.5t-105.5 24q-132 0 -223.5 -97.5t-124.5 -247.5q-18 -86 -11 -153.5t54.5 -108.5t129.5 -41q134 0 223.5 95 +t123.5 248z" /> + <glyph glyph-name="Cacute" unicode="Ć" horiz-adv-x="1430" +d="M840 1537l291 289h243l-364 -289h-170zM657 -20q-113 0 -204.5 27.5t-154 77.5t-104 118.5t-58.5 152t-14 177t26 194.5q27 115 75 219t121 194t164 155.5t208.5 103t248.5 37.5q214 0 355 -106.5t168 -299.5l-221 -65q-9 140 -96.5 207t-230.5 67q-115 0 -214 -44 +t-169.5 -120.5t-119 -172t-74.5 -205.5q-20 -86 -22 -160.5t17 -138.5t58 -109.5t106 -71.5t158 -26q299 0 473 282l187 -104q-125 -191 -301.5 -290t-381.5 -99z" /> + <glyph glyph-name="cacute" unicode="ć" horiz-adv-x="994" +d="M564 1124l291 289h243l-364 -289h-170zM429 -20q-78 0 -142 20.5t-107.5 57.5t-73 87t-42 110.5t-10.5 126.5t18 136q23 97 71.5 185t119 158.5t169 112.5t209.5 42q146 0 240.5 -79t120.5 -212l-214 -62q-2 76 -47 115.5t-120 39.5q-68 0 -126.5 -29t-100 -78t-70 -108 +t-43.5 -125q-16 -57 -13.5 -111t17.5 -96t57 -68t105 -26q83 0 155.5 48t110.5 126l176 -93q-79 -135 -199 -206.5t-261 -71.5z" /> + <glyph glyph-name="Cdotaccent" unicode="Ċ" horiz-adv-x="1430" +d="M856 1611l49 215h230l-49 -215h-230zM657 -20q-113 0 -204.5 27.5t-154 77.5t-104 118.5t-58.5 152t-14 177t26 194.5q27 115 75 219t121 194t164 155.5t208.5 103t248.5 37.5q214 0 355 -106.5t168 -299.5l-221 -65q-9 140 -96.5 207t-230.5 67q-115 0 -214 -44 +t-169.5 -120.5t-119 -172t-74.5 -205.5q-20 -86 -22 -160.5t17 -138.5t58 -109.5t106 -71.5t158 -26q299 0 473 282l187 -104q-125 -191 -301.5 -290t-381.5 -99z" /> + <glyph glyph-name="cdotaccent" unicode="ċ" horiz-adv-x="994" +d="M580 1198l49 215h230l-49 -215h-230zM429 -20q-78 0 -142 20.5t-107.5 57.5t-73 87t-42 110.5t-10.5 126.5t18 136q23 97 71.5 185t119 158.5t169 112.5t209.5 42q146 0 240.5 -79t120.5 -212l-214 -62q-2 76 -47 115.5t-120 39.5q-68 0 -126.5 -29t-100 -78t-70 -108 +t-43.5 -125q-16 -57 -13.5 -111t17.5 -96t57 -68t105 -26q83 0 155.5 48t110.5 126l176 -93q-79 -135 -199 -206.5t-261 -71.5z" /> + <glyph glyph-name="Ccaron" unicode="Č" horiz-adv-x="1430" +d="M947 1493l-245 332h176l102 -150l179 150h184zM657 -20q-113 0 -204.5 27.5t-154 77.5t-104 118.5t-58.5 152t-14 177t26 194.5q27 115 75 219t121 194t164 155.5t208.5 103t248.5 37.5q214 0 355 -106.5t168 -299.5l-221 -65q-9 140 -96.5 207t-230.5 67 +q-115 0 -214 -44t-169.5 -120.5t-119 -172t-74.5 -205.5q-20 -86 -22 -160.5t17 -138.5t58 -109.5t106 -71.5t158 -26q299 0 473 282l187 -104q-125 -191 -301.5 -290t-381.5 -99z" /> + <glyph glyph-name="ccaron" unicode="č" horiz-adv-x="994" +d="M671 1080l-245 332h176l102 -150l179 150h184zM429 -20q-78 0 -142 20.5t-107.5 57.5t-73 87t-42 110.5t-10.5 126.5t18 136q23 97 71.5 185t119 158.5t169 112.5t209.5 42q146 0 240.5 -79t120.5 -212l-214 -62q-2 76 -47 115.5t-120 39.5q-68 0 -126.5 -29t-100 -78 +t-70 -108t-43.5 -125q-16 -57 -13.5 -111t17.5 -96t57 -68t105 -26q83 0 155.5 48t110.5 126l176 -93q-79 -135 -199 -206.5t-261 -71.5z" /> + <glyph glyph-name="Dcaron" unicode="Ď" horiz-adv-x="1408" +d="M954 1493l-245 332h176l102 -150l179 150h184zM77 0l325 1413h389q355 0 500.5 -191.5t63.5 -545.5q-76 -325 -303 -500.5t-577 -175.5h-398zM348 206h137q251 0 423 126t234 395q58 252 -33.5 366.5t-356.5 114.5h-172z" /> + <glyph glyph-name="dcaron" unicode="ď" horiz-adv-x="1330" +d="M389 -20q-82 0 -146 28t-103.5 78t-61.5 118t-20.5 148t19.5 168q32 137 103.5 248.5t182 181.5t237.5 70q93 0 164 -36.5t106 -102.5l127 532h217l-325 -1413h-217l27 104q-127 -124 -310 -124zM1223 977l211 436h246l-321 -436h-136zM461 177q134 0 223.5 95t123.5 248 +q17 63 14 118.5t-20.5 97t-60 65.5t-105.5 24q-132 0 -223.5 -97.5t-124.5 -247.5q-18 -86 -11 -153.5t54.5 -108.5t129.5 -41z" /> + <glyph glyph-name="Dcroat" unicode="Đ" horiz-adv-x="1427" +d="M98 0l145 631h-112l36 163h113l143 619h383q353 0 502.5 -191.5t67.5 -545.5q-76 -324 -306.5 -500t-579.5 -176h-392zM353 197h145q97 0 184.5 19.5t167 60.5t142.5 102.5t110.5 150t72.5 197.5q56 248 -41.5 370t-363.5 122h-181l-98 -425h381l-37 -163h-381z" /> + <glyph glyph-name="dcroat" unicode="đ" +d="M1335 1295l-34 -149h-148l-264 -1146h-202l16 107q-126 -127 -314 -127q-82 0 -146 28t-103.5 78t-61.5 118t-20.5 148t19.5 168q32 137 103.5 248.5t182 181.5t237.5 70q93 0 164 -36.5t106 -102.5l63 265h-266l33 149h269l28 118h217l-27 -118h148zM808 520 +q17 63 14 118.5t-20.5 97t-60 65.5t-105.5 24q-132 0 -223.5 -97.5t-124.5 -247.5q-18 -86 -11 -153.5t54.5 -108.5t129.5 -41q134 0 223.5 95t123.5 248z" /> + <glyph glyph-name="Emacron" unicode="Ē" horiz-adv-x="1243" +d="M606 1571l32 138h553l-32 -138h-553zM77 0l325 1413h933l-47 -203h-708l-94 -402h645l-47 -202h-644l-91 -396h708l-48 -210h-932z" /> + <glyph glyph-name="emacron" unicode="ē" horiz-adv-x="1057" +d="M396 1158l32 138h553l-32 -138h-553zM445 -12q-81 0 -147 19.5t-111.5 54.5t-76.5 83.5t-44.5 107t-12.5 124.5t17 137q22 97 70.5 185t119 158.5t168.5 112.5t209 42q105 0 180.5 -31t116.5 -82t58.5 -122t14 -146t-23.5 -158q-8 -30 -17 -53h-693q-17 -109 31 -172 +t160 -63q90 0 157 23.5t132 79.5l126 -141q-102 -87 -206.5 -123t-227.5 -36zM312 579h490q19 128 -24 189t-157 61q-110 0 -190 -70t-119 -180z" /> + <glyph glyph-name="Edotaccent" unicode="Ė" horiz-adv-x="1243" +d="M777 1611l49 215h230l-49 -215h-230zM77 0l325 1413h933l-47 -203h-708l-94 -402h645l-47 -202h-644l-91 -396h708l-48 -210h-932z" /> + <glyph glyph-name="edotaccent" unicode="ė" horiz-adv-x="1057" +d="M567 1198l49 215h230l-49 -215h-230zM445 -12q-81 0 -147 19.5t-111.5 54.5t-76.5 83.5t-44.5 107t-12.5 124.5t17 137q22 97 70.5 185t119 158.5t168.5 112.5t209 42q105 0 180.5 -31t116.5 -82t58.5 -122t14 -146t-23.5 -158q-8 -30 -17 -53h-693q-17 -109 31 -172 +t160 -63q90 0 157 23.5t132 79.5l126 -141q-102 -87 -206.5 -123t-227.5 -36zM312 579h490q19 128 -24 189t-157 61q-110 0 -190 -70t-119 -180z" /> + <glyph glyph-name="Eogonek" unicode="Ę" horiz-adv-x="1243" +d="M1288 1210h-708l-94 -402h645l-47 -202h-644l-91 -396h708l-48 -210h-75l76 -3q-16 -5 -46 -19.5t-81 -44t-92 -75.5t-53 -96q-17 -74 48 -74q70 0 133 66l99 -93q-99 -112 -232 -112q-99 0 -150.5 63t-29.5 162q11 47 40 88.5t65.5 69t63 43.5t48.5 25h-746l325 1413 +h933z" /> + <glyph glyph-name="eogonek" unicode="ę" horiz-adv-x="1057" +d="M637 1012q105 0 180.5 -31t116.5 -82t58.5 -122t14 -146t-23.5 -158q-8 -30 -17 -53h-693q-17 -109 31 -172t160 -63q90 0 157 23.5t132 79.5l126 -141q-115 -98 -239 -133q-176 -89 -203 -205q-17 -74 48 -74q70 0 133 66l99 -93q-99 -112 -232 -112q-99 0 -150.5 63 +t-29.5 162q21 92 118 167q-92 3 -163 32.5t-114.5 78t-68.5 114t-24.5 141.5t17.5 160q22 97 70.5 185t119 158.5t168.5 112.5t209 42zM802 579q19 128 -24 189t-157 61q-110 0 -190 -70t-119 -180h490z" /> + <glyph glyph-name="Ecaron" unicode="Ě" horiz-adv-x="1243" +d="M868 1493l-245 332h176l102 -150l179 150h184zM77 0l325 1413h933l-47 -203h-708l-94 -402h645l-47 -202h-644l-91 -396h708l-48 -210h-932z" /> + <glyph glyph-name="ecaron" unicode="ě" horiz-adv-x="1057" +d="M658 1080l-245 332h176l102 -150l179 150h184zM445 -12q-81 0 -147 19.5t-111.5 54.5t-76.5 83.5t-44.5 107t-12.5 124.5t17 137q22 97 70.5 185t119 158.5t168.5 112.5t209 42q105 0 180.5 -31t116.5 -82t58.5 -122t14 -146t-23.5 -158q-8 -30 -17 -53h-693 +q-17 -109 31 -172t160 -63q90 0 157 23.5t132 79.5l126 -141q-102 -87 -206.5 -123t-227.5 -36zM312 579h490q19 128 -24 189t-157 61q-110 0 -190 -70t-119 -180z" /> + <glyph glyph-name="Gbreve" unicode="Ğ" horiz-adv-x="1526" +d="M1019 1556q-157 0 -224.5 72t-36.5 198h156q-15 -70 16 -103t94 -33q70 0 127 39t71 97h157q-60 -270 -360 -270zM657 -20q-113 0 -204.5 27.5t-154 77.5t-104 118.5t-58.5 152t-14 177t26 194.5q27 115 75 219t121 194t164 155.5t208.5 103t248.5 37.5q210 0 345 -106 +t176 -300l-212 -66q-20 139 -106 206t-225 67q-115 0 -214.5 -44t-170.5 -120t-120.5 -171t-74.5 -205q-20 -86 -22 -161.5t16.5 -141t57.5 -112.5t106 -73.5t157 -26.5q168 0 312.5 109t202.5 287l-324 -9l42 180h537l-172 -749h-179l35 208q-78 -105 -203.5 -166.5 +t-271.5 -61.5z" /> + <glyph glyph-name="gbreve" unicode="ğ" horiz-adv-x="1156" +d="M701 1143q-157 0 -224.5 72t-36.5 198h156q-15 -70 16 -103t94 -33q70 0 127 39t71 97h157q-60 -270 -360 -270zM882 -9q-46 -204 -187 -316t-352 -112q-285 0 -389 217l183 103q21 -62 79 -97.5t148 -35.5q117 0 198 68t110 191l28 111q-124 -125 -307 -125 +q-83 0 -147.5 28t-104 77.5t-62 116.5t-20.5 145.5t20 164.5q30 133 101 243.5t181.5 180t239.5 69.5q90 0 161 -36.5t107 -103.5l31 119h216zM464 191q132 0 221 94.5t124 241.5q16 60 13 114.5t-21 95.5t-60.5 65t-104.5 24q-132 0 -224 -97t-124 -242 +q-31 -129 11.5 -212.5t164.5 -83.5z" /> + <glyph glyph-name="Gdotaccent" unicode="Ġ" horiz-adv-x="1526" +d="M903 1611l49 215h230l-49 -215h-230zM657 -20q-113 0 -204.5 27.5t-154 77.5t-104 118.5t-58.5 152t-14 177t26 194.5q27 115 75 219t121 194t164 155.5t208.5 103t248.5 37.5q210 0 345 -106t176 -300l-212 -66q-20 139 -106 206t-225 67q-115 0 -214.5 -44t-170.5 -120 +t-120.5 -171t-74.5 -205q-20 -86 -22 -161.5t16.5 -141t57.5 -112.5t106 -73.5t157 -26.5q168 0 312.5 109t202.5 287l-324 -9l42 180h537l-172 -749h-179l35 208q-78 -105 -203.5 -166.5t-271.5 -61.5z" /> + <glyph glyph-name="gdotaccent" unicode="ġ" horiz-adv-x="1156" +d="M585 1198l49 215h230l-49 -215h-230zM882 -9q-46 -204 -187 -316t-352 -112q-285 0 -389 217l183 103q21 -62 79 -97.5t148 -35.5q117 0 198 68t110 191l28 111q-124 -125 -307 -125q-83 0 -147.5 28t-104 77.5t-62 116.5t-20.5 145.5t20 164.5q30 133 101 243.5 +t181.5 180t239.5 69.5q90 0 161 -36.5t107 -103.5l31 119h216zM464 191q132 0 221 94.5t124 241.5q16 60 13 114.5t-21 95.5t-60.5 65t-104.5 24q-132 0 -224 -97t-124 -242q-31 -129 11.5 -212.5t164.5 -83.5z" /> + <glyph glyph-name="Gcommaaccent" unicode="Ģ" horiz-adv-x="1526" +d="M657 -20q-113 0 -204.5 27.5t-154 77.5t-104 118.5t-58.5 152t-14 177t26 194.5q27 115 75 219t121 194t164 155.5t208.5 103t248.5 37.5q210 0 345 -106t176 -300l-212 -66q-20 139 -106 206t-225 67q-115 0 -214.5 -44t-170.5 -120t-120.5 -171t-74.5 -205 +q-20 -86 -22 -161.5t16.5 -141t57.5 -112.5t106 -73.5t157 -26.5q168 0 312.5 109t202.5 287l-324 -9l42 180h537l-172 -749h-179l35 208q-78 -105 -203.5 -166.5t-271.5 -61.5zM308 -455l212 347h245l-322 -347h-135z" /> + <glyph glyph-name="gcommaaccent" unicode="ģ" horiz-adv-x="1060" +d="M962 1431l-212 -310h-245l322 310h135zM882 -9q-46 -204 -187 -316t-352 -112q-285 0 -389 217l183 103q21 -62 79 -97.5t148 -35.5q117 0 198 68t110 191l28 111q-124 -125 -307 -125q-83 0 -147.5 28t-104 77.5t-62 116.5t-20.5 145.5t20 164.5q30 133 101 243.5 +t181.5 180t239.5 69.5q90 0 161 -36.5t107 -103.5l31 119h216zM464 191q132 0 221 94.5t124 241.5q16 60 13 114.5t-21 95.5t-60.5 65t-104.5 24q-132 0 -224 -97t-124 -242q-31 -129 11.5 -212.5t164.5 -83.5z" /> + <glyph glyph-name="Hbar" unicode="Ħ" horiz-adv-x="1480" +d="M1550 1178l-29 -127h-105l-242 -1051h-225l139 606h-648l-139 -606h-224l242 1051h-107l29 127h107l54 235h225l-55 -235h649l54 235h224l-54 -235h105zM1135 808l56 243h-648l-57 -243h649z" /> + <glyph glyph-name="hbar" unicode="ħ" horiz-adv-x="1151" +d="M776 1016q76 0 133 -23.5t90.5 -63.5t50 -94.5t16 -114t-15.5 -124.5l-137 -596h-218l135 586q13 65 14.5 116t-29 82.5t-94.5 31.5q-112 0 -215.5 -85.5t-127.5 -192.5l-124 -538h-216l257 1115h-156l33 149h158l34 149h216l-36 -149h263l-34 -149h-264l-57 -239 +q70 72 155.5 106t168.5 34z" /> + <glyph glyph-name="Itilde" unicode="Ĩ" horiz-adv-x="607" +d="M678 1532q-53 0 -88 23t-48.5 50.5t-31.5 50.5t-41 23q-36 0 -66.5 -39t-46.5 -98h-137q29 135 93 205t154 70q41 0 71.5 -15t47 -36.5t29 -43.5t26.5 -37t32 -15q34 0 65 39.5t47 101.5h144q-31 -139 -95 -209t-155 -70zM77 0l325 1413h225l-326 -1413h-224z" /> + <glyph glyph-name="itilde" unicode="ĩ" horiz-adv-x="506" +d="M532 1119q-53 0 -88 23t-48.5 50.5t-31.5 50.5t-41 23q-36 0 -66.5 -39t-46.5 -98h-137q29 135 93 205t154 70q41 0 71.5 -15t47 -37t29 -43.5t26.5 -36.5t32 -15q34 0 65 39.5t47 101.5h144q-31 -139 -95 -209t-155 -70zM38 0l229 999h201l-229 -999h-201z" /> + <glyph glyph-name="Imacron" unicode="Ī" horiz-adv-x="607" +d="M274 1571l32 138h553l-32 -138h-553zM77 0l325 1413h225l-326 -1413h-224z" /> + <glyph glyph-name="imacron" unicode="ī" horiz-adv-x="506" +d="M128 1158l32 138h553l-32 -138h-553zM38 0l229 999h201l-229 -999h-201z" /> + <glyph glyph-name="Iogonek" unicode="Į" horiz-adv-x="607" +d="M78 -312q70 0 133 66l99 -93q-99 -112 -232 -112q-99 0 -150.5 63t-29.5 162q11 47 40 88.5t65.5 69t63 43.5t48.5 25h-38l325 1413h225l-326 -1413h-75l76 -3q-16 -5 -46 -19.5t-81 -44t-92 -75.5t-53 -96q-17 -74 48 -74z" /> + <glyph glyph-name="iogonek" unicode="į" horiz-adv-x="506" +d="M348 1413h230l-49 -215h-230zM468 999l-229 -999h-75l76 -3q-16 -5 -46 -19.5t-81 -44t-92 -75.5t-53 -96q-17 -74 48 -74q70 0 133 66l99 -93q-99 -112 -232 -112q-99 0 -150.5 63t-29.5 162q11 47 40 88.5t65.5 69t63 43.5t48.5 25h-15l229 999h201z" /> + <glyph glyph-name="Idotaccent" unicode="İ" horiz-adv-x="607" +d="M445 1611l49 215h230l-49 -215h-230zM77 0l325 1413h225l-326 -1413h-224z" /> + <glyph glyph-name="dotlessi" unicode="ı" horiz-adv-x="506" +d="M38 0l229 999h201l-229 -999h-201z" /> + <glyph glyph-name="IJ" unicode="IJ" horiz-adv-x="1740" +d="M77 0l325 1413h225l-326 -1413h-224zM1005 -20q-104 0 -183 37t-123 100t-60 145t-2 174l220 7q-10 -53 -4.5 -100t23 -82t56.5 -55.5t95 -20.5q75 0 131 23t93 68.5t60.5 100.5t41.5 131l162 702h-532l46 203h757l-211 -915q-119 -518 -570 -518z" /> + <glyph glyph-name="Kcommaaccent" unicode="Ķ" horiz-adv-x="1478" +d="M77 0l325 1413h225l-179 -766l894 766h302l-690 -572l376 -841h-269l-289 693l-383 -319l-88 -374h-224zM268 -455l212 347h245l-322 -347h-135z" /> + <glyph glyph-name="kcommaaccent" unicode="ķ" horiz-adv-x="1095" +d="M39 0l326 1413h215l-204 -868l504 454h280l-448 -381l262 -618h-248l-184 484l-218 -191l-70 -293h-215zM150 -455l212 347h245l-322 -347h-135z" /> + <glyph glyph-name="kgreenlandic" unicode="ĸ" horiz-adv-x="1093" +d="M38 0l229 999h214l-106 -449l503 449h280l-448 -381l262 -618h-249l-183 483l-219 -191l-69 -292h-214z" /> + <glyph glyph-name="Lacute" unicode="Ĺ" horiz-adv-x="1055" +d="M437 1537l291 289h243l-364 -289h-170zM77 0l325 1413h225l-278 -1203h604l-48 -210h-828z" /> + <glyph glyph-name="lacute" unicode="ĺ" horiz-adv-x="556" +d="M392 1537l291 289h243l-364 -289h-170zM239 -20q-212 0 -159 229l278 1204h215l-275 -1184q-7 -34 6 -47t50 -13q11 0 75 11l-29 -182q-88 -18 -161 -18z" /> + <glyph glyph-name="Lcommaaccent" unicode="Ļ" horiz-adv-x="1055" +d="M77 0l325 1413h225l-278 -1203h604l-48 -210h-828zM79 -455l212 347h245l-322 -347h-135z" /> + <glyph glyph-name="lcommaaccent" unicode="ļ" horiz-adv-x="556" +d="M239 -20q-212 0 -159 229l278 1204h215l-275 -1184q-7 -34 6 -47t50 -13q11 0 75 11l-29 -182q-88 -18 -161 -18zM-105 -455l212 347h245l-322 -347h-135z" /> + <glyph glyph-name="Lcaron" unicode="Ľ" horiz-adv-x="1057" +d="M77 0l325 1413h225l-278 -1203h604l-48 -210h-828zM757 977l211 436h246l-321 -436h-136z" /> + <glyph glyph-name="lcaron" unicode="ľ" horiz-adv-x="712" +d="M239 -20q-212 0 -159 229l278 1204h215l-275 -1184q-12 -58 51 -58q19 0 80 9l-29 -182q-88 -18 -161 -18zM605 977l211 436h246l-321 -436h-136z" /> + <glyph glyph-name="Lslash" unicode="Ł" horiz-adv-x="1085" +d="M379 210h604l-48 -210h-828l101 438l-205 -134l61 229l195 129l173 751h225l-133 -577l306 202l-63 -234l-295 -193z" /> + <glyph glyph-name="lslash" unicode="ł" horiz-adv-x="556" +d="M395 647l-97 -418q-7 -34 6 -47t50 -13q11 0 75 11l-29 -182q-88 -18 -161 -18q-212 0 -159 229l55 238l-131 -101l45 214l136 104l173 749h215l-128 -549l187 143l-44 -212z" /> + <glyph glyph-name="Nacute" unicode="Ń" horiz-adv-x="1443" +d="M847 1537l291 289h243l-364 -289h-170zM77 0l325 1413h241l354 -1064l249 1064h216l-325 -1413h-244l-351 1066l-248 -1066h-217z" /> + <glyph glyph-name="nacute" unicode="ń" horiz-adv-x="1152" +d="M606 1124l291 289h243l-364 -289h-170zM38 0l229 999h217l-31 -121q69 71 153 104.5t167 33.5q77 0 134.5 -23.5t91 -64t50 -95t16 -114.5t-15.5 -126l-137 -593h-217l135 586q12 52 14 90t-7.5 71.5t-39 50.5t-78.5 17q-110 0 -212.5 -83.5t-126.5 -187.5l-125 -544 +h-217z" /> + <glyph glyph-name="Ncommaaccent" unicode="Ņ" horiz-adv-x="1443" +d="M77 0l325 1413h241l354 -1064l249 1064h216l-325 -1413h-244l-351 1066l-248 -1066h-217zM261 -455l212 347h245l-322 -347h-135z" /> + <glyph glyph-name="ncommaaccent" unicode="ņ" horiz-adv-x="1152" +d="M38 0l229 999h217l-31 -121q69 71 153 104.5t167 33.5q77 0 134.5 -23.5t91 -64t50 -95t16 -114.5t-15.5 -126l-137 -593h-217l135 586q12 52 14 90t-7.5 71.5t-39 50.5t-78.5 17q-110 0 -212.5 -83.5t-126.5 -187.5l-125 -544h-217zM116 -455l212 347h245l-322 -347 +h-135z" /> + <glyph glyph-name="Ncaron" unicode="Ň" horiz-adv-x="1443" +d="M954 1493l-245 332h176l102 -150l179 150h184zM77 0l325 1413h241l354 -1064l249 1064h216l-325 -1413h-244l-351 1066l-248 -1066h-217z" /> + <glyph glyph-name="ncaron" unicode="ň" horiz-adv-x="1152" +d="M713 1080l-245 332h176l102 -150l179 150h184zM38 0l229 999h217l-31 -121q69 71 153 104.5t167 33.5q77 0 134.5 -23.5t91 -64t50 -95t16 -114.5t-15.5 -126l-137 -593h-217l135 586q12 52 14 90t-7.5 71.5t-39 50.5t-78.5 17q-110 0 -212.5 -83.5t-126.5 -187.5 +l-125 -544h-217z" /> + <glyph glyph-name="Eng" unicode="Ŋ" horiz-adv-x="1442" +d="M629 -369l28 148q121 -6 196.5 48.5t60.5 127.5l-372 1115l-248 -1070h-217l325 1412h241l353 -1068l250 1068h215l-329 -1421q-13 -54 -29 -99.5t-47.5 -96t-71.5 -85t-102 -57t-139 -22.5h-114z" /> + <glyph glyph-name="eng" unicode="ŋ" horiz-adv-x="1145" +d="M409 -369l42 179h64q136 0 176 180l137 597q13 66 15 118t-29 84t-96 32q-113 0 -216.5 -84t-128.5 -191l-125 -546h-210l229 999h211l-33 -129q68 74 154 110t170 36q76 0 133 -23.5t90 -64t49 -95t15 -114.5t-16 -125l-156 -674q-5 -25 -10 -42.5t-18 -50t-29 -56 +t-44 -52t-62 -46t-85 -30t-111 -12.5h-116z" /> + <glyph glyph-name="Omacron" unicode="Ō" horiz-adv-x="1524" +d="M732 1571l32 138h553l-32 -138h-553zM654 -20q-113 0 -204 27.5t-153 77.5t-103.5 119t-58.5 152.5t-14 177t26 193.5q27 115 75 218t121.5 193t164.5 155.5t208.5 103t248.5 37.5q113 0 204 -27.5t153 -78t103.5 -119t58.5 -152.5t14.5 -177t-25.5 -193 +q-27 -115 -75.5 -218.5t-121.5 -193t-164 -155t-208.5 -103t-249.5 -37.5zM674 180q117 0 216 44t169 121.5t117 173.5t73 208q19 82 22 155t-14 138t-54 111.5t-103.5 74t-156.5 27.5q-93 0 -175.5 -29.5t-145 -80t-113.5 -120.5t-84.5 -148.5t-53.5 -167.5 +q-19 -83 -22 -155.5t14 -138t54 -112t102.5 -74t154.5 -27.5z" /> + <glyph glyph-name="omacron" unicode="ō" horiz-adv-x="1125" +d="M436 1158l32 138h553l-32 -138h-553zM455 -20q-150 0 -251.5 72.5t-136.5 194.5t-1 269q32 136 117 248.5t213 180t271 67.5q113 0 200 -42.5t135 -115.5t65 -170.5t-11 -207.5q-24 -102 -80 -192.5t-133.5 -158t-178.5 -106.5t-209 -39zM473 166q73 0 135.5 28 +t107.5 77.5t75.5 111t47.5 133.5q17 62 13.5 117.5t-22.5 98.5t-65.5 68t-115.5 25q-143 0 -237 -99t-129 -250q-17 -62 -13 -118t22.5 -99t65 -68t115.5 -25z" /> + <glyph glyph-name="Ohungarumlaut" unicode="Ő" horiz-adv-x="1524" +d="M704 1508l296 318h214l-341 -318h-169zM1047 1508l296 318h243l-371 -318h-168zM654 -20q-113 0 -204 27.5t-153 77.5t-103.5 119t-58.5 152.5t-14 177t26 193.5q27 115 75 218t121.5 193t164.5 155.5t208.5 103t248.5 37.5q113 0 204 -27.5t153 -78t103.5 -119 +t58.5 -152.5t14.5 -177t-25.5 -193q-27 -115 -75.5 -218.5t-121.5 -193t-164 -155t-208.5 -103t-249.5 -37.5zM674 180q117 0 216 44t169 121.5t117 173.5t73 208q19 82 22 155t-14 138t-54 111.5t-103.5 74t-156.5 27.5q-93 0 -175.5 -29.5t-145 -80t-113.5 -120.5 +t-84.5 -148.5t-53.5 -167.5q-19 -83 -22 -155.5t14 -138t54 -112t102.5 -74t154.5 -27.5z" /> + <glyph glyph-name="ohungarumlaut" unicode="ő" horiz-adv-x="1125" +d="M408 1095l296 318h214l-341 -318h-169zM751 1095l296 318h243l-371 -318h-168zM455 -20q-150 0 -251.5 72.5t-136.5 194.5t-1 269q32 136 117 248.5t213 180t271 67.5q113 0 200 -42.5t135 -115.5t65 -170.5t-11 -207.5q-24 -102 -80 -192.5t-133.5 -158t-178.5 -106.5 +t-209 -39zM473 166q73 0 135.5 28t107.5 77.5t75.5 111t47.5 133.5q17 62 13.5 117.5t-22.5 98.5t-65.5 68t-115.5 25q-143 0 -237 -99t-129 -250q-17 -62 -13 -118t22.5 -99t65 -68t115.5 -25z" /> + <glyph glyph-name="OE" unicode="Œ" horiz-adv-x="2251" +d="M656 -20q-113 0 -204.5 27.5t-154 77.5t-104 119t-58.5 152.5t-14 177t26 193.5q33 144 102 269t170 224.5t242 156.5t305 57q154 0 254.5 -55.5t147.5 -154.5l48 189h927l-47 -203h-703l-93 -402h644l-46 -202h-645l-91 -396h703l-48 -210h-927l44 174 +q-186 -194 -478 -194zM678 189q116 0 215.5 43t170 118t119.5 170.5t74 206.5q19 82 21 154.5t-17 136t-57.5 109t-105 71.5t-156.5 26q-117 0 -216.5 -43t-170.5 -118.5t-119.5 -170t-73.5 -205.5q-19 -82 -20.5 -154.5t16.5 -136t57 -109t105.5 -72t157.5 -26.5z" /> + <glyph glyph-name="oe" unicode="œ" horiz-adv-x="1818" +d="M454 -20q-113 0 -200 42.5t-135 115.5t-64.5 170.5t11.5 207.5q47 208 215.5 352t384.5 144q121 0 207 -50.5t129 -132.5q166 183 389 183q96 0 169 -30t115 -81.5t63.5 -120.5t20.5 -145t-20 -158q-3 -14 -19 -59h-690q-15 -104 35.5 -165.5t161.5 -61.5q163 0 296 114 +l129 -147q-201 -170 -444 -170q-128 0 -215 50t-126 129q-174 -187 -413 -187zM467 165q144 0 237.5 98t129.5 253q32 139 -10 224t-174 85q-144 0 -237.5 -98t-129.5 -253q-17 -64 -14.5 -120.5t21.5 -98.5t64.5 -66t112.5 -24zM1069 579h484q16 126 -26.5 186t-152.5 60 +q-109 0 -188 -69.5t-117 -176.5z" /> + <glyph glyph-name="Racute" unicode="Ŕ" horiz-adv-x="1252" +d="M745 1537l291 289h243l-364 -289h-170zM75 -2l327 1415h435q202 0 314.5 -117t68.5 -312q-30 -126 -128 -220t-234 -131l236 -635h-242l-208 615h-202l-143 -615h-224zM487 801h232q108 5 186.5 64t100.5 156q20 90 -33.5 140.5t-167.5 50.5h-223z" /> + <glyph glyph-name="racute" unicode="ŕ" horiz-adv-x="808" +d="M455 1124l291 289h243l-364 -289h-170zM38 0l229 999h207l-34 -162q55 93 131.5 135t150.5 42q54 0 106.5 -17t85.5 -48l-122 -168q-59 34 -121 34q-107 0 -194.5 -97.5t-124.5 -260.5l-105 -457h-209z" /> + <glyph glyph-name="Rcommaaccent" unicode="Ŗ" horiz-adv-x="1252" +d="M75 -2l327 1415h435q202 0 314.5 -117t68.5 -312q-30 -126 -128 -220t-234 -131l236 -635h-242l-208 615h-202l-143 -615h-224zM487 801h232q108 5 186.5 64t100.5 156q20 90 -33.5 140.5t-167.5 50.5h-223zM228 -455l212 347h245l-322 -347h-135z" /> + <glyph glyph-name="rcommaaccent" unicode="ŗ" horiz-adv-x="808" +d="M38 0l229 999h207l-34 -162q55 93 131.5 135t150.5 42q54 0 106.5 -17t85.5 -48l-122 -168q-59 34 -121 34q-107 0 -194.5 -97.5t-124.5 -260.5l-105 -457h-209zM-201 -455l212 347h245l-322 -347h-135z" /> + <glyph glyph-name="Rcaron" unicode="Ř" horiz-adv-x="1252" +d="M852 1493l-245 332h176l102 -150l179 150h184zM75 -2l327 1415h435q202 0 314.5 -117t68.5 -312q-30 -126 -128 -220t-234 -131l236 -635h-242l-208 615h-202l-143 -615h-224zM487 801h232q108 5 186.5 64t100.5 156q20 90 -33.5 140.5t-167.5 50.5h-223z" /> + <glyph glyph-name="rcaron" unicode="ř" horiz-adv-x="808" +d="M562 1080l-245 332h176l102 -150l179 150h184zM38 0l229 999h207l-34 -162q55 93 131.5 135t150.5 42q54 0 106.5 -17t85.5 -48l-122 -168q-59 34 -121 34q-107 0 -194.5 -97.5t-124.5 -260.5l-105 -457h-209z" /> + <glyph glyph-name="Sacute" unicode="Ś" horiz-adv-x="1129" +d="M687 1537l291 289h243l-364 -289h-170zM510 -16q-98 0 -183.5 27t-151.5 77.5t-104 130t-38 178.5l228 39q0 -119 73 -182.5t199 -63.5q127 0 204 62.5t77 165.5q0 61 -30 108.5t-77.5 79.5t-105.5 61t-116 61t-105.5 71t-77.5 99.5t-30 138.5q0 173 133 285t329 112 +q149 0 261.5 -65.5t152.5 -183.5l-191 -92q-20 70 -82.5 110.5t-142.5 40.5q-93 0 -162.5 -53.5t-69.5 -138.5q0 -51 30 -93t77.5 -72.5t105.5 -60t116 -64.5t105.5 -77t77.5 -107t30 -145q0 -129 -72 -232.5t-193 -160t-267 -56.5z" /> + <glyph glyph-name="sacute" unicode="ś" horiz-adv-x="897" +d="M465 1124l291 289h243l-364 -289h-170zM369 -20q-159 0 -262 82.5t-115 196.5l184 61q7 -66 58.5 -112.5t139.5 -46.5q89 0 144.5 47.5t55.5 108.5q0 37 -23.5 62t-61 39.5t-82.5 27.5t-90.5 31t-83 43t-61 70.5t-23.5 107.5q0 144 110 230t272 86q131 0 227.5 -58.5 +t128.5 -156.5l-178 -73q-17 56 -64.5 88t-120.5 32q-74 0 -120.5 -33t-46.5 -88q0 -35 23.5 -60t61.5 -40.5t84 -29.5t91.5 -33t83.5 -46t61.5 -74t23.5 -111q0 -147 -121 -249t-296 -102z" /> + <glyph glyph-name="Scedilla" unicode="Ş" horiz-adv-x="1129" +d="M500 1052q0 -51 30 -93t77.5 -72.5t105.5 -60t116 -64.5t105.5 -77t77.5 -107t30 -145q0 -129 -72 -232.5t-193 -160t-267 -56.5h-7l-93 -91q90 -10 128.5 -67t19.5 -143q-20 -84 -93 -142t-165 -58q-66 0 -113 40t-59 97l130 37q3 -46 52 -46q43 0 77.5 30t45.5 74 +q9 41 -28 68t-112 27h-69l152 188q-154 32 -248.5 135.5t-94.5 263.5l228 39q0 -119 73 -182.5t199 -63.5q127 0 204 62.5t77 165.5q0 61 -30 108.5t-77.5 79.5t-105.5 61t-116 61t-105.5 71t-77.5 99.5t-30 138.5q0 173 133 285t329 112q149 0 261.5 -65.5t152.5 -183.5 +l-191 -92q-20 70 -82.5 110.5t-142.5 40.5q-93 0 -162.5 -53.5t-69.5 -138.5z" /> + <glyph glyph-name="scedilla" unicode="ş" horiz-adv-x="897" +d="M357 725q0 -35 23.5 -60t61.5 -40.5t84 -29.5t91.5 -33t83.5 -46t61.5 -74t23.5 -111q0 -133 -101 -231t-255 -116l-92 -91q90 -10 128.5 -67t19.5 -143q-20 -84 -93 -142t-165 -58q-66 0 -113 40t-59 97l130 37q3 -46 52 -46q43 0 77.5 30t45.5 74q9 41 -28 68t-112 27 +h-69l142 176q-129 19 -210.5 96.5t-91.5 176.5l184 61q7 -66 58.5 -112.5t139.5 -46.5q89 0 144.5 47.5t55.5 108.5q0 37 -23.5 62t-61 39.5t-82.5 27.5t-90.5 31t-83 43t-61 70.5t-23.5 107.5q0 144 110 230t272 86q131 0 227.5 -58.5t128.5 -156.5l-178 -73 +q-17 56 -64.5 88t-120.5 32q-74 0 -120.5 -33t-46.5 -88z" /> + <glyph glyph-name="Scaron" unicode="Š" horiz-adv-x="1129" +d="M794 1493l-245 332h176l102 -150l179 150h184zM510 -16q-98 0 -183.5 27t-151.5 77.5t-104 130t-38 178.5l228 39q0 -119 73 -182.5t199 -63.5q127 0 204 62.5t77 165.5q0 61 -30 108.5t-77.5 79.5t-105.5 61t-116 61t-105.5 71t-77.5 99.5t-30 138.5q0 173 133 285 +t329 112q149 0 261.5 -65.5t152.5 -183.5l-191 -92q-20 70 -82.5 110.5t-142.5 40.5q-93 0 -162.5 -53.5t-69.5 -138.5q0 -51 30 -93t77.5 -72.5t105.5 -60t116 -64.5t105.5 -77t77.5 -107t30 -145q0 -129 -72 -232.5t-193 -160t-267 -56.5z" /> + <glyph glyph-name="scaron" unicode="š" horiz-adv-x="897" +d="M572 1080l-245 332h176l102 -150l179 150h184zM369 -20q-159 0 -262 82.5t-115 196.5l184 61q7 -66 58.5 -112.5t139.5 -46.5q89 0 144.5 47.5t55.5 108.5q0 37 -23.5 62t-61 39.5t-82.5 27.5t-90.5 31t-83 43t-61 70.5t-23.5 107.5q0 144 110 230t272 86 +q131 0 227.5 -58.5t128.5 -156.5l-178 -73q-17 56 -64.5 88t-120.5 32q-74 0 -120.5 -33t-46.5 -88q0 -35 23.5 -60t61.5 -40.5t84 -29.5t91.5 -33t83.5 -46t61.5 -74t23.5 -111q0 -147 -121 -249t-296 -102z" /> + <glyph glyph-name="uni0162" unicode="Ţ" horiz-adv-x="1197" +d="M371 0l280 1216h-453l46 197h1131l-46 -197h-453l-280 -1216h-225zM339 -517q-66 0 -113 40t-59 97l130 37q3 -46 52 -46q43 0 77.5 30t45.5 74q9 41 -28 68t-112 27h-69l152 188h141l-107 -105q90 -10 128.5 -67t19.5 -143q-20 -84 -93 -142t-165 -58z" /> + <glyph glyph-name="uni0163" unicode="ţ" horiz-adv-x="732" +d="M473 820l-122 -527q-30 -127 82 -127q61 0 142 37l-34 -199q-47 -17 -122 -22l-90 -89q90 -10 128.5 -67t19.5 -143q-20 -84 -93 -142t-165 -58q-66 0 -113 40t-59 97l130 37q3 -46 52 -46q43 0 77.5 30t45.5 74q9 41 -28 68t-112 27h-69l145 180q-97 24 -135 101 +t-11 191l124 538h-161l41 179h164l54 241l242 163l-92 -404h259l-41 -179h-259z" /> + <glyph glyph-name="Tcaron" unicode="Ť" horiz-adv-x="1197" +d="M832 1493l-245 332h176l102 -150l179 150h184zM371 0l280 1216h-453l46 197h1131l-46 -197h-453l-280 -1216h-225z" /> + <glyph glyph-name="tcaron" unicode="ť" horiz-adv-x="732" +d="M659 1132l230 429h240l-339 -429h-131zM362 -20q-97 0 -155 40.5t-70.5 107.5t5.5 154l121 526h-161l44 191h164l54 241l242 163l-92 -404h259l-44 -191h-259l-125 -546q-13 -55 4.5 -74t57.5 -19q48 0 90.5 8.5t60.5 17.5l19 9l-39 -188q-63 -36 -176 -36z" /> + <glyph glyph-name="Tbar" unicode="Ŧ" horiz-adv-x="1197" +d="M1329 1216h-453l-100 -434h205l-34 -149h-205l-146 -633h-225l146 633h-204l33 149h205l100 434h-453l46 197h1131z" /> + <glyph glyph-name="tbar" unicode="ŧ" horiz-adv-x="732" +d="M732 820h-259l-57 -245h265l-34 -149h-265l-31 -133q-30 -127 82 -127q61 0 142 37l-34 -199q-65 -24 -164 -24q-145 0 -206 82t-29 220l33 144h-162l33 149h164l56 245h-161l41 179h164l54 241l242 163l-92 -404h259z" /> + <glyph glyph-name="Utilde" unicode="Ũ" horiz-adv-x="1372" +d="M1058 1532q-53 0 -88 23t-48.5 50.5t-31.5 50.5t-41 23q-36 0 -66.5 -39t-46.5 -98h-137q29 135 93 205t154 70q41 0 71.5 -15t47 -36.5t29 -43.5t26.5 -37t32 -15q34 0 65 39.5t47 101.5h144q-31 -139 -95 -209t-155 -70zM578 -20q-111 0 -194 28t-133 78.5t-77 121.5 +t-25 157t23 185l199 863h224l-196 -848q-26 -117 -22.5 -199t59 -126t167.5 -44q172 0 266 100t137 288l192 829h224l-200 -871q-61 -265 -221 -413.5t-423 -148.5z" /> + <glyph glyph-name="utilde" unicode="ũ" horiz-adv-x="1151" +d="M849 1119q-53 0 -88 23t-48.5 50.5t-31.5 50.5t-41 23q-36 0 -66.5 -39t-46.5 -98h-137q29 135 93 205t154 70q41 0 71.5 -15t47 -37t29 -43.5t26.5 -36.5t32 -15q34 0 65 39.5t47 101.5h144q-31 -139 -95 -209t-155 -70zM377 -23q-77 0 -134.5 25t-90.5 67t-49.5 99 +t-15 120t16.5 131l134 580h217l-137 -591q-13 -65 -13.5 -116.5t33.5 -83t104 -31.5q53 0 103.5 18t97 54.5t83 99.5t55.5 146l116 504h216l-229 -999h-212l27 125q-63 -69 -149 -108.5t-173 -39.5z" /> + <glyph glyph-name="Umacron" unicode="Ū" horiz-adv-x="1372" +d="M654 1571l32 138h553l-32 -138h-553zM578 -20q-111 0 -194 28t-133 78.5t-77 121.5t-25 157t23 185l199 863h224l-196 -848q-26 -117 -22.5 -199t59 -126t167.5 -44q172 0 266 100t137 288l192 829h224l-200 -871q-61 -265 -221 -413.5t-423 -148.5z" /> + <glyph glyph-name="umacron" unicode="ū" horiz-adv-x="1151" +d="M445 1158l32 138h553l-32 -138h-553zM377 -23q-77 0 -134.5 25t-90.5 67t-49.5 99t-15 120t16.5 131l134 580h217l-137 -591q-13 -65 -13.5 -116.5t33.5 -83t104 -31.5q53 0 103.5 18t97 54.5t83 99.5t55.5 146l116 504h216l-229 -999h-212l27 125q-63 -69 -149 -108.5 +t-173 -39.5z" /> + <glyph glyph-name="Uring" unicode="Ů" horiz-adv-x="1372" +d="M924 1485q-100 0 -152.5 72.5t-27.5 170.5q21 84 94 142.5t160 58.5q98 0 152 -72t29 -169q-22 -86 -95.5 -144.5t-159.5 -58.5zM940 1607q51 0 86 38t37 86q1 38 -21.5 59t-59.5 21q-54 0 -86.5 -36t-34.5 -86q-1 -39 20 -60.5t59 -21.5zM578 -20q-111 0 -194 28 +t-133 78.5t-77 121.5t-25 157t23 185l199 863h224l-196 -848q-26 -117 -22.5 -199t59 -126t167.5 -44q172 0 266 100t137 288l192 829h224l-200 -871q-61 -265 -221 -413.5t-423 -148.5z" /> + <glyph glyph-name="uring" unicode="ů" horiz-adv-x="1151" +d="M715 1072q-100 0 -152.5 72.5t-27.5 170.5q21 84 94 142.5t160 58.5q98 0 152 -72t29 -169q-22 -86 -95.5 -144.5t-159.5 -58.5zM731 1194q51 0 86 38t37 86q1 38 -21.5 59t-59.5 21q-54 0 -86.5 -36t-34.5 -86q-1 -39 20.5 -60.5t58.5 -21.5zM377 -23q-77 0 -134.5 25 +t-90.5 67t-49.5 99t-15 120t16.5 131l134 580h217l-137 -591q-13 -65 -13.5 -116.5t33.5 -83t104 -31.5q53 0 103.5 18t97 54.5t83 99.5t55.5 146l116 504h216l-229 -999h-212l27 125q-63 -69 -149 -108.5t-173 -39.5z" /> + <glyph glyph-name="Uhungarumlaut" unicode="Ű" horiz-adv-x="1372" +d="M626 1508l296 318h214l-341 -318h-169zM969 1508l296 318h243l-371 -318h-168zM578 -20q-111 0 -194 28t-133 78.5t-77 121.5t-25 157t23 185l199 863h224l-196 -848q-26 -117 -22.5 -199t59 -126t167.5 -44q172 0 266 100t137 288l192 829h224l-200 -871 +q-61 -265 -221 -413.5t-423 -148.5z" /> + <glyph glyph-name="uhungarumlaut" unicode="ű" horiz-adv-x="1151" +d="M417 1095l296 318h214l-341 -318h-169zM760 1095l296 318h243l-371 -318h-168zM377 -23q-77 0 -134.5 25t-90.5 67t-49.5 99t-15 120t16.5 131l134 580h217l-137 -591q-13 -65 -13.5 -116.5t33.5 -83t104 -31.5q53 0 103.5 18t97 54.5t83 99.5t55.5 146l116 504h216 +l-229 -999h-212l27 125q-63 -69 -149 -108.5t-173 -39.5z" /> + <glyph glyph-name="Uogonek" unicode="Ų" horiz-adv-x="1372" +d="M1198 1413h224l-200 -871q-47 -202 -152 -338.5t-270 -190.5q-186 -92 -214 -210q-17 -74 48 -74q70 0 133 66l99 -93q-99 -112 -232 -112q-99 0 -150.5 63t-29.5 162q21 91 115 165q-135 1 -228 45t-137 120t-53.5 180t21.5 225l199 863h224l-196 -848 +q-26 -117 -22.5 -199t59 -126t167.5 -44q172 0 266 100t137 288z" /> + <glyph glyph-name="uogonek" unicode="ų" horiz-adv-x="1151" +d="M661 -312q70 0 133 66l99 -93q-99 -112 -232 -112q-99 0 -150.5 63t-29.5 162q11 47 40 88.5t65.5 69t63 43.5t48.5 25h-26l27 125q-63 -69 -149 -108.5t-173 -39.5q-77 0 -134.5 25t-90.5 67t-49.5 99t-15 120t16.5 131l134 580h217l-137 -591q-13 -65 -13.5 -116.5 +t33.5 -83t104 -31.5q53 0 103.5 18t97 54.5t83 99.5t55.5 146l116 504h216l-229 -999h-75l76 -3q-16 -5 -46 -19.5t-81 -44t-92 -75.5t-53 -96q-17 -74 48 -74z" /> + <glyph glyph-name="Wcircumflex" unicode="Ŵ" horiz-adv-x="1994" +d="M907 1503l400 353l240 -353h-174l-103 158l-177 -158h-186zM342 0l-90 1413h229l57 -1096l561 1014h175l90 -1014l566 1096h236l-742 -1413h-223l-90 975l-546 -975h-223z" /> + <glyph glyph-name="wcircumflex" unicode="ŵ" horiz-adv-x="1452" +d="M542 1098l400 353l240 -353h-174l-103 158l-177 -158h-186zM206 -3l-67 1002h226l21 -681l359 681h188l42 -679l341 679h231l-530 -999h-198l-43 704l-374 -707h-196z" /> + <glyph glyph-name="Ycircumflex" unicode="Ŷ" horiz-adv-x="1375" +d="M599 1511l400 353l240 -353h-174l-103 158l-177 -158h-186zM462 0l129 551l-365 862h259l257 -656l565 656h267l-760 -862l-129 -551h-223z" /> + <glyph glyph-name="ycircumflex" unicode="ŷ" horiz-adv-x="1014" +d="M320 1098l400 353l240 -353h-174l-103 158l-177 -158h-186zM-2 -430l287 450l-162 979h232l94 -732l436 732h239l-890 -1429h-236z" /> + <glyph glyph-name="Ydieresis" unicode="Ÿ" horiz-adv-x="1375" +d="M673 1611l49 215h194l-49 -215h-194zM1022 1611l49 215h194l-50 -215h-193zM462 0l129 551l-365 862h259l257 -656l565 656h267l-760 -862l-129 -551h-223z" /> + <glyph glyph-name="Zacute" unicode="Ź" horiz-adv-x="1273" +d="M758 1537l291 289h243l-364 -289h-170zM-46 0l33 160l1062 1050h-771l47 203h1077l-36 -167l-1056 -1043h814l-47 -203h-1123z" /> + <glyph glyph-name="zacute" unicode="ź" horiz-adv-x="982" +d="M1047 1413l-364 -289h-170l291 289h243zM160 820l41 179h822l-33 -158l-711 -660h557l-42 -181h-851l31 146l733 674h-547z" /> + <glyph glyph-name="Zdotaccent" unicode="Ż" horiz-adv-x="1273" +d="M774 1611l49 215h230l-49 -215h-230zM-46 0l33 160l1062 1050h-771l47 203h1077l-36 -167l-1056 -1043h814l-47 -203h-1123z" /> + <glyph glyph-name="zdotaccent" unicode="ż" horiz-adv-x="982" +d="M808 1413l-49 -215h-230l49 215h230zM1023 999l-33 -158l-711 -660h557l-42 -181h-851l31 146l733 674h-547l41 179h822z" /> + <glyph glyph-name="Zcaron" unicode="Ž" horiz-adv-x="1273" +d="M865 1493l-245 332h176l102 -150l179 150h184zM-46 0l33 160l1062 1050h-771l47 203h1077l-36 -167l-1056 -1043h814l-47 -203h-1123z" /> + <glyph glyph-name="zcaron" unicode="ž" horiz-adv-x="982" +d="M1016 1412l-396 -332l-245 332h176l102 -150l179 150h184zM1023 999l-33 -158l-711 -660h557l-42 -181h-851l31 146l733 674h-547l41 179h822z" /> + <glyph glyph-name="florin" unicode="ƒ" horiz-adv-x="1033" +d="M-135 -457l30 183q187 0 281.5 68.5t132.5 234.5l181 790h-178l42 180h178l35 146q31 135 130.5 219t217.5 84q66 0 117 -25.5t101 -76.5l-140 -126q-27 28 -47.5 37t-48.5 9q-48 0 -92.5 -37t-59.5 -103l-30 -127h305l-42 -180h-305l-186 -809q-52 -230 -211 -348.5 +t-411 -118.5z" /> + <glyph glyph-name="uni01C3" unicode="ǃ" horiz-adv-x="511" +d="M155 413l206 1021h220l-265 -1021h-161zM19 0l54 242h244l-54 -242h-244z" /> + <glyph glyph-name="uni01C4" unicode="DŽ" horiz-adv-x="2661" +d="M2253 1493l-245 332h176l102 -150l179 150h184zM77 0l325 1413h389q355 0 500.5 -191.5t63.5 -545.5q-76 -325 -303 -500.5t-577 -175.5h-398zM1342 0l33 160l1062 1050h-771l47 203h1077l-36 -167l-1056 -1043h814l-47 -203h-1123zM348 206h137q251 0 423 126t234 395 +q58 252 -33.5 366.5t-356.5 114.5h-172z" /> + <glyph glyph-name="uni01C5" unicode="Dž" horiz-adv-x="2394" +d="M791 1413q355 0 500.5 -191.5t63.5 -545.5q-76 -325 -303 -500.5t-577 -175.5h-398l325 1413h389zM2428 1412l-396 -332l-245 332h176l102 -150l179 150h184zM1142 727q58 252 -33.5 366.5t-356.5 114.5h-172l-232 -1002h137q251 0 423 126t234 395zM2435 999l-33 -158 +l-711 -660h557l-42 -181h-851l31 146l733 674h-547l41 179h822z" /> + <glyph glyph-name="uni01C6" unicode="dž" horiz-adv-x="2140" +d="M997 1413h217l-325 -1413h-202l16 107q-126 -127 -314 -127q-82 0 -146 28t-103.5 78t-61.5 118t-20.5 148t19.5 168q32 137 103.5 248.5t182 181.5t237.5 70q93 0 164 -36.5t106 -102.5zM2174 1412l-396 -332l-245 332h176l102 -150l179 150h184zM2181 999l-33 -158 +l-711 -660h557l-42 -181h-851l31 146l733 674h-547l41 179h822zM808 520q17 63 14 118.5t-20.5 97t-60 65.5t-105.5 24q-132 0 -223.5 -97.5t-124.5 -247.5q-18 -86 -11 -153.5t54.5 -108.5t129.5 -41q134 0 223.5 95t123.5 248z" /> + <glyph glyph-name="uni01C7" unicode="LJ" horiz-adv-x="2225" +d="M77 0l325 1413h225l-278 -1203h604l-48 -210h-828zM1490 -20q-104 0 -183 37t-123 100t-60 145t-2 174l220 7q-10 -53 -4.5 -100t23 -82t56.5 -55.5t95 -20.5q75 0 131 23t93 68.5t60.5 100.5t41.5 131l162 702h-532l46 203h757l-211 -915q-119 -518 -570 -518z" /> + <glyph glyph-name="uni01C8" unicode="Lj" horiz-adv-x="1592" +d="M1376 1185l54 230h230l-54 -230h-230zM77 0l325 1413h225l-278 -1203h604l-48 -210h-828zM955 -438q-84 0 -167 36l81 173q43 -18 86 -18q46 0 77.5 32.5t43.5 83.5l260 1130h217l-260 -1129q-33 -140 -118.5 -224t-219.5 -84z" /> + <glyph glyph-name="uni01C9" unicode="lj" horiz-adv-x="1083" +d="M867 1185l54 230h230l-54 -230h-230zM239 -20q-212 0 -159 229l278 1204h215l-275 -1184q-7 -34 6 -47t50 -13q11 0 75 11l-29 -182q-88 -18 -161 -18zM446 -438q-84 0 -167 36l81 173q43 -18 86 -18q46 0 77.5 32.5t43.5 83.5l260 1130h217l-260 -1129 +q-33 -140 -118.5 -224t-219.5 -84z" /> + <glyph glyph-name="uni01CA" unicode="NJ" horiz-adv-x="2576" +d="M77 0l325 1413h241l354 -1064l249 1064h216l-325 -1413h-244l-351 1066l-248 -1066h-217zM1841 -20q-104 0 -183 37t-123 100t-60 145t-2 174l220 7q-10 -53 -4.5 -100t23 -82t56.5 -55.5t95 -20.5q75 0 131 23t93 68.5t60.5 100.5t41.5 131l162 702h-532l46 203h757 +l-211 -915q-119 -518 -570 -518z" /> + <glyph glyph-name="uni01CB" unicode="Nj" horiz-adv-x="1970" +d="M1754 1185l54 230h230l-54 -230h-230zM77 0l325 1413h241l354 -1064l249 1064h216l-325 -1413h-244l-351 1066l-248 -1066h-217zM1333 -438q-84 0 -167 36l81 173q43 -18 86 -18q46 0 77.5 32.5t43.5 83.5l260 1130h217l-260 -1129q-33 -140 -118.5 -224t-219.5 -84z" /> + <glyph glyph-name="uni01CC" unicode="nj" horiz-adv-x="1679" +d="M1463 1185l54 230h230l-54 -230h-230zM38 0l229 999h217l-31 -121q69 71 153 104.5t167 33.5q77 0 134.5 -23.5t91 -64t50 -95t16 -114.5t-15.5 -126l-137 -593h-217l135 586q12 52 14 90t-7.5 71.5t-39 50.5t-78.5 17q-110 0 -212.5 -83.5t-126.5 -187.5l-125 -544h-217 +zM1042 -438q-84 0 -167 36l81 173q43 -18 86 -18q46 0 77.5 32.5t43.5 83.5l260 1130h217l-260 -1129q-33 -140 -118.5 -224t-219.5 -84z" /> + <glyph glyph-name="uni01CD" unicode="Ǎ" horiz-adv-x="1332" +d="M900 1493l-245 332h176l102 -150l179 150h184zM-88 0l880 1413h169l226 -1413h-238l-38 307h-572l-179 -307h-248zM461 502h420l-74 582z" /> + <glyph glyph-name="uni01CE" unicode="ǎ" +d="M1115 1412l-396 -332l-245 332h176l102 -150l179 150h184zM901 999h217l-229 -999h-202l16 107q-126 -127 -314 -127q-82 0 -146 28t-103.5 78t-61.5 118t-20.5 148t19.5 168q32 137 103.5 248.5t182 181.5t237.5 70q93 0 164 -36.5t106 -102.5zM808 520q17 63 14 118.5 +t-20.5 97t-60 65.5t-105.5 24q-132 0 -223.5 -97.5t-124.5 -247.5q-18 -86 -11 -153.5t54.5 -108.5t129.5 -41q134 0 223.5 95t123.5 248z" /> + <glyph glyph-name="uni01CF" unicode="Ǐ" horiz-adv-x="607" +d="M536 1493l-245 332h176l102 -150l179 150h184zM77 0l325 1413h225l-326 -1413h-224z" /> + <glyph glyph-name="uni01D0" unicode="ǐ" horiz-adv-x="506" +d="M390 1080l-245 332h176l102 -150l179 150h184zM38 0l229 999h201l-229 -999h-201z" /> + <glyph glyph-name="uni01D1" unicode="Ǒ" horiz-adv-x="1524" +d="M994 1493l-245 332h176l102 -150l179 150h184zM654 -20q-113 0 -204 27.5t-153 77.5t-103.5 119t-58.5 152.5t-14 177t26 193.5q27 115 75 218t121.5 193t164.5 155.5t208.5 103t248.5 37.5q113 0 204 -27.5t153 -78t103.5 -119t58.5 -152.5t14.5 -177t-25.5 -193 +q-27 -115 -75.5 -218.5t-121.5 -193t-164 -155t-208.5 -103t-249.5 -37.5zM674 180q117 0 216 44t169 121.5t117 173.5t73 208q19 82 22 155t-14 138t-54 111.5t-103.5 74t-156.5 27.5q-93 0 -175.5 -29.5t-145 -80t-113.5 -120.5t-84.5 -148.5t-53.5 -167.5 +q-19 -83 -22 -155.5t14 -138t54 -112t102.5 -74t154.5 -27.5z" /> + <glyph glyph-name="uni01D2" unicode="ǒ" horiz-adv-x="1125" +d="M698 1080l-245 332h176l102 -150l179 150h184zM455 -20q-150 0 -251.5 72.5t-136.5 194.5t-1 269q32 136 117 248.5t213 180t271 67.5q113 0 200 -42.5t135 -115.5t65 -170.5t-11 -207.5q-24 -102 -80 -192.5t-133.5 -158t-178.5 -106.5t-209 -39zM473 166q73 0 135.5 28 +t107.5 77.5t75.5 111t47.5 133.5q17 62 13.5 117.5t-22.5 98.5t-65.5 68t-115.5 25q-143 0 -237 -99t-129 -250q-17 -62 -13 -118t22.5 -99t65 -68t115.5 -25z" /> + <glyph glyph-name="uni01D3" unicode="Ǔ" horiz-adv-x="1372" +d="M916 1493l-245 332h176l102 -150l179 150h184zM578 -20q-111 0 -194 28t-133 78.5t-77 121.5t-25 157t23 185l199 863h224l-196 -848q-26 -117 -22.5 -199t59 -126t167.5 -44q172 0 266 100t137 288l192 829h224l-200 -871q-61 -265 -221 -413.5t-423 -148.5z" /> + <glyph glyph-name="uni01D4" unicode="ǔ" horiz-adv-x="1151" +d="M707 1080l-245 332h176l102 -150l179 150h184zM377 -23q-77 0 -134.5 25t-90.5 67t-49.5 99t-15 120t16.5 131l134 580h217l-137 -591q-13 -65 -13.5 -116.5t33.5 -83t104 -31.5q53 0 103.5 18t97 54.5t83 99.5t55.5 146l116 504h216l-229 -999h-212l27 125 +q-63 -69 -149 -108.5t-173 -39.5z" /> + <glyph glyph-name="uni01D5" unicode="Ǖ" horiz-adv-x="1372" +d="M750 1985l32 138h553l-32 -138h-553zM668 1611l49 215h194l-49 -215h-194zM1017 1611l49 215h194l-50 -215h-193zM578 -20q-111 0 -194 28t-133 78.5t-77 121.5t-25 157t23 185l199 863h224l-196 -848q-26 -117 -22.5 -199t59 -126t167.5 -44q172 0 266 100t137 288 +l192 829h224l-200 -871q-61 -265 -221 -413.5t-423 -148.5z" /> + <glyph glyph-name="uni01D6" unicode="ǖ" horiz-adv-x="1151" +d="M541 1572l32 138h553l-32 -138h-553zM459 1198l49 215h194l-49 -215h-194zM808 1198l49 215h194l-50 -215h-193zM377 -23q-77 0 -134.5 25t-90.5 67t-49.5 99t-15 120t16.5 131l134 580h217l-137 -591q-13 -65 -13.5 -116.5t33.5 -83t104 -31.5q53 0 103.5 18t97 54.5 +t83 99.5t55.5 146l116 504h216l-229 -999h-212l27 125q-63 -69 -149 -108.5t-173 -39.5z" /> + <glyph glyph-name="uni01D7" unicode="Ǘ" horiz-adv-x="1372" +d="M905 1951l291 289h243l-364 -289h-170zM668 1611l49 215h194l-49 -215h-194zM1017 1611l49 215h194l-50 -215h-193zM578 -20q-111 0 -194 28t-133 78.5t-77 121.5t-25 157t23 185l199 863h224l-196 -848q-26 -117 -22.5 -199t59 -126t167.5 -44q172 0 266 100t137 288 +l192 829h224l-200 -871q-61 -265 -221 -413.5t-423 -148.5z" /> + <glyph glyph-name="uni01D8" unicode="ǘ" horiz-adv-x="1151" +d="M696 1538l291 289h243l-364 -289h-170zM459 1198l49 215h194l-49 -215h-194zM808 1198l49 215h194l-50 -215h-193zM377 -23q-77 0 -134.5 25t-90.5 67t-49.5 99t-15 120t16.5 131l134 580h217l-137 -591q-13 -65 -13.5 -116.5t33.5 -83t104 -31.5q53 0 103.5 18t97 54.5 +t83 99.5t55.5 146l116 504h216l-229 -999h-212l27 125q-63 -69 -149 -108.5t-173 -39.5z" /> + <glyph glyph-name="uni01D9" unicode="Ǚ" horiz-adv-x="1372" +d="M1012 1907l-245 332h176l102 -150l179 150h184zM668 1611l49 215h194l-49 -215h-194zM1017 1611l49 215h194l-50 -215h-193zM578 -20q-111 0 -194 28t-133 78.5t-77 121.5t-25 157t23 185l199 863h224l-196 -848q-26 -117 -22.5 -199t59 -126t167.5 -44q172 0 266 100 +t137 288l192 829h224l-200 -871q-61 -265 -221 -413.5t-423 -148.5z" /> + <glyph glyph-name="uni01DA" unicode="ǚ" horiz-adv-x="1151" +d="M803 1494l-245 332h176l102 -150l179 150h184zM459 1198l49 215h194l-49 -215h-194zM808 1198l49 215h194l-50 -215h-193zM377 -23q-77 0 -134.5 25t-90.5 67t-49.5 99t-15 120t16.5 131l134 580h217l-137 -591q-13 -65 -13.5 -116.5t33.5 -83t104 -31.5q53 0 103.5 18 +t97 54.5t83 99.5t55.5 146l116 504h216l-229 -999h-212l27 125q-63 -69 -149 -108.5t-173 -39.5z" /> + <glyph glyph-name="uni01DB" unicode="Ǜ" horiz-adv-x="1372" +d="M950 1937l-221 303h219l153 -303h-151zM668 1611l49 215h194l-49 -215h-194zM1017 1611l49 215h194l-50 -215h-193zM578 -20q-111 0 -194 28t-133 78.5t-77 121.5t-25 157t23 185l199 863h224l-196 -848q-26 -117 -22.5 -199t59 -126t167.5 -44q172 0 266 100t137 288 +l192 829h224l-200 -871q-61 -265 -221 -413.5t-423 -148.5z" /> + <glyph glyph-name="uni01DC" unicode="ǜ" horiz-adv-x="1151" +d="M741 1524l-221 303h219l153 -303h-151zM459 1198l49 215h194l-49 -215h-194zM808 1198l49 215h194l-50 -215h-193zM377 -23q-77 0 -134.5 25t-90.5 67t-49.5 99t-15 120t16.5 131l134 580h217l-137 -591q-13 -65 -13.5 -116.5t33.5 -83t104 -31.5q53 0 103.5 18t97 54.5 +t83 99.5t55.5 146l116 504h216l-229 -999h-212l27 125q-63 -69 -149 -108.5t-173 -39.5z" /> + <glyph glyph-name="uni01DD" unicode="ǝ" horiz-adv-x="1048" +d="M413 -12q-105 0 -180 30t-115.5 80.5t-58 121t-14 146t23.5 162.5q11 42 17 52h692q17 112 -32.5 173.5t-159.5 61.5q-88 0 -155.5 -24t-134.5 -80l-124 141q102 87 206 123.5t226 36.5q81 0 147.5 -19.5t112.5 -55t77 -84t44.5 -107t12.5 -124.5t-17 -136 +q-22 -97 -70.5 -185t-119 -159t-169 -112.5t-209.5 -41.5zM429 170q111 0 191 70.5t119 179.5l-491 -19q-37 -231 181 -231z" /> + <glyph glyph-name="uni01E3" unicode="ǣ" horiz-adv-x="1692" +d="M726 1162l31 135h551l-31 -135h-551zM321 -20q-162 0 -244.5 91.5t-48.5 236.5q63 281 447 281l291 1q29 126 -7.5 186t-142.5 60q-164 0 -297 -142l-133 125q185 197 437 197q237 0 304 -172q80 86 167.5 127t202.5 41q79 0 139.5 -19t97.5 -49t60.5 -76t32.5 -90.5 +t9 -102.5t-5 -102.5t-14 -100.5q-3 -18 -18 -44h-692q-30 -243 199 -243q164 0 283 104l125 -142q-188 -159 -427 -159q-265 0 -327 200q-86 -98 -200 -153t-239 -55zM947 587l492 3q34 239 -178 239q-118 0 -196.5 -69t-117.5 -173zM354 158q128 0 234 84.5t142 188.5 +l-266 -2q-90 0 -158 -47t-81 -113q-11 -53 27.5 -82t101.5 -29z" /> + <glyph glyph-name="uni01EB" unicode="ǫ" horiz-adv-x="1125" +d="M667 1012q113 0 200 -42.5t135 -115.5t65 -170.5t-11 -207.5q-40 -174 -167 -306t-299 -174q-21 -7 -51 -22t-79.5 -44.5t-88.5 -74t-50 -93.5q-17 -74 48 -74q70 0 133 66l99 -93q-99 -112 -232 -112q-99 0 -150.5 63t-29.5 162q9 39 31 74.5t51 62t54 44t51 31.5 +q-125 19 -207.5 95t-106.5 187t4 248q32 136 117 248.5t213 180t271 67.5zM839 516q17 62 13.5 117.5t-22.5 98.5t-65.5 68t-115.5 25q-143 0 -237 -99t-129 -250q-17 -62 -13 -118t22.5 -99t65 -68t115.5 -25q73 0 135.5 28t107.5 77.5t75.5 111t47.5 133.5z" /> + <glyph glyph-name="uni01F1" unicode="DZ" horiz-adv-x="2661" +d="M77 0l325 1413h389q355 0 500.5 -191.5t63.5 -545.5q-76 -325 -303 -500.5t-577 -175.5h-398zM1342 0l33 160l1062 1050h-771l47 203h1077l-36 -167l-1056 -1043h814l-47 -203h-1123zM348 206h137q251 0 423 126t234 395q58 252 -33.5 366.5t-356.5 114.5h-172z" /> + <glyph glyph-name="uni01F2" unicode="Dz" horiz-adv-x="2394" +d="M791 1413q355 0 500.5 -191.5t63.5 -545.5q-76 -325 -303 -500.5t-577 -175.5h-398l325 1413h389zM1142 727q58 252 -33.5 366.5t-356.5 114.5h-172l-232 -1002h137q251 0 423 126t234 395zM2435 999l-33 -158l-711 -660h557l-42 -181h-851l31 146l733 674h-547l41 179 +h822z" /> + <glyph glyph-name="uni01F3" unicode="dz" horiz-adv-x="2140" +d="M997 1413h217l-325 -1413h-202l16 107q-126 -127 -314 -127q-82 0 -146 28t-103.5 78t-61.5 118t-20.5 148t19.5 168q32 137 103.5 248.5t182 181.5t237.5 70q93 0 164 -36.5t106 -102.5zM2181 999l-33 -158l-711 -660h557l-42 -181h-851l31 146l733 674h-547l41 179h822 +zM808 520q17 63 14 118.5t-20.5 97t-60 65.5t-105.5 24q-132 0 -223.5 -97.5t-124.5 -247.5q-18 -86 -11 -153.5t54.5 -108.5t129.5 -41q134 0 223.5 95t123.5 248z" /> + <glyph glyph-name="Scommaaccent" unicode="Ș" horiz-adv-x="1129" +d="M510 -16q-98 0 -183.5 27t-151.5 77.5t-104 130t-38 178.5l228 39q0 -119 73 -182.5t199 -63.5q127 0 204 62.5t77 165.5q0 61 -30 108.5t-77.5 79.5t-105.5 61t-116 61t-105.5 71t-77.5 99.5t-30 138.5q0 173 133 285t329 112q149 0 261.5 -65.5t152.5 -183.5l-191 -92 +q-20 70 -82.5 110.5t-142.5 40.5q-93 0 -162.5 -53.5t-69.5 -138.5q0 -51 30 -93t77.5 -72.5t105.5 -60t116 -64.5t105.5 -77t77.5 -107t30 -145q0 -129 -72 -232.5t-193 -160t-267 -56.5zM101 -455l212 347h245l-322 -347h-135z" /> + <glyph glyph-name="scommaaccent" unicode="ș" horiz-adv-x="897" +d="M369 -20q-159 0 -262 82.5t-115 196.5l184 61q7 -66 58.5 -112.5t139.5 -46.5q89 0 144.5 47.5t55.5 108.5q0 37 -23.5 62t-61 39.5t-82.5 27.5t-90.5 31t-83 43t-61 70.5t-23.5 107.5q0 144 110 230t272 86q131 0 227.5 -58.5t128.5 -156.5l-178 -73q-17 56 -64.5 88 +t-120.5 32q-74 0 -120.5 -33t-46.5 -88q0 -35 23.5 -60t61.5 -40.5t84 -29.5t91.5 -33t83.5 -46t61.5 -74t23.5 -111q0 -147 -121 -249t-296 -102zM29 -455l212 347h245l-322 -347h-135z" /> + <glyph glyph-name="uni021A" unicode="Ț" horiz-adv-x="1197" +d="M371 0l280 1216h-453l46 197h1131l-46 -197h-453l-280 -1216h-225zM140 -455l212 347h245l-322 -347h-135z" /> + <glyph glyph-name="uni021B" unicode="ț" horiz-adv-x="732" +d="M377 -20q-145 0 -206 82t-29 220l124 538h-161l41 179h164l54 241l242 163l-92 -404h259l-41 -179h-259l-122 -527q-30 -127 82 -127q61 0 142 37l-34 -199q-65 -24 -164 -24zM20 -455l212 347h245l-322 -347h-135z" /> + <glyph glyph-name="uni0237" unicode="ȷ" horiz-adv-x="522" +d="M-119 -438q-78 0 -162 36l77 173q49 -13 99 -13q92 0 117 117l259 1124h211l-262 -1134q-32 -139 -117.5 -221t-221.5 -82z" /> + <glyph glyph-name="uni0250" unicode="ɐ" horiz-adv-x="1083" +d="M462 -20q-199 0 -287.5 115t-45.5 301l138 599h168l-15 -146q84 92 170 129.5t193 37.5q148 0 233.5 -92.5t52.5 -239.5q-65 -277 -453 -277l-286 -10q-26 -115 10 -172.5t148 -57.5q79 0 156 44t126 104l137 -135q-98 -103 -205 -151.5t-240 -48.5zM368 557l257 9 +q86 0 151.5 45t81.5 112q12 53 -26 80.5t-110 27.5q-117 0 -222.5 -84t-131.5 -190z" /> + <glyph glyph-name="uni0254" unicode="ɔ" horiz-adv-x="990" +d="M353 -20q-146 0 -241 78.5t-122 211.5l214 63q3 -76 48 -116t121 -40q89 0 161.5 51t114.5 125.5t63 164.5q16 56 13.5 110t-17.5 96t-56.5 68t-104.5 26q-83 0 -155 -48t-112 -126l-175 94q79 135 199 206.5t261 71.5q94 0 166.5 -29.5t116 -80t68.5 -119t23.5 -147 +t-18.5 -162.5q-23 -98 -71 -185.5t-118.5 -158.5t-168.5 -112.5t-210 -41.5z" /> + <glyph glyph-name="uni0258" unicode="ɘ" horiz-adv-x="1048" +d="M394 -12q-128 0 -218.5 41.5t-156.5 132.5l166 113q40 -54 93 -72t139 -18q118 0 204 69.5t122 183.5h-687q0 35 9 73q18 80 47 150t75.5 136t106.5 112.5t144.5 74.5t184.5 28q79 0 143 -20.5t107.5 -57.5t72.5 -87.5t41 -110.5t10 -126t-18 -136q-23 -98 -73 -185 +t-122.5 -154.5t-173.5 -107t-216 -39.5zM290 580l492 18q11 108 -30.5 169.5t-145.5 61.5q-119 0 -200 -67t-116 -182z" /> + <glyph glyph-name="uni0259" unicode="ə" horiz-adv-x="1048" +d="M413 -12q-105 0 -180 30t-115.5 80.5t-58 121t-14 146t23.5 162.5q11 42 17 52h692q17 112 -32.5 173.5t-159.5 61.5q-88 0 -155.5 -24t-134.5 -80l-124 141q102 87 206 123.5t226 36.5q81 0 147.5 -19.5t112.5 -55t77 -84t44.5 -107t12.5 -124.5t-17 -136 +q-22 -97 -70.5 -185t-119 -159t-169 -112.5t-209.5 -41.5zM429 170q111 0 191 70.5t119 179.5l-491 -19q-37 -231 181 -231z" /> + <glyph glyph-name="uni0261" unicode="ɡ" horiz-adv-x="1156" +d="M882 -9q-46 -204 -187 -316t-352 -112q-285 0 -389 217l183 103q21 -62 79 -97.5t148 -35.5q117 0 198 68t110 191l28 111q-124 -125 -307 -125q-83 0 -147.5 28t-104 77.5t-62 116.5t-20.5 145.5t20 164.5q30 133 101 243.5t181.5 180t239.5 69.5q90 0 161 -36.5 +t107 -103.5l31 119h216zM464 191q132 0 221 94.5t124 241.5q16 60 13 114.5t-21 95.5t-60.5 65t-104.5 24q-132 0 -224 -97t-124 -242q-31 -129 11.5 -212.5t164.5 -83.5z" /> + <glyph glyph-name="circumflex" unicode="ˆ" horiz-adv-x="686" +d="M173 1098l400 353l240 -353h-174l-103 158l-177 -158h-186z" /> + <glyph glyph-name="caron" unicode="ˇ" horiz-adv-x="691" +d="M482 1080l-245 332h176l102 -150l179 150h184z" /> + <glyph glyph-name="uni02D0" unicode="ː" horiz-adv-x="536" +d="M274 558l-245 441l472 12zM35 -12l227 453l245 -441z" /> + <glyph glyph-name="uni02D1" unicode="ˑ" horiz-adv-x="548" +d="M280 228l-245 443l472 11z" /> + <glyph glyph-name="breve" unicode="˘" horiz-adv-x="819" +d="M570 1143q-157 0 -224.5 72t-36.5 198h156q-15 -70 16 -103t94 -33q70 0 127 39t71 97h157q-60 -270 -360 -270z" /> + <glyph glyph-name="dotaccent" unicode="˙" horiz-adv-x="519" +d="M306 1198l49 215h230l-49 -215h-230z" /> + <glyph glyph-name="ring" unicode="˚" horiz-adv-x="635" +d="M463 1072q-100 0 -152.5 72.5t-27.5 170.5q21 84 94 142.5t160 58.5q98 0 152 -72t29 -169q-22 -86 -95.5 -144.5t-159.5 -58.5zM479 1194q51 0 86 38t37 86q1 38 -21.5 59t-59.5 21q-54 0 -86.5 -36t-34.5 -86q-1 -39 20.5 -60.5t58.5 -21.5z" /> + <glyph glyph-name="ogonek" unicode="˛" horiz-adv-x="581" +d="M156 -451q-99 0 -150.5 63t-29.5 162q12 51 46 96t74 72.5t66.5 42t40.5 19.5l177 -7q-16 -5 -46 -19.5t-81 -44t-92 -75.5t-53 -96q-17 -74 48 -74q70 0 133 66l99 -93q-99 -112 -232 -112z" /> + <glyph glyph-name="tilde" unicode="˜" horiz-adv-x="1005" +d="M809 1134q-53 0 -88 23t-48.5 50.5t-31.5 50.5t-41 23q-36 0 -66.5 -39t-46.5 -98h-137q29 135 93 205t154 70q41 0 71.5 -15t47 -36.5t29 -43.5t26.5 -37t32 -15q34 0 65 39.5t47 101.5h144q-31 -139 -95 -209t-155 -70z" /> + <glyph glyph-name="hungarumlaut" unicode="˝" horiz-adv-x="878" +d="M180 1095l296 318h214l-341 -318h-169zM523 1095l296 318h243l-371 -318h-168z" /> + <glyph glyph-name="uni02F5" unicode="˵" horiz-adv-x="1073" +d="M871 685h-175l-17 19l13 -19h-175l-287 314h420z" /> + <glyph glyph-name="uni02F6" unicode="˶" horiz-adv-x="1056" +d="M878 999l-287 -314h-175l20 29l-26 -29h-175l222 314h421z" /> + <glyph glyph-name="gravecomb" unicode="̀" horiz-adv-x="0" +d="M-56 1110l-221 303h219l153 -303h-151z" /> + <glyph glyph-name="acutecomb" unicode="́" horiz-adv-x="0" +d="M-352 1124l291 289h243l-364 -289h-170z" /> + <glyph glyph-name="uni0302" unicode="̂" horiz-adv-x="0" +d="M-528 1098l400 353l240 -353h-174l-103 158l-177 -158h-186z" /> + <glyph glyph-name="tildecomb" unicode="̃" horiz-adv-x="0" +d="M-112 1134q-53 0 -88 23t-48.5 50.5t-31.5 50.5t-41 23q-36 0 -66.5 -39t-46.5 -98h-137q29 135 93 205t154 70q41 0 71.5 -15t47 -36.5t29 -43.5t26.5 -37t32 -15q34 0 65 39.5t47 101.5h144q-31 -139 -95 -209t-155 -70z" /> + <glyph glyph-name="uni0304" unicode="̄" horiz-adv-x="0" +d="M-548 1158l32 138h553l-32 -138h-553z" /> + <glyph glyph-name="uni0306" unicode="̆" horiz-adv-x="0" +d="M-248 1143q-157 0 -224.5 72t-36.5 198h156q-15 -70 16 -103t94 -33q70 0 127 39t71 97h157q-60 -270 -360 -270z" /> + <glyph glyph-name="uni0307" unicode="̇" horiz-adv-x="0" +d="M-212 1198l49 215h230l-49 -215h-230z" /> + <glyph glyph-name="uni0308" unicode="̈" horiz-adv-x="0" +d="M-529 1198l49 215h194l-49 -215h-194zM-180 1198l49 215h194l-50 -215h-193z" /> + <glyph glyph-name="uni030A" unicode="̊" horiz-adv-x="0" +d="M-171 1072q-100 0 -152.5 72.5t-27.5 170.5q21 84 94 142.5t160 58.5q98 0 152 -72t29 -169q-22 -86 -95.5 -144.5t-159.5 -58.5zM-155 1194q51 0 86 38t37 86q1 38 -21.5 59t-59.5 21q-54 0 -86.5 -36t-34.5 -86q-1 -39 20.5 -60.5t58.5 -21.5z" /> + <glyph glyph-name="uni030B" unicode="̋" horiz-adv-x="0" +d="M-697 1095l296 318h214l-341 -318h-169zM-354 1095l296 318h243l-371 -318h-168z" /> + <glyph glyph-name="uni030C" unicode="̌" horiz-adv-x="0" +d="M-207 1080l-245 332h176l102 -150l179 150h184z" /> + <glyph glyph-name="uni030F" unicode="̏" horiz-adv-x="0" +d="M-439 1095l-219 318h241l149 -318h-171zM-82 1095l-218 318h240l150 -318h-172z" /> + <glyph glyph-name="uni0312" unicode="̒" horiz-adv-x="0" +d="M142 1431l-212 -310h-245l322 310h135z" /> + <glyph glyph-name="uni031B" unicode="̛" horiz-adv-x="0" +d="M-300 999l227 414h245l-336 -414h-136z" /> + <glyph glyph-name="uni0326" unicode="̦" horiz-adv-x="0" +d="M-636 -455l212 347h245l-322 -347h-135z" /> + <glyph glyph-name="uni0327" unicode="̧" horiz-adv-x="0" +d="M-523 -517q-66 0 -113 40t-59 97l130 37q3 -46 52 -46q43 0 77.5 30t45.5 74q9 41 -28 68t-112 27h-69l152 188h141l-107 -105q90 -10 128.5 -67t19.5 -143q-20 -84 -93 -142t-165 -58z" /> + <glyph glyph-name="uni0328" unicode="̨" horiz-adv-x="0" +d="M-476 -451q-99 0 -150.5 63t-29.5 162q12 51 46 96t74 72.5t66.5 42t40.5 19.5l177 -7q-16 -5 -46 -19.5t-81 -44t-92 -75.5t-53 -96q-17 -74 48 -74q70 0 133 66l99 -93q-99 -112 -232 -112z" /> + <glyph glyph-name="pi" unicode="π" horiz-adv-x="1000" +d="M725 -20q-107 0 -155.5 74t-22.5 184l131 574h-244l-186 -812h-188l186 812h-82l43 187h784l-43 -187h-82l-130 -568q-12 -42 -10 -64.5t8 -29.5t19 -7q23 0 56 22l33 -157q-49 -28 -117 -28z" /> + <glyph glyph-name="uni0483" unicode="҃" horiz-adv-x="0" +d="M-716 1568l75 325h627l29 128h213l-74 -321h-633l-31 -132h-206z" /> + <glyph glyph-name="Wgrave" unicode="Ẁ" horiz-adv-x="1994" +d="M1167 1515l-221 303h219l153 -303h-151zM342 0l-90 1413h229l57 -1096l561 1014h175l90 -1014l566 1096h236l-742 -1413h-223l-90 975l-546 -975h-223z" /> + <glyph glyph-name="wgrave" unicode="ẁ" horiz-adv-x="1452" +d="M802 1110l-221 303h219l153 -303h-151zM206 -3l-67 1002h226l21 -681l359 681h188l42 -679l341 679h231l-530 -999h-198l-43 704l-374 -707h-196z" /> + <glyph glyph-name="Wacute" unicode="Ẃ" horiz-adv-x="1994" +d="M1122 1529l291 289h243l-364 -289h-170zM342 0l-90 1413h229l57 -1096l561 1014h175l90 -1014l566 1096h236l-742 -1413h-223l-90 975l-546 -975h-223z" /> + <glyph glyph-name="wacute" unicode="ẃ" horiz-adv-x="1452" +d="M757 1124l291 289h243l-364 -289h-170zM206 -3l-67 1002h226l21 -681l359 681h188l42 -679l341 679h231l-530 -999h-198l-43 704l-374 -707h-196z" /> + <glyph glyph-name="Wdieresis" unicode="Ẅ" horiz-adv-x="1994" +d="M981 1603l49 215h194l-49 -215h-194zM1330 1603l49 215h194l-50 -215h-193zM342 0l-90 1413h229l57 -1096l561 1014h175l90 -1014l566 1096h236l-742 -1413h-223l-90 975l-546 -975h-223z" /> + <glyph glyph-name="wdieresis" unicode="ẅ" horiz-adv-x="1452" +d="M616 1198l49 215h194l-49 -215h-194zM965 1198l49 215h194l-50 -215h-193zM206 -3l-67 1002h226l21 -681l359 681h188l42 -679l341 679h231l-530 -999h-198l-43 704l-374 -707h-196z" /> + <glyph glyph-name="uni1EA4" unicode="Ấ" horiz-adv-x="1332" +d="M889 1950l291 289h243l-364 -289h-170zM578 1511l400 353l240 -353h-174l-103 158l-177 -158h-186zM-88 0l880 1413h169l226 -1413h-238l-38 307h-572l-179 -307h-248zM461 502h420l-74 582z" /> + <glyph glyph-name="uni1EA5" unicode="ấ" +d="M1242 1826l-364 -289h-170l291 289h243zM760 1256l-177 -158h-186l400 353l240 -353h-174zM870 881l31 118h217l-229 -999h-202l16 107q-126 -127 -314 -127q-82 0 -146 28t-103.5 78t-61.5 118t-20.5 148t19.5 168q32 137 103.5 248.5t182 181.5t237.5 70 +q93 0 164 -36.5t106 -102.5zM808 520q17 63 14 118.5t-20.5 97t-60 65.5t-105.5 24q-132 0 -223.5 -97.5t-124.5 -247.5q-18 -86 -11 -153.5t54.5 -108.5t129.5 -41q134 0 223.5 95t123.5 248z" /> + <glyph glyph-name="uni1EA6" unicode="Ầ" horiz-adv-x="1332" +d="M934 1936l-221 303h219l153 -303h-151zM578 1511l400 353l240 -353h-174l-103 158l-177 -158h-186zM-88 0l880 1413h169l226 -1413h-238l-38 307h-572l-179 -307h-248zM461 502h420l-74 582z" /> + <glyph glyph-name="uni1EA7" unicode="ầ" +d="M904 1523h-151l-221 303h219zM760 1256l-177 -158h-186l400 353l240 -353h-174zM901 999h217l-229 -999h-202l16 107q-126 -127 -314 -127q-82 0 -146 28t-103.5 78t-61.5 118t-20.5 148t19.5 168q32 137 103.5 248.5t182 181.5t237.5 70q93 0 164 -36.5t106 -102.5z +M808 520q17 63 14 118.5t-20.5 97t-60 65.5t-105.5 24q-132 0 -223.5 -97.5t-124.5 -247.5q-18 -86 -11 -153.5t54.5 -108.5t129.5 -41q134 0 223.5 95t123.5 248z" /> + <glyph glyph-name="uni1EAA" unicode="Ẫ" horiz-adv-x="1332" +d="M1138 1945q-53 0 -88 23t-48.5 50.5t-31.5 50.5t-41 23q-36 0 -66.5 -39t-46.5 -98h-137q29 135 93 205t154 70q41 0 71.5 -15t47 -37t29 -43.5t26.5 -36.5t32 -15q34 0 65 39.5t47 101.5h144q-31 -139 -95 -209t-155 -70zM578 1511l400 353l240 -353h-174l-103 158 +l-177 -158h-186zM-88 0l880 1413h169l226 -1413h-238l-38 307h-572l-179 -307h-248zM461 502h420l-74 582z" /> + <glyph glyph-name="uni1EAB" unicode="ẫ" +d="M748 1679q-36 0 -66.5 -39t-46.5 -98h-137q29 135 93 205t154 70q41 0 71.5 -15t47 -36.5t29 -43.5t26.5 -37t32 -15q34 0 65 39.5t47 101.5h144q-31 -139 -95 -209t-155 -70q-53 0 -88 23t-48.5 50.5t-31.5 50.5t-41 23zM760 1256l-177 -158h-186l400 353l240 -353h-174 +zM870 881l31 118h217l-229 -999h-202l16 107q-126 -127 -314 -127q-82 0 -146 28t-103.5 78t-61.5 118t-20.5 148t19.5 168q32 137 103.5 248.5t182 181.5t237.5 70q93 0 164 -36.5t106 -102.5zM808 520q17 63 14 118.5t-20.5 97t-60 65.5t-105.5 24q-132 0 -223.5 -97.5 +t-124.5 -247.5q-18 -86 -11 -153.5t54.5 -108.5t129.5 -41q134 0 223.5 95t123.5 248z" /> + <glyph glyph-name="uni1EAE" unicode="Ắ" horiz-adv-x="1332" +d="M890 1951l291 289h243l-364 -289h-170zM925 1556q-157 0 -224.5 72t-36.5 198h156q-15 -70 16 -103t94 -33q70 0 127 39t71 97h157q-60 -270 -360 -270zM-88 0l880 1413h169l226 -1413h-238l-38 307h-572l-179 -307h-248zM461 502h420l-74 582z" /> + <glyph glyph-name="uni1EAF" unicode="ắ" +d="M1243 1827l-364 -289h-170l291 289h243zM744 1143q-157 0 -224.5 72t-36.5 198h156q-15 -70 16 -103t94 -33q70 0 127 39t71 97h157q-60 -270 -360 -270zM870 881l31 118h217l-229 -999h-202l16 107q-126 -127 -314 -127q-82 0 -146 28t-103.5 78t-61.5 118t-20.5 148 +t19.5 168q32 137 103.5 248.5t182 181.5t237.5 70q93 0 164 -36.5t106 -102.5zM808 520q17 63 14 118.5t-20.5 97t-60 65.5t-105.5 24q-132 0 -223.5 -97.5t-124.5 -247.5q-18 -86 -11 -153.5t54.5 -108.5t129.5 -41q134 0 223.5 95t123.5 248z" /> + <glyph glyph-name="uni1EB0" unicode="Ằ" horiz-adv-x="1332" +d="M935 1937l-221 303h219l153 -303h-151zM925 1556q-157 0 -224.5 72t-36.5 198h156q-15 -70 16 -103t94 -33q70 0 127 39t71 97h157q-60 -270 -360 -270zM-88 0l880 1413h169l226 -1413h-238l-38 307h-572l-179 -307h-248zM461 502h420l-74 582z" /> + <glyph glyph-name="uni1EB1" unicode="ằ" +d="M905 1524h-151l-221 303h219zM744 1143q-157 0 -224.5 72t-36.5 198h156q-15 -70 16 -103t94 -33q70 0 127 39t71 97h157q-60 -270 -360 -270zM901 999h217l-229 -999h-202l16 107q-126 -127 -314 -127q-82 0 -146 28t-103.5 78t-61.5 118t-20.5 148t19.5 168 +q32 137 103.5 248.5t182 181.5t237.5 70q93 0 164 -36.5t106 -102.5zM808 520q17 63 14 118.5t-20.5 97t-60 65.5t-105.5 24q-132 0 -223.5 -97.5t-124.5 -247.5q-18 -86 -11 -153.5t54.5 -108.5t129.5 -41q134 0 223.5 95t123.5 248z" /> + <glyph glyph-name="uni1EB4" unicode="Ẵ" horiz-adv-x="1332" +d="M1139 1946q-53 0 -88 23t-48.5 50.5t-31.5 50.5t-41 23q-36 0 -66.5 -39t-46.5 -98h-137q29 135 93 205t154 70q41 0 71.5 -15t47 -36.5t29 -43.5t26.5 -37t32 -15q34 0 65 39.5t47 101.5h144q-31 -139 -95 -209t-155 -70zM925 1556q-157 0 -224.5 72t-36.5 198h156 +q-15 -70 16 -103t94 -33q70 0 127 39t71 97h157q-60 -270 -360 -270zM-88 0l880 1413h169l226 -1413h-238l-38 307h-572l-179 -307h-248zM461 502h420l-74 582z" /> + <glyph glyph-name="uni1EB5" unicode="ẵ" +d="M749 1680q-36 0 -66.5 -39t-46.5 -98h-137q29 135 93 205t154 70q41 0 71.5 -15t47 -37t29 -43.5t26.5 -36.5t32 -15q34 0 65 39.5t47 101.5h144q-31 -139 -95 -209t-155 -70q-53 0 -88 23t-48.5 50.5t-31.5 50.5t-41 23zM744 1143q-157 0 -224.5 72t-36.5 198h156 +q-15 -70 16 -103t94 -33q70 0 127 39t71 97h157q-60 -270 -360 -270zM870 881l31 118h217l-229 -999h-202l16 107q-126 -127 -314 -127q-82 0 -146 28t-103.5 78t-61.5 118t-20.5 148t19.5 168q32 137 103.5 248.5t182 181.5t237.5 70q93 0 164 -36.5t106 -102.5zM808 520 +q17 63 14 118.5t-20.5 97t-60 65.5t-105.5 24q-132 0 -223.5 -97.5t-124.5 -247.5q-18 -86 -11 -153.5t54.5 -108.5t129.5 -41q134 0 223.5 95t123.5 248z" /> + <glyph glyph-name="uni1EBC" unicode="Ẽ" horiz-adv-x="1243" +d="M1010 1532q-53 0 -88 23t-48.5 50.5t-31.5 50.5t-41 23q-36 0 -66.5 -39t-46.5 -98h-137q29 135 93 205t154 70q41 0 71.5 -15t47 -36.5t29 -43.5t26.5 -37t32 -15q34 0 65 39.5t47 101.5h144q-31 -139 -95 -209t-155 -70zM77 0l325 1413h933l-47 -203h-708l-94 -402h645 +l-47 -202h-644l-91 -396h708l-48 -210h-932z" /> + <glyph glyph-name="uni1EBD" unicode="ẽ" horiz-adv-x="1057" +d="M800 1119q-53 0 -88 23t-48.5 50.5t-31.5 50.5t-41 23q-36 0 -66.5 -39t-46.5 -98h-137q29 135 93 205t154 70q41 0 71.5 -15t47 -37t29 -43.5t26.5 -36.5t32 -15q34 0 65 39.5t47 101.5h144q-31 -139 -95 -209t-155 -70zM445 -12q-81 0 -147 19.5t-111.5 54.5 +t-76.5 83.5t-44.5 107t-12.5 124.5t17 137q22 97 70.5 185t119 158.5t168.5 112.5t209 42q105 0 180.5 -31t116.5 -82t58.5 -122t14 -146t-23.5 -158q-8 -30 -17 -53h-693q-17 -109 31 -172t160 -63q90 0 157 23.5t132 79.5l126 -141q-102 -87 -206.5 -123t-227.5 -36z +M312 579h490q19 128 -24 189t-157 61q-110 0 -190 -70t-119 -180z" /> + <glyph glyph-name="uni1EBE" unicode="Ế" horiz-adv-x="1243" +d="M857 1950l291 289h243l-364 -289h-170zM546 1511l400 353l240 -353h-174l-103 158l-177 -158h-186zM77 0l325 1413h933l-47 -203h-708l-94 -402h645l-47 -202h-644l-91 -396h708l-48 -210h-932z" /> + <glyph glyph-name="uni1EBF" unicode="ế" horiz-adv-x="1057" +d="M647 1537l291 289h243l-364 -289h-170zM336 1098l400 353l240 -353h-174l-103 158l-177 -158h-186zM445 -12q-81 0 -147 19.5t-111.5 54.5t-76.5 83.5t-44.5 107t-12.5 124.5t17 137q22 97 70.5 185t119 158.5t168.5 112.5t209 42q105 0 180.5 -31t116.5 -82t58.5 -122 +t14 -146t-23.5 -158q-8 -30 -17 -53h-693q-17 -109 31 -172t160 -63q90 0 157 23.5t132 79.5l126 -141q-102 -87 -206.5 -123t-227.5 -36zM312 579h490q19 128 -24 189t-157 61q-110 0 -190 -70t-119 -180z" /> + <glyph glyph-name="uni1EC0" unicode="Ề" horiz-adv-x="1243" +d="M902 1936l-221 303h219l153 -303h-151zM546 1511l400 353l240 -353h-174l-103 158l-177 -158h-186zM77 0l325 1413h933l-47 -203h-708l-94 -402h645l-47 -202h-644l-91 -396h708l-48 -210h-932z" /> + <glyph glyph-name="uni1EC1" unicode="ề" horiz-adv-x="1057" +d="M692 1523l-221 303h219l153 -303h-151zM336 1098l400 353l240 -353h-174l-103 158l-177 -158h-186zM445 -12q-81 0 -147 19.5t-111.5 54.5t-76.5 83.5t-44.5 107t-12.5 124.5t17 137q22 97 70.5 185t119 158.5t168.5 112.5t209 42q105 0 180.5 -31t116.5 -82t58.5 -122 +t14 -146t-23.5 -158q-8 -30 -17 -53h-693q-17 -109 31 -172t160 -63q90 0 157 23.5t132 79.5l126 -141q-102 -87 -206.5 -123t-227.5 -36zM312 579h490q19 128 -24 189t-157 61q-110 0 -190 -70t-119 -180z" /> + <glyph glyph-name="uni1EC4" unicode="Ễ" horiz-adv-x="1243" +d="M1106 1945q-53 0 -88 23t-48.5 50.5t-31.5 50.5t-41 23q-36 0 -66.5 -39t-46.5 -98h-137q29 135 93 205t154 70q41 0 71.5 -15t47 -37t29 -43.5t26.5 -36.5t32 -15q34 0 65 39.5t47 101.5h144q-31 -139 -95 -209t-155 -70zM546 1511l400 353l240 -353h-174l-103 158 +l-177 -158h-186zM77 0l325 1413h933l-47 -203h-708l-94 -402h645l-47 -202h-644l-91 -396h708l-48 -210h-932z" /> + <glyph glyph-name="uni1EC5" unicode="ễ" horiz-adv-x="1057" +d="M896 1532q-53 0 -88 23t-48.5 50.5t-31.5 50.5t-41 23q-36 0 -66.5 -39t-46.5 -98h-137q29 135 93 205t154 70q41 0 71.5 -15t47 -36.5t29 -43.5t26.5 -37t32 -15q34 0 65 39.5t47 101.5h144q-31 -139 -95 -209t-155 -70zM336 1098l400 353l240 -353h-174l-103 158 +l-177 -158h-186zM445 -12q-81 0 -147 19.5t-111.5 54.5t-76.5 83.5t-44.5 107t-12.5 124.5t17 137q22 97 70.5 185t119 158.5t168.5 112.5t209 42q105 0 180.5 -31t116.5 -82t58.5 -122t14 -146t-23.5 -158q-8 -30 -17 -53h-693q-17 -109 31 -172t160 -63q90 0 157 23.5 +t132 79.5l126 -141q-102 -87 -206.5 -123t-227.5 -36zM312 579h490q19 128 -24 189t-157 61q-110 0 -190 -70t-119 -180z" /> + <glyph glyph-name="uni1ED0" unicode="Ố" horiz-adv-x="1524" +d="M983 1950l291 289h243l-364 -289h-170zM672 1511l400 353l240 -353h-174l-103 158l-177 -158h-186zM654 -20q-113 0 -204 27.5t-153 77.5t-103.5 119t-58.5 152.5t-14 177t26 193.5q27 115 75 218t121.5 193t164.5 155.5t208.5 103t248.5 37.5q113 0 204 -27.5t153 -78 +t103.5 -119t58.5 -152.5t14.5 -177t-25.5 -193q-27 -115 -75.5 -218.5t-121.5 -193t-164 -155t-208.5 -103t-249.5 -37.5zM674 180q117 0 216 44t169 121.5t117 173.5t73 208q19 82 22 155t-14 138t-54 111.5t-103.5 74t-156.5 27.5q-93 0 -175.5 -29.5t-145 -80 +t-113.5 -120.5t-84.5 -148.5t-53.5 -167.5q-19 -83 -22 -155.5t14 -138t54 -112t102.5 -74t154.5 -27.5z" /> + <glyph glyph-name="uni1ED1" unicode="ố" horiz-adv-x="1125" +d="M687 1537l291 289h243l-364 -289h-170zM376 1098l400 353l240 -353h-174l-103 158l-177 -158h-186zM455 -20q-150 0 -251.5 72.5t-136.5 194.5t-1 269q32 136 117 248.5t213 180t271 67.5q113 0 200 -42.5t135 -115.5t65 -170.5t-11 -207.5q-24 -102 -80 -192.5 +t-133.5 -158t-178.5 -106.5t-209 -39zM473 166q73 0 135.5 28t107.5 77.5t75.5 111t47.5 133.5q17 62 13.5 117.5t-22.5 98.5t-65.5 68t-115.5 25q-143 0 -237 -99t-129 -250q-17 -62 -13 -118t22.5 -99t65 -68t115.5 -25z" /> + <glyph glyph-name="uni1ED2" unicode="Ồ" horiz-adv-x="1524" +d="M1028 1936l-221 303h219l153 -303h-151zM672 1511l400 353l240 -353h-174l-103 158l-177 -158h-186zM654 -20q-113 0 -204 27.5t-153 77.5t-103.5 119t-58.5 152.5t-14 177t26 193.5q27 115 75 218t121.5 193t164.5 155.5t208.5 103t248.5 37.5q113 0 204 -27.5t153 -78 +t103.5 -119t58.5 -152.5t14.5 -177t-25.5 -193q-27 -115 -75.5 -218.5t-121.5 -193t-164 -155t-208.5 -103t-249.5 -37.5zM674 180q117 0 216 44t169 121.5t117 173.5t73 208q19 82 22 155t-14 138t-54 111.5t-103.5 74t-156.5 27.5q-93 0 -175.5 -29.5t-145 -80 +t-113.5 -120.5t-84.5 -148.5t-53.5 -167.5q-19 -83 -22 -155.5t14 -138t54 -112t102.5 -74t154.5 -27.5z" /> + <glyph glyph-name="uni1ED3" unicode="ồ" horiz-adv-x="1125" +d="M732 1523l-221 303h219l153 -303h-151zM376 1098l400 353l240 -353h-174l-103 158l-177 -158h-186zM455 -20q-150 0 -251.5 72.5t-136.5 194.5t-1 269q32 136 117 248.5t213 180t271 67.5q113 0 200 -42.5t135 -115.5t65 -170.5t-11 -207.5q-24 -102 -80 -192.5 +t-133.5 -158t-178.5 -106.5t-209 -39zM473 166q73 0 135.5 28t107.5 77.5t75.5 111t47.5 133.5q17 62 13.5 117.5t-22.5 98.5t-65.5 68t-115.5 25q-143 0 -237 -99t-129 -250q-17 -62 -13 -118t22.5 -99t65 -68t115.5 -25z" /> + <glyph glyph-name="uni1ED6" unicode="Ỗ" horiz-adv-x="1524" +d="M1232 1945q-53 0 -88 23t-48.5 50.5t-31.5 50.5t-41 23q-36 0 -66.5 -39t-46.5 -98h-137q29 135 93 205t154 70q41 0 71.5 -15t47 -37t29 -43.5t26.5 -36.5t32 -15q34 0 65 39.5t47 101.5h144q-31 -139 -95 -209t-155 -70zM672 1511l400 353l240 -353h-174l-103 158 +l-177 -158h-186zM654 -20q-113 0 -204 27.5t-153 77.5t-103.5 119t-58.5 152.5t-14 177t26 193.5q27 115 75 218t121.5 193t164.5 155.5t208.5 103t248.5 37.5q113 0 204 -27.5t153 -78t103.5 -119t58.5 -152.5t14.5 -177t-25.5 -193q-27 -115 -75.5 -218.5t-121.5 -193 +t-164 -155t-208.5 -103t-249.5 -37.5zM674 180q117 0 216 44t169 121.5t117 173.5t73 208q19 82 22 155t-14 138t-54 111.5t-103.5 74t-156.5 27.5q-93 0 -175.5 -29.5t-145 -80t-113.5 -120.5t-84.5 -148.5t-53.5 -167.5q-19 -83 -22 -155.5t14 -138t54 -112t102.5 -74 +t154.5 -27.5z" /> + <glyph glyph-name="uni1ED7" unicode="ỗ" horiz-adv-x="1125" +d="M936 1532q-53 0 -88 23t-48.5 50.5t-31.5 50.5t-41 23q-36 0 -66.5 -39t-46.5 -98h-137q29 135 93 205t154 70q41 0 71.5 -15t47 -36.5t29 -43.5t26.5 -37t32 -15q34 0 65 39.5t47 101.5h144q-31 -139 -95 -209t-155 -70zM376 1098l400 353l240 -353h-174l-103 158 +l-177 -158h-186zM455 -20q-150 0 -251.5 72.5t-136.5 194.5t-1 269q32 136 117 248.5t213 180t271 67.5q113 0 200 -42.5t135 -115.5t65 -170.5t-11 -207.5q-24 -102 -80 -192.5t-133.5 -158t-178.5 -106.5t-209 -39zM473 166q73 0 135.5 28t107.5 77.5t75.5 111t47.5 133.5 +q17 62 13.5 117.5t-22.5 98.5t-65.5 68t-115.5 25q-143 0 -237 -99t-129 -250q-17 -62 -13 -118t22.5 -99t65 -68t115.5 -25z" /> + <glyph glyph-name="Ygrave" unicode="Ỳ" horiz-adv-x="1375" +d="M859 1523l-221 303h219l153 -303h-151zM462 0l129 551l-365 862h259l257 -656l565 656h267l-760 -862l-129 -551h-223z" /> + <glyph glyph-name="ygrave" unicode="ỳ" horiz-adv-x="1014" +d="M580 1110l-221 303h219l153 -303h-151zM-2 -430l287 450l-162 979h232l94 -732l436 732h239l-890 -1429h-236z" /> + <glyph glyph-name="uni1EF8" unicode="Ỹ" horiz-adv-x="1375" +d="M1063 1532q-53 0 -88 23t-48.5 50.5t-31.5 50.5t-41 23q-36 0 -66.5 -39t-46.5 -98h-137q29 135 93 205t154 70q41 0 71.5 -15t47 -36.5t29 -43.5t26.5 -37t32 -15q34 0 65 39.5t47 101.5h144q-31 -139 -95 -209t-155 -70zM462 0l129 551l-365 862h259l257 -656l565 656 +h267l-760 -862l-129 -551h-223z" /> + <glyph glyph-name="uni1EF9" unicode="ỹ" horiz-adv-x="1014" +d="M784 1119q-53 0 -88 23t-48.5 50.5t-31.5 50.5t-41 23q-36 0 -66.5 -39t-46.5 -98h-137q29 135 93 205t154 70q41 0 71.5 -15t47 -37t29 -43.5t26.5 -36.5t32 -15q34 0 65 39.5t47 101.5h144q-31 -139 -95 -209t-155 -70zM-2 -430l287 450l-162 979h232l94 -732l436 732 +h239l-890 -1429h-236z" /> + <glyph glyph-name="endash" unicode="–" horiz-adv-x="1042" +d="M155 530l38 162h746l-38 -162h-746z" /> + <glyph glyph-name="emdash" unicode="—" horiz-adv-x="1697" +d="M155 530l38 162h1401l-38 -162h-1401z" /> + <glyph glyph-name="uni2015" unicode="―" horiz-adv-x="1533" +d="M155 530l38 162h1238l-38 -162h-1238z" /> + <glyph glyph-name="quoteleft" unicode="‘" horiz-adv-x="571" +d="M402 878l-118 535h247l8 -535h-137z" /> + <glyph glyph-name="quoteright" unicode="’" horiz-adv-x="570" +d="M202 878l256 535h255l-367 -535h-144z" /> + <glyph glyph-name="quotesinglbase" unicode="‚" horiz-adv-x="558" +d="M-50 -225l243 489h239l-352 -489h-130z" /> + <glyph glyph-name="quotedblleft" unicode="“" horiz-adv-x="934" +d="M402 878l-118 535h247l8 -535h-137zM766 878l-118 535h246l9 -535h-137z" /> + <glyph glyph-name="quotedblright" unicode="”" horiz-adv-x="934" +d="M202 878l256 535h255l-367 -535h-144zM566 878l256 535h255l-366 -535h-145z" /> + <glyph glyph-name="quotedblbase" unicode="„" horiz-adv-x="892" +d="M-50 -225l243 489h239l-352 -489h-130zM288 -225l242 489h240l-352 -489h-130z" /> + <glyph glyph-name="dagger" unicode="†" horiz-adv-x="787" +d="M132 -205l236 1025h-221l46 199h221l91 394h199l-91 -394h222l-47 -199h-221l-236 -1025h-199z" /> + <glyph glyph-name="daggerdbl" unicode="‡" horiz-adv-x="888" +d="M183 -205l90 394h-221l46 200h221l100 431h-221l46 199h221l91 394h199l-91 -394h221l-46 -199h-221l-99 -431h221l-46 -200h-221l-91 -394h-199z" /> + <glyph glyph-name="bullet" unicode="•" horiz-adv-x="780" +d="M343 244q-103 0 -159 75.5t-32 181.5q22 91 102.5 154.5t173.5 63.5q103 0 159 -75.5t31 -182.5q-20 -90 -100.5 -153.5t-174.5 -63.5z" /> + <glyph glyph-name="uni2023" unicode="‣" horiz-adv-x="880" +d="M142 173l157 692l519 -346z" /> + <glyph glyph-name="twodotenleader" unicode="‥" horiz-adv-x="1068" +d="M97 0l55 242h230l-54 -242h-231zM510 0l55 242h231l-55 -242h-231z" /> + <glyph glyph-name="ellipsis" unicode="…" horiz-adv-x="1481" +d="M97 0l55 242h230l-54 -242h-231zM510 0l55 242h231l-55 -242h-231zM924 0l55 242h231l-55 -242h-231z" /> + <glyph glyph-name="perthousand" unicode="‰" horiz-adv-x="2176" +d="M165 -13l1114 1452h192l-1114 -1452h-192zM444 779q-63 0 -108.5 23t-68.5 59t-33.5 83.5t-8.5 92.5t12 90q10 39 26 78t44 82t62.5 75t85 53t108.5 21q70 0 119.5 -31.5t70 -82t26 -113t-11.5 -124.5q-13 -55 -40 -107.5t-67 -98t-96.5 -73t-119.5 -27.5zM449 929 +q56 0 103 59t65 139q18 61 1.5 109t-65.5 48q-58 0 -104.5 -57.5t-66.5 -139.5q-17 -61 -0.5 -109.5t67.5 -48.5zM1090 -6q-63 0 -108 23t-68.5 59.5t-34 84t-8.5 93t13 90.5q9 39 25.5 79t44.5 82.5t63.5 75.5t86 54t107.5 21t100 -20.5t67.5 -55.5t36.5 -80.5t11.5 -95 +t-12.5 -100.5q-13 -56 -40 -109t-67 -99t-96.5 -74t-120.5 -28zM1714 -6q-63 0 -108 23t-68 59.5t-33.5 84t-8.5 93t12 90.5q12 50 36 100t62.5 100t98.5 81t131 31q56 0 99 -20.5t67.5 -55.5t37 -80.5t11.5 -95t-13 -100.5q-12 -56 -39.5 -109t-67.5 -99t-96.5 -74 +t-120.5 -28zM1097 143q55 0 102.5 60.5t65.5 142.5q17 62 1 110.5t-64 48.5q-59 0 -106 -58.5t-67 -142.5q-8 -42 -7 -78t20.5 -59.5t54.5 -23.5zM1720 143q56 0 103.5 60.5t64.5 142.5q17 62 1 110.5t-63 48.5q-59 0 -106 -58.5t-66 -142.5q-18 -62 -1.5 -111.5t67.5 -49.5 +z" /> + <glyph glyph-name="uni2031" unicode="‱" horiz-adv-x="2792" +d="M165 -13l1114 1452h191l-1113 -1452h-192zM444 779q-63 0 -108.5 23t-68.5 59t-33.5 83.5t-8.5 92.5t12 90q10 39 26 78t44 82t62.5 75t85 53t108.5 21q56 0 99 -20.5t68 -55.5t37.5 -80.5t11.5 -94.5t-13 -100q-10 -43 -29 -85.5t-48 -82.5t-65 -70.5t-82.5 -49 +t-97.5 -18.5zM449 929q56 0 103 59t65 139q18 61 1.5 109.5t-65.5 48.5q-59 0 -105.5 -58t-66.5 -140q-14 -67 1.5 -112.5t66.5 -45.5zM1090 -6q-63 0 -108 23t-68.5 59.5t-34 84t-8.5 93t13 90.5q9 39 25.5 79t44.5 82.5t63.5 75.5t86 54t107.5 21t99.5 -21t67 -55.5 +t37 -80.5t11.5 -95t-13 -100q-18 -76 -58 -144t-110.5 -117t-154.5 -49zM1713 -6q-62 0 -107.5 23t-68.5 59.5t-33.5 84t-8.5 93t12 90.5q12 50 36 100t62.5 100t98.5 81t131 31q56 0 99 -21t67.5 -55.5t36.5 -80.5t11.5 -95t-12.5 -100q-13 -56 -40 -109t-67 -99t-96.5 -74 +t-120.5 -28zM2331 -6q-62 0 -107.5 23t-68.5 59.5t-33.5 84t-8.5 93t12 90.5q12 50 36 100t62.5 100t98.5 81t131 31q56 0 99 -21t67.5 -55.5t36.5 -80.5t11.5 -95t-12.5 -100q-13 -56 -40 -109t-67 -99t-96.5 -74t-120.5 -28zM1097 143q55 0 102.5 60.5t65.5 142.5 +q17 62 1 110.5t-64 48.5q-60 0 -107 -58.5t-66 -142.5q-18 -62 -1 -111.5t69 -49.5zM1719 143q57 0 104.5 60.5t64.5 142.5q17 62 1 110.5t-64 48.5q-60 0 -106.5 -58t-66.5 -143q-17 -62 -0.5 -111.5t67.5 -49.5zM2337 143q57 0 104.5 60.5t64.5 142.5q17 62 1 110.5 +t-64 48.5q-60 0 -106.5 -58t-66.5 -143q-17 -62 -0.5 -111.5t67.5 -49.5z" /> + <glyph glyph-name="guilsinglleft" unicode="‹" horiz-adv-x="597" +d="M367 165l-332 345l488 347l-42 -195l-220 -152l148 -150z" /> + <glyph glyph-name="guilsinglright" unicode="›" horiz-adv-x="599" +d="M76 165l42 195l220 150l-146 152l40 195l332 -347z" /> + <glyph glyph-name="fraction" unicode="⁄" horiz-adv-x="826" +d="M-82 0l780 1413h210l-779 -1413h-211z" /> + <glyph glyph-name="Euro" unicode="€" horiz-adv-x="1254" +d="M663 -20q-107 0 -188 37.5t-129 104.5t-71 154t-21 192l-168 -9l108 164l73 9q3 17 10 49.5t10 45.5q4 17 22 85l-145 -10l110 167l96 9q99 212 251 335t350 123q122 0 210.5 -54t138.5 -154l-157 -98q-51 111 -213 111q-125 0 -226 -77t-170 -204l531 9l-108 -165 +l-493 -9q-17 -54 -25 -95q-9 -36 -17 -81l564 9l-108 -164l-465 -9q16 -281 250 -281q162 0 277 130l106 -149q-176 -175 -403 -175z" /> + <glyph glyph-name="uni20B1" unicode="₱" horiz-adv-x="1214" +d="M1345 1061l-25 -104h-102q-49 -171 -198.5 -263t-359.5 -92h-212l-138 -602h-223l220 957h-112l25 104h111l81 352h422q195 0 305.5 -93.5t97.5 -258.5h108zM587 1206l-34 -145h465q5 72 -49 108.5t-171 36.5h-211zM695 809q220 0 294 148h-460l-34 -148h200z" /> + <glyph glyph-name="uni20B3" unicode="₳" horiz-adv-x="1332" +d="M1321 656h-239l33 -206h158l-33 -143h-102l49 -307h-238l-38 307h-572l-179 -307h-248l191 307h-100l33 143h156l129 206h-237l32 143h294l382 614h169l98 -614h294zM819 1140l-199 -341h240zM902 450l-25 206h-341l-120 -206h486z" /> + <glyph glyph-name="uni20B4" unicode="₴" horiz-adv-x="1163" +d="M1119 1034q-15 -67 -51.5 -120.5t-68.5 -84.5t-102 -63t-101.5 -42.5t-117.5 -36.5q-7 -3 -11 -4l-10 -2.5t-11 -3.5h358l-30 -127h-596q-65 -60 -84 -146q-24 -107 24 -160.5t161 -53.5q126 0 231.5 69.5t147.5 194.5l205 -76q-51 -130 -150.5 -221t-215 -132 +t-238.5 -41q-208 0 -320 121t-66 321q12 53 35.5 99t51.5 81t67.5 66.5t75.5 53.5t85 44t87 37t89 34q20 7 30 11h-311l28 126h528q52 46 68 111q15 66 -28 106.5t-119 40.5q-78 0 -154.5 -44.5t-131.5 -119.5l-160 132q184 230 463 230q183 0 283.5 -109t58.5 -291z" /> + <glyph glyph-name="uni20B8" unicode="₸" horiz-adv-x="1391" +d="M295 1215l46 198h1131l-46 -198h-1131zM469 0l207 898h-454l46 196h1131l-46 -196h-453l-207 -898h-224z" /> + <glyph glyph-name="uni20BD" unicode="₽" horiz-adv-x="1322" +d="M184 0l67 292h-177l40 177h177l35 148h-177l44 192h177l140 604h422q217 0 327 -115.5t63 -313.5q-41 -181 -191 -274t-371 -93h-212l-34 -148h349l-41 -177h-349l-66 -292h-223zM592 809h200q133 0 214 55t105 160q21 89 -31.5 135.5t-183.5 46.5h-212z" /> + <glyph glyph-name="uni2116" unicode="№" horiz-adv-x="2443" +d="M1553 561q-33 -142 -135.5 -251t-242.5 -146l-38 -164h-244l-75 228q-59 52 -85.5 131.5t-15.5 173.5l-175 533l-248 -1066h-217l325 1413h241l197 -593q127 151 310 181l96 412h216l-98 -427q121 -44 172 -160t17 -265zM1110 833q-71 -29 -120 -93t-73 -150l80 -241z +M1372 595q37 164 -46 226l-109 -474q114 74 155 248zM1446 166h788v-166h-788v166z" /> + <glyph glyph-name="trademark" unicode="™" horiz-adv-x="1371" +d="M370 877l97 419h-145l28 117h420l-28 -117h-145l-97 -419h-130zM724 877l125 536h160l14 -327l168 327h162l-125 -536h-129l87 369l-142 -288h-88l-12 312l-90 -393h-130z" /> + <glyph glyph-name="uni2126" unicode="Ω" horiz-adv-x="1674" +d="M40 0l42 181l301 5q-112 96 -158.5 245t-10.5 308q29 123 103.5 248.5t172.5 216.5q120 94 266 148.5t278 54.5q138 0 260 -64t189 -169q67 -81 88 -209.5t-11 -269.5q-36 -150 -140 -292.5t-249 -232.5l272 6l-40 -176h-558l34 174q175 33 311.5 187.5t189.5 381.5 +q20 89 11.5 178.5t-43.5 151.5q-57 70 -147 110.5t-184 40.5q-104 0 -217 -49.5t-199 -131.5q-70 -51 -124.5 -142.5t-78.5 -197.5q-49 -207 13.5 -351.5t219.5 -182.5l-33 -169h-558z" /> + <glyph glyph-name="arrowleft" unicode="←" horiz-adv-x="2217" +d="M1044 92l-974 547l974 538l98 -171l-594 -284h1583v-175h-1571l582 -284z" /> + <glyph glyph-name="arrowright" unicode="→" horiz-adv-x="2216" +d="M1188 92l-97 171l582 284h-1571v175h1582l-593 284l97 171l975 -538z" /> + <glyph glyph-name="partialdiff" unicode="∂" horiz-adv-x="1294" +d="M459 -12q-212 0 -306 132.5t-45 343.5q36 156 138.5 283t239 196t276.5 69q149 0 266 -97q41 177 -13 264t-179 87q-50 0 -97 -13.5t-100.5 -53t-93.5 -101.5l-157 67q82 128 206 196t272 68q103 0 178.5 -34t119 -95t62.5 -148t13 -190.5t-34 -225.5q-37 -159 -106 -295 +t-163 -237t-217 -158.5t-260 -57.5zM489 174q149 0 284 114.5t177 291.5q27 116 -18 184.5t-168 68.5q-86 0 -166 -36.5t-138.5 -95.5t-99 -131t-57.5 -146q-27 -118 27 -184t159 -66z" /> + <glyph glyph-name="uni2206" unicode="∆" horiz-adv-x="1293" +d="M-53 0l920 1471l247 -1471h-1167zM261 183h631l-122 830z" /> + <glyph glyph-name="product" unicode="∏" horiz-adv-x="1341" +d="M131 0l283 1230h-82l42 183h1015l-42 -183h-82l-284 -1230h-183l284 1230h-485l-284 -1230h-182z" /> + <glyph glyph-name="summation" unicode="∑" horiz-adv-x="1268" +d="M-22 0l20 93l714 614l-427 613l19 93h1059l-42 -183h-734l386 -523l-624 -524h731l-42 -183h-1060z" /> + <glyph glyph-name="minus" unicode="−" horiz-adv-x="1423" +d="M232 547v163h974v-163h-974z" /> + <glyph glyph-name="radical" unicode="√" horiz-adv-x="1193" +d="M334 -221l-95 773h-157l42 183h284l39 -484l720 1173l160 -64z" /> + <glyph glyph-name="infinity" unicode="∞" horiz-adv-x="1889" +d="M553 354q-180 0 -283.5 105t-103.5 276t103.5 276t283.5 105q109 0 216 -57.5t189 -164.5q83 107 190.5 164.5t215.5 57.5q179 0 282.5 -105t103.5 -276t-103.5 -276t-282.5 -105q-108 0 -215.5 58t-190.5 164q-83 -107 -190 -164.5t-215 -57.5zM584 529q69 0 146.5 54.5 +t131.5 151.5q-55 97 -132 152t-146 55q-103 0 -163 -54.5t-60 -152.5q0 -97 60.5 -151.5t162.5 -54.5zM1333 529q102 0 162 54.5t60 151.5q0 98 -60 152.5t-162 54.5q-70 0 -147.5 -55t-130.5 -152q55 -97 132 -151.5t146 -54.5z" /> + <glyph glyph-name="integral" unicode="∫" horiz-adv-x="928" +d="M-157 -457l31 183q172 0 264.5 70t127.5 227l261 1130q30 130 129.5 212.5t217.5 82.5q119 0 205 -89l-139 -128q-34 35 -84 35q-48 0 -92 -36t-58 -101l-262 -1129q-52 -224 -210 -340.5t-391 -116.5z" /> + <glyph glyph-name="approxequal" unicode="≈" horiz-adv-x="1168" +d="M752 735q-61 0 -115 19.5t-85.5 42.5t-67.5 42.5t-66 19.5q-43 0 -56.5 -23.5t-13.5 -74.5h-148q0 120 56.5 183t159.5 63q71 0 129 -19t88 -41.5t63.5 -41.5t61.5 -19q46 0 62 26.5t16 88.5h155q0 -131 -60.5 -198.5t-178.5 -67.5zM753 388q-61 0 -115.5 19.5t-86 42.5 +t-67.5 42.5t-66 19.5q-43 0 -56.5 -23.5t-13.5 -74.5h-148q0 119 56.5 182.5t159.5 63.5q71 0 129 -19t88 -41t63.5 -41t61.5 -19q46 0 62 26t16 88h155q0 -131 -60 -198.5t-178 -67.5z" /> + <glyph glyph-name="notequal" unicode="≠" horiz-adv-x="1153" +d="M109 0l227 413h-151v172h244l93 174h-337v172h430l265 482h192l-265 -482h173v-172h-265l-94 -174h359v-172h-452l-227 -413h-192z" /> + <glyph glyph-name="lessequal" unicode="≤" horiz-adv-x="1331" +d="M1073 143l-958 534l958 534l92 -159l-699 -375l699 -375zM73 -162v162h1102v-162h-1102z" /> + <glyph glyph-name="greaterequal" unicode="≥" horiz-adv-x="1360" +d="M243 143l-92 159l698 375l-698 375l92 159l958 -534zM141 -162v162h1102v-162h-1102z" /> + <glyph glyph-name="lozenge" unicode="◊" horiz-adv-x="1107" +d="M345 0l-218 717l544 717h191l216 -717l-541 -717h-192zM480 203l381 514l-134 513l-382 -513z" /> + <glyph glyph-name="uniF8FF" unicode="" horiz-adv-x="1779" +d="M938 -61q-158 0 -301 61t-247 165t-165 247t-61 301t61 301t165 247t247 165t301 61t301.5 -61t247.5 -165t165 -247t61 -301t-61 -301t-165 -247t-247.5 -165t-301.5 -61zM938 10q144 0 274 55.5t224 149.5t149.5 224.5t55.5 273.5t-55.5 273t-149.5 224t-224 149.5 +t-274 55.5q-143 0 -273 -55.5t-224 -149.5t-149.5 -224t-55.5 -273t55.5 -273.5t149.5 -224.5t224 -149.5t273 -55.5zM535 410q-14 0 -24.5 9.5t-10.5 24.5v537q0 15 10.5 26t24.5 11q16 0 26.5 -11t10.5 -26v-537q0 -15 -10.5 -24.5t-26.5 -9.5zM938 410q-15 0 -24.5 9.5 +t-9.5 24.5v537q0 15 9.5 26t24.5 11t25 -11t10 -26v-537q0 -15 -9.5 -24.5t-25.5 -9.5zM1340 410q-14 0 -23 10l-270 268q-8 11 -8 25q0 16 8 24l271 269q9 12 22 12q14 0 25.5 -12t11.5 -25q0 -14 -10 -25l-244 -243l244 -244q10 -10 10 -25q0 -13 -11.5 -23.5t-25.5 -10.5 +zM670 678q-15 0 -25 9.5t-10 25.5q0 15 10 25t25 10h133q16 0 26.5 -10t10.5 -25q0 -16 -10.5 -25.5t-26.5 -9.5h-133z" /> + <glyph glyph-name="i.loclTRK" horiz-adv-x="506" +d="M299 1198l49 215h230l-49 -215h-230zM38 0l229 999h201l-229 -999h-201z" /> + <glyph glyph-name="f_t" horiz-adv-x="1343" +d="M1084 820l-122 -527q-30 -127 82 -127q61 0 142 37l-34 -199q-65 -24 -164 -24q-145 0 -206 82t-29 220l124 538h-377l-189 -820h-219l188 820h-182l41 177h184l37 161q32 135 124 205.5t233 70.5q85 0 171 -44l-101 -162q-41 23 -86 23q-46 0 -80.5 -30t-47.5 -86 +l-32 -136h380l54 241l242 163l-92 -404h259l-41 -179h-259z" /> + <hkern u1=" " u2="&" k="82" /> + <hkern u1="!" u2="ß" k="18" /> + <hkern u1=""" u2="ï" k="-45" /> + <hkern u1=""" u2="î" k="-45" /> + <hkern u1=""" u2="ì" k="-45" /> + <hkern u1="#" u2="9" k="10" /> + <hkern u1="#" u2="8" k="10" /> + <hkern u1="#" u2="7" k="6" /> + <hkern u1="#" u2="5" k="16" /> + <hkern u1="#" u2="4" k="20" /> + <hkern u1="#" u2="3" k="16" /> + <hkern u1="#" u2="2" k="6" /> + <hkern u1="#" u2="1" k="6" /> + <hkern u1="$" u2="9" k="6" /> + <hkern u1="$" u2="8" k="6" /> + <hkern u1="$" u2="7" k="6" /> + <hkern u1="$" u2="5" k="6" /> + <hkern u1="$" u2="4" k="6" /> + <hkern u1="$" u2="3" k="6" /> + <hkern u1="%" u2="1" k="6" /> + <hkern u1="&" u2="v" k="29" /> + <hkern u1="&" u2="V" k="127" /> + <hkern u1="&" u2="5" k="6" /> + <hkern u1="&" u2="4" k="6" /> + <hkern u1="&" u2="3" k="6" /> + <hkern u1="&" u2="1" k="6" /> + <hkern u1="&" u2=" " k="82" /> + <hkern u1="'" u2="ï" k="-45" /> + <hkern u1="'" u2="î" k="-45" /> + <hkern u1="'" u2="ì" k="-45" /> + <hkern u1="(" u2="ƒ" k="-113" /> + <hkern u1="(" u2="ï" k="-29" /> + <hkern u1="(" u2="î" k="-18" /> + <hkern u1="(" u2="ì" k="-70" /> + <hkern u1="(" u2="ß" k="23" /> + <hkern u1="(" u2="x" k="10" /> + <hkern u1="(" u2="v" k="45" /> + <hkern u1="(" u2="g" k="23" /> + <hkern u1="(" u2="X" k="-23" /> + <hkern u1="(" u2="V" k="-33" /> + <hkern u1="(" u2="−" k="82" /> + <hkern u1="(" u2="7" k="-20" /> + <hkern u1="(" u2="5" k="12" /> + <hkern u1="(" u2="4" k="10" /> + <hkern u1="(" u2="2" k="-2" /> + <hkern u1="(" u2="1" k="2" /> + <hkern u1="(" u2="+" k="113" /> + <hkern u1=")" u2="Ł" k="-23" /> + <hkern u1="*" u2="ƒ" k="47" /> + <hkern u1="*" u2="Ł" k="10" /> + <hkern u1="*" u2="ï" k="-37" /> + <hkern u1="*" u2="î" k="-59" /> + <hkern u1="*" u2="ì" k="-18" /> + <hkern u1="*" u2="x" k="-10" /> + <hkern u1="*" u2="v" k="-39" /> + <hkern u1="*" u2="X" k="10" /> + <hkern u1="*" u2="V" k="-41" /> + <hkern u1="*" u2="7" k="-20" /> + <hkern u1="*" u2="4" k="37" /> + <hkern u1="+" u2="X" k="43" /> + <hkern u1="+" u2="V" k="92" /> + <hkern u1="+" u2="9" k="6" /> + <hkern u1="+" u2="7" k="6" /> + <hkern u1="+" u2="3" k="10" /> + <hkern u1="+" u2="2" k="6" /> + <hkern u1="+" u2="1" k="16" /> + <hkern u1="+" u2=")" k="113" /> + <hkern u1="," u2="j" k="-18" /> + <hkern u1="," u2="g" k="31" /> + <hkern u1="." u2="g" k="31" /> + <hkern u1="/" u2="ƒ" k="92" /> + <hkern u1="/" u2="ž" k="76" /> + <hkern u1="/" u2="š" k="86" /> + <hkern u1="/" u2="ł" k="18" /> + <hkern u1="/" u2="Ł" k="23" /> + <hkern u1="/" u2="ö" k="166" /> + <hkern u1="/" u2="ò" k="152" /> + <hkern u1="/" u2="ð" k="213" /> + <hkern u1="/" u2="ï" k="-80" /> + <hkern u1="/" u2="î" k="-61" /> + <hkern u1="/" u2="í" k="12" /> + <hkern u1="/" u2="ì" k="-143" /> + <hkern u1="/" u2="ë" k="193" /> + <hkern u1="/" u2="è" k="193" /> + <hkern u1="/" u2="å" k="199" /> + <hkern u1="/" u2="ä" k="154" /> + <hkern u1="/" u2="ã" k="168" /> + <hkern u1="/" u2="â" k="193" /> + <hkern u1="/" u2="à" k="162" /> + <hkern u1="/" u2="ß" k="55" /> + <hkern u1="/" u2="x" k="41" /> + <hkern u1="/" u2="v" k="31" /> + <hkern u1="/" u2="X" k="-20" /> + <hkern u1="/" u2="V" k="-41" /> + <hkern u1="/" u2="9" k="10" /> + <hkern u1="/" u2="8" k="16" /> + <hkern u1="/" u2="7" k="-16" /> + <hkern u1="/" u2="5" k="10" /> + <hkern u1="/" u2="4" k="41" /> + <hkern u1="/" u2="2" k="10" /> + <hkern u1="/" u2="/" k="158" /> + <hkern u1="1" u2="≥" k="-6" /> + <hkern u1="1" u2="≠" k="-10" /> + <hkern u1="1" u2="≈" k="-10" /> + <hkern u1="1" u2="∞" k="-10" /> + <hkern u1="1" u2="÷" k="6" /> + <hkern u1="1" u2="°" k="6" /> + <hkern u1="1" u2="|" k="-6" /> + <hkern u1="1" u2=">" k="-16" /> + <hkern u1="1" u2="<" k="6" /> + <hkern u1="1" u2="7" k="-2" /> + <hkern u1="1" u2="2" k="-2" /> + <hkern u1="1" u2="%" k="6" /> + <hkern u1="1" u2="#" k="10" /> + <hkern u1="2" u2="≥" k="-6" /> + <hkern u1="2" u2="≠" k="-6" /> + <hkern u1="2" u2="≈" k="-10" /> + <hkern u1="2" u2="×" k="-6" /> + <hkern u1="2" u2="±" k="-6" /> + <hkern u1="2" u2="°" k="-6" /> + <hkern u1="2" u2="_" k="-6" /> + <hkern u1="2" u2="\" k="6" /> + <hkern u1="2" u2=">" k="-16" /> + <hkern u1="2" u2="4" k="8" /> + <hkern u1="2" u2="1" k="-6" /> + <hkern u1="3" u2="≥" k="-10" /> + <hkern u1="3" u2="≈" k="-10" /> + <hkern u1="3" u2="−" k="-6" /> + <hkern u1="3" u2="‰" k="6" /> + <hkern u1="3" u2="×" k="-6" /> + <hkern u1="3" u2="±" k="-6" /> + <hkern u1="3" u2="°" k="-6" /> + <hkern u1="3" u2="¦" k="-10" /> + <hkern u1="3" u2="~" k="-6" /> + <hkern u1="3" u2="|" k="-10" /> + <hkern u1="3" u2="_" k="6" /> + <hkern u1="3" u2=">" k="-16" /> + <hkern u1="3" u2="7" k="-6" /> + <hkern u1="3" u2="1" k="2" /> + <hkern u1="3" u2="/" k="6" /> + <hkern u1="3" u2="*" k="-6" /> + <hkern u1="3" u2="%" k="6" /> + <hkern u1="3" u2="#" k="10" /> + <hkern u1="4" u2="º" k="20" /> + <hkern u1="4" u2="ª" k="20" /> + <hkern u1="4" u2="≥" k="-16" /> + <hkern u1="4" u2="≤" k="-16" /> + <hkern u1="4" u2="≠" k="-6" /> + <hkern u1="4" u2="≈" k="-16" /> + <hkern u1="4" u2="∞" k="-6" /> + <hkern u1="4" u2="™" k="37" /> + <hkern u1="4" u2="‰" k="16" /> + <hkern u1="4" u2="×" k="-6" /> + <hkern u1="4" u2="±" k="-6" /> + <hkern u1="4" u2="°" k="6" /> + <hkern u1="4" u2="¦" k="-6" /> + <hkern u1="4" u2="~" k="-10" /> + <hkern u1="4" u2=">" k="-16" /> + <hkern u1="4" u2="=" k="-10" /> + <hkern u1="4" u2="7" k="2" /> + <hkern u1="4" u2="*" k="10" /> + <hkern u1="4" u2="%" k="6" /> + <hkern u1="5" u2="≥" k="-10" /> + <hkern u1="5" u2="≤" k="-6" /> + <hkern u1="5" u2="≠" k="-6" /> + <hkern u1="5" u2="≈" k="-10" /> + <hkern u1="5" u2="−" k="-6" /> + <hkern u1="5" u2="‰" k="6" /> + <hkern u1="5" u2="°" k="-6" /> + <hkern u1="5" u2="~" k="-6" /> + <hkern u1="5" u2="_" k="6" /> + <hkern u1="5" u2="@" k="2" /> + <hkern u1="5" u2=">" k="-10" /> + <hkern u1="5" u2="=" k="-6" /> + <hkern u1="5" u2="<" k="-6" /> + <hkern u1="5" u2="7" k="-2" /> + <hkern u1="5" u2="/" k="10" /> + <hkern u1="5" u2="%" k="6" /> + <hkern u1="6" u2="≈" k="-6" /> + <hkern u1="6" u2="−" k="-6" /> + <hkern u1="6" u2="‰" k="10" /> + <hkern u1="6" u2="~" k="-6" /> + <hkern u1="6" u2="_" k="10" /> + <hkern u1="6" u2="\" k="6" /> + <hkern u1="6" u2="@" k="6" /> + <hkern u1="6" u2=">" k="-6" /> + <hkern u1="6" u2="=" k="-6" /> + <hkern u1="6" u2="7" k="-2" /> + <hkern u1="6" u2="+" k="-6" /> + <hkern u1="6" u2="#" k="10" /> + <hkern u1="7" u2="≥" k="-10" /> + <hkern u1="7" u2="≠" k="6" /> + <hkern u1="7" u2="∞" k="6" /> + <hkern u1="7" u2="−" k="16" /> + <hkern u1="7" u2="™" k="-10" /> + <hkern u1="7" u2="‰" k="-6" /> + <hkern u1="7" u2="‡" k="-27" /> + <hkern u1="7" u2="†" k="-27" /> + <hkern u1="7" u2="÷" k="10" /> + <hkern u1="7" u2="¿" k="31" /> + <hkern u1="7" u2="·" k="20" /> + <hkern u1="7" u2="±" k="6" /> + <hkern u1="7" u2="°" k="-16" /> + <hkern u1="7" u2="¦" k="-10" /> + <hkern u1="7" u2="~" k="20" /> + <hkern u1="7" u2="|" k="-10" /> + <hkern u1="7" u2="_" k="47" /> + <hkern u1="7" u2="\" k="-16" /> + <hkern u1="7" u2="@" k="2" /> + <hkern u1="7" u2="?" k="-10" /> + <hkern u1="7" u2=">" k="-16" /> + <hkern u1="7" u2="=" k="-2" /> + <hkern u1="7" u2="<" k="16" /> + <hkern u1="7" u2="9" k="-6" /> + <hkern u1="7" u2="7" k="-16" /> + <hkern u1="7" u2="5" k="8" /> + <hkern u1="7" u2="4" k="29" /> + <hkern u1="7" u2="1" k="-2" /> + <hkern u1="7" u2="/" k="31" /> + <hkern u1="7" u2="+" k="27" /> + <hkern u1="7" u2="*" k="-10" /> + <hkern u1="7" u2="#" k="20" /> + <hkern u1="8" u2="≥" k="-6" /> + <hkern u1="8" u2="≠" k="-6" /> + <hkern u1="8" u2="≈" k="-10" /> + <hkern u1="8" u2="£" k="10" /> + <hkern u1="8" u2="_" k="6" /> + <hkern u1="8" u2="\" k="20" /> + <hkern u1="8" u2=">" k="-6" /> + <hkern u1="8" u2="&" k="6" /> + <hkern u1="8" u2="%" k="2" /> + <hkern u1="8" u2="#" k="6" /> + <hkern u1=";" u2="j" k="-18" /> + <hkern u1="<" u2="Ł" k="-10" /> + <hkern u1="<" u2="v" k="-29" /> + <hkern u1="<" u2="X" k="-10" /> + <hkern u1="<" u2="V" k="-10" /> + <hkern u1="<" u2="9" k="-16" /> + <hkern u1="<" u2="8" k="-16" /> + <hkern u1="<" u2="7" k="-37" /> + <hkern u1="<" u2="5" k="-10" /> + <hkern u1="<" u2="3" k="-6" /> + <hkern u1="<" u2="2" k="-16" /> + <hkern u1="<" u2="1" k="-16" /> + <hkern u1="=" u2="v" k="-10" /> + <hkern u1="=" u2="X" k="31" /> + <hkern u1="=" u2="V" k="49" /> + <hkern u1="=" u2="7" k="6" /> + <hkern u1="=" u2="5" k="-6" /> + <hkern u1=">" u2="ł" k="-10" /> + <hkern u1=">" u2="x" k="10" /> + <hkern u1=">" u2="v" k="10" /> + <hkern u1=">" u2="X" k="88" /> + <hkern u1=">" u2="V" k="70" /> + <hkern u1=">" u2="3" k="10" /> + <hkern u1=">" u2="2" k="6" /> + <hkern u1=">" u2="1" k="6" /> + <hkern u1="?" u2="Ł" k="10" /> + <hkern u1="?" u2="v" k="-23" /> + <hkern u1="?" u2="X" k="10" /> + <hkern u1="?" u2="7" k="-16" /> + <hkern u1="?" u2="4" k="10" /> + <hkern u1="?" u2="1" k="-6" /> + <hkern u1="@" u2="ł" k="10" /> + <hkern u1="@" u2="Ł" k="-6" /> + <hkern u1="@" u2="î" k="-10" /> + <hkern u1="@" u2="ß" k="18" /> + <hkern u1="@" u2="x" k="-2" /> + <hkern u1="@" u2="v" k="-16" /> + <hkern u1="@" u2="X" k="63" /> + <hkern u1="@" u2="V" k="59" /> + <hkern u1="@" u2="7" k="-6" /> + <hkern u1="@" u2="4" k="6" /> + <hkern u1="@" u2="3" k="6" /> + <hkern u1="B" u2="™" k="31" /> + <hkern u1="B" u2="•" k="12" /> + <hkern u1="B" u2="‡" k="-4" /> + <hkern u1="B" u2="†" k="-4" /> + <hkern u1="B" u2="Ł" k="-10" /> + <hkern u1="B" u2="ï" k="-4" /> + <hkern u1="B" u2="î" k="-4" /> + <hkern u1="B" u2="ß" k="31" /> + <hkern u1="B" u2="¿" k="47" /> + <hkern u1="B" u2="º" k="12" /> + <hkern u1="B" u2="·" k="4" /> + <hkern u1="B" u2="ª" k="16" /> + <hkern u1="B" u2="¡" k="10" /> + <hkern u1="B" u2="~" k="-4" /> + <hkern u1="B" u2="{" k="18" /> + <hkern u1="B" u2="v" k="6" /> + <hkern u1="B" u2="_" k="12" /> + <hkern u1="B" u2="\" k="66" /> + <hkern u1="B" u2="X" k="4" /> + <hkern u1="B" u2="V" k="10" /> + <hkern u1="B" u2=">" k="-25" /> + <hkern u1="B" u2="=" k="-4" /> + <hkern u1="B" u2="/" k="27" /> + <hkern u1="B" u2="+" k="6" /> + <hkern u1="B" u2="&" k="33" /> + <hkern u1="C" u2="î" k="-23" /> + <hkern u1="D" u2="ï" k="-4" /> + <hkern u1="D" u2="î" k="-4" /> + <hkern u1="E" u2="ï" k="-14" /> + <hkern u1="E" u2="î" k="-18" /> + <hkern u1="E" u2="ì" k="-25" /> + <hkern u1="F" u2="™" k="-27" /> + <hkern u1="F" u2="•" k="31" /> + <hkern u1="F" u2="‡" k="-41" /> + <hkern u1="F" u2="†" k="-41" /> + <hkern u1="F" u2="ƒ" k="135" /> + <hkern u1="F" u2="÷" k="4" /> + <hkern u1="F" u2="ï" k="-63" /> + <hkern u1="F" u2="î" k="-55" /> + <hkern u1="F" u2="í" k="12" /> + <hkern u1="F" u2="ì" k="-76" /> + <hkern u1="F" u2="ã" k="49" /> + <hkern u1="F" u2="ß" k="45" /> + <hkern u1="F" u2="×" k="10" /> + <hkern u1="F" u2="¿" k="154" /> + <hkern u1="F" u2="·" k="10" /> + <hkern u1="F" u2="¶" k="-23" /> + <hkern u1="F" u2="ª" k="16" /> + <hkern u1="F" u2="§" k="-23" /> + <hkern u1="F" u2="¦" k="-23" /> + <hkern u1="F" u2="¡" k="18" /> + <hkern u1="F" u2="~" k="41" /> + <hkern u1="F" u2="|" k="-41" /> + <hkern u1="F" u2="{" k="23" /> + <hkern u1="F" u2="x" k="31" /> + <hkern u1="F" u2="v" k="37" /> + <hkern u1="F" u2="_" k="168" /> + <hkern u1="F" u2="^" k="-12" /> + <hkern u1="F" u2="\" k="-53" /> + <hkern u1="F" u2="X" k="-14" /> + <hkern u1="F" u2="V" k="-14" /> + <hkern u1="F" u2="@" k="20" /> + <hkern u1="F" u2="?" k="-20" /> + <hkern u1="F" u2=">" k="-31" /> + <hkern u1="F" u2="=" k="10" /> + <hkern u1="F" u2="<" k="10" /> + <hkern u1="F" u2="/" k="135" /> + <hkern u1="F" u2="+" k="33" /> + <hkern u1="F" u2="*" k="-16" /> + <hkern u1="F" u2=")" k="-35" /> + <hkern u1="F" u2="&" k="57" /> + <hkern u1="G" u2="î" k="-6" /> + <hkern u1="H" u2="ï" k="-18" /> + <hkern u1="H" u2="î" k="-10" /> + <hkern u1="H" u2="ì" k="-18" /> + <hkern u1="I" u2="ï" k="-18" /> + <hkern u1="I" u2="î" k="-10" /> + <hkern u1="I" u2="ì" k="-18" /> + <hkern u1="J" u2="ï" k="-10" /> + <hkern u1="J" u2="î" k="-14" /> + <hkern u1="J" u2="ì" k="-10" /> + <hkern u1="K" u2="ï" k="-55" /> + <hkern u1="K" u2="î" k="-23" /> + <hkern u1="K" u2="ì" k="-43" /> + <hkern u1="M" u2="ï" k="-18" /> + <hkern u1="M" u2="î" k="-10" /> + <hkern u1="M" u2="ì" k="-18" /> + <hkern u1="N" u2="ï" k="-18" /> + <hkern u1="N" u2="î" k="-10" /> + <hkern u1="N" u2="ì" k="-18" /> + <hkern u1="O" u2="ï" k="-4" /> + <hkern u1="O" u2="î" k="-4" /> + <hkern u1="P" u2="™" k="10" /> + <hkern u1="P" u2="•" k="33" /> + <hkern u1="P" u2="‡" k="-41" /> + <hkern u1="P" u2="†" k="-41" /> + <hkern u1="P" u2="ƒ" k="115" /> + <hkern u1="P" u2="š" k="27" /> + <hkern u1="P" u2="ł" k="6" /> + <hkern u1="P" u2="ü" k="41" /> + <hkern u1="P" u2="û" k="41" /> + <hkern u1="P" u2="ú" k="41" /> + <hkern u1="P" u2="ù" k="41" /> + <hkern u1="P" u2="÷" k="12" /> + <hkern u1="P" u2="ï" k="-63" /> + <hkern u1="P" u2="î" k="-68" /> + <hkern u1="P" u2="ì" k="-16" /> + <hkern u1="P" u2="ß" k="41" /> + <hkern u1="P" u2="×" k="-12" /> + <hkern u1="P" u2="¿" k="174" /> + <hkern u1="P" u2="·" k="33" /> + <hkern u1="P" u2="¶" k="-33" /> + <hkern u1="P" u2="§" k="-12" /> + <hkern u1="P" u2="~" k="41" /> + <hkern u1="P" u2="{" k="41" /> + <hkern u1="P" u2="v" k="-4" /> + <hkern u1="P" u2="_" k="176" /> + <hkern u1="P" u2="\" k="18" /> + <hkern u1="P" u2="X" k="25" /> + <hkern u1="P" u2="V" k="4" /> + <hkern u1="P" u2="@" k="6" /> + <hkern u1="P" u2="?" k="-41" /> + <hkern u1="P" u2=">" k="-41" /> + <hkern u1="P" u2="<" k="18" /> + <hkern u1="P" u2="/" k="154" /> + <hkern u1="P" u2="+" k="53" /> + <hkern u1="P" u2="*" k="-20" /> + <hkern u1="P" u2=")" k="10" /> + <hkern u1="P" u2="&" k="57" /> + <hkern u1="Q" u2="™" k="41" /> + <hkern u1="Q" u2="‡" k="-10" /> + <hkern u1="Q" u2="†" k="-10" /> + <hkern u1="Q" u2="ƒ" k="23" /> + <hkern u1="Q" u2="Ł" k="-6" /> + <hkern u1="Q" u2="÷" k="-10" /> + <hkern u1="Q" u2="î" k="-4" /> + <hkern u1="Q" u2="ß" k="25" /> + <hkern u1="Q" u2="×" k="-10" /> + <hkern u1="Q" u2="¡" k="10" /> + <hkern u1="Q" u2="~" k="-10" /> + <hkern u1="Q" u2="x" k="-10" /> + <hkern u1="Q" u2="^" k="-10" /> + <hkern u1="Q" u2="\" k="86" /> + <hkern u1="Q" u2="X" k="41" /> + <hkern u1="Q" u2="V" k="55" /> + <hkern u1="Q" u2=">" k="-33" /> + <hkern u1="Q" u2="=" k="-10" /> + <hkern u1="Q" u2="<" k="-20" /> + <hkern u1="Q" u2="+" k="-10" /> + <hkern u1="Q" u2=")" k="39" /> + <hkern u1="Q" u2="&" k="18" /> + <hkern u1="Q" u2="!" k="10" /> + <hkern u1="R" u2="ï" k="-14" /> + <hkern u1="R" u2="î" k="-31" /> + <hkern u1="S" u2="ï" k="-6" /> + <hkern u1="S" u2="î" k="-6" /> + <hkern u1="T" u2="ž" k="53" /> + <hkern u1="T" u2="š" k="31" /> + <hkern u1="T" u2="ÿ" k="102" /> + <hkern u1="T" u2="ü" k="121" /> + <hkern u1="T" u2="û" k="133" /> + <hkern u1="T" u2="ï" k="-90" /> + <hkern u1="T" u2="î" k="-53" /> + <hkern u1="T" u2="í" k="70" /> + <hkern u1="T" u2="ì" k="-82" /> + <hkern u1="T" u2="å" k="125" /> + <hkern u1="T" u2="ä" k="78" /> + <hkern u1="T" u2="ã" k="92" /> + <hkern u1="T" u2="â" k="104" /> + <hkern u1="T" u2="à" k="86" /> + <hkern u1="U" u2="ï" k="-10" /> + <hkern u1="U" u2="î" k="-14" /> + <hkern u1="U" u2="ì" k="-10" /> + <hkern u1="V" u2="™" k="-35" /> + <hkern u1="V" u2="•" k="92" /> + <hkern u1="V" u2="‡" k="-20" /> + <hkern u1="V" u2="†" k="-33" /> + <hkern u1="V" u2="ƒ" k="141" /> + <hkern u1="V" u2="ł" k="18" /> + <hkern u1="V" u2="÷" k="63" /> + <hkern u1="V" u2="ï" k="-80" /> + <hkern u1="V" u2="î" k="-31" /> + <hkern u1="V" u2="í" k="18" /> + <hkern u1="V" u2="ì" k="-68" /> + <hkern u1="V" u2="è" k="90" /> + <hkern u1="V" u2="ã" k="72" /> + <hkern u1="V" u2="ß" k="59" /> + <hkern u1="V" u2="×" k="20" /> + <hkern u1="V" u2="¿" k="160" /> + <hkern u1="V" u2="º" k="4" /> + <hkern u1="V" u2="·" k="72" /> + <hkern u1="V" u2="ª" k="18" /> + <hkern u1="V" u2="§" k="10" /> + <hkern u1="V" u2="¦" k="-33" /> + <hkern u1="V" u2="¡" k="70" /> + <hkern u1="V" u2="~" k="92" /> + <hkern u1="V" u2="|" k="-33" /> + <hkern u1="V" u2="{" k="61" /> + <hkern u1="V" u2="x" k="20" /> + <hkern u1="V" u2="v" k="33" /> + <hkern u1="V" u2="_" k="131" /> + <hkern u1="V" u2="^" k="10" /> + <hkern u1="V" u2="\" k="-41" /> + <hkern u1="V" u2="X" k="-20" /> + <hkern u1="V" u2="V" k="-20" /> + <hkern u1="V" u2="@" k="59" /> + <hkern u1="V" u2="?" k="-12" /> + <hkern u1="V" u2="=" k="49" /> + <hkern u1="V" u2="<" k="70" /> + <hkern u1="V" u2="/" k="160" /> + <hkern u1="V" u2="+" k="92" /> + <hkern u1="V" u2="*" k="-41" /> + <hkern u1="V" u2=")" k="-33" /> + <hkern u1="V" u2="&" k="78" /> + <hkern u1="W" u2="ï" k="-88" /> + <hkern u1="W" u2="î" k="-39" /> + <hkern u1="W" u2="í" k="14" /> + <hkern u1="W" u2="ì" k="-66" /> + <hkern u1="X" u2="•" k="80" /> + <hkern u1="X" u2="ł" k="10" /> + <hkern u1="X" u2="÷" k="39" /> + <hkern u1="X" u2="ï" k="-35" /> + <hkern u1="X" u2="î" k="-20" /> + <hkern u1="X" u2="ì" k="-63" /> + <hkern u1="X" u2="ß" k="18" /> + <hkern u1="X" u2="×" k="31" /> + <hkern u1="X" u2="º" k="29" /> + <hkern u1="X" u2="·" k="72" /> + <hkern u1="X" u2="¶" k="10" /> + <hkern u1="X" u2="ª" k="29" /> + <hkern u1="X" u2="¦" k="-20" /> + <hkern u1="X" u2="¡" k="10" /> + <hkern u1="X" u2="~" k="51" /> + <hkern u1="X" u2="|" k="-33" /> + <hkern u1="X" u2="{" k="61" /> + <hkern u1="X" u2="x" k="-27" /> + <hkern u1="X" u2="v" k="59" /> + <hkern u1="X" u2="_" k="-35" /> + <hkern u1="X" u2="^" k="18" /> + <hkern u1="X" u2="\" k="-20" /> + <hkern u1="X" u2="V" k="-20" /> + <hkern u1="X" u2="@" k="61" /> + <hkern u1="X" u2="?" k="10" /> + <hkern u1="X" u2="=" k="31" /> + <hkern u1="X" u2="<" k="59" /> + <hkern u1="X" u2="/" k="-20" /> + <hkern u1="X" u2="+" k="43" /> + <hkern u1="X" u2="*" k="10" /> + <hkern u1="X" u2=")" k="-23" /> + <hkern u1="X" u2="&" k="49" /> + <hkern u1="Y" u2="š" k="84" /> + <hkern u1="Y" u2="ö" k="106" /> + <hkern u1="Y" u2="õ" k="193" /> + <hkern u1="Y" u2="ò" k="164" /> + <hkern u1="Y" u2="ð" k="182" /> + <hkern u1="Y" u2="ï" k="-49" /> + <hkern u1="Y" u2="î" k="-6" /> + <hkern u1="Y" u2="í" k="80" /> + <hkern u1="Y" u2="ì" k="-82" /> + <hkern u1="Y" u2="ë" k="129" /> + <hkern u1="Y" u2="è" k="129" /> + <hkern u1="Y" u2="ä" k="90" /> + <hkern u1="Y" u2="â" k="104" /> + <hkern u1="Y" u2="à" k="115" /> + <hkern u1="Z" u2="ï" k="-33" /> + <hkern u1="Z" u2="î" k="-33" /> + <hkern u1="Z" u2="ì" k="-45" /> + <hkern u1="[" u2="ï" k="-47" /> + <hkern u1="[" u2="î" k="-18" /> + <hkern u1="[" u2="ì" k="-100" /> + <hkern u1="\" u2="Ł" k="10" /> + <hkern u1="\" u2="x" k="-20" /> + <hkern u1="\" u2="v" k="49" /> + <hkern u1="\" u2="X" k="-20" /> + <hkern u1="\" u2="V" k="160" /> + <hkern u1="\" u2="8" k="10" /> + <hkern u1="\" u2="4" k="6" /> + <hkern u1="\" u2="3" k="6" /> + <hkern u1="\" u2="2" k="-6" /> + <hkern u1="^" u2="v" k="-18" /> + <hkern u1="^" u2="X" k="18" /> + <hkern u1="^" u2="V" k="10" /> + <hkern u1="_" u2="ƒ" k="-133" /> + <hkern u1="_" u2="ł" k="18" /> + <hkern u1="_" u2="x" k="-53" /> + <hkern u1="_" u2="v" k="82" /> + <hkern u1="_" u2="X" k="-35" /> + <hkern u1="_" u2="V" k="131" /> + <hkern u1="_" u2="8" k="6" /> + <hkern u1="_" u2="4" k="27" /> + <hkern u1="f" u2="ï" k="-74" /> + <hkern u1="f" u2="î" k="-70" /> + <hkern u1="f" u2="ì" k="-90" /> + <hkern u1="f" u2="j" k="-25" /> + <hkern u1="f" u2="i" k="-10" /> + <hkern u1="i" u2="ï" k="-10" /> + <hkern u1="i" u2="î" k="-10" /> + <hkern u1="i" u2="ì" k="-10" /> + <hkern u1="l" u2="ï" k="-4" /> + <hkern u1="l" u2="î" k="-4" /> + <hkern u1="q" u2="™" k="47" /> + <hkern u1="v" u2="™" k="10" /> + <hkern u1="v" u2="‡" k="-61" /> + <hkern u1="v" u2="†" k="-61" /> + <hkern u1="v" u2="ƒ" k="18" /> + <hkern u1="v" u2="ł" k="-6" /> + <hkern u1="v" u2="÷" k="10" /> + <hkern u1="v" u2="×" k="-18" /> + <hkern u1="v" u2="¿" k="59" /> + <hkern u1="v" u2="º" k="-14" /> + <hkern u1="v" u2="¶" k="-51" /> + <hkern u1="v" u2="§" k="-18" /> + <hkern u1="v" u2="¦" k="-41" /> + <hkern u1="v" u2="¡" k="10" /> + <hkern u1="v" u2="|" k="-18" /> + <hkern u1="v" u2="x" k="-12" /> + <hkern u1="v" u2="v" k="-6" /> + <hkern u1="v" u2="_" k="82" /> + <hkern u1="v" u2="^" k="-18" /> + <hkern u1="v" u2="\" k="41" /> + <hkern u1="v" u2="@" k="-12" /> + <hkern u1="v" u2="?" k="-41" /> + <hkern u1="v" u2=">" k="-29" /> + <hkern u1="v" u2="=" k="-10" /> + <hkern u1="v" u2="<" k="10" /> + <hkern u1="v" u2="/" k="59" /> + <hkern u1="v" u2="*" k="-39" /> + <hkern u1="v" u2=")" k="45" /> + <hkern u1="v" u2="&" k="29" /> + <hkern u1="x" u2="™" k="20" /> + <hkern u1="x" u2="•" k="10" /> + <hkern u1="x" u2="‡" k="-31" /> + <hkern u1="x" u2="†" k="-31" /> + <hkern u1="x" u2="÷" k="10" /> + <hkern u1="x" u2="¿" k="-10" /> + <hkern u1="x" u2="·" k="20" /> + <hkern u1="x" u2="¶" k="-10" /> + <hkern u1="x" u2="ª" k="10" /> + <hkern u1="x" u2="¦" k="-10" /> + <hkern u1="x" u2="¡" k="-12" /> + <hkern u1="x" u2="~" k="10" /> + <hkern u1="x" u2="|" k="-33" /> + <hkern u1="x" u2="x" k="-6" /> + <hkern u1="x" u2="v" k="-12" /> + <hkern u1="x" u2="_" k="-53" /> + <hkern u1="x" u2="\" k="78" /> + <hkern u1="x" u2="@" k="-6" /> + <hkern u1="x" u2="?" k="-18" /> + <hkern u1="x" u2="<" k="10" /> + <hkern u1="x" u2="/" k="-41" /> + <hkern u1="x" u2="*" k="-10" /> + <hkern u1="x" u2=")" k="10" /> + <hkern u1="x" u2="&" k="31" /> + <hkern u1="{" u2="ï" k="-47" /> + <hkern u1="{" u2="î" k="-18" /> + <hkern u1="{" u2="ì" k="-100" /> + <hkern u1="{" u2="æ" k="10" /> + <hkern u1="{" u2="å" k="10" /> + <hkern u1="{" u2="ä" k="10" /> + <hkern u1="{" u2="ã" k="10" /> + <hkern u1="{" u2="â" k="10" /> + <hkern u1="{" u2="á" k="10" /> + <hkern u1="{" u2="à" k="10" /> + <hkern u1="{" u2="a" k="10" /> + <hkern u1="|" u2="x" k="-33" /> + <hkern u1="|" u2="v" k="-18" /> + <hkern u1="|" u2="X" k="-33" /> + <hkern u1="|" u2="V" k="-33" /> + <hkern u1="|" u2="7" k="-10" /> + <hkern u1="}" u2="Ł" k="-12" /> + <hkern u1="}" u2="X" k="12" /> + <hkern u1="}" u2="V" k="12" /> + <hkern u1="~" u2="x" k="10" /> + <hkern u1="~" u2="X" k="51" /> + <hkern u1="~" u2="V" k="92" /> + <hkern u1="~" u2="7" k="10" /> + <hkern u1="~" u2="2" k="6" /> + <hkern u1="~" u2="1" k="6" /> + <hkern u1="¡" u2="ß" k="10" /> + <hkern u1="¡" u2="x" k="-12" /> + <hkern u1="¡" u2="v" k="10" /> + <hkern u1="¡" u2="X" k="10" /> + <hkern u1="¡" u2="V" k="70" /> + <hkern u1="¡" u2="7" k="-6" /> + <hkern u1="¢" u2="3" k="6" /> + <hkern u1="¥" u2="7" k="-16" /> + <hkern u1="¥" u2="4" k="6" /> + <hkern u1="¦" u2="x" k="-10" /> + <hkern u1="¦" u2="v" k="-41" /> + <hkern u1="¦" u2="X" k="-20" /> + <hkern u1="¦" u2="V" k="-33" /> + <hkern u1="¦" u2="8" k="6" /> + <hkern u1="¦" u2="7" k="-6" /> + <hkern u1="§" u2="V" k="10" /> + <hkern u1="¬" u2="3" k="6" /> + <hkern u1="°" u2="7" k="-20" /> + <hkern u1="°" u2="4" k="20" /> + <hkern u1="°" u2="1" k="-16" /> + <hkern u1="±" u2="7" k="6" /> + <hkern u1="±" u2="3" k="6" /> + <hkern u1="·" u2="x" k="20" /> + <hkern u1="·" u2="X" k="72" /> + <hkern u1="·" u2="V" k="72" /> + <hkern u1="·" u2="7" k="10" /> + <hkern u1="·" u2="1" k="16" /> + <hkern u1="¿" u2="ƒ" k="-55" /> + <hkern u1="¿" u2="ł" k="18" /> + <hkern u1="¿" u2="Ł" k="10" /> + <hkern u1="¿" u2="ß" k="29" /> + <hkern u1="¿" u2="v" k="76" /> + <hkern u1="¿" u2="V" k="174" /> + <hkern u1="¿" u2="9" k="29" /> + <hkern u1="¿" u2="4" k="10" /> + <hkern u1="¿" u2="3" k="6" /> + <hkern u1="¿" u2="1" k="6" /> + <hkern u1="Æ" u2="ï" k="-14" /> + <hkern u1="Æ" u2="î" k="-18" /> + <hkern u1="Æ" u2="ì" k="-25" /> + <hkern u1="Ç" u2="î" k="-23" /> + <hkern u1="È" u2="ï" k="-14" /> + <hkern u1="È" u2="î" k="-18" /> + <hkern u1="È" u2="ì" k="-25" /> + <hkern u1="É" u2="ï" k="-14" /> + <hkern u1="É" u2="î" k="-18" /> + <hkern u1="É" u2="ì" k="-25" /> + <hkern u1="Ê" u2="ï" k="-14" /> + <hkern u1="Ê" u2="î" k="-18" /> + <hkern u1="Ê" u2="ì" k="-25" /> + <hkern u1="Ë" u2="ï" k="-14" /> + <hkern u1="Ë" u2="î" k="-18" /> + <hkern u1="Ë" u2="ì" k="-25" /> + <hkern u1="Ì" u2="ï" k="-18" /> + <hkern u1="Ì" u2="î" k="-10" /> + <hkern u1="Ì" u2="ì" k="-18" /> + <hkern u1="Í" u2="ï" k="-18" /> + <hkern u1="Í" u2="î" k="-10" /> + <hkern u1="Í" u2="ì" k="-18" /> + <hkern u1="Í" u2="Ï" k="-57" /> + <hkern u1="Í" u2="Ì" k="-102" /> + <hkern u1="Î" u2="ï" k="-18" /> + <hkern u1="Î" u2="î" k="-10" /> + <hkern u1="Î" u2="ì" k="-18" /> + <hkern u1="Î" u2="Ï" k="-45" /> + <hkern u1="Î" u2="Î" k="-68" /> + <hkern u1="Î" u2="Ì" k="-35" /> + <hkern u1="Ï" u2="ï" k="-18" /> + <hkern u1="Ï" u2="î" k="-10" /> + <hkern u1="Ï" u2="ì" k="-18" /> + <hkern u1="Ï" u2="Ï" k="-23" /> + <hkern u1="Ï" u2="Î" k="-39" /> + <hkern u1="Ï" u2="Ì" k="-45" /> + <hkern u1="Ð" u2="ï" k="-4" /> + <hkern u1="Ð" u2="î" k="-4" /> + <hkern u1="Ñ" u2="ï" k="-18" /> + <hkern u1="Ñ" u2="î" k="-10" /> + <hkern u1="Ñ" u2="ì" k="-18" /> + <hkern u1="Ò" u2="ï" k="-4" /> + <hkern u1="Ò" u2="î" k="-4" /> + <hkern u1="Ó" u2="ï" k="-4" /> + <hkern u1="Ó" u2="î" k="-4" /> + <hkern u1="Ô" u2="ï" k="-4" /> + <hkern u1="Ô" u2="î" k="-4" /> + <hkern u1="Õ" u2="ï" k="-4" /> + <hkern u1="Õ" u2="î" k="-4" /> + <hkern u1="Ö" u2="ï" k="-4" /> + <hkern u1="Ö" u2="î" k="-4" /> + <hkern u1="×" u2="v" k="-18" /> + <hkern u1="×" u2="X" k="31" /> + <hkern u1="×" u2="V" k="20" /> + <hkern u1="Ø" u2="ï" k="-10" /> + <hkern u1="Ø" u2="î" k="-10" /> + <hkern u1="Ù" u2="ï" k="-10" /> + <hkern u1="Ù" u2="î" k="-14" /> + <hkern u1="Ù" u2="ì" k="-10" /> + <hkern u1="Ú" u2="ï" k="-10" /> + <hkern u1="Ú" u2="î" k="-14" /> + <hkern u1="Ú" u2="ì" k="-10" /> + <hkern u1="Û" u2="ï" k="-10" /> + <hkern u1="Û" u2="î" k="-14" /> + <hkern u1="Û" u2="ì" k="-10" /> + <hkern u1="Ü" u2="ï" k="-10" /> + <hkern u1="Ü" u2="î" k="-14" /> + <hkern u1="Ü" u2="ì" k="-10" /> + <hkern u1="Ý" u2="š" k="84" /> + <hkern u1="Ý" u2="ö" k="106" /> + <hkern u1="Ý" u2="õ" k="193" /> + <hkern u1="Ý" u2="ò" k="164" /> + <hkern u1="Ý" u2="ð" k="182" /> + <hkern u1="Ý" u2="ï" k="-49" /> + <hkern u1="Ý" u2="î" k="-6" /> + <hkern u1="Ý" u2="í" k="43" /> + <hkern u1="Ý" u2="ì" k="-82" /> + <hkern u1="Ý" u2="ë" k="129" /> + <hkern u1="Ý" u2="è" k="129" /> + <hkern u1="Ý" u2="ä" k="90" /> + <hkern u1="Ý" u2="â" k="104" /> + <hkern u1="Ý" u2="à" k="115" /> + <hkern u1="Þ" u2="™" k="72" /> + <hkern u1="Þ" u2="•" k="-10" /> + <hkern u1="Þ" u2="‡" k="-20" /> + <hkern u1="Þ" u2="†" k="-20" /> + <hkern u1="Þ" u2="ƒ" k="92" /> + <hkern u1="Þ" u2="ł" k="-33" /> + <hkern u1="Þ" u2="Ł" k="-16" /> + <hkern u1="Þ" u2="÷" k="-10" /> + <hkern u1="Þ" u2="ß" k="27" /> + <hkern u1="Þ" u2="×" k="-10" /> + <hkern u1="Þ" u2="¿" k="78" /> + <hkern u1="Þ" u2="·" k="-12" /> + <hkern u1="Þ" u2="~" k="-20" /> + <hkern u1="Þ" u2="x" k="-12" /> + <hkern u1="Þ" u2="v" k="-12" /> + <hkern u1="Þ" u2="_" k="80" /> + <hkern u1="Þ" u2="^" k="-10" /> + <hkern u1="Þ" u2="\" k="100" /> + <hkern u1="Þ" u2="X" k="59" /> + <hkern u1="Þ" u2="V" k="35" /> + <hkern u1="Þ" u2="@" k="-6" /> + <hkern u1="Þ" u2="?" k="-12" /> + <hkern u1="Þ" u2=">" k="-20" /> + <hkern u1="Þ" u2="=" k="-10" /> + <hkern u1="Þ" u2="<" k="-10" /> + <hkern u1="Þ" u2="/" k="111" /> + <hkern u1="Þ" u2="+" k="-10" /> + <hkern u1="Þ" u2=")" k="31" /> + <hkern u1="Þ" u2="&" k="31" /> + <hkern u1="ß" u2="™" k="29" /> + <hkern u1="ß" u2="‡" k="-10" /> + <hkern u1="ß" u2="ƒ" k="10" /> + <hkern u1="ß" u2="ł" k="-10" /> + <hkern u1="ß" u2="÷" k="-10" /> + <hkern u1="ß" u2="ï" k="-4" /> + <hkern u1="ß" u2="î" k="-4" /> + <hkern u1="ß" u2="ß" k="16" /> + <hkern u1="ß" u2="º" k="20" /> + <hkern u1="ß" u2="ª" k="41" /> + <hkern u1="ß" u2="v" k="10" /> + <hkern u1="ß" u2="_" k="-18" /> + <hkern u1="ß" u2="\" k="49" /> + <hkern u1="ß" u2=">" k="-47" /> + <hkern u1="ß" u2="=" k="-10" /> + <hkern u1="ß" u2="/" k="-12" /> + <hkern u1="ß" u2=")" k="-23" /> + <hkern u1="ß" u2="&" k="10" /> + <hkern u1="é" u2="\" k="135" /> + <hkern u1="ë" u2="\" k="135" /> + <hkern u1="ì" u2="™" k="29" /> + <hkern u1="ì" u2="\" k="51" /> + <hkern u1="í" u2="™" k="-37" /> + <hkern u1="í" u2="”" k="-104" /> + <hkern u1="í" u2="“" k="-53" /> + <hkern u1="í" u2="’" k="-104" /> + <hkern u1="í" u2="‘" k="-53" /> + <hkern u1="í" u2="š" k="-4" /> + <hkern u1="í" u2="ï" k="-115" /> + <hkern u1="í" u2="î" k="-82" /> + <hkern u1="í" u2="ì" k="-137" /> + <hkern u1="í" u2="}" k="-100" /> + <hkern u1="í" u2="|" k="-29" /> + <hkern u1="í" u2="i" k="-10" /> + <hkern u1="í" u2="]" k="-100" /> + <hkern u1="í" u2="\" k="-125" /> + <hkern u1="í" u2="?" k="-25" /> + <hkern u1="í" u2="*" k="-10" /> + <hkern u1="í" u2=")" k="-72" /> + <hkern u1="í" u2="'" k="-45" /> + <hkern u1="í" u2=""" k="-45" /> + <hkern u1="í" u2="!" k="-10" /> + <hkern u1="î" u2="™" k="-18" /> + <hkern u1="î" u2="†" k="-55" /> + <hkern u1="î" u2="”" k="-72" /> + <hkern u1="î" u2="“" k="-86" /> + <hkern u1="î" u2="’" k="-72" /> + <hkern u1="î" u2="‘" k="-86" /> + <hkern u1="î" u2="š" k="-4" /> + <hkern u1="î" u2="ï" k="-125" /> + <hkern u1="î" u2="î" k="-98" /> + <hkern u1="î" u2="ì" k="-29" /> + <hkern u1="î" u2="}" k="-18" /> + <hkern u1="î" u2="|" k="-18" /> + <hkern u1="î" u2="j" k="-10" /> + <hkern u1="î" u2="i" k="-14" /> + <hkern u1="î" u2="]" k="-18" /> + <hkern u1="î" u2="\" k="-51" /> + <hkern u1="î" u2="?" k="-92" /> + <hkern u1="î" u2="*" k="-72" /> + <hkern u1="î" u2=")" k="-18" /> + <hkern u1="î" u2="'" k="-45" /> + <hkern u1="î" u2="&" k="10" /> + <hkern u1="î" u2=""" k="-45" /> + <hkern u1="î" u2="!" k="-10" /> + <hkern u1="ï" u2="™" k="-37" /> + <hkern u1="ï" u2="†" k="-37" /> + <hkern u1="ï" u2="”" k="-80" /> + <hkern u1="ï" u2="“" k="-74" /> + <hkern u1="ï" u2="’" k="-80" /> + <hkern u1="ï" u2="‘" k="-74" /> + <hkern u1="ï" u2="š" k="-4" /> + <hkern u1="ï" u2="ï" k="-123" /> + <hkern u1="ï" u2="î" k="-111" /> + <hkern u1="ï" u2="ì" k="-113" /> + <hkern u1="ï" u2="ã" k="-10" /> + <hkern u1="ï" u2="}" k="-47" /> + <hkern u1="ï" u2="|" k="-18" /> + <hkern u1="ï" u2="j" k="-18" /> + <hkern u1="ï" u2="i" k="-18" /> + <hkern u1="ï" u2="]" k="-47" /> + <hkern u1="ï" u2="\" k="-57" /> + <hkern u1="ï" u2="?" k="-80" /> + <hkern u1="ï" u2="*" k="-66" /> + <hkern u1="ï" u2=")" k="-29" /> + <hkern u1="ï" u2="'" k="-45" /> + <hkern u1="ï" u2="&" k="10" /> + <hkern u1="ï" u2=""" k="-45" /> + <hkern u1="ï" u2="!" k="-10" /> + <hkern u1="ð" u2="”" k="43" /> + <hkern u1="ð" u2="“" k="43" /> + <hkern u1="ð" u2="’" k="43" /> + <hkern u1="ð" u2="‘" k="43" /> + <hkern u1="ð" u2="\" k="100" /> + <hkern u1="ó" u2="\" k="186" /> + <hkern u1="õ" u2="\" k="186" /> + <hkern u1="ö" u2="\" k="190" /> + <hkern u1="÷" u2="x" k="10" /> + <hkern u1="÷" u2="v" k="10" /> + <hkern u1="÷" u2="X" k="39" /> + <hkern u1="÷" u2="V" k="63" /> + <hkern u1="÷" u2="4" k="6" /> + <hkern u1="÷" u2="3" k="10" /> + <hkern u1="÷" u2="1" k="6" /> + <hkern u1="ł" u2="‡" k="-51" /> + <hkern u1="ł" u2="†" k="-29" /> + <hkern u1="ł" u2="ƒ" k="10" /> + <hkern u1="ł" u2="ł" k="-12" /> + <hkern u1="ł" u2="¿" k="10" /> + <hkern u1="ł" u2="º" k="-10" /> + <hkern u1="ł" u2="·" k="-12" /> + <hkern u1="ł" u2="¶" k="-23" /> + <hkern u1="ł" u2="x" k="-45" /> + <hkern u1="ł" u2="v" k="-43" /> + <hkern u1="ł" u2="@" k="-35" /> + <hkern u1="ł" u2="?" k="-10" /> + <hkern u1="ł" u2=">" k="-37" /> + <hkern u1="ł" u2="=" k="-18" /> + <hkern u1="ł" u2="/" k="-12" /> + <hkern u1="ł" u2="*" k="-18" /> + <hkern u1="ł" u2="&" k="18" /> + <hkern u1="Œ" u2="ï" k="-14" /> + <hkern u1="Œ" u2="î" k="-18" /> + <hkern u1="Œ" u2="ì" k="-25" /> + <hkern u1="Š" u2="ï" k="-6" /> + <hkern u1="Š" u2="î" k="-6" /> + <hkern u1="š" u2="\" k="96" /> + <hkern u1="Ÿ" u2="š" k="84" /> + <hkern u1="Ÿ" u2="ö" k="106" /> + <hkern u1="Ÿ" u2="õ" k="193" /> + <hkern u1="Ÿ" u2="ò" k="164" /> + <hkern u1="Ÿ" u2="ð" k="182" /> + <hkern u1="Ÿ" u2="ï" k="-49" /> + <hkern u1="Ÿ" u2="î" k="-6" /> + <hkern u1="Ÿ" u2="í" k="43" /> + <hkern u1="Ÿ" u2="ì" k="-82" /> + <hkern u1="Ÿ" u2="ë" k="129" /> + <hkern u1="Ÿ" u2="è" k="129" /> + <hkern u1="Ÿ" u2="ä" k="90" /> + <hkern u1="Ÿ" u2="â" k="104" /> + <hkern u1="Ÿ" u2="à" k="115" /> + <hkern u1="Ž" u2="ï" k="-33" /> + <hkern u1="Ž" u2="î" k="-33" /> + <hkern u1="Ž" u2="ì" k="-45" /> + <hkern u1="ž" u2="\" k="57" /> + <hkern u1="ƒ" u2="™" k="-18" /> + <hkern u1="ƒ" u2="‡" k="-23" /> + <hkern u1="ƒ" u2="†" k="-23" /> + <hkern u1="ƒ" u2="ƒ" k="166" /> + <hkern u1="ƒ" u2="÷" k="53" /> + <hkern u1="ƒ" u2="ï" k="-66" /> + <hkern u1="ƒ" u2="î" k="-47" /> + <hkern u1="ƒ" u2="ì" k="-66" /> + <hkern u1="ƒ" u2="×" k="-10" /> + <hkern u1="ƒ" u2="º" k="-10" /> + <hkern u1="ƒ" u2="¶" k="-8" /> + <hkern u1="ƒ" u2="ª" k="-10" /> + <hkern u1="ƒ" u2="¦" k="-18" /> + <hkern u1="ƒ" u2="~" k="51" /> + <hkern u1="ƒ" u2="x" k="12" /> + <hkern u1="ƒ" u2="v" k="12" /> + <hkern u1="ƒ" u2="_" k="80" /> + <hkern u1="ƒ" u2="\" k="-82" /> + <hkern u1="ƒ" u2="@" k="23" /> + <hkern u1="ƒ" u2="?" k="-18" /> + <hkern u1="ƒ" u2=">" k="-82" /> + <hkern u1="ƒ" u2="=" k="20" /> + <hkern u1="ƒ" u2="<" k="59" /> + <hkern u1="ƒ" u2="/" k="119" /> + <hkern u1="ƒ" u2="+" k="59" /> + <hkern u1="ƒ" u2="*" k="-61" /> + <hkern u1="ƒ" u2=")" k="-20" /> + <hkern u1="ƒ" u2="&" k="51" /> + <hkern u1="‘" u2="ð" k="66" /> + <hkern u1="‘" u2="ï" k="-80" /> + <hkern u1="‘" u2="î" k="-72" /> + <hkern u1="‘" u2="ì" k="-82" /> + <hkern u1="’" u2="ð" k="121" /> + <hkern u1="’" u2="ï" k="-35" /> + <hkern u1="’" u2="î" k="-45" /> + <hkern u1="’" u2="ì" k="-35" /> + <hkern u1="‚" u2="g" k="-20" /> + <hkern u1="“" u2="ð" k="66" /> + <hkern u1="“" u2="ï" k="-80" /> + <hkern u1="“" u2="î" k="-72" /> + <hkern u1="“" u2="ì" k="-82" /> + <hkern u1="”" u2="ð" k="121" /> + <hkern u1="”" u2="ï" k="-35" /> + <hkern u1="”" u2="î" k="-45" /> + <hkern u1="”" u2="ì" k="-35" /> + <hkern u1="„" u2="g" k="-20" /> + <hkern u1="†" u2="x" k="-31" /> + <hkern u1="†" u2="v" k="-61" /> + <hkern u1="†" u2="V" k="-33" /> + <hkern u1="‡" u2="ł" k="-10" /> + <hkern u1="‡" u2="Ł" k="-18" /> + <hkern u1="‡" u2="x" k="-31" /> + <hkern u1="‡" u2="v" k="-61" /> + <hkern u1="‡" u2="V" k="-20" /> + <hkern u1="•" u2="x" k="10" /> + <hkern u1="•" u2="X" k="80" /> + <hkern u1="•" u2="V" k="92" /> + <hkern u1="…" u2="g" k="31" /> + <hkern u1="−" u2="3" k="10" /> + <hkern u1="−" u2="2" k="6" /> + <hkern u1="−" u2=")" k="82" /> + <hkern u1="√" u2="9" k="20" /> + <hkern u1="√" u2="8" k="20" /> + <hkern u1="√" u2="5" k="27" /> + <hkern u1="√" u2="4" k="51" /> + <hkern u1="√" u2="3" k="20" /> + <hkern u1="√" u2="2" k="27" /> + <hkern u1="√" u2="1" k="16" /> + <hkern u1="∞" u2="7" k="6" /> + <hkern u1="∫" u2="9" k="-10" /> + <hkern u1="∫" u2="8" k="-6" /> + <hkern u1="∫" u2="7" k="-47" /> + <hkern u1="∫" u2="5" k="-10" /> + <hkern u1="∫" u2="3" k="-20" /> + <hkern u1="∫" u2="2" k="-20" /> + <hkern u1="∫" u2="1" k="-20" /> + <hkern u1="≈" u2="8" k="-10" /> + <hkern u1="≈" u2="7" k="10" /> + <hkern u1="≈" u2="4" k="-6" /> + <hkern u1="≠" u2="8" k="-6" /> + <hkern u1="≥" u2="1" k="6" /> + <hkern g1="approxequal" + g2="zero,six" + k="-10" /> + <hkern g1="asciitilde" + g2="zero,six" + k="-6" /> + <hkern g1="cent" + g2="zero,six" + k="6" /> + <hkern g1="copyright,registered" + g2="five" + k="6" /> + <hkern g1="copyright,registered" + g2="four" + k="6" /> + <hkern g1="copyright,registered" + g2="one" + k="6" /> + <hkern g1="copyright,registered" + g2="three" + k="16" /> + <hkern g1="dollar" + g2="zero,six" + k="6" /> + <hkern g1="equal" + g2="zero,six" + k="-6" /> + <hkern g1="greaterequal" + g2="zero,six" + k="-6" /> + <hkern g1="infinity" + g2="zero,six" + k="-6" /> + <hkern g1="less" + g2="zero,six" + k="-10" /> + <hkern g1="lessequal" + g2="zero,six" + k="-6" /> + <hkern g1="minus" + g2="zero,six" + k="-6" /> + <hkern g1="minus" + g2="bracketright,braceright" + k="45" /> + <hkern g1="notequal" + g2="zero,six" + k="-6" /> + <hkern g1="percent" + g2="zero,six" + k="10" /> + <hkern g1="plus" + g2="bracketright,braceright" + k="45" /> + <hkern g1="radical" + g2="zero,six" + k="51" /> + <hkern g1="sterling" + g2="zero,six" + k="6" /> + <hkern g1="backslash" + g2="zero,six" + k="20" /> + <hkern g1="bracketleft,braceleft" + g2="five" + k="10" /> + <hkern g1="bracketleft,braceleft" + g2="four" + k="16" /> + <hkern g1="bracketleft,braceleft" + g2="hyphen,endash,emdash" + k="23" /> + <hkern g1="bracketleft,braceleft" + g2="minus" + k="45" /> + <hkern g1="bracketleft,braceleft" + g2="nine" + k="-6" /> + <hkern g1="bracketleft,braceleft" + g2="plus" + k="45" /> + <hkern g1="bracketleft,braceleft" + g2="seven" + k="-27" /> + <hkern g1="colon,semicolon" + g2="nine" + k="-8" /> + <hkern g1="colon,semicolon" + g2="seven" + k="-6" /> + <hkern g1="comma,period,ellipsis" + g2="zero,six" + k="10" /> + <hkern g1="comma,period,ellipsis" + g2="four" + k="27" /> + <hkern g1="comma,period,ellipsis" + g2="seven" + k="10" /> + <hkern g1="comma,period,ellipsis" + g2="eight" + k="6" /> + <hkern g1="comma,period,ellipsis" + g2="one" + k="37" /> + <hkern g1="guilsinglleft" + g2="one" + k="-10" /> + <hkern g1="guilsinglleft" + g2="two" + k="-8" /> + <hkern g1="guilsinglleft" + g2="exclam" + k="10" /> + <hkern g1="guilsinglright" + g2="seven" + k="16" /> + <hkern g1="guilsinglright" + g2="one" + k="16" /> + <hkern g1="guilsinglright" + g2="two" + k="6" /> + <hkern g1="guilsinglright" + g2="three" + k="6" /> + <hkern g1="hyphen,endash,emdash" + g2="five" + k="6" /> + <hkern g1="hyphen,endash,emdash" + g2="four" + k="2" /> + <hkern g1="hyphen,endash,emdash" + g2="seven" + k="16" /> + <hkern g1="hyphen,endash,emdash" + g2="one" + k="10" /> + <hkern g1="hyphen,endash,emdash" + g2="three" + k="10" /> + <hkern g1="hyphen,endash,emdash" + g2="bracketright,braceright" + k="23" /> + <hkern g1="hyphen,endash,emdash" + g2="parenright" + k="82" /> + <hkern g1="hyphen,endash,emdash" + g2="space" + k="102" /> + <hkern g1="numbersign" + g2="zero,six" + k="10" /> + <hkern g1="parenleft" + g2="zero,six" + k="10" /> + <hkern g1="parenleft" + g2="hyphen,endash,emdash" + k="82" /> + <hkern g1="questiondown" + g2="zero,six" + k="10" /> + <hkern g1="questiondown" + g2="quoteleft,quotedblleft" + k="35" /> + <hkern g1="questiondown" + g2="quotesinglbase,quotedblbase" + k="-45" /> + <hkern g1="quotedbl,quotesingle" + g2="four" + k="27" /> + <hkern g1="quotedbl,quotesingle" + g2="seven" + k="-10" /> + <hkern g1="quotedbl,quotesingle" + g2="one" + k="-16" /> + <hkern g1="quotedbl,quotesingle" + g2="two" + k="-6" /> + <hkern g1="quoteleft,quotedblleft" + g2="zero,six" + k="6" /> + <hkern g1="quoteleft,quotedblleft" + g2="four" + k="37" /> + <hkern g1="quoteleft,quotedblleft" + g2="seven" + k="-10" /> + <hkern g1="quoteleft,quotedblleft" + g2="one" + k="-10" /> + <hkern g1="quoteright,quotedblright" + g2="zero,six" + k="10" /> + <hkern g1="quoteright,quotedblright" + g2="five" + k="16" /> + <hkern g1="quoteright,quotedblright" + g2="four" + k="37" /> + <hkern g1="quoteright,quotedblright" + g2="seven" + k="-10" /> + <hkern g1="quoteright,quotedblright" + g2="eight" + k="6" /> + <hkern g1="quoteright,quotedblright" + g2="one" + k="-6" /> + <hkern g1="quoteright,quotedblright" + g2="two" + k="6" /> + <hkern g1="quoteright,quotedblright" + g2="comma,period,ellipsis" + k="80" /> + <hkern g1="quoteright,quotedblright" + g2="question" + k="-23" /> + <hkern g1="quoteright,quotedblright" + g2="questiondown" + k="68" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="zero,six" + k="16" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="four" + k="16" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="seven" + k="10" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="one" + k="20" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="two" + k="-6" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="three" + k="10" /> + <hkern g1="slash" + g2="zero,six" + k="20" /> + <hkern g1="underscore" + g2="zero,six" + k="10" /> + <hkern g1="exclam" + g2="guilsinglright" + k="10" /> + <hkern g1="eight" + g2="comma,period,ellipsis" + k="6" /> + <hkern g1="eight" + g2="zero,six" + k="2" /> + <hkern g1="five" + g2="comma,period,ellipsis" + k="6" /> + <hkern g1="five" + g2="quoteleft,quotedblleft" + k="6" /> + <hkern g1="five" + g2="quotesinglbase,quotedblbase" + k="6" /> + <hkern g1="four" + g2="quoteleft,quotedblleft" + k="10" /> + <hkern g1="four" + g2="quoteright,quotedblright" + k="10" /> + <hkern g1="one" + g2="comma,period,ellipsis" + k="6" /> + <hkern g1="one" + g2="zero,six" + k="-2" /> + <hkern g1="one" + g2="quoteright,quotedblright" + k="6" /> + <hkern g1="one" + g2="bracketright,braceright" + k="-6" /> + <hkern g1="one" + g2="copyright,registered" + k="6" /> + <hkern g1="one" + g2="quotedbl,quotesingle" + k="6" /> + <hkern g1="seven" + g2="comma,period,ellipsis" + k="57" /> + <hkern g1="seven" + g2="quoteleft,quotedblleft" + k="-16" /> + <hkern g1="seven" + g2="quotesinglbase,quotedblbase" + k="37" /> + <hkern g1="seven" + g2="quoteright,quotedblright" + k="-10" /> + <hkern g1="seven" + g2="copyright,registered" + k="6" /> + <hkern g1="seven" + g2="quotedbl,quotesingle" + k="-10" /> + <hkern g1="seven" + g2="colon,semicolon" + k="16" /> + <hkern g1="seven" + g2="guilsinglleft" + k="31" /> + <hkern g1="seven" + g2="guilsinglright" + k="10" /> + <hkern g1="seven" + g2="hyphen,endash,emdash" + k="27" /> + <hkern g1="six" + g2="comma,period,ellipsis" + k="6" /> + <hkern g1="six" + g2="quotesinglbase,quotedblbase" + k="6" /> + <hkern g1="six" + g2="copyright,registered" + k="6" /> + <hkern g1="three" + g2="comma,period,ellipsis" + k="6" /> + <hkern g1="three" + g2="quoteright,quotedblright" + k="2" /> + <hkern g1="three" + g2="hyphen,endash,emdash" + k="6" /> + <hkern g1="two" + g2="guilsinglright" + k="2" /> + <hkern g1="zero,nine" + g2="comma,period,ellipsis" + k="20" /> + <hkern g1="zero,nine" + g2="zero,six" + k="2" /> + <hkern g1="zero,nine" + g2="quoteleft,quotedblleft" + k="6" /> + <hkern g1="zero,nine" + g2="quotesinglbase,quotedblbase" + k="10" /> + <hkern g1="zero,nine" + g2="quoteright,quotedblright" + k="6" /> + <hkern g1="zero,nine" + g2="approxequal" + k="-10" /> + <hkern g1="zero,nine" + g2="asciitilde" + k="-6" /> + <hkern g1="zero,nine" + g2="backslash" + k="20" /> + <hkern g1="zero,nine" + g2="eight" + k="2" /> + <hkern g1="zero,nine" + g2="equal" + k="-6" /> + <hkern g1="zero,nine" + g2="five" + k="2" /> + <hkern g1="zero,nine" + g2="greaterequal" + k="-6" /> + <hkern g1="zero,nine" + g2="infinity" + k="-6" /> + <hkern g1="zero,nine" + g2="lessequal" + k="-6" /> + <hkern g1="zero,nine" + g2="minus" + k="-6" /> + <hkern g1="zero,nine" + g2="notequal" + k="-6" /> + <hkern g1="zero,nine" + g2="numbersign" + k="10" /> + <hkern g1="zero,nine" + g2="one" + k="2" /> + <hkern g1="zero,nine" + g2="parenright" + k="10" /> + <hkern g1="zero,nine" + g2="percent" + k="10" /> + <hkern g1="zero,nine" + g2="slash" + k="20" /> + <hkern g1="zero,nine" + g2="summation" + k="10" /> + <hkern g1="zero,nine" + g2="three" + k="2" /> + <hkern g1="zero,nine" + g2="underscore" + k="10" /> + <hkern g1="space" + g2="hyphen,endash,emdash" + k="102" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="66" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="J" + k="-12" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="Oslash" + k="51" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="S,Scaron" + k="12" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="133" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="41" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="V" + k="123" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="88" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="Y,Yacute,Ydieresis" + k="156" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="10" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="ampersand" + k="43" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="asciicircum" + k="78" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="asciitilde" + k="41" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="asterisk" + k="188" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="at" + k="80" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="backslash" + k="154" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="braceleft" + k="23" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="bullet" + k="72" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="20" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="copyright,registered" + k="66" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="dagger" + k="72" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="divide" + k="31" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="germandbls" + k="6" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="guilsinglleft" + k="59" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="hyphen,endash,emdash" + k="59" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="less" + k="41" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="m,n,p,r,ntilde" + k="6" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="ordfeminine" + k="180" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="ordmasculine" + k="158" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="oslash" + k="10" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="paragraph" + k="70" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="parenleft" + k="12" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="periodcentered" + k="59" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="plus" + k="45" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="question" + k="106" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="questiondown" + k="-53" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="quotedbl,quotesingle" + k="119" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="quoteleft,quotedblleft" + k="225" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="quoteright,quotedblright" + k="225" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="quotesinglbase,quotedblbase" + k="-12" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="slash" + k="-41" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="t" + k="47" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="trademark" + k="211" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="43" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="underscore" + k="-61" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="80" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="w" + k="61" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="74" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="Eth" + k="10" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="X" + k="29" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="Z,Zcaron" + k="-14" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="bracketright,braceright" + k="10" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="colon,semicolon" + k="10" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="daggerdbl" + k="10" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="equal" + k="18" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="exclam" + k="18" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="exclamdown" + k="10" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="f,fi,fl,f_f_i,f_f_l" + k="18" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="greater" + k="-18" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="guilsinglright" + k="10" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="multiply" + k="10" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="parenright" + k="18" /> + <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,uni2206" + g2="section" + k="10" /> + <hkern g1="B" + g2="J" + k="-35" /> + <hkern g1="B" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="-4" /> + <hkern g1="B" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="10" /> + <hkern g1="B" + g2="Y,Yacute,Ydieresis" + k="25" /> + <hkern g1="B" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="6" /> + <hkern g1="B" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="-10" /> + <hkern g1="B" + g2="guilsinglleft" + k="20" /> + <hkern g1="B" + g2="m,n,p,r,ntilde" + k="6" /> + <hkern g1="B" + g2="oslash" + k="2" /> + <hkern g1="B" + g2="quoteright,quotedblright" + k="27" /> + <hkern g1="B" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="23" /> + <hkern g1="B" + g2="w" + k="6" /> + <hkern g1="B" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="6" /> + <hkern g1="B" + g2="Z,Zcaron" + k="-10" /> + <hkern g1="B" + g2="f,fi,fl,f_f_i,f_f_l" + k="6" /> + <hkern g1="B" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="37" /> + <hkern g1="B" + g2="comma,period,ellipsis" + k="16" /> + <hkern g1="B" + g2="s,scaron" + k="6" /> + <hkern g1="C,Ccedilla" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="16" /> + <hkern g1="C,Ccedilla" + g2="Oslash" + k="10" /> + <hkern g1="C,Ccedilla" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="14" /> + <hkern g1="C,Ccedilla" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="10" /> + <hkern g1="C,Ccedilla" + g2="V" + k="31" /> + <hkern g1="C,Ccedilla" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="35" /> + <hkern g1="C,Ccedilla" + g2="Y,Yacute,Ydieresis" + k="61" /> + <hkern g1="C,Ccedilla" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="33" /> + <hkern g1="C,Ccedilla" + g2="ampersand" + k="35" /> + <hkern g1="C,Ccedilla" + g2="asciicircum" + k="12" /> + <hkern g1="C,Ccedilla" + g2="at" + k="35" /> + <hkern g1="C,Ccedilla" + g2="backslash" + k="66" /> + <hkern g1="C,Ccedilla" + g2="braceleft" + k="23" /> + <hkern g1="C,Ccedilla" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="37" /> + <hkern g1="C,Ccedilla" + g2="copyright,registered" + k="6" /> + <hkern g1="C,Ccedilla" + g2="germandbls" + k="41" /> + <hkern g1="C,Ccedilla" + g2="guilsinglleft" + k="39" /> + <hkern g1="C,Ccedilla" + g2="hyphen,endash,emdash" + k="10" /> + <hkern g1="C,Ccedilla" + g2="m,n,p,r,ntilde" + k="23" /> + <hkern g1="C,Ccedilla" + g2="ordfeminine" + k="33" /> + <hkern g1="C,Ccedilla" + g2="ordmasculine" + k="6" /> + <hkern g1="C,Ccedilla" + g2="oslash" + k="27" /> + <hkern g1="C,Ccedilla" + g2="plus" + k="10" /> + <hkern g1="C,Ccedilla" + g2="questiondown" + k="59" /> + <hkern g1="C,Ccedilla" + g2="quoteleft,quotedblleft" + k="10" /> + <hkern g1="C,Ccedilla" + g2="quoteright,quotedblright" + k="10" /> + <hkern g1="C,Ccedilla" + g2="quotesinglbase,quotedblbase" + k="29" /> + <hkern g1="C,Ccedilla" + g2="slash" + k="66" /> + <hkern g1="C,Ccedilla" + g2="t" + k="14" /> + <hkern g1="C,Ccedilla" + g2="trademark" + k="20" /> + <hkern g1="C,Ccedilla" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="41" /> + <hkern g1="C,Ccedilla" + g2="underscore" + k="31" /> + <hkern g1="C,Ccedilla" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="20" /> + <hkern g1="C,Ccedilla" + g2="w" + k="20" /> + <hkern g1="C,Ccedilla" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="27" /> + <hkern g1="C,Ccedilla" + g2="X" + k="49" /> + <hkern g1="C,Ccedilla" + g2="bracketright,braceright" + k="16" /> + <hkern g1="C,Ccedilla" + g2="f,fi,fl,f_f_i,f_f_l" + k="16" /> + <hkern g1="C,Ccedilla" + g2="greater" + k="-12" /> + <hkern g1="C,Ccedilla" + g2="guilsinglright" + k="10" /> + <hkern g1="C,Ccedilla" + g2="parenright" + k="29" /> + <hkern g1="C,Ccedilla" + g2="section" + k="14" /> + <hkern g1="C,Ccedilla" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="55" /> + <hkern g1="C,Ccedilla" + g2="comma,period,ellipsis" + k="39" /> + <hkern g1="C,Ccedilla" + g2="s,scaron" + k="12" /> + <hkern g1="C,Ccedilla" + g2="b,h,k,l,thorn" + k="20" /> + <hkern g1="C,Ccedilla" + g2="florin" + k="82" /> + <hkern g1="C,Ccedilla" + g2="x" + k="16" /> + <hkern g1="C,Ccedilla" + g2="z,zcaron" + k="12" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="S,Scaron" + k="6" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="43" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="V" + k="51" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="45" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="Y,Yacute,Ydieresis" + k="96" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="ampersand" + k="59" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="asciicircum" + k="-20" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="asciitilde" + k="-20" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="asterisk" + k="6" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="backslash" + k="86" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="-4" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="copyright,registered" + k="-12" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="dagger" + k="-10" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="divide" + k="-10" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="germandbls" + k="23" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="guilsinglleft" + k="14" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="less" + k="-10" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="ordfeminine" + k="20" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="periodcentered" + k="-10" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="plus" + k="-10" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="questiondown" + k="70" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="quoteleft,quotedblleft" + k="25" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="quoteright,quotedblright" + k="31" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="quotesinglbase,quotedblbase" + k="102" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="slash" + k="86" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="t" + k="-47" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="trademark" + k="68" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="underscore" + k="82" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="X" + k="76" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="Z,Zcaron" + k="20" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="bracketright,braceright" + k="51" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="daggerdbl" + k="-10" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="equal" + k="-10" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="exclam" + k="10" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="exclamdown" + k="10" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="f,fi,fl,f_f_i,f_f_l" + k="-20" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="greater" + k="-20" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="guilsinglright" + k="20" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="multiply" + k="-10" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="parenright" + k="51" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="66" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="comma,period,ellipsis" + k="72" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="b,h,k,l,thorn" + k="4" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="florin" + k="104" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="z,zcaron" + k="-4" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="Lslash" + k="-12" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="bracketleft" + k="6" /> + <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" + g2="lslash" + k="-10" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="6" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="J" + k="31" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="Oslash" + k="6" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="-18" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="V" + k="-4" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-4" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="Y,Yacute,Ydieresis" + k="-10" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="16" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="ampersand" + k="18" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="at" + k="29" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="braceleft" + k="43" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="27" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="dagger" + k="-10" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="germandbls" + k="27" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="guilsinglleft" + k="41" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="hyphen,endash,emdash" + k="6" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="m,n,p,r,ntilde" + k="16" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="ordfeminine" + k="20" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="ordmasculine" + k="20" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="oslash" + k="27" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="plus" + k="10" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="quoteright,quotedblright" + k="6" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="23" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="27" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="w" + k="23" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="27" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="X" + k="-4" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="Z,Zcaron" + k="-18" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="bracketright,braceright" + k="-16" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="daggerdbl" + k="-10" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="f,fi,fl,f_f_i,f_f_l" + k="6" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="greater" + k="-31" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="guilsinglright" + k="12" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="parenright" + k="-12" /> + <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" + g2="s,scaron" + k="6" /> + <hkern g1="F" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="10" /> + <hkern g1="F" + g2="J" + k="78" /> + <hkern g1="F" + g2="Oslash" + k="4" /> + <hkern g1="F" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="-72" /> + <hkern g1="F" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="6" /> + <hkern g1="F" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-14" /> + <hkern g1="F" + g2="Y,Yacute,Ydieresis" + k="-14" /> + <hkern g1="F" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="72" /> + <hkern g1="F" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="68" /> + <hkern g1="F" + g2="guilsinglleft" + k="41" /> + <hkern g1="F" + g2="hyphen,endash,emdash" + k="31" /> + <hkern g1="F" + g2="m,n,p,r,ntilde" + k="66" /> + <hkern g1="F" + g2="oslash" + k="78" /> + <hkern g1="F" + g2="quotedbl,quotesingle" + k="-41" /> + <hkern g1="F" + g2="quoteleft,quotedblleft" + k="-33" /> + <hkern g1="F" + g2="quoteright,quotedblright" + k="-16" /> + <hkern g1="F" + g2="quotesinglbase,quotedblbase" + k="131" /> + <hkern g1="F" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="84" /> + <hkern g1="F" + g2="w" + k="37" /> + <hkern g1="F" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="49" /> + <hkern g1="F" + g2="Eth" + k="-6" /> + <hkern g1="F" + g2="Z,Zcaron" + k="-31" /> + <hkern g1="F" + g2="bracketright,braceright" + k="-35" /> + <hkern g1="F" + g2="colon,semicolon" + k="10" /> + <hkern g1="F" + g2="f,fi,fl,f_f_i,f_f_l" + k="12" /> + <hkern g1="F" + g2="guilsinglright" + k="20" /> + <hkern g1="F" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="106" /> + <hkern g1="F" + g2="comma,period,ellipsis" + k="215" /> + <hkern g1="F" + g2="s,scaron" + k="31" /> + <hkern g1="F" + g2="b,h,k,l,thorn" + k="-6" /> + <hkern g1="F" + g2="z,zcaron" + k="31" /> + <hkern g1="F" + g2="i,igrave,iacute,icircumflex,idieresis" + k="6" /> + <hkern g1="F" + g2="j" + k="10" /> + <hkern g1="G" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="20" /> + <hkern g1="G" + g2="V" + k="35" /> + <hkern g1="G" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="31" /> + <hkern g1="G" + g2="Y,Yacute,Ydieresis" + k="66" /> + <hkern g1="G" + g2="ampersand" + k="35" /> + <hkern g1="G" + g2="asciitilde" + k="-6" /> + <hkern g1="G" + g2="backslash" + k="70" /> + <hkern g1="G" + g2="braceleft" + k="12" /> + <hkern g1="G" + g2="germandbls" + k="10" /> + <hkern g1="G" + g2="guilsinglleft" + k="25" /> + <hkern g1="G" + g2="ordmasculine" + k="10" /> + <hkern g1="G" + g2="question" + k="10" /> + <hkern g1="G" + g2="questiondown" + k="-23" /> + <hkern g1="G" + g2="quoteleft,quotedblleft" + k="10" /> + <hkern g1="G" + g2="quoteright,quotedblright" + k="14" /> + <hkern g1="G" + g2="slash" + k="-6" /> + <hkern g1="G" + g2="t" + k="-29" /> + <hkern g1="G" + g2="trademark" + k="31" /> + <hkern g1="G" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="6" /> + <hkern g1="G" + g2="underscore" + k="-20" /> + <hkern g1="G" + g2="X" + k="4" /> + <hkern g1="G" + g2="bracketright,braceright" + k="10" /> + <hkern g1="G" + g2="exclamdown" + k="10" /> + <hkern g1="G" + g2="greater" + k="-33" /> + <hkern g1="G" + g2="guilsinglright" + k="10" /> + <hkern g1="G" + g2="parenright" + k="10" /> + <hkern g1="G" + g2="s,scaron" + k="-10" /> + <hkern g1="G" + g2="x" + k="-4" /> + <hkern g1="G" + g2="lslash" + k="-23" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="6" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="ampersand" + k="10" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="at" + k="12" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="braceleft" + k="35" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="bullet" + k="12" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="4" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="germandbls" + k="14" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="guilsinglleft" + k="12" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="ordfeminine" + k="18" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="ordmasculine" + k="10" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="oslash" + k="10" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="questiondown" + k="35" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="4" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="w" + k="4" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="greater" + k="-12" /> + <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" + g2="lslash" + k="10" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="J" + k="4" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="-4" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="4" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="ampersand" + k="25" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="asciitilde" + k="6" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="at" + k="14" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="backslash" + k="10" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="braceleft" + k="41" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="bullet" + k="41" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="10" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="divide" + k="6" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="germandbls" + k="31" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="guilsinglleft" + k="31" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="hyphen,endash,emdash" + k="6" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="less" + k="6" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="m,n,p,r,ntilde" + k="10" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="ordfeminine" + k="10" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="ordmasculine" + k="10" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="oslash" + k="10" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="periodcentered" + k="20" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="plus" + k="6" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="questiondown" + k="70" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="quotesinglbase,quotedblbase" + k="82" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="slash" + k="70" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="trademark" + k="10" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="10" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="underscore" + k="35" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="X" + k="4" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="bracketright,braceright" + k="10" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="colon,semicolon" + k="10" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="equal" + k="4" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="exclamdown" + k="31" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="guilsinglright" + k="10" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="parenright" + k="10" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="57" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="comma,period,ellipsis" + k="66" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="s,scaron" + k="4" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="florin" + k="102" /> + <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,uni01C7,uni01CA" + g2="lslash" + k="10" /> + <hkern g1="K" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="109" /> + <hkern g1="K" + g2="J" + k="25" /> + <hkern g1="K" + g2="Oslash" + k="59" /> + <hkern g1="K" + g2="S,Scaron" + k="25" /> + <hkern g1="K" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="-4" /> + <hkern g1="K" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="16" /> + <hkern g1="K" + g2="V" + k="16" /> + <hkern g1="K" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="16" /> + <hkern g1="K" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="41" /> + <hkern g1="K" + g2="ampersand" + k="90" /> + <hkern g1="K" + g2="asciicircum" + k="41" /> + <hkern g1="K" + g2="asciitilde" + k="133" /> + <hkern g1="K" + g2="asterisk" + k="12" /> + <hkern g1="K" + g2="at" + k="98" /> + <hkern g1="K" + g2="backslash" + k="-18" /> + <hkern g1="K" + g2="braceleft" + k="92" /> + <hkern g1="K" + g2="bullet" + k="94" /> + <hkern g1="K" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="82" /> + <hkern g1="K" + g2="copyright,registered" + k="117" /> + <hkern g1="K" + g2="divide" + k="61" /> + <hkern g1="K" + g2="germandbls" + k="57" /> + <hkern g1="K" + g2="guilsinglleft" + k="129" /> + <hkern g1="K" + g2="hyphen,endash,emdash" + k="147" /> + <hkern g1="K" + g2="less" + k="121" /> + <hkern g1="K" + g2="m,n,p,r,ntilde" + k="27" /> + <hkern g1="K" + g2="ordfeminine" + k="82" /> + <hkern g1="K" + g2="ordmasculine" + k="72" /> + <hkern g1="K" + g2="oslash" + k="47" /> + <hkern g1="K" + g2="paragraph" + k="37" /> + <hkern g1="K" + g2="parenleft" + k="18" /> + <hkern g1="K" + g2="periodcentered" + k="82" /> + <hkern g1="K" + g2="plus" + k="74" /> + <hkern g1="K" + g2="question" + k="25" /> + <hkern g1="K" + g2="questiondown" + k="-39" /> + <hkern g1="K" + g2="quoteleft,quotedblleft" + k="29" /> + <hkern g1="K" + g2="quoteright,quotedblright" + k="10" /> + <hkern g1="K" + g2="slash" + k="-33" /> + <hkern g1="K" + g2="t" + k="84" /> + <hkern g1="K" + g2="trademark" + k="-10" /> + <hkern g1="K" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="113" /> + <hkern g1="K" + g2="underscore" + k="-51" /> + <hkern g1="K" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="121" /> + <hkern g1="K" + g2="w" + k="102" /> + <hkern g1="K" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="137" /> + <hkern g1="K" + g2="Eth" + k="29" /> + <hkern g1="K" + g2="Z,Zcaron" + k="-10" /> + <hkern g1="K" + g2="bracketright,braceright" + k="-6" /> + <hkern g1="K" + g2="colon,semicolon" + k="20" /> + <hkern g1="K" + g2="equal" + k="76" /> + <hkern g1="K" + g2="f,fi,fl,f_f_i,f_f_l" + k="45" /> + <hkern g1="K" + g2="greater" + k="-29" /> + <hkern g1="K" + g2="guilsinglright" + k="61" /> + <hkern g1="K" + g2="multiply" + k="20" /> + <hkern g1="K" + g2="parenright" + k="-6" /> + <hkern g1="K" + g2="section" + k="27" /> + <hkern g1="K" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="12" /> + <hkern g1="K" + g2="s,scaron" + k="20" /> + <hkern g1="K" + g2="florin" + k="57" /> + <hkern g1="K" + g2="x" + k="12" /> + <hkern g1="K" + g2="lslash" + k="10" /> + <hkern g1="L,Lslash" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="53" /> + <hkern g1="L,Lslash" + g2="J" + k="-37" /> + <hkern g1="L,Lslash" + g2="Oslash" + k="33" /> + <hkern g1="L,Lslash" + g2="S,Scaron" + k="-4" /> + <hkern g1="L,Lslash" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="143" /> + <hkern g1="L,Lslash" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="20" /> + <hkern g1="L,Lslash" + g2="V" + k="133" /> + <hkern g1="L,Lslash" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="98" /> + <hkern g1="L,Lslash" + g2="Y,Yacute,Ydieresis" + k="143" /> + <hkern g1="L,Lslash" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="-10" /> + <hkern g1="L,Lslash" + g2="ampersand" + k="37" /> + <hkern g1="L,Lslash" + g2="asciicircum" + k="84" /> + <hkern g1="L,Lslash" + g2="asciitilde" + k="57" /> + <hkern g1="L,Lslash" + g2="asterisk" + k="143" /> + <hkern g1="L,Lslash" + g2="at" + k="27" /> + <hkern g1="L,Lslash" + g2="backslash" + k="172" /> + <hkern g1="L,Lslash" + g2="braceleft" + k="35" /> + <hkern g1="L,Lslash" + g2="bullet" + k="33" /> + <hkern g1="L,Lslash" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="2" /> + <hkern g1="L,Lslash" + g2="copyright,registered" + k="33" /> + <hkern g1="L,Lslash" + g2="dagger" + k="18" /> + <hkern g1="L,Lslash" + g2="divide" + k="2" /> + <hkern g1="L,Lslash" + g2="germandbls" + k="6" /> + <hkern g1="L,Lslash" + g2="guilsinglleft" + k="41" /> + <hkern g1="L,Lslash" + g2="hyphen,endash,emdash" + k="55" /> + <hkern g1="L,Lslash" + g2="less" + k="55" /> + <hkern g1="L,Lslash" + g2="ordfeminine" + k="127" /> + <hkern g1="L,Lslash" + g2="ordmasculine" + k="127" /> + <hkern g1="L,Lslash" + g2="oslash" + k="6" /> + <hkern g1="L,Lslash" + g2="paragraph" + k="94" /> + <hkern g1="L,Lslash" + g2="periodcentered" + k="18" /> + <hkern g1="L,Lslash" + g2="plus" + k="33" /> + <hkern g1="L,Lslash" + g2="question" + k="106" /> + <hkern g1="L,Lslash" + g2="questiondown" + k="-53" /> + <hkern g1="L,Lslash" + g2="quotedbl,quotesingle" + k="145" /> + <hkern g1="L,Lslash" + g2="quoteleft,quotedblleft" + k="162" /> + <hkern g1="L,Lslash" + g2="quoteright,quotedblright" + k="141" /> + <hkern g1="L,Lslash" + g2="quotesinglbase,quotedblbase" + k="-59" /> + <hkern g1="L,Lslash" + g2="slash" + k="-74" /> + <hkern g1="L,Lslash" + g2="t" + k="45" /> + <hkern g1="L,Lslash" + g2="trademark" + k="236" /> + <hkern g1="L,Lslash" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="33" /> + <hkern g1="L,Lslash" + g2="underscore" + k="-72" /> + <hkern g1="L,Lslash" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="92" /> + <hkern g1="L,Lslash" + g2="w" + k="78" /> + <hkern g1="L,Lslash" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="96" /> + <hkern g1="L,Lslash" + g2="Z,Zcaron" + k="-29" /> + <hkern g1="L,Lslash" + g2="bracketright,braceright" + k="-12" /> + <hkern g1="L,Lslash" + g2="equal" + k="14" /> + <hkern g1="L,Lslash" + g2="f,fi,fl,f_f_i,f_f_l" + k="20" /> + <hkern g1="L,Lslash" + g2="greater" + k="-29" /> + <hkern g1="L,Lslash" + g2="multiply" + k="-10" /> + <hkern g1="L,Lslash" + g2="parenright" + k="-12" /> + <hkern g1="L,Lslash" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="-23" /> + <hkern g1="L,Lslash" + g2="comma,period,ellipsis" + k="-20" /> + <hkern g1="L,Lslash" + g2="s,scaron" + k="-14" /> + <hkern g1="L,Lslash" + g2="z,zcaron" + k="-14" /> + <hkern g1="L,Lslash" + g2="j" + k="-10" /> + <hkern g1="L,Lslash" + g2="bar" + k="-23" /> + <hkern g1="L,Lslash" + g2="brokenbar" + k="-23" /> + <hkern g1="Oslash" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="33" /> + <hkern g1="Oslash" + g2="V" + k="45" /> + <hkern g1="Oslash" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="45" /> + <hkern g1="Oslash" + g2="Y,Yacute,Ydieresis" + k="90" /> + <hkern g1="Oslash" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="6" /> + <hkern g1="Oslash" + g2="ampersand" + k="18" /> + <hkern g1="Oslash" + g2="backslash" + k="66" /> + <hkern g1="Oslash" + g2="dagger" + k="-10" /> + <hkern g1="Oslash" + g2="germandbls" + k="41" /> + <hkern g1="Oslash" + g2="ordfeminine" + k="12" /> + <hkern g1="Oslash" + g2="questiondown" + k="86" /> + <hkern g1="Oslash" + g2="quotesinglbase,quotedblbase" + k="72" /> + <hkern g1="Oslash" + g2="slash" + k="86" /> + <hkern g1="Oslash" + g2="trademark" + k="18" /> + <hkern g1="Oslash" + g2="underscore" + k="82" /> + <hkern g1="Oslash" + g2="X" + k="53" /> + <hkern g1="Oslash" + g2="Z,Zcaron" + k="16" /> + <hkern g1="Oslash" + g2="bracketright,braceright" + k="51" /> + <hkern g1="Oslash" + g2="daggerdbl" + k="-10" /> + <hkern g1="Oslash" + g2="equal" + k="-10" /> + <hkern g1="Oslash" + g2="f,fi,fl,f_f_i,f_f_l" + k="-10" /> + <hkern g1="Oslash" + g2="guilsinglright" + k="10" /> + <hkern g1="Oslash" + g2="parenright" + k="51" /> + <hkern g1="Oslash" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="61" /> + <hkern g1="Oslash" + g2="comma,period,ellipsis" + k="72" /> + <hkern g1="Oslash" + g2="florin" + k="74" /> + <hkern g1="Oslash" + g2="lslash" + k="-6" /> + <hkern g1="P" + g2="J" + k="135" /> + <hkern g1="P" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="2" /> + <hkern g1="P" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="10" /> + <hkern g1="P" + g2="Y,Yacute,Ydieresis" + k="25" /> + <hkern g1="P" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="43" /> + <hkern g1="P" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="68" /> + <hkern g1="P" + g2="guilsinglleft" + k="53" /> + <hkern g1="P" + g2="hyphen,endash,emdash" + k="20" /> + <hkern g1="P" + g2="m,n,p,r,ntilde" + k="27" /> + <hkern g1="P" + g2="oslash" + k="68" /> + <hkern g1="P" + g2="quotedbl,quotesingle" + k="-20" /> + <hkern g1="P" + g2="quoteleft,quotedblleft" + k="-16" /> + <hkern g1="P" + g2="quoteright,quotedblright" + k="-12" /> + <hkern g1="P" + g2="quotesinglbase,quotedblbase" + k="131" /> + <hkern g1="P" + g2="t" + k="-20" /> + <hkern g1="P" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="41" /> + <hkern g1="P" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-12" /> + <hkern g1="P" + g2="Eth" + k="-12" /> + <hkern g1="P" + g2="Z,Zcaron" + k="12" /> + <hkern g1="P" + g2="bracketright,braceright" + k="10" /> + <hkern g1="P" + g2="f,fi,fl,f_f_i,f_f_l" + k="-14" /> + <hkern g1="P" + g2="guilsinglright" + k="-12" /> + <hkern g1="P" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="119" /> + <hkern g1="P" + g2="comma,period,ellipsis" + k="274" /> + <hkern g1="P" + g2="s,scaron" + k="37" /> + <hkern g1="P" + g2="b,h,k,l,thorn" + k="16" /> + <hkern g1="P" + g2="z,zcaron" + k="12" /> + <hkern g1="P" + g2="j" + k="6" /> + <hkern g1="P" + g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Ntilde,Thorn,IJ,uni01C4,uni01C7,uni01CA,uni01F1" + k="4" /> + <hkern g1="Q" + g2="J" + k="-6" /> + <hkern g1="Q" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="37" /> + <hkern g1="Q" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="45" /> + <hkern g1="Q" + g2="Y,Yacute,Ydieresis" + k="92" /> + <hkern g1="Q" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="-4" /> + <hkern g1="Q" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="-4" /> + <hkern g1="Q" + g2="guilsinglleft" + k="10" /> + <hkern g1="Q" + g2="quoteleft,quotedblleft" + k="18" /> + <hkern g1="Q" + g2="quoteright,quotedblright" + k="31" /> + <hkern g1="Q" + g2="t" + k="-14" /> + <hkern g1="Q" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="4" /> + <hkern g1="Q" + g2="w" + k="6" /> + <hkern g1="Q" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="6" /> + <hkern g1="Q" + g2="Eth" + k="-6" /> + <hkern g1="Q" + g2="Z,Zcaron" + k="-4" /> + <hkern g1="Q" + g2="bracketright,braceright" + k="39" /> + <hkern g1="Q" + g2="f,fi,fl,f_f_i,f_f_l" + k="-10" /> + <hkern g1="Q" + g2="guilsinglright" + k="27" /> + <hkern g1="Q" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="16" /> + <hkern g1="Q" + g2="comma,period,ellipsis" + k="39" /> + <hkern g1="Q" + g2="z,zcaron" + k="-4" /> + <hkern g1="Q" + g2="j" + k="-18" /> + <hkern g1="R" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="10" /> + <hkern g1="R" + g2="J" + k="27" /> + <hkern g1="R" + g2="Oslash" + k="6" /> + <hkern g1="R" + g2="V" + k="10" /> + <hkern g1="R" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="14" /> + <hkern g1="R" + g2="Y,Yacute,Ydieresis" + k="20" /> + <hkern g1="R" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="14" /> + <hkern g1="R" + g2="ampersand" + k="25" /> + <hkern g1="R" + g2="asciicircum" + k="-12" /> + <hkern g1="R" + g2="asciitilde" + k="12" /> + <hkern g1="R" + g2="asterisk" + k="-12" /> + <hkern g1="R" + g2="at" + k="23" /> + <hkern g1="R" + g2="backslash" + k="39" /> + <hkern g1="R" + g2="braceleft" + k="20" /> + <hkern g1="R" + g2="bullet" + k="33" /> + <hkern g1="R" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="33" /> + <hkern g1="R" + g2="dagger" + k="-31" /> + <hkern g1="R" + g2="divide" + k="10" /> + <hkern g1="R" + g2="germandbls" + k="16" /> + <hkern g1="R" + g2="guilsinglleft" + k="35" /> + <hkern g1="R" + g2="hyphen,endash,emdash" + k="33" /> + <hkern g1="R" + g2="less" + k="6" /> + <hkern g1="R" + g2="m,n,p,r,ntilde" + k="6" /> + <hkern g1="R" + g2="ordfeminine" + k="23" /> + <hkern g1="R" + g2="oslash" + k="43" /> + <hkern g1="R" + g2="periodcentered" + k="6" /> + <hkern g1="R" + g2="plus" + k="20" /> + <hkern g1="R" + g2="quoteleft,quotedblleft" + k="-12" /> + <hkern g1="R" + g2="t" + k="-14" /> + <hkern g1="R" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="27" /> + <hkern g1="R" + g2="underscore" + k="-25" /> + <hkern g1="R" + g2="w" + k="12" /> + <hkern g1="R" + g2="Z,Zcaron" + k="-4" /> + <hkern g1="R" + g2="bracketright,braceright" + k="-12" /> + <hkern g1="R" + g2="daggerdbl" + k="-31" /> + <hkern g1="R" + g2="f,fi,fl,f_f_i,f_f_l" + k="-4" /> + <hkern g1="R" + g2="greater" + k="-47" /> + <hkern g1="R" + g2="multiply" + k="-16" /> + <hkern g1="R" + g2="parenright" + k="-6" /> + <hkern g1="R" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="6" /> + <hkern g1="R" + g2="comma,period,ellipsis" + k="25" /> + <hkern g1="R" + g2="s,scaron" + k="6" /> + <hkern g1="R" + g2="florin" + k="57" /> + <hkern g1="R" + g2="x" + k="-12" /> + <hkern g1="R" + g2="lslash" + k="10" /> + <hkern g1="S,Scaron" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="6" /> + <hkern g1="S,Scaron" + g2="J" + k="-12" /> + <hkern g1="S,Scaron" + g2="Oslash" + k="6" /> + <hkern g1="S,Scaron" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="6" /> + <hkern g1="S,Scaron" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="6" /> + <hkern g1="S,Scaron" + g2="V" + k="4" /> + <hkern g1="S,Scaron" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="4" /> + <hkern g1="S,Scaron" + g2="Y,Yacute,Ydieresis" + k="35" /> + <hkern g1="S,Scaron" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="6" /> + <hkern g1="S,Scaron" + g2="ampersand" + k="18" /> + <hkern g1="S,Scaron" + g2="asciicircum" + k="6" /> + <hkern g1="S,Scaron" + g2="backslash" + k="47" /> + <hkern g1="S,Scaron" + g2="braceleft" + k="23" /> + <hkern g1="S,Scaron" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="12" /> + <hkern g1="S,Scaron" + g2="germandbls" + k="47" /> + <hkern g1="S,Scaron" + g2="guilsinglleft" + k="6" /> + <hkern g1="S,Scaron" + g2="hyphen,endash,emdash" + k="6" /> + <hkern g1="S,Scaron" + g2="m,n,p,r,ntilde" + k="39" /> + <hkern g1="S,Scaron" + g2="ordfeminine" + k="31" /> + <hkern g1="S,Scaron" + g2="ordmasculine" + k="20" /> + <hkern g1="S,Scaron" + g2="oslash" + k="12" /> + <hkern g1="S,Scaron" + g2="questiondown" + k="18" /> + <hkern g1="S,Scaron" + g2="quoteleft,quotedblleft" + k="10" /> + <hkern g1="S,Scaron" + g2="quotesinglbase,quotedblbase" + k="18" /> + <hkern g1="S,Scaron" + g2="slash" + k="29" /> + <hkern g1="S,Scaron" + g2="t" + k="-2" /> + <hkern g1="S,Scaron" + g2="trademark" + k="18" /> + <hkern g1="S,Scaron" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="33" /> + <hkern g1="S,Scaron" + g2="underscore" + k="12" /> + <hkern g1="S,Scaron" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="41" /> + <hkern g1="S,Scaron" + g2="w" + k="33" /> + <hkern g1="S,Scaron" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="47" /> + <hkern g1="S,Scaron" + g2="X" + k="18" /> + <hkern g1="S,Scaron" + g2="Z,Zcaron" + k="-10" /> + <hkern g1="S,Scaron" + g2="bracketright,braceright" + k="-8" /> + <hkern g1="S,Scaron" + g2="colon,semicolon" + k="10" /> + <hkern g1="S,Scaron" + g2="daggerdbl" + k="-10" /> + <hkern g1="S,Scaron" + g2="exclamdown" + k="10" /> + <hkern g1="S,Scaron" + g2="f,fi,fl,f_f_i,f_f_l" + k="16" /> + <hkern g1="S,Scaron" + g2="greater" + k="-29" /> + <hkern g1="S,Scaron" + g2="guilsinglright" + k="6" /> + <hkern g1="S,Scaron" + g2="multiply" + k="6" /> + <hkern g1="S,Scaron" + g2="parenright" + k="10" /> + <hkern g1="S,Scaron" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="25" /> + <hkern g1="S,Scaron" + g2="comma,period,ellipsis" + k="10" /> + <hkern g1="S,Scaron" + g2="b,h,k,l,thorn" + k="10" /> + <hkern g1="S,Scaron" + g2="florin" + k="94" /> + <hkern g1="S,Scaron" + g2="x" + k="16" /> + <hkern g1="S,Scaron" + g2="z,zcaron" + k="6" /> + <hkern g1="S,Scaron" + g2="Lslash" + k="-6" /> + <hkern g1="S,Scaron" + g2="lslash" + k="-4" /> + <hkern g1="S,Scaron" + g2="i,igrave,iacute,icircumflex,idieresis" + k="6" /> + <hkern g1="S,Scaron" + g2="j" + k="6" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="43" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="J" + k="156" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="Oslash" + k="33" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="-41" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="-4" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="V" + k="-41" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-41" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="Y,Yacute,Ydieresis" + k="-41" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="174" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="ampersand" + k="72" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="asciitilde" + k="135" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="asterisk" + k="-41" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="at" + k="51" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="backslash" + k="-63" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="braceleft" + k="72" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="bullet" + k="162" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="195" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="copyright,registered" + k="20" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="dagger" + k="-51" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="divide" + k="96" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="germandbls" + k="68" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="guilsinglleft" + k="238" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="hyphen,endash,emdash" + k="133" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="less" + k="100" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="m,n,p,r,ntilde" + k="141" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="oslash" + k="164" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="paragraph" + k="-31" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="periodcentered" + k="102" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="plus" + k="113" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="question" + k="-33" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="questiondown" + k="152" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="quotedbl,quotesingle" + k="-53" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="quoteleft,quotedblleft" + k="-61" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="quoteright,quotedblright" + k="-61" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="quotesinglbase,quotedblbase" + k="182" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="slash" + k="172" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="t" + k="47" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="trademark" + k="-53" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="176" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="underscore" + k="92" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="125" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="w" + k="131" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="125" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="X" + k="-12" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="Z,Zcaron" + k="-18" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="bracketright,braceright" + k="-23" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="colon,semicolon" + k="109" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="daggerdbl" + k="-39" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="equal" + k="61" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="exclamdown" + k="53" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="f,fi,fl,f_f_i,f_f_l" + k="45" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="greater" + k="-8" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="guilsinglright" + k="137" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="multiply" + k="55" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="parenright" + k="-23" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="section" + k="-23" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="133" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="comma,period,ellipsis" + k="223" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="s,scaron" + k="143" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="b,h,k,l,thorn" + k="-4" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="florin" + k="199" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="x" + k="113" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="z,zcaron" + k="78" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="lslash" + k="41" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="i,igrave,iacute,icircumflex,idieresis" + k="23" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="j" + k="12" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="bar" + k="-33" /> + <hkern g1="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + g2="brokenbar" + k="-41" /> + <hkern g1="Thorn" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="-6" /> + <hkern g1="Thorn" + g2="J" + k="20" /> + <hkern g1="Thorn" + g2="Oslash" + k="-6" /> + <hkern g1="Thorn" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="45" /> + <hkern g1="Thorn" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="35" /> + <hkern g1="Thorn" + g2="Y,Yacute,Ydieresis" + k="70" /> + <hkern g1="Thorn" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="-16" /> + <hkern g1="Thorn" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="-16" /> + <hkern g1="Thorn" + g2="oslash" + k="6" /> + <hkern g1="Thorn" + g2="quoteleft,quotedblleft" + k="18" /> + <hkern g1="Thorn" + g2="quotesinglbase,quotedblbase" + k="74" /> + <hkern g1="Thorn" + g2="t" + k="-37" /> + <hkern g1="Thorn" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="4" /> + <hkern g1="Thorn" + g2="w" + k="-12" /> + <hkern g1="Thorn" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-12" /> + <hkern g1="Thorn" + g2="Eth" + k="-16" /> + <hkern g1="Thorn" + g2="Z,Zcaron" + k="16" /> + <hkern g1="Thorn" + g2="bracketright,braceright" + k="31" /> + <hkern g1="Thorn" + g2="f,fi,fl,f_f_i,f_f_l" + k="-33" /> + <hkern g1="Thorn" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="84" /> + <hkern g1="Thorn" + g2="comma,period,ellipsis" + k="72" /> + <hkern g1="Thorn" + g2="s,scaron" + k="-12" /> + <hkern g1="Thorn" + g2="z,zcaron" + k="-23" /> + <hkern g1="V" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="51" /> + <hkern g1="V" + g2="J" + k="127" /> + <hkern g1="V" + g2="Oslash" + k="51" /> + <hkern g1="V" + g2="S,Scaron" + k="10" /> + <hkern g1="V" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="-41" /> + <hkern g1="V" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-20" /> + <hkern g1="V" + g2="Y,Yacute,Ydieresis" + k="-20" /> + <hkern g1="V" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="123" /> + <hkern g1="V" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="127" /> + <hkern g1="V" + g2="copyright,registered" + k="49" /> + <hkern g1="V" + g2="guilsinglleft" + k="133" /> + <hkern g1="V" + g2="hyphen,endash,emdash" + k="127" /> + <hkern g1="V" + g2="m,n,p,r,ntilde" + k="90" /> + <hkern g1="V" + g2="oslash" + k="127" /> + <hkern g1="V" + g2="quotedbl,quotesingle" + k="-33" /> + <hkern g1="V" + g2="quoteleft,quotedblleft" + k="-20" /> + <hkern g1="V" + g2="quoteright,quotedblright" + k="-23" /> + <hkern g1="V" + g2="quotesinglbase,quotedblbase" + k="201" /> + <hkern g1="V" + g2="t" + k="14" /> + <hkern g1="V" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="86" /> + <hkern g1="V" + g2="w" + k="31" /> + <hkern g1="V" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="29" /> + <hkern g1="V" + g2="bracketright,braceright" + k="-33" /> + <hkern g1="V" + g2="colon,semicolon" + k="100" /> + <hkern g1="V" + g2="f,fi,fl,f_f_i,f_f_l" + k="4" /> + <hkern g1="V" + g2="guilsinglright" + k="74" /> + <hkern g1="V" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="123" /> + <hkern g1="V" + g2="comma,period,ellipsis" + k="233" /> + <hkern g1="V" + g2="s,scaron" + k="78" /> + <hkern g1="V" + g2="z,zcaron" + k="37" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="45" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="J" + k="113" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="Oslash" + k="51" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="S,Scaron" + k="4" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="-41" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="V" + k="-20" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-20" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="Y,Yacute,Ydieresis" + k="-20" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="61" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="ampersand" + k="37" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="asciitilde" + k="41" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="asterisk" + k="-20" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="at" + k="41" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="backslash" + k="-41" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="braceleft" + k="53" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="bullet" + k="53" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="76" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="copyright,registered" + k="18" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="dagger" + k="-18" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="divide" + k="45" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="germandbls" + k="53" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="guilsinglleft" + k="90" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="hyphen,endash,emdash" + k="63" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="less" + k="41" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="m,n,p,r,ntilde" + k="61" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="oslash" + k="88" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="periodcentered" + k="53" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="plus" + k="61" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="questiondown" + k="141" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="quotedbl,quotesingle" + k="-23" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="quoteleft,quotedblleft" + k="-33" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="quoteright,quotedblright" + k="-33" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="quotesinglbase,quotedblbase" + k="174" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="slash" + k="141" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="t" + k="6" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="trademark" + k="-41" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="66" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="underscore" + k="96" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="14" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="w" + k="20" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="29" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="Eth" + k="4" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="X" + k="-20" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="Z,Zcaron" + k="-4" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="bracketright,braceright" + k="-23" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="colon,semicolon" + k="31" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="daggerdbl" + k="-10" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="equal" + k="20" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="exclamdown" + k="39" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="f,fi,fl,f_f_i,f_f_l" + k="4" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="greater" + k="-18" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="guilsinglright" + k="20" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="multiply" + k="10" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="parenright" + k="-23" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="88" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="comma,period,ellipsis" + k="186" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="s,scaron" + k="41" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="florin" + k="123" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="x" + k="4" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="z,zcaron" + k="10" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="lslash" + k="10" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="bar" + k="-33" /> + <hkern g1="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + g2="brokenbar" + k="-33" /> + <hkern g1="X" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="63" /> + <hkern g1="X" + g2="J" + k="49" /> + <hkern g1="X" + g2="Oslash" + k="53" /> + <hkern g1="X" + g2="S,Scaron" + k="18" /> + <hkern g1="X" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="-12" /> + <hkern g1="X" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="4" /> + <hkern g1="X" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-20" /> + <hkern g1="X" + g2="Y,Yacute,Ydieresis" + k="-20" /> + <hkern g1="X" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="18" /> + <hkern g1="X" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="70" /> + <hkern g1="X" + g2="copyright,registered" + k="82" /> + <hkern g1="X" + g2="guilsinglleft" + k="164" /> + <hkern g1="X" + g2="hyphen,endash,emdash" + k="119" /> + <hkern g1="X" + g2="m,n,p,r,ntilde" + k="4" /> + <hkern g1="X" + g2="oslash" + k="39" /> + <hkern g1="X" + g2="quotedbl,quotesingle" + k="-12" /> + <hkern g1="X" + g2="quoteleft,quotedblleft" + k="-12" /> + <hkern g1="X" + g2="quoteright,quotedblright" + k="-12" /> + <hkern g1="X" + g2="t" + k="29" /> + <hkern g1="X" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="49" /> + <hkern g1="X" + g2="w" + k="53" /> + <hkern g1="X" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="59" /> + <hkern g1="X" + g2="Z,Zcaron" + k="-12" /> + <hkern g1="X" + g2="bracketright,braceright" + k="-23" /> + <hkern g1="X" + g2="colon,semicolon" + k="18" /> + <hkern g1="X" + g2="f,fi,fl,f_f_i,f_f_l" + k="10" /> + <hkern g1="X" + g2="guilsinglright" + k="61" /> + <hkern g1="X" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="29" /> + <hkern g1="X" + g2="comma,period,ellipsis" + k="10" /> + <hkern g1="X" + g2="s,scaron" + k="18" /> + <hkern g1="X" + g2="z,zcaron" + k="-6" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="96" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="J" + k="176" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="Oslash" + k="86" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="S,Scaron" + k="35" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="-41" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="V" + k="-20" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-20" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="Y,Yacute,Ydieresis" + k="-20" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="156" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="ampersand" + k="131" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="asciicircum" + k="18" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="asciitilde" + k="133" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="asterisk" + k="10" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="at" + k="100" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="backslash" + k="-31" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="braceleft" + k="59" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="bullet" + k="172" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="199" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="copyright,registered" + k="74" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="divide" + k="113" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="germandbls" + k="96" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="guilsinglleft" + k="219" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="hyphen,endash,emdash" + k="182" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="less" + k="141" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="m,n,p,r,ntilde" + k="133" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="ordfeminine" + k="18" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="ordmasculine" + k="18" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="oslash" + k="184" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="periodcentered" + k="133" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="plus" + k="121" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="questiondown" + k="205" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="quotedbl,quotesingle" + k="-12" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="quoteleft,quotedblleft" + k="-23" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="quoteright,quotedblright" + k="-23" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="quotesinglbase,quotedblbase" + k="233" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="slash" + k="207" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="t" + k="43" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="trademark" + k="-18" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="137" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="underscore" + k="152" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="96" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="w" + k="106" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="92" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="Eth" + k="18" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="X" + k="-20" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="Z,Zcaron" + k="-6" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="bracketright,braceright" + k="-23" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="colon,semicolon" + k="145" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="equal" + k="72" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="exclamdown" + k="90" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="f,fi,fl,f_f_i,f_f_l" + k="55" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="guilsinglright" + k="98" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="multiply" + k="61" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="parenright" + k="-23" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="156" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="comma,period,ellipsis" + k="266" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="s,scaron" + k="143" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="b,h,k,l,thorn" + k="4" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="florin" + k="184" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="x" + k="72" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="z,zcaron" + k="86" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="Lslash" + k="18" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="lslash" + k="18" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="i,igrave,iacute,icircumflex,idieresis" + k="14" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="j" + k="6" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="bar" + k="-20" /> + <hkern g1="Y,Yacute,Ydieresis" + g2="brokenbar" + k="-20" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="41" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="Oslash" + k="27" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="-35" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="Y,Yacute,Ydieresis" + k="-6" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="ampersand" + k="18" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="asciitilde" + k="10" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="at" + k="16" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="bullet" + k="31" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="14" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="copyright,registered" + k="10" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="dagger" + k="-10" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="divide" + k="10" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="germandbls" + k="6" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="guilsinglleft" + k="55" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="hyphen,endash,emdash" + k="70" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="less" + k="14" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="oslash" + k="10" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="periodcentered" + k="31" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="plus" + k="16" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="question" + k="-6" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="questiondown" + k="-10" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="trademark" + k="-10" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="14" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="underscore" + k="-31" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="4" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="w" + k="10" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="23" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="X" + k="-12" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="daggerdbl" + k="-10" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="f,fi,fl,f_f_i,f_f_l" + k="-14" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="multiply" + k="-10" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="florin" + k="23" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="bar" + k="-10" /> + <hkern g1="Z,Zcaron,uni01C4,uni01F1" + g2="brokenbar" + k="-10" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="ampersand" + k="39" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="asterisk" + k="41" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="at" + k="20" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="backslash" + k="123" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="ordfeminine" + k="31" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="ordmasculine" + k="27" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="quoteleft,quotedblleft" + k="74" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="quoteright,quotedblright" + k="41" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="trademark" + k="121" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="16" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="underscore" + k="-43" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="25" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="4" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="bracketright,braceright" + k="10" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="bullet" + k="4" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="4" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="colon,semicolon" + k="4" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="dagger" + k="10" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="daggerdbl" + k="10" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="exclam" + k="18" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="paragraph" + k="10" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="parenright" + k="10" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="question" + k="18" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="quotedbl,quotesingle" + k="18" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="t" + k="4" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="14" /> + <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" + g2="w" + k="10" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="ampersand" + k="39" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="asterisk" + k="63" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="backslash" + k="197" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="ordfeminine" + k="45" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="ordmasculine" + k="35" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="quoteleft,quotedblleft" + k="82" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="quoteright,quotedblright" + k="82" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="trademark" + k="139" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="6" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="underscore" + k="51" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="45" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="bracketright,braceright" + k="59" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="colon,semicolon" + k="14" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="dagger" + k="10" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="daggerdbl" + k="-10" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="exclam" + k="18" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="parenright" + k="59" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="question" + k="55" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="quotedbl,quotesingle" + k="51" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="t" + k="6" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="31" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="w" + k="25" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="comma,period,ellipsis" + k="35" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="germandbls" + k="6" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="lslash" + k="-23" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="quotesinglbase,quotedblbase" + k="31" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="slash" + k="82" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="x" + k="35" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="z,zcaron" + k="6" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="asciitilde" + k="-10" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="exclamdown" + k="18" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="florin" + k="37" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="guilsinglright" + k="10" /> + <hkern g1="b,o,p,eth,ograve,oacute,ocircumflex,otilde,odieresis,thorn" + g2="questiondown" + k="37" /> + <hkern g1="c,ccedilla" + g2="ampersand" + k="33" /> + <hkern g1="c,ccedilla" + g2="asterisk" + k="31" /> + <hkern g1="c,ccedilla" + g2="at" + k="6" /> + <hkern g1="c,ccedilla" + g2="backslash" + k="154" /> + <hkern g1="c,ccedilla" + g2="ordfeminine" + k="25" /> + <hkern g1="c,ccedilla" + g2="ordmasculine" + k="20" /> + <hkern g1="c,ccedilla" + g2="quoteleft,quotedblleft" + k="49" /> + <hkern g1="c,ccedilla" + g2="quoteright,quotedblright" + k="37" /> + <hkern g1="c,ccedilla" + g2="trademark" + k="98" /> + <hkern g1="c,ccedilla" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="14" /> + <hkern g1="c,ccedilla" + g2="underscore" + k="12" /> + <hkern g1="c,ccedilla" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="20" /> + <hkern g1="c,ccedilla" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="6" /> + <hkern g1="c,ccedilla" + g2="bracketright,braceright" + k="18" /> + <hkern g1="c,ccedilla" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="10" /> + <hkern g1="c,ccedilla" + g2="parenright" + k="29" /> + <hkern g1="c,ccedilla" + g2="question" + k="10" /> + <hkern g1="c,ccedilla" + g2="quotedbl,quotesingle" + k="29" /> + <hkern g1="c,ccedilla" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="20" /> + <hkern g1="c,ccedilla" + g2="w" + k="20" /> + <hkern g1="c,ccedilla" + g2="comma,period,ellipsis" + k="10" /> + <hkern g1="c,ccedilla" + g2="quotesinglbase,quotedblbase" + k="16" /> + <hkern g1="c,ccedilla" + g2="slash" + k="35" /> + <hkern g1="c,ccedilla" + g2="x" + k="14" /> + <hkern g1="c,ccedilla" + g2="questiondown" + k="20" /> + <hkern g1="c,ccedilla" + g2="oslash" + k="10" /> + <hkern g1="c,ccedilla" + g2="hyphen,endash,emdash" + k="4" /> + <hkern g1="d,l,fl" + g2="ampersand" + k="18" /> + <hkern g1="d,l,fl" + g2="backslash" + k="10" /> + <hkern g1="d,l,fl" + g2="ordfeminine" + k="18" /> + <hkern g1="d,l,fl" + g2="ordmasculine" + k="10" /> + <hkern g1="d,l,fl" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="6" /> + <hkern g1="d,l,fl" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="4" /> + <hkern g1="d,l,fl" + g2="dagger" + k="-10" /> + <hkern g1="d,l,fl" + g2="daggerdbl" + k="-10" /> + <hkern g1="d,l,fl" + g2="comma,period,ellipsis" + k="10" /> + <hkern g1="d,l,fl" + g2="germandbls" + k="6" /> + <hkern g1="d,l,fl" + g2="exclamdown" + k="10" /> + <hkern g1="d,l,fl" + g2="questiondown" + k="10" /> + <hkern g1="d,l,fl" + g2="guilsinglleft" + k="10" /> + <hkern g1="d,l,fl" + g2="periodcentered" + k="10" /> + <hkern g1="d,l,fl" + g2="plus" + k="18" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="ampersand" + k="35" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="asterisk" + k="41" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="backslash" + k="154" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="ordfeminine" + k="35" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="ordmasculine" + k="35" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="quoteleft,quotedblleft" + k="74" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="quoteright,quotedblright" + k="82" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="trademark" + k="154" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="16" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="underscore" + k="12" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="16" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="bracketright,braceright" + k="31" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="paragraph" + k="10" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="parenright" + k="39" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="question" + k="47" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="quotedbl,quotesingle" + k="31" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="20" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="w" + k="14" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="comma,period,ellipsis" + k="27" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="germandbls" + k="6" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="lslash" + k="-12" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="quotesinglbase,quotedblbase" + k="20" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="slash" + k="14" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="x" + k="14" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="exclamdown" + k="10" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="questiondown" + k="41" /> + <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" + g2="divide" + k="-10" /> + <hkern g1="f" + g2="asterisk" + k="-82" /> + <hkern g1="f" + g2="at" + k="-14" /> + <hkern g1="f" + g2="backslash" + k="-72" /> + <hkern g1="f" + g2="ordfeminine" + k="-10" /> + <hkern g1="f" + g2="ordmasculine" + k="-18" /> + <hkern g1="f" + g2="quoteleft,quotedblleft" + k="-92" /> + <hkern g1="f" + g2="quoteright,quotedblright" + k="-70" /> + <hkern g1="f" + g2="trademark" + k="-59" /> + <hkern g1="f" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="6" /> + <hkern g1="f" + g2="underscore" + k="59" /> + <hkern g1="f" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-45" /> + <hkern g1="f" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="16" /> + <hkern g1="f" + g2="bracketright,braceright" + k="-47" /> + <hkern g1="f" + g2="bullet" + k="12" /> + <hkern g1="f" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="27" /> + <hkern g1="f" + g2="colon,semicolon" + k="-18" /> + <hkern g1="f" + g2="dagger" + k="-100" /> + <hkern g1="f" + g2="daggerdbl" + k="-90" /> + <hkern g1="f" + g2="exclam" + k="-35" /> + <hkern g1="f" + g2="paragraph" + k="-80" /> + <hkern g1="f" + g2="parenright" + k="-53" /> + <hkern g1="f" + g2="question" + k="-59" /> + <hkern g1="f" + g2="quotedbl,quotesingle" + k="-102" /> + <hkern g1="f" + g2="t" + k="-33" /> + <hkern g1="f" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="-25" /> + <hkern g1="f" + g2="w" + k="-25" /> + <hkern g1="f" + g2="comma,period,ellipsis" + k="121" /> + <hkern g1="f" + g2="lslash" + k="-12" /> + <hkern g1="f" + g2="quotesinglbase,quotedblbase" + k="100" /> + <hkern g1="f" + g2="slash" + k="27" /> + <hkern g1="f" + g2="x" + k="-31" /> + <hkern g1="f" + g2="z,zcaron" + k="-39" /> + <hkern g1="f" + g2="asciitilde" + k="12" /> + <hkern g1="f" + g2="exclamdown" + k="-10" /> + <hkern g1="f" + g2="guilsinglright" + k="-18" /> + <hkern g1="f" + g2="questiondown" + k="66" /> + <hkern g1="f" + g2="oslash" + k="27" /> + <hkern g1="f" + g2="hyphen,endash,emdash" + k="14" /> + <hkern g1="f" + g2="guilsinglleft" + k="20" /> + <hkern g1="f" + g2="periodcentered" + k="-10" /> + <hkern g1="f" + g2="plus" + k="12" /> + <hkern g1="f" + g2="asciicircum" + k="-51" /> + <hkern g1="f" + g2="bar" + k="-61" /> + <hkern g1="f" + g2="brokenbar" + k="-82" /> + <hkern g1="f" + g2="copyright,registered" + k="-20" /> + <hkern g1="f" + g2="f,fi,fl,f_f_i,f_f_l" + k="2" /> + <hkern g1="f" + g2="greater" + k="-80" /> + <hkern g1="f" + g2="j" + k="-29" /> + <hkern g1="f" + g2="multiply" + k="-41" /> + <hkern g1="f" + g2="section" + k="-51" /> + <hkern g1="f" + g2="s,scaron" + k="-10" /> + <hkern g1="g" + g2="ampersand" + k="33" /> + <hkern g1="g" + g2="backslash" + k="100" /> + <hkern g1="g" + g2="ordfeminine" + k="37" /> + <hkern g1="g" + g2="ordmasculine" + k="4" /> + <hkern g1="g" + g2="quoteleft,quotedblleft" + k="10" /> + <hkern g1="g" + g2="quoteright,quotedblright" + k="29" /> + <hkern g1="g" + g2="trademark" + k="61" /> + <hkern g1="g" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="10" /> + <hkern g1="g" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="10" /> + <hkern g1="g" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="10" /> + <hkern g1="g" + g2="bracketright,braceright" + k="18" /> + <hkern g1="g" + g2="exclam" + k="10" /> + <hkern g1="g" + g2="parenright" + k="18" /> + <hkern g1="g" + g2="question" + k="10" /> + <hkern g1="g" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="4" /> + <hkern g1="g" + g2="w" + k="10" /> + <hkern g1="g" + g2="comma,period,ellipsis" + k="10" /> + <hkern g1="g" + g2="germandbls" + k="10" /> + <hkern g1="g" + g2="hyphen,endash,emdash" + k="4" /> + <hkern g1="g" + g2="guilsinglleft" + k="18" /> + <hkern g1="g" + g2="divide" + k="6" /> + <hkern g1="germandbls" + g2="quoteleft,quotedblleft" + k="10" /> + <hkern g1="germandbls" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="14" /> + <hkern g1="germandbls" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="6" /> + <hkern g1="germandbls" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="-4" /> + <hkern g1="germandbls" + g2="bracketright,braceright" + k="-23" /> + <hkern g1="germandbls" + g2="t" + k="4" /> + <hkern g1="germandbls" + g2="w" + k="10" /> + <hkern g1="germandbls" + g2="oslash" + k="-4" /> + <hkern g1="germandbls" + g2="s,scaron" + k="-4" /> + <hkern g1="h,m,n,ntilde" + g2="ampersand" + k="18" /> + <hkern g1="h,m,n,ntilde" + g2="asterisk" + k="12" /> + <hkern g1="h,m,n,ntilde" + g2="at" + k="14" /> + <hkern g1="h,m,n,ntilde" + g2="backslash" + k="137" /> + <hkern g1="h,m,n,ntilde" + g2="ordfeminine" + k="31" /> + <hkern g1="h,m,n,ntilde" + g2="ordmasculine" + k="18" /> + <hkern g1="h,m,n,ntilde" + g2="quoteleft,quotedblleft" + k="63" /> + <hkern g1="h,m,n,ntilde" + g2="quoteright,quotedblright" + k="94" /> + <hkern g1="h,m,n,ntilde" + g2="trademark" + k="129" /> + <hkern g1="h,m,n,ntilde" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="12" /> + <hkern g1="h,m,n,ntilde" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="14" /> + <hkern g1="h,m,n,ntilde" + g2="colon,semicolon" + k="4" /> + <hkern g1="h,m,n,ntilde" + g2="dagger" + k="14" /> + <hkern g1="h,m,n,ntilde" + g2="question" + k="35" /> + <hkern g1="h,m,n,ntilde" + g2="quotedbl,quotesingle" + k="10" /> + <hkern g1="h,m,n,ntilde" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="14" /> + <hkern g1="h,m,n,ntilde" + g2="w" + k="4" /> + <hkern g1="h,m,n,ntilde" + g2="germandbls" + k="12" /> + <hkern g1="h,m,n,ntilde" + g2="exclamdown" + k="4" /> + <hkern g1="h,m,n,ntilde" + g2="periodcentered" + k="4" /> + <hkern g1="h,m,n,ntilde" + g2="copyright,registered" + k="6" /> + <hkern g1="h,m,n,ntilde" + g2="equal" + k="6" /> + <hkern g1="i,q,igrave,iacute,icircumflex,idieresis,fi,f_f_i" + g2="ampersand" + k="18" /> + <hkern g1="i,q,igrave,iacute,icircumflex,idieresis,fi,f_f_i" + g2="backslash" + k="78" /> + <hkern g1="i,q,igrave,iacute,icircumflex,idieresis,fi,f_f_i" + g2="trademark" + k="10" /> + <hkern g1="i,q,igrave,iacute,icircumflex,idieresis,fi,f_f_i" + g2="question" + k="10" /> + <hkern g1="i,q,igrave,iacute,icircumflex,idieresis,fi,f_f_i" + g2="quotesinglbase,quotedblbase" + k="10" /> + <hkern g1="i,q,igrave,iacute,icircumflex,idieresis,fi,f_f_i" + g2="exclamdown" + k="10" /> + <hkern g1="i,q,igrave,iacute,icircumflex,idieresis,fi,f_f_i" + g2="guilsinglleft" + k="10" /> + <hkern g1="j" + g2="ampersand" + k="18" /> + <hkern g1="j" + g2="at" + k="6" /> + <hkern g1="j" + g2="backslash" + k="10" /> + <hkern g1="j" + g2="ordfeminine" + k="10" /> + <hkern g1="j" + g2="quoteright,quotedblright" + k="-10" /> + <hkern g1="j" + g2="dagger" + k="-18" /> + <hkern g1="j" + g2="daggerdbl" + k="-57" /> + <hkern g1="j" + g2="comma,period,ellipsis" + k="10" /> + <hkern g1="j" + g2="germandbls" + k="10" /> + <hkern g1="j" + g2="asciitilde" + k="10" /> + <hkern g1="j" + g2="guilsinglleft" + k="10" /> + <hkern g1="j" + g2="periodcentered" + k="10" /> + <hkern g1="j" + g2="f,fi,fl,f_f_i,f_f_l" + k="-4" /> + <hkern g1="j" + g2="greater" + k="-18" /> + <hkern g1="k" + g2="ampersand" + k="33" /> + <hkern g1="k" + g2="asterisk" + k="12" /> + <hkern g1="k" + g2="at" + k="10" /> + <hkern g1="k" + g2="backslash" + k="66" /> + <hkern g1="k" + g2="quoteleft,quotedblleft" + k="-10" /> + <hkern g1="k" + g2="quoteright,quotedblright" + k="4" /> + <hkern g1="k" + g2="trademark" + k="59" /> + <hkern g1="k" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="10" /> + <hkern g1="k" + g2="underscore" + k="-72" /> + <hkern g1="k" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="27" /> + <hkern g1="k" + g2="bracketright,braceright" + k="18" /> + <hkern g1="k" + g2="bullet" + k="33" /> + <hkern g1="k" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="47" /> + <hkern g1="k" + g2="colon,semicolon" + k="20" /> + <hkern g1="k" + g2="dagger" + k="-31" /> + <hkern g1="k" + g2="daggerdbl" + k="-31" /> + <hkern g1="k" + g2="paragraph" + k="-18" /> + <hkern g1="k" + g2="parenright" + k="18" /> + <hkern g1="k" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="29" /> + <hkern g1="k" + g2="comma,period,ellipsis" + k="10" /> + <hkern g1="k" + g2="quotesinglbase,quotedblbase" + k="-33" /> + <hkern g1="k" + g2="slash" + k="-41" /> + <hkern g1="k" + g2="z,zcaron" + k="-6" /> + <hkern g1="k" + g2="asciitilde" + k="23" /> + <hkern g1="k" + g2="exclamdown" + k="-12" /> + <hkern g1="k" + g2="guilsinglright" + k="-10" /> + <hkern g1="k" + g2="questiondown" + k="-29" /> + <hkern g1="k" + g2="oslash" + k="18" /> + <hkern g1="k" + g2="hyphen,endash,emdash" + k="61" /> + <hkern g1="k" + g2="guilsinglleft" + k="72" /> + <hkern g1="k" + g2="periodcentered" + k="10" /> + <hkern g1="k" + g2="plus" + k="31" /> + <hkern g1="k" + g2="divide" + k="20" /> + <hkern g1="k" + g2="asciicircum" + k="10" /> + <hkern g1="k" + g2="brokenbar" + k="-18" /> + <hkern g1="k" + g2="copyright,registered" + k="10" /> + <hkern g1="k" + g2="f,fi,fl,f_f_i,f_f_l" + k="-4" /> + <hkern g1="k" + g2="greater" + k="-92" /> + <hkern g1="k" + g2="multiply" + k="-23" /> + <hkern g1="k" + g2="braceleft" + k="12" /> + <hkern g1="k" + g2="less" + k="51" /> + <hkern g1="lslash" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="-4" /> + <hkern g1="lslash" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-41" /> + <hkern g1="lslash" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="-20" /> + <hkern g1="lslash" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="-6" /> + <hkern g1="lslash" + g2="colon,semicolon" + k="-10" /> + <hkern g1="lslash" + g2="quotedbl,quotesingle" + k="-18" /> + <hkern g1="lslash" + g2="t" + k="-41" /> + <hkern g1="lslash" + g2="w" + k="-37" /> + <hkern g1="lslash" + g2="comma,period,ellipsis" + k="37" /> + <hkern g1="lslash" + g2="quotesinglbase,quotedblbase" + k="37" /> + <hkern g1="lslash" + g2="z,zcaron" + k="-41" /> + <hkern g1="lslash" + g2="oslash" + k="-6" /> + <hkern g1="lslash" + g2="hyphen,endash,emdash" + k="-10" /> + <hkern g1="lslash" + g2="guilsinglleft" + k="-6" /> + <hkern g1="lslash" + g2="copyright,registered" + k="-23" /> + <hkern g1="lslash" + g2="f,fi,fl,f_f_i,f_f_l" + k="-51" /> + <hkern g1="lslash" + g2="s,scaron" + k="-20" /> + <hkern g1="oslash" + g2="ampersand" + k="31" /> + <hkern g1="oslash" + g2="backslash" + k="154" /> + <hkern g1="oslash" + g2="quoteleft,quotedblleft" + k="51" /> + <hkern g1="oslash" + g2="quoteright,quotedblright" + k="41" /> + <hkern g1="oslash" + g2="trademark" + k="18" /> + <hkern g1="oslash" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="4" /> + <hkern g1="oslash" + g2="underscore" + k="51" /> + <hkern g1="oslash" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="31" /> + <hkern g1="oslash" + g2="bracketright,braceright" + k="31" /> + <hkern g1="oslash" + g2="parenright" + k="39" /> + <hkern g1="oslash" + g2="quotedbl,quotesingle" + k="23" /> + <hkern g1="oslash" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="25" /> + <hkern g1="oslash" + g2="w" + k="25" /> + <hkern g1="oslash" + g2="comma,period,ellipsis" + k="35" /> + <hkern g1="oslash" + g2="germandbls" + k="10" /> + <hkern g1="oslash" + g2="lslash" + k="-6" /> + <hkern g1="oslash" + g2="quotesinglbase,quotedblbase" + k="39" /> + <hkern g1="oslash" + g2="slash" + k="29" /> + <hkern g1="oslash" + g2="x" + k="20" /> + <hkern g1="oslash" + g2="exclamdown" + k="10" /> + <hkern g1="oslash" + g2="guilsinglright" + k="10" /> + <hkern g1="oslash" + g2="questiondown" + k="29" /> + <hkern g1="oslash" + g2="greater" + k="-10" /> + <hkern g1="r" + g2="ampersand" + k="29" /> + <hkern g1="r" + g2="asterisk" + k="-82" /> + <hkern g1="r" + g2="at" + k="-51" /> + <hkern g1="r" + g2="backslash" + k="39" /> + <hkern g1="r" + g2="ordmasculine" + k="-18" /> + <hkern g1="r" + g2="quoteleft,quotedblleft" + k="-10" /> + <hkern g1="r" + g2="quoteright,quotedblright" + k="-43" /> + <hkern g1="r" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="-6" /> + <hkern g1="r" + g2="underscore" + k="39" /> + <hkern g1="r" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-45" /> + <hkern g1="r" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="-10" /> + <hkern g1="r" + g2="bracketright,braceright" + k="-23" /> + <hkern g1="r" + g2="bullet" + k="-10" /> + <hkern g1="r" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="57" /> + <hkern g1="r" + g2="colon,semicolon" + k="-29" /> + <hkern g1="r" + g2="dagger" + k="-72" /> + <hkern g1="r" + g2="daggerdbl" + k="-72" /> + <hkern g1="r" + g2="exclam" + k="-43" /> + <hkern g1="r" + g2="paragraph" + k="-92" /> + <hkern g1="r" + g2="parenright" + k="18" /> + <hkern g1="r" + g2="question" + k="-41" /> + <hkern g1="r" + g2="quotedbl,quotesingle" + k="-72" /> + <hkern g1="r" + g2="t" + k="-47" /> + <hkern g1="r" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="-35" /> + <hkern g1="r" + g2="w" + k="-31" /> + <hkern g1="r" + g2="comma,period,ellipsis" + k="166" /> + <hkern g1="r" + g2="quotesinglbase,quotedblbase" + k="53" /> + <hkern g1="r" + g2="slash" + k="18" /> + <hkern g1="r" + g2="x" + k="-53" /> + <hkern g1="r" + g2="z,zcaron" + k="-31" /> + <hkern g1="r" + g2="exclamdown" + k="-33" /> + <hkern g1="r" + g2="florin" + k="10" /> + <hkern g1="r" + g2="guilsinglright" + k="-53" /> + <hkern g1="r" + g2="questiondown" + k="31" /> + <hkern g1="r" + g2="oslash" + k="6" /> + <hkern g1="r" + g2="periodcentered" + k="-10" /> + <hkern g1="r" + g2="plus" + k="-10" /> + <hkern g1="r" + g2="divide" + k="-29" /> + <hkern g1="r" + g2="asciicircum" + k="-37" /> + <hkern g1="r" + g2="bar" + k="-61" /> + <hkern g1="r" + g2="brokenbar" + k="-43" /> + <hkern g1="r" + g2="copyright,registered" + k="-61" /> + <hkern g1="r" + g2="f,fi,fl,f_f_i,f_f_l" + k="-47" /> + <hkern g1="r" + g2="greater" + k="-47" /> + <hkern g1="r" + g2="j" + k="-4" /> + <hkern g1="r" + g2="multiply" + k="-18" /> + <hkern g1="r" + g2="section" + k="-43" /> + <hkern g1="r" + g2="s,scaron" + k="37" /> + <hkern g1="r" + g2="equal" + k="-29" /> + <hkern g1="r" + g2="less" + k="-10" /> + <hkern g1="r" + g2="b,h,k,l,thorn" + k="-4" /> + <hkern g1="r" + g2="i,igrave,iacute,icircumflex,idieresis" + k="-4" /> + <hkern g1="r" + g2="m,n,p,r,ntilde" + k="-4" /> + <hkern g1="s,scaron" + g2="ampersand" + k="18" /> + <hkern g1="s,scaron" + g2="asterisk" + k="20" /> + <hkern g1="s,scaron" + g2="backslash" + k="123" /> + <hkern g1="s,scaron" + g2="ordfeminine" + k="41" /> + <hkern g1="s,scaron" + g2="ordmasculine" + k="33" /> + <hkern g1="s,scaron" + g2="quoteleft,quotedblleft" + k="31" /> + <hkern g1="s,scaron" + g2="quoteright,quotedblright" + k="43" /> + <hkern g1="s,scaron" + g2="trademark" + k="100" /> + <hkern g1="s,scaron" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="8" /> + <hkern g1="s,scaron" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="14" /> + <hkern g1="s,scaron" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="12" /> + <hkern g1="s,scaron" + g2="bracketright,braceright" + k="10" /> + <hkern g1="s,scaron" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="6" /> + <hkern g1="s,scaron" + g2="parenright" + k="23" /> + <hkern g1="s,scaron" + g2="question" + k="10" /> + <hkern g1="s,scaron" + g2="quotedbl,quotesingle" + k="12" /> + <hkern g1="s,scaron" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="14" /> + <hkern g1="s,scaron" + g2="w" + k="14" /> + <hkern g1="s,scaron" + g2="germandbls" + k="10" /> + <hkern g1="s,scaron" + g2="quotesinglbase,quotedblbase" + k="-4" /> + <hkern g1="s,scaron" + g2="slash" + k="-12" /> + <hkern g1="s,scaron" + g2="x" + k="10" /> + <hkern g1="s,scaron" + g2="z,zcaron" + k="-4" /> + <hkern g1="s,scaron" + g2="florin" + k="18" /> + <hkern g1="s,scaron" + g2="oslash" + k="6" /> + <hkern g1="s,scaron" + g2="guilsinglleft" + k="18" /> + <hkern g1="s,scaron" + g2="periodcentered" + k="10" /> + <hkern g1="s,scaron" + g2="greater" + k="-12" /> + <hkern g1="t" + g2="asterisk" + k="-29" /> + <hkern g1="t" + g2="backslash" + k="10" /> + <hkern g1="t" + g2="quoteleft,quotedblleft" + k="12" /> + <hkern g1="t" + g2="quoteright,quotedblright" + k="29" /> + <hkern g1="t" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="-10" /> + <hkern g1="t" + g2="underscore" + k="-61" /> + <hkern g1="t" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-25" /> + <hkern g1="t" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="-10" /> + <hkern g1="t" + g2="bracketright,braceright" + k="-12" /> + <hkern g1="t" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="6" /> + <hkern g1="t" + g2="colon,semicolon" + k="-10" /> + <hkern g1="t" + g2="paragraph" + k="-18" /> + <hkern g1="t" + g2="parenright" + k="-12" /> + <hkern g1="t" + g2="question" + k="-25" /> + <hkern g1="t" + g2="quotedbl,quotesingle" + k="-10" /> + <hkern g1="t" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="-12" /> + <hkern g1="t" + g2="w" + k="-12" /> + <hkern g1="t" + g2="quotesinglbase,quotedblbase" + k="-12" /> + <hkern g1="t" + g2="slash" + k="-51" /> + <hkern g1="t" + g2="x" + k="-51" /> + <hkern g1="t" + g2="z,zcaron" + k="-45" /> + <hkern g1="t" + g2="exclamdown" + k="-10" /> + <hkern g1="t" + g2="guilsinglright" + k="-12" /> + <hkern g1="t" + g2="questiondown" + k="-10" /> + <hkern g1="t" + g2="asciicircum" + k="-10" /> + <hkern g1="t" + g2="copyright,registered" + k="-10" /> + <hkern g1="t" + g2="greater" + k="-37" /> + <hkern g1="t" + g2="j" + k="-10" /> + <hkern g1="t" + g2="s,scaron" + k="-25" /> + <hkern g1="t" + g2="b,h,k,l,thorn" + k="33" /> + <hkern g1="t" + g2="i,igrave,iacute,icircumflex,idieresis" + k="-4" /> + <hkern g1="t" + g2="m,n,p,r,ntilde" + k="12" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="ampersand" + k="18" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="at" + k="10" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="backslash" + k="76" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="ordfeminine" + k="33" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="ordmasculine" + k="27" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="quoteleft,quotedblleft" + k="20" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="quoteright,quotedblright" + k="10" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="trademark" + k="51" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="6" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="bracketright,braceright" + k="4" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="6" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="parenright" + k="14" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="germandbls" + k="10" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="oslash" + k="6" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="guilsinglleft" + k="10" /> + <hkern g1="u,ugrave,uacute,ucircumflex,udieresis" + g2="f,fi,fl,f_f_i,f_f_l" + k="-4" /> + <hkern g1="v,wcircumflex,ycircumflex,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-12" /> + <hkern g1="v,wcircumflex,ycircumflex,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="6" /> + <hkern g1="v,wcircumflex,ycircumflex,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="bracketright,braceright" + k="18" /> + <hkern g1="v,wcircumflex,ycircumflex,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="31" /> + <hkern g1="v,wcircumflex,ycircumflex,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="colon,semicolon" + k="10" /> + <hkern g1="v,wcircumflex,ycircumflex,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="quotedbl,quotesingle" + k="-31" /> + <hkern g1="v,wcircumflex,ycircumflex,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="t" + k="-35" /> + <hkern g1="v,wcircumflex,ycircumflex,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="w" + k="-6" /> + <hkern g1="v,wcircumflex,ycircumflex,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="comma,period,ellipsis" + k="166" /> + <hkern g1="v,wcircumflex,ycircumflex,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="quotesinglbase,quotedblbase" + k="100" /> + <hkern g1="v,wcircumflex,ycircumflex,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="z,zcaron" + k="-12" /> + <hkern g1="v,wcircumflex,ycircumflex,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="guilsinglright" + k="-23" /> + <hkern g1="v,wcircumflex,ycircumflex,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="oslash" + k="20" /> + <hkern g1="v,wcircumflex,ycircumflex,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="hyphen,endash,emdash" + k="25" /> + <hkern g1="v,wcircumflex,ycircumflex,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="guilsinglleft" + k="18" /> + <hkern g1="v,wcircumflex,ycircumflex,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="copyright,registered" + k="-10" /> + <hkern g1="v,wcircumflex,ycircumflex,wgrave,wacute,wdieresis,ygrave,uni1EF9" + g2="f,fi,fl,f_f_i,f_f_l" + k="-41" /> + <hkern g1="w" + g2="ampersand" + k="39" /> + <hkern g1="w" + g2="asterisk" + k="-10" /> + <hkern g1="w" + g2="at" + k="-23" /> + <hkern g1="w" + g2="backslash" + k="51" /> + <hkern g1="w" + g2="ordmasculine" + k="-14" /> + <hkern g1="w" + g2="quoteleft,quotedblleft" + k="-10" /> + <hkern g1="w" + g2="quoteright,quotedblright" + k="-10" /> + <hkern g1="w" + g2="trademark" + k="10" /> + <hkern g1="w" + g2="underscore" + k="82" /> + <hkern g1="w" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-6" /> + <hkern g1="w" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="6" /> + <hkern g1="w" + g2="bracketright,braceright" + k="41" /> + <hkern g1="w" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="25" /> + <hkern g1="w" + g2="dagger" + k="-61" /> + <hkern g1="w" + g2="daggerdbl" + k="-74" /> + <hkern g1="w" + g2="paragraph" + k="-18" /> + <hkern g1="w" + g2="parenright" + k="51" /> + <hkern g1="w" + g2="question" + k="-18" /> + <hkern g1="w" + g2="quotedbl,quotesingle" + k="-31" /> + <hkern g1="w" + g2="t" + k="-35" /> + <hkern g1="w" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="-6" /> + <hkern g1="w" + g2="comma,period,ellipsis" + k="92" /> + <hkern g1="w" + g2="germandbls" + k="4" /> + <hkern g1="w" + g2="quotesinglbase,quotedblbase" + k="92" /> + <hkern g1="w" + g2="slash" + k="51" /> + <hkern g1="w" + g2="x" + k="-6" /> + <hkern g1="w" + g2="z,zcaron" + k="-10" /> + <hkern g1="w" + g2="exclamdown" + k="10" /> + <hkern g1="w" + g2="florin" + k="18" /> + <hkern g1="w" + g2="questiondown" + k="59" /> + <hkern g1="w" + g2="oslash" + k="25" /> + <hkern g1="w" + g2="hyphen,endash,emdash" + k="14" /> + <hkern g1="w" + g2="guilsinglleft" + k="25" /> + <hkern g1="w" + g2="plus" + k="4" /> + <hkern g1="w" + g2="divide" + k="10" /> + <hkern g1="w" + g2="asciicircum" + k="-18" /> + <hkern g1="w" + g2="bar" + k="-33" /> + <hkern g1="w" + g2="brokenbar" + k="-33" /> + <hkern g1="w" + g2="copyright,registered" + k="-12" /> + <hkern g1="w" + g2="f,fi,fl,f_f_i,f_f_l" + k="-35" /> + <hkern g1="w" + g2="greater" + k="-18" /> + <hkern g1="w" + g2="multiply" + k="-10" /> + <hkern g1="w" + g2="less" + k="10" /> + <hkern g1="x" + g2="quoteright,quotedblright" + k="10" /> + <hkern g1="x" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="10" /> + <hkern g1="x" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-6" /> + <hkern g1="x" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="4" /> + <hkern g1="x" + g2="bracketright,braceright" + k="10" /> + <hkern g1="x" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="35" /> + <hkern g1="x" + g2="colon,semicolon" + k="10" /> + <hkern g1="x" + g2="quotedbl,quotesingle" + k="-12" /> + <hkern g1="x" + g2="t" + k="-14" /> + <hkern g1="x" + g2="w" + k="-6" /> + <hkern g1="x" + g2="quotesinglbase,quotedblbase" + k="-20" /> + <hkern g1="x" + g2="z,zcaron" + k="-33" /> + <hkern g1="x" + g2="oslash" + k="25" /> + <hkern g1="x" + g2="hyphen,endash,emdash" + k="43" /> + <hkern g1="x" + g2="guilsinglleft" + k="31" /> + <hkern g1="x" + g2="copyright,registered" + k="10" /> + <hkern g1="x" + g2="f,fi,fl,f_f_i,f_f_l" + k="-27" /> + <hkern g1="y,yacute,ydieresis" + g2="ampersand" + k="41" /> + <hkern g1="y,yacute,ydieresis" + g2="asterisk" + k="-18" /> + <hkern g1="y,yacute,ydieresis" + g2="at" + k="-12" /> + <hkern g1="y,yacute,ydieresis" + g2="backslash" + k="61" /> + <hkern g1="y,yacute,ydieresis" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="10" /> + <hkern g1="y,yacute,ydieresis" + g2="underscore" + k="102" /> + <hkern g1="y,yacute,ydieresis" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-6" /> + <hkern g1="y,yacute,ydieresis" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="31" /> + <hkern g1="y,yacute,ydieresis" + g2="bracketright,braceright" + k="37" /> + <hkern g1="y,yacute,ydieresis" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="45" /> + <hkern g1="y,yacute,ydieresis" + g2="colon,semicolon" + k="14" /> + <hkern g1="y,yacute,ydieresis" + g2="dagger" + k="-51" /> + <hkern g1="y,yacute,ydieresis" + g2="daggerdbl" + k="-51" /> + <hkern g1="y,yacute,ydieresis" + g2="paragraph" + k="-18" /> + <hkern g1="y,yacute,ydieresis" + g2="parenright" + k="37" /> + <hkern g1="y,yacute,ydieresis" + g2="question" + k="-20" /> + <hkern g1="y,yacute,ydieresis" + g2="quotedbl,quotesingle" + k="-20" /> + <hkern g1="y,yacute,ydieresis" + g2="t" + k="-25" /> + <hkern g1="y,yacute,ydieresis" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="-6" /> + <hkern g1="y,yacute,ydieresis" + g2="comma,period,ellipsis" + k="207" /> + <hkern g1="y,yacute,ydieresis" + g2="germandbls" + k="4" /> + <hkern g1="y,yacute,ydieresis" + g2="lslash" + k="4" /> + <hkern g1="y,yacute,ydieresis" + g2="quotesinglbase,quotedblbase" + k="135" /> + <hkern g1="y,yacute,ydieresis" + g2="slash" + k="57" /> + <hkern g1="y,yacute,ydieresis" + g2="exclamdown" + k="10" /> + <hkern g1="y,yacute,ydieresis" + g2="florin" + k="29" /> + <hkern g1="y,yacute,ydieresis" + g2="questiondown" + k="80" /> + <hkern g1="y,yacute,ydieresis" + g2="oslash" + k="41" /> + <hkern g1="y,yacute,ydieresis" + g2="hyphen,endash,emdash" + k="51" /> + <hkern g1="y,yacute,ydieresis" + g2="guilsinglleft" + k="31" /> + <hkern g1="y,yacute,ydieresis" + g2="periodcentered" + k="10" /> + <hkern g1="y,yacute,ydieresis" + g2="divide" + k="10" /> + <hkern g1="y,yacute,ydieresis" + g2="asciicircum" + k="-10" /> + <hkern g1="y,yacute,ydieresis" + g2="bar" + k="-27" /> + <hkern g1="y,yacute,ydieresis" + g2="brokenbar" + k="-31" /> + <hkern g1="y,yacute,ydieresis" + g2="copyright,registered" + k="-10" /> + <hkern g1="y,yacute,ydieresis" + g2="f,fi,fl,f_f_i,f_f_l" + k="-31" /> + <hkern g1="y,yacute,ydieresis" + g2="greater" + k="-29" /> + <hkern g1="y,yacute,ydieresis" + g2="multiply" + k="-18" /> + <hkern g1="y,yacute,ydieresis" + g2="section" + k="-10" /> + <hkern g1="y,yacute,ydieresis" + g2="s,scaron" + k="16" /> + <hkern g1="z,zcaron" + g2="ampersand" + k="18" /> + <hkern g1="z,zcaron" + g2="asterisk" + k="-10" /> + <hkern g1="z,zcaron" + g2="backslash" + k="82" /> + <hkern g1="z,zcaron" + g2="trademark" + k="10" /> + <hkern g1="z,zcaron" + g2="underscore" + k="-20" /> + <hkern g1="z,zcaron" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-4" /> + <hkern g1="z,zcaron" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="-10" /> + <hkern g1="z,zcaron" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="4" /> + <hkern g1="z,zcaron" + g2="dagger" + k="-31" /> + <hkern g1="z,zcaron" + g2="daggerdbl" + k="-31" /> + <hkern g1="z,zcaron" + g2="paragraph" + k="-10" /> + <hkern g1="z,zcaron" + g2="t" + k="-23" /> + <hkern g1="z,zcaron" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="-4" /> + <hkern g1="z,zcaron" + g2="w" + k="-4" /> + <hkern g1="z,zcaron" + g2="lslash" + k="-12" /> + <hkern g1="z,zcaron" + g2="quotesinglbase,quotedblbase" + k="-10" /> + <hkern g1="z,zcaron" + g2="slash" + k="-18" /> + <hkern g1="z,zcaron" + g2="x" + k="-14" /> + <hkern g1="z,zcaron" + g2="z,zcaron" + k="-4" /> + <hkern g1="z,zcaron" + g2="questiondown" + k="-10" /> + <hkern g1="z,zcaron" + g2="guilsinglleft" + k="16" /> + <hkern g1="z,zcaron" + g2="plus" + k="-10" /> + <hkern g1="z,zcaron" + g2="bar" + k="-27" /> + <hkern g1="z,zcaron" + g2="brokenbar" + k="-10" /> + <hkern g1="z,zcaron" + g2="f,fi,fl,f_f_i,f_f_l" + k="-29" /> + <hkern g1="z,zcaron" + g2="greater" + k="-18" /> + <hkern g1="ampersand" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="143" /> + <hkern g1="ampersand" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="20" /> + <hkern g1="ampersand" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="76" /> + <hkern g1="ampersand" + g2="Y,Yacute,Ydieresis" + k="182" /> + <hkern g1="ampersand" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="14" /> + <hkern g1="ampersand" + g2="J" + k="-10" /> + <hkern g1="ampersand" + g2="Oslash" + k="10" /> + <hkern g1="ampersand" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="4" /> + <hkern g1="ampersand" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="29" /> + <hkern g1="asciicircum" + g2="Y,Yacute,Ydieresis" + k="18" /> + <hkern g1="asciicircum" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="-20" /> + <hkern g1="asciicircum" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-10" /> + <hkern g1="asciicircum" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="78" /> + <hkern g1="asciicircum" + g2="Eth" + k="-10" /> + <hkern g1="asciicircum" + g2="f,fi,fl,f_f_i,f_f_l" + k="-29" /> + <hkern g1="asciicircum" + g2="w" + k="-18" /> + <hkern g1="asciitilde" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="135" /> + <hkern g1="asciitilde" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="6" /> + <hkern g1="asciitilde" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="41" /> + <hkern g1="asciitilde" + g2="Y,Yacute,Ydieresis" + k="133" /> + <hkern g1="asciitilde" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="-20" /> + <hkern g1="asciitilde" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="41" /> + <hkern g1="asciitilde" + g2="Z,Zcaron" + k="10" /> + <hkern g1="asciitilde" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="-10" /> + <hkern g1="asciitilde" + g2="j" + k="10" /> + <hkern g1="asciitilde" + g2="z,zcaron" + k="4" /> + <hkern g1="at" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="51" /> + <hkern g1="at" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="10" /> + <hkern g1="at" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="41" /> + <hkern g1="at" + g2="Y,Yacute,Ydieresis" + k="100" /> + <hkern g1="at" + g2="J" + k="39" /> + <hkern g1="at" + g2="Oslash" + k="4" /> + <hkern g1="at" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="4" /> + <hkern g1="at" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-12" /> + <hkern g1="at" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="90" /> + <hkern g1="at" + g2="Eth" + k="-12" /> + <hkern g1="at" + g2="f,fi,fl,f_f_i,f_f_l" + k="-10" /> + <hkern g1="at" + g2="w" + k="-16" /> + <hkern g1="at" + g2="Z,Zcaron" + k="33" /> + <hkern g1="at" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="18" /> + <hkern g1="at" + g2="z,zcaron" + k="-6" /> + <hkern g1="at" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="10" /> + <hkern g1="at" + g2="m,n,p,r,ntilde" + k="14" /> + <hkern g1="at" + g2="oslash" + k="14" /> + <hkern g1="at" + g2="s,scaron" + k="4" /> + <hkern g1="bar" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="-33" /> + <hkern g1="bar" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-33" /> + <hkern g1="bar" + g2="Y,Yacute,Ydieresis" + k="-20" /> + <hkern g1="bar" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-27" /> + <hkern g1="bar" + g2="w" + k="-33" /> + <hkern g1="bar" + g2="Z,Zcaron" + k="-10" /> + <hkern g1="bar" + g2="j" + k="-29" /> + <hkern g1="bar" + g2="z,zcaron" + k="-20" /> + <hkern g1="brokenbar" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="-41" /> + <hkern g1="brokenbar" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-33" /> + <hkern g1="brokenbar" + g2="Y,Yacute,Ydieresis" + k="-20" /> + <hkern g1="brokenbar" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-31" /> + <hkern g1="brokenbar" + g2="w" + k="-33" /> + <hkern g1="brokenbar" + g2="Z,Zcaron" + k="-10" /> + <hkern g1="brokenbar" + g2="z,zcaron" + k="-10" /> + <hkern g1="copyright,registered" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="20" /> + <hkern g1="copyright,registered" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="18" /> + <hkern g1="copyright,registered" + g2="Y,Yacute,Ydieresis" + k="74" /> + <hkern g1="copyright,registered" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="-12" /> + <hkern g1="copyright,registered" + g2="J" + k="10" /> + <hkern g1="copyright,registered" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="66" /> + <hkern g1="copyright,registered" + g2="Eth" + k="-12" /> + <hkern g1="copyright,registered" + g2="f,fi,fl,f_f_i,f_f_l" + k="-10" /> + <hkern g1="copyright,registered" + g2="w" + k="-12" /> + <hkern g1="copyright,registered" + g2="Z,Zcaron" + k="10" /> + <hkern g1="copyright,registered" + g2="z,zcaron" + k="6" /> + <hkern g1="copyright,registered" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="23" /> + <hkern g1="copyright,registered" + g2="Lslash" + k="-12" /> + <hkern g1="copyright,registered" + g2="V" + k="49" /> + <hkern g1="copyright,registered" + g2="X" + k="82" /> + <hkern g1="copyright,registered" + g2="germandbls" + k="10" /> + <hkern g1="copyright,registered" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="-10" /> + <hkern g1="copyright,registered" + g2="x" + k="10" /> + <hkern g1="dagger" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="-29" /> + <hkern g1="dagger" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-18" /> + <hkern g1="dagger" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="-10" /> + <hkern g1="dagger" + g2="J" + k="29" /> + <hkern g1="dagger" + g2="Oslash" + k="-10" /> + <hkern g1="dagger" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-51" /> + <hkern g1="dagger" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="72" /> + <hkern g1="dagger" + g2="f,fi,fl,f_f_i,f_f_l" + k="-29" /> + <hkern g1="dagger" + g2="w" + k="-74" /> + <hkern g1="dagger" + g2="Z,Zcaron" + k="-10" /> + <hkern g1="dagger" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="10" /> + <hkern g1="dagger" + g2="j" + k="-18" /> + <hkern g1="dagger" + g2="z,zcaron" + k="-18" /> + <hkern g1="dagger" + g2="S,Scaron" + k="-10" /> + <hkern g1="dagger" + g2="b,h,k,l,thorn" + k="-10" /> + <hkern g1="daggerdbl" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="-29" /> + <hkern g1="daggerdbl" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-10" /> + <hkern g1="daggerdbl" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="-10" /> + <hkern g1="daggerdbl" + g2="J" + k="-10" /> + <hkern g1="daggerdbl" + g2="Oslash" + k="-10" /> + <hkern g1="daggerdbl" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-51" /> + <hkern g1="daggerdbl" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="10" /> + <hkern g1="daggerdbl" + g2="f,fi,fl,f_f_i,f_f_l" + k="-18" /> + <hkern g1="daggerdbl" + g2="w" + k="-74" /> + <hkern g1="daggerdbl" + g2="Z,Zcaron" + k="-10" /> + <hkern g1="daggerdbl" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="-10" /> + <hkern g1="daggerdbl" + g2="z,zcaron" + k="-18" /> + <hkern g1="daggerdbl" + g2="b,h,k,l,thorn" + k="-10" /> + <hkern g1="divide" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="96" /> + <hkern g1="divide" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="6" /> + <hkern g1="divide" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="45" /> + <hkern g1="divide" + g2="Y,Yacute,Ydieresis" + k="113" /> + <hkern g1="divide" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="-10" /> + <hkern g1="divide" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="10" /> + <hkern g1="divide" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="31" /> + <hkern g1="divide" + g2="w" + k="10" /> + <hkern g1="divide" + g2="Z,Zcaron" + k="10" /> + <hkern g1="equal" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="61" /> + <hkern g1="equal" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="4" /> + <hkern g1="equal" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="20" /> + <hkern g1="equal" + g2="Y,Yacute,Ydieresis" + k="72" /> + <hkern g1="equal" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="-10" /> + <hkern g1="equal" + g2="Oslash" + k="-10" /> + <hkern g1="equal" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="18" /> + <hkern g1="florin" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="63" /> + <hkern g1="florin" + g2="w" + k="12" /> + <hkern g1="florin" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="115" /> + <hkern g1="florin" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="104" /> + <hkern g1="florin" + g2="m,n,p,r,ntilde" + k="63" /> + <hkern g1="florin" + g2="oslash" + k="102" /> + <hkern g1="florin" + g2="s,scaron" + k="43" /> + <hkern g1="florin" + g2="bracketright,braceright" + k="-51" /> + <hkern g1="florin" + g2="colon,semicolon" + k="33" /> + <hkern g1="florin" + g2="comma,period,ellipsis" + k="182" /> + <hkern g1="florin" + g2="guilsinglleft" + k="59" /> + <hkern g1="florin" + g2="hyphen,endash,emdash" + k="35" /> + <hkern g1="florin" + g2="quotedbl,quotesingle" + k="-82" /> + <hkern g1="florin" + g2="quoteleft,quotedblleft" + k="-74" /> + <hkern g1="florin" + g2="quoteright,quotedblright" + k="-82" /> + <hkern g1="florin" + g2="quotesinglbase,quotedblbase" + k="152" /> + <hkern g1="florin" + g2="t" + k="-10" /> + <hkern g1="greater" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="111" /> + <hkern g1="greater" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="6" /> + <hkern g1="greater" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="51" /> + <hkern g1="greater" + g2="Y,Yacute,Ydieresis" + k="141" /> + <hkern g1="greater" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="-10" /> + <hkern g1="greater" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="45" /> + <hkern g1="greater" + g2="w" + k="10" /> + <hkern g1="greater" + g2="Z,Zcaron" + k="27" /> + <hkern g1="greater" + g2="S,Scaron" + k="4" /> + <hkern g1="less" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="12" /> + <hkern g1="less" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-18" /> + <hkern g1="less" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="-20" /> + <hkern g1="less" + g2="Oslash" + k="-18" /> + <hkern g1="less" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-29" /> + <hkern g1="less" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="-18" /> + <hkern g1="less" + g2="Eth" + k="-10" /> + <hkern g1="less" + g2="w" + k="-18" /> + <hkern g1="less" + g2="Z,Zcaron" + k="-39" /> + <hkern g1="less" + g2="z,zcaron" + k="-18" /> + <hkern g1="less" + g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Ntilde,Thorn,IJ,uni01C4,uni01C7,uni01CA,uni01F1" + k="-12" /> + <hkern g1="multiply" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="55" /> + <hkern g1="multiply" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="10" /> + <hkern g1="multiply" + g2="Y,Yacute,Ydieresis" + k="61" /> + <hkern g1="multiply" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="-10" /> + <hkern g1="multiply" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="10" /> + <hkern g1="multiply" + g2="w" + k="-10" /> + <hkern g1="multiply" + g2="Z,Zcaron" + k="-10" /> + <hkern g1="paragraph" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="-35" /> + <hkern g1="plus" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="113" /> + <hkern g1="plus" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="6" /> + <hkern g1="plus" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="61" /> + <hkern g1="plus" + g2="Y,Yacute,Ydieresis" + k="121" /> + <hkern g1="plus" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="-10" /> + <hkern g1="plus" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="45" /> + <hkern g1="plus" + g2="Eth" + k="10" /> + <hkern g1="plus" + g2="w" + k="4" /> + <hkern g1="plus" + g2="Z,Zcaron" + k="27" /> + <hkern g1="plus" + g2="b,h,k,l,thorn" + k="18" /> + <hkern g1="trademark" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="-35" /> + <hkern g1="section" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="10" /> + <hkern g1="section" + g2="Y,Yacute,Ydieresis" + k="10" /> + <hkern g1="section" + g2="Oslash" + k="4" /> + <hkern g1="section" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="10" /> + <hkern g1="asterisk" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="188" /> + <hkern g1="asterisk" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="6" /> + <hkern g1="asterisk" + g2="J" + k="102" /> + <hkern g1="asterisk" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="-41" /> + <hkern g1="asterisk" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-20" /> + <hkern g1="asterisk" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="35" /> + <hkern g1="asterisk" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="63" /> + <hkern g1="asterisk" + g2="s,scaron" + k="12" /> + <hkern g1="asterisk" + g2="Y,Yacute,Ydieresis" + k="10" /> + <hkern g1="asterisk" + g2="f,fi,fl,f_f_i,f_f_l" + k="-37" /> + <hkern g1="asterisk" + g2="oslash" + k="18" /> + <hkern g1="asterisk" + g2="w" + k="-10" /> + <hkern g1="asterisk" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-18" /> + <hkern g1="backslash" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="-18" /> + <hkern g1="backslash" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="86" /> + <hkern g1="backslash" + g2="J" + k="10" /> + <hkern g1="backslash" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="121" /> + <hkern g1="backslash" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="141" /> + <hkern g1="backslash" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="-12" /> + <hkern g1="backslash" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="45" /> + <hkern g1="backslash" + g2="Y,Yacute,Ydieresis" + k="166" /> + <hkern g1="backslash" + g2="oslash" + k="18" /> + <hkern g1="backslash" + g2="w" + k="39" /> + <hkern g1="backslash" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="53" /> + <hkern g1="backslash" + g2="Oslash" + k="59" /> + <hkern g1="backslash" + g2="S,Scaron" + k="25" /> + <hkern g1="backslash" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="70" /> + <hkern g1="backslash" + g2="Eth" + k="18" /> + <hkern g1="backslash" + g2="Z,Zcaron" + k="-10" /> + <hkern g1="backslash" + g2="t" + k="10" /> + <hkern g1="backslash" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="18" /> + <hkern g1="backslash" + g2="z,zcaron" + k="-10" /> + <hkern g1="braceright" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="12" /> + <hkern g1="braceright" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="23" /> + <hkern g1="braceright" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="12" /> + <hkern g1="braceright" + g2="Y,Yacute,Ydieresis" + k="45" /> + <hkern g1="braceright" + g2="Z,Zcaron" + k="23" /> + <hkern g1="bracketleft,braceleft" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="10" /> + <hkern g1="bracketleft,braceleft" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="51" /> + <hkern g1="bracketleft,braceleft" + g2="J" + k="18" /> + <hkern g1="bracketleft,braceleft" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="-23" /> + <hkern g1="bracketleft,braceleft" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-23" /> + <hkern g1="bracketleft,braceleft" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="4" /> + <hkern g1="bracketleft,braceleft" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="49" /> + <hkern g1="bracketleft,braceleft" + g2="s,scaron" + k="18" /> + <hkern g1="bracketleft,braceleft" + g2="Y,Yacute,Ydieresis" + k="-45" /> + <hkern g1="bracketleft,braceleft" + g2="f,fi,fl,f_f_i,f_f_l" + k="39" /> + <hkern g1="bracketleft,braceleft" + g2="oslash" + k="31" /> + <hkern g1="bracketleft,braceleft" + g2="w" + k="41" /> + <hkern g1="bracketleft,braceleft" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="29" /> + <hkern g1="bracketleft,braceleft" + g2="Oslash" + k="51" /> + <hkern g1="bracketleft,braceleft" + g2="S,Scaron" + k="10" /> + <hkern g1="bracketleft,braceleft" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="10" /> + <hkern g1="bracketleft,braceleft" + g2="t" + k="18" /> + <hkern g1="bracketleft,braceleft" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="18" /> + <hkern g1="bracketleft,braceleft" + g2="V" + k="-33" /> + <hkern g1="bracketleft,braceleft" + g2="X" + k="-23" /> + <hkern g1="bracketleft,braceleft" + g2="florin" + k="-123" /> + <hkern g1="bracketleft,braceleft" + g2="j" + k="-131" /> + <hkern g1="bracketleft,braceleft" + g2="germandbls" + k="18" /> + <hkern g1="bracketleft,braceleft" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="18" /> + <hkern g1="bracketleft,braceleft" + g2="x" + k="10" /> + <hkern g1="bullet" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="72" /> + <hkern g1="bullet" + g2="J" + k="12" /> + <hkern g1="bullet" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="162" /> + <hkern g1="bullet" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="63" /> + <hkern g1="bullet" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="12" /> + <hkern g1="bullet" + g2="Y,Yacute,Ydieresis" + k="172" /> + <hkern g1="bullet" + g2="Z,Zcaron" + k="33" /> + <hkern g1="bullet" + g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Ntilde,Thorn,IJ,uni01C4,uni01C7,uni01CA,uni01F1" + k="12" /> + <hkern g1="colon,semicolon" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="10" /> + <hkern g1="colon,semicolon" + g2="J" + k="10" /> + <hkern g1="colon,semicolon" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="109" /> + <hkern g1="colon,semicolon" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="31" /> + <hkern g1="colon,semicolon" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="14" /> + <hkern g1="colon,semicolon" + g2="Y,Yacute,Ydieresis" + k="145" /> + <hkern g1="colon,semicolon" + g2="f,fi,fl,f_f_i,f_f_l" + k="-10" /> + <hkern g1="colon,semicolon" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="10" /> + <hkern g1="colon,semicolon" + g2="S,Scaron" + k="10" /> + <hkern g1="colon,semicolon" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="10" /> + <hkern g1="colon,semicolon" + g2="V" + k="100" /> + <hkern g1="colon,semicolon" + g2="X" + k="18" /> + <hkern g1="colon,semicolon" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="10" /> + <hkern g1="colon,semicolon" + g2="x" + k="10" /> + <hkern g1="comma,period,ellipsis" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="72" /> + <hkern g1="comma,period,ellipsis" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="223" /> + <hkern g1="comma,period,ellipsis" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="186" /> + <hkern g1="comma,period,ellipsis" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="10" /> + <hkern g1="comma,period,ellipsis" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="35" /> + <hkern g1="comma,period,ellipsis" + g2="Y,Yacute,Ydieresis" + k="266" /> + <hkern g1="comma,period,ellipsis" + g2="f,fi,fl,f_f_i,f_f_l" + k="18" /> + <hkern g1="comma,period,ellipsis" + g2="oslash" + k="10" /> + <hkern g1="comma,period,ellipsis" + g2="w" + k="92" /> + <hkern g1="comma,period,ellipsis" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="176" /> + <hkern g1="comma,period,ellipsis" + g2="Oslash" + k="59" /> + <hkern g1="comma,period,ellipsis" + g2="S,Scaron" + k="20" /> + <hkern g1="comma,period,ellipsis" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="66" /> + <hkern g1="comma,period,ellipsis" + g2="Eth" + k="18" /> + <hkern g1="comma,period,ellipsis" + g2="t" + k="51" /> + <hkern g1="comma,period,ellipsis" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="12" /> + <hkern g1="comma,period,ellipsis" + g2="V" + k="233" /> + <hkern g1="comma,period,ellipsis" + g2="X" + k="10" /> + <hkern g1="comma,period,ellipsis" + g2="germandbls" + k="10" /> + <hkern g1="comma,period,ellipsis" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="166" /> + <hkern g1="comma,period,ellipsis" + g2="Lslash" + k="10" /> + <hkern g1="comma,period,ellipsis" + g2="b,h,k,l,thorn" + k="10" /> + <hkern g1="comma,period,ellipsis" + g2="lslash" + k="37" /> + <hkern g1="exclamdown" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="10" /> + <hkern g1="exclamdown" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="10" /> + <hkern g1="exclamdown" + g2="J" + k="10" /> + <hkern g1="exclamdown" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="137" /> + <hkern g1="exclamdown" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="39" /> + <hkern g1="exclamdown" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="18" /> + <hkern g1="exclamdown" + g2="Y,Yacute,Ydieresis" + k="135" /> + <hkern g1="exclamdown" + g2="oslash" + k="10" /> + <hkern g1="exclamdown" + g2="w" + k="10" /> + <hkern g1="exclamdown" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="10" /> + <hkern g1="exclamdown" + g2="S,Scaron" + k="10" /> + <hkern g1="exclamdown" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="31" /> + <hkern g1="exclamdown" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="4" /> + <hkern g1="exclamdown" + g2="j" + k="-72" /> + <hkern g1="exclamdown" + g2="i,igrave,iacute,icircumflex,idieresis" + k="10" /> + <hkern g1="guilsinglleft" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="10" /> + <hkern g1="guilsinglleft" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="20" /> + <hkern g1="guilsinglleft" + g2="J" + k="-20" /> + <hkern g1="guilsinglleft" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="137" /> + <hkern g1="guilsinglleft" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="20" /> + <hkern g1="guilsinglleft" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="10" /> + <hkern g1="guilsinglleft" + g2="Y,Yacute,Ydieresis" + k="98" /> + <hkern g1="guilsinglleft" + g2="f,fi,fl,f_f_i,f_f_l" + k="-31" /> + <hkern g1="guilsinglleft" + g2="oslash" + k="10" /> + <hkern g1="guilsinglleft" + g2="Oslash" + k="10" /> + <hkern g1="guilsinglleft" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="10" /> + <hkern g1="guilsinglleft" + g2="t" + k="-12" /> + <hkern g1="guilsinglleft" + g2="V" + k="74" /> + <hkern g1="guilsinglleft" + g2="X" + k="61" /> + <hkern g1="guilsinglleft" + g2="florin" + k="18" /> + <hkern g1="guilsinglleft" + g2="j" + k="4" /> + <hkern g1="guilsinglleft" + g2="germandbls" + k="10" /> + <hkern g1="guilsinglleft" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="-23" /> + <hkern g1="guilsinglleft" + g2="lslash" + k="10" /> + <hkern g1="guilsinglright" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="72" /> + <hkern g1="guilsinglright" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="14" /> + <hkern g1="guilsinglright" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="238" /> + <hkern g1="guilsinglright" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="90" /> + <hkern g1="guilsinglright" + g2="Y,Yacute,Ydieresis" + k="219" /> + <hkern g1="guilsinglright" + g2="w" + k="20" /> + <hkern g1="guilsinglright" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="10" /> + <hkern g1="guilsinglright" + g2="S,Scaron" + k="10" /> + <hkern g1="guilsinglright" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="31" /> + <hkern g1="guilsinglright" + g2="Z,Zcaron" + k="47" /> + <hkern g1="guilsinglright" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="10" /> + <hkern g1="guilsinglright" + g2="z,zcaron" + k="4" /> + <hkern g1="guilsinglright" + g2="V" + k="133" /> + <hkern g1="guilsinglright" + g2="X" + k="164" /> + <hkern g1="guilsinglright" + g2="florin" + k="80" /> + <hkern g1="guilsinglright" + g2="germandbls" + k="14" /> + <hkern g1="guilsinglright" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="31" /> + <hkern g1="guilsinglright" + g2="x" + k="31" /> + <hkern g1="guilsinglright" + g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Ntilde,Thorn,IJ,uni01C4,uni01C7,uni01CA,uni01F1" + k="12" /> + <hkern g1="guilsinglright" + g2="b,h,k,l,thorn" + k="10" /> + <hkern g1="guilsinglright" + g2="lslash" + k="-23" /> + <hkern g1="hyphen,endash,emdash" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="59" /> + <hkern g1="hyphen,endash,emdash" + g2="J" + k="10" /> + <hkern g1="hyphen,endash,emdash" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="133" /> + <hkern g1="hyphen,endash,emdash" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="63" /> + <hkern g1="hyphen,endash,emdash" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="18" /> + <hkern g1="hyphen,endash,emdash" + g2="Y,Yacute,Ydieresis" + k="182" /> + <hkern g1="hyphen,endash,emdash" + g2="w" + k="14" /> + <hkern g1="hyphen,endash,emdash" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="51" /> + <hkern g1="hyphen,endash,emdash" + g2="S,Scaron" + k="12" /> + <hkern g1="hyphen,endash,emdash" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="6" /> + <hkern g1="hyphen,endash,emdash" + g2="Z,Zcaron" + k="70" /> + <hkern g1="hyphen,endash,emdash" + g2="t" + k="12" /> + <hkern g1="hyphen,endash,emdash" + g2="z,zcaron" + k="6" /> + <hkern g1="hyphen,endash,emdash" + g2="V" + k="127" /> + <hkern g1="hyphen,endash,emdash" + g2="X" + k="111" /> + <hkern g1="hyphen,endash,emdash" + g2="j" + k="12" /> + <hkern g1="hyphen,endash,emdash" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="25" /> + <hkern g1="hyphen,endash,emdash" + g2="x" + k="43" /> + <hkern g1="hyphen,endash,emdash" + g2="Lslash" + k="-84" /> + <hkern g1="hyphen,endash,emdash" + g2="lslash" + k="-63" /> + <hkern g1="parenleft" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="18" /> + <hkern g1="parenleft" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="51" /> + <hkern g1="parenleft" + g2="J" + k="31" /> + <hkern g1="parenleft" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="-23" /> + <hkern g1="parenleft" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-23" /> + <hkern g1="parenleft" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="6" /> + <hkern g1="parenleft" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="59" /> + <hkern g1="parenleft" + g2="s,scaron" + k="23" /> + <hkern g1="parenleft" + g2="Y,Yacute,Ydieresis" + k="-23" /> + <hkern g1="parenleft" + g2="f,fi,fl,f_f_i,f_f_l" + k="31" /> + <hkern g1="parenleft" + g2="oslash" + k="39" /> + <hkern g1="parenleft" + g2="w" + k="51" /> + <hkern g1="parenleft" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="37" /> + <hkern g1="parenleft" + g2="Oslash" + k="51" /> + <hkern g1="parenleft" + g2="S,Scaron" + k="14" /> + <hkern g1="parenleft" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="10" /> + <hkern g1="parenleft" + g2="t" + k="18" /> + <hkern g1="parenleft" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="29" /> + <hkern g1="parenleft" + g2="z,zcaron" + k="4" /> + <hkern g1="parenleft" + g2="j" + k="-131" /> + <hkern g1="periodcentered" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="59" /> + <hkern g1="periodcentered" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="-10" /> + <hkern g1="periodcentered" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="102" /> + <hkern g1="periodcentered" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="53" /> + <hkern g1="periodcentered" + g2="Y,Yacute,Ydieresis" + k="133" /> + <hkern g1="periodcentered" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="10" /> + <hkern g1="periodcentered" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="20" /> + <hkern g1="periodcentered" + g2="Z,Zcaron" + k="14" /> + <hkern g1="question" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="55" /> + <hkern g1="question" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="6" /> + <hkern g1="question" + g2="J" + k="18" /> + <hkern g1="question" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="51" /> + <hkern g1="question" + g2="Y,Yacute,Ydieresis" + k="10" /> + <hkern g1="questiondown" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="-33" /> + <hkern g1="questiondown" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="92" /> + <hkern g1="questiondown" + g2="J" + k="18" /> + <hkern g1="questiondown" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="246" /> + <hkern g1="questiondown" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="141" /> + <hkern g1="questiondown" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="51" /> + <hkern g1="questiondown" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="59" /> + <hkern g1="questiondown" + g2="s,scaron" + k="18" /> + <hkern g1="questiondown" + g2="Y,Yacute,Ydieresis" + k="242" /> + <hkern g1="questiondown" + g2="f,fi,fl,f_f_i,f_f_l" + k="35" /> + <hkern g1="questiondown" + g2="oslash" + k="18" /> + <hkern g1="questiondown" + g2="w" + k="72" /> + <hkern g1="questiondown" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="39" /> + <hkern g1="questiondown" + g2="Oslash" + k="37" /> + <hkern g1="questiondown" + g2="S,Scaron" + k="49" /> + <hkern g1="questiondown" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="80" /> + <hkern g1="questiondown" + g2="Eth" + k="37" /> + <hkern g1="questiondown" + g2="Z,Zcaron" + k="-10" /> + <hkern g1="questiondown" + g2="t" + k="49" /> + <hkern g1="questiondown" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="49" /> + <hkern g1="questiondown" + g2="j" + k="-100" /> + <hkern g1="questiondown" + g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Ntilde,Thorn,IJ,uni01C4,uni01C7,uni01CA,uni01F1" + k="4" /> + <hkern g1="questiondown" + g2="b,h,k,l,thorn" + k="12" /> + <hkern g1="questiondown" + g2="m,n,p,r,ntilde" + k="12" /> + <hkern g1="quotedbl,quotesingle" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="141" /> + <hkern g1="quotedbl,quotesingle" + g2="J" + k="45" /> + <hkern g1="quotedbl,quotesingle" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="-53" /> + <hkern g1="quotedbl,quotesingle" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-23" /> + <hkern g1="quotedbl,quotesingle" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="31" /> + <hkern g1="quotedbl,quotesingle" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="51" /> + <hkern g1="quotedbl,quotesingle" + g2="Y,Yacute,Ydieresis" + k="-12" /> + <hkern g1="quotedbl,quotesingle" + g2="f,fi,fl,f_f_i,f_f_l" + k="-59" /> + <hkern g1="quotedbl,quotesingle" + g2="oslash" + k="51" /> + <hkern g1="quotedbl,quotesingle" + g2="w" + k="-31" /> + <hkern g1="quotedbl,quotesingle" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="-20" /> + <hkern g1="quotedbl,quotesingle" + g2="V" + k="-33" /> + <hkern g1="quotedbl,quotesingle" + g2="X" + k="-12" /> + <hkern g1="quotedbl,quotesingle" + g2="germandbls" + k="10" /> + <hkern g1="quotedbl,quotesingle" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="-31" /> + <hkern g1="quotedbl,quotesingle" + g2="x" + k="-12" /> + <hkern g1="quoteleft,quotedblleft" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="225" /> + <hkern g1="quoteleft,quotedblleft" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="31" /> + <hkern g1="quoteleft,quotedblleft" + g2="J" + k="190" /> + <hkern g1="quoteleft,quotedblleft" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="-61" /> + <hkern g1="quoteleft,quotedblleft" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-33" /> + <hkern g1="quoteleft,quotedblleft" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="70" /> + <hkern g1="quoteleft,quotedblleft" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="78" /> + <hkern g1="quoteleft,quotedblleft" + g2="s,scaron" + k="20" /> + <hkern g1="quoteleft,quotedblleft" + g2="Y,Yacute,Ydieresis" + k="-23" /> + <hkern g1="quoteleft,quotedblleft" + g2="f,fi,fl,f_f_i,f_f_l" + k="2" /> + <hkern g1="quoteleft,quotedblleft" + g2="oslash" + k="51" /> + <hkern g1="quoteleft,quotedblleft" + g2="w" + k="-10" /> + <hkern g1="quoteleft,quotedblleft" + g2="Oslash" + k="18" /> + <hkern g1="quoteleft,quotedblleft" + g2="t" + k="-14" /> + <hkern g1="quoteleft,quotedblleft" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="16" /> + <hkern g1="quoteleft,quotedblleft" + g2="z,zcaron" + k="-4" /> + <hkern g1="quoteleft,quotedblleft" + g2="V" + k="-23" /> + <hkern g1="quoteleft,quotedblleft" + g2="X" + k="-12" /> + <hkern g1="quoteleft,quotedblleft" + g2="florin" + k="66" /> + <hkern g1="quoteleft,quotedblleft" + g2="j" + k="-4" /> + <hkern g1="quoteleft,quotedblleft" + g2="i,igrave,iacute,icircumflex,idieresis" + k="-4" /> + <hkern g1="quoteleft,quotedblleft" + g2="m,n,p,r,ntilde" + k="51" /> + <hkern g1="quoteright,quotedblright" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="225" /> + <hkern g1="quoteright,quotedblright" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="31" /> + <hkern g1="quoteright,quotedblright" + g2="J" + k="115" /> + <hkern g1="quoteright,quotedblright" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="-61" /> + <hkern g1="quoteright,quotedblright" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-33" /> + <hkern g1="quoteright,quotedblright" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="74" /> + <hkern g1="quoteright,quotedblright" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="141" /> + <hkern g1="quoteright,quotedblright" + g2="s,scaron" + k="113" /> + <hkern g1="quoteright,quotedblright" + g2="Y,Yacute,Ydieresis" + k="-23" /> + <hkern g1="quoteright,quotedblright" + g2="f,fi,fl,f_f_i,f_f_l" + k="-10" /> + <hkern g1="quoteright,quotedblright" + g2="oslash" + k="96" /> + <hkern g1="quoteright,quotedblright" + g2="w" + k="-10" /> + <hkern g1="quoteright,quotedblright" + g2="Oslash" + k="18" /> + <hkern g1="quoteright,quotedblright" + g2="S,Scaron" + k="4" /> + <hkern g1="quoteright,quotedblright" + g2="Eth" + k="18" /> + <hkern g1="quoteright,quotedblright" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="4" /> + <hkern g1="quoteright,quotedblright" + g2="V" + k="-23" /> + <hkern g1="quoteright,quotedblright" + g2="X" + k="-12" /> + <hkern g1="quoteright,quotedblright" + g2="florin" + k="55" /> + <hkern g1="quoteright,quotedblright" + g2="germandbls" + k="18" /> + <hkern g1="quoteright,quotedblright" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="-10" /> + <hkern g1="quoteright,quotedblright" + g2="Lslash" + k="29" /> + <hkern g1="quoteright,quotedblright" + g2="lslash" + k="35" /> + <hkern g1="quoteright,quotedblright" + g2="m,n,p,r,ntilde" + k="63" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="-43" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="106" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="J" + k="10" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="182" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="174" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="31" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="s,scaron" + k="4" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="Y,Yacute,Ydieresis" + k="244" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="f,fi,fl,f_f_i,f_f_l" + k="43" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="oslash" + k="10" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="w" + k="92" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="102" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="Oslash" + k="39" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="S,Scaron" + k="31" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="96" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="Eth" + k="29" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="Z,Zcaron" + k="-4" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="t" + k="90" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="14" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="z,zcaron" + k="-10" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="V" + k="201" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="florin" + k="-51" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="j" + k="-49" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="germandbls" + k="10" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="v,wcircumflex,wgrave,wacute,wdieresis" + k="100" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="x" + k="-20" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Ntilde,Thorn,IJ,uni01C4,uni01C7,uni01CA,uni01F1" + k="10" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="lslash" + k="18" /> + <hkern g1="quotesinglbase,quotedblbase" + g2="i,igrave,iacute,icircumflex,idieresis" + k="10" /> + <hkern g1="slash" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="162" /> + <hkern g1="slash" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="86" /> + <hkern g1="slash" + g2="J" + k="209" /> + <hkern g1="slash" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="-63" /> + <hkern g1="slash" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="-41" /> + <hkern g1="slash" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="203" /> + <hkern g1="slash" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="86" /> + <hkern g1="slash" + g2="s,scaron" + k="182" /> + <hkern g1="slash" + g2="Y,Yacute,Ydieresis" + k="-31" /> + <hkern g1="slash" + g2="f,fi,fl,f_f_i,f_f_l" + k="35" /> + <hkern g1="slash" + g2="oslash" + k="174" /> + <hkern g1="slash" + g2="w" + k="51" /> + <hkern g1="slash" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="31" /> + <hkern g1="slash" + g2="Oslash" + k="86" /> + <hkern g1="slash" + g2="S,Scaron" + k="39" /> + <hkern g1="slash" + g2="Eth" + k="23" /> + <hkern g1="slash" + g2="t" + k="10" /> + <hkern g1="slash" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="74" /> + <hkern g1="slash" + g2="z,zcaron" + k="96" /> + <hkern g1="slash" + g2="m,n,p,r,ntilde" + k="104" /> + <hkern g1="underscore" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="-61" /> + <hkern g1="underscore" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="82" /> + <hkern g1="underscore" + g2="J" + k="29" /> + <hkern g1="underscore" + g2="T,uni0162,Tcaron,Tbar,Ycircumflex,uni021A,Ygrave,uni1EF8" + k="92" /> + <hkern g1="underscore" + g2="W,Wcircumflex,Wgrave,Wacute,Wdieresis" + k="96" /> + <hkern g1="underscore" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="51" /> + <hkern g1="underscore" + g2="Y,Yacute,Ydieresis" + k="152" /> + <hkern g1="underscore" + g2="f,fi,fl,f_f_i,f_f_l" + k="20" /> + <hkern g1="underscore" + g2="oslash" + k="39" /> + <hkern g1="underscore" + g2="w" + k="82" /> + <hkern g1="underscore" + g2="y,yacute,ydieresis,ycircumflex,ygrave,uni1EF9" + k="74" /> + <hkern g1="underscore" + g2="Oslash" + k="61" /> + <hkern g1="underscore" + g2="S,Scaron" + k="39" /> + <hkern g1="underscore" + g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" + k="35" /> + <hkern g1="underscore" + g2="Eth" + k="10" /> + <hkern g1="underscore" + g2="Z,Zcaron" + k="-31" /> + <hkern g1="underscore" + g2="t" + k="63" /> + <hkern g1="underscore" + g2="u,ugrave,uacute,ucircumflex,udieresis" + k="35" /> + <hkern g1="underscore" + g2="z,zcaron" + k="-10" /> + <hkern g1="underscore" + g2="j" + k="-131" /> + <hkern g1="exclam" + g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE" + k="18" /> + <hkern g1="exclam" + g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,OE" + k="10" /> + <hkern g1="exclam" + g2="J" + k="10" /> + <hkern g1="exclam" + g2="a,cent,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,cacute,cdotaccent,ccaron,dcaron,dcroat,emacron,edotaccent,eogonek,ecaron,gbreve,gdotaccent,gcommaaccent,omacron,ohungarumlaut,umacron,uhungarumlaut,uni01D2,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC,uni1EBD,uni1EBF,uni1EC1,uni1EC5,uni1ED1,uni1ED3,uni1ED7,partialdiff" + k="18" /> + <hkern g1="exclam" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="18" /> + <hkern g1="exclam" + g2="S,Scaron" + k="10" /> + <hkern g1="ordmasculine" + g2="c,d,e,g,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,eth,ograve,oacute,ocircumflex,otilde,odieresis,oe" + k="35" /> + </font> +</defs></svg> diff --git a/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-SemiBoldItalic.ttf b/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-SemiBoldItalic.ttf new file mode 100755 index 0000000000000000000000000000000000000000..fa695913d34ce3cdd683135ce36886f00be1a2e3 Binary files /dev/null and b/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-SemiBoldItalic.ttf differ diff --git a/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-SemiBoldItalic.woff b/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-SemiBoldItalic.woff new file mode 100755 index 0000000000000000000000000000000000000000..5569f8dcd75011b19cc8f626d60248943a9f1195 Binary files /dev/null and b/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-SemiBoldItalic.woff differ diff --git a/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-SemiBoldItalic.woff2 b/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-SemiBoldItalic.woff2 new file mode 100755 index 0000000000000000000000000000000000000000..d380507782847b7ecbea582c380833894b1d8cd9 Binary files /dev/null and b/test/samples/aurorae/fonts/hk-grotesk/HKGrotesk-SemiBoldItalic.woff2 differ diff --git a/test/samples/aurorae/fonts/hk-grotesk/stylesheet.css b/test/samples/aurorae/fonts/hk-grotesk/stylesheet.css new file mode 100644 index 0000000000000000000000000000000000000000..b897eb8f6b0e4d49a9895b4a279cd233c503ecc6 --- /dev/null +++ b/test/samples/aurorae/fonts/hk-grotesk/stylesheet.css @@ -0,0 +1,167 @@ + + + +@font-face { + font-family: 'hk-grotesk'; + src: url('HKGrotesk-SemiBold.woff2') format('woff2'), + url('HKGrotesk-SemiBold.woff') format('woff'); + font-weight: 600; + font-style: normal; + +} + +@font-face { + font-family: 'hk-grotesk'; + src: url('HKGrotesk-SemiBoldItalic.woff2') format('woff2'), + url('HKGrotesk-SemiBoldItalic.woff') format('woff'); + font-weight: 600; + font-style: italic; + +} + +/* + +@font-face { + font-family: 'spectral'; + src: url('spectral-bold-webfont.woff2') format('woff2'), + url('spectral-bold-webfont.woff') format('woff'); + font-weight: 700; + font-style: normal; + +} + + + + +@font-face { + font-family: 'spectral'; + src: url('spectral-bolditalic-webfont.woff2') format('woff2'), + url('spectral-bolditalic-webfont.woff') format('woff'); + font-weight: 700; + font-style: italic; + +} + + + + +@font-face { + font-family: 'spectral'; + src: url('spectral-extrabold-webfont.woff2') format('woff2'), + url('spectral-extrabold-webfont.woff') format('woff'); + font-weight: 800; + font-style: normal; + +} + + + + +@font-face { + font-family: 'spectral'; + src: url('spectral-extrabolditalic-webfont.woff2') format('woff2'), + url('spectral-extrabolditalic-webfont.woff') format('woff'); + font-weight: 800; + font-style: italic; + +} + + + + +@font-face { + font-family: 'spectral'; + src: url('spectral-extralight-webfont.woff2') format('woff2'), + url('spectral-extralight-webfont.woff') format('woff'); + font-weight: 200; + font-style: normal; + +} + + + + +@font-face { + font-family: 'spectral'; + src: url('spectral-extralightitalic-webfont.woff2') format('woff2'), + url('spectral-extralightitalic-webfont.woff') format('woff'); + font-weight: 200; + font-style: italic; + +} + + + + + + + +@font-face { + font-family: 'spectral'; + src: url('spectral-light-webfont.woff2') format('woff2'), + url('spectral-light-webfont.woff') format('woff'); + font-weight: 300; + font-style: normal; + +} + + + + +@font-face { + font-family: 'spectral'; + src: url('spectral-lightitalic-webfont.woff2') format('woff2'), + url('spectral-lightitalic-webfont.woff') format('woff'); + font-weight: 300; + font-style: italic; + +} + +*/ + + + +@font-face { + font-family:'hk-grotesk'; + src: url('HKGrotesk-Medium.woff2') format('woff2'), + url('HKGrotesk-Medium.woff') format('woff'); + font-weight: 500; + font-style: normal; + +} + + + + +@font-face { + font-family: 'hk-grotesk'; + src: url('HKGrotesk-MediumItalic.woff2') format('woff2'), + url('HKGrotesk-MediumItalic.woff') format('woff'); + font-weight: 500; + font-style: italic; + +} + + + +/* +@font-face { + font-family: 'hk-grotesk'; + src: url('HKGrotesk-Regular.woff2') format('woff2'), + url('HKGrotesk-Regular.woff') format('woff'); + font-weight: 400; + font-style: normal; + +} + + + +@font-face { + font-family: 'hk-grotesk'; + src: url('HKGrotesk-Italic.woff2') format('woff2'), + url('HKGrotesk-Italic.woff') format('woff'); + font-weight: 400; + font-style: italic; + +} +*/ diff --git a/test/samples/aurorae/fonts/noto-serif/generator_config.txt b/test/samples/aurorae/fonts/noto-serif/generator_config.txt new file mode 100755 index 0000000000000000000000000000000000000000..f911b30471f07c26c03b3ea49bbefde9db64f758 --- /dev/null +++ b/test/samples/aurorae/fonts/noto-serif/generator_config.txt @@ -0,0 +1,5 @@ +# Font Squirrel Font-face Generator Configuration File +# Upload this file to the generator to recreate the settings +# you used to create these fonts. + +{"mode":"expert","formats":["woff","woff2"],"tt_instructor":"default","fix_gasp":"xy","fix_vertical_metrics":"Y","metrics_ascent":"","metrics_descent":"","metrics_linegap":"","add_spaces":"Y","add_hyphens":"Y","fallback":"none","fallback_custom":"100","options_subset":"advanced","subset_range":["greek"],"subset_custom":"","subset_custom_range":"","subset_ot_features":"all","subset_ot_features_list":"","css_stylesheet":"stylesheet.css","filename_suffix":"-webfont","emsquare":"2048","spacing_adjustment":"0"} \ No newline at end of file diff --git a/test/samples/aurorae/fonts/noto-serif/notoserif-bold-demo.html b/test/samples/aurorae/fonts/noto-serif/notoserif-bold-demo.html new file mode 100755 index 0000000000000000000000000000000000000000..b3bbcd84c015a5bc8b04950e8f16d9ea281300a8 --- /dev/null +++ b/test/samples/aurorae/fonts/noto-serif/notoserif-bold-demo.html @@ -0,0 +1,655 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> + +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> +<head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> + <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js" type="text/javascript" charset="utf-8"></script> + <script type="text/javascript"> + (function($){$.fn.easyTabs=function(option){var param=jQuery.extend({fadeSpeed:"fast",defaultContent:1,activeClass:'active'},option);$(this).each(function(){var thisId="#"+this.id;if(param.defaultContent==''){param.defaultContent=1;} + if(typeof param.defaultContent=="number") + {var defaultTab=$(thisId+" .tabs li:eq("+(param.defaultContent-1)+") a").attr('href').substr(1);}else{var defaultTab=param.defaultContent;} + $(thisId+" .tabs li a").each(function(){var tabToHide=$(this).attr('href').substr(1);$("#"+tabToHide).addClass('easytabs-tab-content');});hideAll();changeContent(defaultTab);function hideAll(){$(thisId+" .easytabs-tab-content").hide();} + function changeContent(tabId){hideAll();$(thisId+" .tabs li").removeClass(param.activeClass);$(thisId+" .tabs li a[href=#"+tabId+"]").closest('li').addClass(param.activeClass);if(param.fadeSpeed!="none") + {$(thisId+" #"+tabId).fadeIn(param.fadeSpeed);}else{$(thisId+" #"+tabId).show();}} + $(thisId+" .tabs li").click(function(){var tabId=$(this).find('a').attr('href').substr(1);changeContent(tabId);return false;});});}})(jQuery); + </script> + <link rel="stylesheet" href="specimen_files/specimen_stylesheet.css" type="text/css" charset="utf-8" /> + <link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8" /> + + <style type="text/css"> + body{ + font-family: 'noto_serifbold'; + } + </style> + + <title>Noto Serif Bold Specimen</title> + + + <script type="text/javascript" charset="utf-8"> + $(document).ready(function() { + $('#container').easyTabs({defaultContent:1}); + }); + </script> +</head> + +<body> +<div id="container"> + <div id="header"> + Noto Serif Bold </div> + <ul class="tabs"> + <li><a href="#specimen">Specimen</a></li> + <li><a href="#layout">Sample Layout</a></li> + <li><a href="#glyphs">Glyphs & Languages</a></li> + <li><a href="#installing">Installing Webfonts</a></li> + + </ul> + + <div id="main_content"> + + + <div id="specimen"> + + <div class="section"> + <div class="grid12 firstcol"> + <div class="huge">AaBb</div> + </div> + </div> + + <div class="section"> + <div class="glyph_range">A​B​C​D​E​F​G​H​I​J​K​L​M​N​O​P​Q​R​S​T​U​V​W​X​Y​Z​a​b​c​d​e​f​g​h​i​j​k​l​m​n​o​p​q​r​s​t​u​v​w​x​y​z​1​2​3​4​5​6​7​8​9​0​&​.​,​?​!​@​(​)​#​$​%​*​+​-​=​:​;</div> + </div> + <div class="section"> + <div class="grid12 firstcol"> + <table class="sample_table"> + <tr><td>10</td><td class="size10">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>11</td><td class="size11">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>12</td><td class="size12">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>13</td><td class="size13">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>14</td><td class="size14">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>16</td><td class="size16">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>18</td><td class="size18">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>20</td><td class="size20">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>24</td><td class="size24">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>30</td><td class="size30">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>36</td><td class="size36">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>48</td><td class="size48">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>60</td><td class="size60">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>72</td><td class="size72">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>90</td><td class="size90">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + </table> + + </div> + + </div> + + + + <div class="section" id="bodycomparison"> + + + <div id="xheight"> + <div class="fontbody">◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼body</div><div class="arialbody">body</div><div class="verdanabody">body</div><div class="georgiabody">body</div></div> + <div class="fontbody" style="z-index:1"> + body<span>Noto Serif Bold</span> + </div> + <div class="arialbody" style="z-index:1"> + body<span>Arial</span> + </div> + <div class="verdanabody" style="z-index:1"> + body<span>Verdana</span> + </div> + <div class="georgiabody" style="z-index:1"> + body<span>Georgia</span> + </div> + + + + </div> + + + <div class="section psample psample_row1" id=""> + + <div class="grid2 firstcol"> + <p class="size10"><span>10.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid3"> + <p class="size11"><span>11.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid3"> + <p class="size12"><span>12.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid4"> + <p class="size13"><span>13.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="white_blend"></div> + + </div> + <div class="section psample psample_row2" id=""> + <div class="grid3 firstcol"> + <p class="size14"><span>14.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid4"> + <p class="size16"><span>16.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid5"> + <p class="size18"><span>18.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + + <div class="white_blend"></div> + + </div> + + <div class="section psample psample_row3" id=""> + <div class="grid5 firstcol"> + <p class="size20"><span>20.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + <div class="grid7"> + <p class="size24"><span>24.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + + <div class="white_blend"></div> + + </div> + + <div class="section psample psample_row4" id=""> + <div class="grid12 firstcol"> + <p class="size30"><span>30.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + <div class="white_blend"></div> + + </div> + + + + <div class="section psample psample_row1 fullreverse"> + <div class="grid2 firstcol"> + <p class="size10"><span>10.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid3"> + <p class="size11"><span>11.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid3"> + <p class="size12"><span>12.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid4"> + <p class="size13"><span>13.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="black_blend"></div> + + </div> + + <div class="section psample psample_row2 fullreverse"> + <div class="grid3 firstcol"> + <p class="size14"><span>14.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid4"> + <p class="size16"><span>16.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid5"> + <p class="size18"><span>18.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="black_blend"></div> + + </div> + + <div class="section psample fullreverse psample_row3" id=""> + <div class="grid5 firstcol"> + <p class="size20"><span>20.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + <div class="grid7"> + <p class="size24"><span>24.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + + <div class="black_blend"></div> + + </div> + + <div class="section psample fullreverse psample_row4" id="" style="border-bottom: 20px #000 solid;"> + <div class="grid12 firstcol"> + <p class="size30"><span>30.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + <div class="black_blend"></div> + + </div> + + + + + </div> + + <div id="layout"> + + <div class="section"> + + <div class="grid12 firstcol"> + <h1>Lorem Ipsum Dolor</h1> + <h2>Etiam porta sem malesuada magna mollis euismod</h2> + + <p class="byline">By <a href="#link">Aenean Lacinia</a></p> + </div> + </div> + <div class="section"> + <div class="grid8 firstcol"> + <p class="large">Donec sed odio dui. Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p> + + + <h3>Pellentesque ornare sem</h3> + + <p>Maecenas sed diam eget risus varius blandit sit amet non magna. Maecenas faucibus mollis interdum. Donec ullamcorper nulla non metus auctor fringilla. Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam id dolor id nibh ultricies vehicula ut id elit. </p> + + <p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. </p> + + <p>Nulla vitae elit libero, a pharetra augue. Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Aenean lacinia bibendum nulla sed consectetur. </p> + + <p>Nullam quis risus eget urna mollis ornare vel eu leo. Nullam quis risus eget urna mollis ornare vel eu leo. Maecenas sed diam eget risus varius blandit sit amet non magna. Donec ullamcorper nulla non metus auctor fringilla. </p> + + <h3>Cras mattis consectetur</h3> + + <p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Aenean lacinia bibendum nulla sed consectetur. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Cras mattis consectetur purus sit amet fermentum. </p> + + <p>Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam quis risus eget urna mollis ornare vel eu leo. Cras mattis consectetur purus sit amet fermentum.</p> + </div> + + <div class="grid4 sidebar"> + + <div class="box reverse"> + <p class="last">Nullam quis risus eget urna mollis ornare vel eu leo. Donec ullamcorper nulla non metus auctor fringilla. Cras mattis consectetur purus sit amet fermentum. Sed posuere consectetur est at lobortis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. </p> + </div> + + <p class="caption">Maecenas sed diam eget risus varius.</p> + + <p>Vestibulum id ligula porta felis euismod semper. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Vestibulum id ligula porta felis euismod semper. Sed posuere consectetur est at lobortis. Maecenas sed diam eget risus varius blandit sit amet non magna. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p> + + + + <p>Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Aenean lacinia bibendum nulla sed consectetur. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Aenean lacinia bibendum nulla sed consectetur. Nullam quis risus eget urna mollis ornare vel eu leo. </p> + + <p>Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Donec ullamcorper nulla non metus auctor fringilla. Maecenas faucibus mollis interdum. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p> + + </div> + </div> + + </div> + + + + + + + <div id="glyphs"> + <div class="section"> + <div class="grid12 firstcol"> + + <h1>Language Support</h1> + <p>The subset of Noto Serif Bold in this kit supports the following languages:<br /> + + English, Greek, Arrernte, Bislama, Cebuano, Fijian, Gilbertese, Hmong, Ibanag, Iloko_ilokano, Interglossa_glosa, Interlingua, Lojban, Norfolk_pitcairnese, Oromo, Rotokas, Seychelles_creole, Shona, Somali, Southern_ndebele, Swahili, Swati_swazi, Tok_pisin, Warlpiri, Xhosa, Zulu, Latinbasic, Ubasic, Demo </p> + <h1>Glyph Chart</h1> + <p>The subset of Noto Serif Bold in this kit includes all the glyphs listed below. Unicode entities are included above each glyph to help you insert individual characters into your layout.</p> + <div id="glyph_chart"> + + <div><p>&#13;</p> </div> + <div><p>&#32;</p> </div> + <div><p>&#33;</p>!</div> + <div><p>&#34;</p>"</div> + <div><p>&#35;</p>#</div> + <div><p>&#36;</p>$</div> + <div><p>&#37;</p>%</div> + <div><p>&#38;</p>&</div> + <div><p>&#39;</p>'</div> + <div><p>&#40;</p>(</div> + <div><p>&#41;</p>)</div> + <div><p>&#42;</p>*</div> + <div><p>&#43;</p>+</div> + <div><p>&#44;</p>,</div> + <div><p>&#45;</p>-</div> + <div><p>&#46;</p>.</div> + <div><p>&#47;</p>/</div> + <div><p>&#48;</p>0</div> + <div><p>&#49;</p>1</div> + <div><p>&#50;</p>2</div> + <div><p>&#51;</p>3</div> + <div><p>&#52;</p>4</div> + <div><p>&#53;</p>5</div> + <div><p>&#54;</p>6</div> + <div><p>&#55;</p>7</div> + <div><p>&#56;</p>8</div> + <div><p>&#57;</p>9</div> + <div><p>&#58;</p>:</div> + <div><p>&#59;</p>;</div> + <div><p>&#60;</p><</div> + <div><p>&#61;</p>=</div> + <div><p>&#62;</p>></div> + <div><p>&#63;</p>?</div> + <div><p>&#64;</p>@</div> + <div><p>&#65;</p>A</div> + <div><p>&#66;</p>B</div> + <div><p>&#67;</p>C</div> + <div><p>&#68;</p>D</div> + <div><p>&#69;</p>E</div> + <div><p>&#70;</p>F</div> + <div><p>&#71;</p>G</div> + <div><p>&#72;</p>H</div> + <div><p>&#73;</p>I</div> + <div><p>&#74;</p>J</div> + <div><p>&#75;</p>K</div> + <div><p>&#76;</p>L</div> + <div><p>&#77;</p>M</div> + <div><p>&#78;</p>N</div> + <div><p>&#79;</p>O</div> + <div><p>&#80;</p>P</div> + <div><p>&#81;</p>Q</div> + <div><p>&#82;</p>R</div> + <div><p>&#83;</p>S</div> + <div><p>&#84;</p>T</div> + <div><p>&#85;</p>U</div> + <div><p>&#86;</p>V</div> + <div><p>&#87;</p>W</div> + <div><p>&#88;</p>X</div> + <div><p>&#89;</p>Y</div> + <div><p>&#90;</p>Z</div> + <div><p>&#91;</p>[</div> + <div><p>&#92;</p>\</div> + <div><p>&#93;</p>]</div> + <div><p>&#94;</p>^</div> + <div><p>&#95;</p>_</div> + <div><p>&#96;</p>`</div> + <div><p>&#97;</p>a</div> + <div><p>&#98;</p>b</div> + <div><p>&#99;</p>c</div> + <div><p>&#100;</p>d</div> + <div><p>&#101;</p>e</div> + <div><p>&#102;</p>f</div> + <div><p>&#103;</p>g</div> + <div><p>&#104;</p>h</div> + <div><p>&#105;</p>i</div> + <div><p>&#106;</p>j</div> + <div><p>&#107;</p>k</div> + <div><p>&#108;</p>l</div> + <div><p>&#109;</p>m</div> + <div><p>&#110;</p>n</div> + <div><p>&#111;</p>o</div> + <div><p>&#112;</p>p</div> + <div><p>&#113;</p>q</div> + <div><p>&#114;</p>r</div> + <div><p>&#115;</p>s</div> + <div><p>&#116;</p>t</div> + <div><p>&#117;</p>u</div> + <div><p>&#118;</p>v</div> + <div><p>&#119;</p>w</div> + <div><p>&#120;</p>x</div> + <div><p>&#121;</p>y</div> + <div><p>&#122;</p>z</div> + <div><p>&#123;</p>{</div> + <div><p>&#124;</p>|</div> + <div><p>&#125;</p>}</div> + <div><p>&#126;</p>~</div> + <div><p>&#160;</p> </div> + <div><p>&#162;</p>¢</div> + <div><p>&#163;</p>£</div> + <div><p>&#165;</p>¥</div> + <div><p>&#168;</p>¨</div> + <div><p>&#169;</p>©</div> + <div><p>&#171;</p>«</div> + <div><p>&#173;</p>­</div> + <div><p>&#174;</p>®</div> + <div><p>&#180;</p>´</div> + <div><p>&#184;</p>¸</div> + <div><p>&#187;</p>»</div> + <div><p>&#710;</p>ˆ</div> + <div><p>&#730;</p>˚</div> + <div><p>&#732;</p>˜</div> + <div><p>&#884;</p>ʹ</div> + <div><p>&#885;</p>͵</div> + <div><p>&#890;</p>ͺ</div> + <div><p>&#891;</p>ͻ</div> + <div><p>&#892;</p>ͼ</div> + <div><p>&#893;</p>ͽ</div> + <div><p>&#894;</p>;</div> + <div><p>&#902;</p>Ά</div> + <div><p>&#904;</p>Έ</div> + <div><p>&#905;</p>Ή</div> + <div><p>&#906;</p>Ί</div> + <div><p>&#908;</p>Ό</div> + <div><p>&#910;</p>Ύ</div> + <div><p>&#911;</p>Ώ</div> + <div><p>&#912;</p>ΐ</div> + <div><p>&#913;</p>Α</div> + <div><p>&#914;</p>Β</div> + <div><p>&#915;</p>Γ</div> + <div><p>&#916;</p>Δ</div> + <div><p>&#917;</p>Ε</div> + <div><p>&#918;</p>Ζ</div> + <div><p>&#919;</p>Η</div> + <div><p>&#920;</p>Θ</div> + <div><p>&#921;</p>Ι</div> + <div><p>&#922;</p>Κ</div> + <div><p>&#923;</p>Λ</div> + <div><p>&#924;</p>Μ</div> + <div><p>&#925;</p>Ν</div> + <div><p>&#926;</p>Ξ</div> + <div><p>&#927;</p>Ο</div> + <div><p>&#928;</p>Π</div> + <div><p>&#929;</p>Ρ</div> + <div><p>&#931;</p>Σ</div> + <div><p>&#932;</p>Τ</div> + <div><p>&#933;</p>Υ</div> + <div><p>&#934;</p>Φ</div> + <div><p>&#935;</p>Χ</div> + <div><p>&#936;</p>Ψ</div> + <div><p>&#937;</p>Ω</div> + <div><p>&#938;</p>Ϊ</div> + <div><p>&#939;</p>Ϋ</div> + <div><p>&#940;</p>ά</div> + <div><p>&#941;</p>έ</div> + <div><p>&#942;</p>ή</div> + <div><p>&#943;</p>ί</div> + <div><p>&#944;</p>ΰ</div> + <div><p>&#945;</p>α</div> + <div><p>&#946;</p>β</div> + <div><p>&#947;</p>γ</div> + <div><p>&#948;</p>δ</div> + <div><p>&#949;</p>ε</div> + <div><p>&#950;</p>ζ</div> + <div><p>&#951;</p>η</div> + <div><p>&#952;</p>θ</div> + <div><p>&#953;</p>ι</div> + <div><p>&#954;</p>κ</div> + <div><p>&#955;</p>λ</div> + <div><p>&#956;</p>μ</div> + <div><p>&#957;</p>ν</div> + <div><p>&#958;</p>ξ</div> + <div><p>&#959;</p>ο</div> + <div><p>&#960;</p>π</div> + <div><p>&#961;</p>ρ</div> + <div><p>&#962;</p>ς</div> + <div><p>&#963;</p>σ</div> + <div><p>&#964;</p>τ</div> + <div><p>&#965;</p>υ</div> + <div><p>&#966;</p>φ</div> + <div><p>&#967;</p>χ</div> + <div><p>&#968;</p>ψ</div> + <div><p>&#969;</p>ω</div> + <div><p>&#970;</p>ϊ</div> + <div><p>&#971;</p>ϋ</div> + <div><p>&#972;</p>ό</div> + <div><p>&#973;</p>ύ</div> + <div><p>&#974;</p>ώ</div> + <div><p>&#976;</p>ϐ</div> + <div><p>&#977;</p>ϑ</div> + <div><p>&#978;</p>ϒ</div> + <div><p>&#979;</p>ϓ</div> + <div><p>&#980;</p>ϔ</div> + <div><p>&#981;</p>ϕ</div> + <div><p>&#982;</p>ϖ</div> + <div><p>&#983;</p>ϗ</div> + <div><p>&#984;</p>Ϙ</div> + <div><p>&#985;</p>ϙ</div> + <div><p>&#986;</p>Ϛ</div> + <div><p>&#987;</p>ϛ</div> + <div><p>&#988;</p>Ϝ</div> + <div><p>&#989;</p>ϝ</div> + <div><p>&#990;</p>Ϟ</div> + <div><p>&#991;</p>ϟ</div> + <div><p>&#992;</p>Ϡ</div> + <div><p>&#993;</p>ϡ</div> + <div><p>&#994;</p>Ϣ</div> + <div><p>&#995;</p>ϣ</div> + <div><p>&#996;</p>Ϥ</div> + <div><p>&#997;</p>ϥ</div> + <div><p>&#998;</p>Ϧ</div> + <div><p>&#999;</p>ϧ</div> + <div><p>&#1000;</p>Ϩ</div> + <div><p>&#1001;</p>ϩ</div> + <div><p>&#1002;</p>Ϫ</div> + <div><p>&#1003;</p>ϫ</div> + <div><p>&#1004;</p>Ϭ</div> + <div><p>&#1005;</p>ϭ</div> + <div><p>&#1006;</p>Ϯ</div> + <div><p>&#1007;</p>ϯ</div> + <div><p>&#1008;</p>ϰ</div> + <div><p>&#1009;</p>ϱ</div> + <div><p>&#1010;</p>ϲ</div> + <div><p>&#1011;</p>ϳ</div> + <div><p>&#1012;</p>ϴ</div> + <div><p>&#1013;</p>ϵ</div> + <div><p>&#1014;</p>϶</div> + <div><p>&#1015;</p>Ϸ</div> + <div><p>&#1016;</p>ϸ</div> + <div><p>&#1017;</p>Ϲ</div> + <div><p>&#1018;</p>Ϻ</div> + <div><p>&#1019;</p>ϻ</div> + <div><p>&#1020;</p>ϼ</div> + <div><p>&#1021;</p>Ͻ</div> + <div><p>&#1022;</p>Ͼ</div> + <div><p>&#1023;</p>Ͽ</div> + <div><p>&#8192;</p> </div> + <div><p>&#8193;</p> </div> + <div><p>&#8194;</p> </div> + <div><p>&#8195;</p> </div> + <div><p>&#8196;</p> </div> + <div><p>&#8197;</p> </div> + <div><p>&#8198;</p> </div> + <div><p>&#8199;</p> </div> + <div><p>&#8200;</p> </div> + <div><p>&#8201;</p> </div> + <div><p>&#8202;</p> </div> + <div><p>&#8208;</p>‐</div> + <div><p>&#8209;</p>‑</div> + <div><p>&#8210;</p>‒</div> + <div><p>&#8211;</p>–</div> + <div><p>&#8212;</p>—</div> + <div><p>&#8216;</p>‘</div> + <div><p>&#8217;</p>’</div> + <div><p>&#8218;</p>‚</div> + <div><p>&#8220;</p>“</div> + <div><p>&#8221;</p>”</div> + <div><p>&#8222;</p>„</div> + <div><p>&#8230;</p>…</div> + <div><p>&#8239;</p> </div> + <div><p>&#8249;</p>‹</div> + <div><p>&#8250;</p>›</div> + <div><p>&#8287;</p> </div> + <div><p>&#8364;</p>€</div> + <div><p>&#8482;</p>™</div> + <div><p>&#9724;</p>◼</div> + </div> + </div> + + + </div> + </div> + + + <div id="specs"> + + </div> + + <div id="installing"> + <div class="section"> + <div class="grid7 firstcol"> + <h1>Installing Webfonts</h1> + + <p>Webfonts are supported by all major browser platforms but not all in the same way. There are currently four different font formats that must be included in order to target all browsers. This includes TTF, WOFF, EOT and SVG.</p> + + <h2>1. Upload your webfonts</h2> + <p>You must upload your webfont kit to your website. They should be in or near the same directory as your CSS files.</p> + + <h2>2. Include the webfont stylesheet</h2> + <p>A special CSS @font-face declaration helps the various browsers select the appropriate font it needs without causing you a bunch of headaches. Learn more about this syntax by reading the <a href="https://www.fontspring.com/blog/further-hardening-of-the-bulletproof-syntax">Fontspring blog post</a> about it. The code for it is as follows:</p> + + +<code> +@font-face{ + font-family: 'MyWebFont'; + src: url('WebFont.eot'); + src: url('WebFont.eot?#iefix') format('embedded-opentype'), + url('WebFont.woff') format('woff'), + url('WebFont.ttf') format('truetype'), + url('WebFont.svg#webfont') format('svg'); +} +</code> + + <p>We've already gone ahead and generated the code for you. All you have to do is link to the stylesheet in your HTML, like this:</p> + <code><link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8" /></code> + + <h2>3. Modify your own stylesheet</h2> + <p>To take advantage of your new fonts, you must tell your stylesheet to use them. Look at the original @font-face declaration above and find the property called "font-family." The name linked there will be what you use to reference the font. Prepend that webfont name to the font stack in the "font-family" property, inside the selector you want to change. For example:</p> +<code>p { font-family: 'WebFont', Arial, sans-serif; }</code> + +<h2>4. Test</h2> +<p>Getting webfonts to work cross-browser <em>can</em> be tricky. Use the information in the sidebar to help you if you find that fonts aren't loading in a particular browser.</p> + </div> + + <div class="grid5 sidebar"> + <div class="box"> + <h2>Troubleshooting<br />Font-Face Problems</h2> + <p>Having trouble getting your webfonts to load in your new website? Here are some tips to sort out what might be the problem.</p> + + <h3>Fonts not showing in any browser</h3> + + <p>This sounds like you need to work on the plumbing. You either did not upload the fonts to the correct directory, or you did not link the fonts properly in the CSS. If you've confirmed that all this is correct and you still have a problem, take a look at your .htaccess file and see if requests are getting intercepted.</p> + + <h3>Fonts not loading in iPhone or iPad</h3> + + <p>The most common problem here is that you are serving the fonts from an IIS server. IIS refuses to serve files that have unknown MIME types. If that is the case, you must set the MIME type for SVG to "image/svg+xml" in the server settings. Follow these instructions from Microsoft if you need help.</p> + + <h3>Fonts not loading in Firefox</h3> + + <p>The primary reason for this failure? You are still using a version Firefox older than 3.5. So upgrade already! If that isn't it, then you are very likely serving fonts from a different domain. Firefox requires that all font assets be served from the same domain. Lastly it is possible that you need to add WOFF to your list of MIME types (if you are serving via IIS.)</p> + + <h3>Fonts not loading in IE</h3> + + <p>Are you looking at Internet Explorer on an actual Windows machine or are you cheating by using a service like Adobe BrowserLab? Many of these screenshot services do not render @font-face for IE. Best to test it on a real machine.</p> + + <h3>Fonts not loading in IE9</h3> + + <p>IE9, like Firefox, requires that fonts be served from the same domain as the website. Make sure that is the case.</p> + </div> + </div> + </div> + + </div> + + </div> + <div id="footer"> + <p>©2010-2017 Font Squirrel. All rights reserved.</p> + </div> +</div> +</body> +</html> diff --git a/test/samples/aurorae/fonts/noto-serif/notoserif-bold-webfont.woff b/test/samples/aurorae/fonts/noto-serif/notoserif-bold-webfont.woff new file mode 100755 index 0000000000000000000000000000000000000000..8e786a2617d1cb3bf35827f4dd5528d582e72ea4 Binary files /dev/null and b/test/samples/aurorae/fonts/noto-serif/notoserif-bold-webfont.woff differ diff --git a/test/samples/aurorae/fonts/noto-serif/notoserif-bold-webfont.woff2 b/test/samples/aurorae/fonts/noto-serif/notoserif-bold-webfont.woff2 new file mode 100755 index 0000000000000000000000000000000000000000..0e62305191577a5cdbd516ee60ff9a857fc8304f Binary files /dev/null and b/test/samples/aurorae/fonts/noto-serif/notoserif-bold-webfont.woff2 differ diff --git a/test/samples/aurorae/fonts/noto-serif/notoserif-bolditalic-demo.html b/test/samples/aurorae/fonts/noto-serif/notoserif-bolditalic-demo.html new file mode 100755 index 0000000000000000000000000000000000000000..d266522b8b4bc0a0987e10a75eed63ef18717146 --- /dev/null +++ b/test/samples/aurorae/fonts/noto-serif/notoserif-bolditalic-demo.html @@ -0,0 +1,655 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> + +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> +<head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> + <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js" type="text/javascript" charset="utf-8"></script> + <script type="text/javascript"> + (function($){$.fn.easyTabs=function(option){var param=jQuery.extend({fadeSpeed:"fast",defaultContent:1,activeClass:'active'},option);$(this).each(function(){var thisId="#"+this.id;if(param.defaultContent==''){param.defaultContent=1;} + if(typeof param.defaultContent=="number") + {var defaultTab=$(thisId+" .tabs li:eq("+(param.defaultContent-1)+") a").attr('href').substr(1);}else{var defaultTab=param.defaultContent;} + $(thisId+" .tabs li a").each(function(){var tabToHide=$(this).attr('href').substr(1);$("#"+tabToHide).addClass('easytabs-tab-content');});hideAll();changeContent(defaultTab);function hideAll(){$(thisId+" .easytabs-tab-content").hide();} + function changeContent(tabId){hideAll();$(thisId+" .tabs li").removeClass(param.activeClass);$(thisId+" .tabs li a[href=#"+tabId+"]").closest('li').addClass(param.activeClass);if(param.fadeSpeed!="none") + {$(thisId+" #"+tabId).fadeIn(param.fadeSpeed);}else{$(thisId+" #"+tabId).show();}} + $(thisId+" .tabs li").click(function(){var tabId=$(this).find('a').attr('href').substr(1);changeContent(tabId);return false;});});}})(jQuery); + </script> + <link rel="stylesheet" href="specimen_files/specimen_stylesheet.css" type="text/css" charset="utf-8" /> + <link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8" /> + + <style type="text/css"> + body{ + font-family: 'noto_serifbold_italic'; + } + </style> + + <title>Noto Serif Bold Italic Specimen</title> + + + <script type="text/javascript" charset="utf-8"> + $(document).ready(function() { + $('#container').easyTabs({defaultContent:1}); + }); + </script> +</head> + +<body> +<div id="container"> + <div id="header"> + Noto Serif Bold Italic </div> + <ul class="tabs"> + <li><a href="#specimen">Specimen</a></li> + <li><a href="#layout">Sample Layout</a></li> + <li><a href="#glyphs">Glyphs & Languages</a></li> + <li><a href="#installing">Installing Webfonts</a></li> + + </ul> + + <div id="main_content"> + + + <div id="specimen"> + + <div class="section"> + <div class="grid12 firstcol"> + <div class="huge">AaBb</div> + </div> + </div> + + <div class="section"> + <div class="glyph_range">A​B​C​D​E​F​G​H​I​J​K​L​M​N​O​P​Q​R​S​T​U​V​W​X​Y​Z​a​b​c​d​e​f​g​h​i​j​k​l​m​n​o​p​q​r​s​t​u​v​w​x​y​z​1​2​3​4​5​6​7​8​9​0​&​.​,​?​!​@​(​)​#​$​%​*​+​-​=​:​;</div> + </div> + <div class="section"> + <div class="grid12 firstcol"> + <table class="sample_table"> + <tr><td>10</td><td class="size10">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>11</td><td class="size11">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>12</td><td class="size12">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>13</td><td class="size13">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>14</td><td class="size14">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>16</td><td class="size16">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>18</td><td class="size18">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>20</td><td class="size20">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>24</td><td class="size24">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>30</td><td class="size30">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>36</td><td class="size36">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>48</td><td class="size48">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>60</td><td class="size60">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>72</td><td class="size72">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>90</td><td class="size90">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + </table> + + </div> + + </div> + + + + <div class="section" id="bodycomparison"> + + + <div id="xheight"> + <div class="fontbody">◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼body</div><div class="arialbody">body</div><div class="verdanabody">body</div><div class="georgiabody">body</div></div> + <div class="fontbody" style="z-index:1"> + body<span>Noto Serif Bold Italic</span> + </div> + <div class="arialbody" style="z-index:1"> + body<span>Arial</span> + </div> + <div class="verdanabody" style="z-index:1"> + body<span>Verdana</span> + </div> + <div class="georgiabody" style="z-index:1"> + body<span>Georgia</span> + </div> + + + + </div> + + + <div class="section psample psample_row1" id=""> + + <div class="grid2 firstcol"> + <p class="size10"><span>10.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid3"> + <p class="size11"><span>11.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid3"> + <p class="size12"><span>12.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid4"> + <p class="size13"><span>13.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="white_blend"></div> + + </div> + <div class="section psample psample_row2" id=""> + <div class="grid3 firstcol"> + <p class="size14"><span>14.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid4"> + <p class="size16"><span>16.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid5"> + <p class="size18"><span>18.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + + <div class="white_blend"></div> + + </div> + + <div class="section psample psample_row3" id=""> + <div class="grid5 firstcol"> + <p class="size20"><span>20.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + <div class="grid7"> + <p class="size24"><span>24.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + + <div class="white_blend"></div> + + </div> + + <div class="section psample psample_row4" id=""> + <div class="grid12 firstcol"> + <p class="size30"><span>30.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + <div class="white_blend"></div> + + </div> + + + + <div class="section psample psample_row1 fullreverse"> + <div class="grid2 firstcol"> + <p class="size10"><span>10.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid3"> + <p class="size11"><span>11.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid3"> + <p class="size12"><span>12.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid4"> + <p class="size13"><span>13.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="black_blend"></div> + + </div> + + <div class="section psample psample_row2 fullreverse"> + <div class="grid3 firstcol"> + <p class="size14"><span>14.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid4"> + <p class="size16"><span>16.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid5"> + <p class="size18"><span>18.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="black_blend"></div> + + </div> + + <div class="section psample fullreverse psample_row3" id=""> + <div class="grid5 firstcol"> + <p class="size20"><span>20.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + <div class="grid7"> + <p class="size24"><span>24.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + + <div class="black_blend"></div> + + </div> + + <div class="section psample fullreverse psample_row4" id="" style="border-bottom: 20px #000 solid;"> + <div class="grid12 firstcol"> + <p class="size30"><span>30.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + <div class="black_blend"></div> + + </div> + + + + + </div> + + <div id="layout"> + + <div class="section"> + + <div class="grid12 firstcol"> + <h1>Lorem Ipsum Dolor</h1> + <h2>Etiam porta sem malesuada magna mollis euismod</h2> + + <p class="byline">By <a href="#link">Aenean Lacinia</a></p> + </div> + </div> + <div class="section"> + <div class="grid8 firstcol"> + <p class="large">Donec sed odio dui. Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p> + + + <h3>Pellentesque ornare sem</h3> + + <p>Maecenas sed diam eget risus varius blandit sit amet non magna. Maecenas faucibus mollis interdum. Donec ullamcorper nulla non metus auctor fringilla. Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam id dolor id nibh ultricies vehicula ut id elit. </p> + + <p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. </p> + + <p>Nulla vitae elit libero, a pharetra augue. Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Aenean lacinia bibendum nulla sed consectetur. </p> + + <p>Nullam quis risus eget urna mollis ornare vel eu leo. Nullam quis risus eget urna mollis ornare vel eu leo. Maecenas sed diam eget risus varius blandit sit amet non magna. Donec ullamcorper nulla non metus auctor fringilla. </p> + + <h3>Cras mattis consectetur</h3> + + <p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Aenean lacinia bibendum nulla sed consectetur. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Cras mattis consectetur purus sit amet fermentum. </p> + + <p>Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam quis risus eget urna mollis ornare vel eu leo. Cras mattis consectetur purus sit amet fermentum.</p> + </div> + + <div class="grid4 sidebar"> + + <div class="box reverse"> + <p class="last">Nullam quis risus eget urna mollis ornare vel eu leo. Donec ullamcorper nulla non metus auctor fringilla. Cras mattis consectetur purus sit amet fermentum. Sed posuere consectetur est at lobortis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. </p> + </div> + + <p class="caption">Maecenas sed diam eget risus varius.</p> + + <p>Vestibulum id ligula porta felis euismod semper. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Vestibulum id ligula porta felis euismod semper. Sed posuere consectetur est at lobortis. Maecenas sed diam eget risus varius blandit sit amet non magna. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p> + + + + <p>Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Aenean lacinia bibendum nulla sed consectetur. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Aenean lacinia bibendum nulla sed consectetur. Nullam quis risus eget urna mollis ornare vel eu leo. </p> + + <p>Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Donec ullamcorper nulla non metus auctor fringilla. Maecenas faucibus mollis interdum. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p> + + </div> + </div> + + </div> + + + + + + + <div id="glyphs"> + <div class="section"> + <div class="grid12 firstcol"> + + <h1>Language Support</h1> + <p>The subset of Noto Serif Bold Italic in this kit supports the following languages:<br /> + + English, Greek, Arrernte, Bislama, Cebuano, Fijian, Gilbertese, Hmong, Ibanag, Iloko_ilokano, Interglossa_glosa, Interlingua, Lojban, Norfolk_pitcairnese, Oromo, Rotokas, Seychelles_creole, Shona, Somali, Southern_ndebele, Swahili, Swati_swazi, Tok_pisin, Warlpiri, Xhosa, Zulu, Latinbasic, Ubasic, Demo </p> + <h1>Glyph Chart</h1> + <p>The subset of Noto Serif Bold Italic in this kit includes all the glyphs listed below. Unicode entities are included above each glyph to help you insert individual characters into your layout.</p> + <div id="glyph_chart"> + + <div><p>&#13;</p> </div> + <div><p>&#32;</p> </div> + <div><p>&#33;</p>!</div> + <div><p>&#34;</p>"</div> + <div><p>&#35;</p>#</div> + <div><p>&#36;</p>$</div> + <div><p>&#37;</p>%</div> + <div><p>&#38;</p>&</div> + <div><p>&#39;</p>'</div> + <div><p>&#40;</p>(</div> + <div><p>&#41;</p>)</div> + <div><p>&#42;</p>*</div> + <div><p>&#43;</p>+</div> + <div><p>&#44;</p>,</div> + <div><p>&#45;</p>-</div> + <div><p>&#46;</p>.</div> + <div><p>&#47;</p>/</div> + <div><p>&#48;</p>0</div> + <div><p>&#49;</p>1</div> + <div><p>&#50;</p>2</div> + <div><p>&#51;</p>3</div> + <div><p>&#52;</p>4</div> + <div><p>&#53;</p>5</div> + <div><p>&#54;</p>6</div> + <div><p>&#55;</p>7</div> + <div><p>&#56;</p>8</div> + <div><p>&#57;</p>9</div> + <div><p>&#58;</p>:</div> + <div><p>&#59;</p>;</div> + <div><p>&#60;</p><</div> + <div><p>&#61;</p>=</div> + <div><p>&#62;</p>></div> + <div><p>&#63;</p>?</div> + <div><p>&#64;</p>@</div> + <div><p>&#65;</p>A</div> + <div><p>&#66;</p>B</div> + <div><p>&#67;</p>C</div> + <div><p>&#68;</p>D</div> + <div><p>&#69;</p>E</div> + <div><p>&#70;</p>F</div> + <div><p>&#71;</p>G</div> + <div><p>&#72;</p>H</div> + <div><p>&#73;</p>I</div> + <div><p>&#74;</p>J</div> + <div><p>&#75;</p>K</div> + <div><p>&#76;</p>L</div> + <div><p>&#77;</p>M</div> + <div><p>&#78;</p>N</div> + <div><p>&#79;</p>O</div> + <div><p>&#80;</p>P</div> + <div><p>&#81;</p>Q</div> + <div><p>&#82;</p>R</div> + <div><p>&#83;</p>S</div> + <div><p>&#84;</p>T</div> + <div><p>&#85;</p>U</div> + <div><p>&#86;</p>V</div> + <div><p>&#87;</p>W</div> + <div><p>&#88;</p>X</div> + <div><p>&#89;</p>Y</div> + <div><p>&#90;</p>Z</div> + <div><p>&#91;</p>[</div> + <div><p>&#92;</p>\</div> + <div><p>&#93;</p>]</div> + <div><p>&#94;</p>^</div> + <div><p>&#95;</p>_</div> + <div><p>&#96;</p>`</div> + <div><p>&#97;</p>a</div> + <div><p>&#98;</p>b</div> + <div><p>&#99;</p>c</div> + <div><p>&#100;</p>d</div> + <div><p>&#101;</p>e</div> + <div><p>&#102;</p>f</div> + <div><p>&#103;</p>g</div> + <div><p>&#104;</p>h</div> + <div><p>&#105;</p>i</div> + <div><p>&#106;</p>j</div> + <div><p>&#107;</p>k</div> + <div><p>&#108;</p>l</div> + <div><p>&#109;</p>m</div> + <div><p>&#110;</p>n</div> + <div><p>&#111;</p>o</div> + <div><p>&#112;</p>p</div> + <div><p>&#113;</p>q</div> + <div><p>&#114;</p>r</div> + <div><p>&#115;</p>s</div> + <div><p>&#116;</p>t</div> + <div><p>&#117;</p>u</div> + <div><p>&#118;</p>v</div> + <div><p>&#119;</p>w</div> + <div><p>&#120;</p>x</div> + <div><p>&#121;</p>y</div> + <div><p>&#122;</p>z</div> + <div><p>&#123;</p>{</div> + <div><p>&#124;</p>|</div> + <div><p>&#125;</p>}</div> + <div><p>&#126;</p>~</div> + <div><p>&#160;</p> </div> + <div><p>&#162;</p>¢</div> + <div><p>&#163;</p>£</div> + <div><p>&#165;</p>¥</div> + <div><p>&#168;</p>¨</div> + <div><p>&#169;</p>©</div> + <div><p>&#171;</p>«</div> + <div><p>&#173;</p>­</div> + <div><p>&#174;</p>®</div> + <div><p>&#180;</p>´</div> + <div><p>&#184;</p>¸</div> + <div><p>&#187;</p>»</div> + <div><p>&#710;</p>ˆ</div> + <div><p>&#730;</p>˚</div> + <div><p>&#732;</p>˜</div> + <div><p>&#884;</p>ʹ</div> + <div><p>&#885;</p>͵</div> + <div><p>&#890;</p>ͺ</div> + <div><p>&#891;</p>ͻ</div> + <div><p>&#892;</p>ͼ</div> + <div><p>&#893;</p>ͽ</div> + <div><p>&#894;</p>;</div> + <div><p>&#902;</p>Ά</div> + <div><p>&#904;</p>Έ</div> + <div><p>&#905;</p>Ή</div> + <div><p>&#906;</p>Ί</div> + <div><p>&#908;</p>Ό</div> + <div><p>&#910;</p>Ύ</div> + <div><p>&#911;</p>Ώ</div> + <div><p>&#912;</p>ΐ</div> + <div><p>&#913;</p>Α</div> + <div><p>&#914;</p>Β</div> + <div><p>&#915;</p>Γ</div> + <div><p>&#916;</p>Δ</div> + <div><p>&#917;</p>Ε</div> + <div><p>&#918;</p>Ζ</div> + <div><p>&#919;</p>Η</div> + <div><p>&#920;</p>Θ</div> + <div><p>&#921;</p>Ι</div> + <div><p>&#922;</p>Κ</div> + <div><p>&#923;</p>Λ</div> + <div><p>&#924;</p>Μ</div> + <div><p>&#925;</p>Ν</div> + <div><p>&#926;</p>Ξ</div> + <div><p>&#927;</p>Ο</div> + <div><p>&#928;</p>Π</div> + <div><p>&#929;</p>Ρ</div> + <div><p>&#931;</p>Σ</div> + <div><p>&#932;</p>Τ</div> + <div><p>&#933;</p>Υ</div> + <div><p>&#934;</p>Φ</div> + <div><p>&#935;</p>Χ</div> + <div><p>&#936;</p>Ψ</div> + <div><p>&#937;</p>Ω</div> + <div><p>&#938;</p>Ϊ</div> + <div><p>&#939;</p>Ϋ</div> + <div><p>&#940;</p>ά</div> + <div><p>&#941;</p>έ</div> + <div><p>&#942;</p>ή</div> + <div><p>&#943;</p>ί</div> + <div><p>&#944;</p>ΰ</div> + <div><p>&#945;</p>α</div> + <div><p>&#946;</p>β</div> + <div><p>&#947;</p>γ</div> + <div><p>&#948;</p>δ</div> + <div><p>&#949;</p>ε</div> + <div><p>&#950;</p>ζ</div> + <div><p>&#951;</p>η</div> + <div><p>&#952;</p>θ</div> + <div><p>&#953;</p>ι</div> + <div><p>&#954;</p>κ</div> + <div><p>&#955;</p>λ</div> + <div><p>&#956;</p>μ</div> + <div><p>&#957;</p>ν</div> + <div><p>&#958;</p>ξ</div> + <div><p>&#959;</p>ο</div> + <div><p>&#960;</p>π</div> + <div><p>&#961;</p>ρ</div> + <div><p>&#962;</p>ς</div> + <div><p>&#963;</p>σ</div> + <div><p>&#964;</p>τ</div> + <div><p>&#965;</p>υ</div> + <div><p>&#966;</p>φ</div> + <div><p>&#967;</p>χ</div> + <div><p>&#968;</p>ψ</div> + <div><p>&#969;</p>ω</div> + <div><p>&#970;</p>ϊ</div> + <div><p>&#971;</p>ϋ</div> + <div><p>&#972;</p>ό</div> + <div><p>&#973;</p>ύ</div> + <div><p>&#974;</p>ώ</div> + <div><p>&#976;</p>ϐ</div> + <div><p>&#977;</p>ϑ</div> + <div><p>&#978;</p>ϒ</div> + <div><p>&#979;</p>ϓ</div> + <div><p>&#980;</p>ϔ</div> + <div><p>&#981;</p>ϕ</div> + <div><p>&#982;</p>ϖ</div> + <div><p>&#983;</p>ϗ</div> + <div><p>&#984;</p>Ϙ</div> + <div><p>&#985;</p>ϙ</div> + <div><p>&#986;</p>Ϛ</div> + <div><p>&#987;</p>ϛ</div> + <div><p>&#988;</p>Ϝ</div> + <div><p>&#989;</p>ϝ</div> + <div><p>&#990;</p>Ϟ</div> + <div><p>&#991;</p>ϟ</div> + <div><p>&#992;</p>Ϡ</div> + <div><p>&#993;</p>ϡ</div> + <div><p>&#994;</p>Ϣ</div> + <div><p>&#995;</p>ϣ</div> + <div><p>&#996;</p>Ϥ</div> + <div><p>&#997;</p>ϥ</div> + <div><p>&#998;</p>Ϧ</div> + <div><p>&#999;</p>ϧ</div> + <div><p>&#1000;</p>Ϩ</div> + <div><p>&#1001;</p>ϩ</div> + <div><p>&#1002;</p>Ϫ</div> + <div><p>&#1003;</p>ϫ</div> + <div><p>&#1004;</p>Ϭ</div> + <div><p>&#1005;</p>ϭ</div> + <div><p>&#1006;</p>Ϯ</div> + <div><p>&#1007;</p>ϯ</div> + <div><p>&#1008;</p>ϰ</div> + <div><p>&#1009;</p>ϱ</div> + <div><p>&#1010;</p>ϲ</div> + <div><p>&#1011;</p>ϳ</div> + <div><p>&#1012;</p>ϴ</div> + <div><p>&#1013;</p>ϵ</div> + <div><p>&#1014;</p>϶</div> + <div><p>&#1015;</p>Ϸ</div> + <div><p>&#1016;</p>ϸ</div> + <div><p>&#1017;</p>Ϲ</div> + <div><p>&#1018;</p>Ϻ</div> + <div><p>&#1019;</p>ϻ</div> + <div><p>&#1020;</p>ϼ</div> + <div><p>&#1021;</p>Ͻ</div> + <div><p>&#1022;</p>Ͼ</div> + <div><p>&#1023;</p>Ͽ</div> + <div><p>&#8192;</p> </div> + <div><p>&#8193;</p> </div> + <div><p>&#8194;</p> </div> + <div><p>&#8195;</p> </div> + <div><p>&#8196;</p> </div> + <div><p>&#8197;</p> </div> + <div><p>&#8198;</p> </div> + <div><p>&#8199;</p> </div> + <div><p>&#8200;</p> </div> + <div><p>&#8201;</p> </div> + <div><p>&#8202;</p> </div> + <div><p>&#8208;</p>‐</div> + <div><p>&#8209;</p>‑</div> + <div><p>&#8210;</p>‒</div> + <div><p>&#8211;</p>–</div> + <div><p>&#8212;</p>—</div> + <div><p>&#8216;</p>‘</div> + <div><p>&#8217;</p>’</div> + <div><p>&#8218;</p>‚</div> + <div><p>&#8220;</p>“</div> + <div><p>&#8221;</p>”</div> + <div><p>&#8222;</p>„</div> + <div><p>&#8230;</p>…</div> + <div><p>&#8239;</p> </div> + <div><p>&#8249;</p>‹</div> + <div><p>&#8250;</p>›</div> + <div><p>&#8287;</p> </div> + <div><p>&#8364;</p>€</div> + <div><p>&#8482;</p>™</div> + <div><p>&#9724;</p>◼</div> + </div> + </div> + + + </div> + </div> + + + <div id="specs"> + + </div> + + <div id="installing"> + <div class="section"> + <div class="grid7 firstcol"> + <h1>Installing Webfonts</h1> + + <p>Webfonts are supported by all major browser platforms but not all in the same way. There are currently four different font formats that must be included in order to target all browsers. This includes TTF, WOFF, EOT and SVG.</p> + + <h2>1. Upload your webfonts</h2> + <p>You must upload your webfont kit to your website. They should be in or near the same directory as your CSS files.</p> + + <h2>2. Include the webfont stylesheet</h2> + <p>A special CSS @font-face declaration helps the various browsers select the appropriate font it needs without causing you a bunch of headaches. Learn more about this syntax by reading the <a href="https://www.fontspring.com/blog/further-hardening-of-the-bulletproof-syntax">Fontspring blog post</a> about it. The code for it is as follows:</p> + + +<code> +@font-face{ + font-family: 'MyWebFont'; + src: url('WebFont.eot'); + src: url('WebFont.eot?#iefix') format('embedded-opentype'), + url('WebFont.woff') format('woff'), + url('WebFont.ttf') format('truetype'), + url('WebFont.svg#webfont') format('svg'); +} +</code> + + <p>We've already gone ahead and generated the code for you. All you have to do is link to the stylesheet in your HTML, like this:</p> + <code><link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8" /></code> + + <h2>3. Modify your own stylesheet</h2> + <p>To take advantage of your new fonts, you must tell your stylesheet to use them. Look at the original @font-face declaration above and find the property called "font-family." The name linked there will be what you use to reference the font. Prepend that webfont name to the font stack in the "font-family" property, inside the selector you want to change. For example:</p> +<code>p { font-family: 'WebFont', Arial, sans-serif; }</code> + +<h2>4. Test</h2> +<p>Getting webfonts to work cross-browser <em>can</em> be tricky. Use the information in the sidebar to help you if you find that fonts aren't loading in a particular browser.</p> + </div> + + <div class="grid5 sidebar"> + <div class="box"> + <h2>Troubleshooting<br />Font-Face Problems</h2> + <p>Having trouble getting your webfonts to load in your new website? Here are some tips to sort out what might be the problem.</p> + + <h3>Fonts not showing in any browser</h3> + + <p>This sounds like you need to work on the plumbing. You either did not upload the fonts to the correct directory, or you did not link the fonts properly in the CSS. If you've confirmed that all this is correct and you still have a problem, take a look at your .htaccess file and see if requests are getting intercepted.</p> + + <h3>Fonts not loading in iPhone or iPad</h3> + + <p>The most common problem here is that you are serving the fonts from an IIS server. IIS refuses to serve files that have unknown MIME types. If that is the case, you must set the MIME type for SVG to "image/svg+xml" in the server settings. Follow these instructions from Microsoft if you need help.</p> + + <h3>Fonts not loading in Firefox</h3> + + <p>The primary reason for this failure? You are still using a version Firefox older than 3.5. So upgrade already! If that isn't it, then you are very likely serving fonts from a different domain. Firefox requires that all font assets be served from the same domain. Lastly it is possible that you need to add WOFF to your list of MIME types (if you are serving via IIS.)</p> + + <h3>Fonts not loading in IE</h3> + + <p>Are you looking at Internet Explorer on an actual Windows machine or are you cheating by using a service like Adobe BrowserLab? Many of these screenshot services do not render @font-face for IE. Best to test it on a real machine.</p> + + <h3>Fonts not loading in IE9</h3> + + <p>IE9, like Firefox, requires that fonts be served from the same domain as the website. Make sure that is the case.</p> + </div> + </div> + </div> + + </div> + + </div> + <div id="footer"> + <p>©2010-2017 Font Squirrel. All rights reserved.</p> + </div> +</div> +</body> +</html> diff --git a/test/samples/aurorae/fonts/noto-serif/notoserif-bolditalic-webfont.ttf b/test/samples/aurorae/fonts/noto-serif/notoserif-bolditalic-webfont.ttf new file mode 100755 index 0000000000000000000000000000000000000000..4f4d8aa79dcd7e8660f500bc1c8de18ed55afa0e Binary files /dev/null and b/test/samples/aurorae/fonts/noto-serif/notoserif-bolditalic-webfont.ttf differ diff --git a/test/samples/aurorae/fonts/noto-serif/notoserif-bolditalic-webfont.woff b/test/samples/aurorae/fonts/noto-serif/notoserif-bolditalic-webfont.woff new file mode 100755 index 0000000000000000000000000000000000000000..074657eb4cc37149c34e808dd05206af472bef8e Binary files /dev/null and b/test/samples/aurorae/fonts/noto-serif/notoserif-bolditalic-webfont.woff differ diff --git a/test/samples/aurorae/fonts/noto-serif/notoserif-bolditalic-webfont.woff2 b/test/samples/aurorae/fonts/noto-serif/notoserif-bolditalic-webfont.woff2 new file mode 100755 index 0000000000000000000000000000000000000000..fec7db8d5e078f864eb68c7262c2ee1103a78313 Binary files /dev/null and b/test/samples/aurorae/fonts/noto-serif/notoserif-bolditalic-webfont.woff2 differ diff --git a/test/samples/aurorae/fonts/noto-serif/notoserif-italic-demo.html b/test/samples/aurorae/fonts/noto-serif/notoserif-italic-demo.html new file mode 100755 index 0000000000000000000000000000000000000000..7cd8dd91307c4d1bba47ec4b98d93b370dd31bca --- /dev/null +++ b/test/samples/aurorae/fonts/noto-serif/notoserif-italic-demo.html @@ -0,0 +1,655 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> + +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> +<head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> + <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js" type="text/javascript" charset="utf-8"></script> + <script type="text/javascript"> + (function($){$.fn.easyTabs=function(option){var param=jQuery.extend({fadeSpeed:"fast",defaultContent:1,activeClass:'active'},option);$(this).each(function(){var thisId="#"+this.id;if(param.defaultContent==''){param.defaultContent=1;} + if(typeof param.defaultContent=="number") + {var defaultTab=$(thisId+" .tabs li:eq("+(param.defaultContent-1)+") a").attr('href').substr(1);}else{var defaultTab=param.defaultContent;} + $(thisId+" .tabs li a").each(function(){var tabToHide=$(this).attr('href').substr(1);$("#"+tabToHide).addClass('easytabs-tab-content');});hideAll();changeContent(defaultTab);function hideAll(){$(thisId+" .easytabs-tab-content").hide();} + function changeContent(tabId){hideAll();$(thisId+" .tabs li").removeClass(param.activeClass);$(thisId+" .tabs li a[href=#"+tabId+"]").closest('li').addClass(param.activeClass);if(param.fadeSpeed!="none") + {$(thisId+" #"+tabId).fadeIn(param.fadeSpeed);}else{$(thisId+" #"+tabId).show();}} + $(thisId+" .tabs li").click(function(){var tabId=$(this).find('a').attr('href').substr(1);changeContent(tabId);return false;});});}})(jQuery); + </script> + <link rel="stylesheet" href="specimen_files/specimen_stylesheet.css" type="text/css" charset="utf-8" /> + <link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8" /> + + <style type="text/css"> + body{ + font-family: 'noto_serifitalic'; + } + </style> + + <title>Noto Serif Italic Specimen</title> + + + <script type="text/javascript" charset="utf-8"> + $(document).ready(function() { + $('#container').easyTabs({defaultContent:1}); + }); + </script> +</head> + +<body> +<div id="container"> + <div id="header"> + Noto Serif Italic </div> + <ul class="tabs"> + <li><a href="#specimen">Specimen</a></li> + <li><a href="#layout">Sample Layout</a></li> + <li><a href="#glyphs">Glyphs & Languages</a></li> + <li><a href="#installing">Installing Webfonts</a></li> + + </ul> + + <div id="main_content"> + + + <div id="specimen"> + + <div class="section"> + <div class="grid12 firstcol"> + <div class="huge">AaBb</div> + </div> + </div> + + <div class="section"> + <div class="glyph_range">A​B​C​D​E​F​G​H​I​J​K​L​M​N​O​P​Q​R​S​T​U​V​W​X​Y​Z​a​b​c​d​e​f​g​h​i​j​k​l​m​n​o​p​q​r​s​t​u​v​w​x​y​z​1​2​3​4​5​6​7​8​9​0​&​.​,​?​!​@​(​)​#​$​%​*​+​-​=​:​;</div> + </div> + <div class="section"> + <div class="grid12 firstcol"> + <table class="sample_table"> + <tr><td>10</td><td class="size10">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>11</td><td class="size11">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>12</td><td class="size12">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>13</td><td class="size13">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>14</td><td class="size14">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>16</td><td class="size16">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>18</td><td class="size18">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>20</td><td class="size20">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>24</td><td class="size24">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>30</td><td class="size30">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>36</td><td class="size36">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>48</td><td class="size48">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>60</td><td class="size60">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>72</td><td class="size72">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>90</td><td class="size90">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + </table> + + </div> + + </div> + + + + <div class="section" id="bodycomparison"> + + + <div id="xheight"> + <div class="fontbody">◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼body</div><div class="arialbody">body</div><div class="verdanabody">body</div><div class="georgiabody">body</div></div> + <div class="fontbody" style="z-index:1"> + body<span>Noto Serif Italic</span> + </div> + <div class="arialbody" style="z-index:1"> + body<span>Arial</span> + </div> + <div class="verdanabody" style="z-index:1"> + body<span>Verdana</span> + </div> + <div class="georgiabody" style="z-index:1"> + body<span>Georgia</span> + </div> + + + + </div> + + + <div class="section psample psample_row1" id=""> + + <div class="grid2 firstcol"> + <p class="size10"><span>10.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid3"> + <p class="size11"><span>11.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid3"> + <p class="size12"><span>12.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid4"> + <p class="size13"><span>13.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="white_blend"></div> + + </div> + <div class="section psample psample_row2" id=""> + <div class="grid3 firstcol"> + <p class="size14"><span>14.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid4"> + <p class="size16"><span>16.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid5"> + <p class="size18"><span>18.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + + <div class="white_blend"></div> + + </div> + + <div class="section psample psample_row3" id=""> + <div class="grid5 firstcol"> + <p class="size20"><span>20.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + <div class="grid7"> + <p class="size24"><span>24.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + + <div class="white_blend"></div> + + </div> + + <div class="section psample psample_row4" id=""> + <div class="grid12 firstcol"> + <p class="size30"><span>30.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + <div class="white_blend"></div> + + </div> + + + + <div class="section psample psample_row1 fullreverse"> + <div class="grid2 firstcol"> + <p class="size10"><span>10.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid3"> + <p class="size11"><span>11.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid3"> + <p class="size12"><span>12.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid4"> + <p class="size13"><span>13.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="black_blend"></div> + + </div> + + <div class="section psample psample_row2 fullreverse"> + <div class="grid3 firstcol"> + <p class="size14"><span>14.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid4"> + <p class="size16"><span>16.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid5"> + <p class="size18"><span>18.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="black_blend"></div> + + </div> + + <div class="section psample fullreverse psample_row3" id=""> + <div class="grid5 firstcol"> + <p class="size20"><span>20.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + <div class="grid7"> + <p class="size24"><span>24.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + + <div class="black_blend"></div> + + </div> + + <div class="section psample fullreverse psample_row4" id="" style="border-bottom: 20px #000 solid;"> + <div class="grid12 firstcol"> + <p class="size30"><span>30.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + <div class="black_blend"></div> + + </div> + + + + + </div> + + <div id="layout"> + + <div class="section"> + + <div class="grid12 firstcol"> + <h1>Lorem Ipsum Dolor</h1> + <h2>Etiam porta sem malesuada magna mollis euismod</h2> + + <p class="byline">By <a href="#link">Aenean Lacinia</a></p> + </div> + </div> + <div class="section"> + <div class="grid8 firstcol"> + <p class="large">Donec sed odio dui. Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p> + + + <h3>Pellentesque ornare sem</h3> + + <p>Maecenas sed diam eget risus varius blandit sit amet non magna. Maecenas faucibus mollis interdum. Donec ullamcorper nulla non metus auctor fringilla. Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam id dolor id nibh ultricies vehicula ut id elit. </p> + + <p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. </p> + + <p>Nulla vitae elit libero, a pharetra augue. Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Aenean lacinia bibendum nulla sed consectetur. </p> + + <p>Nullam quis risus eget urna mollis ornare vel eu leo. Nullam quis risus eget urna mollis ornare vel eu leo. Maecenas sed diam eget risus varius blandit sit amet non magna. Donec ullamcorper nulla non metus auctor fringilla. </p> + + <h3>Cras mattis consectetur</h3> + + <p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Aenean lacinia bibendum nulla sed consectetur. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Cras mattis consectetur purus sit amet fermentum. </p> + + <p>Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam quis risus eget urna mollis ornare vel eu leo. Cras mattis consectetur purus sit amet fermentum.</p> + </div> + + <div class="grid4 sidebar"> + + <div class="box reverse"> + <p class="last">Nullam quis risus eget urna mollis ornare vel eu leo. Donec ullamcorper nulla non metus auctor fringilla. Cras mattis consectetur purus sit amet fermentum. Sed posuere consectetur est at lobortis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. </p> + </div> + + <p class="caption">Maecenas sed diam eget risus varius.</p> + + <p>Vestibulum id ligula porta felis euismod semper. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Vestibulum id ligula porta felis euismod semper. Sed posuere consectetur est at lobortis. Maecenas sed diam eget risus varius blandit sit amet non magna. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p> + + + + <p>Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Aenean lacinia bibendum nulla sed consectetur. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Aenean lacinia bibendum nulla sed consectetur. Nullam quis risus eget urna mollis ornare vel eu leo. </p> + + <p>Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Donec ullamcorper nulla non metus auctor fringilla. Maecenas faucibus mollis interdum. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p> + + </div> + </div> + + </div> + + + + + + + <div id="glyphs"> + <div class="section"> + <div class="grid12 firstcol"> + + <h1>Language Support</h1> + <p>The subset of Noto Serif Italic in this kit supports the following languages:<br /> + + English, Greek, Arrernte, Bislama, Cebuano, Fijian, Gilbertese, Hmong, Ibanag, Iloko_ilokano, Interglossa_glosa, Interlingua, Lojban, Norfolk_pitcairnese, Oromo, Rotokas, Seychelles_creole, Shona, Somali, Southern_ndebele, Swahili, Swati_swazi, Tok_pisin, Warlpiri, Xhosa, Zulu, Latinbasic, Ubasic, Demo </p> + <h1>Glyph Chart</h1> + <p>The subset of Noto Serif Italic in this kit includes all the glyphs listed below. Unicode entities are included above each glyph to help you insert individual characters into your layout.</p> + <div id="glyph_chart"> + + <div><p>&#13;</p> </div> + <div><p>&#32;</p> </div> + <div><p>&#33;</p>!</div> + <div><p>&#34;</p>"</div> + <div><p>&#35;</p>#</div> + <div><p>&#36;</p>$</div> + <div><p>&#37;</p>%</div> + <div><p>&#38;</p>&</div> + <div><p>&#39;</p>'</div> + <div><p>&#40;</p>(</div> + <div><p>&#41;</p>)</div> + <div><p>&#42;</p>*</div> + <div><p>&#43;</p>+</div> + <div><p>&#44;</p>,</div> + <div><p>&#45;</p>-</div> + <div><p>&#46;</p>.</div> + <div><p>&#47;</p>/</div> + <div><p>&#48;</p>0</div> + <div><p>&#49;</p>1</div> + <div><p>&#50;</p>2</div> + <div><p>&#51;</p>3</div> + <div><p>&#52;</p>4</div> + <div><p>&#53;</p>5</div> + <div><p>&#54;</p>6</div> + <div><p>&#55;</p>7</div> + <div><p>&#56;</p>8</div> + <div><p>&#57;</p>9</div> + <div><p>&#58;</p>:</div> + <div><p>&#59;</p>;</div> + <div><p>&#60;</p><</div> + <div><p>&#61;</p>=</div> + <div><p>&#62;</p>></div> + <div><p>&#63;</p>?</div> + <div><p>&#64;</p>@</div> + <div><p>&#65;</p>A</div> + <div><p>&#66;</p>B</div> + <div><p>&#67;</p>C</div> + <div><p>&#68;</p>D</div> + <div><p>&#69;</p>E</div> + <div><p>&#70;</p>F</div> + <div><p>&#71;</p>G</div> + <div><p>&#72;</p>H</div> + <div><p>&#73;</p>I</div> + <div><p>&#74;</p>J</div> + <div><p>&#75;</p>K</div> + <div><p>&#76;</p>L</div> + <div><p>&#77;</p>M</div> + <div><p>&#78;</p>N</div> + <div><p>&#79;</p>O</div> + <div><p>&#80;</p>P</div> + <div><p>&#81;</p>Q</div> + <div><p>&#82;</p>R</div> + <div><p>&#83;</p>S</div> + <div><p>&#84;</p>T</div> + <div><p>&#85;</p>U</div> + <div><p>&#86;</p>V</div> + <div><p>&#87;</p>W</div> + <div><p>&#88;</p>X</div> + <div><p>&#89;</p>Y</div> + <div><p>&#90;</p>Z</div> + <div><p>&#91;</p>[</div> + <div><p>&#92;</p>\</div> + <div><p>&#93;</p>]</div> + <div><p>&#94;</p>^</div> + <div><p>&#95;</p>_</div> + <div><p>&#96;</p>`</div> + <div><p>&#97;</p>a</div> + <div><p>&#98;</p>b</div> + <div><p>&#99;</p>c</div> + <div><p>&#100;</p>d</div> + <div><p>&#101;</p>e</div> + <div><p>&#102;</p>f</div> + <div><p>&#103;</p>g</div> + <div><p>&#104;</p>h</div> + <div><p>&#105;</p>i</div> + <div><p>&#106;</p>j</div> + <div><p>&#107;</p>k</div> + <div><p>&#108;</p>l</div> + <div><p>&#109;</p>m</div> + <div><p>&#110;</p>n</div> + <div><p>&#111;</p>o</div> + <div><p>&#112;</p>p</div> + <div><p>&#113;</p>q</div> + <div><p>&#114;</p>r</div> + <div><p>&#115;</p>s</div> + <div><p>&#116;</p>t</div> + <div><p>&#117;</p>u</div> + <div><p>&#118;</p>v</div> + <div><p>&#119;</p>w</div> + <div><p>&#120;</p>x</div> + <div><p>&#121;</p>y</div> + <div><p>&#122;</p>z</div> + <div><p>&#123;</p>{</div> + <div><p>&#124;</p>|</div> + <div><p>&#125;</p>}</div> + <div><p>&#126;</p>~</div> + <div><p>&#160;</p> </div> + <div><p>&#162;</p>¢</div> + <div><p>&#163;</p>£</div> + <div><p>&#165;</p>¥</div> + <div><p>&#168;</p>¨</div> + <div><p>&#169;</p>©</div> + <div><p>&#171;</p>«</div> + <div><p>&#173;</p>­</div> + <div><p>&#174;</p>®</div> + <div><p>&#180;</p>´</div> + <div><p>&#184;</p>¸</div> + <div><p>&#187;</p>»</div> + <div><p>&#710;</p>ˆ</div> + <div><p>&#730;</p>˚</div> + <div><p>&#732;</p>˜</div> + <div><p>&#884;</p>ʹ</div> + <div><p>&#885;</p>͵</div> + <div><p>&#890;</p>ͺ</div> + <div><p>&#891;</p>ͻ</div> + <div><p>&#892;</p>ͼ</div> + <div><p>&#893;</p>ͽ</div> + <div><p>&#894;</p>;</div> + <div><p>&#902;</p>Ά</div> + <div><p>&#904;</p>Έ</div> + <div><p>&#905;</p>Ή</div> + <div><p>&#906;</p>Ί</div> + <div><p>&#908;</p>Ό</div> + <div><p>&#910;</p>Ύ</div> + <div><p>&#911;</p>Ώ</div> + <div><p>&#912;</p>ΐ</div> + <div><p>&#913;</p>Α</div> + <div><p>&#914;</p>Β</div> + <div><p>&#915;</p>Γ</div> + <div><p>&#916;</p>Δ</div> + <div><p>&#917;</p>Ε</div> + <div><p>&#918;</p>Ζ</div> + <div><p>&#919;</p>Η</div> + <div><p>&#920;</p>Θ</div> + <div><p>&#921;</p>Ι</div> + <div><p>&#922;</p>Κ</div> + <div><p>&#923;</p>Λ</div> + <div><p>&#924;</p>Μ</div> + <div><p>&#925;</p>Ν</div> + <div><p>&#926;</p>Ξ</div> + <div><p>&#927;</p>Ο</div> + <div><p>&#928;</p>Π</div> + <div><p>&#929;</p>Ρ</div> + <div><p>&#931;</p>Σ</div> + <div><p>&#932;</p>Τ</div> + <div><p>&#933;</p>Υ</div> + <div><p>&#934;</p>Φ</div> + <div><p>&#935;</p>Χ</div> + <div><p>&#936;</p>Ψ</div> + <div><p>&#937;</p>Ω</div> + <div><p>&#938;</p>Ϊ</div> + <div><p>&#939;</p>Ϋ</div> + <div><p>&#940;</p>ά</div> + <div><p>&#941;</p>έ</div> + <div><p>&#942;</p>ή</div> + <div><p>&#943;</p>ί</div> + <div><p>&#944;</p>ΰ</div> + <div><p>&#945;</p>α</div> + <div><p>&#946;</p>β</div> + <div><p>&#947;</p>γ</div> + <div><p>&#948;</p>δ</div> + <div><p>&#949;</p>ε</div> + <div><p>&#950;</p>ζ</div> + <div><p>&#951;</p>η</div> + <div><p>&#952;</p>θ</div> + <div><p>&#953;</p>ι</div> + <div><p>&#954;</p>κ</div> + <div><p>&#955;</p>λ</div> + <div><p>&#956;</p>μ</div> + <div><p>&#957;</p>ν</div> + <div><p>&#958;</p>ξ</div> + <div><p>&#959;</p>ο</div> + <div><p>&#960;</p>π</div> + <div><p>&#961;</p>ρ</div> + <div><p>&#962;</p>ς</div> + <div><p>&#963;</p>σ</div> + <div><p>&#964;</p>τ</div> + <div><p>&#965;</p>υ</div> + <div><p>&#966;</p>φ</div> + <div><p>&#967;</p>χ</div> + <div><p>&#968;</p>ψ</div> + <div><p>&#969;</p>ω</div> + <div><p>&#970;</p>ϊ</div> + <div><p>&#971;</p>ϋ</div> + <div><p>&#972;</p>ό</div> + <div><p>&#973;</p>ύ</div> + <div><p>&#974;</p>ώ</div> + <div><p>&#976;</p>ϐ</div> + <div><p>&#977;</p>ϑ</div> + <div><p>&#978;</p>ϒ</div> + <div><p>&#979;</p>ϓ</div> + <div><p>&#980;</p>ϔ</div> + <div><p>&#981;</p>ϕ</div> + <div><p>&#982;</p>ϖ</div> + <div><p>&#983;</p>ϗ</div> + <div><p>&#984;</p>Ϙ</div> + <div><p>&#985;</p>ϙ</div> + <div><p>&#986;</p>Ϛ</div> + <div><p>&#987;</p>ϛ</div> + <div><p>&#988;</p>Ϝ</div> + <div><p>&#989;</p>ϝ</div> + <div><p>&#990;</p>Ϟ</div> + <div><p>&#991;</p>ϟ</div> + <div><p>&#992;</p>Ϡ</div> + <div><p>&#993;</p>ϡ</div> + <div><p>&#994;</p>Ϣ</div> + <div><p>&#995;</p>ϣ</div> + <div><p>&#996;</p>Ϥ</div> + <div><p>&#997;</p>ϥ</div> + <div><p>&#998;</p>Ϧ</div> + <div><p>&#999;</p>ϧ</div> + <div><p>&#1000;</p>Ϩ</div> + <div><p>&#1001;</p>ϩ</div> + <div><p>&#1002;</p>Ϫ</div> + <div><p>&#1003;</p>ϫ</div> + <div><p>&#1004;</p>Ϭ</div> + <div><p>&#1005;</p>ϭ</div> + <div><p>&#1006;</p>Ϯ</div> + <div><p>&#1007;</p>ϯ</div> + <div><p>&#1008;</p>ϰ</div> + <div><p>&#1009;</p>ϱ</div> + <div><p>&#1010;</p>ϲ</div> + <div><p>&#1011;</p>ϳ</div> + <div><p>&#1012;</p>ϴ</div> + <div><p>&#1013;</p>ϵ</div> + <div><p>&#1014;</p>϶</div> + <div><p>&#1015;</p>Ϸ</div> + <div><p>&#1016;</p>ϸ</div> + <div><p>&#1017;</p>Ϲ</div> + <div><p>&#1018;</p>Ϻ</div> + <div><p>&#1019;</p>ϻ</div> + <div><p>&#1020;</p>ϼ</div> + <div><p>&#1021;</p>Ͻ</div> + <div><p>&#1022;</p>Ͼ</div> + <div><p>&#1023;</p>Ͽ</div> + <div><p>&#8192;</p> </div> + <div><p>&#8193;</p> </div> + <div><p>&#8194;</p> </div> + <div><p>&#8195;</p> </div> + <div><p>&#8196;</p> </div> + <div><p>&#8197;</p> </div> + <div><p>&#8198;</p> </div> + <div><p>&#8199;</p> </div> + <div><p>&#8200;</p> </div> + <div><p>&#8201;</p> </div> + <div><p>&#8202;</p> </div> + <div><p>&#8208;</p>‐</div> + <div><p>&#8209;</p>‑</div> + <div><p>&#8210;</p>‒</div> + <div><p>&#8211;</p>–</div> + <div><p>&#8212;</p>—</div> + <div><p>&#8216;</p>‘</div> + <div><p>&#8217;</p>’</div> + <div><p>&#8218;</p>‚</div> + <div><p>&#8220;</p>“</div> + <div><p>&#8221;</p>”</div> + <div><p>&#8222;</p>„</div> + <div><p>&#8230;</p>…</div> + <div><p>&#8239;</p> </div> + <div><p>&#8249;</p>‹</div> + <div><p>&#8250;</p>›</div> + <div><p>&#8287;</p> </div> + <div><p>&#8364;</p>€</div> + <div><p>&#8482;</p>™</div> + <div><p>&#9724;</p>◼</div> + </div> + </div> + + + </div> + </div> + + + <div id="specs"> + + </div> + + <div id="installing"> + <div class="section"> + <div class="grid7 firstcol"> + <h1>Installing Webfonts</h1> + + <p>Webfonts are supported by all major browser platforms but not all in the same way. There are currently four different font formats that must be included in order to target all browsers. This includes TTF, WOFF, EOT and SVG.</p> + + <h2>1. Upload your webfonts</h2> + <p>You must upload your webfont kit to your website. They should be in or near the same directory as your CSS files.</p> + + <h2>2. Include the webfont stylesheet</h2> + <p>A special CSS @font-face declaration helps the various browsers select the appropriate font it needs without causing you a bunch of headaches. Learn more about this syntax by reading the <a href="https://www.fontspring.com/blog/further-hardening-of-the-bulletproof-syntax">Fontspring blog post</a> about it. The code for it is as follows:</p> + + +<code> +@font-face{ + font-family: 'MyWebFont'; + src: url('WebFont.eot'); + src: url('WebFont.eot?#iefix') format('embedded-opentype'), + url('WebFont.woff') format('woff'), + url('WebFont.ttf') format('truetype'), + url('WebFont.svg#webfont') format('svg'); +} +</code> + + <p>We've already gone ahead and generated the code for you. All you have to do is link to the stylesheet in your HTML, like this:</p> + <code><link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8" /></code> + + <h2>3. Modify your own stylesheet</h2> + <p>To take advantage of your new fonts, you must tell your stylesheet to use them. Look at the original @font-face declaration above and find the property called "font-family." The name linked there will be what you use to reference the font. Prepend that webfont name to the font stack in the "font-family" property, inside the selector you want to change. For example:</p> +<code>p { font-family: 'WebFont', Arial, sans-serif; }</code> + +<h2>4. Test</h2> +<p>Getting webfonts to work cross-browser <em>can</em> be tricky. Use the information in the sidebar to help you if you find that fonts aren't loading in a particular browser.</p> + </div> + + <div class="grid5 sidebar"> + <div class="box"> + <h2>Troubleshooting<br />Font-Face Problems</h2> + <p>Having trouble getting your webfonts to load in your new website? Here are some tips to sort out what might be the problem.</p> + + <h3>Fonts not showing in any browser</h3> + + <p>This sounds like you need to work on the plumbing. You either did not upload the fonts to the correct directory, or you did not link the fonts properly in the CSS. If you've confirmed that all this is correct and you still have a problem, take a look at your .htaccess file and see if requests are getting intercepted.</p> + + <h3>Fonts not loading in iPhone or iPad</h3> + + <p>The most common problem here is that you are serving the fonts from an IIS server. IIS refuses to serve files that have unknown MIME types. If that is the case, you must set the MIME type for SVG to "image/svg+xml" in the server settings. Follow these instructions from Microsoft if you need help.</p> + + <h3>Fonts not loading in Firefox</h3> + + <p>The primary reason for this failure? You are still using a version Firefox older than 3.5. So upgrade already! If that isn't it, then you are very likely serving fonts from a different domain. Firefox requires that all font assets be served from the same domain. Lastly it is possible that you need to add WOFF to your list of MIME types (if you are serving via IIS.)</p> + + <h3>Fonts not loading in IE</h3> + + <p>Are you looking at Internet Explorer on an actual Windows machine or are you cheating by using a service like Adobe BrowserLab? Many of these screenshot services do not render @font-face for IE. Best to test it on a real machine.</p> + + <h3>Fonts not loading in IE9</h3> + + <p>IE9, like Firefox, requires that fonts be served from the same domain as the website. Make sure that is the case.</p> + </div> + </div> + </div> + + </div> + + </div> + <div id="footer"> + <p>©2010-2017 Font Squirrel. All rights reserved.</p> + </div> +</div> +</body> +</html> diff --git a/test/samples/aurorae/fonts/noto-serif/notoserif-italic-webfont.ttf b/test/samples/aurorae/fonts/noto-serif/notoserif-italic-webfont.ttf new file mode 100755 index 0000000000000000000000000000000000000000..80a7f06d20c83a2fa19f96a4daa66962421e2220 Binary files /dev/null and b/test/samples/aurorae/fonts/noto-serif/notoserif-italic-webfont.ttf differ diff --git a/test/samples/aurorae/fonts/noto-serif/notoserif-italic-webfont.woff b/test/samples/aurorae/fonts/noto-serif/notoserif-italic-webfont.woff new file mode 100755 index 0000000000000000000000000000000000000000..0bf3ebd2bd2127f6bd61da1130e482a36b3e84fd Binary files /dev/null and b/test/samples/aurorae/fonts/noto-serif/notoserif-italic-webfont.woff differ diff --git a/test/samples/aurorae/fonts/noto-serif/notoserif-italic-webfont.woff2 b/test/samples/aurorae/fonts/noto-serif/notoserif-italic-webfont.woff2 new file mode 100755 index 0000000000000000000000000000000000000000..90325087935e40d25c028c53fa5598a23d8a3bdd Binary files /dev/null and b/test/samples/aurorae/fonts/noto-serif/notoserif-italic-webfont.woff2 differ diff --git a/test/samples/aurorae/fonts/noto-serif/notoserif-regular-demo.html b/test/samples/aurorae/fonts/noto-serif/notoserif-regular-demo.html new file mode 100755 index 0000000000000000000000000000000000000000..c252e2a9e77a636f0e6f51b7bca79fd035775291 --- /dev/null +++ b/test/samples/aurorae/fonts/noto-serif/notoserif-regular-demo.html @@ -0,0 +1,655 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> + +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> +<head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> + <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js" type="text/javascript" charset="utf-8"></script> + <script type="text/javascript"> + (function($){$.fn.easyTabs=function(option){var param=jQuery.extend({fadeSpeed:"fast",defaultContent:1,activeClass:'active'},option);$(this).each(function(){var thisId="#"+this.id;if(param.defaultContent==''){param.defaultContent=1;} + if(typeof param.defaultContent=="number") + {var defaultTab=$(thisId+" .tabs li:eq("+(param.defaultContent-1)+") a").attr('href').substr(1);}else{var defaultTab=param.defaultContent;} + $(thisId+" .tabs li a").each(function(){var tabToHide=$(this).attr('href').substr(1);$("#"+tabToHide).addClass('easytabs-tab-content');});hideAll();changeContent(defaultTab);function hideAll(){$(thisId+" .easytabs-tab-content").hide();} + function changeContent(tabId){hideAll();$(thisId+" .tabs li").removeClass(param.activeClass);$(thisId+" .tabs li a[href=#"+tabId+"]").closest('li').addClass(param.activeClass);if(param.fadeSpeed!="none") + {$(thisId+" #"+tabId).fadeIn(param.fadeSpeed);}else{$(thisId+" #"+tabId).show();}} + $(thisId+" .tabs li").click(function(){var tabId=$(this).find('a').attr('href').substr(1);changeContent(tabId);return false;});});}})(jQuery); + </script> + <link rel="stylesheet" href="specimen_files/specimen_stylesheet.css" type="text/css" charset="utf-8" /> + <link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8" /> + + <style type="text/css"> + body{ + font-family: 'noto_serifregular'; + } + </style> + + <title>Noto Serif Regular Specimen</title> + + + <script type="text/javascript" charset="utf-8"> + $(document).ready(function() { + $('#container').easyTabs({defaultContent:1}); + }); + </script> +</head> + +<body> +<div id="container"> + <div id="header"> + Noto Serif Regular </div> + <ul class="tabs"> + <li><a href="#specimen">Specimen</a></li> + <li><a href="#layout">Sample Layout</a></li> + <li><a href="#glyphs">Glyphs & Languages</a></li> + <li><a href="#installing">Installing Webfonts</a></li> + + </ul> + + <div id="main_content"> + + + <div id="specimen"> + + <div class="section"> + <div class="grid12 firstcol"> + <div class="huge">AaBb</div> + </div> + </div> + + <div class="section"> + <div class="glyph_range">A​B​C​D​E​F​G​H​I​J​K​L​M​N​O​P​Q​R​S​T​U​V​W​X​Y​Z​a​b​c​d​e​f​g​h​i​j​k​l​m​n​o​p​q​r​s​t​u​v​w​x​y​z​1​2​3​4​5​6​7​8​9​0​&​.​,​?​!​@​(​)​#​$​%​*​+​-​=​:​;</div> + </div> + <div class="section"> + <div class="grid12 firstcol"> + <table class="sample_table"> + <tr><td>10</td><td class="size10">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>11</td><td class="size11">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>12</td><td class="size12">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>13</td><td class="size13">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>14</td><td class="size14">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>16</td><td class="size16">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>18</td><td class="size18">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>20</td><td class="size20">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>24</td><td class="size24">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>30</td><td class="size30">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>36</td><td class="size36">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>48</td><td class="size48">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>60</td><td class="size60">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>72</td><td class="size72">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>90</td><td class="size90">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + </table> + + </div> + + </div> + + + + <div class="section" id="bodycomparison"> + + + <div id="xheight"> + <div class="fontbody">◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼body</div><div class="arialbody">body</div><div class="verdanabody">body</div><div class="georgiabody">body</div></div> + <div class="fontbody" style="z-index:1"> + body<span>Noto Serif Regular</span> + </div> + <div class="arialbody" style="z-index:1"> + body<span>Arial</span> + </div> + <div class="verdanabody" style="z-index:1"> + body<span>Verdana</span> + </div> + <div class="georgiabody" style="z-index:1"> + body<span>Georgia</span> + </div> + + + + </div> + + + <div class="section psample psample_row1" id=""> + + <div class="grid2 firstcol"> + <p class="size10"><span>10.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid3"> + <p class="size11"><span>11.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid3"> + <p class="size12"><span>12.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid4"> + <p class="size13"><span>13.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="white_blend"></div> + + </div> + <div class="section psample psample_row2" id=""> + <div class="grid3 firstcol"> + <p class="size14"><span>14.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid4"> + <p class="size16"><span>16.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid5"> + <p class="size18"><span>18.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + + <div class="white_blend"></div> + + </div> + + <div class="section psample psample_row3" id=""> + <div class="grid5 firstcol"> + <p class="size20"><span>20.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + <div class="grid7"> + <p class="size24"><span>24.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + + <div class="white_blend"></div> + + </div> + + <div class="section psample psample_row4" id=""> + <div class="grid12 firstcol"> + <p class="size30"><span>30.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + <div class="white_blend"></div> + + </div> + + + + <div class="section psample psample_row1 fullreverse"> + <div class="grid2 firstcol"> + <p class="size10"><span>10.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid3"> + <p class="size11"><span>11.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid3"> + <p class="size12"><span>12.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid4"> + <p class="size13"><span>13.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="black_blend"></div> + + </div> + + <div class="section psample psample_row2 fullreverse"> + <div class="grid3 firstcol"> + <p class="size14"><span>14.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid4"> + <p class="size16"><span>16.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid5"> + <p class="size18"><span>18.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="black_blend"></div> + + </div> + + <div class="section psample fullreverse psample_row3" id=""> + <div class="grid5 firstcol"> + <p class="size20"><span>20.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + <div class="grid7"> + <p class="size24"><span>24.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + + <div class="black_blend"></div> + + </div> + + <div class="section psample fullreverse psample_row4" id="" style="border-bottom: 20px #000 solid;"> + <div class="grid12 firstcol"> + <p class="size30"><span>30.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + <div class="black_blend"></div> + + </div> + + + + + </div> + + <div id="layout"> + + <div class="section"> + + <div class="grid12 firstcol"> + <h1>Lorem Ipsum Dolor</h1> + <h2>Etiam porta sem malesuada magna mollis euismod</h2> + + <p class="byline">By <a href="#link">Aenean Lacinia</a></p> + </div> + </div> + <div class="section"> + <div class="grid8 firstcol"> + <p class="large">Donec sed odio dui. Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p> + + + <h3>Pellentesque ornare sem</h3> + + <p>Maecenas sed diam eget risus varius blandit sit amet non magna. Maecenas faucibus mollis interdum. Donec ullamcorper nulla non metus auctor fringilla. Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam id dolor id nibh ultricies vehicula ut id elit. </p> + + <p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. </p> + + <p>Nulla vitae elit libero, a pharetra augue. Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Aenean lacinia bibendum nulla sed consectetur. </p> + + <p>Nullam quis risus eget urna mollis ornare vel eu leo. Nullam quis risus eget urna mollis ornare vel eu leo. Maecenas sed diam eget risus varius blandit sit amet non magna. Donec ullamcorper nulla non metus auctor fringilla. </p> + + <h3>Cras mattis consectetur</h3> + + <p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Aenean lacinia bibendum nulla sed consectetur. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Cras mattis consectetur purus sit amet fermentum. </p> + + <p>Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam quis risus eget urna mollis ornare vel eu leo. Cras mattis consectetur purus sit amet fermentum.</p> + </div> + + <div class="grid4 sidebar"> + + <div class="box reverse"> + <p class="last">Nullam quis risus eget urna mollis ornare vel eu leo. Donec ullamcorper nulla non metus auctor fringilla. Cras mattis consectetur purus sit amet fermentum. Sed posuere consectetur est at lobortis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. </p> + </div> + + <p class="caption">Maecenas sed diam eget risus varius.</p> + + <p>Vestibulum id ligula porta felis euismod semper. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Vestibulum id ligula porta felis euismod semper. Sed posuere consectetur est at lobortis. Maecenas sed diam eget risus varius blandit sit amet non magna. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p> + + + + <p>Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Aenean lacinia bibendum nulla sed consectetur. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Aenean lacinia bibendum nulla sed consectetur. Nullam quis risus eget urna mollis ornare vel eu leo. </p> + + <p>Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Donec ullamcorper nulla non metus auctor fringilla. Maecenas faucibus mollis interdum. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p> + + </div> + </div> + + </div> + + + + + + + <div id="glyphs"> + <div class="section"> + <div class="grid12 firstcol"> + + <h1>Language Support</h1> + <p>The subset of Noto Serif Regular in this kit supports the following languages:<br /> + + English, Greek, Arrernte, Bislama, Cebuano, Fijian, Gilbertese, Hmong, Ibanag, Iloko_ilokano, Interglossa_glosa, Interlingua, Lojban, Norfolk_pitcairnese, Oromo, Rotokas, Seychelles_creole, Shona, Somali, Southern_ndebele, Swahili, Swati_swazi, Tok_pisin, Warlpiri, Xhosa, Zulu, Latinbasic, Ubasic, Demo </p> + <h1>Glyph Chart</h1> + <p>The subset of Noto Serif Regular in this kit includes all the glyphs listed below. Unicode entities are included above each glyph to help you insert individual characters into your layout.</p> + <div id="glyph_chart"> + + <div><p>&#13;</p> </div> + <div><p>&#32;</p> </div> + <div><p>&#33;</p>!</div> + <div><p>&#34;</p>"</div> + <div><p>&#35;</p>#</div> + <div><p>&#36;</p>$</div> + <div><p>&#37;</p>%</div> + <div><p>&#38;</p>&</div> + <div><p>&#39;</p>'</div> + <div><p>&#40;</p>(</div> + <div><p>&#41;</p>)</div> + <div><p>&#42;</p>*</div> + <div><p>&#43;</p>+</div> + <div><p>&#44;</p>,</div> + <div><p>&#45;</p>-</div> + <div><p>&#46;</p>.</div> + <div><p>&#47;</p>/</div> + <div><p>&#48;</p>0</div> + <div><p>&#49;</p>1</div> + <div><p>&#50;</p>2</div> + <div><p>&#51;</p>3</div> + <div><p>&#52;</p>4</div> + <div><p>&#53;</p>5</div> + <div><p>&#54;</p>6</div> + <div><p>&#55;</p>7</div> + <div><p>&#56;</p>8</div> + <div><p>&#57;</p>9</div> + <div><p>&#58;</p>:</div> + <div><p>&#59;</p>;</div> + <div><p>&#60;</p><</div> + <div><p>&#61;</p>=</div> + <div><p>&#62;</p>></div> + <div><p>&#63;</p>?</div> + <div><p>&#64;</p>@</div> + <div><p>&#65;</p>A</div> + <div><p>&#66;</p>B</div> + <div><p>&#67;</p>C</div> + <div><p>&#68;</p>D</div> + <div><p>&#69;</p>E</div> + <div><p>&#70;</p>F</div> + <div><p>&#71;</p>G</div> + <div><p>&#72;</p>H</div> + <div><p>&#73;</p>I</div> + <div><p>&#74;</p>J</div> + <div><p>&#75;</p>K</div> + <div><p>&#76;</p>L</div> + <div><p>&#77;</p>M</div> + <div><p>&#78;</p>N</div> + <div><p>&#79;</p>O</div> + <div><p>&#80;</p>P</div> + <div><p>&#81;</p>Q</div> + <div><p>&#82;</p>R</div> + <div><p>&#83;</p>S</div> + <div><p>&#84;</p>T</div> + <div><p>&#85;</p>U</div> + <div><p>&#86;</p>V</div> + <div><p>&#87;</p>W</div> + <div><p>&#88;</p>X</div> + <div><p>&#89;</p>Y</div> + <div><p>&#90;</p>Z</div> + <div><p>&#91;</p>[</div> + <div><p>&#92;</p>\</div> + <div><p>&#93;</p>]</div> + <div><p>&#94;</p>^</div> + <div><p>&#95;</p>_</div> + <div><p>&#96;</p>`</div> + <div><p>&#97;</p>a</div> + <div><p>&#98;</p>b</div> + <div><p>&#99;</p>c</div> + <div><p>&#100;</p>d</div> + <div><p>&#101;</p>e</div> + <div><p>&#102;</p>f</div> + <div><p>&#103;</p>g</div> + <div><p>&#104;</p>h</div> + <div><p>&#105;</p>i</div> + <div><p>&#106;</p>j</div> + <div><p>&#107;</p>k</div> + <div><p>&#108;</p>l</div> + <div><p>&#109;</p>m</div> + <div><p>&#110;</p>n</div> + <div><p>&#111;</p>o</div> + <div><p>&#112;</p>p</div> + <div><p>&#113;</p>q</div> + <div><p>&#114;</p>r</div> + <div><p>&#115;</p>s</div> + <div><p>&#116;</p>t</div> + <div><p>&#117;</p>u</div> + <div><p>&#118;</p>v</div> + <div><p>&#119;</p>w</div> + <div><p>&#120;</p>x</div> + <div><p>&#121;</p>y</div> + <div><p>&#122;</p>z</div> + <div><p>&#123;</p>{</div> + <div><p>&#124;</p>|</div> + <div><p>&#125;</p>}</div> + <div><p>&#126;</p>~</div> + <div><p>&#160;</p> </div> + <div><p>&#162;</p>¢</div> + <div><p>&#163;</p>£</div> + <div><p>&#165;</p>¥</div> + <div><p>&#168;</p>¨</div> + <div><p>&#169;</p>©</div> + <div><p>&#171;</p>«</div> + <div><p>&#173;</p>­</div> + <div><p>&#174;</p>®</div> + <div><p>&#180;</p>´</div> + <div><p>&#184;</p>¸</div> + <div><p>&#187;</p>»</div> + <div><p>&#710;</p>ˆ</div> + <div><p>&#730;</p>˚</div> + <div><p>&#732;</p>˜</div> + <div><p>&#884;</p>ʹ</div> + <div><p>&#885;</p>͵</div> + <div><p>&#890;</p>ͺ</div> + <div><p>&#891;</p>ͻ</div> + <div><p>&#892;</p>ͼ</div> + <div><p>&#893;</p>ͽ</div> + <div><p>&#894;</p>;</div> + <div><p>&#902;</p>Ά</div> + <div><p>&#904;</p>Έ</div> + <div><p>&#905;</p>Ή</div> + <div><p>&#906;</p>Ί</div> + <div><p>&#908;</p>Ό</div> + <div><p>&#910;</p>Ύ</div> + <div><p>&#911;</p>Ώ</div> + <div><p>&#912;</p>ΐ</div> + <div><p>&#913;</p>Α</div> + <div><p>&#914;</p>Β</div> + <div><p>&#915;</p>Γ</div> + <div><p>&#916;</p>Δ</div> + <div><p>&#917;</p>Ε</div> + <div><p>&#918;</p>Ζ</div> + <div><p>&#919;</p>Η</div> + <div><p>&#920;</p>Θ</div> + <div><p>&#921;</p>Ι</div> + <div><p>&#922;</p>Κ</div> + <div><p>&#923;</p>Λ</div> + <div><p>&#924;</p>Μ</div> + <div><p>&#925;</p>Ν</div> + <div><p>&#926;</p>Ξ</div> + <div><p>&#927;</p>Ο</div> + <div><p>&#928;</p>Π</div> + <div><p>&#929;</p>Ρ</div> + <div><p>&#931;</p>Σ</div> + <div><p>&#932;</p>Τ</div> + <div><p>&#933;</p>Υ</div> + <div><p>&#934;</p>Φ</div> + <div><p>&#935;</p>Χ</div> + <div><p>&#936;</p>Ψ</div> + <div><p>&#937;</p>Ω</div> + <div><p>&#938;</p>Ϊ</div> + <div><p>&#939;</p>Ϋ</div> + <div><p>&#940;</p>ά</div> + <div><p>&#941;</p>έ</div> + <div><p>&#942;</p>ή</div> + <div><p>&#943;</p>ί</div> + <div><p>&#944;</p>ΰ</div> + <div><p>&#945;</p>α</div> + <div><p>&#946;</p>β</div> + <div><p>&#947;</p>γ</div> + <div><p>&#948;</p>δ</div> + <div><p>&#949;</p>ε</div> + <div><p>&#950;</p>ζ</div> + <div><p>&#951;</p>η</div> + <div><p>&#952;</p>θ</div> + <div><p>&#953;</p>ι</div> + <div><p>&#954;</p>κ</div> + <div><p>&#955;</p>λ</div> + <div><p>&#956;</p>μ</div> + <div><p>&#957;</p>ν</div> + <div><p>&#958;</p>ξ</div> + <div><p>&#959;</p>ο</div> + <div><p>&#960;</p>π</div> + <div><p>&#961;</p>ρ</div> + <div><p>&#962;</p>ς</div> + <div><p>&#963;</p>σ</div> + <div><p>&#964;</p>τ</div> + <div><p>&#965;</p>υ</div> + <div><p>&#966;</p>φ</div> + <div><p>&#967;</p>χ</div> + <div><p>&#968;</p>ψ</div> + <div><p>&#969;</p>ω</div> + <div><p>&#970;</p>ϊ</div> + <div><p>&#971;</p>ϋ</div> + <div><p>&#972;</p>ό</div> + <div><p>&#973;</p>ύ</div> + <div><p>&#974;</p>ώ</div> + <div><p>&#976;</p>ϐ</div> + <div><p>&#977;</p>ϑ</div> + <div><p>&#978;</p>ϒ</div> + <div><p>&#979;</p>ϓ</div> + <div><p>&#980;</p>ϔ</div> + <div><p>&#981;</p>ϕ</div> + <div><p>&#982;</p>ϖ</div> + <div><p>&#983;</p>ϗ</div> + <div><p>&#984;</p>Ϙ</div> + <div><p>&#985;</p>ϙ</div> + <div><p>&#986;</p>Ϛ</div> + <div><p>&#987;</p>ϛ</div> + <div><p>&#988;</p>Ϝ</div> + <div><p>&#989;</p>ϝ</div> + <div><p>&#990;</p>Ϟ</div> + <div><p>&#991;</p>ϟ</div> + <div><p>&#992;</p>Ϡ</div> + <div><p>&#993;</p>ϡ</div> + <div><p>&#994;</p>Ϣ</div> + <div><p>&#995;</p>ϣ</div> + <div><p>&#996;</p>Ϥ</div> + <div><p>&#997;</p>ϥ</div> + <div><p>&#998;</p>Ϧ</div> + <div><p>&#999;</p>ϧ</div> + <div><p>&#1000;</p>Ϩ</div> + <div><p>&#1001;</p>ϩ</div> + <div><p>&#1002;</p>Ϫ</div> + <div><p>&#1003;</p>ϫ</div> + <div><p>&#1004;</p>Ϭ</div> + <div><p>&#1005;</p>ϭ</div> + <div><p>&#1006;</p>Ϯ</div> + <div><p>&#1007;</p>ϯ</div> + <div><p>&#1008;</p>ϰ</div> + <div><p>&#1009;</p>ϱ</div> + <div><p>&#1010;</p>ϲ</div> + <div><p>&#1011;</p>ϳ</div> + <div><p>&#1012;</p>ϴ</div> + <div><p>&#1013;</p>ϵ</div> + <div><p>&#1014;</p>϶</div> + <div><p>&#1015;</p>Ϸ</div> + <div><p>&#1016;</p>ϸ</div> + <div><p>&#1017;</p>Ϲ</div> + <div><p>&#1018;</p>Ϻ</div> + <div><p>&#1019;</p>ϻ</div> + <div><p>&#1020;</p>ϼ</div> + <div><p>&#1021;</p>Ͻ</div> + <div><p>&#1022;</p>Ͼ</div> + <div><p>&#1023;</p>Ͽ</div> + <div><p>&#8192;</p> </div> + <div><p>&#8193;</p> </div> + <div><p>&#8194;</p> </div> + <div><p>&#8195;</p> </div> + <div><p>&#8196;</p> </div> + <div><p>&#8197;</p> </div> + <div><p>&#8198;</p> </div> + <div><p>&#8199;</p> </div> + <div><p>&#8200;</p> </div> + <div><p>&#8201;</p> </div> + <div><p>&#8202;</p> </div> + <div><p>&#8208;</p>‐</div> + <div><p>&#8209;</p>‑</div> + <div><p>&#8210;</p>‒</div> + <div><p>&#8211;</p>–</div> + <div><p>&#8212;</p>—</div> + <div><p>&#8216;</p>‘</div> + <div><p>&#8217;</p>’</div> + <div><p>&#8218;</p>‚</div> + <div><p>&#8220;</p>“</div> + <div><p>&#8221;</p>”</div> + <div><p>&#8222;</p>„</div> + <div><p>&#8230;</p>…</div> + <div><p>&#8239;</p> </div> + <div><p>&#8249;</p>‹</div> + <div><p>&#8250;</p>›</div> + <div><p>&#8287;</p> </div> + <div><p>&#8364;</p>€</div> + <div><p>&#8482;</p>™</div> + <div><p>&#9724;</p>◼</div> + </div> + </div> + + + </div> + </div> + + + <div id="specs"> + + </div> + + <div id="installing"> + <div class="section"> + <div class="grid7 firstcol"> + <h1>Installing Webfonts</h1> + + <p>Webfonts are supported by all major browser platforms but not all in the same way. There are currently four different font formats that must be included in order to target all browsers. This includes TTF, WOFF, EOT and SVG.</p> + + <h2>1. Upload your webfonts</h2> + <p>You must upload your webfont kit to your website. They should be in or near the same directory as your CSS files.</p> + + <h2>2. Include the webfont stylesheet</h2> + <p>A special CSS @font-face declaration helps the various browsers select the appropriate font it needs without causing you a bunch of headaches. Learn more about this syntax by reading the <a href="https://www.fontspring.com/blog/further-hardening-of-the-bulletproof-syntax">Fontspring blog post</a> about it. The code for it is as follows:</p> + + +<code> +@font-face{ + font-family: 'MyWebFont'; + src: url('WebFont.eot'); + src: url('WebFont.eot?#iefix') format('embedded-opentype'), + url('WebFont.woff') format('woff'), + url('WebFont.ttf') format('truetype'), + url('WebFont.svg#webfont') format('svg'); +} +</code> + + <p>We've already gone ahead and generated the code for you. All you have to do is link to the stylesheet in your HTML, like this:</p> + <code><link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8" /></code> + + <h2>3. Modify your own stylesheet</h2> + <p>To take advantage of your new fonts, you must tell your stylesheet to use them. Look at the original @font-face declaration above and find the property called "font-family." The name linked there will be what you use to reference the font. Prepend that webfont name to the font stack in the "font-family" property, inside the selector you want to change. For example:</p> +<code>p { font-family: 'WebFont', Arial, sans-serif; }</code> + +<h2>4. Test</h2> +<p>Getting webfonts to work cross-browser <em>can</em> be tricky. Use the information in the sidebar to help you if you find that fonts aren't loading in a particular browser.</p> + </div> + + <div class="grid5 sidebar"> + <div class="box"> + <h2>Troubleshooting<br />Font-Face Problems</h2> + <p>Having trouble getting your webfonts to load in your new website? Here are some tips to sort out what might be the problem.</p> + + <h3>Fonts not showing in any browser</h3> + + <p>This sounds like you need to work on the plumbing. You either did not upload the fonts to the correct directory, or you did not link the fonts properly in the CSS. If you've confirmed that all this is correct and you still have a problem, take a look at your .htaccess file and see if requests are getting intercepted.</p> + + <h3>Fonts not loading in iPhone or iPad</h3> + + <p>The most common problem here is that you are serving the fonts from an IIS server. IIS refuses to serve files that have unknown MIME types. If that is the case, you must set the MIME type for SVG to "image/svg+xml" in the server settings. Follow these instructions from Microsoft if you need help.</p> + + <h3>Fonts not loading in Firefox</h3> + + <p>The primary reason for this failure? You are still using a version Firefox older than 3.5. So upgrade already! If that isn't it, then you are very likely serving fonts from a different domain. Firefox requires that all font assets be served from the same domain. Lastly it is possible that you need to add WOFF to your list of MIME types (if you are serving via IIS.)</p> + + <h3>Fonts not loading in IE</h3> + + <p>Are you looking at Internet Explorer on an actual Windows machine or are you cheating by using a service like Adobe BrowserLab? Many of these screenshot services do not render @font-face for IE. Best to test it on a real machine.</p> + + <h3>Fonts not loading in IE9</h3> + + <p>IE9, like Firefox, requires that fonts be served from the same domain as the website. Make sure that is the case.</p> + </div> + </div> + </div> + + </div> + + </div> + <div id="footer"> + <p>©2010-2017 Font Squirrel. All rights reserved.</p> + </div> +</div> +</body> +</html> diff --git a/test/samples/aurorae/fonts/noto-serif/notoserif-regular-webfont.ttf b/test/samples/aurorae/fonts/noto-serif/notoserif-regular-webfont.ttf new file mode 100755 index 0000000000000000000000000000000000000000..3ea8674b919e275670c3f7e389d4672431894c72 Binary files /dev/null and b/test/samples/aurorae/fonts/noto-serif/notoserif-regular-webfont.ttf differ diff --git a/test/samples/aurorae/fonts/noto-serif/notoserif-regular-webfont.woff b/test/samples/aurorae/fonts/noto-serif/notoserif-regular-webfont.woff new file mode 100755 index 0000000000000000000000000000000000000000..83112b08c4e888307276cdc347a259946ab6bdd2 Binary files /dev/null and b/test/samples/aurorae/fonts/noto-serif/notoserif-regular-webfont.woff differ diff --git a/test/samples/aurorae/fonts/noto-serif/notoserif-regular-webfont.woff2 b/test/samples/aurorae/fonts/noto-serif/notoserif-regular-webfont.woff2 new file mode 100755 index 0000000000000000000000000000000000000000..36eb909c061a81b745f87104112ab3ab48ce6e31 Binary files /dev/null and b/test/samples/aurorae/fonts/noto-serif/notoserif-regular-webfont.woff2 differ diff --git a/test/samples/aurorae/fonts/noto-serif/specimen_files/grid_12-825-55-15.css b/test/samples/aurorae/fonts/noto-serif/specimen_files/grid_12-825-55-15.css new file mode 100755 index 0000000000000000000000000000000000000000..3d6aef783a908415e66bb296d4e4bbb7366f0bcb --- /dev/null +++ b/test/samples/aurorae/fonts/noto-serif/specimen_files/grid_12-825-55-15.css @@ -0,0 +1,129 @@ +/*Notes about grid: +Columns: 12 +Grid Width: 825px +Column Width: 55px +Gutter Width: 15px +-------------------------------*/ + + + +.section {margin-bottom: 18px; +} +.section:after {content: ".";display: block;height: 0;clear: both;visibility: hidden;} +.section {*zoom: 1;} + +.section .firstcolumn, +.section .firstcol {margin-left: 0;} + + +/* Border on left hand side of a column. */ +.border { + padding-left: 7px; + margin-left: 7px; + border-left: 1px solid #eee; +} + +/* Border with more whitespace, spans one column. */ +.colborder { + padding-left: 42px; + margin-left: 42px; + border-left: 1px solid #eee; +} + + + +/* The Grid Classes */ +.grid1, .grid1_2cols, .grid1_3cols, .grid1_4cols, .grid2, .grid2_3cols, .grid2_4cols, .grid3, .grid3_2cols, .grid3_4cols, .grid4, .grid4_3cols, .grid5, .grid5_2cols, .grid5_3cols, .grid5_4cols, .grid6, .grid6_4cols, .grid7, .grid7_2cols, .grid7_3cols, .grid7_4cols, .grid8, .grid8_3cols, .grid9, .grid9_2cols, .grid9_4cols, .grid10, .grid10_3cols, .grid10_4cols, .grid11, .grid11_2cols, .grid11_3cols, .grid11_4cols, .grid12 +{margin-left: 15px;float: left;display: inline; overflow: hidden;} + + +.width1, .grid1, .span-1 {width: 55px;} +.width1_2cols,.grid1_2cols {width: 20px;} +.width1_3cols,.grid1_3cols {width: 8px;} +.width1_4cols,.grid1_4cols {width: 2px;} +.input_width1 {width: 49px;} + +.width2, .grid2, .span-2 {width: 125px;} +.width2_3cols,.grid2_3cols {width: 31px;} +.width2_4cols,.grid2_4cols {width: 20px;} +.input_width2 {width: 119px;} + +.width3, .grid3, .span-3 {width: 195px;} +.width3_2cols,.grid3_2cols {width: 90px;} +.width3_4cols,.grid3_4cols {width: 37px;} +.input_width3 {width: 189px;} + +.width4, .grid4, .span-4 {width: 265px;} +.width4_3cols,.grid4_3cols {width: 78px;} +.input_width4 {width: 259px;} + +.width5, .grid5, .span-5 {width: 335px;} +.width5_2cols,.grid5_2cols {width: 160px;} +.width5_3cols,.grid5_3cols {width: 101px;} +.width5_4cols,.grid5_4cols {width: 72px;} +.input_width5 {width: 329px;} + +.width6, .grid6, .span-6 {width: 405px;} +.width6_4cols,.grid6_4cols {width: 90px;} +.input_width6 {width: 399px;} + +.width7, .grid7, .span-7 {width: 475px;} +.width7_2cols,.grid7_2cols {width: 230px;} +.width7_3cols,.grid7_3cols {width: 148px;} +.width7_4cols,.grid7_4cols {width: 107px;} +.input_width7 {width: 469px;} + +.width8, .grid8, .span-8 {width: 545px;} +.width8_3cols,.grid8_3cols {width: 171px;} +.input_width8 {width: 539px;} + +.width9, .grid9, .span-9 {width: 615px;} +.width9_2cols,.grid9_2cols {width: 300px;} +.width9_4cols,.grid9_4cols {width: 142px;} +.input_width9 {width: 609px;} + +.width10, .grid10, .span-10 {width: 685px;} +.width10_3cols,.grid10_3cols {width: 218px;} +.width10_4cols,.grid10_4cols {width: 160px;} +.input_width10 {width: 679px;} + +.width11, .grid11, .span-11 {width: 755px;} +.width11_2cols,.grid11_2cols {width: 370px;} +.width11_3cols,.grid11_3cols {width: 241px;} +.width11_4cols,.grid11_4cols {width: 177px;} +.input_width11 {width: 749px;} + +.width12, .grid12, .span-12 {width: 825px;} +.input_width12 {width: 819px;} + +/* Subdivided grid spaces */ +.emptycols_left1, .prepend-1 {padding-left: 70px;} +.emptycols_right1, .append-1 {padding-right: 70px;} +.emptycols_left2, .prepend-2 {padding-left: 140px;} +.emptycols_right2, .append-2 {padding-right: 140px;} +.emptycols_left3, .prepend-3 {padding-left: 210px;} +.emptycols_right3, .append-3 {padding-right: 210px;} +.emptycols_left4, .prepend-4 {padding-left: 280px;} +.emptycols_right4, .append-4 {padding-right: 280px;} +.emptycols_left5, .prepend-5 {padding-left: 350px;} +.emptycols_right5, .append-5 {padding-right: 350px;} +.emptycols_left6, .prepend-6 {padding-left: 420px;} +.emptycols_right6, .append-6 {padding-right: 420px;} +.emptycols_left7, .prepend-7 {padding-left: 490px;} +.emptycols_right7, .append-7 {padding-right: 490px;} +.emptycols_left8, .prepend-8 {padding-left: 560px;} +.emptycols_right8, .append-8 {padding-right: 560px;} +.emptycols_left9, .prepend-9 {padding-left: 630px;} +.emptycols_right9, .append-9 {padding-right: 630px;} +.emptycols_left10, .prepend-10 {padding-left: 700px;} +.emptycols_right10, .append-10 {padding-right: 700px;} +.emptycols_left11, .prepend-11 {padding-left: 770px;} +.emptycols_right11, .append-11 {padding-right: 770px;} +.pull-1 {margin-left: -70px;} +.push-1 {margin-right: -70px;margin-left: 18px;float: right;} +.pull-2 {margin-left: -140px;} +.push-2 {margin-right: -140px;margin-left: 18px;float: right;} +.pull-3 {margin-left: -210px;} +.push-3 {margin-right: -210px;margin-left: 18px;float: right;} +.pull-4 {margin-left: -280px;} +.push-4 {margin-right: -280px;margin-left: 18px;float: right;} \ No newline at end of file diff --git a/test/samples/aurorae/fonts/noto-serif/specimen_files/specimen_stylesheet.css b/test/samples/aurorae/fonts/noto-serif/specimen_files/specimen_stylesheet.css new file mode 100755 index 0000000000000000000000000000000000000000..aecc43c32ce0ee6e9e448361a7ed21808c8af690 --- /dev/null +++ b/test/samples/aurorae/fonts/noto-serif/specimen_files/specimen_stylesheet.css @@ -0,0 +1,396 @@ +@import url('grid_12-825-55-15.css'); + +/* + CSS Reset by Eric Meyer - Released under Public Domain + http://meyerweb.com/eric/tools/css/reset/ +*/ +html, body, div, span, applet, object, iframe, +h1, h2, h3, h4, h5, h6, p, blockquote, pre, +a, abbr, acronym, address, big, cite, code, +del, dfn, em, font, img, ins, kbd, q, s, samp, +small, strike, strong, sub, sup, tt, var, +b, u, i, center, dl, dt, dd, ol, ul, li, +fieldset, form, label, legend, table, +caption, tbody, tfoot, thead, tr, th, td + {margin: 0;padding: 0;border: 0;outline: 0; + font-size: 100%;vertical-align: baseline; + background: transparent;} +body {line-height: 1;} +ol, ul {list-style: none;} +blockquote, q {quotes: none;} +blockquote:before, blockquote:after, +q:before, q:after {content: ''; content: none;} +:focus {outline: 0;} +ins {text-decoration: none;} +del {text-decoration: line-through;} +table {border-collapse: collapse;border-spacing: 0;} + + + + +body { + color: #000; + background-color: #dcdcdc; +} + +a { + text-decoration: none; + color: #1883ba; +} + +h1{ + font-size: 32px; + font-weight: normal; + font-style: normal; + margin-bottom: 18px; +} + +h2{ + font-size: 18px; +} + +#container { + width: 865px; + margin: 0px auto; +} + + +#header { + padding: 20px; + font-size: 36px; + background-color: #000; + color: #fff; +} + +#header span { + color: #666; +} +#main_content { + background-color: #fff; + padding: 60px 20px 20px; +} + + +#footer p { + margin: 0; + padding-top: 10px; + padding-bottom: 50px; + color: #333; + font: 10px Arial, sans-serif; +} + +.tabs { + width: 100%; + height: 31px; + background-color: #444; +} +.tabs li { + float: left; + margin: 0; + overflow: hidden; + background-color: #444; +} +.tabs li a { + display: block; + color: #fff; + text-decoration: none; + font: bold 11px/11px 'Arial'; + text-transform: uppercase; + padding: 10px 15px; + border-right: 1px solid #fff; +} + +.tabs li a:hover { + background-color: #00b3ff; + +} + +.tabs li.active a { + color: #000; + background-color: #fff; +} + + + +div.huge { + + font-size: 300px; + line-height: 1em; + padding: 0; + letter-spacing: -.02em; + overflow: hidden; +} +div.glyph_range { + font-size: 72px; + line-height: 1.1em; +} + +.size10{ font-size: 10px; } +.size11{ font-size: 11px; } +.size12{ font-size: 12px; } +.size13{ font-size: 13px; } +.size14{ font-size: 14px; } +.size16{ font-size: 16px; } +.size18{ font-size: 18px; } +.size20{ font-size: 20px; } +.size24{ font-size: 24px; } +.size30{ font-size: 30px; } +.size36{ font-size: 36px; } +.size48{ font-size: 48px; } +.size60{ font-size: 60px; } +.size72{ font-size: 72px; } +.size90{ font-size: 90px; } + + +.psample_row1 { height: 120px;} +.psample_row1 { height: 120px;} +.psample_row2 { height: 160px;} +.psample_row3 { height: 160px;} +.psample_row4 { height: 160px;} + +.psample { + overflow: hidden; + position: relative; +} +.psample p { + line-height: 1.3em; + display: block; + overflow: hidden; + margin: 0; +} + +.psample span { + margin-right: .5em; +} + +.white_blend { + width: 100%; + height: 61px; + background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAVkAAAA9CAYAAAAH4BojAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAO1JREFUeNrs3TsKgFAMRUE/eer+NxztxMYuEWQG3ECKwwUF58ycAKixOAGAyAKILAAiCyCyACILgMgCiCyAyAIgsgAiCyCyAIgsgMgCiCwAIgsgsgAiC4DIAogsACIL0CWuZ3UGgLrIhjMA1EV2OAOAJQtgyQLwjOzmDAAiCyCyAIgsQFtkd2cAEFkAkQVAZAHaIns4A4AlC2DJAiCyACILILIAiCzAV5H1dQGAJQsgsgCILIDIAvwisl58AViyAJYsACILILIAIgvAe2T9EhxAZAFEFgCRBeiL7HAGgLrIhjMAWLIAliwAt1OAAQDwygTBulLIlQAAAABJRU5ErkJggg==); + position: absolute; + bottom: 0; +} +.black_blend { + width: 100%; + height: 61px; + background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAVkAAAA9CAYAAAAH4BojAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAPJJREFUeNrs3TEKhTAQRVGjibr/9QoxhY2N3Ywo50A28IrLwP9g6b1PAMSYTQAgsgAiC4DIAogsgMgCILIAIgsgsgCILIDIAogsACILILIAIguAyAKILIDIAiCyACILgMgCZCnjLWYAiFGvB0BQZJsZAFyyAC5ZAO6RXc0AILIAIguAyAKkRXYzA4DIAogsACILkBbZ3QwALlkAlywAIgsgsgAiC4DIArwVWf8uAHDJAogsACILILIAv4isH74AXLIALlkARBZAZAFEFoDnyPokOIDIAogsACILkBfZZgaAuMhWMwC4ZAE+p4x3mAEgxinAAJ+XBbPWGkwAAAAAAElFTkSuQmCC); + position: absolute; + bottom: 0; +} +.fullreverse { + background: #000 !important; + color: #fff !important; + margin-left: -20px; + padding-left: 20px; + margin-right: -20px; + padding-right: 20px; + padding: 20px; + margin-bottom:0; +} + + +.sample_table td { + padding-top: 3px; + padding-bottom:5px; + padding-left: 5px; + vertical-align: middle; + line-height: 1.2em; +} + +.sample_table td:first-child { + background-color: #eee; + text-align: right; + padding-right: 5px; + padding-left: 0; + padding: 5px; + font: 11px/12px "Courier New", Courier, mono; +} + +code { + white-space: pre; + background-color: #eee; + display: block; + padding: 10px; + margin-bottom: 18px; + overflow: auto; +} + + +.bottom,.last {margin-bottom:0 !important; padding-bottom:0 !important;} + +.box { + padding: 18px; + margin-bottom: 18px; + background: #eee; +} + +.reverse,.reversed { background: #000 !important;color: #fff !important; border: none !important;} + +#bodycomparison { + position: relative; + overflow: hidden; + font-size: 72px; + height: 90px; + white-space: nowrap; +} + +#bodycomparison div{ + font-size: 72px; + line-height: 90px; + display: inline; + margin: 0 15px 0 0; + padding: 0; +} + +#bodycomparison div span{ + font: 10px Arial; + position: absolute; + left: 0; +} +#xheight { + float: none; + position: absolute; + color: #d9f3ff; + font-size: 72px; + line-height: 90px; +} + +.fontbody { + position: relative; +} +.arialbody{ + font-family: Arial; + position: relative; +} +.verdanabody{ + font-family: Verdana; + position: relative; +} +.georgiabody{ + font-family: Georgia; + position: relative; +} + +/* @group Layout page + */ + +#layout h1 { + font-size: 36px; + line-height: 42px; + font-weight: normal; + font-style: normal; +} + +#layout h2 { + font-size: 24px; + line-height: 23px; + font-weight: normal; + font-style: normal; +} + +#layout h3 { + font-size: 22px; + line-height: 1.4em; + margin-top: 1em; + font-weight: normal; + font-style: normal; +} + + +#layout p.byline { + font-size: 12px; + margin-top: 18px; + line-height: 12px; + margin-bottom: 0; +} +#layout p { + font-size: 14px; + line-height: 21px; + margin-bottom: .5em; +} + +#layout p.large{ + font-size: 18px; + line-height: 26px; +} + +#layout .sidebar p{ + font-size: 12px; + line-height: 1.4em; +} + +#layout p.caption { + font-size: 10px; + margin-top: -16px; + margin-bottom: 18px; +} + +/* @end */ + +/* @group Glyphs */ + +#glyph_chart div{ + background-color: #d9f3ff; + color: black; + float: left; + font-size: 36px; + height: 1.2em; + line-height: 1.2em; + margin-bottom: 1px; + margin-right: 1px; + text-align: center; + width: 1.2em; + position: relative; + padding: .6em .2em .2em; +} + +#glyph_chart div p { + position: absolute; + left: 0; + top: 0; + display: block; + text-align: center; + font: bold 9px Arial, sans-serif; + background-color: #3a768f; + width: 100%; + color: #fff; + padding: 2px 0; +} + + +#glyphs h1 { + font-family: Arial, sans-serif; +} +/* @end */ + +/* @group Installing */ + +#installing { + font: 13px Arial, sans-serif; +} + +#installing p, +#glyphs p{ + line-height: 1.2em; + margin-bottom: 18px; + font: 13px Arial, sans-serif; +} + + + +#installing h3{ + font-size: 15px; + margin-top: 18px; +} + +/* @end */ + +#rendering h1 { + font-family: Arial, sans-serif; +} +.render_table td { + font: 11px "Courier New", Courier, mono; + vertical-align: middle; +} + + diff --git a/test/samples/aurorae/fonts/noto-serif/stylesheet.css b/test/samples/aurorae/fonts/noto-serif/stylesheet.css new file mode 100755 index 0000000000000000000000000000000000000000..968ec7fefad7de0e6810811bbda3e48ac4bbefad --- /dev/null +++ b/test/samples/aurorae/fonts/noto-serif/stylesheet.css @@ -0,0 +1,48 @@ +/*! Generated by Font Squirrel (https://www.fontsquirrel.com) on February 4, 2018 */ + + + +@font-face { + font-family: 'noto_serif'; + src: url('notoserif-bold-webfont.woff2') format('woff2'), + url('notoserif-bold-webfont.woff') format('woff'); + font-weight: bold; + font-style: normal; + +} + + + + +@font-face { + font-family: 'noto_serif'; + src: url('notoserif-bolditalic-webfont.woff2') format('woff2'), + url('notoserif-bolditalic-webfont.woff') format('woff'); + font-weight: bold; + font-style: italic; + +} + + + + +@font-face { + font-family: 'noto_serif'; + src: url('notoserif-italic-webfont.woff2') format('woff2'), + url('notoserif-italic-webfont.woff') format('woff'); + font-weight: normal; + font-style: italic; + +} + + + + +@font-face { + font-family: 'noto_serif'; + src: url('notoserif-regular-webfont.woff2') format('woff2'), + url('notoserif-regular-webfont.woff') format('woff'); + font-weight: normal; + font-style: normal; + +} diff --git a/test/samples/aurorae/fonts/spectral/generator_config.txt b/test/samples/aurorae/fonts/spectral/generator_config.txt new file mode 100755 index 0000000000000000000000000000000000000000..81e64f6b8bfeac345f66c41d81753e05b0948c72 --- /dev/null +++ b/test/samples/aurorae/fonts/spectral/generator_config.txt @@ -0,0 +1,5 @@ +# Font Squirrel Font-face Generator Configuration File +# Upload this file to the generator to recreate the settings +# you used to create these fonts. + +{"mode":"optimal","formats":["woff","woff2"],"tt_instructor":"default","fix_gasp":"xy","fix_vertical_metrics":"Y","metrics_ascent":"","metrics_descent":"","metrics_linegap":"","add_spaces":"Y","add_hyphens":"Y","fallback":"none","fallback_custom":"100","options_subset":"basic","subset_custom":"","subset_custom_range":"","subset_ot_features_list":"","css_stylesheet":"stylesheet.css","filename_suffix":"-webfont","emsquare":"2048","spacing_adjustment":"0"} \ No newline at end of file diff --git a/test/samples/aurorae/fonts/spectral/specimen_files/grid_12-825-55-15.css b/test/samples/aurorae/fonts/spectral/specimen_files/grid_12-825-55-15.css new file mode 100755 index 0000000000000000000000000000000000000000..3d6aef783a908415e66bb296d4e4bbb7366f0bcb --- /dev/null +++ b/test/samples/aurorae/fonts/spectral/specimen_files/grid_12-825-55-15.css @@ -0,0 +1,129 @@ +/*Notes about grid: +Columns: 12 +Grid Width: 825px +Column Width: 55px +Gutter Width: 15px +-------------------------------*/ + + + +.section {margin-bottom: 18px; +} +.section:after {content: ".";display: block;height: 0;clear: both;visibility: hidden;} +.section {*zoom: 1;} + +.section .firstcolumn, +.section .firstcol {margin-left: 0;} + + +/* Border on left hand side of a column. */ +.border { + padding-left: 7px; + margin-left: 7px; + border-left: 1px solid #eee; +} + +/* Border with more whitespace, spans one column. */ +.colborder { + padding-left: 42px; + margin-left: 42px; + border-left: 1px solid #eee; +} + + + +/* The Grid Classes */ +.grid1, .grid1_2cols, .grid1_3cols, .grid1_4cols, .grid2, .grid2_3cols, .grid2_4cols, .grid3, .grid3_2cols, .grid3_4cols, .grid4, .grid4_3cols, .grid5, .grid5_2cols, .grid5_3cols, .grid5_4cols, .grid6, .grid6_4cols, .grid7, .grid7_2cols, .grid7_3cols, .grid7_4cols, .grid8, .grid8_3cols, .grid9, .grid9_2cols, .grid9_4cols, .grid10, .grid10_3cols, .grid10_4cols, .grid11, .grid11_2cols, .grid11_3cols, .grid11_4cols, .grid12 +{margin-left: 15px;float: left;display: inline; overflow: hidden;} + + +.width1, .grid1, .span-1 {width: 55px;} +.width1_2cols,.grid1_2cols {width: 20px;} +.width1_3cols,.grid1_3cols {width: 8px;} +.width1_4cols,.grid1_4cols {width: 2px;} +.input_width1 {width: 49px;} + +.width2, .grid2, .span-2 {width: 125px;} +.width2_3cols,.grid2_3cols {width: 31px;} +.width2_4cols,.grid2_4cols {width: 20px;} +.input_width2 {width: 119px;} + +.width3, .grid3, .span-3 {width: 195px;} +.width3_2cols,.grid3_2cols {width: 90px;} +.width3_4cols,.grid3_4cols {width: 37px;} +.input_width3 {width: 189px;} + +.width4, .grid4, .span-4 {width: 265px;} +.width4_3cols,.grid4_3cols {width: 78px;} +.input_width4 {width: 259px;} + +.width5, .grid5, .span-5 {width: 335px;} +.width5_2cols,.grid5_2cols {width: 160px;} +.width5_3cols,.grid5_3cols {width: 101px;} +.width5_4cols,.grid5_4cols {width: 72px;} +.input_width5 {width: 329px;} + +.width6, .grid6, .span-6 {width: 405px;} +.width6_4cols,.grid6_4cols {width: 90px;} +.input_width6 {width: 399px;} + +.width7, .grid7, .span-7 {width: 475px;} +.width7_2cols,.grid7_2cols {width: 230px;} +.width7_3cols,.grid7_3cols {width: 148px;} +.width7_4cols,.grid7_4cols {width: 107px;} +.input_width7 {width: 469px;} + +.width8, .grid8, .span-8 {width: 545px;} +.width8_3cols,.grid8_3cols {width: 171px;} +.input_width8 {width: 539px;} + +.width9, .grid9, .span-9 {width: 615px;} +.width9_2cols,.grid9_2cols {width: 300px;} +.width9_4cols,.grid9_4cols {width: 142px;} +.input_width9 {width: 609px;} + +.width10, .grid10, .span-10 {width: 685px;} +.width10_3cols,.grid10_3cols {width: 218px;} +.width10_4cols,.grid10_4cols {width: 160px;} +.input_width10 {width: 679px;} + +.width11, .grid11, .span-11 {width: 755px;} +.width11_2cols,.grid11_2cols {width: 370px;} +.width11_3cols,.grid11_3cols {width: 241px;} +.width11_4cols,.grid11_4cols {width: 177px;} +.input_width11 {width: 749px;} + +.width12, .grid12, .span-12 {width: 825px;} +.input_width12 {width: 819px;} + +/* Subdivided grid spaces */ +.emptycols_left1, .prepend-1 {padding-left: 70px;} +.emptycols_right1, .append-1 {padding-right: 70px;} +.emptycols_left2, .prepend-2 {padding-left: 140px;} +.emptycols_right2, .append-2 {padding-right: 140px;} +.emptycols_left3, .prepend-3 {padding-left: 210px;} +.emptycols_right3, .append-3 {padding-right: 210px;} +.emptycols_left4, .prepend-4 {padding-left: 280px;} +.emptycols_right4, .append-4 {padding-right: 280px;} +.emptycols_left5, .prepend-5 {padding-left: 350px;} +.emptycols_right5, .append-5 {padding-right: 350px;} +.emptycols_left6, .prepend-6 {padding-left: 420px;} +.emptycols_right6, .append-6 {padding-right: 420px;} +.emptycols_left7, .prepend-7 {padding-left: 490px;} +.emptycols_right7, .append-7 {padding-right: 490px;} +.emptycols_left8, .prepend-8 {padding-left: 560px;} +.emptycols_right8, .append-8 {padding-right: 560px;} +.emptycols_left9, .prepend-9 {padding-left: 630px;} +.emptycols_right9, .append-9 {padding-right: 630px;} +.emptycols_left10, .prepend-10 {padding-left: 700px;} +.emptycols_right10, .append-10 {padding-right: 700px;} +.emptycols_left11, .prepend-11 {padding-left: 770px;} +.emptycols_right11, .append-11 {padding-right: 770px;} +.pull-1 {margin-left: -70px;} +.push-1 {margin-right: -70px;margin-left: 18px;float: right;} +.pull-2 {margin-left: -140px;} +.push-2 {margin-right: -140px;margin-left: 18px;float: right;} +.pull-3 {margin-left: -210px;} +.push-3 {margin-right: -210px;margin-left: 18px;float: right;} +.pull-4 {margin-left: -280px;} +.push-4 {margin-right: -280px;margin-left: 18px;float: right;} \ No newline at end of file diff --git a/test/samples/aurorae/fonts/spectral/specimen_files/specimen_stylesheet.css b/test/samples/aurorae/fonts/spectral/specimen_files/specimen_stylesheet.css new file mode 100755 index 0000000000000000000000000000000000000000..aecc43c32ce0ee6e9e448361a7ed21808c8af690 --- /dev/null +++ b/test/samples/aurorae/fonts/spectral/specimen_files/specimen_stylesheet.css @@ -0,0 +1,396 @@ +@import url('grid_12-825-55-15.css'); + +/* + CSS Reset by Eric Meyer - Released under Public Domain + http://meyerweb.com/eric/tools/css/reset/ +*/ +html, body, div, span, applet, object, iframe, +h1, h2, h3, h4, h5, h6, p, blockquote, pre, +a, abbr, acronym, address, big, cite, code, +del, dfn, em, font, img, ins, kbd, q, s, samp, +small, strike, strong, sub, sup, tt, var, +b, u, i, center, dl, dt, dd, ol, ul, li, +fieldset, form, label, legend, table, +caption, tbody, tfoot, thead, tr, th, td + {margin: 0;padding: 0;border: 0;outline: 0; + font-size: 100%;vertical-align: baseline; + background: transparent;} +body {line-height: 1;} +ol, ul {list-style: none;} +blockquote, q {quotes: none;} +blockquote:before, blockquote:after, +q:before, q:after {content: ''; content: none;} +:focus {outline: 0;} +ins {text-decoration: none;} +del {text-decoration: line-through;} +table {border-collapse: collapse;border-spacing: 0;} + + + + +body { + color: #000; + background-color: #dcdcdc; +} + +a { + text-decoration: none; + color: #1883ba; +} + +h1{ + font-size: 32px; + font-weight: normal; + font-style: normal; + margin-bottom: 18px; +} + +h2{ + font-size: 18px; +} + +#container { + width: 865px; + margin: 0px auto; +} + + +#header { + padding: 20px; + font-size: 36px; + background-color: #000; + color: #fff; +} + +#header span { + color: #666; +} +#main_content { + background-color: #fff; + padding: 60px 20px 20px; +} + + +#footer p { + margin: 0; + padding-top: 10px; + padding-bottom: 50px; + color: #333; + font: 10px Arial, sans-serif; +} + +.tabs { + width: 100%; + height: 31px; + background-color: #444; +} +.tabs li { + float: left; + margin: 0; + overflow: hidden; + background-color: #444; +} +.tabs li a { + display: block; + color: #fff; + text-decoration: none; + font: bold 11px/11px 'Arial'; + text-transform: uppercase; + padding: 10px 15px; + border-right: 1px solid #fff; +} + +.tabs li a:hover { + background-color: #00b3ff; + +} + +.tabs li.active a { + color: #000; + background-color: #fff; +} + + + +div.huge { + + font-size: 300px; + line-height: 1em; + padding: 0; + letter-spacing: -.02em; + overflow: hidden; +} +div.glyph_range { + font-size: 72px; + line-height: 1.1em; +} + +.size10{ font-size: 10px; } +.size11{ font-size: 11px; } +.size12{ font-size: 12px; } +.size13{ font-size: 13px; } +.size14{ font-size: 14px; } +.size16{ font-size: 16px; } +.size18{ font-size: 18px; } +.size20{ font-size: 20px; } +.size24{ font-size: 24px; } +.size30{ font-size: 30px; } +.size36{ font-size: 36px; } +.size48{ font-size: 48px; } +.size60{ font-size: 60px; } +.size72{ font-size: 72px; } +.size90{ font-size: 90px; } + + +.psample_row1 { height: 120px;} +.psample_row1 { height: 120px;} +.psample_row2 { height: 160px;} +.psample_row3 { height: 160px;} +.psample_row4 { height: 160px;} + +.psample { + overflow: hidden; + position: relative; +} +.psample p { + line-height: 1.3em; + display: block; + overflow: hidden; + margin: 0; +} + +.psample span { + margin-right: .5em; +} + +.white_blend { + width: 100%; + height: 61px; + background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAVkAAAA9CAYAAAAH4BojAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAO1JREFUeNrs3TsKgFAMRUE/eer+NxztxMYuEWQG3ECKwwUF58ycAKixOAGAyAKILAAiCyCyACILgMgCiCyAyAIgsgAiCyCyAIgsgMgCiCwAIgsgsgAiC4DIAogsACIL0CWuZ3UGgLrIhjMA1EV2OAOAJQtgyQLwjOzmDAAiCyCyAIgsQFtkd2cAEFkAkQVAZAHaIns4A4AlC2DJAiCyACILILIAiCzAV5H1dQGAJQsgsgCILIDIAvwisl58AViyAJYsACILILIAIgvAe2T9EhxAZAFEFgCRBeiL7HAGgLrIhjMAWLIAliwAt1OAAQDwygTBulLIlQAAAABJRU5ErkJggg==); + position: absolute; + bottom: 0; +} +.black_blend { + width: 100%; + height: 61px; + background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAVkAAAA9CAYAAAAH4BojAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAPJJREFUeNrs3TEKhTAQRVGjibr/9QoxhY2N3Ywo50A28IrLwP9g6b1PAMSYTQAgsgAiC4DIAogsgMgCILIAIgsgsgCILIDIAogsACILILIAIguAyAKILIDIAiCyACILgMgCZCnjLWYAiFGvB0BQZJsZAFyyAC5ZAO6RXc0AILIAIguAyAKkRXYzA4DIAogsACILkBbZ3QwALlkAlywAIgsgsgAiC4DIArwVWf8uAHDJAogsACILILIAv4isH74AXLIALlkARBZAZAFEFoDnyPokOIDIAogsACILkBfZZgaAuMhWMwC4ZAE+p4x3mAEgxinAAJ+XBbPWGkwAAAAAAElFTkSuQmCC); + position: absolute; + bottom: 0; +} +.fullreverse { + background: #000 !important; + color: #fff !important; + margin-left: -20px; + padding-left: 20px; + margin-right: -20px; + padding-right: 20px; + padding: 20px; + margin-bottom:0; +} + + +.sample_table td { + padding-top: 3px; + padding-bottom:5px; + padding-left: 5px; + vertical-align: middle; + line-height: 1.2em; +} + +.sample_table td:first-child { + background-color: #eee; + text-align: right; + padding-right: 5px; + padding-left: 0; + padding: 5px; + font: 11px/12px "Courier New", Courier, mono; +} + +code { + white-space: pre; + background-color: #eee; + display: block; + padding: 10px; + margin-bottom: 18px; + overflow: auto; +} + + +.bottom,.last {margin-bottom:0 !important; padding-bottom:0 !important;} + +.box { + padding: 18px; + margin-bottom: 18px; + background: #eee; +} + +.reverse,.reversed { background: #000 !important;color: #fff !important; border: none !important;} + +#bodycomparison { + position: relative; + overflow: hidden; + font-size: 72px; + height: 90px; + white-space: nowrap; +} + +#bodycomparison div{ + font-size: 72px; + line-height: 90px; + display: inline; + margin: 0 15px 0 0; + padding: 0; +} + +#bodycomparison div span{ + font: 10px Arial; + position: absolute; + left: 0; +} +#xheight { + float: none; + position: absolute; + color: #d9f3ff; + font-size: 72px; + line-height: 90px; +} + +.fontbody { + position: relative; +} +.arialbody{ + font-family: Arial; + position: relative; +} +.verdanabody{ + font-family: Verdana; + position: relative; +} +.georgiabody{ + font-family: Georgia; + position: relative; +} + +/* @group Layout page + */ + +#layout h1 { + font-size: 36px; + line-height: 42px; + font-weight: normal; + font-style: normal; +} + +#layout h2 { + font-size: 24px; + line-height: 23px; + font-weight: normal; + font-style: normal; +} + +#layout h3 { + font-size: 22px; + line-height: 1.4em; + margin-top: 1em; + font-weight: normal; + font-style: normal; +} + + +#layout p.byline { + font-size: 12px; + margin-top: 18px; + line-height: 12px; + margin-bottom: 0; +} +#layout p { + font-size: 14px; + line-height: 21px; + margin-bottom: .5em; +} + +#layout p.large{ + font-size: 18px; + line-height: 26px; +} + +#layout .sidebar p{ + font-size: 12px; + line-height: 1.4em; +} + +#layout p.caption { + font-size: 10px; + margin-top: -16px; + margin-bottom: 18px; +} + +/* @end */ + +/* @group Glyphs */ + +#glyph_chart div{ + background-color: #d9f3ff; + color: black; + float: left; + font-size: 36px; + height: 1.2em; + line-height: 1.2em; + margin-bottom: 1px; + margin-right: 1px; + text-align: center; + width: 1.2em; + position: relative; + padding: .6em .2em .2em; +} + +#glyph_chart div p { + position: absolute; + left: 0; + top: 0; + display: block; + text-align: center; + font: bold 9px Arial, sans-serif; + background-color: #3a768f; + width: 100%; + color: #fff; + padding: 2px 0; +} + + +#glyphs h1 { + font-family: Arial, sans-serif; +} +/* @end */ + +/* @group Installing */ + +#installing { + font: 13px Arial, sans-serif; +} + +#installing p, +#glyphs p{ + line-height: 1.2em; + margin-bottom: 18px; + font: 13px Arial, sans-serif; +} + + + +#installing h3{ + font-size: 15px; + margin-top: 18px; +} + +/* @end */ + +#rendering h1 { + font-family: Arial, sans-serif; +} +.render_table td { + font: 11px "Courier New", Courier, mono; + vertical-align: middle; +} + + diff --git a/test/samples/aurorae/fonts/spectral/spectral-bold-demo.html b/test/samples/aurorae/fonts/spectral/spectral-bold-demo.html new file mode 100755 index 0000000000000000000000000000000000000000..d89956213755b1f73e47a8a9f5fc1d82f8452db4 --- /dev/null +++ b/test/samples/aurorae/fonts/spectral/spectral-bold-demo.html @@ -0,0 +1,621 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> + +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> +<head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> + <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js" type="text/javascript" charset="utf-8"></script> + <script type="text/javascript"> + (function($){$.fn.easyTabs=function(option){var param=jQuery.extend({fadeSpeed:"fast",defaultContent:1,activeClass:'active'},option);$(this).each(function(){var thisId="#"+this.id;if(param.defaultContent==''){param.defaultContent=1;} + if(typeof param.defaultContent=="number") + {var defaultTab=$(thisId+" .tabs li:eq("+(param.defaultContent-1)+") a").attr('href').substr(1);}else{var defaultTab=param.defaultContent;} + $(thisId+" .tabs li a").each(function(){var tabToHide=$(this).attr('href').substr(1);$("#"+tabToHide).addClass('easytabs-tab-content');});hideAll();changeContent(defaultTab);function hideAll(){$(thisId+" .easytabs-tab-content").hide();} + function changeContent(tabId){hideAll();$(thisId+" .tabs li").removeClass(param.activeClass);$(thisId+" .tabs li a[href=#"+tabId+"]").closest('li').addClass(param.activeClass);if(param.fadeSpeed!="none") + {$(thisId+" #"+tabId).fadeIn(param.fadeSpeed);}else{$(thisId+" #"+tabId).show();}} + $(thisId+" .tabs li").click(function(){var tabId=$(this).find('a').attr('href').substr(1);changeContent(tabId);return false;});});}})(jQuery); + </script> + <link rel="stylesheet" href="specimen_files/specimen_stylesheet.css" type="text/css" charset="utf-8" /> + <link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8" /> + + <style type="text/css"> + body{ + font-family: 'spectralbold'; + } + </style> + + <title>Spectral Bold Specimen</title> + + + <script type="text/javascript" charset="utf-8"> + $(document).ready(function() { + $('#container').easyTabs({defaultContent:1}); + }); + </script> +</head> + +<body> +<div id="container"> + <div id="header"> + Spectral Bold </div> + <ul class="tabs"> + <li><a href="#specimen">Specimen</a></li> + <li><a href="#layout">Sample Layout</a></li> + <li><a href="#glyphs">Glyphs & Languages</a></li> + <li><a href="#installing">Installing Webfonts</a></li> + + </ul> + + <div id="main_content"> + + + <div id="specimen"> + + <div class="section"> + <div class="grid12 firstcol"> + <div class="huge">AaBb</div> + </div> + </div> + + <div class="section"> + <div class="glyph_range">A​B​C​D​E​F​G​H​I​J​K​L​M​N​O​P​Q​R​S​T​U​V​W​X​Y​Z​a​b​c​d​e​f​g​h​i​j​k​l​m​n​o​p​q​r​s​t​u​v​w​x​y​z​1​2​3​4​5​6​7​8​9​0​&​.​,​?​!​@​(​)​#​$​%​*​+​-​=​:​;</div> + </div> + <div class="section"> + <div class="grid12 firstcol"> + <table class="sample_table"> + <tr><td>10</td><td class="size10">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>11</td><td class="size11">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>12</td><td class="size12">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>13</td><td class="size13">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>14</td><td class="size14">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>16</td><td class="size16">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>18</td><td class="size18">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>20</td><td class="size20">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>24</td><td class="size24">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>30</td><td class="size30">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>36</td><td class="size36">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>48</td><td class="size48">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>60</td><td class="size60">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>72</td><td class="size72">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>90</td><td class="size90">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + </table> + + </div> + + </div> + + + + <div class="section" id="bodycomparison"> + + + <div id="xheight"> + <div class="fontbody">◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼body</div><div class="arialbody">body</div><div class="verdanabody">body</div><div class="georgiabody">body</div></div> + <div class="fontbody" style="z-index:1"> + body<span>Spectral Bold</span> + </div> + <div class="arialbody" style="z-index:1"> + body<span>Arial</span> + </div> + <div class="verdanabody" style="z-index:1"> + body<span>Verdana</span> + </div> + <div class="georgiabody" style="z-index:1"> + body<span>Georgia</span> + </div> + + + + </div> + + + <div class="section psample psample_row1" id=""> + + <div class="grid2 firstcol"> + <p class="size10"><span>10.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid3"> + <p class="size11"><span>11.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid3"> + <p class="size12"><span>12.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid4"> + <p class="size13"><span>13.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="white_blend"></div> + + </div> + <div class="section psample psample_row2" id=""> + <div class="grid3 firstcol"> + <p class="size14"><span>14.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid4"> + <p class="size16"><span>16.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid5"> + <p class="size18"><span>18.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + + <div class="white_blend"></div> + + </div> + + <div class="section psample psample_row3" id=""> + <div class="grid5 firstcol"> + <p class="size20"><span>20.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + <div class="grid7"> + <p class="size24"><span>24.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + + <div class="white_blend"></div> + + </div> + + <div class="section psample psample_row4" id=""> + <div class="grid12 firstcol"> + <p class="size30"><span>30.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + <div class="white_blend"></div> + + </div> + + + + <div class="section psample psample_row1 fullreverse"> + <div class="grid2 firstcol"> + <p class="size10"><span>10.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid3"> + <p class="size11"><span>11.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid3"> + <p class="size12"><span>12.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid4"> + <p class="size13"><span>13.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="black_blend"></div> + + </div> + + <div class="section psample psample_row2 fullreverse"> + <div class="grid3 firstcol"> + <p class="size14"><span>14.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid4"> + <p class="size16"><span>16.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid5"> + <p class="size18"><span>18.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="black_blend"></div> + + </div> + + <div class="section psample fullreverse psample_row3" id=""> + <div class="grid5 firstcol"> + <p class="size20"><span>20.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + <div class="grid7"> + <p class="size24"><span>24.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + + <div class="black_blend"></div> + + </div> + + <div class="section psample fullreverse psample_row4" id="" style="border-bottom: 20px #000 solid;"> + <div class="grid12 firstcol"> + <p class="size30"><span>30.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + <div class="black_blend"></div> + + </div> + + + + + </div> + + <div id="layout"> + + <div class="section"> + + <div class="grid12 firstcol"> + <h1>Lorem Ipsum Dolor</h1> + <h2>Etiam porta sem malesuada magna mollis euismod</h2> + + <p class="byline">By <a href="#link">Aenean Lacinia</a></p> + </div> + </div> + <div class="section"> + <div class="grid8 firstcol"> + <p class="large">Donec sed odio dui. Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p> + + + <h3>Pellentesque ornare sem</h3> + + <p>Maecenas sed diam eget risus varius blandit sit amet non magna. Maecenas faucibus mollis interdum. Donec ullamcorper nulla non metus auctor fringilla. Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam id dolor id nibh ultricies vehicula ut id elit. </p> + + <p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. </p> + + <p>Nulla vitae elit libero, a pharetra augue. Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Aenean lacinia bibendum nulla sed consectetur. </p> + + <p>Nullam quis risus eget urna mollis ornare vel eu leo. Nullam quis risus eget urna mollis ornare vel eu leo. Maecenas sed diam eget risus varius blandit sit amet non magna. Donec ullamcorper nulla non metus auctor fringilla. </p> + + <h3>Cras mattis consectetur</h3> + + <p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Aenean lacinia bibendum nulla sed consectetur. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Cras mattis consectetur purus sit amet fermentum. </p> + + <p>Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam quis risus eget urna mollis ornare vel eu leo. Cras mattis consectetur purus sit amet fermentum.</p> + </div> + + <div class="grid4 sidebar"> + + <div class="box reverse"> + <p class="last">Nullam quis risus eget urna mollis ornare vel eu leo. Donec ullamcorper nulla non metus auctor fringilla. Cras mattis consectetur purus sit amet fermentum. Sed posuere consectetur est at lobortis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. </p> + </div> + + <p class="caption">Maecenas sed diam eget risus varius.</p> + + <p>Vestibulum id ligula porta felis euismod semper. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Vestibulum id ligula porta felis euismod semper. Sed posuere consectetur est at lobortis. Maecenas sed diam eget risus varius blandit sit amet non magna. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p> + + + + <p>Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Aenean lacinia bibendum nulla sed consectetur. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Aenean lacinia bibendum nulla sed consectetur. Nullam quis risus eget urna mollis ornare vel eu leo. </p> + + <p>Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Donec ullamcorper nulla non metus auctor fringilla. Maecenas faucibus mollis interdum. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p> + + </div> + </div> + + </div> + + + + + + + <div id="glyphs"> + <div class="section"> + <div class="grid12 firstcol"> + + <h1>Language Support</h1> + <p>The subset of Spectral Bold in this kit supports the following languages:<br /> + + Albanian, Basque, Breton, Chamorro, Danish, Dutch, English, Faroese, Finnish, French, Frisian, Galician, German, Icelandic, Italian, Malagasy, Norwegian, Portuguese, Spanish, Alsatian, Aragonese, Arapaho, Arrernte, Asturian, Aymara, Bislama, Cebuano, Corsican, Fijian, French_creole, Genoese, Gilbertese, Greenlandic, Haitian_creole, Hiligaynon, Hmong, Hopi, Ibanag, Iloko_ilokano, Indonesian, Interglossa_glosa, Interlingua, Irish_gaelic, Jerriais, Lojban, Lombard, Luxembourgeois, Manx, Mohawk, Norfolk_pitcairnese, Occitan, Oromo, Pangasinan, Papiamento, Piedmontese, Potawatomi, Rhaeto-romance, Romansh, Rotokas, Sami_lule, Samoan, Sardinian, Scots_gaelic, Seychelles_creole, Shona, Sicilian, Somali, Southern_ndebele, Swahili, Swati_swazi, Tagalog_filipino_pilipino, Tetum, Tok_pisin, Uyghur_latinized, Volapuk, Walloon, Warlpiri, Xhosa, Yapese, Zulu, Latinbasic, Ubasic, Demo </p> + <h1>Glyph Chart</h1> + <p>The subset of Spectral Bold in this kit includes all the glyphs listed below. Unicode entities are included above each glyph to help you insert individual characters into your layout.</p> + <div id="glyph_chart"> + + <div><p>&#32;</p> </div> + <div><p>&#33;</p>!</div> + <div><p>&#34;</p>"</div> + <div><p>&#35;</p>#</div> + <div><p>&#36;</p>$</div> + <div><p>&#37;</p>%</div> + <div><p>&#38;</p>&</div> + <div><p>&#39;</p>'</div> + <div><p>&#40;</p>(</div> + <div><p>&#41;</p>)</div> + <div><p>&#42;</p>*</div> + <div><p>&#43;</p>+</div> + <div><p>&#44;</p>,</div> + <div><p>&#45;</p>-</div> + <div><p>&#46;</p>.</div> + <div><p>&#47;</p>/</div> + <div><p>&#48;</p>0</div> + <div><p>&#49;</p>1</div> + <div><p>&#50;</p>2</div> + <div><p>&#51;</p>3</div> + <div><p>&#52;</p>4</div> + <div><p>&#53;</p>5</div> + <div><p>&#54;</p>6</div> + <div><p>&#55;</p>7</div> + <div><p>&#56;</p>8</div> + <div><p>&#57;</p>9</div> + <div><p>&#58;</p>:</div> + <div><p>&#59;</p>;</div> + <div><p>&#60;</p><</div> + <div><p>&#61;</p>=</div> + <div><p>&#62;</p>></div> + <div><p>&#63;</p>?</div> + <div><p>&#64;</p>@</div> + <div><p>&#65;</p>A</div> + <div><p>&#66;</p>B</div> + <div><p>&#67;</p>C</div> + <div><p>&#68;</p>D</div> + <div><p>&#69;</p>E</div> + <div><p>&#70;</p>F</div> + <div><p>&#71;</p>G</div> + <div><p>&#72;</p>H</div> + <div><p>&#73;</p>I</div> + <div><p>&#74;</p>J</div> + <div><p>&#75;</p>K</div> + <div><p>&#76;</p>L</div> + <div><p>&#77;</p>M</div> + <div><p>&#78;</p>N</div> + <div><p>&#79;</p>O</div> + <div><p>&#80;</p>P</div> + <div><p>&#81;</p>Q</div> + <div><p>&#82;</p>R</div> + <div><p>&#83;</p>S</div> + <div><p>&#84;</p>T</div> + <div><p>&#85;</p>U</div> + <div><p>&#86;</p>V</div> + <div><p>&#87;</p>W</div> + <div><p>&#88;</p>X</div> + <div><p>&#89;</p>Y</div> + <div><p>&#90;</p>Z</div> + <div><p>&#91;</p>[</div> + <div><p>&#92;</p>\</div> + <div><p>&#93;</p>]</div> + <div><p>&#94;</p>^</div> + <div><p>&#95;</p>_</div> + <div><p>&#96;</p>`</div> + <div><p>&#97;</p>a</div> + <div><p>&#98;</p>b</div> + <div><p>&#99;</p>c</div> + <div><p>&#100;</p>d</div> + <div><p>&#101;</p>e</div> + <div><p>&#102;</p>f</div> + <div><p>&#103;</p>g</div> + <div><p>&#104;</p>h</div> + <div><p>&#105;</p>i</div> + <div><p>&#106;</p>j</div> + <div><p>&#107;</p>k</div> + <div><p>&#108;</p>l</div> + <div><p>&#109;</p>m</div> + <div><p>&#110;</p>n</div> + <div><p>&#111;</p>o</div> + <div><p>&#112;</p>p</div> + <div><p>&#113;</p>q</div> + <div><p>&#114;</p>r</div> + <div><p>&#115;</p>s</div> + <div><p>&#116;</p>t</div> + <div><p>&#117;</p>u</div> + <div><p>&#118;</p>v</div> + <div><p>&#119;</p>w</div> + <div><p>&#120;</p>x</div> + <div><p>&#121;</p>y</div> + <div><p>&#122;</p>z</div> + <div><p>&#123;</p>{</div> + <div><p>&#124;</p>|</div> + <div><p>&#125;</p>}</div> + <div><p>&#126;</p>~</div> + <div><p>&#160;</p> </div> + <div><p>&#161;</p>¡</div> + <div><p>&#162;</p>¢</div> + <div><p>&#163;</p>£</div> + <div><p>&#164;</p>¤</div> + <div><p>&#165;</p>¥</div> + <div><p>&#166;</p>¦</div> + <div><p>&#167;</p>§</div> + <div><p>&#168;</p>¨</div> + <div><p>&#169;</p>©</div> + <div><p>&#170;</p>ª</div> + <div><p>&#171;</p>«</div> + <div><p>&#172;</p>¬</div> + <div><p>&#173;</p>­</div> + <div><p>&#174;</p>®</div> + <div><p>&#175;</p>¯</div> + <div><p>&#176;</p>°</div> + <div><p>&#177;</p>±</div> + <div><p>&#178;</p>²</div> + <div><p>&#179;</p>³</div> + <div><p>&#180;</p>´</div> + <div><p>&#181;</p>µ</div> + <div><p>&#182;</p>¶</div> + <div><p>&#183;</p>·</div> + <div><p>&#184;</p>¸</div> + <div><p>&#185;</p>¹</div> + <div><p>&#186;</p>º</div> + <div><p>&#187;</p>»</div> + <div><p>&#188;</p>¼</div> + <div><p>&#189;</p>½</div> + <div><p>&#190;</p>¾</div> + <div><p>&#191;</p>¿</div> + <div><p>&#192;</p>À</div> + <div><p>&#193;</p>Á</div> + <div><p>&#194;</p>Â</div> + <div><p>&#195;</p>Ã</div> + <div><p>&#196;</p>Ä</div> + <div><p>&#197;</p>Å</div> + <div><p>&#198;</p>Æ</div> + <div><p>&#199;</p>Ç</div> + <div><p>&#200;</p>È</div> + <div><p>&#201;</p>É</div> + <div><p>&#202;</p>Ê</div> + <div><p>&#203;</p>Ë</div> + <div><p>&#204;</p>Ì</div> + <div><p>&#205;</p>Í</div> + <div><p>&#206;</p>Î</div> + <div><p>&#207;</p>Ï</div> + <div><p>&#208;</p>Ð</div> + <div><p>&#209;</p>Ñ</div> + <div><p>&#210;</p>Ò</div> + <div><p>&#211;</p>Ó</div> + <div><p>&#212;</p>Ô</div> + <div><p>&#213;</p>Õ</div> + <div><p>&#214;</p>Ö</div> + <div><p>&#215;</p>×</div> + <div><p>&#216;</p>Ø</div> + <div><p>&#217;</p>Ù</div> + <div><p>&#218;</p>Ú</div> + <div><p>&#219;</p>Û</div> + <div><p>&#220;</p>Ü</div> + <div><p>&#221;</p>Ý</div> + <div><p>&#222;</p>Þ</div> + <div><p>&#223;</p>ß</div> + <div><p>&#224;</p>à</div> + <div><p>&#225;</p>á</div> + <div><p>&#226;</p>â</div> + <div><p>&#227;</p>ã</div> + <div><p>&#228;</p>ä</div> + <div><p>&#229;</p>å</div> + <div><p>&#230;</p>æ</div> + <div><p>&#231;</p>ç</div> + <div><p>&#232;</p>è</div> + <div><p>&#233;</p>é</div> + <div><p>&#234;</p>ê</div> + <div><p>&#235;</p>ë</div> + <div><p>&#236;</p>ì</div> + <div><p>&#237;</p>í</div> + <div><p>&#238;</p>î</div> + <div><p>&#239;</p>ï</div> + <div><p>&#240;</p>ð</div> + <div><p>&#241;</p>ñ</div> + <div><p>&#242;</p>ò</div> + <div><p>&#243;</p>ó</div> + <div><p>&#244;</p>ô</div> + <div><p>&#245;</p>õ</div> + <div><p>&#246;</p>ö</div> + <div><p>&#247;</p>÷</div> + <div><p>&#248;</p>ø</div> + <div><p>&#249;</p>ù</div> + <div><p>&#250;</p>ú</div> + <div><p>&#251;</p>û</div> + <div><p>&#252;</p>ü</div> + <div><p>&#253;</p>ý</div> + <div><p>&#254;</p>þ</div> + <div><p>&#255;</p>ÿ</div> + <div><p>&#338;</p>Œ</div> + <div><p>&#339;</p>œ</div> + <div><p>&#376;</p>Ÿ</div> + <div><p>&#710;</p>ˆ</div> + <div><p>&#732;</p>˜</div> + <div><p>&#8192;</p> </div> + <div><p>&#8193;</p> </div> + <div><p>&#8194;</p> </div> + <div><p>&#8195;</p> </div> + <div><p>&#8196;</p> </div> + <div><p>&#8197;</p> </div> + <div><p>&#8198;</p> </div> + <div><p>&#8199;</p> </div> + <div><p>&#8200;</p> </div> + <div><p>&#8201;</p> </div> + <div><p>&#8202;</p> </div> + <div><p>&#8208;</p>‐</div> + <div><p>&#8209;</p>‑</div> + <div><p>&#8210;</p>‒</div> + <div><p>&#8211;</p>–</div> + <div><p>&#8212;</p>—</div> + <div><p>&#8216;</p>‘</div> + <div><p>&#8217;</p>’</div> + <div><p>&#8218;</p>‚</div> + <div><p>&#8220;</p>“</div> + <div><p>&#8221;</p>”</div> + <div><p>&#8222;</p>„</div> + <div><p>&#8226;</p>•</div> + <div><p>&#8230;</p>…</div> + <div><p>&#8239;</p> </div> + <div><p>&#8249;</p>‹</div> + <div><p>&#8250;</p>›</div> + <div><p>&#8287;</p> </div> + <div><p>&#8364;</p>€</div> + <div><p>&#8482;</p>™</div> + <div><p>&#9724;</p>◼</div> + <div><p>&#64257;</p>fi</div> + <div><p>&#64258;</p>fl</div> + <div><p>&#64259;</p>ffi</div> + <div><p>&#64260;</p>ffl</div> + </div> + </div> + + + </div> + </div> + + + <div id="specs"> + + </div> + + <div id="installing"> + <div class="section"> + <div class="grid7 firstcol"> + <h1>Installing Webfonts</h1> + + <p>Webfonts are supported by all major browser platforms but not all in the same way. There are currently four different font formats that must be included in order to target all browsers. This includes TTF, WOFF, EOT and SVG.</p> + + <h2>1. Upload your webfonts</h2> + <p>You must upload your webfont kit to your website. They should be in or near the same directory as your CSS files.</p> + + <h2>2. Include the webfont stylesheet</h2> + <p>A special CSS @font-face declaration helps the various browsers select the appropriate font it needs without causing you a bunch of headaches. Learn more about this syntax by reading the <a href="https://www.fontspring.com/blog/further-hardening-of-the-bulletproof-syntax">Fontspring blog post</a> about it. The code for it is as follows:</p> + + +<code> +@font-face{ + font-family: 'MyWebFont'; + src: url('WebFont.eot'); + src: url('WebFont.eot?#iefix') format('embedded-opentype'), + url('WebFont.woff') format('woff'), + url('WebFont.ttf') format('truetype'), + url('WebFont.svg#webfont') format('svg'); +} +</code> + + <p>We've already gone ahead and generated the code for you. All you have to do is link to the stylesheet in your HTML, like this:</p> + <code><link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8" /></code> + + <h2>3. Modify your own stylesheet</h2> + <p>To take advantage of your new fonts, you must tell your stylesheet to use them. Look at the original @font-face declaration above and find the property called "font-family." The name linked there will be what you use to reference the font. Prepend that webfont name to the font stack in the "font-family" property, inside the selector you want to change. For example:</p> +<code>p { font-family: 'WebFont', Arial, sans-serif; }</code> + +<h2>4. Test</h2> +<p>Getting webfonts to work cross-browser <em>can</em> be tricky. Use the information in the sidebar to help you if you find that fonts aren't loading in a particular browser.</p> + </div> + + <div class="grid5 sidebar"> + <div class="box"> + <h2>Troubleshooting<br />Font-Face Problems</h2> + <p>Having trouble getting your webfonts to load in your new website? Here are some tips to sort out what might be the problem.</p> + + <h3>Fonts not showing in any browser</h3> + + <p>This sounds like you need to work on the plumbing. You either did not upload the fonts to the correct directory, or you did not link the fonts properly in the CSS. If you've confirmed that all this is correct and you still have a problem, take a look at your .htaccess file and see if requests are getting intercepted.</p> + + <h3>Fonts not loading in iPhone or iPad</h3> + + <p>The most common problem here is that you are serving the fonts from an IIS server. IIS refuses to serve files that have unknown MIME types. If that is the case, you must set the MIME type for SVG to "image/svg+xml" in the server settings. Follow these instructions from Microsoft if you need help.</p> + + <h3>Fonts not loading in Firefox</h3> + + <p>The primary reason for this failure? You are still using a version Firefox older than 3.5. So upgrade already! If that isn't it, then you are very likely serving fonts from a different domain. Firefox requires that all font assets be served from the same domain. Lastly it is possible that you need to add WOFF to your list of MIME types (if you are serving via IIS.)</p> + + <h3>Fonts not loading in IE</h3> + + <p>Are you looking at Internet Explorer on an actual Windows machine or are you cheating by using a service like Adobe BrowserLab? Many of these screenshot services do not render @font-face for IE. Best to test it on a real machine.</p> + + <h3>Fonts not loading in IE9</h3> + + <p>IE9, like Firefox, requires that fonts be served from the same domain as the website. Make sure that is the case.</p> + </div> + </div> + </div> + + </div> + + </div> + <div id="footer"> + <p>©2010-2017 Font Squirrel. All rights reserved.</p> + </div> +</div> +</body> +</html> diff --git a/test/samples/aurorae/fonts/spectral/spectral-bold-webfont.ttf b/test/samples/aurorae/fonts/spectral/spectral-bold-webfont.ttf new file mode 100755 index 0000000000000000000000000000000000000000..199751704026b63a33a582a65cc84084585ff4c0 Binary files /dev/null and b/test/samples/aurorae/fonts/spectral/spectral-bold-webfont.ttf differ diff --git a/test/samples/aurorae/fonts/spectral/spectral-bold-webfont.woff b/test/samples/aurorae/fonts/spectral/spectral-bold-webfont.woff new file mode 100755 index 0000000000000000000000000000000000000000..ea5bc796ea6c508ff0780cc0fc2a736fd1f7506e Binary files /dev/null and b/test/samples/aurorae/fonts/spectral/spectral-bold-webfont.woff differ diff --git a/test/samples/aurorae/fonts/spectral/spectral-bold-webfont.woff2 b/test/samples/aurorae/fonts/spectral/spectral-bold-webfont.woff2 new file mode 100755 index 0000000000000000000000000000000000000000..14bda207e8e0356fa8c3600a0dd3088c722bcb5b Binary files /dev/null and b/test/samples/aurorae/fonts/spectral/spectral-bold-webfont.woff2 differ diff --git a/test/samples/aurorae/fonts/spectral/spectral-bolditalic-demo.html b/test/samples/aurorae/fonts/spectral/spectral-bolditalic-demo.html new file mode 100755 index 0000000000000000000000000000000000000000..fb239ab7bdafe4b30da3d2b0bb277c64faa7f353 --- /dev/null +++ b/test/samples/aurorae/fonts/spectral/spectral-bolditalic-demo.html @@ -0,0 +1,621 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> + +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> +<head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> + <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js" type="text/javascript" charset="utf-8"></script> + <script type="text/javascript"> + (function($){$.fn.easyTabs=function(option){var param=jQuery.extend({fadeSpeed:"fast",defaultContent:1,activeClass:'active'},option);$(this).each(function(){var thisId="#"+this.id;if(param.defaultContent==''){param.defaultContent=1;} + if(typeof param.defaultContent=="number") + {var defaultTab=$(thisId+" .tabs li:eq("+(param.defaultContent-1)+") a").attr('href').substr(1);}else{var defaultTab=param.defaultContent;} + $(thisId+" .tabs li a").each(function(){var tabToHide=$(this).attr('href').substr(1);$("#"+tabToHide).addClass('easytabs-tab-content');});hideAll();changeContent(defaultTab);function hideAll(){$(thisId+" .easytabs-tab-content").hide();} + function changeContent(tabId){hideAll();$(thisId+" .tabs li").removeClass(param.activeClass);$(thisId+" .tabs li a[href=#"+tabId+"]").closest('li').addClass(param.activeClass);if(param.fadeSpeed!="none") + {$(thisId+" #"+tabId).fadeIn(param.fadeSpeed);}else{$(thisId+" #"+tabId).show();}} + $(thisId+" .tabs li").click(function(){var tabId=$(this).find('a').attr('href').substr(1);changeContent(tabId);return false;});});}})(jQuery); + </script> + <link rel="stylesheet" href="specimen_files/specimen_stylesheet.css" type="text/css" charset="utf-8" /> + <link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8" /> + + <style type="text/css"> + body{ + font-family: 'spectralbold_italic'; + } + </style> + + <title>Spectral Bold Italic Specimen</title> + + + <script type="text/javascript" charset="utf-8"> + $(document).ready(function() { + $('#container').easyTabs({defaultContent:1}); + }); + </script> +</head> + +<body> +<div id="container"> + <div id="header"> + Spectral Bold Italic </div> + <ul class="tabs"> + <li><a href="#specimen">Specimen</a></li> + <li><a href="#layout">Sample Layout</a></li> + <li><a href="#glyphs">Glyphs & Languages</a></li> + <li><a href="#installing">Installing Webfonts</a></li> + + </ul> + + <div id="main_content"> + + + <div id="specimen"> + + <div class="section"> + <div class="grid12 firstcol"> + <div class="huge">AaBb</div> + </div> + </div> + + <div class="section"> + <div class="glyph_range">A​B​C​D​E​F​G​H​I​J​K​L​M​N​O​P​Q​R​S​T​U​V​W​X​Y​Z​a​b​c​d​e​f​g​h​i​j​k​l​m​n​o​p​q​r​s​t​u​v​w​x​y​z​1​2​3​4​5​6​7​8​9​0​&​.​,​?​!​@​(​)​#​$​%​*​+​-​=​:​;</div> + </div> + <div class="section"> + <div class="grid12 firstcol"> + <table class="sample_table"> + <tr><td>10</td><td class="size10">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>11</td><td class="size11">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>12</td><td class="size12">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>13</td><td class="size13">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>14</td><td class="size14">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>16</td><td class="size16">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>18</td><td class="size18">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>20</td><td class="size20">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>24</td><td class="size24">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>30</td><td class="size30">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>36</td><td class="size36">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>48</td><td class="size48">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>60</td><td class="size60">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>72</td><td class="size72">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>90</td><td class="size90">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + </table> + + </div> + + </div> + + + + <div class="section" id="bodycomparison"> + + + <div id="xheight"> + <div class="fontbody">◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼body</div><div class="arialbody">body</div><div class="verdanabody">body</div><div class="georgiabody">body</div></div> + <div class="fontbody" style="z-index:1"> + body<span>Spectral Bold Italic</span> + </div> + <div class="arialbody" style="z-index:1"> + body<span>Arial</span> + </div> + <div class="verdanabody" style="z-index:1"> + body<span>Verdana</span> + </div> + <div class="georgiabody" style="z-index:1"> + body<span>Georgia</span> + </div> + + + + </div> + + + <div class="section psample psample_row1" id=""> + + <div class="grid2 firstcol"> + <p class="size10"><span>10.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid3"> + <p class="size11"><span>11.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid3"> + <p class="size12"><span>12.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid4"> + <p class="size13"><span>13.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="white_blend"></div> + + </div> + <div class="section psample psample_row2" id=""> + <div class="grid3 firstcol"> + <p class="size14"><span>14.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid4"> + <p class="size16"><span>16.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid5"> + <p class="size18"><span>18.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + + <div class="white_blend"></div> + + </div> + + <div class="section psample psample_row3" id=""> + <div class="grid5 firstcol"> + <p class="size20"><span>20.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + <div class="grid7"> + <p class="size24"><span>24.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + + <div class="white_blend"></div> + + </div> + + <div class="section psample psample_row4" id=""> + <div class="grid12 firstcol"> + <p class="size30"><span>30.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + <div class="white_blend"></div> + + </div> + + + + <div class="section psample psample_row1 fullreverse"> + <div class="grid2 firstcol"> + <p class="size10"><span>10.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid3"> + <p class="size11"><span>11.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid3"> + <p class="size12"><span>12.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid4"> + <p class="size13"><span>13.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="black_blend"></div> + + </div> + + <div class="section psample psample_row2 fullreverse"> + <div class="grid3 firstcol"> + <p class="size14"><span>14.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid4"> + <p class="size16"><span>16.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid5"> + <p class="size18"><span>18.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="black_blend"></div> + + </div> + + <div class="section psample fullreverse psample_row3" id=""> + <div class="grid5 firstcol"> + <p class="size20"><span>20.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + <div class="grid7"> + <p class="size24"><span>24.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + + <div class="black_blend"></div> + + </div> + + <div class="section psample fullreverse psample_row4" id="" style="border-bottom: 20px #000 solid;"> + <div class="grid12 firstcol"> + <p class="size30"><span>30.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + <div class="black_blend"></div> + + </div> + + + + + </div> + + <div id="layout"> + + <div class="section"> + + <div class="grid12 firstcol"> + <h1>Lorem Ipsum Dolor</h1> + <h2>Etiam porta sem malesuada magna mollis euismod</h2> + + <p class="byline">By <a href="#link">Aenean Lacinia</a></p> + </div> + </div> + <div class="section"> + <div class="grid8 firstcol"> + <p class="large">Donec sed odio dui. Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p> + + + <h3>Pellentesque ornare sem</h3> + + <p>Maecenas sed diam eget risus varius blandit sit amet non magna. Maecenas faucibus mollis interdum. Donec ullamcorper nulla non metus auctor fringilla. Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam id dolor id nibh ultricies vehicula ut id elit. </p> + + <p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. </p> + + <p>Nulla vitae elit libero, a pharetra augue. Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Aenean lacinia bibendum nulla sed consectetur. </p> + + <p>Nullam quis risus eget urna mollis ornare vel eu leo. Nullam quis risus eget urna mollis ornare vel eu leo. Maecenas sed diam eget risus varius blandit sit amet non magna. Donec ullamcorper nulla non metus auctor fringilla. </p> + + <h3>Cras mattis consectetur</h3> + + <p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Aenean lacinia bibendum nulla sed consectetur. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Cras mattis consectetur purus sit amet fermentum. </p> + + <p>Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam quis risus eget urna mollis ornare vel eu leo. Cras mattis consectetur purus sit amet fermentum.</p> + </div> + + <div class="grid4 sidebar"> + + <div class="box reverse"> + <p class="last">Nullam quis risus eget urna mollis ornare vel eu leo. Donec ullamcorper nulla non metus auctor fringilla. Cras mattis consectetur purus sit amet fermentum. Sed posuere consectetur est at lobortis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. </p> + </div> + + <p class="caption">Maecenas sed diam eget risus varius.</p> + + <p>Vestibulum id ligula porta felis euismod semper. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Vestibulum id ligula porta felis euismod semper. Sed posuere consectetur est at lobortis. Maecenas sed diam eget risus varius blandit sit amet non magna. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p> + + + + <p>Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Aenean lacinia bibendum nulla sed consectetur. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Aenean lacinia bibendum nulla sed consectetur. Nullam quis risus eget urna mollis ornare vel eu leo. </p> + + <p>Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Donec ullamcorper nulla non metus auctor fringilla. Maecenas faucibus mollis interdum. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p> + + </div> + </div> + + </div> + + + + + + + <div id="glyphs"> + <div class="section"> + <div class="grid12 firstcol"> + + <h1>Language Support</h1> + <p>The subset of Spectral Bold Italic in this kit supports the following languages:<br /> + + Albanian, Basque, Breton, Chamorro, Danish, Dutch, English, Faroese, Finnish, French, Frisian, Galician, German, Icelandic, Italian, Malagasy, Norwegian, Portuguese, Spanish, Alsatian, Aragonese, Arapaho, Arrernte, Asturian, Aymara, Bislama, Cebuano, Corsican, Fijian, French_creole, Genoese, Gilbertese, Greenlandic, Haitian_creole, Hiligaynon, Hmong, Hopi, Ibanag, Iloko_ilokano, Indonesian, Interglossa_glosa, Interlingua, Irish_gaelic, Jerriais, Lojban, Lombard, Luxembourgeois, Manx, Mohawk, Norfolk_pitcairnese, Occitan, Oromo, Pangasinan, Papiamento, Piedmontese, Potawatomi, Rhaeto-romance, Romansh, Rotokas, Sami_lule, Samoan, Sardinian, Scots_gaelic, Seychelles_creole, Shona, Sicilian, Somali, Southern_ndebele, Swahili, Swati_swazi, Tagalog_filipino_pilipino, Tetum, Tok_pisin, Uyghur_latinized, Volapuk, Walloon, Warlpiri, Xhosa, Yapese, Zulu, Latinbasic, Ubasic, Demo </p> + <h1>Glyph Chart</h1> + <p>The subset of Spectral Bold Italic in this kit includes all the glyphs listed below. Unicode entities are included above each glyph to help you insert individual characters into your layout.</p> + <div id="glyph_chart"> + + <div><p>&#32;</p> </div> + <div><p>&#33;</p>!</div> + <div><p>&#34;</p>"</div> + <div><p>&#35;</p>#</div> + <div><p>&#36;</p>$</div> + <div><p>&#37;</p>%</div> + <div><p>&#38;</p>&</div> + <div><p>&#39;</p>'</div> + <div><p>&#40;</p>(</div> + <div><p>&#41;</p>)</div> + <div><p>&#42;</p>*</div> + <div><p>&#43;</p>+</div> + <div><p>&#44;</p>,</div> + <div><p>&#45;</p>-</div> + <div><p>&#46;</p>.</div> + <div><p>&#47;</p>/</div> + <div><p>&#48;</p>0</div> + <div><p>&#49;</p>1</div> + <div><p>&#50;</p>2</div> + <div><p>&#51;</p>3</div> + <div><p>&#52;</p>4</div> + <div><p>&#53;</p>5</div> + <div><p>&#54;</p>6</div> + <div><p>&#55;</p>7</div> + <div><p>&#56;</p>8</div> + <div><p>&#57;</p>9</div> + <div><p>&#58;</p>:</div> + <div><p>&#59;</p>;</div> + <div><p>&#60;</p><</div> + <div><p>&#61;</p>=</div> + <div><p>&#62;</p>></div> + <div><p>&#63;</p>?</div> + <div><p>&#64;</p>@</div> + <div><p>&#65;</p>A</div> + <div><p>&#66;</p>B</div> + <div><p>&#67;</p>C</div> + <div><p>&#68;</p>D</div> + <div><p>&#69;</p>E</div> + <div><p>&#70;</p>F</div> + <div><p>&#71;</p>G</div> + <div><p>&#72;</p>H</div> + <div><p>&#73;</p>I</div> + <div><p>&#74;</p>J</div> + <div><p>&#75;</p>K</div> + <div><p>&#76;</p>L</div> + <div><p>&#77;</p>M</div> + <div><p>&#78;</p>N</div> + <div><p>&#79;</p>O</div> + <div><p>&#80;</p>P</div> + <div><p>&#81;</p>Q</div> + <div><p>&#82;</p>R</div> + <div><p>&#83;</p>S</div> + <div><p>&#84;</p>T</div> + <div><p>&#85;</p>U</div> + <div><p>&#86;</p>V</div> + <div><p>&#87;</p>W</div> + <div><p>&#88;</p>X</div> + <div><p>&#89;</p>Y</div> + <div><p>&#90;</p>Z</div> + <div><p>&#91;</p>[</div> + <div><p>&#92;</p>\</div> + <div><p>&#93;</p>]</div> + <div><p>&#94;</p>^</div> + <div><p>&#95;</p>_</div> + <div><p>&#96;</p>`</div> + <div><p>&#97;</p>a</div> + <div><p>&#98;</p>b</div> + <div><p>&#99;</p>c</div> + <div><p>&#100;</p>d</div> + <div><p>&#101;</p>e</div> + <div><p>&#102;</p>f</div> + <div><p>&#103;</p>g</div> + <div><p>&#104;</p>h</div> + <div><p>&#105;</p>i</div> + <div><p>&#106;</p>j</div> + <div><p>&#107;</p>k</div> + <div><p>&#108;</p>l</div> + <div><p>&#109;</p>m</div> + <div><p>&#110;</p>n</div> + <div><p>&#111;</p>o</div> + <div><p>&#112;</p>p</div> + <div><p>&#113;</p>q</div> + <div><p>&#114;</p>r</div> + <div><p>&#115;</p>s</div> + <div><p>&#116;</p>t</div> + <div><p>&#117;</p>u</div> + <div><p>&#118;</p>v</div> + <div><p>&#119;</p>w</div> + <div><p>&#120;</p>x</div> + <div><p>&#121;</p>y</div> + <div><p>&#122;</p>z</div> + <div><p>&#123;</p>{</div> + <div><p>&#124;</p>|</div> + <div><p>&#125;</p>}</div> + <div><p>&#126;</p>~</div> + <div><p>&#160;</p> </div> + <div><p>&#161;</p>¡</div> + <div><p>&#162;</p>¢</div> + <div><p>&#163;</p>£</div> + <div><p>&#164;</p>¤</div> + <div><p>&#165;</p>¥</div> + <div><p>&#166;</p>¦</div> + <div><p>&#167;</p>§</div> + <div><p>&#168;</p>¨</div> + <div><p>&#169;</p>©</div> + <div><p>&#170;</p>ª</div> + <div><p>&#171;</p>«</div> + <div><p>&#172;</p>¬</div> + <div><p>&#173;</p>­</div> + <div><p>&#174;</p>®</div> + <div><p>&#175;</p>¯</div> + <div><p>&#176;</p>°</div> + <div><p>&#177;</p>±</div> + <div><p>&#178;</p>²</div> + <div><p>&#179;</p>³</div> + <div><p>&#180;</p>´</div> + <div><p>&#181;</p>µ</div> + <div><p>&#182;</p>¶</div> + <div><p>&#183;</p>·</div> + <div><p>&#184;</p>¸</div> + <div><p>&#185;</p>¹</div> + <div><p>&#186;</p>º</div> + <div><p>&#187;</p>»</div> + <div><p>&#188;</p>¼</div> + <div><p>&#189;</p>½</div> + <div><p>&#190;</p>¾</div> + <div><p>&#191;</p>¿</div> + <div><p>&#192;</p>À</div> + <div><p>&#193;</p>Á</div> + <div><p>&#194;</p>Â</div> + <div><p>&#195;</p>Ã</div> + <div><p>&#196;</p>Ä</div> + <div><p>&#197;</p>Å</div> + <div><p>&#198;</p>Æ</div> + <div><p>&#199;</p>Ç</div> + <div><p>&#200;</p>È</div> + <div><p>&#201;</p>É</div> + <div><p>&#202;</p>Ê</div> + <div><p>&#203;</p>Ë</div> + <div><p>&#204;</p>Ì</div> + <div><p>&#205;</p>Í</div> + <div><p>&#206;</p>Î</div> + <div><p>&#207;</p>Ï</div> + <div><p>&#208;</p>Ð</div> + <div><p>&#209;</p>Ñ</div> + <div><p>&#210;</p>Ò</div> + <div><p>&#211;</p>Ó</div> + <div><p>&#212;</p>Ô</div> + <div><p>&#213;</p>Õ</div> + <div><p>&#214;</p>Ö</div> + <div><p>&#215;</p>×</div> + <div><p>&#216;</p>Ø</div> + <div><p>&#217;</p>Ù</div> + <div><p>&#218;</p>Ú</div> + <div><p>&#219;</p>Û</div> + <div><p>&#220;</p>Ü</div> + <div><p>&#221;</p>Ý</div> + <div><p>&#222;</p>Þ</div> + <div><p>&#223;</p>ß</div> + <div><p>&#224;</p>à</div> + <div><p>&#225;</p>á</div> + <div><p>&#226;</p>â</div> + <div><p>&#227;</p>ã</div> + <div><p>&#228;</p>ä</div> + <div><p>&#229;</p>å</div> + <div><p>&#230;</p>æ</div> + <div><p>&#231;</p>ç</div> + <div><p>&#232;</p>è</div> + <div><p>&#233;</p>é</div> + <div><p>&#234;</p>ê</div> + <div><p>&#235;</p>ë</div> + <div><p>&#236;</p>ì</div> + <div><p>&#237;</p>í</div> + <div><p>&#238;</p>î</div> + <div><p>&#239;</p>ï</div> + <div><p>&#240;</p>ð</div> + <div><p>&#241;</p>ñ</div> + <div><p>&#242;</p>ò</div> + <div><p>&#243;</p>ó</div> + <div><p>&#244;</p>ô</div> + <div><p>&#245;</p>õ</div> + <div><p>&#246;</p>ö</div> + <div><p>&#247;</p>÷</div> + <div><p>&#248;</p>ø</div> + <div><p>&#249;</p>ù</div> + <div><p>&#250;</p>ú</div> + <div><p>&#251;</p>û</div> + <div><p>&#252;</p>ü</div> + <div><p>&#253;</p>ý</div> + <div><p>&#254;</p>þ</div> + <div><p>&#255;</p>ÿ</div> + <div><p>&#338;</p>Œ</div> + <div><p>&#339;</p>œ</div> + <div><p>&#376;</p>Ÿ</div> + <div><p>&#710;</p>ˆ</div> + <div><p>&#732;</p>˜</div> + <div><p>&#8192;</p> </div> + <div><p>&#8193;</p> </div> + <div><p>&#8194;</p> </div> + <div><p>&#8195;</p> </div> + <div><p>&#8196;</p> </div> + <div><p>&#8197;</p> </div> + <div><p>&#8198;</p> </div> + <div><p>&#8199;</p> </div> + <div><p>&#8200;</p> </div> + <div><p>&#8201;</p> </div> + <div><p>&#8202;</p> </div> + <div><p>&#8208;</p>‐</div> + <div><p>&#8209;</p>‑</div> + <div><p>&#8210;</p>‒</div> + <div><p>&#8211;</p>–</div> + <div><p>&#8212;</p>—</div> + <div><p>&#8216;</p>‘</div> + <div><p>&#8217;</p>’</div> + <div><p>&#8218;</p>‚</div> + <div><p>&#8220;</p>“</div> + <div><p>&#8221;</p>”</div> + <div><p>&#8222;</p>„</div> + <div><p>&#8226;</p>•</div> + <div><p>&#8230;</p>…</div> + <div><p>&#8239;</p> </div> + <div><p>&#8249;</p>‹</div> + <div><p>&#8250;</p>›</div> + <div><p>&#8287;</p> </div> + <div><p>&#8364;</p>€</div> + <div><p>&#8482;</p>™</div> + <div><p>&#9724;</p>◼</div> + <div><p>&#64257;</p>fi</div> + <div><p>&#64258;</p>fl</div> + <div><p>&#64259;</p>ffi</div> + <div><p>&#64260;</p>ffl</div> + </div> + </div> + + + </div> + </div> + + + <div id="specs"> + + </div> + + <div id="installing"> + <div class="section"> + <div class="grid7 firstcol"> + <h1>Installing Webfonts</h1> + + <p>Webfonts are supported by all major browser platforms but not all in the same way. There are currently four different font formats that must be included in order to target all browsers. This includes TTF, WOFF, EOT and SVG.</p> + + <h2>1. Upload your webfonts</h2> + <p>You must upload your webfont kit to your website. They should be in or near the same directory as your CSS files.</p> + + <h2>2. Include the webfont stylesheet</h2> + <p>A special CSS @font-face declaration helps the various browsers select the appropriate font it needs without causing you a bunch of headaches. Learn more about this syntax by reading the <a href="https://www.fontspring.com/blog/further-hardening-of-the-bulletproof-syntax">Fontspring blog post</a> about it. The code for it is as follows:</p> + + +<code> +@font-face{ + font-family: 'MyWebFont'; + src: url('WebFont.eot'); + src: url('WebFont.eot?#iefix') format('embedded-opentype'), + url('WebFont.woff') format('woff'), + url('WebFont.ttf') format('truetype'), + url('WebFont.svg#webfont') format('svg'); +} +</code> + + <p>We've already gone ahead and generated the code for you. All you have to do is link to the stylesheet in your HTML, like this:</p> + <code><link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8" /></code> + + <h2>3. Modify your own stylesheet</h2> + <p>To take advantage of your new fonts, you must tell your stylesheet to use them. Look at the original @font-face declaration above and find the property called "font-family." The name linked there will be what you use to reference the font. Prepend that webfont name to the font stack in the "font-family" property, inside the selector you want to change. For example:</p> +<code>p { font-family: 'WebFont', Arial, sans-serif; }</code> + +<h2>4. Test</h2> +<p>Getting webfonts to work cross-browser <em>can</em> be tricky. Use the information in the sidebar to help you if you find that fonts aren't loading in a particular browser.</p> + </div> + + <div class="grid5 sidebar"> + <div class="box"> + <h2>Troubleshooting<br />Font-Face Problems</h2> + <p>Having trouble getting your webfonts to load in your new website? Here are some tips to sort out what might be the problem.</p> + + <h3>Fonts not showing in any browser</h3> + + <p>This sounds like you need to work on the plumbing. You either did not upload the fonts to the correct directory, or you did not link the fonts properly in the CSS. If you've confirmed that all this is correct and you still have a problem, take a look at your .htaccess file and see if requests are getting intercepted.</p> + + <h3>Fonts not loading in iPhone or iPad</h3> + + <p>The most common problem here is that you are serving the fonts from an IIS server. IIS refuses to serve files that have unknown MIME types. If that is the case, you must set the MIME type for SVG to "image/svg+xml" in the server settings. Follow these instructions from Microsoft if you need help.</p> + + <h3>Fonts not loading in Firefox</h3> + + <p>The primary reason for this failure? You are still using a version Firefox older than 3.5. So upgrade already! If that isn't it, then you are very likely serving fonts from a different domain. Firefox requires that all font assets be served from the same domain. Lastly it is possible that you need to add WOFF to your list of MIME types (if you are serving via IIS.)</p> + + <h3>Fonts not loading in IE</h3> + + <p>Are you looking at Internet Explorer on an actual Windows machine or are you cheating by using a service like Adobe BrowserLab? Many of these screenshot services do not render @font-face for IE. Best to test it on a real machine.</p> + + <h3>Fonts not loading in IE9</h3> + + <p>IE9, like Firefox, requires that fonts be served from the same domain as the website. Make sure that is the case.</p> + </div> + </div> + </div> + + </div> + + </div> + <div id="footer"> + <p>©2010-2017 Font Squirrel. All rights reserved.</p> + </div> +</div> +</body> +</html> diff --git a/test/samples/aurorae/fonts/spectral/spectral-bolditalic-webfont.woff b/test/samples/aurorae/fonts/spectral/spectral-bolditalic-webfont.woff new file mode 100755 index 0000000000000000000000000000000000000000..1e6dd3d37c9469a81a71760d9d88556eaa8b8387 Binary files /dev/null and b/test/samples/aurorae/fonts/spectral/spectral-bolditalic-webfont.woff differ diff --git a/test/samples/aurorae/fonts/spectral/spectral-bolditalic-webfont.woff2 b/test/samples/aurorae/fonts/spectral/spectral-bolditalic-webfont.woff2 new file mode 100755 index 0000000000000000000000000000000000000000..f314197383dd58453c8bfc641b3e2d23c584991b Binary files /dev/null and b/test/samples/aurorae/fonts/spectral/spectral-bolditalic-webfont.woff2 differ diff --git a/test/samples/aurorae/fonts/spectral/spectral-extrabold-demo.html b/test/samples/aurorae/fonts/spectral/spectral-extrabold-demo.html new file mode 100755 index 0000000000000000000000000000000000000000..70cd66ae88076a270584df542c96221d97af3645 --- /dev/null +++ b/test/samples/aurorae/fonts/spectral/spectral-extrabold-demo.html @@ -0,0 +1,621 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> + +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> +<head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> + <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js" type="text/javascript" charset="utf-8"></script> + <script type="text/javascript"> + (function($){$.fn.easyTabs=function(option){var param=jQuery.extend({fadeSpeed:"fast",defaultContent:1,activeClass:'active'},option);$(this).each(function(){var thisId="#"+this.id;if(param.defaultContent==''){param.defaultContent=1;} + if(typeof param.defaultContent=="number") + {var defaultTab=$(thisId+" .tabs li:eq("+(param.defaultContent-1)+") a").attr('href').substr(1);}else{var defaultTab=param.defaultContent;} + $(thisId+" .tabs li a").each(function(){var tabToHide=$(this).attr('href').substr(1);$("#"+tabToHide).addClass('easytabs-tab-content');});hideAll();changeContent(defaultTab);function hideAll(){$(thisId+" .easytabs-tab-content").hide();} + function changeContent(tabId){hideAll();$(thisId+" .tabs li").removeClass(param.activeClass);$(thisId+" .tabs li a[href=#"+tabId+"]").closest('li').addClass(param.activeClass);if(param.fadeSpeed!="none") + {$(thisId+" #"+tabId).fadeIn(param.fadeSpeed);}else{$(thisId+" #"+tabId).show();}} + $(thisId+" .tabs li").click(function(){var tabId=$(this).find('a').attr('href').substr(1);changeContent(tabId);return false;});});}})(jQuery); + </script> + <link rel="stylesheet" href="specimen_files/specimen_stylesheet.css" type="text/css" charset="utf-8" /> + <link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8" /> + + <style type="text/css"> + body{ + font-family: 'spectralextrabold'; + } + </style> + + <title>Spectral ExtraBold Specimen</title> + + + <script type="text/javascript" charset="utf-8"> + $(document).ready(function() { + $('#container').easyTabs({defaultContent:1}); + }); + </script> +</head> + +<body> +<div id="container"> + <div id="header"> + Spectral ExtraBold </div> + <ul class="tabs"> + <li><a href="#specimen">Specimen</a></li> + <li><a href="#layout">Sample Layout</a></li> + <li><a href="#glyphs">Glyphs & Languages</a></li> + <li><a href="#installing">Installing Webfonts</a></li> + + </ul> + + <div id="main_content"> + + + <div id="specimen"> + + <div class="section"> + <div class="grid12 firstcol"> + <div class="huge">AaBb</div> + </div> + </div> + + <div class="section"> + <div class="glyph_range">A​B​C​D​E​F​G​H​I​J​K​L​M​N​O​P​Q​R​S​T​U​V​W​X​Y​Z​a​b​c​d​e​f​g​h​i​j​k​l​m​n​o​p​q​r​s​t​u​v​w​x​y​z​1​2​3​4​5​6​7​8​9​0​&​.​,​?​!​@​(​)​#​$​%​*​+​-​=​:​;</div> + </div> + <div class="section"> + <div class="grid12 firstcol"> + <table class="sample_table"> + <tr><td>10</td><td class="size10">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>11</td><td class="size11">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>12</td><td class="size12">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>13</td><td class="size13">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>14</td><td class="size14">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>16</td><td class="size16">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>18</td><td class="size18">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>20</td><td class="size20">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>24</td><td class="size24">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>30</td><td class="size30">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>36</td><td class="size36">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>48</td><td class="size48">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>60</td><td class="size60">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>72</td><td class="size72">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>90</td><td class="size90">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + </table> + + </div> + + </div> + + + + <div class="section" id="bodycomparison"> + + + <div id="xheight"> + <div class="fontbody">◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼body</div><div class="arialbody">body</div><div class="verdanabody">body</div><div class="georgiabody">body</div></div> + <div class="fontbody" style="z-index:1"> + body<span>Spectral ExtraBold</span> + </div> + <div class="arialbody" style="z-index:1"> + body<span>Arial</span> + </div> + <div class="verdanabody" style="z-index:1"> + body<span>Verdana</span> + </div> + <div class="georgiabody" style="z-index:1"> + body<span>Georgia</span> + </div> + + + + </div> + + + <div class="section psample psample_row1" id=""> + + <div class="grid2 firstcol"> + <p class="size10"><span>10.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid3"> + <p class="size11"><span>11.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid3"> + <p class="size12"><span>12.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid4"> + <p class="size13"><span>13.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="white_blend"></div> + + </div> + <div class="section psample psample_row2" id=""> + <div class="grid3 firstcol"> + <p class="size14"><span>14.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid4"> + <p class="size16"><span>16.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid5"> + <p class="size18"><span>18.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + + <div class="white_blend"></div> + + </div> + + <div class="section psample psample_row3" id=""> + <div class="grid5 firstcol"> + <p class="size20"><span>20.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + <div class="grid7"> + <p class="size24"><span>24.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + + <div class="white_blend"></div> + + </div> + + <div class="section psample psample_row4" id=""> + <div class="grid12 firstcol"> + <p class="size30"><span>30.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + <div class="white_blend"></div> + + </div> + + + + <div class="section psample psample_row1 fullreverse"> + <div class="grid2 firstcol"> + <p class="size10"><span>10.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid3"> + <p class="size11"><span>11.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid3"> + <p class="size12"><span>12.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid4"> + <p class="size13"><span>13.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="black_blend"></div> + + </div> + + <div class="section psample psample_row2 fullreverse"> + <div class="grid3 firstcol"> + <p class="size14"><span>14.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid4"> + <p class="size16"><span>16.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid5"> + <p class="size18"><span>18.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="black_blend"></div> + + </div> + + <div class="section psample fullreverse psample_row3" id=""> + <div class="grid5 firstcol"> + <p class="size20"><span>20.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + <div class="grid7"> + <p class="size24"><span>24.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + + <div class="black_blend"></div> + + </div> + + <div class="section psample fullreverse psample_row4" id="" style="border-bottom: 20px #000 solid;"> + <div class="grid12 firstcol"> + <p class="size30"><span>30.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + <div class="black_blend"></div> + + </div> + + + + + </div> + + <div id="layout"> + + <div class="section"> + + <div class="grid12 firstcol"> + <h1>Lorem Ipsum Dolor</h1> + <h2>Etiam porta sem malesuada magna mollis euismod</h2> + + <p class="byline">By <a href="#link">Aenean Lacinia</a></p> + </div> + </div> + <div class="section"> + <div class="grid8 firstcol"> + <p class="large">Donec sed odio dui. Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p> + + + <h3>Pellentesque ornare sem</h3> + + <p>Maecenas sed diam eget risus varius blandit sit amet non magna. Maecenas faucibus mollis interdum. Donec ullamcorper nulla non metus auctor fringilla. Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam id dolor id nibh ultricies vehicula ut id elit. </p> + + <p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. </p> + + <p>Nulla vitae elit libero, a pharetra augue. Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Aenean lacinia bibendum nulla sed consectetur. </p> + + <p>Nullam quis risus eget urna mollis ornare vel eu leo. Nullam quis risus eget urna mollis ornare vel eu leo. Maecenas sed diam eget risus varius blandit sit amet non magna. Donec ullamcorper nulla non metus auctor fringilla. </p> + + <h3>Cras mattis consectetur</h3> + + <p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Aenean lacinia bibendum nulla sed consectetur. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Cras mattis consectetur purus sit amet fermentum. </p> + + <p>Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam quis risus eget urna mollis ornare vel eu leo. Cras mattis consectetur purus sit amet fermentum.</p> + </div> + + <div class="grid4 sidebar"> + + <div class="box reverse"> + <p class="last">Nullam quis risus eget urna mollis ornare vel eu leo. Donec ullamcorper nulla non metus auctor fringilla. Cras mattis consectetur purus sit amet fermentum. Sed posuere consectetur est at lobortis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. </p> + </div> + + <p class="caption">Maecenas sed diam eget risus varius.</p> + + <p>Vestibulum id ligula porta felis euismod semper. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Vestibulum id ligula porta felis euismod semper. Sed posuere consectetur est at lobortis. Maecenas sed diam eget risus varius blandit sit amet non magna. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p> + + + + <p>Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Aenean lacinia bibendum nulla sed consectetur. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Aenean lacinia bibendum nulla sed consectetur. Nullam quis risus eget urna mollis ornare vel eu leo. </p> + + <p>Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Donec ullamcorper nulla non metus auctor fringilla. Maecenas faucibus mollis interdum. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p> + + </div> + </div> + + </div> + + + + + + + <div id="glyphs"> + <div class="section"> + <div class="grid12 firstcol"> + + <h1>Language Support</h1> + <p>The subset of Spectral ExtraBold in this kit supports the following languages:<br /> + + Albanian, Basque, Breton, Chamorro, Danish, Dutch, English, Faroese, Finnish, French, Frisian, Galician, German, Icelandic, Italian, Malagasy, Norwegian, Portuguese, Spanish, Alsatian, Aragonese, Arapaho, Arrernte, Asturian, Aymara, Bislama, Cebuano, Corsican, Fijian, French_creole, Genoese, Gilbertese, Greenlandic, Haitian_creole, Hiligaynon, Hmong, Hopi, Ibanag, Iloko_ilokano, Indonesian, Interglossa_glosa, Interlingua, Irish_gaelic, Jerriais, Lojban, Lombard, Luxembourgeois, Manx, Mohawk, Norfolk_pitcairnese, Occitan, Oromo, Pangasinan, Papiamento, Piedmontese, Potawatomi, Rhaeto-romance, Romansh, Rotokas, Sami_lule, Samoan, Sardinian, Scots_gaelic, Seychelles_creole, Shona, Sicilian, Somali, Southern_ndebele, Swahili, Swati_swazi, Tagalog_filipino_pilipino, Tetum, Tok_pisin, Uyghur_latinized, Volapuk, Walloon, Warlpiri, Xhosa, Yapese, Zulu, Latinbasic, Ubasic, Demo </p> + <h1>Glyph Chart</h1> + <p>The subset of Spectral ExtraBold in this kit includes all the glyphs listed below. Unicode entities are included above each glyph to help you insert individual characters into your layout.</p> + <div id="glyph_chart"> + + <div><p>&#32;</p> </div> + <div><p>&#33;</p>!</div> + <div><p>&#34;</p>"</div> + <div><p>&#35;</p>#</div> + <div><p>&#36;</p>$</div> + <div><p>&#37;</p>%</div> + <div><p>&#38;</p>&</div> + <div><p>&#39;</p>'</div> + <div><p>&#40;</p>(</div> + <div><p>&#41;</p>)</div> + <div><p>&#42;</p>*</div> + <div><p>&#43;</p>+</div> + <div><p>&#44;</p>,</div> + <div><p>&#45;</p>-</div> + <div><p>&#46;</p>.</div> + <div><p>&#47;</p>/</div> + <div><p>&#48;</p>0</div> + <div><p>&#49;</p>1</div> + <div><p>&#50;</p>2</div> + <div><p>&#51;</p>3</div> + <div><p>&#52;</p>4</div> + <div><p>&#53;</p>5</div> + <div><p>&#54;</p>6</div> + <div><p>&#55;</p>7</div> + <div><p>&#56;</p>8</div> + <div><p>&#57;</p>9</div> + <div><p>&#58;</p>:</div> + <div><p>&#59;</p>;</div> + <div><p>&#60;</p><</div> + <div><p>&#61;</p>=</div> + <div><p>&#62;</p>></div> + <div><p>&#63;</p>?</div> + <div><p>&#64;</p>@</div> + <div><p>&#65;</p>A</div> + <div><p>&#66;</p>B</div> + <div><p>&#67;</p>C</div> + <div><p>&#68;</p>D</div> + <div><p>&#69;</p>E</div> + <div><p>&#70;</p>F</div> + <div><p>&#71;</p>G</div> + <div><p>&#72;</p>H</div> + <div><p>&#73;</p>I</div> + <div><p>&#74;</p>J</div> + <div><p>&#75;</p>K</div> + <div><p>&#76;</p>L</div> + <div><p>&#77;</p>M</div> + <div><p>&#78;</p>N</div> + <div><p>&#79;</p>O</div> + <div><p>&#80;</p>P</div> + <div><p>&#81;</p>Q</div> + <div><p>&#82;</p>R</div> + <div><p>&#83;</p>S</div> + <div><p>&#84;</p>T</div> + <div><p>&#85;</p>U</div> + <div><p>&#86;</p>V</div> + <div><p>&#87;</p>W</div> + <div><p>&#88;</p>X</div> + <div><p>&#89;</p>Y</div> + <div><p>&#90;</p>Z</div> + <div><p>&#91;</p>[</div> + <div><p>&#92;</p>\</div> + <div><p>&#93;</p>]</div> + <div><p>&#94;</p>^</div> + <div><p>&#95;</p>_</div> + <div><p>&#96;</p>`</div> + <div><p>&#97;</p>a</div> + <div><p>&#98;</p>b</div> + <div><p>&#99;</p>c</div> + <div><p>&#100;</p>d</div> + <div><p>&#101;</p>e</div> + <div><p>&#102;</p>f</div> + <div><p>&#103;</p>g</div> + <div><p>&#104;</p>h</div> + <div><p>&#105;</p>i</div> + <div><p>&#106;</p>j</div> + <div><p>&#107;</p>k</div> + <div><p>&#108;</p>l</div> + <div><p>&#109;</p>m</div> + <div><p>&#110;</p>n</div> + <div><p>&#111;</p>o</div> + <div><p>&#112;</p>p</div> + <div><p>&#113;</p>q</div> + <div><p>&#114;</p>r</div> + <div><p>&#115;</p>s</div> + <div><p>&#116;</p>t</div> + <div><p>&#117;</p>u</div> + <div><p>&#118;</p>v</div> + <div><p>&#119;</p>w</div> + <div><p>&#120;</p>x</div> + <div><p>&#121;</p>y</div> + <div><p>&#122;</p>z</div> + <div><p>&#123;</p>{</div> + <div><p>&#124;</p>|</div> + <div><p>&#125;</p>}</div> + <div><p>&#126;</p>~</div> + <div><p>&#160;</p> </div> + <div><p>&#161;</p>¡</div> + <div><p>&#162;</p>¢</div> + <div><p>&#163;</p>£</div> + <div><p>&#164;</p>¤</div> + <div><p>&#165;</p>¥</div> + <div><p>&#166;</p>¦</div> + <div><p>&#167;</p>§</div> + <div><p>&#168;</p>¨</div> + <div><p>&#169;</p>©</div> + <div><p>&#170;</p>ª</div> + <div><p>&#171;</p>«</div> + <div><p>&#172;</p>¬</div> + <div><p>&#173;</p>­</div> + <div><p>&#174;</p>®</div> + <div><p>&#175;</p>¯</div> + <div><p>&#176;</p>°</div> + <div><p>&#177;</p>±</div> + <div><p>&#178;</p>²</div> + <div><p>&#179;</p>³</div> + <div><p>&#180;</p>´</div> + <div><p>&#181;</p>µ</div> + <div><p>&#182;</p>¶</div> + <div><p>&#183;</p>·</div> + <div><p>&#184;</p>¸</div> + <div><p>&#185;</p>¹</div> + <div><p>&#186;</p>º</div> + <div><p>&#187;</p>»</div> + <div><p>&#188;</p>¼</div> + <div><p>&#189;</p>½</div> + <div><p>&#190;</p>¾</div> + <div><p>&#191;</p>¿</div> + <div><p>&#192;</p>À</div> + <div><p>&#193;</p>Á</div> + <div><p>&#194;</p>Â</div> + <div><p>&#195;</p>Ã</div> + <div><p>&#196;</p>Ä</div> + <div><p>&#197;</p>Å</div> + <div><p>&#198;</p>Æ</div> + <div><p>&#199;</p>Ç</div> + <div><p>&#200;</p>È</div> + <div><p>&#201;</p>É</div> + <div><p>&#202;</p>Ê</div> + <div><p>&#203;</p>Ë</div> + <div><p>&#204;</p>Ì</div> + <div><p>&#205;</p>Í</div> + <div><p>&#206;</p>Î</div> + <div><p>&#207;</p>Ï</div> + <div><p>&#208;</p>Ð</div> + <div><p>&#209;</p>Ñ</div> + <div><p>&#210;</p>Ò</div> + <div><p>&#211;</p>Ó</div> + <div><p>&#212;</p>Ô</div> + <div><p>&#213;</p>Õ</div> + <div><p>&#214;</p>Ö</div> + <div><p>&#215;</p>×</div> + <div><p>&#216;</p>Ø</div> + <div><p>&#217;</p>Ù</div> + <div><p>&#218;</p>Ú</div> + <div><p>&#219;</p>Û</div> + <div><p>&#220;</p>Ü</div> + <div><p>&#221;</p>Ý</div> + <div><p>&#222;</p>Þ</div> + <div><p>&#223;</p>ß</div> + <div><p>&#224;</p>à</div> + <div><p>&#225;</p>á</div> + <div><p>&#226;</p>â</div> + <div><p>&#227;</p>ã</div> + <div><p>&#228;</p>ä</div> + <div><p>&#229;</p>å</div> + <div><p>&#230;</p>æ</div> + <div><p>&#231;</p>ç</div> + <div><p>&#232;</p>è</div> + <div><p>&#233;</p>é</div> + <div><p>&#234;</p>ê</div> + <div><p>&#235;</p>ë</div> + <div><p>&#236;</p>ì</div> + <div><p>&#237;</p>í</div> + <div><p>&#238;</p>î</div> + <div><p>&#239;</p>ï</div> + <div><p>&#240;</p>ð</div> + <div><p>&#241;</p>ñ</div> + <div><p>&#242;</p>ò</div> + <div><p>&#243;</p>ó</div> + <div><p>&#244;</p>ô</div> + <div><p>&#245;</p>õ</div> + <div><p>&#246;</p>ö</div> + <div><p>&#247;</p>÷</div> + <div><p>&#248;</p>ø</div> + <div><p>&#249;</p>ù</div> + <div><p>&#250;</p>ú</div> + <div><p>&#251;</p>û</div> + <div><p>&#252;</p>ü</div> + <div><p>&#253;</p>ý</div> + <div><p>&#254;</p>þ</div> + <div><p>&#255;</p>ÿ</div> + <div><p>&#338;</p>Œ</div> + <div><p>&#339;</p>œ</div> + <div><p>&#376;</p>Ÿ</div> + <div><p>&#710;</p>ˆ</div> + <div><p>&#732;</p>˜</div> + <div><p>&#8192;</p> </div> + <div><p>&#8193;</p> </div> + <div><p>&#8194;</p> </div> + <div><p>&#8195;</p> </div> + <div><p>&#8196;</p> </div> + <div><p>&#8197;</p> </div> + <div><p>&#8198;</p> </div> + <div><p>&#8199;</p> </div> + <div><p>&#8200;</p> </div> + <div><p>&#8201;</p> </div> + <div><p>&#8202;</p> </div> + <div><p>&#8208;</p>‐</div> + <div><p>&#8209;</p>‑</div> + <div><p>&#8210;</p>‒</div> + <div><p>&#8211;</p>–</div> + <div><p>&#8212;</p>—</div> + <div><p>&#8216;</p>‘</div> + <div><p>&#8217;</p>’</div> + <div><p>&#8218;</p>‚</div> + <div><p>&#8220;</p>“</div> + <div><p>&#8221;</p>”</div> + <div><p>&#8222;</p>„</div> + <div><p>&#8226;</p>•</div> + <div><p>&#8230;</p>…</div> + <div><p>&#8239;</p> </div> + <div><p>&#8249;</p>‹</div> + <div><p>&#8250;</p>›</div> + <div><p>&#8287;</p> </div> + <div><p>&#8364;</p>€</div> + <div><p>&#8482;</p>™</div> + <div><p>&#9724;</p>◼</div> + <div><p>&#64257;</p>fi</div> + <div><p>&#64258;</p>fl</div> + <div><p>&#64259;</p>ffi</div> + <div><p>&#64260;</p>ffl</div> + </div> + </div> + + + </div> + </div> + + + <div id="specs"> + + </div> + + <div id="installing"> + <div class="section"> + <div class="grid7 firstcol"> + <h1>Installing Webfonts</h1> + + <p>Webfonts are supported by all major browser platforms but not all in the same way. There are currently four different font formats that must be included in order to target all browsers. This includes TTF, WOFF, EOT and SVG.</p> + + <h2>1. Upload your webfonts</h2> + <p>You must upload your webfont kit to your website. They should be in or near the same directory as your CSS files.</p> + + <h2>2. Include the webfont stylesheet</h2> + <p>A special CSS @font-face declaration helps the various browsers select the appropriate font it needs without causing you a bunch of headaches. Learn more about this syntax by reading the <a href="https://www.fontspring.com/blog/further-hardening-of-the-bulletproof-syntax">Fontspring blog post</a> about it. The code for it is as follows:</p> + + +<code> +@font-face{ + font-family: 'MyWebFont'; + src: url('WebFont.eot'); + src: url('WebFont.eot?#iefix') format('embedded-opentype'), + url('WebFont.woff') format('woff'), + url('WebFont.ttf') format('truetype'), + url('WebFont.svg#webfont') format('svg'); +} +</code> + + <p>We've already gone ahead and generated the code for you. All you have to do is link to the stylesheet in your HTML, like this:</p> + <code><link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8" /></code> + + <h2>3. Modify your own stylesheet</h2> + <p>To take advantage of your new fonts, you must tell your stylesheet to use them. Look at the original @font-face declaration above and find the property called "font-family." The name linked there will be what you use to reference the font. Prepend that webfont name to the font stack in the "font-family" property, inside the selector you want to change. For example:</p> +<code>p { font-family: 'WebFont', Arial, sans-serif; }</code> + +<h2>4. Test</h2> +<p>Getting webfonts to work cross-browser <em>can</em> be tricky. Use the information in the sidebar to help you if you find that fonts aren't loading in a particular browser.</p> + </div> + + <div class="grid5 sidebar"> + <div class="box"> + <h2>Troubleshooting<br />Font-Face Problems</h2> + <p>Having trouble getting your webfonts to load in your new website? Here are some tips to sort out what might be the problem.</p> + + <h3>Fonts not showing in any browser</h3> + + <p>This sounds like you need to work on the plumbing. You either did not upload the fonts to the correct directory, or you did not link the fonts properly in the CSS. If you've confirmed that all this is correct and you still have a problem, take a look at your .htaccess file and see if requests are getting intercepted.</p> + + <h3>Fonts not loading in iPhone or iPad</h3> + + <p>The most common problem here is that you are serving the fonts from an IIS server. IIS refuses to serve files that have unknown MIME types. If that is the case, you must set the MIME type for SVG to "image/svg+xml" in the server settings. Follow these instructions from Microsoft if you need help.</p> + + <h3>Fonts not loading in Firefox</h3> + + <p>The primary reason for this failure? You are still using a version Firefox older than 3.5. So upgrade already! If that isn't it, then you are very likely serving fonts from a different domain. Firefox requires that all font assets be served from the same domain. Lastly it is possible that you need to add WOFF to your list of MIME types (if you are serving via IIS.)</p> + + <h3>Fonts not loading in IE</h3> + + <p>Are you looking at Internet Explorer on an actual Windows machine or are you cheating by using a service like Adobe BrowserLab? Many of these screenshot services do not render @font-face for IE. Best to test it on a real machine.</p> + + <h3>Fonts not loading in IE9</h3> + + <p>IE9, like Firefox, requires that fonts be served from the same domain as the website. Make sure that is the case.</p> + </div> + </div> + </div> + + </div> + + </div> + <div id="footer"> + <p>©2010-2017 Font Squirrel. All rights reserved.</p> + </div> +</div> +</body> +</html> diff --git a/test/samples/aurorae/fonts/spectral/spectral-extrabold-webfont.ttf b/test/samples/aurorae/fonts/spectral/spectral-extrabold-webfont.ttf new file mode 100755 index 0000000000000000000000000000000000000000..f53abdd7762e63ab0b2516014254c7f121ad3f4e Binary files /dev/null and b/test/samples/aurorae/fonts/spectral/spectral-extrabold-webfont.ttf differ diff --git a/test/samples/aurorae/fonts/spectral/spectral-extrabold-webfont.woff b/test/samples/aurorae/fonts/spectral/spectral-extrabold-webfont.woff new file mode 100755 index 0000000000000000000000000000000000000000..b8a81e2ed600dbac27d88b6738ce308db83ebd22 Binary files /dev/null and b/test/samples/aurorae/fonts/spectral/spectral-extrabold-webfont.woff differ diff --git a/test/samples/aurorae/fonts/spectral/spectral-extrabold-webfont.woff2 b/test/samples/aurorae/fonts/spectral/spectral-extrabold-webfont.woff2 new file mode 100755 index 0000000000000000000000000000000000000000..b72f9dc0207e83c0ffc856cd78af8f058809cf75 Binary files /dev/null and b/test/samples/aurorae/fonts/spectral/spectral-extrabold-webfont.woff2 differ diff --git a/test/samples/aurorae/fonts/spectral/spectral-extrabolditalic-demo.html b/test/samples/aurorae/fonts/spectral/spectral-extrabolditalic-demo.html new file mode 100755 index 0000000000000000000000000000000000000000..e8bcba24d614dc5c679f347d40a6a68ca9751c56 --- /dev/null +++ b/test/samples/aurorae/fonts/spectral/spectral-extrabolditalic-demo.html @@ -0,0 +1,621 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> + +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> +<head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> + <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js" type="text/javascript" charset="utf-8"></script> + <script type="text/javascript"> + (function($){$.fn.easyTabs=function(option){var param=jQuery.extend({fadeSpeed:"fast",defaultContent:1,activeClass:'active'},option);$(this).each(function(){var thisId="#"+this.id;if(param.defaultContent==''){param.defaultContent=1;} + if(typeof param.defaultContent=="number") + {var defaultTab=$(thisId+" .tabs li:eq("+(param.defaultContent-1)+") a").attr('href').substr(1);}else{var defaultTab=param.defaultContent;} + $(thisId+" .tabs li a").each(function(){var tabToHide=$(this).attr('href').substr(1);$("#"+tabToHide).addClass('easytabs-tab-content');});hideAll();changeContent(defaultTab);function hideAll(){$(thisId+" .easytabs-tab-content").hide();} + function changeContent(tabId){hideAll();$(thisId+" .tabs li").removeClass(param.activeClass);$(thisId+" .tabs li a[href=#"+tabId+"]").closest('li').addClass(param.activeClass);if(param.fadeSpeed!="none") + {$(thisId+" #"+tabId).fadeIn(param.fadeSpeed);}else{$(thisId+" #"+tabId).show();}} + $(thisId+" .tabs li").click(function(){var tabId=$(this).find('a').attr('href').substr(1);changeContent(tabId);return false;});});}})(jQuery); + </script> + <link rel="stylesheet" href="specimen_files/specimen_stylesheet.css" type="text/css" charset="utf-8" /> + <link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8" /> + + <style type="text/css"> + body{ + font-family: 'spectralextrabold_italic'; + } + </style> + + <title>Spectral ExtraBold Italic Specimen</title> + + + <script type="text/javascript" charset="utf-8"> + $(document).ready(function() { + $('#container').easyTabs({defaultContent:1}); + }); + </script> +</head> + +<body> +<div id="container"> + <div id="header"> + Spectral ExtraBold Italic </div> + <ul class="tabs"> + <li><a href="#specimen">Specimen</a></li> + <li><a href="#layout">Sample Layout</a></li> + <li><a href="#glyphs">Glyphs & Languages</a></li> + <li><a href="#installing">Installing Webfonts</a></li> + + </ul> + + <div id="main_content"> + + + <div id="specimen"> + + <div class="section"> + <div class="grid12 firstcol"> + <div class="huge">AaBb</div> + </div> + </div> + + <div class="section"> + <div class="glyph_range">A​B​C​D​E​F​G​H​I​J​K​L​M​N​O​P​Q​R​S​T​U​V​W​X​Y​Z​a​b​c​d​e​f​g​h​i​j​k​l​m​n​o​p​q​r​s​t​u​v​w​x​y​z​1​2​3​4​5​6​7​8​9​0​&​.​,​?​!​@​(​)​#​$​%​*​+​-​=​:​;</div> + </div> + <div class="section"> + <div class="grid12 firstcol"> + <table class="sample_table"> + <tr><td>10</td><td class="size10">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>11</td><td class="size11">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>12</td><td class="size12">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>13</td><td class="size13">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>14</td><td class="size14">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>16</td><td class="size16">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>18</td><td class="size18">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>20</td><td class="size20">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>24</td><td class="size24">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>30</td><td class="size30">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>36</td><td class="size36">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>48</td><td class="size48">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>60</td><td class="size60">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>72</td><td class="size72">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>90</td><td class="size90">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + </table> + + </div> + + </div> + + + + <div class="section" id="bodycomparison"> + + + <div id="xheight"> + <div class="fontbody">◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼body</div><div class="arialbody">body</div><div class="verdanabody">body</div><div class="georgiabody">body</div></div> + <div class="fontbody" style="z-index:1"> + body<span>Spectral ExtraBold Italic</span> + </div> + <div class="arialbody" style="z-index:1"> + body<span>Arial</span> + </div> + <div class="verdanabody" style="z-index:1"> + body<span>Verdana</span> + </div> + <div class="georgiabody" style="z-index:1"> + body<span>Georgia</span> + </div> + + + + </div> + + + <div class="section psample psample_row1" id=""> + + <div class="grid2 firstcol"> + <p class="size10"><span>10.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid3"> + <p class="size11"><span>11.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid3"> + <p class="size12"><span>12.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid4"> + <p class="size13"><span>13.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="white_blend"></div> + + </div> + <div class="section psample psample_row2" id=""> + <div class="grid3 firstcol"> + <p class="size14"><span>14.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid4"> + <p class="size16"><span>16.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid5"> + <p class="size18"><span>18.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + + <div class="white_blend"></div> + + </div> + + <div class="section psample psample_row3" id=""> + <div class="grid5 firstcol"> + <p class="size20"><span>20.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + <div class="grid7"> + <p class="size24"><span>24.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + + <div class="white_blend"></div> + + </div> + + <div class="section psample psample_row4" id=""> + <div class="grid12 firstcol"> + <p class="size30"><span>30.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + <div class="white_blend"></div> + + </div> + + + + <div class="section psample psample_row1 fullreverse"> + <div class="grid2 firstcol"> + <p class="size10"><span>10.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid3"> + <p class="size11"><span>11.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid3"> + <p class="size12"><span>12.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid4"> + <p class="size13"><span>13.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="black_blend"></div> + + </div> + + <div class="section psample psample_row2 fullreverse"> + <div class="grid3 firstcol"> + <p class="size14"><span>14.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid4"> + <p class="size16"><span>16.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid5"> + <p class="size18"><span>18.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="black_blend"></div> + + </div> + + <div class="section psample fullreverse psample_row3" id=""> + <div class="grid5 firstcol"> + <p class="size20"><span>20.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + <div class="grid7"> + <p class="size24"><span>24.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + + <div class="black_blend"></div> + + </div> + + <div class="section psample fullreverse psample_row4" id="" style="border-bottom: 20px #000 solid;"> + <div class="grid12 firstcol"> + <p class="size30"><span>30.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + <div class="black_blend"></div> + + </div> + + + + + </div> + + <div id="layout"> + + <div class="section"> + + <div class="grid12 firstcol"> + <h1>Lorem Ipsum Dolor</h1> + <h2>Etiam porta sem malesuada magna mollis euismod</h2> + + <p class="byline">By <a href="#link">Aenean Lacinia</a></p> + </div> + </div> + <div class="section"> + <div class="grid8 firstcol"> + <p class="large">Donec sed odio dui. Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p> + + + <h3>Pellentesque ornare sem</h3> + + <p>Maecenas sed diam eget risus varius blandit sit amet non magna. Maecenas faucibus mollis interdum. Donec ullamcorper nulla non metus auctor fringilla. Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam id dolor id nibh ultricies vehicula ut id elit. </p> + + <p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. </p> + + <p>Nulla vitae elit libero, a pharetra augue. Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Aenean lacinia bibendum nulla sed consectetur. </p> + + <p>Nullam quis risus eget urna mollis ornare vel eu leo. Nullam quis risus eget urna mollis ornare vel eu leo. Maecenas sed diam eget risus varius blandit sit amet non magna. Donec ullamcorper nulla non metus auctor fringilla. </p> + + <h3>Cras mattis consectetur</h3> + + <p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Aenean lacinia bibendum nulla sed consectetur. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Cras mattis consectetur purus sit amet fermentum. </p> + + <p>Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam quis risus eget urna mollis ornare vel eu leo. Cras mattis consectetur purus sit amet fermentum.</p> + </div> + + <div class="grid4 sidebar"> + + <div class="box reverse"> + <p class="last">Nullam quis risus eget urna mollis ornare vel eu leo. Donec ullamcorper nulla non metus auctor fringilla. Cras mattis consectetur purus sit amet fermentum. Sed posuere consectetur est at lobortis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. </p> + </div> + + <p class="caption">Maecenas sed diam eget risus varius.</p> + + <p>Vestibulum id ligula porta felis euismod semper. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Vestibulum id ligula porta felis euismod semper. Sed posuere consectetur est at lobortis. Maecenas sed diam eget risus varius blandit sit amet non magna. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p> + + + + <p>Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Aenean lacinia bibendum nulla sed consectetur. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Aenean lacinia bibendum nulla sed consectetur. Nullam quis risus eget urna mollis ornare vel eu leo. </p> + + <p>Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Donec ullamcorper nulla non metus auctor fringilla. Maecenas faucibus mollis interdum. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p> + + </div> + </div> + + </div> + + + + + + + <div id="glyphs"> + <div class="section"> + <div class="grid12 firstcol"> + + <h1>Language Support</h1> + <p>The subset of Spectral ExtraBold Italic in this kit supports the following languages:<br /> + + Albanian, Basque, Breton, Chamorro, Danish, Dutch, English, Faroese, Finnish, French, Frisian, Galician, German, Icelandic, Italian, Malagasy, Norwegian, Portuguese, Spanish, Alsatian, Aragonese, Arapaho, Arrernte, Asturian, Aymara, Bislama, Cebuano, Corsican, Fijian, French_creole, Genoese, Gilbertese, Greenlandic, Haitian_creole, Hiligaynon, Hmong, Hopi, Ibanag, Iloko_ilokano, Indonesian, Interglossa_glosa, Interlingua, Irish_gaelic, Jerriais, Lojban, Lombard, Luxembourgeois, Manx, Mohawk, Norfolk_pitcairnese, Occitan, Oromo, Pangasinan, Papiamento, Piedmontese, Potawatomi, Rhaeto-romance, Romansh, Rotokas, Sami_lule, Samoan, Sardinian, Scots_gaelic, Seychelles_creole, Shona, Sicilian, Somali, Southern_ndebele, Swahili, Swati_swazi, Tagalog_filipino_pilipino, Tetum, Tok_pisin, Uyghur_latinized, Volapuk, Walloon, Warlpiri, Xhosa, Yapese, Zulu, Latinbasic, Ubasic, Demo </p> + <h1>Glyph Chart</h1> + <p>The subset of Spectral ExtraBold Italic in this kit includes all the glyphs listed below. Unicode entities are included above each glyph to help you insert individual characters into your layout.</p> + <div id="glyph_chart"> + + <div><p>&#32;</p> </div> + <div><p>&#33;</p>!</div> + <div><p>&#34;</p>"</div> + <div><p>&#35;</p>#</div> + <div><p>&#36;</p>$</div> + <div><p>&#37;</p>%</div> + <div><p>&#38;</p>&</div> + <div><p>&#39;</p>'</div> + <div><p>&#40;</p>(</div> + <div><p>&#41;</p>)</div> + <div><p>&#42;</p>*</div> + <div><p>&#43;</p>+</div> + <div><p>&#44;</p>,</div> + <div><p>&#45;</p>-</div> + <div><p>&#46;</p>.</div> + <div><p>&#47;</p>/</div> + <div><p>&#48;</p>0</div> + <div><p>&#49;</p>1</div> + <div><p>&#50;</p>2</div> + <div><p>&#51;</p>3</div> + <div><p>&#52;</p>4</div> + <div><p>&#53;</p>5</div> + <div><p>&#54;</p>6</div> + <div><p>&#55;</p>7</div> + <div><p>&#56;</p>8</div> + <div><p>&#57;</p>9</div> + <div><p>&#58;</p>:</div> + <div><p>&#59;</p>;</div> + <div><p>&#60;</p><</div> + <div><p>&#61;</p>=</div> + <div><p>&#62;</p>></div> + <div><p>&#63;</p>?</div> + <div><p>&#64;</p>@</div> + <div><p>&#65;</p>A</div> + <div><p>&#66;</p>B</div> + <div><p>&#67;</p>C</div> + <div><p>&#68;</p>D</div> + <div><p>&#69;</p>E</div> + <div><p>&#70;</p>F</div> + <div><p>&#71;</p>G</div> + <div><p>&#72;</p>H</div> + <div><p>&#73;</p>I</div> + <div><p>&#74;</p>J</div> + <div><p>&#75;</p>K</div> + <div><p>&#76;</p>L</div> + <div><p>&#77;</p>M</div> + <div><p>&#78;</p>N</div> + <div><p>&#79;</p>O</div> + <div><p>&#80;</p>P</div> + <div><p>&#81;</p>Q</div> + <div><p>&#82;</p>R</div> + <div><p>&#83;</p>S</div> + <div><p>&#84;</p>T</div> + <div><p>&#85;</p>U</div> + <div><p>&#86;</p>V</div> + <div><p>&#87;</p>W</div> + <div><p>&#88;</p>X</div> + <div><p>&#89;</p>Y</div> + <div><p>&#90;</p>Z</div> + <div><p>&#91;</p>[</div> + <div><p>&#92;</p>\</div> + <div><p>&#93;</p>]</div> + <div><p>&#94;</p>^</div> + <div><p>&#95;</p>_</div> + <div><p>&#96;</p>`</div> + <div><p>&#97;</p>a</div> + <div><p>&#98;</p>b</div> + <div><p>&#99;</p>c</div> + <div><p>&#100;</p>d</div> + <div><p>&#101;</p>e</div> + <div><p>&#102;</p>f</div> + <div><p>&#103;</p>g</div> + <div><p>&#104;</p>h</div> + <div><p>&#105;</p>i</div> + <div><p>&#106;</p>j</div> + <div><p>&#107;</p>k</div> + <div><p>&#108;</p>l</div> + <div><p>&#109;</p>m</div> + <div><p>&#110;</p>n</div> + <div><p>&#111;</p>o</div> + <div><p>&#112;</p>p</div> + <div><p>&#113;</p>q</div> + <div><p>&#114;</p>r</div> + <div><p>&#115;</p>s</div> + <div><p>&#116;</p>t</div> + <div><p>&#117;</p>u</div> + <div><p>&#118;</p>v</div> + <div><p>&#119;</p>w</div> + <div><p>&#120;</p>x</div> + <div><p>&#121;</p>y</div> + <div><p>&#122;</p>z</div> + <div><p>&#123;</p>{</div> + <div><p>&#124;</p>|</div> + <div><p>&#125;</p>}</div> + <div><p>&#126;</p>~</div> + <div><p>&#160;</p> </div> + <div><p>&#161;</p>¡</div> + <div><p>&#162;</p>¢</div> + <div><p>&#163;</p>£</div> + <div><p>&#164;</p>¤</div> + <div><p>&#165;</p>¥</div> + <div><p>&#166;</p>¦</div> + <div><p>&#167;</p>§</div> + <div><p>&#168;</p>¨</div> + <div><p>&#169;</p>©</div> + <div><p>&#170;</p>ª</div> + <div><p>&#171;</p>«</div> + <div><p>&#172;</p>¬</div> + <div><p>&#173;</p>­</div> + <div><p>&#174;</p>®</div> + <div><p>&#175;</p>¯</div> + <div><p>&#176;</p>°</div> + <div><p>&#177;</p>±</div> + <div><p>&#178;</p>²</div> + <div><p>&#179;</p>³</div> + <div><p>&#180;</p>´</div> + <div><p>&#181;</p>µ</div> + <div><p>&#182;</p>¶</div> + <div><p>&#183;</p>·</div> + <div><p>&#184;</p>¸</div> + <div><p>&#185;</p>¹</div> + <div><p>&#186;</p>º</div> + <div><p>&#187;</p>»</div> + <div><p>&#188;</p>¼</div> + <div><p>&#189;</p>½</div> + <div><p>&#190;</p>¾</div> + <div><p>&#191;</p>¿</div> + <div><p>&#192;</p>À</div> + <div><p>&#193;</p>Á</div> + <div><p>&#194;</p>Â</div> + <div><p>&#195;</p>Ã</div> + <div><p>&#196;</p>Ä</div> + <div><p>&#197;</p>Å</div> + <div><p>&#198;</p>Æ</div> + <div><p>&#199;</p>Ç</div> + <div><p>&#200;</p>È</div> + <div><p>&#201;</p>É</div> + <div><p>&#202;</p>Ê</div> + <div><p>&#203;</p>Ë</div> + <div><p>&#204;</p>Ì</div> + <div><p>&#205;</p>Í</div> + <div><p>&#206;</p>Î</div> + <div><p>&#207;</p>Ï</div> + <div><p>&#208;</p>Ð</div> + <div><p>&#209;</p>Ñ</div> + <div><p>&#210;</p>Ò</div> + <div><p>&#211;</p>Ó</div> + <div><p>&#212;</p>Ô</div> + <div><p>&#213;</p>Õ</div> + <div><p>&#214;</p>Ö</div> + <div><p>&#215;</p>×</div> + <div><p>&#216;</p>Ø</div> + <div><p>&#217;</p>Ù</div> + <div><p>&#218;</p>Ú</div> + <div><p>&#219;</p>Û</div> + <div><p>&#220;</p>Ü</div> + <div><p>&#221;</p>Ý</div> + <div><p>&#222;</p>Þ</div> + <div><p>&#223;</p>ß</div> + <div><p>&#224;</p>à</div> + <div><p>&#225;</p>á</div> + <div><p>&#226;</p>â</div> + <div><p>&#227;</p>ã</div> + <div><p>&#228;</p>ä</div> + <div><p>&#229;</p>å</div> + <div><p>&#230;</p>æ</div> + <div><p>&#231;</p>ç</div> + <div><p>&#232;</p>è</div> + <div><p>&#233;</p>é</div> + <div><p>&#234;</p>ê</div> + <div><p>&#235;</p>ë</div> + <div><p>&#236;</p>ì</div> + <div><p>&#237;</p>í</div> + <div><p>&#238;</p>î</div> + <div><p>&#239;</p>ï</div> + <div><p>&#240;</p>ð</div> + <div><p>&#241;</p>ñ</div> + <div><p>&#242;</p>ò</div> + <div><p>&#243;</p>ó</div> + <div><p>&#244;</p>ô</div> + <div><p>&#245;</p>õ</div> + <div><p>&#246;</p>ö</div> + <div><p>&#247;</p>÷</div> + <div><p>&#248;</p>ø</div> + <div><p>&#249;</p>ù</div> + <div><p>&#250;</p>ú</div> + <div><p>&#251;</p>û</div> + <div><p>&#252;</p>ü</div> + <div><p>&#253;</p>ý</div> + <div><p>&#254;</p>þ</div> + <div><p>&#255;</p>ÿ</div> + <div><p>&#338;</p>Œ</div> + <div><p>&#339;</p>œ</div> + <div><p>&#376;</p>Ÿ</div> + <div><p>&#710;</p>ˆ</div> + <div><p>&#732;</p>˜</div> + <div><p>&#8192;</p> </div> + <div><p>&#8193;</p> </div> + <div><p>&#8194;</p> </div> + <div><p>&#8195;</p> </div> + <div><p>&#8196;</p> </div> + <div><p>&#8197;</p> </div> + <div><p>&#8198;</p> </div> + <div><p>&#8199;</p> </div> + <div><p>&#8200;</p> </div> + <div><p>&#8201;</p> </div> + <div><p>&#8202;</p> </div> + <div><p>&#8208;</p>‐</div> + <div><p>&#8209;</p>‑</div> + <div><p>&#8210;</p>‒</div> + <div><p>&#8211;</p>–</div> + <div><p>&#8212;</p>—</div> + <div><p>&#8216;</p>‘</div> + <div><p>&#8217;</p>’</div> + <div><p>&#8218;</p>‚</div> + <div><p>&#8220;</p>“</div> + <div><p>&#8221;</p>”</div> + <div><p>&#8222;</p>„</div> + <div><p>&#8226;</p>•</div> + <div><p>&#8230;</p>…</div> + <div><p>&#8239;</p> </div> + <div><p>&#8249;</p>‹</div> + <div><p>&#8250;</p>›</div> + <div><p>&#8287;</p> </div> + <div><p>&#8364;</p>€</div> + <div><p>&#8482;</p>™</div> + <div><p>&#9724;</p>◼</div> + <div><p>&#64257;</p>fi</div> + <div><p>&#64258;</p>fl</div> + <div><p>&#64259;</p>ffi</div> + <div><p>&#64260;</p>ffl</div> + </div> + </div> + + + </div> + </div> + + + <div id="specs"> + + </div> + + <div id="installing"> + <div class="section"> + <div class="grid7 firstcol"> + <h1>Installing Webfonts</h1> + + <p>Webfonts are supported by all major browser platforms but not all in the same way. There are currently four different font formats that must be included in order to target all browsers. This includes TTF, WOFF, EOT and SVG.</p> + + <h2>1. Upload your webfonts</h2> + <p>You must upload your webfont kit to your website. They should be in or near the same directory as your CSS files.</p> + + <h2>2. Include the webfont stylesheet</h2> + <p>A special CSS @font-face declaration helps the various browsers select the appropriate font it needs without causing you a bunch of headaches. Learn more about this syntax by reading the <a href="https://www.fontspring.com/blog/further-hardening-of-the-bulletproof-syntax">Fontspring blog post</a> about it. The code for it is as follows:</p> + + +<code> +@font-face{ + font-family: 'MyWebFont'; + src: url('WebFont.eot'); + src: url('WebFont.eot?#iefix') format('embedded-opentype'), + url('WebFont.woff') format('woff'), + url('WebFont.ttf') format('truetype'), + url('WebFont.svg#webfont') format('svg'); +} +</code> + + <p>We've already gone ahead and generated the code for you. All you have to do is link to the stylesheet in your HTML, like this:</p> + <code><link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8" /></code> + + <h2>3. Modify your own stylesheet</h2> + <p>To take advantage of your new fonts, you must tell your stylesheet to use them. Look at the original @font-face declaration above and find the property called "font-family." The name linked there will be what you use to reference the font. Prepend that webfont name to the font stack in the "font-family" property, inside the selector you want to change. For example:</p> +<code>p { font-family: 'WebFont', Arial, sans-serif; }</code> + +<h2>4. Test</h2> +<p>Getting webfonts to work cross-browser <em>can</em> be tricky. Use the information in the sidebar to help you if you find that fonts aren't loading in a particular browser.</p> + </div> + + <div class="grid5 sidebar"> + <div class="box"> + <h2>Troubleshooting<br />Font-Face Problems</h2> + <p>Having trouble getting your webfonts to load in your new website? Here are some tips to sort out what might be the problem.</p> + + <h3>Fonts not showing in any browser</h3> + + <p>This sounds like you need to work on the plumbing. You either did not upload the fonts to the correct directory, or you did not link the fonts properly in the CSS. If you've confirmed that all this is correct and you still have a problem, take a look at your .htaccess file and see if requests are getting intercepted.</p> + + <h3>Fonts not loading in iPhone or iPad</h3> + + <p>The most common problem here is that you are serving the fonts from an IIS server. IIS refuses to serve files that have unknown MIME types. If that is the case, you must set the MIME type for SVG to "image/svg+xml" in the server settings. Follow these instructions from Microsoft if you need help.</p> + + <h3>Fonts not loading in Firefox</h3> + + <p>The primary reason for this failure? You are still using a version Firefox older than 3.5. So upgrade already! If that isn't it, then you are very likely serving fonts from a different domain. Firefox requires that all font assets be served from the same domain. Lastly it is possible that you need to add WOFF to your list of MIME types (if you are serving via IIS.)</p> + + <h3>Fonts not loading in IE</h3> + + <p>Are you looking at Internet Explorer on an actual Windows machine or are you cheating by using a service like Adobe BrowserLab? Many of these screenshot services do not render @font-face for IE. Best to test it on a real machine.</p> + + <h3>Fonts not loading in IE9</h3> + + <p>IE9, like Firefox, requires that fonts be served from the same domain as the website. Make sure that is the case.</p> + </div> + </div> + </div> + + </div> + + </div> + <div id="footer"> + <p>©2010-2017 Font Squirrel. All rights reserved.</p> + </div> +</div> +</body> +</html> diff --git a/test/samples/aurorae/fonts/spectral/spectral-extrabolditalic-webfont.ttf b/test/samples/aurorae/fonts/spectral/spectral-extrabolditalic-webfont.ttf new file mode 100755 index 0000000000000000000000000000000000000000..93e4d458c98b0296ac4aba3ffdb170011626cf32 Binary files /dev/null and b/test/samples/aurorae/fonts/spectral/spectral-extrabolditalic-webfont.ttf differ diff --git a/test/samples/aurorae/fonts/spectral/spectral-extrabolditalic-webfont.woff b/test/samples/aurorae/fonts/spectral/spectral-extrabolditalic-webfont.woff new file mode 100755 index 0000000000000000000000000000000000000000..6d600e5939049d2dc098c6150ffc7ea614314b03 Binary files /dev/null and b/test/samples/aurorae/fonts/spectral/spectral-extrabolditalic-webfont.woff differ diff --git a/test/samples/aurorae/fonts/spectral/spectral-extrabolditalic-webfont.woff2 b/test/samples/aurorae/fonts/spectral/spectral-extrabolditalic-webfont.woff2 new file mode 100755 index 0000000000000000000000000000000000000000..4f96d3abdc667cd45943009c19dfa53c73e8ce87 Binary files /dev/null and b/test/samples/aurorae/fonts/spectral/spectral-extrabolditalic-webfont.woff2 differ diff --git a/test/samples/aurorae/fonts/spectral/spectral-extralight-demo.html b/test/samples/aurorae/fonts/spectral/spectral-extralight-demo.html new file mode 100755 index 0000000000000000000000000000000000000000..53cd8288895eab5812e99b5e9e344cc1079b6817 --- /dev/null +++ b/test/samples/aurorae/fonts/spectral/spectral-extralight-demo.html @@ -0,0 +1,621 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> + +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> +<head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> + <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js" type="text/javascript" charset="utf-8"></script> + <script type="text/javascript"> + (function($){$.fn.easyTabs=function(option){var param=jQuery.extend({fadeSpeed:"fast",defaultContent:1,activeClass:'active'},option);$(this).each(function(){var thisId="#"+this.id;if(param.defaultContent==''){param.defaultContent=1;} + if(typeof param.defaultContent=="number") + {var defaultTab=$(thisId+" .tabs li:eq("+(param.defaultContent-1)+") a").attr('href').substr(1);}else{var defaultTab=param.defaultContent;} + $(thisId+" .tabs li a").each(function(){var tabToHide=$(this).attr('href').substr(1);$("#"+tabToHide).addClass('easytabs-tab-content');});hideAll();changeContent(defaultTab);function hideAll(){$(thisId+" .easytabs-tab-content").hide();} + function changeContent(tabId){hideAll();$(thisId+" .tabs li").removeClass(param.activeClass);$(thisId+" .tabs li a[href=#"+tabId+"]").closest('li').addClass(param.activeClass);if(param.fadeSpeed!="none") + {$(thisId+" #"+tabId).fadeIn(param.fadeSpeed);}else{$(thisId+" #"+tabId).show();}} + $(thisId+" .tabs li").click(function(){var tabId=$(this).find('a').attr('href').substr(1);changeContent(tabId);return false;});});}})(jQuery); + </script> + <link rel="stylesheet" href="specimen_files/specimen_stylesheet.css" type="text/css" charset="utf-8" /> + <link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8" /> + + <style type="text/css"> + body{ + font-family: 'spectralextralight'; + } + </style> + + <title>Spectral ExtraLight Specimen</title> + + + <script type="text/javascript" charset="utf-8"> + $(document).ready(function() { + $('#container').easyTabs({defaultContent:1}); + }); + </script> +</head> + +<body> +<div id="container"> + <div id="header"> + Spectral ExtraLight </div> + <ul class="tabs"> + <li><a href="#specimen">Specimen</a></li> + <li><a href="#layout">Sample Layout</a></li> + <li><a href="#glyphs">Glyphs & Languages</a></li> + <li><a href="#installing">Installing Webfonts</a></li> + + </ul> + + <div id="main_content"> + + + <div id="specimen"> + + <div class="section"> + <div class="grid12 firstcol"> + <div class="huge">AaBb</div> + </div> + </div> + + <div class="section"> + <div class="glyph_range">A​B​C​D​E​F​G​H​I​J​K​L​M​N​O​P​Q​R​S​T​U​V​W​X​Y​Z​a​b​c​d​e​f​g​h​i​j​k​l​m​n​o​p​q​r​s​t​u​v​w​x​y​z​1​2​3​4​5​6​7​8​9​0​&​.​,​?​!​@​(​)​#​$​%​*​+​-​=​:​;</div> + </div> + <div class="section"> + <div class="grid12 firstcol"> + <table class="sample_table"> + <tr><td>10</td><td class="size10">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>11</td><td class="size11">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>12</td><td class="size12">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>13</td><td class="size13">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>14</td><td class="size14">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>16</td><td class="size16">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>18</td><td class="size18">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>20</td><td class="size20">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>24</td><td class="size24">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>30</td><td class="size30">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>36</td><td class="size36">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>48</td><td class="size48">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>60</td><td class="size60">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>72</td><td class="size72">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>90</td><td class="size90">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + </table> + + </div> + + </div> + + + + <div class="section" id="bodycomparison"> + + + <div id="xheight"> + <div class="fontbody">◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼body</div><div class="arialbody">body</div><div class="verdanabody">body</div><div class="georgiabody">body</div></div> + <div class="fontbody" style="z-index:1"> + body<span>Spectral ExtraLight</span> + </div> + <div class="arialbody" style="z-index:1"> + body<span>Arial</span> + </div> + <div class="verdanabody" style="z-index:1"> + body<span>Verdana</span> + </div> + <div class="georgiabody" style="z-index:1"> + body<span>Georgia</span> + </div> + + + + </div> + + + <div class="section psample psample_row1" id=""> + + <div class="grid2 firstcol"> + <p class="size10"><span>10.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid3"> + <p class="size11"><span>11.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid3"> + <p class="size12"><span>12.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid4"> + <p class="size13"><span>13.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="white_blend"></div> + + </div> + <div class="section psample psample_row2" id=""> + <div class="grid3 firstcol"> + <p class="size14"><span>14.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid4"> + <p class="size16"><span>16.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid5"> + <p class="size18"><span>18.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + + <div class="white_blend"></div> + + </div> + + <div class="section psample psample_row3" id=""> + <div class="grid5 firstcol"> + <p class="size20"><span>20.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + <div class="grid7"> + <p class="size24"><span>24.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + + <div class="white_blend"></div> + + </div> + + <div class="section psample psample_row4" id=""> + <div class="grid12 firstcol"> + <p class="size30"><span>30.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + <div class="white_blend"></div> + + </div> + + + + <div class="section psample psample_row1 fullreverse"> + <div class="grid2 firstcol"> + <p class="size10"><span>10.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid3"> + <p class="size11"><span>11.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid3"> + <p class="size12"><span>12.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid4"> + <p class="size13"><span>13.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="black_blend"></div> + + </div> + + <div class="section psample psample_row2 fullreverse"> + <div class="grid3 firstcol"> + <p class="size14"><span>14.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid4"> + <p class="size16"><span>16.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid5"> + <p class="size18"><span>18.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="black_blend"></div> + + </div> + + <div class="section psample fullreverse psample_row3" id=""> + <div class="grid5 firstcol"> + <p class="size20"><span>20.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + <div class="grid7"> + <p class="size24"><span>24.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + + <div class="black_blend"></div> + + </div> + + <div class="section psample fullreverse psample_row4" id="" style="border-bottom: 20px #000 solid;"> + <div class="grid12 firstcol"> + <p class="size30"><span>30.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + <div class="black_blend"></div> + + </div> + + + + + </div> + + <div id="layout"> + + <div class="section"> + + <div class="grid12 firstcol"> + <h1>Lorem Ipsum Dolor</h1> + <h2>Etiam porta sem malesuada magna mollis euismod</h2> + + <p class="byline">By <a href="#link">Aenean Lacinia</a></p> + </div> + </div> + <div class="section"> + <div class="grid8 firstcol"> + <p class="large">Donec sed odio dui. Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p> + + + <h3>Pellentesque ornare sem</h3> + + <p>Maecenas sed diam eget risus varius blandit sit amet non magna. Maecenas faucibus mollis interdum. Donec ullamcorper nulla non metus auctor fringilla. Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam id dolor id nibh ultricies vehicula ut id elit. </p> + + <p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. </p> + + <p>Nulla vitae elit libero, a pharetra augue. Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Aenean lacinia bibendum nulla sed consectetur. </p> + + <p>Nullam quis risus eget urna mollis ornare vel eu leo. Nullam quis risus eget urna mollis ornare vel eu leo. Maecenas sed diam eget risus varius blandit sit amet non magna. Donec ullamcorper nulla non metus auctor fringilla. </p> + + <h3>Cras mattis consectetur</h3> + + <p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Aenean lacinia bibendum nulla sed consectetur. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Cras mattis consectetur purus sit amet fermentum. </p> + + <p>Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam quis risus eget urna mollis ornare vel eu leo. Cras mattis consectetur purus sit amet fermentum.</p> + </div> + + <div class="grid4 sidebar"> + + <div class="box reverse"> + <p class="last">Nullam quis risus eget urna mollis ornare vel eu leo. Donec ullamcorper nulla non metus auctor fringilla. Cras mattis consectetur purus sit amet fermentum. Sed posuere consectetur est at lobortis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. </p> + </div> + + <p class="caption">Maecenas sed diam eget risus varius.</p> + + <p>Vestibulum id ligula porta felis euismod semper. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Vestibulum id ligula porta felis euismod semper. Sed posuere consectetur est at lobortis. Maecenas sed diam eget risus varius blandit sit amet non magna. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p> + + + + <p>Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Aenean lacinia bibendum nulla sed consectetur. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Aenean lacinia bibendum nulla sed consectetur. Nullam quis risus eget urna mollis ornare vel eu leo. </p> + + <p>Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Donec ullamcorper nulla non metus auctor fringilla. Maecenas faucibus mollis interdum. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p> + + </div> + </div> + + </div> + + + + + + + <div id="glyphs"> + <div class="section"> + <div class="grid12 firstcol"> + + <h1>Language Support</h1> + <p>The subset of Spectral ExtraLight in this kit supports the following languages:<br /> + + Albanian, Basque, Breton, Chamorro, Danish, Dutch, English, Faroese, Finnish, French, Frisian, Galician, German, Icelandic, Italian, Malagasy, Norwegian, Portuguese, Spanish, Alsatian, Aragonese, Arapaho, Arrernte, Asturian, Aymara, Bislama, Cebuano, Corsican, Fijian, French_creole, Genoese, Gilbertese, Greenlandic, Haitian_creole, Hiligaynon, Hmong, Hopi, Ibanag, Iloko_ilokano, Indonesian, Interglossa_glosa, Interlingua, Irish_gaelic, Jerriais, Lojban, Lombard, Luxembourgeois, Manx, Mohawk, Norfolk_pitcairnese, Occitan, Oromo, Pangasinan, Papiamento, Piedmontese, Potawatomi, Rhaeto-romance, Romansh, Rotokas, Sami_lule, Samoan, Sardinian, Scots_gaelic, Seychelles_creole, Shona, Sicilian, Somali, Southern_ndebele, Swahili, Swati_swazi, Tagalog_filipino_pilipino, Tetum, Tok_pisin, Uyghur_latinized, Volapuk, Walloon, Warlpiri, Xhosa, Yapese, Zulu, Latinbasic, Ubasic, Demo </p> + <h1>Glyph Chart</h1> + <p>The subset of Spectral ExtraLight in this kit includes all the glyphs listed below. Unicode entities are included above each glyph to help you insert individual characters into your layout.</p> + <div id="glyph_chart"> + + <div><p>&#32;</p> </div> + <div><p>&#33;</p>!</div> + <div><p>&#34;</p>"</div> + <div><p>&#35;</p>#</div> + <div><p>&#36;</p>$</div> + <div><p>&#37;</p>%</div> + <div><p>&#38;</p>&</div> + <div><p>&#39;</p>'</div> + <div><p>&#40;</p>(</div> + <div><p>&#41;</p>)</div> + <div><p>&#42;</p>*</div> + <div><p>&#43;</p>+</div> + <div><p>&#44;</p>,</div> + <div><p>&#45;</p>-</div> + <div><p>&#46;</p>.</div> + <div><p>&#47;</p>/</div> + <div><p>&#48;</p>0</div> + <div><p>&#49;</p>1</div> + <div><p>&#50;</p>2</div> + <div><p>&#51;</p>3</div> + <div><p>&#52;</p>4</div> + <div><p>&#53;</p>5</div> + <div><p>&#54;</p>6</div> + <div><p>&#55;</p>7</div> + <div><p>&#56;</p>8</div> + <div><p>&#57;</p>9</div> + <div><p>&#58;</p>:</div> + <div><p>&#59;</p>;</div> + <div><p>&#60;</p><</div> + <div><p>&#61;</p>=</div> + <div><p>&#62;</p>></div> + <div><p>&#63;</p>?</div> + <div><p>&#64;</p>@</div> + <div><p>&#65;</p>A</div> + <div><p>&#66;</p>B</div> + <div><p>&#67;</p>C</div> + <div><p>&#68;</p>D</div> + <div><p>&#69;</p>E</div> + <div><p>&#70;</p>F</div> + <div><p>&#71;</p>G</div> + <div><p>&#72;</p>H</div> + <div><p>&#73;</p>I</div> + <div><p>&#74;</p>J</div> + <div><p>&#75;</p>K</div> + <div><p>&#76;</p>L</div> + <div><p>&#77;</p>M</div> + <div><p>&#78;</p>N</div> + <div><p>&#79;</p>O</div> + <div><p>&#80;</p>P</div> + <div><p>&#81;</p>Q</div> + <div><p>&#82;</p>R</div> + <div><p>&#83;</p>S</div> + <div><p>&#84;</p>T</div> + <div><p>&#85;</p>U</div> + <div><p>&#86;</p>V</div> + <div><p>&#87;</p>W</div> + <div><p>&#88;</p>X</div> + <div><p>&#89;</p>Y</div> + <div><p>&#90;</p>Z</div> + <div><p>&#91;</p>[</div> + <div><p>&#92;</p>\</div> + <div><p>&#93;</p>]</div> + <div><p>&#94;</p>^</div> + <div><p>&#95;</p>_</div> + <div><p>&#96;</p>`</div> + <div><p>&#97;</p>a</div> + <div><p>&#98;</p>b</div> + <div><p>&#99;</p>c</div> + <div><p>&#100;</p>d</div> + <div><p>&#101;</p>e</div> + <div><p>&#102;</p>f</div> + <div><p>&#103;</p>g</div> + <div><p>&#104;</p>h</div> + <div><p>&#105;</p>i</div> + <div><p>&#106;</p>j</div> + <div><p>&#107;</p>k</div> + <div><p>&#108;</p>l</div> + <div><p>&#109;</p>m</div> + <div><p>&#110;</p>n</div> + <div><p>&#111;</p>o</div> + <div><p>&#112;</p>p</div> + <div><p>&#113;</p>q</div> + <div><p>&#114;</p>r</div> + <div><p>&#115;</p>s</div> + <div><p>&#116;</p>t</div> + <div><p>&#117;</p>u</div> + <div><p>&#118;</p>v</div> + <div><p>&#119;</p>w</div> + <div><p>&#120;</p>x</div> + <div><p>&#121;</p>y</div> + <div><p>&#122;</p>z</div> + <div><p>&#123;</p>{</div> + <div><p>&#124;</p>|</div> + <div><p>&#125;</p>}</div> + <div><p>&#126;</p>~</div> + <div><p>&#160;</p> </div> + <div><p>&#161;</p>¡</div> + <div><p>&#162;</p>¢</div> + <div><p>&#163;</p>£</div> + <div><p>&#164;</p>¤</div> + <div><p>&#165;</p>¥</div> + <div><p>&#166;</p>¦</div> + <div><p>&#167;</p>§</div> + <div><p>&#168;</p>¨</div> + <div><p>&#169;</p>©</div> + <div><p>&#170;</p>ª</div> + <div><p>&#171;</p>«</div> + <div><p>&#172;</p>¬</div> + <div><p>&#173;</p>­</div> + <div><p>&#174;</p>®</div> + <div><p>&#175;</p>¯</div> + <div><p>&#176;</p>°</div> + <div><p>&#177;</p>±</div> + <div><p>&#178;</p>²</div> + <div><p>&#179;</p>³</div> + <div><p>&#180;</p>´</div> + <div><p>&#181;</p>µ</div> + <div><p>&#182;</p>¶</div> + <div><p>&#183;</p>·</div> + <div><p>&#184;</p>¸</div> + <div><p>&#185;</p>¹</div> + <div><p>&#186;</p>º</div> + <div><p>&#187;</p>»</div> + <div><p>&#188;</p>¼</div> + <div><p>&#189;</p>½</div> + <div><p>&#190;</p>¾</div> + <div><p>&#191;</p>¿</div> + <div><p>&#192;</p>À</div> + <div><p>&#193;</p>Á</div> + <div><p>&#194;</p>Â</div> + <div><p>&#195;</p>Ã</div> + <div><p>&#196;</p>Ä</div> + <div><p>&#197;</p>Å</div> + <div><p>&#198;</p>Æ</div> + <div><p>&#199;</p>Ç</div> + <div><p>&#200;</p>È</div> + <div><p>&#201;</p>É</div> + <div><p>&#202;</p>Ê</div> + <div><p>&#203;</p>Ë</div> + <div><p>&#204;</p>Ì</div> + <div><p>&#205;</p>Í</div> + <div><p>&#206;</p>Î</div> + <div><p>&#207;</p>Ï</div> + <div><p>&#208;</p>Ð</div> + <div><p>&#209;</p>Ñ</div> + <div><p>&#210;</p>Ò</div> + <div><p>&#211;</p>Ó</div> + <div><p>&#212;</p>Ô</div> + <div><p>&#213;</p>Õ</div> + <div><p>&#214;</p>Ö</div> + <div><p>&#215;</p>×</div> + <div><p>&#216;</p>Ø</div> + <div><p>&#217;</p>Ù</div> + <div><p>&#218;</p>Ú</div> + <div><p>&#219;</p>Û</div> + <div><p>&#220;</p>Ü</div> + <div><p>&#221;</p>Ý</div> + <div><p>&#222;</p>Þ</div> + <div><p>&#223;</p>ß</div> + <div><p>&#224;</p>à</div> + <div><p>&#225;</p>á</div> + <div><p>&#226;</p>â</div> + <div><p>&#227;</p>ã</div> + <div><p>&#228;</p>ä</div> + <div><p>&#229;</p>å</div> + <div><p>&#230;</p>æ</div> + <div><p>&#231;</p>ç</div> + <div><p>&#232;</p>è</div> + <div><p>&#233;</p>é</div> + <div><p>&#234;</p>ê</div> + <div><p>&#235;</p>ë</div> + <div><p>&#236;</p>ì</div> + <div><p>&#237;</p>í</div> + <div><p>&#238;</p>î</div> + <div><p>&#239;</p>ï</div> + <div><p>&#240;</p>ð</div> + <div><p>&#241;</p>ñ</div> + <div><p>&#242;</p>ò</div> + <div><p>&#243;</p>ó</div> + <div><p>&#244;</p>ô</div> + <div><p>&#245;</p>õ</div> + <div><p>&#246;</p>ö</div> + <div><p>&#247;</p>÷</div> + <div><p>&#248;</p>ø</div> + <div><p>&#249;</p>ù</div> + <div><p>&#250;</p>ú</div> + <div><p>&#251;</p>û</div> + <div><p>&#252;</p>ü</div> + <div><p>&#253;</p>ý</div> + <div><p>&#254;</p>þ</div> + <div><p>&#255;</p>ÿ</div> + <div><p>&#338;</p>Œ</div> + <div><p>&#339;</p>œ</div> + <div><p>&#376;</p>Ÿ</div> + <div><p>&#710;</p>ˆ</div> + <div><p>&#732;</p>˜</div> + <div><p>&#8192;</p> </div> + <div><p>&#8193;</p> </div> + <div><p>&#8194;</p> </div> + <div><p>&#8195;</p> </div> + <div><p>&#8196;</p> </div> + <div><p>&#8197;</p> </div> + <div><p>&#8198;</p> </div> + <div><p>&#8199;</p> </div> + <div><p>&#8200;</p> </div> + <div><p>&#8201;</p> </div> + <div><p>&#8202;</p> </div> + <div><p>&#8208;</p>‐</div> + <div><p>&#8209;</p>‑</div> + <div><p>&#8210;</p>‒</div> + <div><p>&#8211;</p>–</div> + <div><p>&#8212;</p>—</div> + <div><p>&#8216;</p>‘</div> + <div><p>&#8217;</p>’</div> + <div><p>&#8218;</p>‚</div> + <div><p>&#8220;</p>“</div> + <div><p>&#8221;</p>”</div> + <div><p>&#8222;</p>„</div> + <div><p>&#8226;</p>•</div> + <div><p>&#8230;</p>…</div> + <div><p>&#8239;</p> </div> + <div><p>&#8249;</p>‹</div> + <div><p>&#8250;</p>›</div> + <div><p>&#8287;</p> </div> + <div><p>&#8364;</p>€</div> + <div><p>&#8482;</p>™</div> + <div><p>&#9724;</p>◼</div> + <div><p>&#64257;</p>fi</div> + <div><p>&#64258;</p>fl</div> + <div><p>&#64259;</p>ffi</div> + <div><p>&#64260;</p>ffl</div> + </div> + </div> + + + </div> + </div> + + + <div id="specs"> + + </div> + + <div id="installing"> + <div class="section"> + <div class="grid7 firstcol"> + <h1>Installing Webfonts</h1> + + <p>Webfonts are supported by all major browser platforms but not all in the same way. There are currently four different font formats that must be included in order to target all browsers. This includes TTF, WOFF, EOT and SVG.</p> + + <h2>1. Upload your webfonts</h2> + <p>You must upload your webfont kit to your website. They should be in or near the same directory as your CSS files.</p> + + <h2>2. Include the webfont stylesheet</h2> + <p>A special CSS @font-face declaration helps the various browsers select the appropriate font it needs without causing you a bunch of headaches. Learn more about this syntax by reading the <a href="https://www.fontspring.com/blog/further-hardening-of-the-bulletproof-syntax">Fontspring blog post</a> about it. The code for it is as follows:</p> + + +<code> +@font-face{ + font-family: 'MyWebFont'; + src: url('WebFont.eot'); + src: url('WebFont.eot?#iefix') format('embedded-opentype'), + url('WebFont.woff') format('woff'), + url('WebFont.ttf') format('truetype'), + url('WebFont.svg#webfont') format('svg'); +} +</code> + + <p>We've already gone ahead and generated the code for you. All you have to do is link to the stylesheet in your HTML, like this:</p> + <code><link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8" /></code> + + <h2>3. Modify your own stylesheet</h2> + <p>To take advantage of your new fonts, you must tell your stylesheet to use them. Look at the original @font-face declaration above and find the property called "font-family." The name linked there will be what you use to reference the font. Prepend that webfont name to the font stack in the "font-family" property, inside the selector you want to change. For example:</p> +<code>p { font-family: 'WebFont', Arial, sans-serif; }</code> + +<h2>4. Test</h2> +<p>Getting webfonts to work cross-browser <em>can</em> be tricky. Use the information in the sidebar to help you if you find that fonts aren't loading in a particular browser.</p> + </div> + + <div class="grid5 sidebar"> + <div class="box"> + <h2>Troubleshooting<br />Font-Face Problems</h2> + <p>Having trouble getting your webfonts to load in your new website? Here are some tips to sort out what might be the problem.</p> + + <h3>Fonts not showing in any browser</h3> + + <p>This sounds like you need to work on the plumbing. You either did not upload the fonts to the correct directory, or you did not link the fonts properly in the CSS. If you've confirmed that all this is correct and you still have a problem, take a look at your .htaccess file and see if requests are getting intercepted.</p> + + <h3>Fonts not loading in iPhone or iPad</h3> + + <p>The most common problem here is that you are serving the fonts from an IIS server. IIS refuses to serve files that have unknown MIME types. If that is the case, you must set the MIME type for SVG to "image/svg+xml" in the server settings. Follow these instructions from Microsoft if you need help.</p> + + <h3>Fonts not loading in Firefox</h3> + + <p>The primary reason for this failure? You are still using a version Firefox older than 3.5. So upgrade already! If that isn't it, then you are very likely serving fonts from a different domain. Firefox requires that all font assets be served from the same domain. Lastly it is possible that you need to add WOFF to your list of MIME types (if you are serving via IIS.)</p> + + <h3>Fonts not loading in IE</h3> + + <p>Are you looking at Internet Explorer on an actual Windows machine or are you cheating by using a service like Adobe BrowserLab? Many of these screenshot services do not render @font-face for IE. Best to test it on a real machine.</p> + + <h3>Fonts not loading in IE9</h3> + + <p>IE9, like Firefox, requires that fonts be served from the same domain as the website. Make sure that is the case.</p> + </div> + </div> + </div> + + </div> + + </div> + <div id="footer"> + <p>©2010-2017 Font Squirrel. All rights reserved.</p> + </div> +</div> +</body> +</html> diff --git a/test/samples/aurorae/fonts/spectral/spectral-extralight-webfont.ttf b/test/samples/aurorae/fonts/spectral/spectral-extralight-webfont.ttf new file mode 100755 index 0000000000000000000000000000000000000000..68e8ad3ab935130f26cf38085a2da27b98147c9d Binary files /dev/null and b/test/samples/aurorae/fonts/spectral/spectral-extralight-webfont.ttf differ diff --git a/test/samples/aurorae/fonts/spectral/spectral-extralight-webfont.woff b/test/samples/aurorae/fonts/spectral/spectral-extralight-webfont.woff new file mode 100755 index 0000000000000000000000000000000000000000..ce562d5079691e65784faa5700da309339f2f5f6 Binary files /dev/null and b/test/samples/aurorae/fonts/spectral/spectral-extralight-webfont.woff differ diff --git a/test/samples/aurorae/fonts/spectral/spectral-extralight-webfont.woff2 b/test/samples/aurorae/fonts/spectral/spectral-extralight-webfont.woff2 new file mode 100755 index 0000000000000000000000000000000000000000..8cf95e222050978320f9184b88d0ee1b5a095299 Binary files /dev/null and b/test/samples/aurorae/fonts/spectral/spectral-extralight-webfont.woff2 differ diff --git a/test/samples/aurorae/fonts/spectral/spectral-extralightitalic-demo.html b/test/samples/aurorae/fonts/spectral/spectral-extralightitalic-demo.html new file mode 100755 index 0000000000000000000000000000000000000000..1032a2010f9b8d1b1a58d58d50c6dbd1e275bf17 --- /dev/null +++ b/test/samples/aurorae/fonts/spectral/spectral-extralightitalic-demo.html @@ -0,0 +1,621 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> + +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> +<head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> + <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js" type="text/javascript" charset="utf-8"></script> + <script type="text/javascript"> + (function($){$.fn.easyTabs=function(option){var param=jQuery.extend({fadeSpeed:"fast",defaultContent:1,activeClass:'active'},option);$(this).each(function(){var thisId="#"+this.id;if(param.defaultContent==''){param.defaultContent=1;} + if(typeof param.defaultContent=="number") + {var defaultTab=$(thisId+" .tabs li:eq("+(param.defaultContent-1)+") a").attr('href').substr(1);}else{var defaultTab=param.defaultContent;} + $(thisId+" .tabs li a").each(function(){var tabToHide=$(this).attr('href').substr(1);$("#"+tabToHide).addClass('easytabs-tab-content');});hideAll();changeContent(defaultTab);function hideAll(){$(thisId+" .easytabs-tab-content").hide();} + function changeContent(tabId){hideAll();$(thisId+" .tabs li").removeClass(param.activeClass);$(thisId+" .tabs li a[href=#"+tabId+"]").closest('li').addClass(param.activeClass);if(param.fadeSpeed!="none") + {$(thisId+" #"+tabId).fadeIn(param.fadeSpeed);}else{$(thisId+" #"+tabId).show();}} + $(thisId+" .tabs li").click(function(){var tabId=$(this).find('a').attr('href').substr(1);changeContent(tabId);return false;});});}})(jQuery); + </script> + <link rel="stylesheet" href="specimen_files/specimen_stylesheet.css" type="text/css" charset="utf-8" /> + <link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8" /> + + <style type="text/css"> + body{ + font-family: 'spectralextralight_italic'; + } + </style> + + <title>Spectral ExtraLight Italic Specimen</title> + + + <script type="text/javascript" charset="utf-8"> + $(document).ready(function() { + $('#container').easyTabs({defaultContent:1}); + }); + </script> +</head> + +<body> +<div id="container"> + <div id="header"> + Spectral ExtraLight Italic </div> + <ul class="tabs"> + <li><a href="#specimen">Specimen</a></li> + <li><a href="#layout">Sample Layout</a></li> + <li><a href="#glyphs">Glyphs & Languages</a></li> + <li><a href="#installing">Installing Webfonts</a></li> + + </ul> + + <div id="main_content"> + + + <div id="specimen"> + + <div class="section"> + <div class="grid12 firstcol"> + <div class="huge">AaBb</div> + </div> + </div> + + <div class="section"> + <div class="glyph_range">A​B​C​D​E​F​G​H​I​J​K​L​M​N​O​P​Q​R​S​T​U​V​W​X​Y​Z​a​b​c​d​e​f​g​h​i​j​k​l​m​n​o​p​q​r​s​t​u​v​w​x​y​z​1​2​3​4​5​6​7​8​9​0​&​.​,​?​!​@​(​)​#​$​%​*​+​-​=​:​;</div> + </div> + <div class="section"> + <div class="grid12 firstcol"> + <table class="sample_table"> + <tr><td>10</td><td class="size10">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>11</td><td class="size11">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>12</td><td class="size12">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>13</td><td class="size13">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>14</td><td class="size14">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>16</td><td class="size16">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>18</td><td class="size18">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>20</td><td class="size20">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>24</td><td class="size24">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>30</td><td class="size30">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>36</td><td class="size36">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>48</td><td class="size48">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>60</td><td class="size60">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>72</td><td class="size72">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>90</td><td class="size90">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + </table> + + </div> + + </div> + + + + <div class="section" id="bodycomparison"> + + + <div id="xheight"> + <div class="fontbody">◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼body</div><div class="arialbody">body</div><div class="verdanabody">body</div><div class="georgiabody">body</div></div> + <div class="fontbody" style="z-index:1"> + body<span>Spectral ExtraLight Italic</span> + </div> + <div class="arialbody" style="z-index:1"> + body<span>Arial</span> + </div> + <div class="verdanabody" style="z-index:1"> + body<span>Verdana</span> + </div> + <div class="georgiabody" style="z-index:1"> + body<span>Georgia</span> + </div> + + + + </div> + + + <div class="section psample psample_row1" id=""> + + <div class="grid2 firstcol"> + <p class="size10"><span>10.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid3"> + <p class="size11"><span>11.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid3"> + <p class="size12"><span>12.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid4"> + <p class="size13"><span>13.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="white_blend"></div> + + </div> + <div class="section psample psample_row2" id=""> + <div class="grid3 firstcol"> + <p class="size14"><span>14.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid4"> + <p class="size16"><span>16.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid5"> + <p class="size18"><span>18.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + + <div class="white_blend"></div> + + </div> + + <div class="section psample psample_row3" id=""> + <div class="grid5 firstcol"> + <p class="size20"><span>20.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + <div class="grid7"> + <p class="size24"><span>24.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + + <div class="white_blend"></div> + + </div> + + <div class="section psample psample_row4" id=""> + <div class="grid12 firstcol"> + <p class="size30"><span>30.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + <div class="white_blend"></div> + + </div> + + + + <div class="section psample psample_row1 fullreverse"> + <div class="grid2 firstcol"> + <p class="size10"><span>10.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid3"> + <p class="size11"><span>11.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid3"> + <p class="size12"><span>12.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid4"> + <p class="size13"><span>13.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="black_blend"></div> + + </div> + + <div class="section psample psample_row2 fullreverse"> + <div class="grid3 firstcol"> + <p class="size14"><span>14.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid4"> + <p class="size16"><span>16.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid5"> + <p class="size18"><span>18.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="black_blend"></div> + + </div> + + <div class="section psample fullreverse psample_row3" id=""> + <div class="grid5 firstcol"> + <p class="size20"><span>20.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + <div class="grid7"> + <p class="size24"><span>24.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + + <div class="black_blend"></div> + + </div> + + <div class="section psample fullreverse psample_row4" id="" style="border-bottom: 20px #000 solid;"> + <div class="grid12 firstcol"> + <p class="size30"><span>30.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + <div class="black_blend"></div> + + </div> + + + + + </div> + + <div id="layout"> + + <div class="section"> + + <div class="grid12 firstcol"> + <h1>Lorem Ipsum Dolor</h1> + <h2>Etiam porta sem malesuada magna mollis euismod</h2> + + <p class="byline">By <a href="#link">Aenean Lacinia</a></p> + </div> + </div> + <div class="section"> + <div class="grid8 firstcol"> + <p class="large">Donec sed odio dui. Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p> + + + <h3>Pellentesque ornare sem</h3> + + <p>Maecenas sed diam eget risus varius blandit sit amet non magna. Maecenas faucibus mollis interdum. Donec ullamcorper nulla non metus auctor fringilla. Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam id dolor id nibh ultricies vehicula ut id elit. </p> + + <p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. </p> + + <p>Nulla vitae elit libero, a pharetra augue. Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Aenean lacinia bibendum nulla sed consectetur. </p> + + <p>Nullam quis risus eget urna mollis ornare vel eu leo. Nullam quis risus eget urna mollis ornare vel eu leo. Maecenas sed diam eget risus varius blandit sit amet non magna. Donec ullamcorper nulla non metus auctor fringilla. </p> + + <h3>Cras mattis consectetur</h3> + + <p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Aenean lacinia bibendum nulla sed consectetur. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Cras mattis consectetur purus sit amet fermentum. </p> + + <p>Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam quis risus eget urna mollis ornare vel eu leo. Cras mattis consectetur purus sit amet fermentum.</p> + </div> + + <div class="grid4 sidebar"> + + <div class="box reverse"> + <p class="last">Nullam quis risus eget urna mollis ornare vel eu leo. Donec ullamcorper nulla non metus auctor fringilla. Cras mattis consectetur purus sit amet fermentum. Sed posuere consectetur est at lobortis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. </p> + </div> + + <p class="caption">Maecenas sed diam eget risus varius.</p> + + <p>Vestibulum id ligula porta felis euismod semper. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Vestibulum id ligula porta felis euismod semper. Sed posuere consectetur est at lobortis. Maecenas sed diam eget risus varius blandit sit amet non magna. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p> + + + + <p>Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Aenean lacinia bibendum nulla sed consectetur. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Aenean lacinia bibendum nulla sed consectetur. Nullam quis risus eget urna mollis ornare vel eu leo. </p> + + <p>Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Donec ullamcorper nulla non metus auctor fringilla. Maecenas faucibus mollis interdum. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p> + + </div> + </div> + + </div> + + + + + + + <div id="glyphs"> + <div class="section"> + <div class="grid12 firstcol"> + + <h1>Language Support</h1> + <p>The subset of Spectral ExtraLight Italic in this kit supports the following languages:<br /> + + Albanian, Basque, Breton, Chamorro, Danish, Dutch, English, Faroese, Finnish, French, Frisian, Galician, German, Icelandic, Italian, Malagasy, Norwegian, Portuguese, Spanish, Alsatian, Aragonese, Arapaho, Arrernte, Asturian, Aymara, Bislama, Cebuano, Corsican, Fijian, French_creole, Genoese, Gilbertese, Greenlandic, Haitian_creole, Hiligaynon, Hmong, Hopi, Ibanag, Iloko_ilokano, Indonesian, Interglossa_glosa, Interlingua, Irish_gaelic, Jerriais, Lojban, Lombard, Luxembourgeois, Manx, Mohawk, Norfolk_pitcairnese, Occitan, Oromo, Pangasinan, Papiamento, Piedmontese, Potawatomi, Rhaeto-romance, Romansh, Rotokas, Sami_lule, Samoan, Sardinian, Scots_gaelic, Seychelles_creole, Shona, Sicilian, Somali, Southern_ndebele, Swahili, Swati_swazi, Tagalog_filipino_pilipino, Tetum, Tok_pisin, Uyghur_latinized, Volapuk, Walloon, Warlpiri, Xhosa, Yapese, Zulu, Latinbasic, Ubasic, Demo </p> + <h1>Glyph Chart</h1> + <p>The subset of Spectral ExtraLight Italic in this kit includes all the glyphs listed below. Unicode entities are included above each glyph to help you insert individual characters into your layout.</p> + <div id="glyph_chart"> + + <div><p>&#32;</p> </div> + <div><p>&#33;</p>!</div> + <div><p>&#34;</p>"</div> + <div><p>&#35;</p>#</div> + <div><p>&#36;</p>$</div> + <div><p>&#37;</p>%</div> + <div><p>&#38;</p>&</div> + <div><p>&#39;</p>'</div> + <div><p>&#40;</p>(</div> + <div><p>&#41;</p>)</div> + <div><p>&#42;</p>*</div> + <div><p>&#43;</p>+</div> + <div><p>&#44;</p>,</div> + <div><p>&#45;</p>-</div> + <div><p>&#46;</p>.</div> + <div><p>&#47;</p>/</div> + <div><p>&#48;</p>0</div> + <div><p>&#49;</p>1</div> + <div><p>&#50;</p>2</div> + <div><p>&#51;</p>3</div> + <div><p>&#52;</p>4</div> + <div><p>&#53;</p>5</div> + <div><p>&#54;</p>6</div> + <div><p>&#55;</p>7</div> + <div><p>&#56;</p>8</div> + <div><p>&#57;</p>9</div> + <div><p>&#58;</p>:</div> + <div><p>&#59;</p>;</div> + <div><p>&#60;</p><</div> + <div><p>&#61;</p>=</div> + <div><p>&#62;</p>></div> + <div><p>&#63;</p>?</div> + <div><p>&#64;</p>@</div> + <div><p>&#65;</p>A</div> + <div><p>&#66;</p>B</div> + <div><p>&#67;</p>C</div> + <div><p>&#68;</p>D</div> + <div><p>&#69;</p>E</div> + <div><p>&#70;</p>F</div> + <div><p>&#71;</p>G</div> + <div><p>&#72;</p>H</div> + <div><p>&#73;</p>I</div> + <div><p>&#74;</p>J</div> + <div><p>&#75;</p>K</div> + <div><p>&#76;</p>L</div> + <div><p>&#77;</p>M</div> + <div><p>&#78;</p>N</div> + <div><p>&#79;</p>O</div> + <div><p>&#80;</p>P</div> + <div><p>&#81;</p>Q</div> + <div><p>&#82;</p>R</div> + <div><p>&#83;</p>S</div> + <div><p>&#84;</p>T</div> + <div><p>&#85;</p>U</div> + <div><p>&#86;</p>V</div> + <div><p>&#87;</p>W</div> + <div><p>&#88;</p>X</div> + <div><p>&#89;</p>Y</div> + <div><p>&#90;</p>Z</div> + <div><p>&#91;</p>[</div> + <div><p>&#92;</p>\</div> + <div><p>&#93;</p>]</div> + <div><p>&#94;</p>^</div> + <div><p>&#95;</p>_</div> + <div><p>&#96;</p>`</div> + <div><p>&#97;</p>a</div> + <div><p>&#98;</p>b</div> + <div><p>&#99;</p>c</div> + <div><p>&#100;</p>d</div> + <div><p>&#101;</p>e</div> + <div><p>&#102;</p>f</div> + <div><p>&#103;</p>g</div> + <div><p>&#104;</p>h</div> + <div><p>&#105;</p>i</div> + <div><p>&#106;</p>j</div> + <div><p>&#107;</p>k</div> + <div><p>&#108;</p>l</div> + <div><p>&#109;</p>m</div> + <div><p>&#110;</p>n</div> + <div><p>&#111;</p>o</div> + <div><p>&#112;</p>p</div> + <div><p>&#113;</p>q</div> + <div><p>&#114;</p>r</div> + <div><p>&#115;</p>s</div> + <div><p>&#116;</p>t</div> + <div><p>&#117;</p>u</div> + <div><p>&#118;</p>v</div> + <div><p>&#119;</p>w</div> + <div><p>&#120;</p>x</div> + <div><p>&#121;</p>y</div> + <div><p>&#122;</p>z</div> + <div><p>&#123;</p>{</div> + <div><p>&#124;</p>|</div> + <div><p>&#125;</p>}</div> + <div><p>&#126;</p>~</div> + <div><p>&#160;</p> </div> + <div><p>&#161;</p>¡</div> + <div><p>&#162;</p>¢</div> + <div><p>&#163;</p>£</div> + <div><p>&#164;</p>¤</div> + <div><p>&#165;</p>¥</div> + <div><p>&#166;</p>¦</div> + <div><p>&#167;</p>§</div> + <div><p>&#168;</p>¨</div> + <div><p>&#169;</p>©</div> + <div><p>&#170;</p>ª</div> + <div><p>&#171;</p>«</div> + <div><p>&#172;</p>¬</div> + <div><p>&#173;</p>­</div> + <div><p>&#174;</p>®</div> + <div><p>&#175;</p>¯</div> + <div><p>&#176;</p>°</div> + <div><p>&#177;</p>±</div> + <div><p>&#178;</p>²</div> + <div><p>&#179;</p>³</div> + <div><p>&#180;</p>´</div> + <div><p>&#181;</p>µ</div> + <div><p>&#182;</p>¶</div> + <div><p>&#183;</p>·</div> + <div><p>&#184;</p>¸</div> + <div><p>&#185;</p>¹</div> + <div><p>&#186;</p>º</div> + <div><p>&#187;</p>»</div> + <div><p>&#188;</p>¼</div> + <div><p>&#189;</p>½</div> + <div><p>&#190;</p>¾</div> + <div><p>&#191;</p>¿</div> + <div><p>&#192;</p>À</div> + <div><p>&#193;</p>Á</div> + <div><p>&#194;</p>Â</div> + <div><p>&#195;</p>Ã</div> + <div><p>&#196;</p>Ä</div> + <div><p>&#197;</p>Å</div> + <div><p>&#198;</p>Æ</div> + <div><p>&#199;</p>Ç</div> + <div><p>&#200;</p>È</div> + <div><p>&#201;</p>É</div> + <div><p>&#202;</p>Ê</div> + <div><p>&#203;</p>Ë</div> + <div><p>&#204;</p>Ì</div> + <div><p>&#205;</p>Í</div> + <div><p>&#206;</p>Î</div> + <div><p>&#207;</p>Ï</div> + <div><p>&#208;</p>Ð</div> + <div><p>&#209;</p>Ñ</div> + <div><p>&#210;</p>Ò</div> + <div><p>&#211;</p>Ó</div> + <div><p>&#212;</p>Ô</div> + <div><p>&#213;</p>Õ</div> + <div><p>&#214;</p>Ö</div> + <div><p>&#215;</p>×</div> + <div><p>&#216;</p>Ø</div> + <div><p>&#217;</p>Ù</div> + <div><p>&#218;</p>Ú</div> + <div><p>&#219;</p>Û</div> + <div><p>&#220;</p>Ü</div> + <div><p>&#221;</p>Ý</div> + <div><p>&#222;</p>Þ</div> + <div><p>&#223;</p>ß</div> + <div><p>&#224;</p>à</div> + <div><p>&#225;</p>á</div> + <div><p>&#226;</p>â</div> + <div><p>&#227;</p>ã</div> + <div><p>&#228;</p>ä</div> + <div><p>&#229;</p>å</div> + <div><p>&#230;</p>æ</div> + <div><p>&#231;</p>ç</div> + <div><p>&#232;</p>è</div> + <div><p>&#233;</p>é</div> + <div><p>&#234;</p>ê</div> + <div><p>&#235;</p>ë</div> + <div><p>&#236;</p>ì</div> + <div><p>&#237;</p>í</div> + <div><p>&#238;</p>î</div> + <div><p>&#239;</p>ï</div> + <div><p>&#240;</p>ð</div> + <div><p>&#241;</p>ñ</div> + <div><p>&#242;</p>ò</div> + <div><p>&#243;</p>ó</div> + <div><p>&#244;</p>ô</div> + <div><p>&#245;</p>õ</div> + <div><p>&#246;</p>ö</div> + <div><p>&#247;</p>÷</div> + <div><p>&#248;</p>ø</div> + <div><p>&#249;</p>ù</div> + <div><p>&#250;</p>ú</div> + <div><p>&#251;</p>û</div> + <div><p>&#252;</p>ü</div> + <div><p>&#253;</p>ý</div> + <div><p>&#254;</p>þ</div> + <div><p>&#255;</p>ÿ</div> + <div><p>&#338;</p>Œ</div> + <div><p>&#339;</p>œ</div> + <div><p>&#376;</p>Ÿ</div> + <div><p>&#710;</p>ˆ</div> + <div><p>&#732;</p>˜</div> + <div><p>&#8192;</p> </div> + <div><p>&#8193;</p> </div> + <div><p>&#8194;</p> </div> + <div><p>&#8195;</p> </div> + <div><p>&#8196;</p> </div> + <div><p>&#8197;</p> </div> + <div><p>&#8198;</p> </div> + <div><p>&#8199;</p> </div> + <div><p>&#8200;</p> </div> + <div><p>&#8201;</p> </div> + <div><p>&#8202;</p> </div> + <div><p>&#8208;</p>‐</div> + <div><p>&#8209;</p>‑</div> + <div><p>&#8210;</p>‒</div> + <div><p>&#8211;</p>–</div> + <div><p>&#8212;</p>—</div> + <div><p>&#8216;</p>‘</div> + <div><p>&#8217;</p>’</div> + <div><p>&#8218;</p>‚</div> + <div><p>&#8220;</p>“</div> + <div><p>&#8221;</p>”</div> + <div><p>&#8222;</p>„</div> + <div><p>&#8226;</p>•</div> + <div><p>&#8230;</p>…</div> + <div><p>&#8239;</p> </div> + <div><p>&#8249;</p>‹</div> + <div><p>&#8250;</p>›</div> + <div><p>&#8287;</p> </div> + <div><p>&#8364;</p>€</div> + <div><p>&#8482;</p>™</div> + <div><p>&#9724;</p>◼</div> + <div><p>&#64257;</p>fi</div> + <div><p>&#64258;</p>fl</div> + <div><p>&#64259;</p>ffi</div> + <div><p>&#64260;</p>ffl</div> + </div> + </div> + + + </div> + </div> + + + <div id="specs"> + + </div> + + <div id="installing"> + <div class="section"> + <div class="grid7 firstcol"> + <h1>Installing Webfonts</h1> + + <p>Webfonts are supported by all major browser platforms but not all in the same way. There are currently four different font formats that must be included in order to target all browsers. This includes TTF, WOFF, EOT and SVG.</p> + + <h2>1. Upload your webfonts</h2> + <p>You must upload your webfont kit to your website. They should be in or near the same directory as your CSS files.</p> + + <h2>2. Include the webfont stylesheet</h2> + <p>A special CSS @font-face declaration helps the various browsers select the appropriate font it needs without causing you a bunch of headaches. Learn more about this syntax by reading the <a href="https://www.fontspring.com/blog/further-hardening-of-the-bulletproof-syntax">Fontspring blog post</a> about it. The code for it is as follows:</p> + + +<code> +@font-face{ + font-family: 'MyWebFont'; + src: url('WebFont.eot'); + src: url('WebFont.eot?#iefix') format('embedded-opentype'), + url('WebFont.woff') format('woff'), + url('WebFont.ttf') format('truetype'), + url('WebFont.svg#webfont') format('svg'); +} +</code> + + <p>We've already gone ahead and generated the code for you. All you have to do is link to the stylesheet in your HTML, like this:</p> + <code><link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8" /></code> + + <h2>3. Modify your own stylesheet</h2> + <p>To take advantage of your new fonts, you must tell your stylesheet to use them. Look at the original @font-face declaration above and find the property called "font-family." The name linked there will be what you use to reference the font. Prepend that webfont name to the font stack in the "font-family" property, inside the selector you want to change. For example:</p> +<code>p { font-family: 'WebFont', Arial, sans-serif; }</code> + +<h2>4. Test</h2> +<p>Getting webfonts to work cross-browser <em>can</em> be tricky. Use the information in the sidebar to help you if you find that fonts aren't loading in a particular browser.</p> + </div> + + <div class="grid5 sidebar"> + <div class="box"> + <h2>Troubleshooting<br />Font-Face Problems</h2> + <p>Having trouble getting your webfonts to load in your new website? Here are some tips to sort out what might be the problem.</p> + + <h3>Fonts not showing in any browser</h3> + + <p>This sounds like you need to work on the plumbing. You either did not upload the fonts to the correct directory, or you did not link the fonts properly in the CSS. If you've confirmed that all this is correct and you still have a problem, take a look at your .htaccess file and see if requests are getting intercepted.</p> + + <h3>Fonts not loading in iPhone or iPad</h3> + + <p>The most common problem here is that you are serving the fonts from an IIS server. IIS refuses to serve files that have unknown MIME types. If that is the case, you must set the MIME type for SVG to "image/svg+xml" in the server settings. Follow these instructions from Microsoft if you need help.</p> + + <h3>Fonts not loading in Firefox</h3> + + <p>The primary reason for this failure? You are still using a version Firefox older than 3.5. So upgrade already! If that isn't it, then you are very likely serving fonts from a different domain. Firefox requires that all font assets be served from the same domain. Lastly it is possible that you need to add WOFF to your list of MIME types (if you are serving via IIS.)</p> + + <h3>Fonts not loading in IE</h3> + + <p>Are you looking at Internet Explorer on an actual Windows machine or are you cheating by using a service like Adobe BrowserLab? Many of these screenshot services do not render @font-face for IE. Best to test it on a real machine.</p> + + <h3>Fonts not loading in IE9</h3> + + <p>IE9, like Firefox, requires that fonts be served from the same domain as the website. Make sure that is the case.</p> + </div> + </div> + </div> + + </div> + + </div> + <div id="footer"> + <p>©2010-2017 Font Squirrel. All rights reserved.</p> + </div> +</div> +</body> +</html> diff --git a/test/samples/aurorae/fonts/spectral/spectral-extralightitalic-webfont.ttf b/test/samples/aurorae/fonts/spectral/spectral-extralightitalic-webfont.ttf new file mode 100755 index 0000000000000000000000000000000000000000..3fedd67c8ae20b7caccdedb8f5d9d0331e1ff212 Binary files /dev/null and b/test/samples/aurorae/fonts/spectral/spectral-extralightitalic-webfont.ttf differ diff --git a/test/samples/aurorae/fonts/spectral/spectral-extralightitalic-webfont.woff b/test/samples/aurorae/fonts/spectral/spectral-extralightitalic-webfont.woff new file mode 100755 index 0000000000000000000000000000000000000000..3b33d78abcc6f27c182ba1278524a02aa5144d5f Binary files /dev/null and b/test/samples/aurorae/fonts/spectral/spectral-extralightitalic-webfont.woff differ diff --git a/test/samples/aurorae/fonts/spectral/spectral-extralightitalic-webfont.woff2 b/test/samples/aurorae/fonts/spectral/spectral-extralightitalic-webfont.woff2 new file mode 100755 index 0000000000000000000000000000000000000000..cbe0c0e9bcf1ed97c642ce11123436620d1bc823 Binary files /dev/null and b/test/samples/aurorae/fonts/spectral/spectral-extralightitalic-webfont.woff2 differ diff --git a/test/samples/aurorae/fonts/spectral/spectral-italic-demo.html b/test/samples/aurorae/fonts/spectral/spectral-italic-demo.html new file mode 100755 index 0000000000000000000000000000000000000000..8a3ab9be426c6f7e14cb1ab2b7e3a58297e4cb0c --- /dev/null +++ b/test/samples/aurorae/fonts/spectral/spectral-italic-demo.html @@ -0,0 +1,621 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> + +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> +<head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> + <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js" type="text/javascript" charset="utf-8"></script> + <script type="text/javascript"> + (function($){$.fn.easyTabs=function(option){var param=jQuery.extend({fadeSpeed:"fast",defaultContent:1,activeClass:'active'},option);$(this).each(function(){var thisId="#"+this.id;if(param.defaultContent==''){param.defaultContent=1;} + if(typeof param.defaultContent=="number") + {var defaultTab=$(thisId+" .tabs li:eq("+(param.defaultContent-1)+") a").attr('href').substr(1);}else{var defaultTab=param.defaultContent;} + $(thisId+" .tabs li a").each(function(){var tabToHide=$(this).attr('href').substr(1);$("#"+tabToHide).addClass('easytabs-tab-content');});hideAll();changeContent(defaultTab);function hideAll(){$(thisId+" .easytabs-tab-content").hide();} + function changeContent(tabId){hideAll();$(thisId+" .tabs li").removeClass(param.activeClass);$(thisId+" .tabs li a[href=#"+tabId+"]").closest('li').addClass(param.activeClass);if(param.fadeSpeed!="none") + {$(thisId+" #"+tabId).fadeIn(param.fadeSpeed);}else{$(thisId+" #"+tabId).show();}} + $(thisId+" .tabs li").click(function(){var tabId=$(this).find('a').attr('href').substr(1);changeContent(tabId);return false;});});}})(jQuery); + </script> + <link rel="stylesheet" href="specimen_files/specimen_stylesheet.css" type="text/css" charset="utf-8" /> + <link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8" /> + + <style type="text/css"> + body{ + font-family: 'spectralitalic'; + } + </style> + + <title>Spectral Italic Specimen</title> + + + <script type="text/javascript" charset="utf-8"> + $(document).ready(function() { + $('#container').easyTabs({defaultContent:1}); + }); + </script> +</head> + +<body> +<div id="container"> + <div id="header"> + Spectral Italic </div> + <ul class="tabs"> + <li><a href="#specimen">Specimen</a></li> + <li><a href="#layout">Sample Layout</a></li> + <li><a href="#glyphs">Glyphs & Languages</a></li> + <li><a href="#installing">Installing Webfonts</a></li> + + </ul> + + <div id="main_content"> + + + <div id="specimen"> + + <div class="section"> + <div class="grid12 firstcol"> + <div class="huge">AaBb</div> + </div> + </div> + + <div class="section"> + <div class="glyph_range">A​B​C​D​E​F​G​H​I​J​K​L​M​N​O​P​Q​R​S​T​U​V​W​X​Y​Z​a​b​c​d​e​f​g​h​i​j​k​l​m​n​o​p​q​r​s​t​u​v​w​x​y​z​1​2​3​4​5​6​7​8​9​0​&​.​,​?​!​@​(​)​#​$​%​*​+​-​=​:​;</div> + </div> + <div class="section"> + <div class="grid12 firstcol"> + <table class="sample_table"> + <tr><td>10</td><td class="size10">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>11</td><td class="size11">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>12</td><td class="size12">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>13</td><td class="size13">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>14</td><td class="size14">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>16</td><td class="size16">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>18</td><td class="size18">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>20</td><td class="size20">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>24</td><td class="size24">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>30</td><td class="size30">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>36</td><td class="size36">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>48</td><td class="size48">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>60</td><td class="size60">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>72</td><td class="size72">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>90</td><td class="size90">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + </table> + + </div> + + </div> + + + + <div class="section" id="bodycomparison"> + + + <div id="xheight"> + <div class="fontbody">◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼body</div><div class="arialbody">body</div><div class="verdanabody">body</div><div class="georgiabody">body</div></div> + <div class="fontbody" style="z-index:1"> + body<span>Spectral Italic</span> + </div> + <div class="arialbody" style="z-index:1"> + body<span>Arial</span> + </div> + <div class="verdanabody" style="z-index:1"> + body<span>Verdana</span> + </div> + <div class="georgiabody" style="z-index:1"> + body<span>Georgia</span> + </div> + + + + </div> + + + <div class="section psample psample_row1" id=""> + + <div class="grid2 firstcol"> + <p class="size10"><span>10.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid3"> + <p class="size11"><span>11.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid3"> + <p class="size12"><span>12.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid4"> + <p class="size13"><span>13.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="white_blend"></div> + + </div> + <div class="section psample psample_row2" id=""> + <div class="grid3 firstcol"> + <p class="size14"><span>14.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid4"> + <p class="size16"><span>16.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid5"> + <p class="size18"><span>18.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + + <div class="white_blend"></div> + + </div> + + <div class="section psample psample_row3" id=""> + <div class="grid5 firstcol"> + <p class="size20"><span>20.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + <div class="grid7"> + <p class="size24"><span>24.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + + <div class="white_blend"></div> + + </div> + + <div class="section psample psample_row4" id=""> + <div class="grid12 firstcol"> + <p class="size30"><span>30.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + <div class="white_blend"></div> + + </div> + + + + <div class="section psample psample_row1 fullreverse"> + <div class="grid2 firstcol"> + <p class="size10"><span>10.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid3"> + <p class="size11"><span>11.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid3"> + <p class="size12"><span>12.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid4"> + <p class="size13"><span>13.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="black_blend"></div> + + </div> + + <div class="section psample psample_row2 fullreverse"> + <div class="grid3 firstcol"> + <p class="size14"><span>14.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid4"> + <p class="size16"><span>16.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid5"> + <p class="size18"><span>18.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="black_blend"></div> + + </div> + + <div class="section psample fullreverse psample_row3" id=""> + <div class="grid5 firstcol"> + <p class="size20"><span>20.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + <div class="grid7"> + <p class="size24"><span>24.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + + <div class="black_blend"></div> + + </div> + + <div class="section psample fullreverse psample_row4" id="" style="border-bottom: 20px #000 solid;"> + <div class="grid12 firstcol"> + <p class="size30"><span>30.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + <div class="black_blend"></div> + + </div> + + + + + </div> + + <div id="layout"> + + <div class="section"> + + <div class="grid12 firstcol"> + <h1>Lorem Ipsum Dolor</h1> + <h2>Etiam porta sem malesuada magna mollis euismod</h2> + + <p class="byline">By <a href="#link">Aenean Lacinia</a></p> + </div> + </div> + <div class="section"> + <div class="grid8 firstcol"> + <p class="large">Donec sed odio dui. Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p> + + + <h3>Pellentesque ornare sem</h3> + + <p>Maecenas sed diam eget risus varius blandit sit amet non magna. Maecenas faucibus mollis interdum. Donec ullamcorper nulla non metus auctor fringilla. Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam id dolor id nibh ultricies vehicula ut id elit. </p> + + <p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. </p> + + <p>Nulla vitae elit libero, a pharetra augue. Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Aenean lacinia bibendum nulla sed consectetur. </p> + + <p>Nullam quis risus eget urna mollis ornare vel eu leo. Nullam quis risus eget urna mollis ornare vel eu leo. Maecenas sed diam eget risus varius blandit sit amet non magna. Donec ullamcorper nulla non metus auctor fringilla. </p> + + <h3>Cras mattis consectetur</h3> + + <p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Aenean lacinia bibendum nulla sed consectetur. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Cras mattis consectetur purus sit amet fermentum. </p> + + <p>Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam quis risus eget urna mollis ornare vel eu leo. Cras mattis consectetur purus sit amet fermentum.</p> + </div> + + <div class="grid4 sidebar"> + + <div class="box reverse"> + <p class="last">Nullam quis risus eget urna mollis ornare vel eu leo. Donec ullamcorper nulla non metus auctor fringilla. Cras mattis consectetur purus sit amet fermentum. Sed posuere consectetur est at lobortis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. </p> + </div> + + <p class="caption">Maecenas sed diam eget risus varius.</p> + + <p>Vestibulum id ligula porta felis euismod semper. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Vestibulum id ligula porta felis euismod semper. Sed posuere consectetur est at lobortis. Maecenas sed diam eget risus varius blandit sit amet non magna. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p> + + + + <p>Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Aenean lacinia bibendum nulla sed consectetur. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Aenean lacinia bibendum nulla sed consectetur. Nullam quis risus eget urna mollis ornare vel eu leo. </p> + + <p>Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Donec ullamcorper nulla non metus auctor fringilla. Maecenas faucibus mollis interdum. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p> + + </div> + </div> + + </div> + + + + + + + <div id="glyphs"> + <div class="section"> + <div class="grid12 firstcol"> + + <h1>Language Support</h1> + <p>The subset of Spectral Italic in this kit supports the following languages:<br /> + + Albanian, Basque, Breton, Chamorro, Danish, Dutch, English, Faroese, Finnish, French, Frisian, Galician, German, Icelandic, Italian, Malagasy, Norwegian, Portuguese, Spanish, Alsatian, Aragonese, Arapaho, Arrernte, Asturian, Aymara, Bislama, Cebuano, Corsican, Fijian, French_creole, Genoese, Gilbertese, Greenlandic, Haitian_creole, Hiligaynon, Hmong, Hopi, Ibanag, Iloko_ilokano, Indonesian, Interglossa_glosa, Interlingua, Irish_gaelic, Jerriais, Lojban, Lombard, Luxembourgeois, Manx, Mohawk, Norfolk_pitcairnese, Occitan, Oromo, Pangasinan, Papiamento, Piedmontese, Potawatomi, Rhaeto-romance, Romansh, Rotokas, Sami_lule, Samoan, Sardinian, Scots_gaelic, Seychelles_creole, Shona, Sicilian, Somali, Southern_ndebele, Swahili, Swati_swazi, Tagalog_filipino_pilipino, Tetum, Tok_pisin, Uyghur_latinized, Volapuk, Walloon, Warlpiri, Xhosa, Yapese, Zulu, Latinbasic, Ubasic, Demo </p> + <h1>Glyph Chart</h1> + <p>The subset of Spectral Italic in this kit includes all the glyphs listed below. Unicode entities are included above each glyph to help you insert individual characters into your layout.</p> + <div id="glyph_chart"> + + <div><p>&#32;</p> </div> + <div><p>&#33;</p>!</div> + <div><p>&#34;</p>"</div> + <div><p>&#35;</p>#</div> + <div><p>&#36;</p>$</div> + <div><p>&#37;</p>%</div> + <div><p>&#38;</p>&</div> + <div><p>&#39;</p>'</div> + <div><p>&#40;</p>(</div> + <div><p>&#41;</p>)</div> + <div><p>&#42;</p>*</div> + <div><p>&#43;</p>+</div> + <div><p>&#44;</p>,</div> + <div><p>&#45;</p>-</div> + <div><p>&#46;</p>.</div> + <div><p>&#47;</p>/</div> + <div><p>&#48;</p>0</div> + <div><p>&#49;</p>1</div> + <div><p>&#50;</p>2</div> + <div><p>&#51;</p>3</div> + <div><p>&#52;</p>4</div> + <div><p>&#53;</p>5</div> + <div><p>&#54;</p>6</div> + <div><p>&#55;</p>7</div> + <div><p>&#56;</p>8</div> + <div><p>&#57;</p>9</div> + <div><p>&#58;</p>:</div> + <div><p>&#59;</p>;</div> + <div><p>&#60;</p><</div> + <div><p>&#61;</p>=</div> + <div><p>&#62;</p>></div> + <div><p>&#63;</p>?</div> + <div><p>&#64;</p>@</div> + <div><p>&#65;</p>A</div> + <div><p>&#66;</p>B</div> + <div><p>&#67;</p>C</div> + <div><p>&#68;</p>D</div> + <div><p>&#69;</p>E</div> + <div><p>&#70;</p>F</div> + <div><p>&#71;</p>G</div> + <div><p>&#72;</p>H</div> + <div><p>&#73;</p>I</div> + <div><p>&#74;</p>J</div> + <div><p>&#75;</p>K</div> + <div><p>&#76;</p>L</div> + <div><p>&#77;</p>M</div> + <div><p>&#78;</p>N</div> + <div><p>&#79;</p>O</div> + <div><p>&#80;</p>P</div> + <div><p>&#81;</p>Q</div> + <div><p>&#82;</p>R</div> + <div><p>&#83;</p>S</div> + <div><p>&#84;</p>T</div> + <div><p>&#85;</p>U</div> + <div><p>&#86;</p>V</div> + <div><p>&#87;</p>W</div> + <div><p>&#88;</p>X</div> + <div><p>&#89;</p>Y</div> + <div><p>&#90;</p>Z</div> + <div><p>&#91;</p>[</div> + <div><p>&#92;</p>\</div> + <div><p>&#93;</p>]</div> + <div><p>&#94;</p>^</div> + <div><p>&#95;</p>_</div> + <div><p>&#96;</p>`</div> + <div><p>&#97;</p>a</div> + <div><p>&#98;</p>b</div> + <div><p>&#99;</p>c</div> + <div><p>&#100;</p>d</div> + <div><p>&#101;</p>e</div> + <div><p>&#102;</p>f</div> + <div><p>&#103;</p>g</div> + <div><p>&#104;</p>h</div> + <div><p>&#105;</p>i</div> + <div><p>&#106;</p>j</div> + <div><p>&#107;</p>k</div> + <div><p>&#108;</p>l</div> + <div><p>&#109;</p>m</div> + <div><p>&#110;</p>n</div> + <div><p>&#111;</p>o</div> + <div><p>&#112;</p>p</div> + <div><p>&#113;</p>q</div> + <div><p>&#114;</p>r</div> + <div><p>&#115;</p>s</div> + <div><p>&#116;</p>t</div> + <div><p>&#117;</p>u</div> + <div><p>&#118;</p>v</div> + <div><p>&#119;</p>w</div> + <div><p>&#120;</p>x</div> + <div><p>&#121;</p>y</div> + <div><p>&#122;</p>z</div> + <div><p>&#123;</p>{</div> + <div><p>&#124;</p>|</div> + <div><p>&#125;</p>}</div> + <div><p>&#126;</p>~</div> + <div><p>&#160;</p> </div> + <div><p>&#161;</p>¡</div> + <div><p>&#162;</p>¢</div> + <div><p>&#163;</p>£</div> + <div><p>&#164;</p>¤</div> + <div><p>&#165;</p>¥</div> + <div><p>&#166;</p>¦</div> + <div><p>&#167;</p>§</div> + <div><p>&#168;</p>¨</div> + <div><p>&#169;</p>©</div> + <div><p>&#170;</p>ª</div> + <div><p>&#171;</p>«</div> + <div><p>&#172;</p>¬</div> + <div><p>&#173;</p>­</div> + <div><p>&#174;</p>®</div> + <div><p>&#175;</p>¯</div> + <div><p>&#176;</p>°</div> + <div><p>&#177;</p>±</div> + <div><p>&#178;</p>²</div> + <div><p>&#179;</p>³</div> + <div><p>&#180;</p>´</div> + <div><p>&#181;</p>µ</div> + <div><p>&#182;</p>¶</div> + <div><p>&#183;</p>·</div> + <div><p>&#184;</p>¸</div> + <div><p>&#185;</p>¹</div> + <div><p>&#186;</p>º</div> + <div><p>&#187;</p>»</div> + <div><p>&#188;</p>¼</div> + <div><p>&#189;</p>½</div> + <div><p>&#190;</p>¾</div> + <div><p>&#191;</p>¿</div> + <div><p>&#192;</p>À</div> + <div><p>&#193;</p>Á</div> + <div><p>&#194;</p>Â</div> + <div><p>&#195;</p>Ã</div> + <div><p>&#196;</p>Ä</div> + <div><p>&#197;</p>Å</div> + <div><p>&#198;</p>Æ</div> + <div><p>&#199;</p>Ç</div> + <div><p>&#200;</p>È</div> + <div><p>&#201;</p>É</div> + <div><p>&#202;</p>Ê</div> + <div><p>&#203;</p>Ë</div> + <div><p>&#204;</p>Ì</div> + <div><p>&#205;</p>Í</div> + <div><p>&#206;</p>Î</div> + <div><p>&#207;</p>Ï</div> + <div><p>&#208;</p>Ð</div> + <div><p>&#209;</p>Ñ</div> + <div><p>&#210;</p>Ò</div> + <div><p>&#211;</p>Ó</div> + <div><p>&#212;</p>Ô</div> + <div><p>&#213;</p>Õ</div> + <div><p>&#214;</p>Ö</div> + <div><p>&#215;</p>×</div> + <div><p>&#216;</p>Ø</div> + <div><p>&#217;</p>Ù</div> + <div><p>&#218;</p>Ú</div> + <div><p>&#219;</p>Û</div> + <div><p>&#220;</p>Ü</div> + <div><p>&#221;</p>Ý</div> + <div><p>&#222;</p>Þ</div> + <div><p>&#223;</p>ß</div> + <div><p>&#224;</p>à</div> + <div><p>&#225;</p>á</div> + <div><p>&#226;</p>â</div> + <div><p>&#227;</p>ã</div> + <div><p>&#228;</p>ä</div> + <div><p>&#229;</p>å</div> + <div><p>&#230;</p>æ</div> + <div><p>&#231;</p>ç</div> + <div><p>&#232;</p>è</div> + <div><p>&#233;</p>é</div> + <div><p>&#234;</p>ê</div> + <div><p>&#235;</p>ë</div> + <div><p>&#236;</p>ì</div> + <div><p>&#237;</p>í</div> + <div><p>&#238;</p>î</div> + <div><p>&#239;</p>ï</div> + <div><p>&#240;</p>ð</div> + <div><p>&#241;</p>ñ</div> + <div><p>&#242;</p>ò</div> + <div><p>&#243;</p>ó</div> + <div><p>&#244;</p>ô</div> + <div><p>&#245;</p>õ</div> + <div><p>&#246;</p>ö</div> + <div><p>&#247;</p>÷</div> + <div><p>&#248;</p>ø</div> + <div><p>&#249;</p>ù</div> + <div><p>&#250;</p>ú</div> + <div><p>&#251;</p>û</div> + <div><p>&#252;</p>ü</div> + <div><p>&#253;</p>ý</div> + <div><p>&#254;</p>þ</div> + <div><p>&#255;</p>ÿ</div> + <div><p>&#338;</p>Œ</div> + <div><p>&#339;</p>œ</div> + <div><p>&#376;</p>Ÿ</div> + <div><p>&#710;</p>ˆ</div> + <div><p>&#732;</p>˜</div> + <div><p>&#8192;</p> </div> + <div><p>&#8193;</p> </div> + <div><p>&#8194;</p> </div> + <div><p>&#8195;</p> </div> + <div><p>&#8196;</p> </div> + <div><p>&#8197;</p> </div> + <div><p>&#8198;</p> </div> + <div><p>&#8199;</p> </div> + <div><p>&#8200;</p> </div> + <div><p>&#8201;</p> </div> + <div><p>&#8202;</p> </div> + <div><p>&#8208;</p>‐</div> + <div><p>&#8209;</p>‑</div> + <div><p>&#8210;</p>‒</div> + <div><p>&#8211;</p>–</div> + <div><p>&#8212;</p>—</div> + <div><p>&#8216;</p>‘</div> + <div><p>&#8217;</p>’</div> + <div><p>&#8218;</p>‚</div> + <div><p>&#8220;</p>“</div> + <div><p>&#8221;</p>”</div> + <div><p>&#8222;</p>„</div> + <div><p>&#8226;</p>•</div> + <div><p>&#8230;</p>…</div> + <div><p>&#8239;</p> </div> + <div><p>&#8249;</p>‹</div> + <div><p>&#8250;</p>›</div> + <div><p>&#8287;</p> </div> + <div><p>&#8364;</p>€</div> + <div><p>&#8482;</p>™</div> + <div><p>&#9724;</p>◼</div> + <div><p>&#64257;</p>fi</div> + <div><p>&#64258;</p>fl</div> + <div><p>&#64259;</p>ffi</div> + <div><p>&#64260;</p>ffl</div> + </div> + </div> + + + </div> + </div> + + + <div id="specs"> + + </div> + + <div id="installing"> + <div class="section"> + <div class="grid7 firstcol"> + <h1>Installing Webfonts</h1> + + <p>Webfonts are supported by all major browser platforms but not all in the same way. There are currently four different font formats that must be included in order to target all browsers. This includes TTF, WOFF, EOT and SVG.</p> + + <h2>1. Upload your webfonts</h2> + <p>You must upload your webfont kit to your website. They should be in or near the same directory as your CSS files.</p> + + <h2>2. Include the webfont stylesheet</h2> + <p>A special CSS @font-face declaration helps the various browsers select the appropriate font it needs without causing you a bunch of headaches. Learn more about this syntax by reading the <a href="https://www.fontspring.com/blog/further-hardening-of-the-bulletproof-syntax">Fontspring blog post</a> about it. The code for it is as follows:</p> + + +<code> +@font-face{ + font-family: 'MyWebFont'; + src: url('WebFont.eot'); + src: url('WebFont.eot?#iefix') format('embedded-opentype'), + url('WebFont.woff') format('woff'), + url('WebFont.ttf') format('truetype'), + url('WebFont.svg#webfont') format('svg'); +} +</code> + + <p>We've already gone ahead and generated the code for you. All you have to do is link to the stylesheet in your HTML, like this:</p> + <code><link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8" /></code> + + <h2>3. Modify your own stylesheet</h2> + <p>To take advantage of your new fonts, you must tell your stylesheet to use them. Look at the original @font-face declaration above and find the property called "font-family." The name linked there will be what you use to reference the font. Prepend that webfont name to the font stack in the "font-family" property, inside the selector you want to change. For example:</p> +<code>p { font-family: 'WebFont', Arial, sans-serif; }</code> + +<h2>4. Test</h2> +<p>Getting webfonts to work cross-browser <em>can</em> be tricky. Use the information in the sidebar to help you if you find that fonts aren't loading in a particular browser.</p> + </div> + + <div class="grid5 sidebar"> + <div class="box"> + <h2>Troubleshooting<br />Font-Face Problems</h2> + <p>Having trouble getting your webfonts to load in your new website? Here are some tips to sort out what might be the problem.</p> + + <h3>Fonts not showing in any browser</h3> + + <p>This sounds like you need to work on the plumbing. You either did not upload the fonts to the correct directory, or you did not link the fonts properly in the CSS. If you've confirmed that all this is correct and you still have a problem, take a look at your .htaccess file and see if requests are getting intercepted.</p> + + <h3>Fonts not loading in iPhone or iPad</h3> + + <p>The most common problem here is that you are serving the fonts from an IIS server. IIS refuses to serve files that have unknown MIME types. If that is the case, you must set the MIME type for SVG to "image/svg+xml" in the server settings. Follow these instructions from Microsoft if you need help.</p> + + <h3>Fonts not loading in Firefox</h3> + + <p>The primary reason for this failure? You are still using a version Firefox older than 3.5. So upgrade already! If that isn't it, then you are very likely serving fonts from a different domain. Firefox requires that all font assets be served from the same domain. Lastly it is possible that you need to add WOFF to your list of MIME types (if you are serving via IIS.)</p> + + <h3>Fonts not loading in IE</h3> + + <p>Are you looking at Internet Explorer on an actual Windows machine or are you cheating by using a service like Adobe BrowserLab? Many of these screenshot services do not render @font-face for IE. Best to test it on a real machine.</p> + + <h3>Fonts not loading in IE9</h3> + + <p>IE9, like Firefox, requires that fonts be served from the same domain as the website. Make sure that is the case.</p> + </div> + </div> + </div> + + </div> + + </div> + <div id="footer"> + <p>©2010-2017 Font Squirrel. All rights reserved.</p> + </div> +</div> +</body> +</html> diff --git a/test/samples/aurorae/fonts/spectral/spectral-italic-webfont.ttf b/test/samples/aurorae/fonts/spectral/spectral-italic-webfont.ttf new file mode 100755 index 0000000000000000000000000000000000000000..48a41c8817c660236e6f5bd110f325639b8e71b8 Binary files /dev/null and b/test/samples/aurorae/fonts/spectral/spectral-italic-webfont.ttf differ diff --git a/test/samples/aurorae/fonts/spectral/spectral-italic-webfont.woff b/test/samples/aurorae/fonts/spectral/spectral-italic-webfont.woff new file mode 100755 index 0000000000000000000000000000000000000000..17d9e6d61f0220ce184e13060758c6de32bc0ad9 Binary files /dev/null and b/test/samples/aurorae/fonts/spectral/spectral-italic-webfont.woff differ diff --git a/test/samples/aurorae/fonts/spectral/spectral-italic-webfont.woff2 b/test/samples/aurorae/fonts/spectral/spectral-italic-webfont.woff2 new file mode 100755 index 0000000000000000000000000000000000000000..43ca2b3e47330bfc9ccd6287052cb960ef9765d3 Binary files /dev/null and b/test/samples/aurorae/fonts/spectral/spectral-italic-webfont.woff2 differ diff --git a/test/samples/aurorae/fonts/spectral/spectral-light-demo.html b/test/samples/aurorae/fonts/spectral/spectral-light-demo.html new file mode 100755 index 0000000000000000000000000000000000000000..01d0aca1642e5b295345ef1a4ca9ca1e2c666bc4 --- /dev/null +++ b/test/samples/aurorae/fonts/spectral/spectral-light-demo.html @@ -0,0 +1,621 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> + +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> +<head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> + <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js" type="text/javascript" charset="utf-8"></script> + <script type="text/javascript"> + (function($){$.fn.easyTabs=function(option){var param=jQuery.extend({fadeSpeed:"fast",defaultContent:1,activeClass:'active'},option);$(this).each(function(){var thisId="#"+this.id;if(param.defaultContent==''){param.defaultContent=1;} + if(typeof param.defaultContent=="number") + {var defaultTab=$(thisId+" .tabs li:eq("+(param.defaultContent-1)+") a").attr('href').substr(1);}else{var defaultTab=param.defaultContent;} + $(thisId+" .tabs li a").each(function(){var tabToHide=$(this).attr('href').substr(1);$("#"+tabToHide).addClass('easytabs-tab-content');});hideAll();changeContent(defaultTab);function hideAll(){$(thisId+" .easytabs-tab-content").hide();} + function changeContent(tabId){hideAll();$(thisId+" .tabs li").removeClass(param.activeClass);$(thisId+" .tabs li a[href=#"+tabId+"]").closest('li').addClass(param.activeClass);if(param.fadeSpeed!="none") + {$(thisId+" #"+tabId).fadeIn(param.fadeSpeed);}else{$(thisId+" #"+tabId).show();}} + $(thisId+" .tabs li").click(function(){var tabId=$(this).find('a').attr('href').substr(1);changeContent(tabId);return false;});});}})(jQuery); + </script> + <link rel="stylesheet" href="specimen_files/specimen_stylesheet.css" type="text/css" charset="utf-8" /> + <link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8" /> + + <style type="text/css"> + body{ + font-family: 'spectrallight'; + } + </style> + + <title>Spectral Light Specimen</title> + + + <script type="text/javascript" charset="utf-8"> + $(document).ready(function() { + $('#container').easyTabs({defaultContent:1}); + }); + </script> +</head> + +<body> +<div id="container"> + <div id="header"> + Spectral Light </div> + <ul class="tabs"> + <li><a href="#specimen">Specimen</a></li> + <li><a href="#layout">Sample Layout</a></li> + <li><a href="#glyphs">Glyphs & Languages</a></li> + <li><a href="#installing">Installing Webfonts</a></li> + + </ul> + + <div id="main_content"> + + + <div id="specimen"> + + <div class="section"> + <div class="grid12 firstcol"> + <div class="huge">AaBb</div> + </div> + </div> + + <div class="section"> + <div class="glyph_range">A​B​C​D​E​F​G​H​I​J​K​L​M​N​O​P​Q​R​S​T​U​V​W​X​Y​Z​a​b​c​d​e​f​g​h​i​j​k​l​m​n​o​p​q​r​s​t​u​v​w​x​y​z​1​2​3​4​5​6​7​8​9​0​&​.​,​?​!​@​(​)​#​$​%​*​+​-​=​:​;</div> + </div> + <div class="section"> + <div class="grid12 firstcol"> + <table class="sample_table"> + <tr><td>10</td><td class="size10">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>11</td><td class="size11">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>12</td><td class="size12">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>13</td><td class="size13">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>14</td><td class="size14">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>16</td><td class="size16">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>18</td><td class="size18">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>20</td><td class="size20">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>24</td><td class="size24">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>30</td><td class="size30">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>36</td><td class="size36">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>48</td><td class="size48">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>60</td><td class="size60">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>72</td><td class="size72">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>90</td><td class="size90">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + </table> + + </div> + + </div> + + + + <div class="section" id="bodycomparison"> + + + <div id="xheight"> + <div class="fontbody">◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼body</div><div class="arialbody">body</div><div class="verdanabody">body</div><div class="georgiabody">body</div></div> + <div class="fontbody" style="z-index:1"> + body<span>Spectral Light</span> + </div> + <div class="arialbody" style="z-index:1"> + body<span>Arial</span> + </div> + <div class="verdanabody" style="z-index:1"> + body<span>Verdana</span> + </div> + <div class="georgiabody" style="z-index:1"> + body<span>Georgia</span> + </div> + + + + </div> + + + <div class="section psample psample_row1" id=""> + + <div class="grid2 firstcol"> + <p class="size10"><span>10.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid3"> + <p class="size11"><span>11.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid3"> + <p class="size12"><span>12.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid4"> + <p class="size13"><span>13.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="white_blend"></div> + + </div> + <div class="section psample psample_row2" id=""> + <div class="grid3 firstcol"> + <p class="size14"><span>14.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid4"> + <p class="size16"><span>16.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid5"> + <p class="size18"><span>18.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + + <div class="white_blend"></div> + + </div> + + <div class="section psample psample_row3" id=""> + <div class="grid5 firstcol"> + <p class="size20"><span>20.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + <div class="grid7"> + <p class="size24"><span>24.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + + <div class="white_blend"></div> + + </div> + + <div class="section psample psample_row4" id=""> + <div class="grid12 firstcol"> + <p class="size30"><span>30.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + <div class="white_blend"></div> + + </div> + + + + <div class="section psample psample_row1 fullreverse"> + <div class="grid2 firstcol"> + <p class="size10"><span>10.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid3"> + <p class="size11"><span>11.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid3"> + <p class="size12"><span>12.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid4"> + <p class="size13"><span>13.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="black_blend"></div> + + </div> + + <div class="section psample psample_row2 fullreverse"> + <div class="grid3 firstcol"> + <p class="size14"><span>14.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid4"> + <p class="size16"><span>16.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid5"> + <p class="size18"><span>18.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="black_blend"></div> + + </div> + + <div class="section psample fullreverse psample_row3" id=""> + <div class="grid5 firstcol"> + <p class="size20"><span>20.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + <div class="grid7"> + <p class="size24"><span>24.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + + <div class="black_blend"></div> + + </div> + + <div class="section psample fullreverse psample_row4" id="" style="border-bottom: 20px #000 solid;"> + <div class="grid12 firstcol"> + <p class="size30"><span>30.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + <div class="black_blend"></div> + + </div> + + + + + </div> + + <div id="layout"> + + <div class="section"> + + <div class="grid12 firstcol"> + <h1>Lorem Ipsum Dolor</h1> + <h2>Etiam porta sem malesuada magna mollis euismod</h2> + + <p class="byline">By <a href="#link">Aenean Lacinia</a></p> + </div> + </div> + <div class="section"> + <div class="grid8 firstcol"> + <p class="large">Donec sed odio dui. Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p> + + + <h3>Pellentesque ornare sem</h3> + + <p>Maecenas sed diam eget risus varius blandit sit amet non magna. Maecenas faucibus mollis interdum. Donec ullamcorper nulla non metus auctor fringilla. Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam id dolor id nibh ultricies vehicula ut id elit. </p> + + <p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. </p> + + <p>Nulla vitae elit libero, a pharetra augue. Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Aenean lacinia bibendum nulla sed consectetur. </p> + + <p>Nullam quis risus eget urna mollis ornare vel eu leo. Nullam quis risus eget urna mollis ornare vel eu leo. Maecenas sed diam eget risus varius blandit sit amet non magna. Donec ullamcorper nulla non metus auctor fringilla. </p> + + <h3>Cras mattis consectetur</h3> + + <p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Aenean lacinia bibendum nulla sed consectetur. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Cras mattis consectetur purus sit amet fermentum. </p> + + <p>Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam quis risus eget urna mollis ornare vel eu leo. Cras mattis consectetur purus sit amet fermentum.</p> + </div> + + <div class="grid4 sidebar"> + + <div class="box reverse"> + <p class="last">Nullam quis risus eget urna mollis ornare vel eu leo. Donec ullamcorper nulla non metus auctor fringilla. Cras mattis consectetur purus sit amet fermentum. Sed posuere consectetur est at lobortis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. </p> + </div> + + <p class="caption">Maecenas sed diam eget risus varius.</p> + + <p>Vestibulum id ligula porta felis euismod semper. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Vestibulum id ligula porta felis euismod semper. Sed posuere consectetur est at lobortis. Maecenas sed diam eget risus varius blandit sit amet non magna. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p> + + + + <p>Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Aenean lacinia bibendum nulla sed consectetur. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Aenean lacinia bibendum nulla sed consectetur. Nullam quis risus eget urna mollis ornare vel eu leo. </p> + + <p>Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Donec ullamcorper nulla non metus auctor fringilla. Maecenas faucibus mollis interdum. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p> + + </div> + </div> + + </div> + + + + + + + <div id="glyphs"> + <div class="section"> + <div class="grid12 firstcol"> + + <h1>Language Support</h1> + <p>The subset of Spectral Light in this kit supports the following languages:<br /> + + Albanian, Basque, Breton, Chamorro, Danish, Dutch, English, Faroese, Finnish, French, Frisian, Galician, German, Icelandic, Italian, Malagasy, Norwegian, Portuguese, Spanish, Alsatian, Aragonese, Arapaho, Arrernte, Asturian, Aymara, Bislama, Cebuano, Corsican, Fijian, French_creole, Genoese, Gilbertese, Greenlandic, Haitian_creole, Hiligaynon, Hmong, Hopi, Ibanag, Iloko_ilokano, Indonesian, Interglossa_glosa, Interlingua, Irish_gaelic, Jerriais, Lojban, Lombard, Luxembourgeois, Manx, Mohawk, Norfolk_pitcairnese, Occitan, Oromo, Pangasinan, Papiamento, Piedmontese, Potawatomi, Rhaeto-romance, Romansh, Rotokas, Sami_lule, Samoan, Sardinian, Scots_gaelic, Seychelles_creole, Shona, Sicilian, Somali, Southern_ndebele, Swahili, Swati_swazi, Tagalog_filipino_pilipino, Tetum, Tok_pisin, Uyghur_latinized, Volapuk, Walloon, Warlpiri, Xhosa, Yapese, Zulu, Latinbasic, Ubasic, Demo </p> + <h1>Glyph Chart</h1> + <p>The subset of Spectral Light in this kit includes all the glyphs listed below. Unicode entities are included above each glyph to help you insert individual characters into your layout.</p> + <div id="glyph_chart"> + + <div><p>&#32;</p> </div> + <div><p>&#33;</p>!</div> + <div><p>&#34;</p>"</div> + <div><p>&#35;</p>#</div> + <div><p>&#36;</p>$</div> + <div><p>&#37;</p>%</div> + <div><p>&#38;</p>&</div> + <div><p>&#39;</p>'</div> + <div><p>&#40;</p>(</div> + <div><p>&#41;</p>)</div> + <div><p>&#42;</p>*</div> + <div><p>&#43;</p>+</div> + <div><p>&#44;</p>,</div> + <div><p>&#45;</p>-</div> + <div><p>&#46;</p>.</div> + <div><p>&#47;</p>/</div> + <div><p>&#48;</p>0</div> + <div><p>&#49;</p>1</div> + <div><p>&#50;</p>2</div> + <div><p>&#51;</p>3</div> + <div><p>&#52;</p>4</div> + <div><p>&#53;</p>5</div> + <div><p>&#54;</p>6</div> + <div><p>&#55;</p>7</div> + <div><p>&#56;</p>8</div> + <div><p>&#57;</p>9</div> + <div><p>&#58;</p>:</div> + <div><p>&#59;</p>;</div> + <div><p>&#60;</p><</div> + <div><p>&#61;</p>=</div> + <div><p>&#62;</p>></div> + <div><p>&#63;</p>?</div> + <div><p>&#64;</p>@</div> + <div><p>&#65;</p>A</div> + <div><p>&#66;</p>B</div> + <div><p>&#67;</p>C</div> + <div><p>&#68;</p>D</div> + <div><p>&#69;</p>E</div> + <div><p>&#70;</p>F</div> + <div><p>&#71;</p>G</div> + <div><p>&#72;</p>H</div> + <div><p>&#73;</p>I</div> + <div><p>&#74;</p>J</div> + <div><p>&#75;</p>K</div> + <div><p>&#76;</p>L</div> + <div><p>&#77;</p>M</div> + <div><p>&#78;</p>N</div> + <div><p>&#79;</p>O</div> + <div><p>&#80;</p>P</div> + <div><p>&#81;</p>Q</div> + <div><p>&#82;</p>R</div> + <div><p>&#83;</p>S</div> + <div><p>&#84;</p>T</div> + <div><p>&#85;</p>U</div> + <div><p>&#86;</p>V</div> + <div><p>&#87;</p>W</div> + <div><p>&#88;</p>X</div> + <div><p>&#89;</p>Y</div> + <div><p>&#90;</p>Z</div> + <div><p>&#91;</p>[</div> + <div><p>&#92;</p>\</div> + <div><p>&#93;</p>]</div> + <div><p>&#94;</p>^</div> + <div><p>&#95;</p>_</div> + <div><p>&#96;</p>`</div> + <div><p>&#97;</p>a</div> + <div><p>&#98;</p>b</div> + <div><p>&#99;</p>c</div> + <div><p>&#100;</p>d</div> + <div><p>&#101;</p>e</div> + <div><p>&#102;</p>f</div> + <div><p>&#103;</p>g</div> + <div><p>&#104;</p>h</div> + <div><p>&#105;</p>i</div> + <div><p>&#106;</p>j</div> + <div><p>&#107;</p>k</div> + <div><p>&#108;</p>l</div> + <div><p>&#109;</p>m</div> + <div><p>&#110;</p>n</div> + <div><p>&#111;</p>o</div> + <div><p>&#112;</p>p</div> + <div><p>&#113;</p>q</div> + <div><p>&#114;</p>r</div> + <div><p>&#115;</p>s</div> + <div><p>&#116;</p>t</div> + <div><p>&#117;</p>u</div> + <div><p>&#118;</p>v</div> + <div><p>&#119;</p>w</div> + <div><p>&#120;</p>x</div> + <div><p>&#121;</p>y</div> + <div><p>&#122;</p>z</div> + <div><p>&#123;</p>{</div> + <div><p>&#124;</p>|</div> + <div><p>&#125;</p>}</div> + <div><p>&#126;</p>~</div> + <div><p>&#160;</p> </div> + <div><p>&#161;</p>¡</div> + <div><p>&#162;</p>¢</div> + <div><p>&#163;</p>£</div> + <div><p>&#164;</p>¤</div> + <div><p>&#165;</p>¥</div> + <div><p>&#166;</p>¦</div> + <div><p>&#167;</p>§</div> + <div><p>&#168;</p>¨</div> + <div><p>&#169;</p>©</div> + <div><p>&#170;</p>ª</div> + <div><p>&#171;</p>«</div> + <div><p>&#172;</p>¬</div> + <div><p>&#173;</p>­</div> + <div><p>&#174;</p>®</div> + <div><p>&#175;</p>¯</div> + <div><p>&#176;</p>°</div> + <div><p>&#177;</p>±</div> + <div><p>&#178;</p>²</div> + <div><p>&#179;</p>³</div> + <div><p>&#180;</p>´</div> + <div><p>&#181;</p>µ</div> + <div><p>&#182;</p>¶</div> + <div><p>&#183;</p>·</div> + <div><p>&#184;</p>¸</div> + <div><p>&#185;</p>¹</div> + <div><p>&#186;</p>º</div> + <div><p>&#187;</p>»</div> + <div><p>&#188;</p>¼</div> + <div><p>&#189;</p>½</div> + <div><p>&#190;</p>¾</div> + <div><p>&#191;</p>¿</div> + <div><p>&#192;</p>À</div> + <div><p>&#193;</p>Á</div> + <div><p>&#194;</p>Â</div> + <div><p>&#195;</p>Ã</div> + <div><p>&#196;</p>Ä</div> + <div><p>&#197;</p>Å</div> + <div><p>&#198;</p>Æ</div> + <div><p>&#199;</p>Ç</div> + <div><p>&#200;</p>È</div> + <div><p>&#201;</p>É</div> + <div><p>&#202;</p>Ê</div> + <div><p>&#203;</p>Ë</div> + <div><p>&#204;</p>Ì</div> + <div><p>&#205;</p>Í</div> + <div><p>&#206;</p>Î</div> + <div><p>&#207;</p>Ï</div> + <div><p>&#208;</p>Ð</div> + <div><p>&#209;</p>Ñ</div> + <div><p>&#210;</p>Ò</div> + <div><p>&#211;</p>Ó</div> + <div><p>&#212;</p>Ô</div> + <div><p>&#213;</p>Õ</div> + <div><p>&#214;</p>Ö</div> + <div><p>&#215;</p>×</div> + <div><p>&#216;</p>Ø</div> + <div><p>&#217;</p>Ù</div> + <div><p>&#218;</p>Ú</div> + <div><p>&#219;</p>Û</div> + <div><p>&#220;</p>Ü</div> + <div><p>&#221;</p>Ý</div> + <div><p>&#222;</p>Þ</div> + <div><p>&#223;</p>ß</div> + <div><p>&#224;</p>à</div> + <div><p>&#225;</p>á</div> + <div><p>&#226;</p>â</div> + <div><p>&#227;</p>ã</div> + <div><p>&#228;</p>ä</div> + <div><p>&#229;</p>å</div> + <div><p>&#230;</p>æ</div> + <div><p>&#231;</p>ç</div> + <div><p>&#232;</p>è</div> + <div><p>&#233;</p>é</div> + <div><p>&#234;</p>ê</div> + <div><p>&#235;</p>ë</div> + <div><p>&#236;</p>ì</div> + <div><p>&#237;</p>í</div> + <div><p>&#238;</p>î</div> + <div><p>&#239;</p>ï</div> + <div><p>&#240;</p>ð</div> + <div><p>&#241;</p>ñ</div> + <div><p>&#242;</p>ò</div> + <div><p>&#243;</p>ó</div> + <div><p>&#244;</p>ô</div> + <div><p>&#245;</p>õ</div> + <div><p>&#246;</p>ö</div> + <div><p>&#247;</p>÷</div> + <div><p>&#248;</p>ø</div> + <div><p>&#249;</p>ù</div> + <div><p>&#250;</p>ú</div> + <div><p>&#251;</p>û</div> + <div><p>&#252;</p>ü</div> + <div><p>&#253;</p>ý</div> + <div><p>&#254;</p>þ</div> + <div><p>&#255;</p>ÿ</div> + <div><p>&#338;</p>Œ</div> + <div><p>&#339;</p>œ</div> + <div><p>&#376;</p>Ÿ</div> + <div><p>&#710;</p>ˆ</div> + <div><p>&#732;</p>˜</div> + <div><p>&#8192;</p> </div> + <div><p>&#8193;</p> </div> + <div><p>&#8194;</p> </div> + <div><p>&#8195;</p> </div> + <div><p>&#8196;</p> </div> + <div><p>&#8197;</p> </div> + <div><p>&#8198;</p> </div> + <div><p>&#8199;</p> </div> + <div><p>&#8200;</p> </div> + <div><p>&#8201;</p> </div> + <div><p>&#8202;</p> </div> + <div><p>&#8208;</p>‐</div> + <div><p>&#8209;</p>‑</div> + <div><p>&#8210;</p>‒</div> + <div><p>&#8211;</p>–</div> + <div><p>&#8212;</p>—</div> + <div><p>&#8216;</p>‘</div> + <div><p>&#8217;</p>’</div> + <div><p>&#8218;</p>‚</div> + <div><p>&#8220;</p>“</div> + <div><p>&#8221;</p>”</div> + <div><p>&#8222;</p>„</div> + <div><p>&#8226;</p>•</div> + <div><p>&#8230;</p>…</div> + <div><p>&#8239;</p> </div> + <div><p>&#8249;</p>‹</div> + <div><p>&#8250;</p>›</div> + <div><p>&#8287;</p> </div> + <div><p>&#8364;</p>€</div> + <div><p>&#8482;</p>™</div> + <div><p>&#9724;</p>◼</div> + <div><p>&#64257;</p>fi</div> + <div><p>&#64258;</p>fl</div> + <div><p>&#64259;</p>ffi</div> + <div><p>&#64260;</p>ffl</div> + </div> + </div> + + + </div> + </div> + + + <div id="specs"> + + </div> + + <div id="installing"> + <div class="section"> + <div class="grid7 firstcol"> + <h1>Installing Webfonts</h1> + + <p>Webfonts are supported by all major browser platforms but not all in the same way. There are currently four different font formats that must be included in order to target all browsers. This includes TTF, WOFF, EOT and SVG.</p> + + <h2>1. Upload your webfonts</h2> + <p>You must upload your webfont kit to your website. They should be in or near the same directory as your CSS files.</p> + + <h2>2. Include the webfont stylesheet</h2> + <p>A special CSS @font-face declaration helps the various browsers select the appropriate font it needs without causing you a bunch of headaches. Learn more about this syntax by reading the <a href="https://www.fontspring.com/blog/further-hardening-of-the-bulletproof-syntax">Fontspring blog post</a> about it. The code for it is as follows:</p> + + +<code> +@font-face{ + font-family: 'MyWebFont'; + src: url('WebFont.eot'); + src: url('WebFont.eot?#iefix') format('embedded-opentype'), + url('WebFont.woff') format('woff'), + url('WebFont.ttf') format('truetype'), + url('WebFont.svg#webfont') format('svg'); +} +</code> + + <p>We've already gone ahead and generated the code for you. All you have to do is link to the stylesheet in your HTML, like this:</p> + <code><link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8" /></code> + + <h2>3. Modify your own stylesheet</h2> + <p>To take advantage of your new fonts, you must tell your stylesheet to use them. Look at the original @font-face declaration above and find the property called "font-family." The name linked there will be what you use to reference the font. Prepend that webfont name to the font stack in the "font-family" property, inside the selector you want to change. For example:</p> +<code>p { font-family: 'WebFont', Arial, sans-serif; }</code> + +<h2>4. Test</h2> +<p>Getting webfonts to work cross-browser <em>can</em> be tricky. Use the information in the sidebar to help you if you find that fonts aren't loading in a particular browser.</p> + </div> + + <div class="grid5 sidebar"> + <div class="box"> + <h2>Troubleshooting<br />Font-Face Problems</h2> + <p>Having trouble getting your webfonts to load in your new website? Here are some tips to sort out what might be the problem.</p> + + <h3>Fonts not showing in any browser</h3> + + <p>This sounds like you need to work on the plumbing. You either did not upload the fonts to the correct directory, or you did not link the fonts properly in the CSS. If you've confirmed that all this is correct and you still have a problem, take a look at your .htaccess file and see if requests are getting intercepted.</p> + + <h3>Fonts not loading in iPhone or iPad</h3> + + <p>The most common problem here is that you are serving the fonts from an IIS server. IIS refuses to serve files that have unknown MIME types. If that is the case, you must set the MIME type for SVG to "image/svg+xml" in the server settings. Follow these instructions from Microsoft if you need help.</p> + + <h3>Fonts not loading in Firefox</h3> + + <p>The primary reason for this failure? You are still using a version Firefox older than 3.5. So upgrade already! If that isn't it, then you are very likely serving fonts from a different domain. Firefox requires that all font assets be served from the same domain. Lastly it is possible that you need to add WOFF to your list of MIME types (if you are serving via IIS.)</p> + + <h3>Fonts not loading in IE</h3> + + <p>Are you looking at Internet Explorer on an actual Windows machine or are you cheating by using a service like Adobe BrowserLab? Many of these screenshot services do not render @font-face for IE. Best to test it on a real machine.</p> + + <h3>Fonts not loading in IE9</h3> + + <p>IE9, like Firefox, requires that fonts be served from the same domain as the website. Make sure that is the case.</p> + </div> + </div> + </div> + + </div> + + </div> + <div id="footer"> + <p>©2010-2017 Font Squirrel. All rights reserved.</p> + </div> +</div> +</body> +</html> diff --git a/test/samples/aurorae/fonts/spectral/spectral-light-webfont.woff b/test/samples/aurorae/fonts/spectral/spectral-light-webfont.woff new file mode 100755 index 0000000000000000000000000000000000000000..d882fbc704e8ce0b19c836a97f83e8396b4682d3 Binary files /dev/null and b/test/samples/aurorae/fonts/spectral/spectral-light-webfont.woff differ diff --git a/test/samples/aurorae/fonts/spectral/spectral-light-webfont.woff2 b/test/samples/aurorae/fonts/spectral/spectral-light-webfont.woff2 new file mode 100755 index 0000000000000000000000000000000000000000..741b908b8a6f5dd483170b6975e356583d176f08 Binary files /dev/null and b/test/samples/aurorae/fonts/spectral/spectral-light-webfont.woff2 differ diff --git a/test/samples/aurorae/fonts/spectral/spectral-lightitalic-demo.html b/test/samples/aurorae/fonts/spectral/spectral-lightitalic-demo.html new file mode 100755 index 0000000000000000000000000000000000000000..1d88b79c413b3af996ddf6bede84c6210fdd78f6 --- /dev/null +++ b/test/samples/aurorae/fonts/spectral/spectral-lightitalic-demo.html @@ -0,0 +1,621 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> + +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> +<head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> + <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js" type="text/javascript" charset="utf-8"></script> + <script type="text/javascript"> + (function($){$.fn.easyTabs=function(option){var param=jQuery.extend({fadeSpeed:"fast",defaultContent:1,activeClass:'active'},option);$(this).each(function(){var thisId="#"+this.id;if(param.defaultContent==''){param.defaultContent=1;} + if(typeof param.defaultContent=="number") + {var defaultTab=$(thisId+" .tabs li:eq("+(param.defaultContent-1)+") a").attr('href').substr(1);}else{var defaultTab=param.defaultContent;} + $(thisId+" .tabs li a").each(function(){var tabToHide=$(this).attr('href').substr(1);$("#"+tabToHide).addClass('easytabs-tab-content');});hideAll();changeContent(defaultTab);function hideAll(){$(thisId+" .easytabs-tab-content").hide();} + function changeContent(tabId){hideAll();$(thisId+" .tabs li").removeClass(param.activeClass);$(thisId+" .tabs li a[href=#"+tabId+"]").closest('li').addClass(param.activeClass);if(param.fadeSpeed!="none") + {$(thisId+" #"+tabId).fadeIn(param.fadeSpeed);}else{$(thisId+" #"+tabId).show();}} + $(thisId+" .tabs li").click(function(){var tabId=$(this).find('a').attr('href').substr(1);changeContent(tabId);return false;});});}})(jQuery); + </script> + <link rel="stylesheet" href="specimen_files/specimen_stylesheet.css" type="text/css" charset="utf-8" /> + <link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8" /> + + <style type="text/css"> + body{ + font-family: 'spectrallight_italic'; + } + </style> + + <title>Spectral Light Italic Specimen</title> + + + <script type="text/javascript" charset="utf-8"> + $(document).ready(function() { + $('#container').easyTabs({defaultContent:1}); + }); + </script> +</head> + +<body> +<div id="container"> + <div id="header"> + Spectral Light Italic </div> + <ul class="tabs"> + <li><a href="#specimen">Specimen</a></li> + <li><a href="#layout">Sample Layout</a></li> + <li><a href="#glyphs">Glyphs & Languages</a></li> + <li><a href="#installing">Installing Webfonts</a></li> + + </ul> + + <div id="main_content"> + + + <div id="specimen"> + + <div class="section"> + <div class="grid12 firstcol"> + <div class="huge">AaBb</div> + </div> + </div> + + <div class="section"> + <div class="glyph_range">A​B​C​D​E​F​G​H​I​J​K​L​M​N​O​P​Q​R​S​T​U​V​W​X​Y​Z​a​b​c​d​e​f​g​h​i​j​k​l​m​n​o​p​q​r​s​t​u​v​w​x​y​z​1​2​3​4​5​6​7​8​9​0​&​.​,​?​!​@​(​)​#​$​%​*​+​-​=​:​;</div> + </div> + <div class="section"> + <div class="grid12 firstcol"> + <table class="sample_table"> + <tr><td>10</td><td class="size10">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>11</td><td class="size11">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>12</td><td class="size12">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>13</td><td class="size13">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>14</td><td class="size14">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>16</td><td class="size16">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>18</td><td class="size18">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>20</td><td class="size20">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>24</td><td class="size24">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>30</td><td class="size30">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>36</td><td class="size36">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>48</td><td class="size48">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>60</td><td class="size60">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>72</td><td class="size72">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>90</td><td class="size90">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + </table> + + </div> + + </div> + + + + <div class="section" id="bodycomparison"> + + + <div id="xheight"> + <div class="fontbody">◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼body</div><div class="arialbody">body</div><div class="verdanabody">body</div><div class="georgiabody">body</div></div> + <div class="fontbody" style="z-index:1"> + body<span>Spectral Light Italic</span> + </div> + <div class="arialbody" style="z-index:1"> + body<span>Arial</span> + </div> + <div class="verdanabody" style="z-index:1"> + body<span>Verdana</span> + </div> + <div class="georgiabody" style="z-index:1"> + body<span>Georgia</span> + </div> + + + + </div> + + + <div class="section psample psample_row1" id=""> + + <div class="grid2 firstcol"> + <p class="size10"><span>10.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid3"> + <p class="size11"><span>11.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid3"> + <p class="size12"><span>12.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid4"> + <p class="size13"><span>13.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="white_blend"></div> + + </div> + <div class="section psample psample_row2" id=""> + <div class="grid3 firstcol"> + <p class="size14"><span>14.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid4"> + <p class="size16"><span>16.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid5"> + <p class="size18"><span>18.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + + <div class="white_blend"></div> + + </div> + + <div class="section psample psample_row3" id=""> + <div class="grid5 firstcol"> + <p class="size20"><span>20.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + <div class="grid7"> + <p class="size24"><span>24.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + + <div class="white_blend"></div> + + </div> + + <div class="section psample psample_row4" id=""> + <div class="grid12 firstcol"> + <p class="size30"><span>30.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + <div class="white_blend"></div> + + </div> + + + + <div class="section psample psample_row1 fullreverse"> + <div class="grid2 firstcol"> + <p class="size10"><span>10.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid3"> + <p class="size11"><span>11.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid3"> + <p class="size12"><span>12.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid4"> + <p class="size13"><span>13.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="black_blend"></div> + + </div> + + <div class="section psample psample_row2 fullreverse"> + <div class="grid3 firstcol"> + <p class="size14"><span>14.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid4"> + <p class="size16"><span>16.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid5"> + <p class="size18"><span>18.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="black_blend"></div> + + </div> + + <div class="section psample fullreverse psample_row3" id=""> + <div class="grid5 firstcol"> + <p class="size20"><span>20.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + <div class="grid7"> + <p class="size24"><span>24.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + + <div class="black_blend"></div> + + </div> + + <div class="section psample fullreverse psample_row4" id="" style="border-bottom: 20px #000 solid;"> + <div class="grid12 firstcol"> + <p class="size30"><span>30.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + <div class="black_blend"></div> + + </div> + + + + + </div> + + <div id="layout"> + + <div class="section"> + + <div class="grid12 firstcol"> + <h1>Lorem Ipsum Dolor</h1> + <h2>Etiam porta sem malesuada magna mollis euismod</h2> + + <p class="byline">By <a href="#link">Aenean Lacinia</a></p> + </div> + </div> + <div class="section"> + <div class="grid8 firstcol"> + <p class="large">Donec sed odio dui. Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p> + + + <h3>Pellentesque ornare sem</h3> + + <p>Maecenas sed diam eget risus varius blandit sit amet non magna. Maecenas faucibus mollis interdum. Donec ullamcorper nulla non metus auctor fringilla. Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam id dolor id nibh ultricies vehicula ut id elit. </p> + + <p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. </p> + + <p>Nulla vitae elit libero, a pharetra augue. Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Aenean lacinia bibendum nulla sed consectetur. </p> + + <p>Nullam quis risus eget urna mollis ornare vel eu leo. Nullam quis risus eget urna mollis ornare vel eu leo. Maecenas sed diam eget risus varius blandit sit amet non magna. Donec ullamcorper nulla non metus auctor fringilla. </p> + + <h3>Cras mattis consectetur</h3> + + <p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Aenean lacinia bibendum nulla sed consectetur. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Cras mattis consectetur purus sit amet fermentum. </p> + + <p>Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam quis risus eget urna mollis ornare vel eu leo. Cras mattis consectetur purus sit amet fermentum.</p> + </div> + + <div class="grid4 sidebar"> + + <div class="box reverse"> + <p class="last">Nullam quis risus eget urna mollis ornare vel eu leo. Donec ullamcorper nulla non metus auctor fringilla. Cras mattis consectetur purus sit amet fermentum. Sed posuere consectetur est at lobortis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. </p> + </div> + + <p class="caption">Maecenas sed diam eget risus varius.</p> + + <p>Vestibulum id ligula porta felis euismod semper. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Vestibulum id ligula porta felis euismod semper. Sed posuere consectetur est at lobortis. Maecenas sed diam eget risus varius blandit sit amet non magna. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p> + + + + <p>Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Aenean lacinia bibendum nulla sed consectetur. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Aenean lacinia bibendum nulla sed consectetur. Nullam quis risus eget urna mollis ornare vel eu leo. </p> + + <p>Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Donec ullamcorper nulla non metus auctor fringilla. Maecenas faucibus mollis interdum. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p> + + </div> + </div> + + </div> + + + + + + + <div id="glyphs"> + <div class="section"> + <div class="grid12 firstcol"> + + <h1>Language Support</h1> + <p>The subset of Spectral Light Italic in this kit supports the following languages:<br /> + + Albanian, Basque, Breton, Chamorro, Danish, Dutch, English, Faroese, Finnish, French, Frisian, Galician, German, Icelandic, Italian, Malagasy, Norwegian, Portuguese, Spanish, Alsatian, Aragonese, Arapaho, Arrernte, Asturian, Aymara, Bislama, Cebuano, Corsican, Fijian, French_creole, Genoese, Gilbertese, Greenlandic, Haitian_creole, Hiligaynon, Hmong, Hopi, Ibanag, Iloko_ilokano, Indonesian, Interglossa_glosa, Interlingua, Irish_gaelic, Jerriais, Lojban, Lombard, Luxembourgeois, Manx, Mohawk, Norfolk_pitcairnese, Occitan, Oromo, Pangasinan, Papiamento, Piedmontese, Potawatomi, Rhaeto-romance, Romansh, Rotokas, Sami_lule, Samoan, Sardinian, Scots_gaelic, Seychelles_creole, Shona, Sicilian, Somali, Southern_ndebele, Swahili, Swati_swazi, Tagalog_filipino_pilipino, Tetum, Tok_pisin, Uyghur_latinized, Volapuk, Walloon, Warlpiri, Xhosa, Yapese, Zulu, Latinbasic, Ubasic, Demo </p> + <h1>Glyph Chart</h1> + <p>The subset of Spectral Light Italic in this kit includes all the glyphs listed below. Unicode entities are included above each glyph to help you insert individual characters into your layout.</p> + <div id="glyph_chart"> + + <div><p>&#32;</p> </div> + <div><p>&#33;</p>!</div> + <div><p>&#34;</p>"</div> + <div><p>&#35;</p>#</div> + <div><p>&#36;</p>$</div> + <div><p>&#37;</p>%</div> + <div><p>&#38;</p>&</div> + <div><p>&#39;</p>'</div> + <div><p>&#40;</p>(</div> + <div><p>&#41;</p>)</div> + <div><p>&#42;</p>*</div> + <div><p>&#43;</p>+</div> + <div><p>&#44;</p>,</div> + <div><p>&#45;</p>-</div> + <div><p>&#46;</p>.</div> + <div><p>&#47;</p>/</div> + <div><p>&#48;</p>0</div> + <div><p>&#49;</p>1</div> + <div><p>&#50;</p>2</div> + <div><p>&#51;</p>3</div> + <div><p>&#52;</p>4</div> + <div><p>&#53;</p>5</div> + <div><p>&#54;</p>6</div> + <div><p>&#55;</p>7</div> + <div><p>&#56;</p>8</div> + <div><p>&#57;</p>9</div> + <div><p>&#58;</p>:</div> + <div><p>&#59;</p>;</div> + <div><p>&#60;</p><</div> + <div><p>&#61;</p>=</div> + <div><p>&#62;</p>></div> + <div><p>&#63;</p>?</div> + <div><p>&#64;</p>@</div> + <div><p>&#65;</p>A</div> + <div><p>&#66;</p>B</div> + <div><p>&#67;</p>C</div> + <div><p>&#68;</p>D</div> + <div><p>&#69;</p>E</div> + <div><p>&#70;</p>F</div> + <div><p>&#71;</p>G</div> + <div><p>&#72;</p>H</div> + <div><p>&#73;</p>I</div> + <div><p>&#74;</p>J</div> + <div><p>&#75;</p>K</div> + <div><p>&#76;</p>L</div> + <div><p>&#77;</p>M</div> + <div><p>&#78;</p>N</div> + <div><p>&#79;</p>O</div> + <div><p>&#80;</p>P</div> + <div><p>&#81;</p>Q</div> + <div><p>&#82;</p>R</div> + <div><p>&#83;</p>S</div> + <div><p>&#84;</p>T</div> + <div><p>&#85;</p>U</div> + <div><p>&#86;</p>V</div> + <div><p>&#87;</p>W</div> + <div><p>&#88;</p>X</div> + <div><p>&#89;</p>Y</div> + <div><p>&#90;</p>Z</div> + <div><p>&#91;</p>[</div> + <div><p>&#92;</p>\</div> + <div><p>&#93;</p>]</div> + <div><p>&#94;</p>^</div> + <div><p>&#95;</p>_</div> + <div><p>&#96;</p>`</div> + <div><p>&#97;</p>a</div> + <div><p>&#98;</p>b</div> + <div><p>&#99;</p>c</div> + <div><p>&#100;</p>d</div> + <div><p>&#101;</p>e</div> + <div><p>&#102;</p>f</div> + <div><p>&#103;</p>g</div> + <div><p>&#104;</p>h</div> + <div><p>&#105;</p>i</div> + <div><p>&#106;</p>j</div> + <div><p>&#107;</p>k</div> + <div><p>&#108;</p>l</div> + <div><p>&#109;</p>m</div> + <div><p>&#110;</p>n</div> + <div><p>&#111;</p>o</div> + <div><p>&#112;</p>p</div> + <div><p>&#113;</p>q</div> + <div><p>&#114;</p>r</div> + <div><p>&#115;</p>s</div> + <div><p>&#116;</p>t</div> + <div><p>&#117;</p>u</div> + <div><p>&#118;</p>v</div> + <div><p>&#119;</p>w</div> + <div><p>&#120;</p>x</div> + <div><p>&#121;</p>y</div> + <div><p>&#122;</p>z</div> + <div><p>&#123;</p>{</div> + <div><p>&#124;</p>|</div> + <div><p>&#125;</p>}</div> + <div><p>&#126;</p>~</div> + <div><p>&#160;</p> </div> + <div><p>&#161;</p>¡</div> + <div><p>&#162;</p>¢</div> + <div><p>&#163;</p>£</div> + <div><p>&#164;</p>¤</div> + <div><p>&#165;</p>¥</div> + <div><p>&#166;</p>¦</div> + <div><p>&#167;</p>§</div> + <div><p>&#168;</p>¨</div> + <div><p>&#169;</p>©</div> + <div><p>&#170;</p>ª</div> + <div><p>&#171;</p>«</div> + <div><p>&#172;</p>¬</div> + <div><p>&#173;</p>­</div> + <div><p>&#174;</p>®</div> + <div><p>&#175;</p>¯</div> + <div><p>&#176;</p>°</div> + <div><p>&#177;</p>±</div> + <div><p>&#178;</p>²</div> + <div><p>&#179;</p>³</div> + <div><p>&#180;</p>´</div> + <div><p>&#181;</p>µ</div> + <div><p>&#182;</p>¶</div> + <div><p>&#183;</p>·</div> + <div><p>&#184;</p>¸</div> + <div><p>&#185;</p>¹</div> + <div><p>&#186;</p>º</div> + <div><p>&#187;</p>»</div> + <div><p>&#188;</p>¼</div> + <div><p>&#189;</p>½</div> + <div><p>&#190;</p>¾</div> + <div><p>&#191;</p>¿</div> + <div><p>&#192;</p>À</div> + <div><p>&#193;</p>Á</div> + <div><p>&#194;</p>Â</div> + <div><p>&#195;</p>Ã</div> + <div><p>&#196;</p>Ä</div> + <div><p>&#197;</p>Å</div> + <div><p>&#198;</p>Æ</div> + <div><p>&#199;</p>Ç</div> + <div><p>&#200;</p>È</div> + <div><p>&#201;</p>É</div> + <div><p>&#202;</p>Ê</div> + <div><p>&#203;</p>Ë</div> + <div><p>&#204;</p>Ì</div> + <div><p>&#205;</p>Í</div> + <div><p>&#206;</p>Î</div> + <div><p>&#207;</p>Ï</div> + <div><p>&#208;</p>Ð</div> + <div><p>&#209;</p>Ñ</div> + <div><p>&#210;</p>Ò</div> + <div><p>&#211;</p>Ó</div> + <div><p>&#212;</p>Ô</div> + <div><p>&#213;</p>Õ</div> + <div><p>&#214;</p>Ö</div> + <div><p>&#215;</p>×</div> + <div><p>&#216;</p>Ø</div> + <div><p>&#217;</p>Ù</div> + <div><p>&#218;</p>Ú</div> + <div><p>&#219;</p>Û</div> + <div><p>&#220;</p>Ü</div> + <div><p>&#221;</p>Ý</div> + <div><p>&#222;</p>Þ</div> + <div><p>&#223;</p>ß</div> + <div><p>&#224;</p>à</div> + <div><p>&#225;</p>á</div> + <div><p>&#226;</p>â</div> + <div><p>&#227;</p>ã</div> + <div><p>&#228;</p>ä</div> + <div><p>&#229;</p>å</div> + <div><p>&#230;</p>æ</div> + <div><p>&#231;</p>ç</div> + <div><p>&#232;</p>è</div> + <div><p>&#233;</p>é</div> + <div><p>&#234;</p>ê</div> + <div><p>&#235;</p>ë</div> + <div><p>&#236;</p>ì</div> + <div><p>&#237;</p>í</div> + <div><p>&#238;</p>î</div> + <div><p>&#239;</p>ï</div> + <div><p>&#240;</p>ð</div> + <div><p>&#241;</p>ñ</div> + <div><p>&#242;</p>ò</div> + <div><p>&#243;</p>ó</div> + <div><p>&#244;</p>ô</div> + <div><p>&#245;</p>õ</div> + <div><p>&#246;</p>ö</div> + <div><p>&#247;</p>÷</div> + <div><p>&#248;</p>ø</div> + <div><p>&#249;</p>ù</div> + <div><p>&#250;</p>ú</div> + <div><p>&#251;</p>û</div> + <div><p>&#252;</p>ü</div> + <div><p>&#253;</p>ý</div> + <div><p>&#254;</p>þ</div> + <div><p>&#255;</p>ÿ</div> + <div><p>&#338;</p>Œ</div> + <div><p>&#339;</p>œ</div> + <div><p>&#376;</p>Ÿ</div> + <div><p>&#710;</p>ˆ</div> + <div><p>&#732;</p>˜</div> + <div><p>&#8192;</p> </div> + <div><p>&#8193;</p> </div> + <div><p>&#8194;</p> </div> + <div><p>&#8195;</p> </div> + <div><p>&#8196;</p> </div> + <div><p>&#8197;</p> </div> + <div><p>&#8198;</p> </div> + <div><p>&#8199;</p> </div> + <div><p>&#8200;</p> </div> + <div><p>&#8201;</p> </div> + <div><p>&#8202;</p> </div> + <div><p>&#8208;</p>‐</div> + <div><p>&#8209;</p>‑</div> + <div><p>&#8210;</p>‒</div> + <div><p>&#8211;</p>–</div> + <div><p>&#8212;</p>—</div> + <div><p>&#8216;</p>‘</div> + <div><p>&#8217;</p>’</div> + <div><p>&#8218;</p>‚</div> + <div><p>&#8220;</p>“</div> + <div><p>&#8221;</p>”</div> + <div><p>&#8222;</p>„</div> + <div><p>&#8226;</p>•</div> + <div><p>&#8230;</p>…</div> + <div><p>&#8239;</p> </div> + <div><p>&#8249;</p>‹</div> + <div><p>&#8250;</p>›</div> + <div><p>&#8287;</p> </div> + <div><p>&#8364;</p>€</div> + <div><p>&#8482;</p>™</div> + <div><p>&#9724;</p>◼</div> + <div><p>&#64257;</p>fi</div> + <div><p>&#64258;</p>fl</div> + <div><p>&#64259;</p>ffi</div> + <div><p>&#64260;</p>ffl</div> + </div> + </div> + + + </div> + </div> + + + <div id="specs"> + + </div> + + <div id="installing"> + <div class="section"> + <div class="grid7 firstcol"> + <h1>Installing Webfonts</h1> + + <p>Webfonts are supported by all major browser platforms but not all in the same way. There are currently four different font formats that must be included in order to target all browsers. This includes TTF, WOFF, EOT and SVG.</p> + + <h2>1. Upload your webfonts</h2> + <p>You must upload your webfont kit to your website. They should be in or near the same directory as your CSS files.</p> + + <h2>2. Include the webfont stylesheet</h2> + <p>A special CSS @font-face declaration helps the various browsers select the appropriate font it needs without causing you a bunch of headaches. Learn more about this syntax by reading the <a href="https://www.fontspring.com/blog/further-hardening-of-the-bulletproof-syntax">Fontspring blog post</a> about it. The code for it is as follows:</p> + + +<code> +@font-face{ + font-family: 'MyWebFont'; + src: url('WebFont.eot'); + src: url('WebFont.eot?#iefix') format('embedded-opentype'), + url('WebFont.woff') format('woff'), + url('WebFont.ttf') format('truetype'), + url('WebFont.svg#webfont') format('svg'); +} +</code> + + <p>We've already gone ahead and generated the code for you. All you have to do is link to the stylesheet in your HTML, like this:</p> + <code><link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8" /></code> + + <h2>3. Modify your own stylesheet</h2> + <p>To take advantage of your new fonts, you must tell your stylesheet to use them. Look at the original @font-face declaration above and find the property called "font-family." The name linked there will be what you use to reference the font. Prepend that webfont name to the font stack in the "font-family" property, inside the selector you want to change. For example:</p> +<code>p { font-family: 'WebFont', Arial, sans-serif; }</code> + +<h2>4. Test</h2> +<p>Getting webfonts to work cross-browser <em>can</em> be tricky. Use the information in the sidebar to help you if you find that fonts aren't loading in a particular browser.</p> + </div> + + <div class="grid5 sidebar"> + <div class="box"> + <h2>Troubleshooting<br />Font-Face Problems</h2> + <p>Having trouble getting your webfonts to load in your new website? Here are some tips to sort out what might be the problem.</p> + + <h3>Fonts not showing in any browser</h3> + + <p>This sounds like you need to work on the plumbing. You either did not upload the fonts to the correct directory, or you did not link the fonts properly in the CSS. If you've confirmed that all this is correct and you still have a problem, take a look at your .htaccess file and see if requests are getting intercepted.</p> + + <h3>Fonts not loading in iPhone or iPad</h3> + + <p>The most common problem here is that you are serving the fonts from an IIS server. IIS refuses to serve files that have unknown MIME types. If that is the case, you must set the MIME type for SVG to "image/svg+xml" in the server settings. Follow these instructions from Microsoft if you need help.</p> + + <h3>Fonts not loading in Firefox</h3> + + <p>The primary reason for this failure? You are still using a version Firefox older than 3.5. So upgrade already! If that isn't it, then you are very likely serving fonts from a different domain. Firefox requires that all font assets be served from the same domain. Lastly it is possible that you need to add WOFF to your list of MIME types (if you are serving via IIS.)</p> + + <h3>Fonts not loading in IE</h3> + + <p>Are you looking at Internet Explorer on an actual Windows machine or are you cheating by using a service like Adobe BrowserLab? Many of these screenshot services do not render @font-face for IE. Best to test it on a real machine.</p> + + <h3>Fonts not loading in IE9</h3> + + <p>IE9, like Firefox, requires that fonts be served from the same domain as the website. Make sure that is the case.</p> + </div> + </div> + </div> + + </div> + + </div> + <div id="footer"> + <p>©2010-2017 Font Squirrel. All rights reserved.</p> + </div> +</div> +</body> +</html> diff --git a/test/samples/aurorae/fonts/spectral/spectral-lightitalic-webfont.ttf b/test/samples/aurorae/fonts/spectral/spectral-lightitalic-webfont.ttf new file mode 100755 index 0000000000000000000000000000000000000000..b3afc86c2c94d896f98d4a51f69c9b7a60c3ed90 Binary files /dev/null and b/test/samples/aurorae/fonts/spectral/spectral-lightitalic-webfont.ttf differ diff --git a/test/samples/aurorae/fonts/spectral/spectral-lightitalic-webfont.woff b/test/samples/aurorae/fonts/spectral/spectral-lightitalic-webfont.woff new file mode 100755 index 0000000000000000000000000000000000000000..887765f2c3d86bda3c4f6292f3351988bdec72d6 Binary files /dev/null and b/test/samples/aurorae/fonts/spectral/spectral-lightitalic-webfont.woff differ diff --git a/test/samples/aurorae/fonts/spectral/spectral-lightitalic-webfont.woff2 b/test/samples/aurorae/fonts/spectral/spectral-lightitalic-webfont.woff2 new file mode 100755 index 0000000000000000000000000000000000000000..d88022c0aa0bd4f7075c2e1e77e1d741913377d6 Binary files /dev/null and b/test/samples/aurorae/fonts/spectral/spectral-lightitalic-webfont.woff2 differ diff --git a/test/samples/aurorae/fonts/spectral/spectral-medium-demo.html b/test/samples/aurorae/fonts/spectral/spectral-medium-demo.html new file mode 100755 index 0000000000000000000000000000000000000000..5bd0b19c52072e64ca4054520c879393b8430fe9 --- /dev/null +++ b/test/samples/aurorae/fonts/spectral/spectral-medium-demo.html @@ -0,0 +1,621 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> + +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> +<head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> + <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js" type="text/javascript" charset="utf-8"></script> + <script type="text/javascript"> + (function($){$.fn.easyTabs=function(option){var param=jQuery.extend({fadeSpeed:"fast",defaultContent:1,activeClass:'active'},option);$(this).each(function(){var thisId="#"+this.id;if(param.defaultContent==''){param.defaultContent=1;} + if(typeof param.defaultContent=="number") + {var defaultTab=$(thisId+" .tabs li:eq("+(param.defaultContent-1)+") a").attr('href').substr(1);}else{var defaultTab=param.defaultContent;} + $(thisId+" .tabs li a").each(function(){var tabToHide=$(this).attr('href').substr(1);$("#"+tabToHide).addClass('easytabs-tab-content');});hideAll();changeContent(defaultTab);function hideAll(){$(thisId+" .easytabs-tab-content").hide();} + function changeContent(tabId){hideAll();$(thisId+" .tabs li").removeClass(param.activeClass);$(thisId+" .tabs li a[href=#"+tabId+"]").closest('li').addClass(param.activeClass);if(param.fadeSpeed!="none") + {$(thisId+" #"+tabId).fadeIn(param.fadeSpeed);}else{$(thisId+" #"+tabId).show();}} + $(thisId+" .tabs li").click(function(){var tabId=$(this).find('a').attr('href').substr(1);changeContent(tabId);return false;});});}})(jQuery); + </script> + <link rel="stylesheet" href="specimen_files/specimen_stylesheet.css" type="text/css" charset="utf-8" /> + <link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8" /> + + <style type="text/css"> + body{ + font-family: 'spectralmedium'; + } + </style> + + <title>Spectral Medium Specimen</title> + + + <script type="text/javascript" charset="utf-8"> + $(document).ready(function() { + $('#container').easyTabs({defaultContent:1}); + }); + </script> +</head> + +<body> +<div id="container"> + <div id="header"> + Spectral Medium </div> + <ul class="tabs"> + <li><a href="#specimen">Specimen</a></li> + <li><a href="#layout">Sample Layout</a></li> + <li><a href="#glyphs">Glyphs & Languages</a></li> + <li><a href="#installing">Installing Webfonts</a></li> + + </ul> + + <div id="main_content"> + + + <div id="specimen"> + + <div class="section"> + <div class="grid12 firstcol"> + <div class="huge">AaBb</div> + </div> + </div> + + <div class="section"> + <div class="glyph_range">A​B​C​D​E​F​G​H​I​J​K​L​M​N​O​P​Q​R​S​T​U​V​W​X​Y​Z​a​b​c​d​e​f​g​h​i​j​k​l​m​n​o​p​q​r​s​t​u​v​w​x​y​z​1​2​3​4​5​6​7​8​9​0​&​.​,​?​!​@​(​)​#​$​%​*​+​-​=​:​;</div> + </div> + <div class="section"> + <div class="grid12 firstcol"> + <table class="sample_table"> + <tr><td>10</td><td class="size10">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>11</td><td class="size11">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>12</td><td class="size12">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>13</td><td class="size13">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>14</td><td class="size14">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>16</td><td class="size16">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>18</td><td class="size18">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>20</td><td class="size20">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>24</td><td class="size24">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>30</td><td class="size30">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>36</td><td class="size36">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>48</td><td class="size48">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>60</td><td class="size60">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>72</td><td class="size72">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>90</td><td class="size90">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + </table> + + </div> + + </div> + + + + <div class="section" id="bodycomparison"> + + + <div id="xheight"> + <div class="fontbody">◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼body</div><div class="arialbody">body</div><div class="verdanabody">body</div><div class="georgiabody">body</div></div> + <div class="fontbody" style="z-index:1"> + body<span>Spectral Medium</span> + </div> + <div class="arialbody" style="z-index:1"> + body<span>Arial</span> + </div> + <div class="verdanabody" style="z-index:1"> + body<span>Verdana</span> + </div> + <div class="georgiabody" style="z-index:1"> + body<span>Georgia</span> + </div> + + + + </div> + + + <div class="section psample psample_row1" id=""> + + <div class="grid2 firstcol"> + <p class="size10"><span>10.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid3"> + <p class="size11"><span>11.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid3"> + <p class="size12"><span>12.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid4"> + <p class="size13"><span>13.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="white_blend"></div> + + </div> + <div class="section psample psample_row2" id=""> + <div class="grid3 firstcol"> + <p class="size14"><span>14.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid4"> + <p class="size16"><span>16.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid5"> + <p class="size18"><span>18.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + + <div class="white_blend"></div> + + </div> + + <div class="section psample psample_row3" id=""> + <div class="grid5 firstcol"> + <p class="size20"><span>20.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + <div class="grid7"> + <p class="size24"><span>24.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + + <div class="white_blend"></div> + + </div> + + <div class="section psample psample_row4" id=""> + <div class="grid12 firstcol"> + <p class="size30"><span>30.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + <div class="white_blend"></div> + + </div> + + + + <div class="section psample psample_row1 fullreverse"> + <div class="grid2 firstcol"> + <p class="size10"><span>10.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid3"> + <p class="size11"><span>11.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid3"> + <p class="size12"><span>12.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid4"> + <p class="size13"><span>13.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="black_blend"></div> + + </div> + + <div class="section psample psample_row2 fullreverse"> + <div class="grid3 firstcol"> + <p class="size14"><span>14.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid4"> + <p class="size16"><span>16.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid5"> + <p class="size18"><span>18.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="black_blend"></div> + + </div> + + <div class="section psample fullreverse psample_row3" id=""> + <div class="grid5 firstcol"> + <p class="size20"><span>20.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + <div class="grid7"> + <p class="size24"><span>24.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + + <div class="black_blend"></div> + + </div> + + <div class="section psample fullreverse psample_row4" id="" style="border-bottom: 20px #000 solid;"> + <div class="grid12 firstcol"> + <p class="size30"><span>30.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + <div class="black_blend"></div> + + </div> + + + + + </div> + + <div id="layout"> + + <div class="section"> + + <div class="grid12 firstcol"> + <h1>Lorem Ipsum Dolor</h1> + <h2>Etiam porta sem malesuada magna mollis euismod</h2> + + <p class="byline">By <a href="#link">Aenean Lacinia</a></p> + </div> + </div> + <div class="section"> + <div class="grid8 firstcol"> + <p class="large">Donec sed odio dui. Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p> + + + <h3>Pellentesque ornare sem</h3> + + <p>Maecenas sed diam eget risus varius blandit sit amet non magna. Maecenas faucibus mollis interdum. Donec ullamcorper nulla non metus auctor fringilla. Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam id dolor id nibh ultricies vehicula ut id elit. </p> + + <p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. </p> + + <p>Nulla vitae elit libero, a pharetra augue. Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Aenean lacinia bibendum nulla sed consectetur. </p> + + <p>Nullam quis risus eget urna mollis ornare vel eu leo. Nullam quis risus eget urna mollis ornare vel eu leo. Maecenas sed diam eget risus varius blandit sit amet non magna. Donec ullamcorper nulla non metus auctor fringilla. </p> + + <h3>Cras mattis consectetur</h3> + + <p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Aenean lacinia bibendum nulla sed consectetur. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Cras mattis consectetur purus sit amet fermentum. </p> + + <p>Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam quis risus eget urna mollis ornare vel eu leo. Cras mattis consectetur purus sit amet fermentum.</p> + </div> + + <div class="grid4 sidebar"> + + <div class="box reverse"> + <p class="last">Nullam quis risus eget urna mollis ornare vel eu leo. Donec ullamcorper nulla non metus auctor fringilla. Cras mattis consectetur purus sit amet fermentum. Sed posuere consectetur est at lobortis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. </p> + </div> + + <p class="caption">Maecenas sed diam eget risus varius.</p> + + <p>Vestibulum id ligula porta felis euismod semper. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Vestibulum id ligula porta felis euismod semper. Sed posuere consectetur est at lobortis. Maecenas sed diam eget risus varius blandit sit amet non magna. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p> + + + + <p>Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Aenean lacinia bibendum nulla sed consectetur. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Aenean lacinia bibendum nulla sed consectetur. Nullam quis risus eget urna mollis ornare vel eu leo. </p> + + <p>Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Donec ullamcorper nulla non metus auctor fringilla. Maecenas faucibus mollis interdum. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p> + + </div> + </div> + + </div> + + + + + + + <div id="glyphs"> + <div class="section"> + <div class="grid12 firstcol"> + + <h1>Language Support</h1> + <p>The subset of Spectral Medium in this kit supports the following languages:<br /> + + Albanian, Basque, Breton, Chamorro, Danish, Dutch, English, Faroese, Finnish, French, Frisian, Galician, German, Icelandic, Italian, Malagasy, Norwegian, Portuguese, Spanish, Alsatian, Aragonese, Arapaho, Arrernte, Asturian, Aymara, Bislama, Cebuano, Corsican, Fijian, French_creole, Genoese, Gilbertese, Greenlandic, Haitian_creole, Hiligaynon, Hmong, Hopi, Ibanag, Iloko_ilokano, Indonesian, Interglossa_glosa, Interlingua, Irish_gaelic, Jerriais, Lojban, Lombard, Luxembourgeois, Manx, Mohawk, Norfolk_pitcairnese, Occitan, Oromo, Pangasinan, Papiamento, Piedmontese, Potawatomi, Rhaeto-romance, Romansh, Rotokas, Sami_lule, Samoan, Sardinian, Scots_gaelic, Seychelles_creole, Shona, Sicilian, Somali, Southern_ndebele, Swahili, Swati_swazi, Tagalog_filipino_pilipino, Tetum, Tok_pisin, Uyghur_latinized, Volapuk, Walloon, Warlpiri, Xhosa, Yapese, Zulu, Latinbasic, Ubasic, Demo </p> + <h1>Glyph Chart</h1> + <p>The subset of Spectral Medium in this kit includes all the glyphs listed below. Unicode entities are included above each glyph to help you insert individual characters into your layout.</p> + <div id="glyph_chart"> + + <div><p>&#32;</p> </div> + <div><p>&#33;</p>!</div> + <div><p>&#34;</p>"</div> + <div><p>&#35;</p>#</div> + <div><p>&#36;</p>$</div> + <div><p>&#37;</p>%</div> + <div><p>&#38;</p>&</div> + <div><p>&#39;</p>'</div> + <div><p>&#40;</p>(</div> + <div><p>&#41;</p>)</div> + <div><p>&#42;</p>*</div> + <div><p>&#43;</p>+</div> + <div><p>&#44;</p>,</div> + <div><p>&#45;</p>-</div> + <div><p>&#46;</p>.</div> + <div><p>&#47;</p>/</div> + <div><p>&#48;</p>0</div> + <div><p>&#49;</p>1</div> + <div><p>&#50;</p>2</div> + <div><p>&#51;</p>3</div> + <div><p>&#52;</p>4</div> + <div><p>&#53;</p>5</div> + <div><p>&#54;</p>6</div> + <div><p>&#55;</p>7</div> + <div><p>&#56;</p>8</div> + <div><p>&#57;</p>9</div> + <div><p>&#58;</p>:</div> + <div><p>&#59;</p>;</div> + <div><p>&#60;</p><</div> + <div><p>&#61;</p>=</div> + <div><p>&#62;</p>></div> + <div><p>&#63;</p>?</div> + <div><p>&#64;</p>@</div> + <div><p>&#65;</p>A</div> + <div><p>&#66;</p>B</div> + <div><p>&#67;</p>C</div> + <div><p>&#68;</p>D</div> + <div><p>&#69;</p>E</div> + <div><p>&#70;</p>F</div> + <div><p>&#71;</p>G</div> + <div><p>&#72;</p>H</div> + <div><p>&#73;</p>I</div> + <div><p>&#74;</p>J</div> + <div><p>&#75;</p>K</div> + <div><p>&#76;</p>L</div> + <div><p>&#77;</p>M</div> + <div><p>&#78;</p>N</div> + <div><p>&#79;</p>O</div> + <div><p>&#80;</p>P</div> + <div><p>&#81;</p>Q</div> + <div><p>&#82;</p>R</div> + <div><p>&#83;</p>S</div> + <div><p>&#84;</p>T</div> + <div><p>&#85;</p>U</div> + <div><p>&#86;</p>V</div> + <div><p>&#87;</p>W</div> + <div><p>&#88;</p>X</div> + <div><p>&#89;</p>Y</div> + <div><p>&#90;</p>Z</div> + <div><p>&#91;</p>[</div> + <div><p>&#92;</p>\</div> + <div><p>&#93;</p>]</div> + <div><p>&#94;</p>^</div> + <div><p>&#95;</p>_</div> + <div><p>&#96;</p>`</div> + <div><p>&#97;</p>a</div> + <div><p>&#98;</p>b</div> + <div><p>&#99;</p>c</div> + <div><p>&#100;</p>d</div> + <div><p>&#101;</p>e</div> + <div><p>&#102;</p>f</div> + <div><p>&#103;</p>g</div> + <div><p>&#104;</p>h</div> + <div><p>&#105;</p>i</div> + <div><p>&#106;</p>j</div> + <div><p>&#107;</p>k</div> + <div><p>&#108;</p>l</div> + <div><p>&#109;</p>m</div> + <div><p>&#110;</p>n</div> + <div><p>&#111;</p>o</div> + <div><p>&#112;</p>p</div> + <div><p>&#113;</p>q</div> + <div><p>&#114;</p>r</div> + <div><p>&#115;</p>s</div> + <div><p>&#116;</p>t</div> + <div><p>&#117;</p>u</div> + <div><p>&#118;</p>v</div> + <div><p>&#119;</p>w</div> + <div><p>&#120;</p>x</div> + <div><p>&#121;</p>y</div> + <div><p>&#122;</p>z</div> + <div><p>&#123;</p>{</div> + <div><p>&#124;</p>|</div> + <div><p>&#125;</p>}</div> + <div><p>&#126;</p>~</div> + <div><p>&#160;</p> </div> + <div><p>&#161;</p>¡</div> + <div><p>&#162;</p>¢</div> + <div><p>&#163;</p>£</div> + <div><p>&#164;</p>¤</div> + <div><p>&#165;</p>¥</div> + <div><p>&#166;</p>¦</div> + <div><p>&#167;</p>§</div> + <div><p>&#168;</p>¨</div> + <div><p>&#169;</p>©</div> + <div><p>&#170;</p>ª</div> + <div><p>&#171;</p>«</div> + <div><p>&#172;</p>¬</div> + <div><p>&#173;</p>­</div> + <div><p>&#174;</p>®</div> + <div><p>&#175;</p>¯</div> + <div><p>&#176;</p>°</div> + <div><p>&#177;</p>±</div> + <div><p>&#178;</p>²</div> + <div><p>&#179;</p>³</div> + <div><p>&#180;</p>´</div> + <div><p>&#181;</p>µ</div> + <div><p>&#182;</p>¶</div> + <div><p>&#183;</p>·</div> + <div><p>&#184;</p>¸</div> + <div><p>&#185;</p>¹</div> + <div><p>&#186;</p>º</div> + <div><p>&#187;</p>»</div> + <div><p>&#188;</p>¼</div> + <div><p>&#189;</p>½</div> + <div><p>&#190;</p>¾</div> + <div><p>&#191;</p>¿</div> + <div><p>&#192;</p>À</div> + <div><p>&#193;</p>Á</div> + <div><p>&#194;</p>Â</div> + <div><p>&#195;</p>Ã</div> + <div><p>&#196;</p>Ä</div> + <div><p>&#197;</p>Å</div> + <div><p>&#198;</p>Æ</div> + <div><p>&#199;</p>Ç</div> + <div><p>&#200;</p>È</div> + <div><p>&#201;</p>É</div> + <div><p>&#202;</p>Ê</div> + <div><p>&#203;</p>Ë</div> + <div><p>&#204;</p>Ì</div> + <div><p>&#205;</p>Í</div> + <div><p>&#206;</p>Î</div> + <div><p>&#207;</p>Ï</div> + <div><p>&#208;</p>Ð</div> + <div><p>&#209;</p>Ñ</div> + <div><p>&#210;</p>Ò</div> + <div><p>&#211;</p>Ó</div> + <div><p>&#212;</p>Ô</div> + <div><p>&#213;</p>Õ</div> + <div><p>&#214;</p>Ö</div> + <div><p>&#215;</p>×</div> + <div><p>&#216;</p>Ø</div> + <div><p>&#217;</p>Ù</div> + <div><p>&#218;</p>Ú</div> + <div><p>&#219;</p>Û</div> + <div><p>&#220;</p>Ü</div> + <div><p>&#221;</p>Ý</div> + <div><p>&#222;</p>Þ</div> + <div><p>&#223;</p>ß</div> + <div><p>&#224;</p>à</div> + <div><p>&#225;</p>á</div> + <div><p>&#226;</p>â</div> + <div><p>&#227;</p>ã</div> + <div><p>&#228;</p>ä</div> + <div><p>&#229;</p>å</div> + <div><p>&#230;</p>æ</div> + <div><p>&#231;</p>ç</div> + <div><p>&#232;</p>è</div> + <div><p>&#233;</p>é</div> + <div><p>&#234;</p>ê</div> + <div><p>&#235;</p>ë</div> + <div><p>&#236;</p>ì</div> + <div><p>&#237;</p>í</div> + <div><p>&#238;</p>î</div> + <div><p>&#239;</p>ï</div> + <div><p>&#240;</p>ð</div> + <div><p>&#241;</p>ñ</div> + <div><p>&#242;</p>ò</div> + <div><p>&#243;</p>ó</div> + <div><p>&#244;</p>ô</div> + <div><p>&#245;</p>õ</div> + <div><p>&#246;</p>ö</div> + <div><p>&#247;</p>÷</div> + <div><p>&#248;</p>ø</div> + <div><p>&#249;</p>ù</div> + <div><p>&#250;</p>ú</div> + <div><p>&#251;</p>û</div> + <div><p>&#252;</p>ü</div> + <div><p>&#253;</p>ý</div> + <div><p>&#254;</p>þ</div> + <div><p>&#255;</p>ÿ</div> + <div><p>&#338;</p>Œ</div> + <div><p>&#339;</p>œ</div> + <div><p>&#376;</p>Ÿ</div> + <div><p>&#710;</p>ˆ</div> + <div><p>&#732;</p>˜</div> + <div><p>&#8192;</p> </div> + <div><p>&#8193;</p> </div> + <div><p>&#8194;</p> </div> + <div><p>&#8195;</p> </div> + <div><p>&#8196;</p> </div> + <div><p>&#8197;</p> </div> + <div><p>&#8198;</p> </div> + <div><p>&#8199;</p> </div> + <div><p>&#8200;</p> </div> + <div><p>&#8201;</p> </div> + <div><p>&#8202;</p> </div> + <div><p>&#8208;</p>‐</div> + <div><p>&#8209;</p>‑</div> + <div><p>&#8210;</p>‒</div> + <div><p>&#8211;</p>–</div> + <div><p>&#8212;</p>—</div> + <div><p>&#8216;</p>‘</div> + <div><p>&#8217;</p>’</div> + <div><p>&#8218;</p>‚</div> + <div><p>&#8220;</p>“</div> + <div><p>&#8221;</p>”</div> + <div><p>&#8222;</p>„</div> + <div><p>&#8226;</p>•</div> + <div><p>&#8230;</p>…</div> + <div><p>&#8239;</p> </div> + <div><p>&#8249;</p>‹</div> + <div><p>&#8250;</p>›</div> + <div><p>&#8287;</p> </div> + <div><p>&#8364;</p>€</div> + <div><p>&#8482;</p>™</div> + <div><p>&#9724;</p>◼</div> + <div><p>&#64257;</p>fi</div> + <div><p>&#64258;</p>fl</div> + <div><p>&#64259;</p>ffi</div> + <div><p>&#64260;</p>ffl</div> + </div> + </div> + + + </div> + </div> + + + <div id="specs"> + + </div> + + <div id="installing"> + <div class="section"> + <div class="grid7 firstcol"> + <h1>Installing Webfonts</h1> + + <p>Webfonts are supported by all major browser platforms but not all in the same way. There are currently four different font formats that must be included in order to target all browsers. This includes TTF, WOFF, EOT and SVG.</p> + + <h2>1. Upload your webfonts</h2> + <p>You must upload your webfont kit to your website. They should be in or near the same directory as your CSS files.</p> + + <h2>2. Include the webfont stylesheet</h2> + <p>A special CSS @font-face declaration helps the various browsers select the appropriate font it needs without causing you a bunch of headaches. Learn more about this syntax by reading the <a href="https://www.fontspring.com/blog/further-hardening-of-the-bulletproof-syntax">Fontspring blog post</a> about it. The code for it is as follows:</p> + + +<code> +@font-face{ + font-family: 'MyWebFont'; + src: url('WebFont.eot'); + src: url('WebFont.eot?#iefix') format('embedded-opentype'), + url('WebFont.woff') format('woff'), + url('WebFont.ttf') format('truetype'), + url('WebFont.svg#webfont') format('svg'); +} +</code> + + <p>We've already gone ahead and generated the code for you. All you have to do is link to the stylesheet in your HTML, like this:</p> + <code><link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8" /></code> + + <h2>3. Modify your own stylesheet</h2> + <p>To take advantage of your new fonts, you must tell your stylesheet to use them. Look at the original @font-face declaration above and find the property called "font-family." The name linked there will be what you use to reference the font. Prepend that webfont name to the font stack in the "font-family" property, inside the selector you want to change. For example:</p> +<code>p { font-family: 'WebFont', Arial, sans-serif; }</code> + +<h2>4. Test</h2> +<p>Getting webfonts to work cross-browser <em>can</em> be tricky. Use the information in the sidebar to help you if you find that fonts aren't loading in a particular browser.</p> + </div> + + <div class="grid5 sidebar"> + <div class="box"> + <h2>Troubleshooting<br />Font-Face Problems</h2> + <p>Having trouble getting your webfonts to load in your new website? Here are some tips to sort out what might be the problem.</p> + + <h3>Fonts not showing in any browser</h3> + + <p>This sounds like you need to work on the plumbing. You either did not upload the fonts to the correct directory, or you did not link the fonts properly in the CSS. If you've confirmed that all this is correct and you still have a problem, take a look at your .htaccess file and see if requests are getting intercepted.</p> + + <h3>Fonts not loading in iPhone or iPad</h3> + + <p>The most common problem here is that you are serving the fonts from an IIS server. IIS refuses to serve files that have unknown MIME types. If that is the case, you must set the MIME type for SVG to "image/svg+xml" in the server settings. Follow these instructions from Microsoft if you need help.</p> + + <h3>Fonts not loading in Firefox</h3> + + <p>The primary reason for this failure? You are still using a version Firefox older than 3.5. So upgrade already! If that isn't it, then you are very likely serving fonts from a different domain. Firefox requires that all font assets be served from the same domain. Lastly it is possible that you need to add WOFF to your list of MIME types (if you are serving via IIS.)</p> + + <h3>Fonts not loading in IE</h3> + + <p>Are you looking at Internet Explorer on an actual Windows machine or are you cheating by using a service like Adobe BrowserLab? Many of these screenshot services do not render @font-face for IE. Best to test it on a real machine.</p> + + <h3>Fonts not loading in IE9</h3> + + <p>IE9, like Firefox, requires that fonts be served from the same domain as the website. Make sure that is the case.</p> + </div> + </div> + </div> + + </div> + + </div> + <div id="footer"> + <p>©2010-2017 Font Squirrel. All rights reserved.</p> + </div> +</div> +</body> +</html> diff --git a/test/samples/aurorae/fonts/spectral/spectral-medium-webfont.ttf b/test/samples/aurorae/fonts/spectral/spectral-medium-webfont.ttf new file mode 100755 index 0000000000000000000000000000000000000000..f98ecda3aedcdce9f21008d38ca4b258dfc861e5 Binary files /dev/null and b/test/samples/aurorae/fonts/spectral/spectral-medium-webfont.ttf differ diff --git a/test/samples/aurorae/fonts/spectral/spectral-medium-webfont.woff b/test/samples/aurorae/fonts/spectral/spectral-medium-webfont.woff new file mode 100755 index 0000000000000000000000000000000000000000..0c37315c2b7ce322d1c27cc8d7cadc71a47a4bd1 Binary files /dev/null and b/test/samples/aurorae/fonts/spectral/spectral-medium-webfont.woff differ diff --git a/test/samples/aurorae/fonts/spectral/spectral-medium-webfont.woff2 b/test/samples/aurorae/fonts/spectral/spectral-medium-webfont.woff2 new file mode 100755 index 0000000000000000000000000000000000000000..452a7f477852b4c1c0e2770bf3c186b5e0181c70 Binary files /dev/null and b/test/samples/aurorae/fonts/spectral/spectral-medium-webfont.woff2 differ diff --git a/test/samples/aurorae/fonts/spectral/spectral-mediumitalic-demo.html b/test/samples/aurorae/fonts/spectral/spectral-mediumitalic-demo.html new file mode 100755 index 0000000000000000000000000000000000000000..796847e39c1b28e081e670b7bb9fb6f4428c42df --- /dev/null +++ b/test/samples/aurorae/fonts/spectral/spectral-mediumitalic-demo.html @@ -0,0 +1,621 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> + +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> +<head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> + <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js" type="text/javascript" charset="utf-8"></script> + <script type="text/javascript"> + (function($){$.fn.easyTabs=function(option){var param=jQuery.extend({fadeSpeed:"fast",defaultContent:1,activeClass:'active'},option);$(this).each(function(){var thisId="#"+this.id;if(param.defaultContent==''){param.defaultContent=1;} + if(typeof param.defaultContent=="number") + {var defaultTab=$(thisId+" .tabs li:eq("+(param.defaultContent-1)+") a").attr('href').substr(1);}else{var defaultTab=param.defaultContent;} + $(thisId+" .tabs li a").each(function(){var tabToHide=$(this).attr('href').substr(1);$("#"+tabToHide).addClass('easytabs-tab-content');});hideAll();changeContent(defaultTab);function hideAll(){$(thisId+" .easytabs-tab-content").hide();} + function changeContent(tabId){hideAll();$(thisId+" .tabs li").removeClass(param.activeClass);$(thisId+" .tabs li a[href=#"+tabId+"]").closest('li').addClass(param.activeClass);if(param.fadeSpeed!="none") + {$(thisId+" #"+tabId).fadeIn(param.fadeSpeed);}else{$(thisId+" #"+tabId).show();}} + $(thisId+" .tabs li").click(function(){var tabId=$(this).find('a').attr('href').substr(1);changeContent(tabId);return false;});});}})(jQuery); + </script> + <link rel="stylesheet" href="specimen_files/specimen_stylesheet.css" type="text/css" charset="utf-8" /> + <link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8" /> + + <style type="text/css"> + body{ + font-family: 'spectralmedium_italic'; + } + </style> + + <title>Spectral Medium Italic Specimen</title> + + + <script type="text/javascript" charset="utf-8"> + $(document).ready(function() { + $('#container').easyTabs({defaultContent:1}); + }); + </script> +</head> + +<body> +<div id="container"> + <div id="header"> + Spectral Medium Italic </div> + <ul class="tabs"> + <li><a href="#specimen">Specimen</a></li> + <li><a href="#layout">Sample Layout</a></li> + <li><a href="#glyphs">Glyphs & Languages</a></li> + <li><a href="#installing">Installing Webfonts</a></li> + + </ul> + + <div id="main_content"> + + + <div id="specimen"> + + <div class="section"> + <div class="grid12 firstcol"> + <div class="huge">AaBb</div> + </div> + </div> + + <div class="section"> + <div class="glyph_range">A​B​C​D​E​F​G​H​I​J​K​L​M​N​O​P​Q​R​S​T​U​V​W​X​Y​Z​a​b​c​d​e​f​g​h​i​j​k​l​m​n​o​p​q​r​s​t​u​v​w​x​y​z​1​2​3​4​5​6​7​8​9​0​&​.​,​?​!​@​(​)​#​$​%​*​+​-​=​:​;</div> + </div> + <div class="section"> + <div class="grid12 firstcol"> + <table class="sample_table"> + <tr><td>10</td><td class="size10">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>11</td><td class="size11">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>12</td><td class="size12">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>13</td><td class="size13">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>14</td><td class="size14">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>16</td><td class="size16">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>18</td><td class="size18">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>20</td><td class="size20">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>24</td><td class="size24">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>30</td><td class="size30">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>36</td><td class="size36">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>48</td><td class="size48">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>60</td><td class="size60">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>72</td><td class="size72">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>90</td><td class="size90">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + </table> + + </div> + + </div> + + + + <div class="section" id="bodycomparison"> + + + <div id="xheight"> + <div class="fontbody">◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼body</div><div class="arialbody">body</div><div class="verdanabody">body</div><div class="georgiabody">body</div></div> + <div class="fontbody" style="z-index:1"> + body<span>Spectral Medium Italic</span> + </div> + <div class="arialbody" style="z-index:1"> + body<span>Arial</span> + </div> + <div class="verdanabody" style="z-index:1"> + body<span>Verdana</span> + </div> + <div class="georgiabody" style="z-index:1"> + body<span>Georgia</span> + </div> + + + + </div> + + + <div class="section psample psample_row1" id=""> + + <div class="grid2 firstcol"> + <p class="size10"><span>10.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid3"> + <p class="size11"><span>11.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid3"> + <p class="size12"><span>12.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid4"> + <p class="size13"><span>13.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="white_blend"></div> + + </div> + <div class="section psample psample_row2" id=""> + <div class="grid3 firstcol"> + <p class="size14"><span>14.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid4"> + <p class="size16"><span>16.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid5"> + <p class="size18"><span>18.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + + <div class="white_blend"></div> + + </div> + + <div class="section psample psample_row3" id=""> + <div class="grid5 firstcol"> + <p class="size20"><span>20.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + <div class="grid7"> + <p class="size24"><span>24.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + + <div class="white_blend"></div> + + </div> + + <div class="section psample psample_row4" id=""> + <div class="grid12 firstcol"> + <p class="size30"><span>30.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + <div class="white_blend"></div> + + </div> + + + + <div class="section psample psample_row1 fullreverse"> + <div class="grid2 firstcol"> + <p class="size10"><span>10.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid3"> + <p class="size11"><span>11.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid3"> + <p class="size12"><span>12.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid4"> + <p class="size13"><span>13.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="black_blend"></div> + + </div> + + <div class="section psample psample_row2 fullreverse"> + <div class="grid3 firstcol"> + <p class="size14"><span>14.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid4"> + <p class="size16"><span>16.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid5"> + <p class="size18"><span>18.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="black_blend"></div> + + </div> + + <div class="section psample fullreverse psample_row3" id=""> + <div class="grid5 firstcol"> + <p class="size20"><span>20.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + <div class="grid7"> + <p class="size24"><span>24.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + + <div class="black_blend"></div> + + </div> + + <div class="section psample fullreverse psample_row4" id="" style="border-bottom: 20px #000 solid;"> + <div class="grid12 firstcol"> + <p class="size30"><span>30.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + <div class="black_blend"></div> + + </div> + + + + + </div> + + <div id="layout"> + + <div class="section"> + + <div class="grid12 firstcol"> + <h1>Lorem Ipsum Dolor</h1> + <h2>Etiam porta sem malesuada magna mollis euismod</h2> + + <p class="byline">By <a href="#link">Aenean Lacinia</a></p> + </div> + </div> + <div class="section"> + <div class="grid8 firstcol"> + <p class="large">Donec sed odio dui. Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p> + + + <h3>Pellentesque ornare sem</h3> + + <p>Maecenas sed diam eget risus varius blandit sit amet non magna. Maecenas faucibus mollis interdum. Donec ullamcorper nulla non metus auctor fringilla. Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam id dolor id nibh ultricies vehicula ut id elit. </p> + + <p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. </p> + + <p>Nulla vitae elit libero, a pharetra augue. Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Aenean lacinia bibendum nulla sed consectetur. </p> + + <p>Nullam quis risus eget urna mollis ornare vel eu leo. Nullam quis risus eget urna mollis ornare vel eu leo. Maecenas sed diam eget risus varius blandit sit amet non magna. Donec ullamcorper nulla non metus auctor fringilla. </p> + + <h3>Cras mattis consectetur</h3> + + <p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Aenean lacinia bibendum nulla sed consectetur. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Cras mattis consectetur purus sit amet fermentum. </p> + + <p>Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam quis risus eget urna mollis ornare vel eu leo. Cras mattis consectetur purus sit amet fermentum.</p> + </div> + + <div class="grid4 sidebar"> + + <div class="box reverse"> + <p class="last">Nullam quis risus eget urna mollis ornare vel eu leo. Donec ullamcorper nulla non metus auctor fringilla. Cras mattis consectetur purus sit amet fermentum. Sed posuere consectetur est at lobortis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. </p> + </div> + + <p class="caption">Maecenas sed diam eget risus varius.</p> + + <p>Vestibulum id ligula porta felis euismod semper. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Vestibulum id ligula porta felis euismod semper. Sed posuere consectetur est at lobortis. Maecenas sed diam eget risus varius blandit sit amet non magna. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p> + + + + <p>Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Aenean lacinia bibendum nulla sed consectetur. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Aenean lacinia bibendum nulla sed consectetur. Nullam quis risus eget urna mollis ornare vel eu leo. </p> + + <p>Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Donec ullamcorper nulla non metus auctor fringilla. Maecenas faucibus mollis interdum. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p> + + </div> + </div> + + </div> + + + + + + + <div id="glyphs"> + <div class="section"> + <div class="grid12 firstcol"> + + <h1>Language Support</h1> + <p>The subset of Spectral Medium Italic in this kit supports the following languages:<br /> + + Albanian, Basque, Breton, Chamorro, Danish, Dutch, English, Faroese, Finnish, French, Frisian, Galician, German, Icelandic, Italian, Malagasy, Norwegian, Portuguese, Spanish, Alsatian, Aragonese, Arapaho, Arrernte, Asturian, Aymara, Bislama, Cebuano, Corsican, Fijian, French_creole, Genoese, Gilbertese, Greenlandic, Haitian_creole, Hiligaynon, Hmong, Hopi, Ibanag, Iloko_ilokano, Indonesian, Interglossa_glosa, Interlingua, Irish_gaelic, Jerriais, Lojban, Lombard, Luxembourgeois, Manx, Mohawk, Norfolk_pitcairnese, Occitan, Oromo, Pangasinan, Papiamento, Piedmontese, Potawatomi, Rhaeto-romance, Romansh, Rotokas, Sami_lule, Samoan, Sardinian, Scots_gaelic, Seychelles_creole, Shona, Sicilian, Somali, Southern_ndebele, Swahili, Swati_swazi, Tagalog_filipino_pilipino, Tetum, Tok_pisin, Uyghur_latinized, Volapuk, Walloon, Warlpiri, Xhosa, Yapese, Zulu, Latinbasic, Ubasic, Demo </p> + <h1>Glyph Chart</h1> + <p>The subset of Spectral Medium Italic in this kit includes all the glyphs listed below. Unicode entities are included above each glyph to help you insert individual characters into your layout.</p> + <div id="glyph_chart"> + + <div><p>&#32;</p> </div> + <div><p>&#33;</p>!</div> + <div><p>&#34;</p>"</div> + <div><p>&#35;</p>#</div> + <div><p>&#36;</p>$</div> + <div><p>&#37;</p>%</div> + <div><p>&#38;</p>&</div> + <div><p>&#39;</p>'</div> + <div><p>&#40;</p>(</div> + <div><p>&#41;</p>)</div> + <div><p>&#42;</p>*</div> + <div><p>&#43;</p>+</div> + <div><p>&#44;</p>,</div> + <div><p>&#45;</p>-</div> + <div><p>&#46;</p>.</div> + <div><p>&#47;</p>/</div> + <div><p>&#48;</p>0</div> + <div><p>&#49;</p>1</div> + <div><p>&#50;</p>2</div> + <div><p>&#51;</p>3</div> + <div><p>&#52;</p>4</div> + <div><p>&#53;</p>5</div> + <div><p>&#54;</p>6</div> + <div><p>&#55;</p>7</div> + <div><p>&#56;</p>8</div> + <div><p>&#57;</p>9</div> + <div><p>&#58;</p>:</div> + <div><p>&#59;</p>;</div> + <div><p>&#60;</p><</div> + <div><p>&#61;</p>=</div> + <div><p>&#62;</p>></div> + <div><p>&#63;</p>?</div> + <div><p>&#64;</p>@</div> + <div><p>&#65;</p>A</div> + <div><p>&#66;</p>B</div> + <div><p>&#67;</p>C</div> + <div><p>&#68;</p>D</div> + <div><p>&#69;</p>E</div> + <div><p>&#70;</p>F</div> + <div><p>&#71;</p>G</div> + <div><p>&#72;</p>H</div> + <div><p>&#73;</p>I</div> + <div><p>&#74;</p>J</div> + <div><p>&#75;</p>K</div> + <div><p>&#76;</p>L</div> + <div><p>&#77;</p>M</div> + <div><p>&#78;</p>N</div> + <div><p>&#79;</p>O</div> + <div><p>&#80;</p>P</div> + <div><p>&#81;</p>Q</div> + <div><p>&#82;</p>R</div> + <div><p>&#83;</p>S</div> + <div><p>&#84;</p>T</div> + <div><p>&#85;</p>U</div> + <div><p>&#86;</p>V</div> + <div><p>&#87;</p>W</div> + <div><p>&#88;</p>X</div> + <div><p>&#89;</p>Y</div> + <div><p>&#90;</p>Z</div> + <div><p>&#91;</p>[</div> + <div><p>&#92;</p>\</div> + <div><p>&#93;</p>]</div> + <div><p>&#94;</p>^</div> + <div><p>&#95;</p>_</div> + <div><p>&#96;</p>`</div> + <div><p>&#97;</p>a</div> + <div><p>&#98;</p>b</div> + <div><p>&#99;</p>c</div> + <div><p>&#100;</p>d</div> + <div><p>&#101;</p>e</div> + <div><p>&#102;</p>f</div> + <div><p>&#103;</p>g</div> + <div><p>&#104;</p>h</div> + <div><p>&#105;</p>i</div> + <div><p>&#106;</p>j</div> + <div><p>&#107;</p>k</div> + <div><p>&#108;</p>l</div> + <div><p>&#109;</p>m</div> + <div><p>&#110;</p>n</div> + <div><p>&#111;</p>o</div> + <div><p>&#112;</p>p</div> + <div><p>&#113;</p>q</div> + <div><p>&#114;</p>r</div> + <div><p>&#115;</p>s</div> + <div><p>&#116;</p>t</div> + <div><p>&#117;</p>u</div> + <div><p>&#118;</p>v</div> + <div><p>&#119;</p>w</div> + <div><p>&#120;</p>x</div> + <div><p>&#121;</p>y</div> + <div><p>&#122;</p>z</div> + <div><p>&#123;</p>{</div> + <div><p>&#124;</p>|</div> + <div><p>&#125;</p>}</div> + <div><p>&#126;</p>~</div> + <div><p>&#160;</p> </div> + <div><p>&#161;</p>¡</div> + <div><p>&#162;</p>¢</div> + <div><p>&#163;</p>£</div> + <div><p>&#164;</p>¤</div> + <div><p>&#165;</p>¥</div> + <div><p>&#166;</p>¦</div> + <div><p>&#167;</p>§</div> + <div><p>&#168;</p>¨</div> + <div><p>&#169;</p>©</div> + <div><p>&#170;</p>ª</div> + <div><p>&#171;</p>«</div> + <div><p>&#172;</p>¬</div> + <div><p>&#173;</p>­</div> + <div><p>&#174;</p>®</div> + <div><p>&#175;</p>¯</div> + <div><p>&#176;</p>°</div> + <div><p>&#177;</p>±</div> + <div><p>&#178;</p>²</div> + <div><p>&#179;</p>³</div> + <div><p>&#180;</p>´</div> + <div><p>&#181;</p>µ</div> + <div><p>&#182;</p>¶</div> + <div><p>&#183;</p>·</div> + <div><p>&#184;</p>¸</div> + <div><p>&#185;</p>¹</div> + <div><p>&#186;</p>º</div> + <div><p>&#187;</p>»</div> + <div><p>&#188;</p>¼</div> + <div><p>&#189;</p>½</div> + <div><p>&#190;</p>¾</div> + <div><p>&#191;</p>¿</div> + <div><p>&#192;</p>À</div> + <div><p>&#193;</p>Á</div> + <div><p>&#194;</p>Â</div> + <div><p>&#195;</p>Ã</div> + <div><p>&#196;</p>Ä</div> + <div><p>&#197;</p>Å</div> + <div><p>&#198;</p>Æ</div> + <div><p>&#199;</p>Ç</div> + <div><p>&#200;</p>È</div> + <div><p>&#201;</p>É</div> + <div><p>&#202;</p>Ê</div> + <div><p>&#203;</p>Ë</div> + <div><p>&#204;</p>Ì</div> + <div><p>&#205;</p>Í</div> + <div><p>&#206;</p>Î</div> + <div><p>&#207;</p>Ï</div> + <div><p>&#208;</p>Ð</div> + <div><p>&#209;</p>Ñ</div> + <div><p>&#210;</p>Ò</div> + <div><p>&#211;</p>Ó</div> + <div><p>&#212;</p>Ô</div> + <div><p>&#213;</p>Õ</div> + <div><p>&#214;</p>Ö</div> + <div><p>&#215;</p>×</div> + <div><p>&#216;</p>Ø</div> + <div><p>&#217;</p>Ù</div> + <div><p>&#218;</p>Ú</div> + <div><p>&#219;</p>Û</div> + <div><p>&#220;</p>Ü</div> + <div><p>&#221;</p>Ý</div> + <div><p>&#222;</p>Þ</div> + <div><p>&#223;</p>ß</div> + <div><p>&#224;</p>à</div> + <div><p>&#225;</p>á</div> + <div><p>&#226;</p>â</div> + <div><p>&#227;</p>ã</div> + <div><p>&#228;</p>ä</div> + <div><p>&#229;</p>å</div> + <div><p>&#230;</p>æ</div> + <div><p>&#231;</p>ç</div> + <div><p>&#232;</p>è</div> + <div><p>&#233;</p>é</div> + <div><p>&#234;</p>ê</div> + <div><p>&#235;</p>ë</div> + <div><p>&#236;</p>ì</div> + <div><p>&#237;</p>í</div> + <div><p>&#238;</p>î</div> + <div><p>&#239;</p>ï</div> + <div><p>&#240;</p>ð</div> + <div><p>&#241;</p>ñ</div> + <div><p>&#242;</p>ò</div> + <div><p>&#243;</p>ó</div> + <div><p>&#244;</p>ô</div> + <div><p>&#245;</p>õ</div> + <div><p>&#246;</p>ö</div> + <div><p>&#247;</p>÷</div> + <div><p>&#248;</p>ø</div> + <div><p>&#249;</p>ù</div> + <div><p>&#250;</p>ú</div> + <div><p>&#251;</p>û</div> + <div><p>&#252;</p>ü</div> + <div><p>&#253;</p>ý</div> + <div><p>&#254;</p>þ</div> + <div><p>&#255;</p>ÿ</div> + <div><p>&#338;</p>Œ</div> + <div><p>&#339;</p>œ</div> + <div><p>&#376;</p>Ÿ</div> + <div><p>&#710;</p>ˆ</div> + <div><p>&#732;</p>˜</div> + <div><p>&#8192;</p> </div> + <div><p>&#8193;</p> </div> + <div><p>&#8194;</p> </div> + <div><p>&#8195;</p> </div> + <div><p>&#8196;</p> </div> + <div><p>&#8197;</p> </div> + <div><p>&#8198;</p> </div> + <div><p>&#8199;</p> </div> + <div><p>&#8200;</p> </div> + <div><p>&#8201;</p> </div> + <div><p>&#8202;</p> </div> + <div><p>&#8208;</p>‐</div> + <div><p>&#8209;</p>‑</div> + <div><p>&#8210;</p>‒</div> + <div><p>&#8211;</p>–</div> + <div><p>&#8212;</p>—</div> + <div><p>&#8216;</p>‘</div> + <div><p>&#8217;</p>’</div> + <div><p>&#8218;</p>‚</div> + <div><p>&#8220;</p>“</div> + <div><p>&#8221;</p>”</div> + <div><p>&#8222;</p>„</div> + <div><p>&#8226;</p>•</div> + <div><p>&#8230;</p>…</div> + <div><p>&#8239;</p> </div> + <div><p>&#8249;</p>‹</div> + <div><p>&#8250;</p>›</div> + <div><p>&#8287;</p> </div> + <div><p>&#8364;</p>€</div> + <div><p>&#8482;</p>™</div> + <div><p>&#9724;</p>◼</div> + <div><p>&#64257;</p>fi</div> + <div><p>&#64258;</p>fl</div> + <div><p>&#64259;</p>ffi</div> + <div><p>&#64260;</p>ffl</div> + </div> + </div> + + + </div> + </div> + + + <div id="specs"> + + </div> + + <div id="installing"> + <div class="section"> + <div class="grid7 firstcol"> + <h1>Installing Webfonts</h1> + + <p>Webfonts are supported by all major browser platforms but not all in the same way. There are currently four different font formats that must be included in order to target all browsers. This includes TTF, WOFF, EOT and SVG.</p> + + <h2>1. Upload your webfonts</h2> + <p>You must upload your webfont kit to your website. They should be in or near the same directory as your CSS files.</p> + + <h2>2. Include the webfont stylesheet</h2> + <p>A special CSS @font-face declaration helps the various browsers select the appropriate font it needs without causing you a bunch of headaches. Learn more about this syntax by reading the <a href="https://www.fontspring.com/blog/further-hardening-of-the-bulletproof-syntax">Fontspring blog post</a> about it. The code for it is as follows:</p> + + +<code> +@font-face{ + font-family: 'MyWebFont'; + src: url('WebFont.eot'); + src: url('WebFont.eot?#iefix') format('embedded-opentype'), + url('WebFont.woff') format('woff'), + url('WebFont.ttf') format('truetype'), + url('WebFont.svg#webfont') format('svg'); +} +</code> + + <p>We've already gone ahead and generated the code for you. All you have to do is link to the stylesheet in your HTML, like this:</p> + <code><link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8" /></code> + + <h2>3. Modify your own stylesheet</h2> + <p>To take advantage of your new fonts, you must tell your stylesheet to use them. Look at the original @font-face declaration above and find the property called "font-family." The name linked there will be what you use to reference the font. Prepend that webfont name to the font stack in the "font-family" property, inside the selector you want to change. For example:</p> +<code>p { font-family: 'WebFont', Arial, sans-serif; }</code> + +<h2>4. Test</h2> +<p>Getting webfonts to work cross-browser <em>can</em> be tricky. Use the information in the sidebar to help you if you find that fonts aren't loading in a particular browser.</p> + </div> + + <div class="grid5 sidebar"> + <div class="box"> + <h2>Troubleshooting<br />Font-Face Problems</h2> + <p>Having trouble getting your webfonts to load in your new website? Here are some tips to sort out what might be the problem.</p> + + <h3>Fonts not showing in any browser</h3> + + <p>This sounds like you need to work on the plumbing. You either did not upload the fonts to the correct directory, or you did not link the fonts properly in the CSS. If you've confirmed that all this is correct and you still have a problem, take a look at your .htaccess file and see if requests are getting intercepted.</p> + + <h3>Fonts not loading in iPhone or iPad</h3> + + <p>The most common problem here is that you are serving the fonts from an IIS server. IIS refuses to serve files that have unknown MIME types. If that is the case, you must set the MIME type for SVG to "image/svg+xml" in the server settings. Follow these instructions from Microsoft if you need help.</p> + + <h3>Fonts not loading in Firefox</h3> + + <p>The primary reason for this failure? You are still using a version Firefox older than 3.5. So upgrade already! If that isn't it, then you are very likely serving fonts from a different domain. Firefox requires that all font assets be served from the same domain. Lastly it is possible that you need to add WOFF to your list of MIME types (if you are serving via IIS.)</p> + + <h3>Fonts not loading in IE</h3> + + <p>Are you looking at Internet Explorer on an actual Windows machine or are you cheating by using a service like Adobe BrowserLab? Many of these screenshot services do not render @font-face for IE. Best to test it on a real machine.</p> + + <h3>Fonts not loading in IE9</h3> + + <p>IE9, like Firefox, requires that fonts be served from the same domain as the website. Make sure that is the case.</p> + </div> + </div> + </div> + + </div> + + </div> + <div id="footer"> + <p>©2010-2017 Font Squirrel. All rights reserved.</p> + </div> +</div> +</body> +</html> diff --git a/test/samples/aurorae/fonts/spectral/spectral-mediumitalic-webfont.woff b/test/samples/aurorae/fonts/spectral/spectral-mediumitalic-webfont.woff new file mode 100755 index 0000000000000000000000000000000000000000..c399397a9c0b623748aeb5de13914520bef209f4 Binary files /dev/null and b/test/samples/aurorae/fonts/spectral/spectral-mediumitalic-webfont.woff differ diff --git a/test/samples/aurorae/fonts/spectral/spectral-mediumitalic-webfont.woff2 b/test/samples/aurorae/fonts/spectral/spectral-mediumitalic-webfont.woff2 new file mode 100755 index 0000000000000000000000000000000000000000..9714e6cf59ab761d79b65815090a3808b101205a Binary files /dev/null and b/test/samples/aurorae/fonts/spectral/spectral-mediumitalic-webfont.woff2 differ diff --git a/test/samples/aurorae/fonts/spectral/spectral-regular-demo.html b/test/samples/aurorae/fonts/spectral/spectral-regular-demo.html new file mode 100755 index 0000000000000000000000000000000000000000..4ea33b75c9d6189a25758e3654015cdd45f5139e --- /dev/null +++ b/test/samples/aurorae/fonts/spectral/spectral-regular-demo.html @@ -0,0 +1,621 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> + +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> +<head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> + <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js" type="text/javascript" charset="utf-8"></script> + <script type="text/javascript"> + (function($){$.fn.easyTabs=function(option){var param=jQuery.extend({fadeSpeed:"fast",defaultContent:1,activeClass:'active'},option);$(this).each(function(){var thisId="#"+this.id;if(param.defaultContent==''){param.defaultContent=1;} + if(typeof param.defaultContent=="number") + {var defaultTab=$(thisId+" .tabs li:eq("+(param.defaultContent-1)+") a").attr('href').substr(1);}else{var defaultTab=param.defaultContent;} + $(thisId+" .tabs li a").each(function(){var tabToHide=$(this).attr('href').substr(1);$("#"+tabToHide).addClass('easytabs-tab-content');});hideAll();changeContent(defaultTab);function hideAll(){$(thisId+" .easytabs-tab-content").hide();} + function changeContent(tabId){hideAll();$(thisId+" .tabs li").removeClass(param.activeClass);$(thisId+" .tabs li a[href=#"+tabId+"]").closest('li').addClass(param.activeClass);if(param.fadeSpeed!="none") + {$(thisId+" #"+tabId).fadeIn(param.fadeSpeed);}else{$(thisId+" #"+tabId).show();}} + $(thisId+" .tabs li").click(function(){var tabId=$(this).find('a').attr('href').substr(1);changeContent(tabId);return false;});});}})(jQuery); + </script> + <link rel="stylesheet" href="specimen_files/specimen_stylesheet.css" type="text/css" charset="utf-8" /> + <link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8" /> + + <style type="text/css"> + body{ + font-family: 'spectralregular'; + } + </style> + + <title>Spectral Regular Specimen</title> + + + <script type="text/javascript" charset="utf-8"> + $(document).ready(function() { + $('#container').easyTabs({defaultContent:1}); + }); + </script> +</head> + +<body> +<div id="container"> + <div id="header"> + Spectral Regular </div> + <ul class="tabs"> + <li><a href="#specimen">Specimen</a></li> + <li><a href="#layout">Sample Layout</a></li> + <li><a href="#glyphs">Glyphs & Languages</a></li> + <li><a href="#installing">Installing Webfonts</a></li> + + </ul> + + <div id="main_content"> + + + <div id="specimen"> + + <div class="section"> + <div class="grid12 firstcol"> + <div class="huge">AaBb</div> + </div> + </div> + + <div class="section"> + <div class="glyph_range">A​B​C​D​E​F​G​H​I​J​K​L​M​N​O​P​Q​R​S​T​U​V​W​X​Y​Z​a​b​c​d​e​f​g​h​i​j​k​l​m​n​o​p​q​r​s​t​u​v​w​x​y​z​1​2​3​4​5​6​7​8​9​0​&​.​,​?​!​@​(​)​#​$​%​*​+​-​=​:​;</div> + </div> + <div class="section"> + <div class="grid12 firstcol"> + <table class="sample_table"> + <tr><td>10</td><td class="size10">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>11</td><td class="size11">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>12</td><td class="size12">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>13</td><td class="size13">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>14</td><td class="size14">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>16</td><td class="size16">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>18</td><td class="size18">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>20</td><td class="size20">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>24</td><td class="size24">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>30</td><td class="size30">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>36</td><td class="size36">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>48</td><td class="size48">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>60</td><td class="size60">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>72</td><td class="size72">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>90</td><td class="size90">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + </table> + + </div> + + </div> + + + + <div class="section" id="bodycomparison"> + + + <div id="xheight"> + <div class="fontbody">◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼body</div><div class="arialbody">body</div><div class="verdanabody">body</div><div class="georgiabody">body</div></div> + <div class="fontbody" style="z-index:1"> + body<span>Spectral Regular</span> + </div> + <div class="arialbody" style="z-index:1"> + body<span>Arial</span> + </div> + <div class="verdanabody" style="z-index:1"> + body<span>Verdana</span> + </div> + <div class="georgiabody" style="z-index:1"> + body<span>Georgia</span> + </div> + + + + </div> + + + <div class="section psample psample_row1" id=""> + + <div class="grid2 firstcol"> + <p class="size10"><span>10.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid3"> + <p class="size11"><span>11.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid3"> + <p class="size12"><span>12.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid4"> + <p class="size13"><span>13.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="white_blend"></div> + + </div> + <div class="section psample psample_row2" id=""> + <div class="grid3 firstcol"> + <p class="size14"><span>14.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid4"> + <p class="size16"><span>16.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid5"> + <p class="size18"><span>18.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + + <div class="white_blend"></div> + + </div> + + <div class="section psample psample_row3" id=""> + <div class="grid5 firstcol"> + <p class="size20"><span>20.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + <div class="grid7"> + <p class="size24"><span>24.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + + <div class="white_blend"></div> + + </div> + + <div class="section psample psample_row4" id=""> + <div class="grid12 firstcol"> + <p class="size30"><span>30.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + <div class="white_blend"></div> + + </div> + + + + <div class="section psample psample_row1 fullreverse"> + <div class="grid2 firstcol"> + <p class="size10"><span>10.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid3"> + <p class="size11"><span>11.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid3"> + <p class="size12"><span>12.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid4"> + <p class="size13"><span>13.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="black_blend"></div> + + </div> + + <div class="section psample psample_row2 fullreverse"> + <div class="grid3 firstcol"> + <p class="size14"><span>14.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid4"> + <p class="size16"><span>16.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid5"> + <p class="size18"><span>18.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="black_blend"></div> + + </div> + + <div class="section psample fullreverse psample_row3" id=""> + <div class="grid5 firstcol"> + <p class="size20"><span>20.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + <div class="grid7"> + <p class="size24"><span>24.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + + <div class="black_blend"></div> + + </div> + + <div class="section psample fullreverse psample_row4" id="" style="border-bottom: 20px #000 solid;"> + <div class="grid12 firstcol"> + <p class="size30"><span>30.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + <div class="black_blend"></div> + + </div> + + + + + </div> + + <div id="layout"> + + <div class="section"> + + <div class="grid12 firstcol"> + <h1>Lorem Ipsum Dolor</h1> + <h2>Etiam porta sem malesuada magna mollis euismod</h2> + + <p class="byline">By <a href="#link">Aenean Lacinia</a></p> + </div> + </div> + <div class="section"> + <div class="grid8 firstcol"> + <p class="large">Donec sed odio dui. Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p> + + + <h3>Pellentesque ornare sem</h3> + + <p>Maecenas sed diam eget risus varius blandit sit amet non magna. Maecenas faucibus mollis interdum. Donec ullamcorper nulla non metus auctor fringilla. Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam id dolor id nibh ultricies vehicula ut id elit. </p> + + <p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. </p> + + <p>Nulla vitae elit libero, a pharetra augue. Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Aenean lacinia bibendum nulla sed consectetur. </p> + + <p>Nullam quis risus eget urna mollis ornare vel eu leo. Nullam quis risus eget urna mollis ornare vel eu leo. Maecenas sed diam eget risus varius blandit sit amet non magna. Donec ullamcorper nulla non metus auctor fringilla. </p> + + <h3>Cras mattis consectetur</h3> + + <p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Aenean lacinia bibendum nulla sed consectetur. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Cras mattis consectetur purus sit amet fermentum. </p> + + <p>Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam quis risus eget urna mollis ornare vel eu leo. Cras mattis consectetur purus sit amet fermentum.</p> + </div> + + <div class="grid4 sidebar"> + + <div class="box reverse"> + <p class="last">Nullam quis risus eget urna mollis ornare vel eu leo. Donec ullamcorper nulla non metus auctor fringilla. Cras mattis consectetur purus sit amet fermentum. Sed posuere consectetur est at lobortis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. </p> + </div> + + <p class="caption">Maecenas sed diam eget risus varius.</p> + + <p>Vestibulum id ligula porta felis euismod semper. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Vestibulum id ligula porta felis euismod semper. Sed posuere consectetur est at lobortis. Maecenas sed diam eget risus varius blandit sit amet non magna. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p> + + + + <p>Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Aenean lacinia bibendum nulla sed consectetur. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Aenean lacinia bibendum nulla sed consectetur. Nullam quis risus eget urna mollis ornare vel eu leo. </p> + + <p>Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Donec ullamcorper nulla non metus auctor fringilla. Maecenas faucibus mollis interdum. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p> + + </div> + </div> + + </div> + + + + + + + <div id="glyphs"> + <div class="section"> + <div class="grid12 firstcol"> + + <h1>Language Support</h1> + <p>The subset of Spectral Regular in this kit supports the following languages:<br /> + + Albanian, Basque, Breton, Chamorro, Danish, Dutch, English, Faroese, Finnish, French, Frisian, Galician, German, Icelandic, Italian, Malagasy, Norwegian, Portuguese, Spanish, Alsatian, Aragonese, Arapaho, Arrernte, Asturian, Aymara, Bislama, Cebuano, Corsican, Fijian, French_creole, Genoese, Gilbertese, Greenlandic, Haitian_creole, Hiligaynon, Hmong, Hopi, Ibanag, Iloko_ilokano, Indonesian, Interglossa_glosa, Interlingua, Irish_gaelic, Jerriais, Lojban, Lombard, Luxembourgeois, Manx, Mohawk, Norfolk_pitcairnese, Occitan, Oromo, Pangasinan, Papiamento, Piedmontese, Potawatomi, Rhaeto-romance, Romansh, Rotokas, Sami_lule, Samoan, Sardinian, Scots_gaelic, Seychelles_creole, Shona, Sicilian, Somali, Southern_ndebele, Swahili, Swati_swazi, Tagalog_filipino_pilipino, Tetum, Tok_pisin, Uyghur_latinized, Volapuk, Walloon, Warlpiri, Xhosa, Yapese, Zulu, Latinbasic, Ubasic, Demo </p> + <h1>Glyph Chart</h1> + <p>The subset of Spectral Regular in this kit includes all the glyphs listed below. Unicode entities are included above each glyph to help you insert individual characters into your layout.</p> + <div id="glyph_chart"> + + <div><p>&#32;</p> </div> + <div><p>&#33;</p>!</div> + <div><p>&#34;</p>"</div> + <div><p>&#35;</p>#</div> + <div><p>&#36;</p>$</div> + <div><p>&#37;</p>%</div> + <div><p>&#38;</p>&</div> + <div><p>&#39;</p>'</div> + <div><p>&#40;</p>(</div> + <div><p>&#41;</p>)</div> + <div><p>&#42;</p>*</div> + <div><p>&#43;</p>+</div> + <div><p>&#44;</p>,</div> + <div><p>&#45;</p>-</div> + <div><p>&#46;</p>.</div> + <div><p>&#47;</p>/</div> + <div><p>&#48;</p>0</div> + <div><p>&#49;</p>1</div> + <div><p>&#50;</p>2</div> + <div><p>&#51;</p>3</div> + <div><p>&#52;</p>4</div> + <div><p>&#53;</p>5</div> + <div><p>&#54;</p>6</div> + <div><p>&#55;</p>7</div> + <div><p>&#56;</p>8</div> + <div><p>&#57;</p>9</div> + <div><p>&#58;</p>:</div> + <div><p>&#59;</p>;</div> + <div><p>&#60;</p><</div> + <div><p>&#61;</p>=</div> + <div><p>&#62;</p>></div> + <div><p>&#63;</p>?</div> + <div><p>&#64;</p>@</div> + <div><p>&#65;</p>A</div> + <div><p>&#66;</p>B</div> + <div><p>&#67;</p>C</div> + <div><p>&#68;</p>D</div> + <div><p>&#69;</p>E</div> + <div><p>&#70;</p>F</div> + <div><p>&#71;</p>G</div> + <div><p>&#72;</p>H</div> + <div><p>&#73;</p>I</div> + <div><p>&#74;</p>J</div> + <div><p>&#75;</p>K</div> + <div><p>&#76;</p>L</div> + <div><p>&#77;</p>M</div> + <div><p>&#78;</p>N</div> + <div><p>&#79;</p>O</div> + <div><p>&#80;</p>P</div> + <div><p>&#81;</p>Q</div> + <div><p>&#82;</p>R</div> + <div><p>&#83;</p>S</div> + <div><p>&#84;</p>T</div> + <div><p>&#85;</p>U</div> + <div><p>&#86;</p>V</div> + <div><p>&#87;</p>W</div> + <div><p>&#88;</p>X</div> + <div><p>&#89;</p>Y</div> + <div><p>&#90;</p>Z</div> + <div><p>&#91;</p>[</div> + <div><p>&#92;</p>\</div> + <div><p>&#93;</p>]</div> + <div><p>&#94;</p>^</div> + <div><p>&#95;</p>_</div> + <div><p>&#96;</p>`</div> + <div><p>&#97;</p>a</div> + <div><p>&#98;</p>b</div> + <div><p>&#99;</p>c</div> + <div><p>&#100;</p>d</div> + <div><p>&#101;</p>e</div> + <div><p>&#102;</p>f</div> + <div><p>&#103;</p>g</div> + <div><p>&#104;</p>h</div> + <div><p>&#105;</p>i</div> + <div><p>&#106;</p>j</div> + <div><p>&#107;</p>k</div> + <div><p>&#108;</p>l</div> + <div><p>&#109;</p>m</div> + <div><p>&#110;</p>n</div> + <div><p>&#111;</p>o</div> + <div><p>&#112;</p>p</div> + <div><p>&#113;</p>q</div> + <div><p>&#114;</p>r</div> + <div><p>&#115;</p>s</div> + <div><p>&#116;</p>t</div> + <div><p>&#117;</p>u</div> + <div><p>&#118;</p>v</div> + <div><p>&#119;</p>w</div> + <div><p>&#120;</p>x</div> + <div><p>&#121;</p>y</div> + <div><p>&#122;</p>z</div> + <div><p>&#123;</p>{</div> + <div><p>&#124;</p>|</div> + <div><p>&#125;</p>}</div> + <div><p>&#126;</p>~</div> + <div><p>&#160;</p> </div> + <div><p>&#161;</p>¡</div> + <div><p>&#162;</p>¢</div> + <div><p>&#163;</p>£</div> + <div><p>&#164;</p>¤</div> + <div><p>&#165;</p>¥</div> + <div><p>&#166;</p>¦</div> + <div><p>&#167;</p>§</div> + <div><p>&#168;</p>¨</div> + <div><p>&#169;</p>©</div> + <div><p>&#170;</p>ª</div> + <div><p>&#171;</p>«</div> + <div><p>&#172;</p>¬</div> + <div><p>&#173;</p>­</div> + <div><p>&#174;</p>®</div> + <div><p>&#175;</p>¯</div> + <div><p>&#176;</p>°</div> + <div><p>&#177;</p>±</div> + <div><p>&#178;</p>²</div> + <div><p>&#179;</p>³</div> + <div><p>&#180;</p>´</div> + <div><p>&#181;</p>µ</div> + <div><p>&#182;</p>¶</div> + <div><p>&#183;</p>·</div> + <div><p>&#184;</p>¸</div> + <div><p>&#185;</p>¹</div> + <div><p>&#186;</p>º</div> + <div><p>&#187;</p>»</div> + <div><p>&#188;</p>¼</div> + <div><p>&#189;</p>½</div> + <div><p>&#190;</p>¾</div> + <div><p>&#191;</p>¿</div> + <div><p>&#192;</p>À</div> + <div><p>&#193;</p>Á</div> + <div><p>&#194;</p>Â</div> + <div><p>&#195;</p>Ã</div> + <div><p>&#196;</p>Ä</div> + <div><p>&#197;</p>Å</div> + <div><p>&#198;</p>Æ</div> + <div><p>&#199;</p>Ç</div> + <div><p>&#200;</p>È</div> + <div><p>&#201;</p>É</div> + <div><p>&#202;</p>Ê</div> + <div><p>&#203;</p>Ë</div> + <div><p>&#204;</p>Ì</div> + <div><p>&#205;</p>Í</div> + <div><p>&#206;</p>Î</div> + <div><p>&#207;</p>Ï</div> + <div><p>&#208;</p>Ð</div> + <div><p>&#209;</p>Ñ</div> + <div><p>&#210;</p>Ò</div> + <div><p>&#211;</p>Ó</div> + <div><p>&#212;</p>Ô</div> + <div><p>&#213;</p>Õ</div> + <div><p>&#214;</p>Ö</div> + <div><p>&#215;</p>×</div> + <div><p>&#216;</p>Ø</div> + <div><p>&#217;</p>Ù</div> + <div><p>&#218;</p>Ú</div> + <div><p>&#219;</p>Û</div> + <div><p>&#220;</p>Ü</div> + <div><p>&#221;</p>Ý</div> + <div><p>&#222;</p>Þ</div> + <div><p>&#223;</p>ß</div> + <div><p>&#224;</p>à</div> + <div><p>&#225;</p>á</div> + <div><p>&#226;</p>â</div> + <div><p>&#227;</p>ã</div> + <div><p>&#228;</p>ä</div> + <div><p>&#229;</p>å</div> + <div><p>&#230;</p>æ</div> + <div><p>&#231;</p>ç</div> + <div><p>&#232;</p>è</div> + <div><p>&#233;</p>é</div> + <div><p>&#234;</p>ê</div> + <div><p>&#235;</p>ë</div> + <div><p>&#236;</p>ì</div> + <div><p>&#237;</p>í</div> + <div><p>&#238;</p>î</div> + <div><p>&#239;</p>ï</div> + <div><p>&#240;</p>ð</div> + <div><p>&#241;</p>ñ</div> + <div><p>&#242;</p>ò</div> + <div><p>&#243;</p>ó</div> + <div><p>&#244;</p>ô</div> + <div><p>&#245;</p>õ</div> + <div><p>&#246;</p>ö</div> + <div><p>&#247;</p>÷</div> + <div><p>&#248;</p>ø</div> + <div><p>&#249;</p>ù</div> + <div><p>&#250;</p>ú</div> + <div><p>&#251;</p>û</div> + <div><p>&#252;</p>ü</div> + <div><p>&#253;</p>ý</div> + <div><p>&#254;</p>þ</div> + <div><p>&#255;</p>ÿ</div> + <div><p>&#338;</p>Œ</div> + <div><p>&#339;</p>œ</div> + <div><p>&#376;</p>Ÿ</div> + <div><p>&#710;</p>ˆ</div> + <div><p>&#732;</p>˜</div> + <div><p>&#8192;</p> </div> + <div><p>&#8193;</p> </div> + <div><p>&#8194;</p> </div> + <div><p>&#8195;</p> </div> + <div><p>&#8196;</p> </div> + <div><p>&#8197;</p> </div> + <div><p>&#8198;</p> </div> + <div><p>&#8199;</p> </div> + <div><p>&#8200;</p> </div> + <div><p>&#8201;</p> </div> + <div><p>&#8202;</p> </div> + <div><p>&#8208;</p>‐</div> + <div><p>&#8209;</p>‑</div> + <div><p>&#8210;</p>‒</div> + <div><p>&#8211;</p>–</div> + <div><p>&#8212;</p>—</div> + <div><p>&#8216;</p>‘</div> + <div><p>&#8217;</p>’</div> + <div><p>&#8218;</p>‚</div> + <div><p>&#8220;</p>“</div> + <div><p>&#8221;</p>”</div> + <div><p>&#8222;</p>„</div> + <div><p>&#8226;</p>•</div> + <div><p>&#8230;</p>…</div> + <div><p>&#8239;</p> </div> + <div><p>&#8249;</p>‹</div> + <div><p>&#8250;</p>›</div> + <div><p>&#8287;</p> </div> + <div><p>&#8364;</p>€</div> + <div><p>&#8482;</p>™</div> + <div><p>&#9724;</p>◼</div> + <div><p>&#64257;</p>fi</div> + <div><p>&#64258;</p>fl</div> + <div><p>&#64259;</p>ffi</div> + <div><p>&#64260;</p>ffl</div> + </div> + </div> + + + </div> + </div> + + + <div id="specs"> + + </div> + + <div id="installing"> + <div class="section"> + <div class="grid7 firstcol"> + <h1>Installing Webfonts</h1> + + <p>Webfonts are supported by all major browser platforms but not all in the same way. There are currently four different font formats that must be included in order to target all browsers. This includes TTF, WOFF, EOT and SVG.</p> + + <h2>1. Upload your webfonts</h2> + <p>You must upload your webfont kit to your website. They should be in or near the same directory as your CSS files.</p> + + <h2>2. Include the webfont stylesheet</h2> + <p>A special CSS @font-face declaration helps the various browsers select the appropriate font it needs without causing you a bunch of headaches. Learn more about this syntax by reading the <a href="https://www.fontspring.com/blog/further-hardening-of-the-bulletproof-syntax">Fontspring blog post</a> about it. The code for it is as follows:</p> + + +<code> +@font-face{ + font-family: 'MyWebFont'; + src: url('WebFont.eot'); + src: url('WebFont.eot?#iefix') format('embedded-opentype'), + url('WebFont.woff') format('woff'), + url('WebFont.ttf') format('truetype'), + url('WebFont.svg#webfont') format('svg'); +} +</code> + + <p>We've already gone ahead and generated the code for you. All you have to do is link to the stylesheet in your HTML, like this:</p> + <code><link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8" /></code> + + <h2>3. Modify your own stylesheet</h2> + <p>To take advantage of your new fonts, you must tell your stylesheet to use them. Look at the original @font-face declaration above and find the property called "font-family." The name linked there will be what you use to reference the font. Prepend that webfont name to the font stack in the "font-family" property, inside the selector you want to change. For example:</p> +<code>p { font-family: 'WebFont', Arial, sans-serif; }</code> + +<h2>4. Test</h2> +<p>Getting webfonts to work cross-browser <em>can</em> be tricky. Use the information in the sidebar to help you if you find that fonts aren't loading in a particular browser.</p> + </div> + + <div class="grid5 sidebar"> + <div class="box"> + <h2>Troubleshooting<br />Font-Face Problems</h2> + <p>Having trouble getting your webfonts to load in your new website? Here are some tips to sort out what might be the problem.</p> + + <h3>Fonts not showing in any browser</h3> + + <p>This sounds like you need to work on the plumbing. You either did not upload the fonts to the correct directory, or you did not link the fonts properly in the CSS. If you've confirmed that all this is correct and you still have a problem, take a look at your .htaccess file and see if requests are getting intercepted.</p> + + <h3>Fonts not loading in iPhone or iPad</h3> + + <p>The most common problem here is that you are serving the fonts from an IIS server. IIS refuses to serve files that have unknown MIME types. If that is the case, you must set the MIME type for SVG to "image/svg+xml" in the server settings. Follow these instructions from Microsoft if you need help.</p> + + <h3>Fonts not loading in Firefox</h3> + + <p>The primary reason for this failure? You are still using a version Firefox older than 3.5. So upgrade already! If that isn't it, then you are very likely serving fonts from a different domain. Firefox requires that all font assets be served from the same domain. Lastly it is possible that you need to add WOFF to your list of MIME types (if you are serving via IIS.)</p> + + <h3>Fonts not loading in IE</h3> + + <p>Are you looking at Internet Explorer on an actual Windows machine or are you cheating by using a service like Adobe BrowserLab? Many of these screenshot services do not render @font-face for IE. Best to test it on a real machine.</p> + + <h3>Fonts not loading in IE9</h3> + + <p>IE9, like Firefox, requires that fonts be served from the same domain as the website. Make sure that is the case.</p> + </div> + </div> + </div> + + </div> + + </div> + <div id="footer"> + <p>©2010-2017 Font Squirrel. All rights reserved.</p> + </div> +</div> +</body> +</html> diff --git a/test/samples/aurorae/fonts/spectral/spectral-regular-webfont.woff b/test/samples/aurorae/fonts/spectral/spectral-regular-webfont.woff new file mode 100755 index 0000000000000000000000000000000000000000..1acf7d71798128bc9a193d0ea863fa8da97a8d97 Binary files /dev/null and b/test/samples/aurorae/fonts/spectral/spectral-regular-webfont.woff differ diff --git a/test/samples/aurorae/fonts/spectral/spectral-regular-webfont.woff2 b/test/samples/aurorae/fonts/spectral/spectral-regular-webfont.woff2 new file mode 100755 index 0000000000000000000000000000000000000000..47235a2db6e0912789f786ebf9c8e4fcf1911303 Binary files /dev/null and b/test/samples/aurorae/fonts/spectral/spectral-regular-webfont.woff2 differ diff --git a/test/samples/aurorae/fonts/spectral/spectral-semibold-demo.html b/test/samples/aurorae/fonts/spectral/spectral-semibold-demo.html new file mode 100755 index 0000000000000000000000000000000000000000..359bcb2a9d29c24448342ed943a6952a389157aa --- /dev/null +++ b/test/samples/aurorae/fonts/spectral/spectral-semibold-demo.html @@ -0,0 +1,621 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> + +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> +<head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> + <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js" type="text/javascript" charset="utf-8"></script> + <script type="text/javascript"> + (function($){$.fn.easyTabs=function(option){var param=jQuery.extend({fadeSpeed:"fast",defaultContent:1,activeClass:'active'},option);$(this).each(function(){var thisId="#"+this.id;if(param.defaultContent==''){param.defaultContent=1;} + if(typeof param.defaultContent=="number") + {var defaultTab=$(thisId+" .tabs li:eq("+(param.defaultContent-1)+") a").attr('href').substr(1);}else{var defaultTab=param.defaultContent;} + $(thisId+" .tabs li a").each(function(){var tabToHide=$(this).attr('href').substr(1);$("#"+tabToHide).addClass('easytabs-tab-content');});hideAll();changeContent(defaultTab);function hideAll(){$(thisId+" .easytabs-tab-content").hide();} + function changeContent(tabId){hideAll();$(thisId+" .tabs li").removeClass(param.activeClass);$(thisId+" .tabs li a[href=#"+tabId+"]").closest('li').addClass(param.activeClass);if(param.fadeSpeed!="none") + {$(thisId+" #"+tabId).fadeIn(param.fadeSpeed);}else{$(thisId+" #"+tabId).show();}} + $(thisId+" .tabs li").click(function(){var tabId=$(this).find('a').attr('href').substr(1);changeContent(tabId);return false;});});}})(jQuery); + </script> + <link rel="stylesheet" href="specimen_files/specimen_stylesheet.css" type="text/css" charset="utf-8" /> + <link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8" /> + + <style type="text/css"> + body{ + font-family: 'spectralsemibold'; + } + </style> + + <title>Spectral SemiBold Specimen</title> + + + <script type="text/javascript" charset="utf-8"> + $(document).ready(function() { + $('#container').easyTabs({defaultContent:1}); + }); + </script> +</head> + +<body> +<div id="container"> + <div id="header"> + Spectral SemiBold </div> + <ul class="tabs"> + <li><a href="#specimen">Specimen</a></li> + <li><a href="#layout">Sample Layout</a></li> + <li><a href="#glyphs">Glyphs & Languages</a></li> + <li><a href="#installing">Installing Webfonts</a></li> + + </ul> + + <div id="main_content"> + + + <div id="specimen"> + + <div class="section"> + <div class="grid12 firstcol"> + <div class="huge">AaBb</div> + </div> + </div> + + <div class="section"> + <div class="glyph_range">A​B​C​D​E​F​G​H​I​J​K​L​M​N​O​P​Q​R​S​T​U​V​W​X​Y​Z​a​b​c​d​e​f​g​h​i​j​k​l​m​n​o​p​q​r​s​t​u​v​w​x​y​z​1​2​3​4​5​6​7​8​9​0​&​.​,​?​!​@​(​)​#​$​%​*​+​-​=​:​;</div> + </div> + <div class="section"> + <div class="grid12 firstcol"> + <table class="sample_table"> + <tr><td>10</td><td class="size10">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>11</td><td class="size11">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>12</td><td class="size12">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>13</td><td class="size13">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>14</td><td class="size14">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>16</td><td class="size16">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>18</td><td class="size18">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>20</td><td class="size20">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>24</td><td class="size24">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>30</td><td class="size30">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>36</td><td class="size36">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>48</td><td class="size48">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>60</td><td class="size60">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>72</td><td class="size72">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>90</td><td class="size90">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + </table> + + </div> + + </div> + + + + <div class="section" id="bodycomparison"> + + + <div id="xheight"> + <div class="fontbody">◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼body</div><div class="arialbody">body</div><div class="verdanabody">body</div><div class="georgiabody">body</div></div> + <div class="fontbody" style="z-index:1"> + body<span>Spectral SemiBold</span> + </div> + <div class="arialbody" style="z-index:1"> + body<span>Arial</span> + </div> + <div class="verdanabody" style="z-index:1"> + body<span>Verdana</span> + </div> + <div class="georgiabody" style="z-index:1"> + body<span>Georgia</span> + </div> + + + + </div> + + + <div class="section psample psample_row1" id=""> + + <div class="grid2 firstcol"> + <p class="size10"><span>10.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid3"> + <p class="size11"><span>11.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid3"> + <p class="size12"><span>12.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid4"> + <p class="size13"><span>13.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="white_blend"></div> + + </div> + <div class="section psample psample_row2" id=""> + <div class="grid3 firstcol"> + <p class="size14"><span>14.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid4"> + <p class="size16"><span>16.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid5"> + <p class="size18"><span>18.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + + <div class="white_blend"></div> + + </div> + + <div class="section psample psample_row3" id=""> + <div class="grid5 firstcol"> + <p class="size20"><span>20.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + <div class="grid7"> + <p class="size24"><span>24.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + + <div class="white_blend"></div> + + </div> + + <div class="section psample psample_row4" id=""> + <div class="grid12 firstcol"> + <p class="size30"><span>30.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + <div class="white_blend"></div> + + </div> + + + + <div class="section psample psample_row1 fullreverse"> + <div class="grid2 firstcol"> + <p class="size10"><span>10.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid3"> + <p class="size11"><span>11.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid3"> + <p class="size12"><span>12.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid4"> + <p class="size13"><span>13.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="black_blend"></div> + + </div> + + <div class="section psample psample_row2 fullreverse"> + <div class="grid3 firstcol"> + <p class="size14"><span>14.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid4"> + <p class="size16"><span>16.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid5"> + <p class="size18"><span>18.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="black_blend"></div> + + </div> + + <div class="section psample fullreverse psample_row3" id=""> + <div class="grid5 firstcol"> + <p class="size20"><span>20.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + <div class="grid7"> + <p class="size24"><span>24.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + + <div class="black_blend"></div> + + </div> + + <div class="section psample fullreverse psample_row4" id="" style="border-bottom: 20px #000 solid;"> + <div class="grid12 firstcol"> + <p class="size30"><span>30.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + <div class="black_blend"></div> + + </div> + + + + + </div> + + <div id="layout"> + + <div class="section"> + + <div class="grid12 firstcol"> + <h1>Lorem Ipsum Dolor</h1> + <h2>Etiam porta sem malesuada magna mollis euismod</h2> + + <p class="byline">By <a href="#link">Aenean Lacinia</a></p> + </div> + </div> + <div class="section"> + <div class="grid8 firstcol"> + <p class="large">Donec sed odio dui. Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p> + + + <h3>Pellentesque ornare sem</h3> + + <p>Maecenas sed diam eget risus varius blandit sit amet non magna. Maecenas faucibus mollis interdum. Donec ullamcorper nulla non metus auctor fringilla. Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam id dolor id nibh ultricies vehicula ut id elit. </p> + + <p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. </p> + + <p>Nulla vitae elit libero, a pharetra augue. Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Aenean lacinia bibendum nulla sed consectetur. </p> + + <p>Nullam quis risus eget urna mollis ornare vel eu leo. Nullam quis risus eget urna mollis ornare vel eu leo. Maecenas sed diam eget risus varius blandit sit amet non magna. Donec ullamcorper nulla non metus auctor fringilla. </p> + + <h3>Cras mattis consectetur</h3> + + <p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Aenean lacinia bibendum nulla sed consectetur. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Cras mattis consectetur purus sit amet fermentum. </p> + + <p>Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam quis risus eget urna mollis ornare vel eu leo. Cras mattis consectetur purus sit amet fermentum.</p> + </div> + + <div class="grid4 sidebar"> + + <div class="box reverse"> + <p class="last">Nullam quis risus eget urna mollis ornare vel eu leo. Donec ullamcorper nulla non metus auctor fringilla. Cras mattis consectetur purus sit amet fermentum. Sed posuere consectetur est at lobortis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. </p> + </div> + + <p class="caption">Maecenas sed diam eget risus varius.</p> + + <p>Vestibulum id ligula porta felis euismod semper. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Vestibulum id ligula porta felis euismod semper. Sed posuere consectetur est at lobortis. Maecenas sed diam eget risus varius blandit sit amet non magna. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p> + + + + <p>Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Aenean lacinia bibendum nulla sed consectetur. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Aenean lacinia bibendum nulla sed consectetur. Nullam quis risus eget urna mollis ornare vel eu leo. </p> + + <p>Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Donec ullamcorper nulla non metus auctor fringilla. Maecenas faucibus mollis interdum. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p> + + </div> + </div> + + </div> + + + + + + + <div id="glyphs"> + <div class="section"> + <div class="grid12 firstcol"> + + <h1>Language Support</h1> + <p>The subset of Spectral SemiBold in this kit supports the following languages:<br /> + + Albanian, Basque, Breton, Chamorro, Danish, Dutch, English, Faroese, Finnish, French, Frisian, Galician, German, Icelandic, Italian, Malagasy, Norwegian, Portuguese, Spanish, Alsatian, Aragonese, Arapaho, Arrernte, Asturian, Aymara, Bislama, Cebuano, Corsican, Fijian, French_creole, Genoese, Gilbertese, Greenlandic, Haitian_creole, Hiligaynon, Hmong, Hopi, Ibanag, Iloko_ilokano, Indonesian, Interglossa_glosa, Interlingua, Irish_gaelic, Jerriais, Lojban, Lombard, Luxembourgeois, Manx, Mohawk, Norfolk_pitcairnese, Occitan, Oromo, Pangasinan, Papiamento, Piedmontese, Potawatomi, Rhaeto-romance, Romansh, Rotokas, Sami_lule, Samoan, Sardinian, Scots_gaelic, Seychelles_creole, Shona, Sicilian, Somali, Southern_ndebele, Swahili, Swati_swazi, Tagalog_filipino_pilipino, Tetum, Tok_pisin, Uyghur_latinized, Volapuk, Walloon, Warlpiri, Xhosa, Yapese, Zulu, Latinbasic, Ubasic, Demo </p> + <h1>Glyph Chart</h1> + <p>The subset of Spectral SemiBold in this kit includes all the glyphs listed below. Unicode entities are included above each glyph to help you insert individual characters into your layout.</p> + <div id="glyph_chart"> + + <div><p>&#32;</p> </div> + <div><p>&#33;</p>!</div> + <div><p>&#34;</p>"</div> + <div><p>&#35;</p>#</div> + <div><p>&#36;</p>$</div> + <div><p>&#37;</p>%</div> + <div><p>&#38;</p>&</div> + <div><p>&#39;</p>'</div> + <div><p>&#40;</p>(</div> + <div><p>&#41;</p>)</div> + <div><p>&#42;</p>*</div> + <div><p>&#43;</p>+</div> + <div><p>&#44;</p>,</div> + <div><p>&#45;</p>-</div> + <div><p>&#46;</p>.</div> + <div><p>&#47;</p>/</div> + <div><p>&#48;</p>0</div> + <div><p>&#49;</p>1</div> + <div><p>&#50;</p>2</div> + <div><p>&#51;</p>3</div> + <div><p>&#52;</p>4</div> + <div><p>&#53;</p>5</div> + <div><p>&#54;</p>6</div> + <div><p>&#55;</p>7</div> + <div><p>&#56;</p>8</div> + <div><p>&#57;</p>9</div> + <div><p>&#58;</p>:</div> + <div><p>&#59;</p>;</div> + <div><p>&#60;</p><</div> + <div><p>&#61;</p>=</div> + <div><p>&#62;</p>></div> + <div><p>&#63;</p>?</div> + <div><p>&#64;</p>@</div> + <div><p>&#65;</p>A</div> + <div><p>&#66;</p>B</div> + <div><p>&#67;</p>C</div> + <div><p>&#68;</p>D</div> + <div><p>&#69;</p>E</div> + <div><p>&#70;</p>F</div> + <div><p>&#71;</p>G</div> + <div><p>&#72;</p>H</div> + <div><p>&#73;</p>I</div> + <div><p>&#74;</p>J</div> + <div><p>&#75;</p>K</div> + <div><p>&#76;</p>L</div> + <div><p>&#77;</p>M</div> + <div><p>&#78;</p>N</div> + <div><p>&#79;</p>O</div> + <div><p>&#80;</p>P</div> + <div><p>&#81;</p>Q</div> + <div><p>&#82;</p>R</div> + <div><p>&#83;</p>S</div> + <div><p>&#84;</p>T</div> + <div><p>&#85;</p>U</div> + <div><p>&#86;</p>V</div> + <div><p>&#87;</p>W</div> + <div><p>&#88;</p>X</div> + <div><p>&#89;</p>Y</div> + <div><p>&#90;</p>Z</div> + <div><p>&#91;</p>[</div> + <div><p>&#92;</p>\</div> + <div><p>&#93;</p>]</div> + <div><p>&#94;</p>^</div> + <div><p>&#95;</p>_</div> + <div><p>&#96;</p>`</div> + <div><p>&#97;</p>a</div> + <div><p>&#98;</p>b</div> + <div><p>&#99;</p>c</div> + <div><p>&#100;</p>d</div> + <div><p>&#101;</p>e</div> + <div><p>&#102;</p>f</div> + <div><p>&#103;</p>g</div> + <div><p>&#104;</p>h</div> + <div><p>&#105;</p>i</div> + <div><p>&#106;</p>j</div> + <div><p>&#107;</p>k</div> + <div><p>&#108;</p>l</div> + <div><p>&#109;</p>m</div> + <div><p>&#110;</p>n</div> + <div><p>&#111;</p>o</div> + <div><p>&#112;</p>p</div> + <div><p>&#113;</p>q</div> + <div><p>&#114;</p>r</div> + <div><p>&#115;</p>s</div> + <div><p>&#116;</p>t</div> + <div><p>&#117;</p>u</div> + <div><p>&#118;</p>v</div> + <div><p>&#119;</p>w</div> + <div><p>&#120;</p>x</div> + <div><p>&#121;</p>y</div> + <div><p>&#122;</p>z</div> + <div><p>&#123;</p>{</div> + <div><p>&#124;</p>|</div> + <div><p>&#125;</p>}</div> + <div><p>&#126;</p>~</div> + <div><p>&#160;</p> </div> + <div><p>&#161;</p>¡</div> + <div><p>&#162;</p>¢</div> + <div><p>&#163;</p>£</div> + <div><p>&#164;</p>¤</div> + <div><p>&#165;</p>¥</div> + <div><p>&#166;</p>¦</div> + <div><p>&#167;</p>§</div> + <div><p>&#168;</p>¨</div> + <div><p>&#169;</p>©</div> + <div><p>&#170;</p>ª</div> + <div><p>&#171;</p>«</div> + <div><p>&#172;</p>¬</div> + <div><p>&#173;</p>­</div> + <div><p>&#174;</p>®</div> + <div><p>&#175;</p>¯</div> + <div><p>&#176;</p>°</div> + <div><p>&#177;</p>±</div> + <div><p>&#178;</p>²</div> + <div><p>&#179;</p>³</div> + <div><p>&#180;</p>´</div> + <div><p>&#181;</p>µ</div> + <div><p>&#182;</p>¶</div> + <div><p>&#183;</p>·</div> + <div><p>&#184;</p>¸</div> + <div><p>&#185;</p>¹</div> + <div><p>&#186;</p>º</div> + <div><p>&#187;</p>»</div> + <div><p>&#188;</p>¼</div> + <div><p>&#189;</p>½</div> + <div><p>&#190;</p>¾</div> + <div><p>&#191;</p>¿</div> + <div><p>&#192;</p>À</div> + <div><p>&#193;</p>Á</div> + <div><p>&#194;</p>Â</div> + <div><p>&#195;</p>Ã</div> + <div><p>&#196;</p>Ä</div> + <div><p>&#197;</p>Å</div> + <div><p>&#198;</p>Æ</div> + <div><p>&#199;</p>Ç</div> + <div><p>&#200;</p>È</div> + <div><p>&#201;</p>É</div> + <div><p>&#202;</p>Ê</div> + <div><p>&#203;</p>Ë</div> + <div><p>&#204;</p>Ì</div> + <div><p>&#205;</p>Í</div> + <div><p>&#206;</p>Î</div> + <div><p>&#207;</p>Ï</div> + <div><p>&#208;</p>Ð</div> + <div><p>&#209;</p>Ñ</div> + <div><p>&#210;</p>Ò</div> + <div><p>&#211;</p>Ó</div> + <div><p>&#212;</p>Ô</div> + <div><p>&#213;</p>Õ</div> + <div><p>&#214;</p>Ö</div> + <div><p>&#215;</p>×</div> + <div><p>&#216;</p>Ø</div> + <div><p>&#217;</p>Ù</div> + <div><p>&#218;</p>Ú</div> + <div><p>&#219;</p>Û</div> + <div><p>&#220;</p>Ü</div> + <div><p>&#221;</p>Ý</div> + <div><p>&#222;</p>Þ</div> + <div><p>&#223;</p>ß</div> + <div><p>&#224;</p>à</div> + <div><p>&#225;</p>á</div> + <div><p>&#226;</p>â</div> + <div><p>&#227;</p>ã</div> + <div><p>&#228;</p>ä</div> + <div><p>&#229;</p>å</div> + <div><p>&#230;</p>æ</div> + <div><p>&#231;</p>ç</div> + <div><p>&#232;</p>è</div> + <div><p>&#233;</p>é</div> + <div><p>&#234;</p>ê</div> + <div><p>&#235;</p>ë</div> + <div><p>&#236;</p>ì</div> + <div><p>&#237;</p>í</div> + <div><p>&#238;</p>î</div> + <div><p>&#239;</p>ï</div> + <div><p>&#240;</p>ð</div> + <div><p>&#241;</p>ñ</div> + <div><p>&#242;</p>ò</div> + <div><p>&#243;</p>ó</div> + <div><p>&#244;</p>ô</div> + <div><p>&#245;</p>õ</div> + <div><p>&#246;</p>ö</div> + <div><p>&#247;</p>÷</div> + <div><p>&#248;</p>ø</div> + <div><p>&#249;</p>ù</div> + <div><p>&#250;</p>ú</div> + <div><p>&#251;</p>û</div> + <div><p>&#252;</p>ü</div> + <div><p>&#253;</p>ý</div> + <div><p>&#254;</p>þ</div> + <div><p>&#255;</p>ÿ</div> + <div><p>&#338;</p>Œ</div> + <div><p>&#339;</p>œ</div> + <div><p>&#376;</p>Ÿ</div> + <div><p>&#710;</p>ˆ</div> + <div><p>&#732;</p>˜</div> + <div><p>&#8192;</p> </div> + <div><p>&#8193;</p> </div> + <div><p>&#8194;</p> </div> + <div><p>&#8195;</p> </div> + <div><p>&#8196;</p> </div> + <div><p>&#8197;</p> </div> + <div><p>&#8198;</p> </div> + <div><p>&#8199;</p> </div> + <div><p>&#8200;</p> </div> + <div><p>&#8201;</p> </div> + <div><p>&#8202;</p> </div> + <div><p>&#8208;</p>‐</div> + <div><p>&#8209;</p>‑</div> + <div><p>&#8210;</p>‒</div> + <div><p>&#8211;</p>–</div> + <div><p>&#8212;</p>—</div> + <div><p>&#8216;</p>‘</div> + <div><p>&#8217;</p>’</div> + <div><p>&#8218;</p>‚</div> + <div><p>&#8220;</p>“</div> + <div><p>&#8221;</p>”</div> + <div><p>&#8222;</p>„</div> + <div><p>&#8226;</p>•</div> + <div><p>&#8230;</p>…</div> + <div><p>&#8239;</p> </div> + <div><p>&#8249;</p>‹</div> + <div><p>&#8250;</p>›</div> + <div><p>&#8287;</p> </div> + <div><p>&#8364;</p>€</div> + <div><p>&#8482;</p>™</div> + <div><p>&#9724;</p>◼</div> + <div><p>&#64257;</p>fi</div> + <div><p>&#64258;</p>fl</div> + <div><p>&#64259;</p>ffi</div> + <div><p>&#64260;</p>ffl</div> + </div> + </div> + + + </div> + </div> + + + <div id="specs"> + + </div> + + <div id="installing"> + <div class="section"> + <div class="grid7 firstcol"> + <h1>Installing Webfonts</h1> + + <p>Webfonts are supported by all major browser platforms but not all in the same way. There are currently four different font formats that must be included in order to target all browsers. This includes TTF, WOFF, EOT and SVG.</p> + + <h2>1. Upload your webfonts</h2> + <p>You must upload your webfont kit to your website. They should be in or near the same directory as your CSS files.</p> + + <h2>2. Include the webfont stylesheet</h2> + <p>A special CSS @font-face declaration helps the various browsers select the appropriate font it needs without causing you a bunch of headaches. Learn more about this syntax by reading the <a href="https://www.fontspring.com/blog/further-hardening-of-the-bulletproof-syntax">Fontspring blog post</a> about it. The code for it is as follows:</p> + + +<code> +@font-face{ + font-family: 'MyWebFont'; + src: url('WebFont.eot'); + src: url('WebFont.eot?#iefix') format('embedded-opentype'), + url('WebFont.woff') format('woff'), + url('WebFont.ttf') format('truetype'), + url('WebFont.svg#webfont') format('svg'); +} +</code> + + <p>We've already gone ahead and generated the code for you. All you have to do is link to the stylesheet in your HTML, like this:</p> + <code><link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8" /></code> + + <h2>3. Modify your own stylesheet</h2> + <p>To take advantage of your new fonts, you must tell your stylesheet to use them. Look at the original @font-face declaration above and find the property called "font-family." The name linked there will be what you use to reference the font. Prepend that webfont name to the font stack in the "font-family" property, inside the selector you want to change. For example:</p> +<code>p { font-family: 'WebFont', Arial, sans-serif; }</code> + +<h2>4. Test</h2> +<p>Getting webfonts to work cross-browser <em>can</em> be tricky. Use the information in the sidebar to help you if you find that fonts aren't loading in a particular browser.</p> + </div> + + <div class="grid5 sidebar"> + <div class="box"> + <h2>Troubleshooting<br />Font-Face Problems</h2> + <p>Having trouble getting your webfonts to load in your new website? Here are some tips to sort out what might be the problem.</p> + + <h3>Fonts not showing in any browser</h3> + + <p>This sounds like you need to work on the plumbing. You either did not upload the fonts to the correct directory, or you did not link the fonts properly in the CSS. If you've confirmed that all this is correct and you still have a problem, take a look at your .htaccess file and see if requests are getting intercepted.</p> + + <h3>Fonts not loading in iPhone or iPad</h3> + + <p>The most common problem here is that you are serving the fonts from an IIS server. IIS refuses to serve files that have unknown MIME types. If that is the case, you must set the MIME type for SVG to "image/svg+xml" in the server settings. Follow these instructions from Microsoft if you need help.</p> + + <h3>Fonts not loading in Firefox</h3> + + <p>The primary reason for this failure? You are still using a version Firefox older than 3.5. So upgrade already! If that isn't it, then you are very likely serving fonts from a different domain. Firefox requires that all font assets be served from the same domain. Lastly it is possible that you need to add WOFF to your list of MIME types (if you are serving via IIS.)</p> + + <h3>Fonts not loading in IE</h3> + + <p>Are you looking at Internet Explorer on an actual Windows machine or are you cheating by using a service like Adobe BrowserLab? Many of these screenshot services do not render @font-face for IE. Best to test it on a real machine.</p> + + <h3>Fonts not loading in IE9</h3> + + <p>IE9, like Firefox, requires that fonts be served from the same domain as the website. Make sure that is the case.</p> + </div> + </div> + </div> + + </div> + + </div> + <div id="footer"> + <p>©2010-2017 Font Squirrel. All rights reserved.</p> + </div> +</div> +</body> +</html> diff --git a/test/samples/aurorae/fonts/spectral/spectral-semibold-webfont.ttf b/test/samples/aurorae/fonts/spectral/spectral-semibold-webfont.ttf new file mode 100755 index 0000000000000000000000000000000000000000..edc6b92cb2361ee3ceea3e6de866658606b30e82 Binary files /dev/null and b/test/samples/aurorae/fonts/spectral/spectral-semibold-webfont.ttf differ diff --git a/test/samples/aurorae/fonts/spectral/spectral-semibold-webfont.woff b/test/samples/aurorae/fonts/spectral/spectral-semibold-webfont.woff new file mode 100755 index 0000000000000000000000000000000000000000..6b0d10add02d2cfd8590e7b78df4654a36794e96 Binary files /dev/null and b/test/samples/aurorae/fonts/spectral/spectral-semibold-webfont.woff differ diff --git a/test/samples/aurorae/fonts/spectral/spectral-semibold-webfont.woff2 b/test/samples/aurorae/fonts/spectral/spectral-semibold-webfont.woff2 new file mode 100755 index 0000000000000000000000000000000000000000..741bc7b7472b7a25380ee7192e7ae4a3300321bc Binary files /dev/null and b/test/samples/aurorae/fonts/spectral/spectral-semibold-webfont.woff2 differ diff --git a/test/samples/aurorae/fonts/spectral/spectral-semibolditalic-demo.html b/test/samples/aurorae/fonts/spectral/spectral-semibolditalic-demo.html new file mode 100755 index 0000000000000000000000000000000000000000..8483c2c5772d020a8f309654165e16e95aab686a --- /dev/null +++ b/test/samples/aurorae/fonts/spectral/spectral-semibolditalic-demo.html @@ -0,0 +1,621 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> + +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> +<head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> + <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js" type="text/javascript" charset="utf-8"></script> + <script type="text/javascript"> + (function($){$.fn.easyTabs=function(option){var param=jQuery.extend({fadeSpeed:"fast",defaultContent:1,activeClass:'active'},option);$(this).each(function(){var thisId="#"+this.id;if(param.defaultContent==''){param.defaultContent=1;} + if(typeof param.defaultContent=="number") + {var defaultTab=$(thisId+" .tabs li:eq("+(param.defaultContent-1)+") a").attr('href').substr(1);}else{var defaultTab=param.defaultContent;} + $(thisId+" .tabs li a").each(function(){var tabToHide=$(this).attr('href').substr(1);$("#"+tabToHide).addClass('easytabs-tab-content');});hideAll();changeContent(defaultTab);function hideAll(){$(thisId+" .easytabs-tab-content").hide();} + function changeContent(tabId){hideAll();$(thisId+" .tabs li").removeClass(param.activeClass);$(thisId+" .tabs li a[href=#"+tabId+"]").closest('li').addClass(param.activeClass);if(param.fadeSpeed!="none") + {$(thisId+" #"+tabId).fadeIn(param.fadeSpeed);}else{$(thisId+" #"+tabId).show();}} + $(thisId+" .tabs li").click(function(){var tabId=$(this).find('a').attr('href').substr(1);changeContent(tabId);return false;});});}})(jQuery); + </script> + <link rel="stylesheet" href="specimen_files/specimen_stylesheet.css" type="text/css" charset="utf-8" /> + <link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8" /> + + <style type="text/css"> + body{ + font-family: 'spectralsemibold_italic'; + } + </style> + + <title>Spectral SemiBold Italic Specimen</title> + + + <script type="text/javascript" charset="utf-8"> + $(document).ready(function() { + $('#container').easyTabs({defaultContent:1}); + }); + </script> +</head> + +<body> +<div id="container"> + <div id="header"> + Spectral SemiBold Italic </div> + <ul class="tabs"> + <li><a href="#specimen">Specimen</a></li> + <li><a href="#layout">Sample Layout</a></li> + <li><a href="#glyphs">Glyphs & Languages</a></li> + <li><a href="#installing">Installing Webfonts</a></li> + + </ul> + + <div id="main_content"> + + + <div id="specimen"> + + <div class="section"> + <div class="grid12 firstcol"> + <div class="huge">AaBb</div> + </div> + </div> + + <div class="section"> + <div class="glyph_range">A​B​C​D​E​F​G​H​I​J​K​L​M​N​O​P​Q​R​S​T​U​V​W​X​Y​Z​a​b​c​d​e​f​g​h​i​j​k​l​m​n​o​p​q​r​s​t​u​v​w​x​y​z​1​2​3​4​5​6​7​8​9​0​&​.​,​?​!​@​(​)​#​$​%​*​+​-​=​:​;</div> + </div> + <div class="section"> + <div class="grid12 firstcol"> + <table class="sample_table"> + <tr><td>10</td><td class="size10">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>11</td><td class="size11">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>12</td><td class="size12">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>13</td><td class="size13">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>14</td><td class="size14">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>16</td><td class="size16">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>18</td><td class="size18">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>20</td><td class="size20">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>24</td><td class="size24">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>30</td><td class="size30">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>36</td><td class="size36">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>48</td><td class="size48">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>60</td><td class="size60">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>72</td><td class="size72">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + <tr><td>90</td><td class="size90">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> + </table> + + </div> + + </div> + + + + <div class="section" id="bodycomparison"> + + + <div id="xheight"> + <div class="fontbody">◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼body</div><div class="arialbody">body</div><div class="verdanabody">body</div><div class="georgiabody">body</div></div> + <div class="fontbody" style="z-index:1"> + body<span>Spectral SemiBold Italic</span> + </div> + <div class="arialbody" style="z-index:1"> + body<span>Arial</span> + </div> + <div class="verdanabody" style="z-index:1"> + body<span>Verdana</span> + </div> + <div class="georgiabody" style="z-index:1"> + body<span>Georgia</span> + </div> + + + + </div> + + + <div class="section psample psample_row1" id=""> + + <div class="grid2 firstcol"> + <p class="size10"><span>10.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid3"> + <p class="size11"><span>11.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid3"> + <p class="size12"><span>12.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid4"> + <p class="size13"><span>13.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="white_blend"></div> + + </div> + <div class="section psample psample_row2" id=""> + <div class="grid3 firstcol"> + <p class="size14"><span>14.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid4"> + <p class="size16"><span>16.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid5"> + <p class="size18"><span>18.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + + <div class="white_blend"></div> + + </div> + + <div class="section psample psample_row3" id=""> + <div class="grid5 firstcol"> + <p class="size20"><span>20.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + <div class="grid7"> + <p class="size24"><span>24.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + + <div class="white_blend"></div> + + </div> + + <div class="section psample psample_row4" id=""> + <div class="grid12 firstcol"> + <p class="size30"><span>30.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + <div class="white_blend"></div> + + </div> + + + + <div class="section psample psample_row1 fullreverse"> + <div class="grid2 firstcol"> + <p class="size10"><span>10.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid3"> + <p class="size11"><span>11.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid3"> + <p class="size12"><span>12.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid4"> + <p class="size13"><span>13.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="black_blend"></div> + + </div> + + <div class="section psample psample_row2 fullreverse"> + <div class="grid3 firstcol"> + <p class="size14"><span>14.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid4"> + <p class="size16"><span>16.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="grid5"> + <p class="size18"><span>18.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + + </div> + <div class="black_blend"></div> + + </div> + + <div class="section psample fullreverse psample_row3" id=""> + <div class="grid5 firstcol"> + <p class="size20"><span>20.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + <div class="grid7"> + <p class="size24"><span>24.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + + <div class="black_blend"></div> + + </div> + + <div class="section psample fullreverse psample_row4" id="" style="border-bottom: 20px #000 solid;"> + <div class="grid12 firstcol"> + <p class="size30"><span>30.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> + </div> + <div class="black_blend"></div> + + </div> + + + + + </div> + + <div id="layout"> + + <div class="section"> + + <div class="grid12 firstcol"> + <h1>Lorem Ipsum Dolor</h1> + <h2>Etiam porta sem malesuada magna mollis euismod</h2> + + <p class="byline">By <a href="#link">Aenean Lacinia</a></p> + </div> + </div> + <div class="section"> + <div class="grid8 firstcol"> + <p class="large">Donec sed odio dui. Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p> + + + <h3>Pellentesque ornare sem</h3> + + <p>Maecenas sed diam eget risus varius blandit sit amet non magna. Maecenas faucibus mollis interdum. Donec ullamcorper nulla non metus auctor fringilla. Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam id dolor id nibh ultricies vehicula ut id elit. </p> + + <p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. </p> + + <p>Nulla vitae elit libero, a pharetra augue. Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Aenean lacinia bibendum nulla sed consectetur. </p> + + <p>Nullam quis risus eget urna mollis ornare vel eu leo. Nullam quis risus eget urna mollis ornare vel eu leo. Maecenas sed diam eget risus varius blandit sit amet non magna. Donec ullamcorper nulla non metus auctor fringilla. </p> + + <h3>Cras mattis consectetur</h3> + + <p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Aenean lacinia bibendum nulla sed consectetur. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Cras mattis consectetur purus sit amet fermentum. </p> + + <p>Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam quis risus eget urna mollis ornare vel eu leo. Cras mattis consectetur purus sit amet fermentum.</p> + </div> + + <div class="grid4 sidebar"> + + <div class="box reverse"> + <p class="last">Nullam quis risus eget urna mollis ornare vel eu leo. Donec ullamcorper nulla non metus auctor fringilla. Cras mattis consectetur purus sit amet fermentum. Sed posuere consectetur est at lobortis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. </p> + </div> + + <p class="caption">Maecenas sed diam eget risus varius.</p> + + <p>Vestibulum id ligula porta felis euismod semper. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Vestibulum id ligula porta felis euismod semper. Sed posuere consectetur est at lobortis. Maecenas sed diam eget risus varius blandit sit amet non magna. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p> + + + + <p>Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Aenean lacinia bibendum nulla sed consectetur. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Aenean lacinia bibendum nulla sed consectetur. Nullam quis risus eget urna mollis ornare vel eu leo. </p> + + <p>Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Donec ullamcorper nulla non metus auctor fringilla. Maecenas faucibus mollis interdum. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p> + + </div> + </div> + + </div> + + + + + + + <div id="glyphs"> + <div class="section"> + <div class="grid12 firstcol"> + + <h1>Language Support</h1> + <p>The subset of Spectral SemiBold Italic in this kit supports the following languages:<br /> + + Albanian, Basque, Breton, Chamorro, Danish, Dutch, English, Faroese, Finnish, French, Frisian, Galician, German, Icelandic, Italian, Malagasy, Norwegian, Portuguese, Spanish, Alsatian, Aragonese, Arapaho, Arrernte, Asturian, Aymara, Bislama, Cebuano, Corsican, Fijian, French_creole, Genoese, Gilbertese, Greenlandic, Haitian_creole, Hiligaynon, Hmong, Hopi, Ibanag, Iloko_ilokano, Indonesian, Interglossa_glosa, Interlingua, Irish_gaelic, Jerriais, Lojban, Lombard, Luxembourgeois, Manx, Mohawk, Norfolk_pitcairnese, Occitan, Oromo, Pangasinan, Papiamento, Piedmontese, Potawatomi, Rhaeto-romance, Romansh, Rotokas, Sami_lule, Samoan, Sardinian, Scots_gaelic, Seychelles_creole, Shona, Sicilian, Somali, Southern_ndebele, Swahili, Swati_swazi, Tagalog_filipino_pilipino, Tetum, Tok_pisin, Uyghur_latinized, Volapuk, Walloon, Warlpiri, Xhosa, Yapese, Zulu, Latinbasic, Ubasic, Demo </p> + <h1>Glyph Chart</h1> + <p>The subset of Spectral SemiBold Italic in this kit includes all the glyphs listed below. Unicode entities are included above each glyph to help you insert individual characters into your layout.</p> + <div id="glyph_chart"> + + <div><p>&#32;</p> </div> + <div><p>&#33;</p>!</div> + <div><p>&#34;</p>"</div> + <div><p>&#35;</p>#</div> + <div><p>&#36;</p>$</div> + <div><p>&#37;</p>%</div> + <div><p>&#38;</p>&</div> + <div><p>&#39;</p>'</div> + <div><p>&#40;</p>(</div> + <div><p>&#41;</p>)</div> + <div><p>&#42;</p>*</div> + <div><p>&#43;</p>+</div> + <div><p>&#44;</p>,</div> + <div><p>&#45;</p>-</div> + <div><p>&#46;</p>.</div> + <div><p>&#47;</p>/</div> + <div><p>&#48;</p>0</div> + <div><p>&#49;</p>1</div> + <div><p>&#50;</p>2</div> + <div><p>&#51;</p>3</div> + <div><p>&#52;</p>4</div> + <div><p>&#53;</p>5</div> + <div><p>&#54;</p>6</div> + <div><p>&#55;</p>7</div> + <div><p>&#56;</p>8</div> + <div><p>&#57;</p>9</div> + <div><p>&#58;</p>:</div> + <div><p>&#59;</p>;</div> + <div><p>&#60;</p><</div> + <div><p>&#61;</p>=</div> + <div><p>&#62;</p>></div> + <div><p>&#63;</p>?</div> + <div><p>&#64;</p>@</div> + <div><p>&#65;</p>A</div> + <div><p>&#66;</p>B</div> + <div><p>&#67;</p>C</div> + <div><p>&#68;</p>D</div> + <div><p>&#69;</p>E</div> + <div><p>&#70;</p>F</div> + <div><p>&#71;</p>G</div> + <div><p>&#72;</p>H</div> + <div><p>&#73;</p>I</div> + <div><p>&#74;</p>J</div> + <div><p>&#75;</p>K</div> + <div><p>&#76;</p>L</div> + <div><p>&#77;</p>M</div> + <div><p>&#78;</p>N</div> + <div><p>&#79;</p>O</div> + <div><p>&#80;</p>P</div> + <div><p>&#81;</p>Q</div> + <div><p>&#82;</p>R</div> + <div><p>&#83;</p>S</div> + <div><p>&#84;</p>T</div> + <div><p>&#85;</p>U</div> + <div><p>&#86;</p>V</div> + <div><p>&#87;</p>W</div> + <div><p>&#88;</p>X</div> + <div><p>&#89;</p>Y</div> + <div><p>&#90;</p>Z</div> + <div><p>&#91;</p>[</div> + <div><p>&#92;</p>\</div> + <div><p>&#93;</p>]</div> + <div><p>&#94;</p>^</div> + <div><p>&#95;</p>_</div> + <div><p>&#96;</p>`</div> + <div><p>&#97;</p>a</div> + <div><p>&#98;</p>b</div> + <div><p>&#99;</p>c</div> + <div><p>&#100;</p>d</div> + <div><p>&#101;</p>e</div> + <div><p>&#102;</p>f</div> + <div><p>&#103;</p>g</div> + <div><p>&#104;</p>h</div> + <div><p>&#105;</p>i</div> + <div><p>&#106;</p>j</div> + <div><p>&#107;</p>k</div> + <div><p>&#108;</p>l</div> + <div><p>&#109;</p>m</div> + <div><p>&#110;</p>n</div> + <div><p>&#111;</p>o</div> + <div><p>&#112;</p>p</div> + <div><p>&#113;</p>q</div> + <div><p>&#114;</p>r</div> + <div><p>&#115;</p>s</div> + <div><p>&#116;</p>t</div> + <div><p>&#117;</p>u</div> + <div><p>&#118;</p>v</div> + <div><p>&#119;</p>w</div> + <div><p>&#120;</p>x</div> + <div><p>&#121;</p>y</div> + <div><p>&#122;</p>z</div> + <div><p>&#123;</p>{</div> + <div><p>&#124;</p>|</div> + <div><p>&#125;</p>}</div> + <div><p>&#126;</p>~</div> + <div><p>&#160;</p> </div> + <div><p>&#161;</p>¡</div> + <div><p>&#162;</p>¢</div> + <div><p>&#163;</p>£</div> + <div><p>&#164;</p>¤</div> + <div><p>&#165;</p>¥</div> + <div><p>&#166;</p>¦</div> + <div><p>&#167;</p>§</div> + <div><p>&#168;</p>¨</div> + <div><p>&#169;</p>©</div> + <div><p>&#170;</p>ª</div> + <div><p>&#171;</p>«</div> + <div><p>&#172;</p>¬</div> + <div><p>&#173;</p>­</div> + <div><p>&#174;</p>®</div> + <div><p>&#175;</p>¯</div> + <div><p>&#176;</p>°</div> + <div><p>&#177;</p>±</div> + <div><p>&#178;</p>²</div> + <div><p>&#179;</p>³</div> + <div><p>&#180;</p>´</div> + <div><p>&#181;</p>µ</div> + <div><p>&#182;</p>¶</div> + <div><p>&#183;</p>·</div> + <div><p>&#184;</p>¸</div> + <div><p>&#185;</p>¹</div> + <div><p>&#186;</p>º</div> + <div><p>&#187;</p>»</div> + <div><p>&#188;</p>¼</div> + <div><p>&#189;</p>½</div> + <div><p>&#190;</p>¾</div> + <div><p>&#191;</p>¿</div> + <div><p>&#192;</p>À</div> + <div><p>&#193;</p>Á</div> + <div><p>&#194;</p>Â</div> + <div><p>&#195;</p>Ã</div> + <div><p>&#196;</p>Ä</div> + <div><p>&#197;</p>Å</div> + <div><p>&#198;</p>Æ</div> + <div><p>&#199;</p>Ç</div> + <div><p>&#200;</p>È</div> + <div><p>&#201;</p>É</div> + <div><p>&#202;</p>Ê</div> + <div><p>&#203;</p>Ë</div> + <div><p>&#204;</p>Ì</div> + <div><p>&#205;</p>Í</div> + <div><p>&#206;</p>Î</div> + <div><p>&#207;</p>Ï</div> + <div><p>&#208;</p>Ð</div> + <div><p>&#209;</p>Ñ</div> + <div><p>&#210;</p>Ò</div> + <div><p>&#211;</p>Ó</div> + <div><p>&#212;</p>Ô</div> + <div><p>&#213;</p>Õ</div> + <div><p>&#214;</p>Ö</div> + <div><p>&#215;</p>×</div> + <div><p>&#216;</p>Ø</div> + <div><p>&#217;</p>Ù</div> + <div><p>&#218;</p>Ú</div> + <div><p>&#219;</p>Û</div> + <div><p>&#220;</p>Ü</div> + <div><p>&#221;</p>Ý</div> + <div><p>&#222;</p>Þ</div> + <div><p>&#223;</p>ß</div> + <div><p>&#224;</p>à</div> + <div><p>&#225;</p>á</div> + <div><p>&#226;</p>â</div> + <div><p>&#227;</p>ã</div> + <div><p>&#228;</p>ä</div> + <div><p>&#229;</p>å</div> + <div><p>&#230;</p>æ</div> + <div><p>&#231;</p>ç</div> + <div><p>&#232;</p>è</div> + <div><p>&#233;</p>é</div> + <div><p>&#234;</p>ê</div> + <div><p>&#235;</p>ë</div> + <div><p>&#236;</p>ì</div> + <div><p>&#237;</p>í</div> + <div><p>&#238;</p>î</div> + <div><p>&#239;</p>ï</div> + <div><p>&#240;</p>ð</div> + <div><p>&#241;</p>ñ</div> + <div><p>&#242;</p>ò</div> + <div><p>&#243;</p>ó</div> + <div><p>&#244;</p>ô</div> + <div><p>&#245;</p>õ</div> + <div><p>&#246;</p>ö</div> + <div><p>&#247;</p>÷</div> + <div><p>&#248;</p>ø</div> + <div><p>&#249;</p>ù</div> + <div><p>&#250;</p>ú</div> + <div><p>&#251;</p>û</div> + <div><p>&#252;</p>ü</div> + <div><p>&#253;</p>ý</div> + <div><p>&#254;</p>þ</div> + <div><p>&#255;</p>ÿ</div> + <div><p>&#338;</p>Œ</div> + <div><p>&#339;</p>œ</div> + <div><p>&#376;</p>Ÿ</div> + <div><p>&#710;</p>ˆ</div> + <div><p>&#732;</p>˜</div> + <div><p>&#8192;</p> </div> + <div><p>&#8193;</p> </div> + <div><p>&#8194;</p> </div> + <div><p>&#8195;</p> </div> + <div><p>&#8196;</p> </div> + <div><p>&#8197;</p> </div> + <div><p>&#8198;</p> </div> + <div><p>&#8199;</p> </div> + <div><p>&#8200;</p> </div> + <div><p>&#8201;</p> </div> + <div><p>&#8202;</p> </div> + <div><p>&#8208;</p>‐</div> + <div><p>&#8209;</p>‑</div> + <div><p>&#8210;</p>‒</div> + <div><p>&#8211;</p>–</div> + <div><p>&#8212;</p>—</div> + <div><p>&#8216;</p>‘</div> + <div><p>&#8217;</p>’</div> + <div><p>&#8218;</p>‚</div> + <div><p>&#8220;</p>“</div> + <div><p>&#8221;</p>”</div> + <div><p>&#8222;</p>„</div> + <div><p>&#8226;</p>•</div> + <div><p>&#8230;</p>…</div> + <div><p>&#8239;</p> </div> + <div><p>&#8249;</p>‹</div> + <div><p>&#8250;</p>›</div> + <div><p>&#8287;</p> </div> + <div><p>&#8364;</p>€</div> + <div><p>&#8482;</p>™</div> + <div><p>&#9724;</p>◼</div> + <div><p>&#64257;</p>fi</div> + <div><p>&#64258;</p>fl</div> + <div><p>&#64259;</p>ffi</div> + <div><p>&#64260;</p>ffl</div> + </div> + </div> + + + </div> + </div> + + + <div id="specs"> + + </div> + + <div id="installing"> + <div class="section"> + <div class="grid7 firstcol"> + <h1>Installing Webfonts</h1> + + <p>Webfonts are supported by all major browser platforms but not all in the same way. There are currently four different font formats that must be included in order to target all browsers. This includes TTF, WOFF, EOT and SVG.</p> + + <h2>1. Upload your webfonts</h2> + <p>You must upload your webfont kit to your website. They should be in or near the same directory as your CSS files.</p> + + <h2>2. Include the webfont stylesheet</h2> + <p>A special CSS @font-face declaration helps the various browsers select the appropriate font it needs without causing you a bunch of headaches. Learn more about this syntax by reading the <a href="https://www.fontspring.com/blog/further-hardening-of-the-bulletproof-syntax">Fontspring blog post</a> about it. The code for it is as follows:</p> + + +<code> +@font-face{ + font-family: 'MyWebFont'; + src: url('WebFont.eot'); + src: url('WebFont.eot?#iefix') format('embedded-opentype'), + url('WebFont.woff') format('woff'), + url('WebFont.ttf') format('truetype'), + url('WebFont.svg#webfont') format('svg'); +} +</code> + + <p>We've already gone ahead and generated the code for you. All you have to do is link to the stylesheet in your HTML, like this:</p> + <code><link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8" /></code> + + <h2>3. Modify your own stylesheet</h2> + <p>To take advantage of your new fonts, you must tell your stylesheet to use them. Look at the original @font-face declaration above and find the property called "font-family." The name linked there will be what you use to reference the font. Prepend that webfont name to the font stack in the "font-family" property, inside the selector you want to change. For example:</p> +<code>p { font-family: 'WebFont', Arial, sans-serif; }</code> + +<h2>4. Test</h2> +<p>Getting webfonts to work cross-browser <em>can</em> be tricky. Use the information in the sidebar to help you if you find that fonts aren't loading in a particular browser.</p> + </div> + + <div class="grid5 sidebar"> + <div class="box"> + <h2>Troubleshooting<br />Font-Face Problems</h2> + <p>Having trouble getting your webfonts to load in your new website? Here are some tips to sort out what might be the problem.</p> + + <h3>Fonts not showing in any browser</h3> + + <p>This sounds like you need to work on the plumbing. You either did not upload the fonts to the correct directory, or you did not link the fonts properly in the CSS. If you've confirmed that all this is correct and you still have a problem, take a look at your .htaccess file and see if requests are getting intercepted.</p> + + <h3>Fonts not loading in iPhone or iPad</h3> + + <p>The most common problem here is that you are serving the fonts from an IIS server. IIS refuses to serve files that have unknown MIME types. If that is the case, you must set the MIME type for SVG to "image/svg+xml" in the server settings. Follow these instructions from Microsoft if you need help.</p> + + <h3>Fonts not loading in Firefox</h3> + + <p>The primary reason for this failure? You are still using a version Firefox older than 3.5. So upgrade already! If that isn't it, then you are very likely serving fonts from a different domain. Firefox requires that all font assets be served from the same domain. Lastly it is possible that you need to add WOFF to your list of MIME types (if you are serving via IIS.)</p> + + <h3>Fonts not loading in IE</h3> + + <p>Are you looking at Internet Explorer on an actual Windows machine or are you cheating by using a service like Adobe BrowserLab? Many of these screenshot services do not render @font-face for IE. Best to test it on a real machine.</p> + + <h3>Fonts not loading in IE9</h3> + + <p>IE9, like Firefox, requires that fonts be served from the same domain as the website. Make sure that is the case.</p> + </div> + </div> + </div> + + </div> + + </div> + <div id="footer"> + <p>©2010-2017 Font Squirrel. All rights reserved.</p> + </div> +</div> +</body> +</html> diff --git a/test/samples/aurorae/fonts/spectral/spectral-semibolditalic-webfont.ttf b/test/samples/aurorae/fonts/spectral/spectral-semibolditalic-webfont.ttf new file mode 100755 index 0000000000000000000000000000000000000000..0ac4d2f4afed86df263df72bc8245aa3cbf9ee05 Binary files /dev/null and b/test/samples/aurorae/fonts/spectral/spectral-semibolditalic-webfont.ttf differ diff --git a/test/samples/aurorae/fonts/spectral/spectral-semibolditalic-webfont.woff b/test/samples/aurorae/fonts/spectral/spectral-semibolditalic-webfont.woff new file mode 100755 index 0000000000000000000000000000000000000000..257ca8bdb617e082386ed5a3db7635e3199a11d8 Binary files /dev/null and b/test/samples/aurorae/fonts/spectral/spectral-semibolditalic-webfont.woff differ diff --git a/test/samples/aurorae/fonts/spectral/spectral-semibolditalic-webfont.woff2 b/test/samples/aurorae/fonts/spectral/spectral-semibolditalic-webfont.woff2 new file mode 100755 index 0000000000000000000000000000000000000000..557b74ca1933f9db84be82c91b5830744796ffcf Binary files /dev/null and b/test/samples/aurorae/fonts/spectral/spectral-semibolditalic-webfont.woff2 differ diff --git a/test/samples/aurorae/fonts/spectral/stylesheet.css b/test/samples/aurorae/fonts/spectral/stylesheet.css new file mode 100755 index 0000000000000000000000000000000000000000..0623bbd7cb9fbcc482bf9fb0175ceb166d28f0e9 --- /dev/null +++ b/test/samples/aurorae/fonts/spectral/stylesheet.css @@ -0,0 +1,166 @@ +/*! Generated by Font Squirrel (https://www.fontsquirrel.com) on January 29, 2018 */ + + +/* + +@font-face { + font-family: 'spectral'; + src: url('spectral-semibold-webfont.woff2') format('woff2'), + url('spectral-semibold-webfont.woff') format('woff'); + font-weight: 600; + font-style: normal; + +} + +@font-face { + font-family: 'spectral'; + src: url('spectral-semibolditalic-webfont.woff2') format('woff2'), + url('spectral-semibolditalic-webfont.woff') format('woff'); + font-weight: 600; + font-style: italic; + +} + + +@font-face { + font-family: 'spectral'; + src: url('spectral-bold-webfont.woff2') format('woff2'), + url('spectral-bold-webfont.woff') format('woff'); + font-weight: 700; + font-style: normal; + +} + + + + +@font-face { + font-family: 'spectral'; + src: url('spectral-bolditalic-webfont.woff2') format('woff2'), + url('spectral-bolditalic-webfont.woff') format('woff'); + font-weight: 700; + font-style: italic; + +} + + + + +@font-face { + font-family: 'spectral'; + src: url('spectral-extrabold-webfont.woff2') format('woff2'), + url('spectral-extrabold-webfont.woff') format('woff'); + font-weight: 800; + font-style: normal; + +} + + + + +@font-face { + font-family: 'spectral'; + src: url('spectral-extrabolditalic-webfont.woff2') format('woff2'), + url('spectral-extrabolditalic-webfont.woff') format('woff'); + font-weight: 800; + font-style: italic; + +} + + + + +@font-face { + font-family: 'spectral'; + src: url('spectral-extralight-webfont.woff2') format('woff2'), + url('spectral-extralight-webfont.woff') format('woff'); + font-weight: 200; + font-style: normal; + +} + + + + +@font-face { + font-family: 'spectral'; + src: url('spectral-extralightitalic-webfont.woff2') format('woff2'), + url('spectral-extralightitalic-webfont.woff') format('woff'); + font-weight: 200; + font-style: italic; + +} + + + + + + + +@font-face { + font-family: 'spectral'; + src: url('spectral-light-webfont.woff2') format('woff2'), + url('spectral-light-webfont.woff') format('woff'); + font-weight: 300; + font-style: normal; + +} + + + + +@font-face { + font-family: 'spectral'; + src: url('spectral-lightitalic-webfont.woff2') format('woff2'), + url('spectral-lightitalic-webfont.woff') format('woff'); + font-weight: 300; + font-style: italic; + +} + + + + +@font-face { + font-family: 'spectral'; + src: url('spectral-medium-webfont.woff2') format('woff2'), + url('spectral-medium-webfont.woff') format('woff'); + font-weight: 500; + font-style: normal; + +} + + + + +@font-face { + font-family: 'spectral'; + src: url('spectral-mediumitalic-webfont.woff2') format('woff2'), + url('spectral-mediumitalic-webfont.woff') format('woff'); + font-weight: 500; + font-style: italic; + +} + + +*/ + +@font-face { + font-family: 'spectral'; + src: url('spectral-regular-webfont.woff2') format('woff2'), + url('spectral-regular-webfont.woff') format('woff'); + font-weight: normal; + font-style: normal; + +} + + + +@font-face { + font-family: 'spectral'; + src: url('spectral-italic-webfont.woff2') format('woff2'), + url('spectral-italic-webfont.woff') format('woff'); + font-weight: 400; + font-style: italic; + +} diff --git a/test/samples/aurorae/images/alere.jpg b/test/samples/aurorae/images/alere.jpg new file mode 100644 index 0000000000000000000000000000000000000000..af951008e5038bb312bacd3206471ef685a2049f Binary files /dev/null and b/test/samples/aurorae/images/alere.jpg differ diff --git a/test/samples/aurorae/images/cover.jpg b/test/samples/aurorae/images/cover.jpg new file mode 100644 index 0000000000000000000000000000000000000000..01068a0301f1393dd6c5303ee48b4201a1018f88 Binary files /dev/null and b/test/samples/aurorae/images/cover.jpg differ diff --git a/test/samples/aurorae/images/fig1.jpg b/test/samples/aurorae/images/fig1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1e1d40ee1e61add38266d2ec1b27fc0599334a39 Binary files /dev/null and b/test/samples/aurorae/images/fig1.jpg differ diff --git a/test/samples/aurorae/images/fig2-3-4.jpg b/test/samples/aurorae/images/fig2-3-4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..52f0b26bdbc16d913ef8972abd59db7168616caa Binary files /dev/null and b/test/samples/aurorae/images/fig2-3-4.jpg differ diff --git a/test/samples/aurorae/images/graph.jpg b/test/samples/aurorae/images/graph.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4ccd7f2d4638fb9509654263ee4bbbe33290e226 Binary files /dev/null and b/test/samples/aurorae/images/graph.jpg differ diff --git a/test/samples/aurorae/images/lune.ai b/test/samples/aurorae/images/lune.ai new file mode 100644 index 0000000000000000000000000000000000000000..9ecf4a4dba67962cd8bb56f75c5df63e4300c622 --- /dev/null +++ b/test/samples/aurorae/images/lune.ai @@ -0,0 +1,2841 @@ +%PDF-1.5 %âãÏÓ +1 0 obj <</Metadata 2 0 R/OCProperties<</D<</ON[5 0 R]/Order 6 0 R/RBGroups[]>>/OCGs[5 0 R]>>/Pages 3 0 R/Type/Catalog>> endobj 2 0 obj <</Length 37304/Subtype/XML/Type/Metadata>>stream +<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> +<x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.5-c014 79.151739, 2013/04/03-12:12:15 "> + <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> + <rdf:Description rdf:about="" + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:xmp="http://ns.adobe.com/xap/1.0/" + xmlns:xmpGImg="http://ns.adobe.com/xap/1.0/g/img/" + xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" + xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" + xmlns:stEvt="http://ns.adobe.com/xap/1.0/sType/ResourceEvent#" + xmlns:illustrator="http://ns.adobe.com/illustrator/1.0/" + xmlns:xmpTPg="http://ns.adobe.com/xap/1.0/t/pg/" + xmlns:stDim="http://ns.adobe.com/xap/1.0/sType/Dimensions#" + xmlns:xmpG="http://ns.adobe.com/xap/1.0/g/" + xmlns:pdf="http://ns.adobe.com/pdf/1.3/"> + <dc:format>application/pdf</dc:format> + <dc:title> + <rdf:Alt> + <rdf:li xml:lang="x-default">lune</rdf:li> + </rdf:Alt> + </dc:title> + <xmp:MetadataDate>2018-01-07T18:39:02+01:00</xmp:MetadataDate> + <xmp:ModifyDate>2018-01-07T18:39:02+01:00</xmp:ModifyDate> + <xmp:CreateDate>2018-01-07T18:39:02+01:00</xmp:CreateDate> + <xmp:CreatorTool>Adobe Illustrator CC (Macintosh)</xmp:CreatorTool> + <xmp:Thumbnails> + <rdf:Alt> + <rdf:li rdf:parseType="Resource"> + <xmpGImg:width>256</xmpGImg:width> + <xmpGImg:height>28</xmpGImg:height> + <xmpGImg:format>JPEG</xmpGImg:format> + <xmpGImg:image>/9j/4AAQSkZJRgABAgEASABIAAD/7QAsUGhvdG9zaG9wIDMuMAA4QklNA+0AAAAAABAASAAAAAEA
AQBIAAAAAQAB/+4ADkFkb2JlAGTAAAAAAf/bAIQABgQEBAUEBgUFBgkGBQYJCwgGBggLDAoKCwoK
DBAMDAwMDAwQDA4PEA8ODBMTFBQTExwbGxscHx8fHx8fHx8fHwEHBwcNDA0YEBAYGhURFRofHx8f
Hx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8f/8AAEQgAHAEAAwER
AAIRAQMRAf/EAaIAAAAHAQEBAQEAAAAAAAAAAAQFAwIGAQAHCAkKCwEAAgIDAQEBAQEAAAAAAAAA
AQACAwQFBgcICQoLEAACAQMDAgQCBgcDBAIGAnMBAgMRBAAFIRIxQVEGE2EicYEUMpGhBxWxQiPB
UtHhMxZi8CRygvElQzRTkqKyY3PCNUQnk6OzNhdUZHTD0uIIJoMJChgZhJRFRqS0VtNVKBry4/PE
1OT0ZXWFlaW1xdXl9WZ2hpamtsbW5vY3R1dnd4eXp7fH1+f3OEhYaHiImKi4yNjo+Ck5SVlpeYmZ
qbnJ2en5KjpKWmp6ipqqusra6voRAAICAQIDBQUEBQYECAMDbQEAAhEDBCESMUEFURNhIgZxgZEy
obHwFMHR4SNCFVJicvEzJDRDghaSUyWiY7LCB3PSNeJEgxdUkwgJChgZJjZFGidkdFU38qOzwygp
0+PzhJSktMTU5PRldYWVpbXF1eX1RlZmdoaWprbG1ub2R1dnd4eXp7fH1+f3OEhYaHiImKi4yNjo
+DlJWWl5iZmpucnZ6fkqOkpaanqKmqq6ytrq+v/aAAwDAQACEQMRAD8A6F+bX5Q6wLS48zeQdV1D
TNctQ001hDd3Hp3CKOTCMFiVk22UfC3SnfFUl/ID8/8AUfMWox+VPNciyanIpOmamAEM5QVMUoFF
9TiCVYAVpQ79Qr6Bwq7FXyP/AM5F+WvP/lbW4tWbzHqWo6HqTsttLLO6m3l3YwFYykYBX4k4qtd9
tsCsb/Lv/nITz35Uvokvr2bW9FLAXFjeOZZAncwzPV0YdhXj7d8VfZ+iazp+t6RZ6vp0omsb6JJ7
eQbVRxUVHYjoR2OFUbir4u/OX82/zUuPNup6JfXc2hQWEzQrpljI0S8OqM8q8Xl5oVap+HuFGBWD
aJ+Y/n3RLtbvTNevoZVNSpmeSNqfzxyFkcezKcVfXX5GfnJF+YOkTW1+iW/mLTlU3sSbRzRtss8Y
PTfZl7H5jCr1DFXzn+fn/OQupaPqk/lPyhMILu1PDVNVAV2RyN4YK1AK1+NuoOwoRXAr54l87ecp
ro3cuvag90Ty9c3Uxevjy5VxV7D+TP8Azkhr9hq9ronnK8bUNHunWGPUpzW4tnY0VpJDvJHX7XOr
DrXamKvrLCrC/wA2fzLsfy/8qvq00Yub6Z/Q02zJp6kxBNWI3CIByY/R1IxV8beafzc/MTzNePca
lrdyiMapaW0jW9ug7BYoyo28WqfE4FRfkX83fzM0DVrZNJ1S5vxNIsa6VdO9zDMzsAECOSVLGgqh
B98VfddhJeSWFtJewrb3rxI11Aj+okcpUF0V6LyCtUA03wqrSSJGjSSMEjQFndjQADckk9sVfH/5
s/8AOSPmfXdUuNO8qXkmk6BCxjjuYCY7q5pt6hkFHjU/sqtDT7XgAqS/k1pH5ied/OCwWHmHUbGC
1AuNT1NLmYskZb7Iq1GeQ7AH3J2GKvta1gaC1igaZ7hokVDPLx9RyopyfiFXkepoBhVVxV5D+ff5
3HyJaRaRowSXzLfR+orOAyWsNeIlZT9p2IPBem1TtQMqxf8AJ78t/NHnS1i86fmBrepXdvdkyabp
YuZYUeOv964jZeCNT4UTjUb9DgV9BwQRQQpDEOMcahUBJNANhuak4VaubmC1tpbm4cRW8CNJNK2y
qiDkzE+AAxVgGm6ZrPn+L9L63c3Om+Vbn4tJ0G1le2luLc/Znvpo+Mv70fEsKMoVacqnFUxb8nvy
14/utBgtph0u7YyQXIPiJ4mSWvvyxVDWt7rvk3XLLS9XvZNW8r6tKLXTNVuSGu7S7evp21y4A9aO
WnGOU/Fy+Fq1BxVneKvgxv8AQ/zyYaMBSDzMV09E6ELf0iUexFBgV954Vdiry3/nJmG1f8nNZaYK
ZIpLR7YnqJDdRqePv6bN9GKviTAr7U/5xeluH/KKxWUsUjubpIOXQJ6pai+3Nmwq9ZxV8f8A/OW8
NlH+Zdo8FBPNpcL3YXu4mmVS2/2uCqPlTArxLFXrn/OLct0n5t2iwkiOW0ukuadDGI+Qr7eoq4q+
0cKvzi8wzXU2v6nNdljdSXc73Bb7RkaRi9fflgVL8Vdir9EfIk13P5H8vTXv+9kumWb3Nf8AfrW6
F/H9quFXzr/zmNLdnXvLkLE/U1tZ3iG9PVaRRJ2p9lU74Cr54xV6D+QEFlN+cHlpLynoieV1r/v2
O3keHx/3aq4q+7MKsQ/N+W7i/K7zQ9pX1hp1wKjYhChEh7dEJxV8A4FfWP8Azh7BZL5L1udKfXZN
SCT+PpJBGYv+GeTCr3zFXYq+G/8AnIuW6k/OPzALgmsbW6RA9BGLWIrT51rgV9r6HBZ2+i6fBYgC
yhtoY7UL09JYwEpuf2aYVRuKsP8Azean5ca2GYpDJFHFdMNqW8kyJOf+RTNirL0RERURQqKAqqoo
ABsAAMVbxVhv5xKh/LPXnJpLDAJrU9xcxSLJb09/WVaYqxf84Pz58veVdLudN0O7j1HzVOpitobc
iVLd229SZlqoZa1VOpNKim+KvOf+cePyP1w69b+dfNVtJawWpM2mWdwCJppz9meRW+JVSvJa7lqH
p1CvqDCrsVfIv/OSn5vx+Zr5PKmkpLFpWmTepeyzI8Lz3KgqoEbhXCRhjTkNya02BwK838gfll5s
88anHaaNaP8AVuQFzqUilbaFe5eSlCadFHxHwxV92eUvLOn+V/Len6Bp4P1TT4REjHZnb7TyNT9p
3JY+5wqm2Kvhb89NL8+R+ftS1PzXYtA13LSznjDNaNAg4xLDLShogFQaNXqAcCsCsNPv9Qu47Owt
pbu7mPGK3gRpJGPgqqCTir68/wCcdPyZvvJlpca/ryCPXtRiEMVqCGNtbEhyrkbeo7KOQ7UHvhV7
Vir5Q/5yE/IvXLTXrzzZ5btJL7S9QdrjULaBS8tvOxrI/BfiaNz8VR9k1rtTArwEgg0PXFXqn5Nf
kdr3nTVra/1K1ks/KsLrJc3UqlPrKqa+lBWhbn0LjZfnQFV9sIiIioihUUBVVRQADYAAYVec/nn+
Vf8AysDyskNmyx65prNPpkjmitzAEsLHsJAo37MB2rir4o1zQNa0HUJNO1mymsL2IkPDOhU7bVWu
zKezDY9sCph5F0nzfqHmWxbypaTXOsWs8c1u0KkiN0bkryN9lFqNyxAxV+g9g161hbNfpHHfNEhu
44WLxrKVHqKjMFJUNWhI6YVXXlpbXlpPZ3UYmtrmNoZ4m+y8bqVZT7EGmKvh382fyW8yeRNUnkSC
W98tuxaz1RFLKqE7Rz8f7t16b7N1HcAKrfkR+az+QvMzrdRyXGiatwhvoogWkRlJ9KZFH2ivIgr3
B8aYq+3LW5iurWK5h5ejOiyRl1aNuLCoqjhWU0PQiuFVXFXgv/OSH5Kan5nePzX5bh+satbxCHUL
BftzxJUpJF/NIlaFf2hSm4oVVP8AIj879Ni0q38lecpf0RrOlKLWznvKwpLEgpHFIX4+nJGvw0an
IU74q99jkSRFeNg6MKqymoIPcEYqhtV0yz1XTLvTL2P1bO9hkt7mP+aOVSjD7jirCtC82t5UEPln
ztOLV7YCDSvMM/wWd9AopFzmPwRXIUUkRyOR3WoOKstuvMvly0tDeXWq2cFoBU3Ek8SR0pWvIsBi
rD3u5fzD1OySyikTyRp1xHeXF/KjRjU7iBg8EVujAFreOVQ7yEUYgBaipxVlNl/g36+fqP6O/SFT
X0PQ9atfi+z8Va9cVTnFXYq7FUq1j/Cnqp+mfqHq0Pp/XPR5U78fU3piqY231b6vH9V4fV+I9L0q
cOPbjx2piqpirsVUb36l9Vk+u+n9Vp+99bj6dP8AK5fDT54qgdG/wxyk/Qv1LlQer9T9KtO3L0/4
4qmmKuxV2KpLdf4L/SB+tfo39I8hy9X0PW5dq8vjriqdYq7FXYqgdX/QXoL+mPqvoV+D656fCvt6
m1cVXaV+h/qv+4n6v9VqafVOHp17/wB38NcVRmKuxVpuPE86caHlXpTvXFUn0/8Awb9f/wBx/wCj
vr/xf7z+h63+V9j4vniqc4q7FXYqlOsf4T9ZP0z9Q9fj+7+uejz4+3qb0xVM4PQ9FPq/H0OI9P06
cOPbjTamKr8VUL/6h9Tm/SHpfUuP7/6xx9Lj358/hp88VYPp/wDyoP8ASK/o7/Cv6S5Hh9X/AEd6
/Ku9OHx1xVn+Kv8A/9k=</xmpGImg:image> + </rdf:li> + </rdf:Alt> + </xmp:Thumbnails> + <xmpMM:InstanceID>uuid:2a6a1234-042c-e842-8eb3-c6bbf59d77af</xmpMM:InstanceID> + <xmpMM:DocumentID>xmp.did:20d5d31d-9449-455c-b52e-096755859c51</xmpMM:DocumentID> + <xmpMM:OriginalDocumentID>uuid:5D20892493BFDB11914A8590D31508C8</xmpMM:OriginalDocumentID> + <xmpMM:RenditionClass>proof:pdf</xmpMM:RenditionClass> + <xmpMM:DerivedFrom rdf:parseType="Resource"> + <stRef:instanceID>uuid:11339e70-9f2d-469b-b8e9-bd073a2fa22f</stRef:instanceID> + <stRef:documentID>xmp.did:820aac66-9f3c-b64c-a55c-4ced09d4b566</stRef:documentID> + <stRef:originalDocumentID>uuid:5D20892493BFDB11914A8590D31508C8</stRef:originalDocumentID> + <stRef:renditionClass>proof:pdf</stRef:renditionClass> + </xmpMM:DerivedFrom> + <xmpMM:History> + <rdf:Seq> + <rdf:li rdf:parseType="Resource"> + <stEvt:action>saved</stEvt:action> + <stEvt:instanceID>xmp.iid:20d5d31d-9449-455c-b52e-096755859c51</stEvt:instanceID> + <stEvt:when>2018-01-07T18:38:59+01:00</stEvt:when> + <stEvt:softwareAgent>Adobe Illustrator CC (Macintosh)</stEvt:softwareAgent> + <stEvt:changed>/</stEvt:changed> + </rdf:li> + </rdf:Seq> + </xmpMM:History> + <illustrator:Type>Document</illustrator:Type> + <illustrator:StartupProfile>Print</illustrator:StartupProfile> + <xmpTPg:HasVisibleOverprint>False</xmpTPg:HasVisibleOverprint> + <xmpTPg:HasVisibleTransparency>False</xmpTPg:HasVisibleTransparency> + <xmpTPg:NPages>1</xmpTPg:NPages> + <xmpTPg:MaxPageSize rdf:parseType="Resource"> + <stDim:w>227.666667</stDim:w> + <stDim:h>36.000000</stDim:h> + <stDim:unit>Pixels</stDim:unit> + </xmpTPg:MaxPageSize> + <xmpTPg:PlateNames> + <rdf:Seq> + <rdf:li>Cyan</rdf:li> + <rdf:li>Magenta</rdf:li> + <rdf:li>Yellow</rdf:li> + <rdf:li>Black</rdf:li> + </rdf:Seq> + </xmpTPg:PlateNames> + <xmpTPg:SwatchGroups> + <rdf:Seq> + <rdf:li rdf:parseType="Resource"> + <xmpG:groupName>Groupe de nuances par défaut</xmpG:groupName> + <xmpG:groupType>0</xmpG:groupType> + <xmpG:Colorants> + <rdf:Seq> + <rdf:li rdf:parseType="Resource"> + <xmpG:swatchName>Blanc</xmpG:swatchName> + <xmpG:mode>RGB</xmpG:mode> + <xmpG:type>PROCESS</xmpG:type> + <xmpG:red>255</xmpG:red> + <xmpG:green>255</xmpG:green> + <xmpG:blue>255</xmpG:blue> + </rdf:li> + <rdf:li rdf:parseType="Resource"> + <xmpG:swatchName>Noir</xmpG:swatchName> + <xmpG:mode>RGB</xmpG:mode> + <xmpG:type>PROCESS</xmpG:type> + <xmpG:red>29</xmpG:red> + <xmpG:green>29</xmpG:green> + <xmpG:blue>27</xmpG:blue> + </rdf:li> + <rdf:li rdf:parseType="Resource"> + <xmpG:swatchName>Rouge CMJN</xmpG:swatchName> + <xmpG:mode>RGB</xmpG:mode> + <xmpG:type>PROCESS</xmpG:type> + <xmpG:red>227</xmpG:red> + <xmpG:green>6</xmpG:green> + <xmpG:blue>19</xmpG:blue> + </rdf:li> + <rdf:li rdf:parseType="Resource"> + <xmpG:swatchName>Jaune CMJN</xmpG:swatchName> + <xmpG:mode>RGB</xmpG:mode> + <xmpG:type>PROCESS</xmpG:type> + <xmpG:red>255</xmpG:red> + <xmpG:green>237</xmpG:green> + <xmpG:blue>0</xmpG:blue> + </rdf:li> + <rdf:li rdf:parseType="Resource"> + <xmpG:swatchName>Vert CMJN</xmpG:swatchName> + <xmpG:mode>RGB</xmpG:mode> + <xmpG:type>PROCESS</xmpG:type> + <xmpG:red>0</xmpG:red> + <xmpG:green>150</xmpG:green> + <xmpG:blue>64</xmpG:blue> + </rdf:li> + <rdf:li rdf:parseType="Resource"> + <xmpG:swatchName>Cyan CMJN</xmpG:swatchName> + <xmpG:mode>RGB</xmpG:mode> + <xmpG:type>PROCESS</xmpG:type> + <xmpG:red>0</xmpG:red> + <xmpG:green>159</xmpG:green> + <xmpG:blue>227</xmpG:blue> + </rdf:li> + <rdf:li rdf:parseType="Resource"> + <xmpG:swatchName>Bleu CMJN</xmpG:swatchName> + <xmpG:mode>RGB</xmpG:mode> + <xmpG:type>PROCESS</xmpG:type> + <xmpG:red>49</xmpG:red> + <xmpG:green>39</xmpG:green> + <xmpG:blue>131</xmpG:blue> + </rdf:li> + <rdf:li rdf:parseType="Resource"> + <xmpG:swatchName>Magenta CMJN</xmpG:swatchName> + <xmpG:mode>RGB</xmpG:mode> + <xmpG:type>PROCESS</xmpG:type> + <xmpG:red>230</xmpG:red> + <xmpG:green>0</xmpG:green> + <xmpG:blue>126</xmpG:blue> + </rdf:li> + <rdf:li rdf:parseType="Resource"> + <xmpG:swatchName>C=15 M=100 J=90 N=10</xmpG:swatchName> + <xmpG:mode>RGB</xmpG:mode> + <xmpG:type>PROCESS</xmpG:type> + <xmpG:red>190</xmpG:red> + <xmpG:green>22</xmpG:green> + <xmpG:blue>34</xmpG:blue> + </rdf:li> + <rdf:li rdf:parseType="Resource"> + <xmpG:swatchName>C=0 M=90 J=85 N=0</xmpG:swatchName> + <xmpG:mode>RGB</xmpG:mode> + <xmpG:type>PROCESS</xmpG:type> + <xmpG:red>230</xmpG:red> + <xmpG:green>51</xmpG:green> + <xmpG:blue>42</xmpG:blue> + </rdf:li> + <rdf:li rdf:parseType="Resource"> + <xmpG:swatchName>C=0 M=80 J=95 N=0</xmpG:swatchName> + <xmpG:mode>RGB</xmpG:mode> + <xmpG:type>PROCESS</xmpG:type> + <xmpG:red>233</xmpG:red> + <xmpG:green>78</xmpG:green> + <xmpG:blue>27</xmpG:blue> + </rdf:li> + <rdf:li rdf:parseType="Resource"> + <xmpG:swatchName>C=0 M=50 J=100 N=0</xmpG:swatchName> + <xmpG:mode>RGB</xmpG:mode> + <xmpG:type>PROCESS</xmpG:type> + <xmpG:red>243</xmpG:red> + <xmpG:green>146</xmpG:green> + <xmpG:blue>0</xmpG:blue> + </rdf:li> + <rdf:li rdf:parseType="Resource"> + <xmpG:swatchName>C=0 M=35 J=85 N=0</xmpG:swatchName> + <xmpG:mode>RGB</xmpG:mode> + <xmpG:type>PROCESS</xmpG:type> + <xmpG:red>249</xmpG:red> + <xmpG:green>178</xmpG:green> + <xmpG:blue>51</xmpG:blue> + </rdf:li> + <rdf:li rdf:parseType="Resource"> + <xmpG:swatchName>C=5 M=0 J=90 N=0</xmpG:swatchName> + <xmpG:mode>RGB</xmpG:mode> + <xmpG:type>PROCESS</xmpG:type> + <xmpG:red>252</xmpG:red> + <xmpG:green>234</xmpG:green> + <xmpG:blue>16</xmpG:blue> + </rdf:li> + <rdf:li rdf:parseType="Resource"> + <xmpG:swatchName>C=20 M=0 J=100 N=0</xmpG:swatchName> + <xmpG:mode>RGB</xmpG:mode> + <xmpG:type>PROCESS</xmpG:type> + <xmpG:red>222</xmpG:red> + <xmpG:green>220</xmpG:green> + <xmpG:blue>0</xmpG:blue> + </rdf:li> + <rdf:li rdf:parseType="Resource"> + <xmpG:swatchName>C=50 M=0 J=100 N=0</xmpG:swatchName> + <xmpG:mode>RGB</xmpG:mode> + <xmpG:type>PROCESS</xmpG:type> + <xmpG:red>149</xmpG:red> + <xmpG:green>193</xmpG:green> + <xmpG:blue>31</xmpG:blue> + </rdf:li> + <rdf:li rdf:parseType="Resource"> + <xmpG:swatchName>C=75 M=0 J=100 N=0</xmpG:swatchName> + <xmpG:mode>RGB</xmpG:mode> + <xmpG:type>PROCESS</xmpG:type> + <xmpG:red>58</xmpG:red> + <xmpG:green>170</xmpG:green> + <xmpG:blue>53</xmpG:blue> + </rdf:li> + <rdf:li rdf:parseType="Resource"> + <xmpG:swatchName>C=85 M=10 J=100 N=10</xmpG:swatchName> + <xmpG:mode>RGB</xmpG:mode> + <xmpG:type>PROCESS</xmpG:type> + <xmpG:red>0</xmpG:red> + <xmpG:green>141</xmpG:green> + <xmpG:blue>54</xmpG:blue> + </rdf:li> + <rdf:li rdf:parseType="Resource"> + <xmpG:swatchName>C=90 M=30 J=95 N=30</xmpG:swatchName> + <xmpG:mode>RGB</xmpG:mode> + <xmpG:type>PROCESS</xmpG:type> + <xmpG:red>0</xmpG:red> + <xmpG:green>102</xmpG:green> + <xmpG:blue>51</xmpG:blue> + </rdf:li> + <rdf:li rdf:parseType="Resource"> + <xmpG:swatchName>C=75 M=0 J=75 N=0</xmpG:swatchName> + <xmpG:mode>RGB</xmpG:mode> + <xmpG:type>PROCESS</xmpG:type> + <xmpG:red>47</xmpG:red> + <xmpG:green>172</xmpG:green> + <xmpG:blue>102</xmpG:blue> + </rdf:li> + <rdf:li rdf:parseType="Resource"> + <xmpG:swatchName>C=80 M=10 J=45 N=0</xmpG:swatchName> + <xmpG:mode>RGB</xmpG:mode> + <xmpG:type>PROCESS</xmpG:type> + <xmpG:red>0</xmpG:red> + <xmpG:green>161</xmpG:green> + <xmpG:blue>154</xmpG:blue> + </rdf:li> + <rdf:li rdf:parseType="Resource"> + <xmpG:swatchName>C=70 M=15 J=0 N=0</xmpG:swatchName> + <xmpG:mode>RGB</xmpG:mode> + <xmpG:type>PROCESS</xmpG:type> + <xmpG:red>54</xmpG:red> + <xmpG:green>169</xmpG:green> + <xmpG:blue>225</xmpG:blue> + </rdf:li> + <rdf:li rdf:parseType="Resource"> + <xmpG:swatchName>C=85 M=50 J=0 N=0</xmpG:swatchName> + <xmpG:mode>RGB</xmpG:mode> + <xmpG:type>PROCESS</xmpG:type> + <xmpG:red>29</xmpG:red> + <xmpG:green>113</xmpG:green> + <xmpG:blue>184</xmpG:blue> + </rdf:li> + <rdf:li rdf:parseType="Resource"> + <xmpG:swatchName>C=100 M=95 J=5 N=0</xmpG:swatchName> + <xmpG:mode>RGB</xmpG:mode> + <xmpG:type>PROCESS</xmpG:type> + <xmpG:red>45</xmpG:red> + <xmpG:green>46</xmpG:green> + <xmpG:blue>131</xmpG:blue> + </rdf:li> + <rdf:li rdf:parseType="Resource"> + <xmpG:swatchName>C=100 M=100 J=25 N=25</xmpG:swatchName> + <xmpG:mode>RGB</xmpG:mode> + <xmpG:type>PROCESS</xmpG:type> + <xmpG:red>41</xmpG:red> + <xmpG:green>35</xmpG:green> + <xmpG:blue>92</xmpG:blue> + </rdf:li> + <rdf:li rdf:parseType="Resource"> + <xmpG:swatchName>C=75 M=100 J=0 N=0</xmpG:swatchName> + <xmpG:mode>RGB</xmpG:mode> + <xmpG:type>PROCESS</xmpG:type> + <xmpG:red>102</xmpG:red> + <xmpG:green>36</xmpG:green> + <xmpG:blue>131</xmpG:blue> + </rdf:li> + <rdf:li rdf:parseType="Resource"> + <xmpG:swatchName>C=50 M=100 J=0 N=0</xmpG:swatchName> + <xmpG:mode>RGB</xmpG:mode> + <xmpG:type>PROCESS</xmpG:type> + <xmpG:red>149</xmpG:red> + <xmpG:green>27</xmpG:green> + <xmpG:blue>129</xmpG:blue> + </rdf:li> + <rdf:li rdf:parseType="Resource"> + <xmpG:swatchName>C=35 M=100 J=35 N=10</xmpG:swatchName> + <xmpG:mode>RGB</xmpG:mode> + <xmpG:type>PROCESS</xmpG:type> + <xmpG:red>163</xmpG:red> + <xmpG:green>25</xmpG:green> + <xmpG:blue>91</xmpG:blue> + </rdf:li> + <rdf:li rdf:parseType="Resource"> + <xmpG:swatchName>C=10 M=100 J=50 N=0</xmpG:swatchName> + <xmpG:mode>RGB</xmpG:mode> + <xmpG:type>PROCESS</xmpG:type> + <xmpG:red>214</xmpG:red> + <xmpG:green>11</xmpG:green> + <xmpG:blue>82</xmpG:blue> + </rdf:li> + <rdf:li rdf:parseType="Resource"> + <xmpG:swatchName>C=0 M=95 J=20 N=0</xmpG:swatchName> + <xmpG:mode>RGB</xmpG:mode> + <xmpG:type>PROCESS</xmpG:type> + <xmpG:red>231</xmpG:red> + <xmpG:green>29</xmpG:green> + <xmpG:blue>115</xmpG:blue> + </rdf:li> + <rdf:li rdf:parseType="Resource"> + <xmpG:swatchName>C=25 M=25 J=40 N=0</xmpG:swatchName> + <xmpG:mode>RGB</xmpG:mode> + <xmpG:type>PROCESS</xmpG:type> + <xmpG:red>203</xmpG:red> + <xmpG:green>187</xmpG:green> + <xmpG:blue>160</xmpG:blue> + </rdf:li> + <rdf:li rdf:parseType="Resource"> + <xmpG:swatchName>C=40 M=45 J=50 N=5</xmpG:swatchName> + <xmpG:mode>RGB</xmpG:mode> + <xmpG:type>PROCESS</xmpG:type> + <xmpG:red>164</xmpG:red> + <xmpG:green>138</xmpG:green> + <xmpG:blue>123</xmpG:blue> + </rdf:li> + <rdf:li rdf:parseType="Resource"> + <xmpG:swatchName>C=50 M=50 J=60 N=25</xmpG:swatchName> + <xmpG:mode>RGB</xmpG:mode> + <xmpG:type>PROCESS</xmpG:type> + <xmpG:red>123</xmpG:red> + <xmpG:green>106</xmpG:green> + <xmpG:blue>88</xmpG:blue> + </rdf:li> + <rdf:li rdf:parseType="Resource"> + <xmpG:swatchName>C=55 M=60 J=65 N=40</xmpG:swatchName> + <xmpG:mode>RGB</xmpG:mode> + <xmpG:type>PROCESS</xmpG:type> + <xmpG:red>99</xmpG:red> + <xmpG:green>78</xmpG:green> + <xmpG:blue>66</xmpG:blue> + </rdf:li> + <rdf:li rdf:parseType="Resource"> + <xmpG:swatchName>C=25 M=40 J=65 N=0</xmpG:swatchName> + <xmpG:mode>RGB</xmpG:mode> + <xmpG:type>PROCESS</xmpG:type> + <xmpG:red>202</xmpG:red> + <xmpG:green>158</xmpG:green> + <xmpG:blue>103</xmpG:blue> + </rdf:li> + <rdf:li rdf:parseType="Resource"> + <xmpG:swatchName>C=30 M=50 J=75 N=10</xmpG:swatchName> + <xmpG:mode>RGB</xmpG:mode> + <xmpG:type>PROCESS</xmpG:type> + <xmpG:red>177</xmpG:red> + <xmpG:green>127</xmpG:green> + <xmpG:blue>74</xmpG:blue> + </rdf:li> + <rdf:li rdf:parseType="Resource"> + <xmpG:swatchName>C=35 M=60 J=80 N=25</xmpG:swatchName> + <xmpG:mode>RGB</xmpG:mode> + <xmpG:type>PROCESS</xmpG:type> + <xmpG:red>147</xmpG:red> + <xmpG:green>96</xmpG:green> + <xmpG:blue>55</xmpG:blue> + </rdf:li> + <rdf:li rdf:parseType="Resource"> + <xmpG:swatchName>C=40 M=65 J=90 N=35</xmpG:swatchName> + <xmpG:mode>RGB</xmpG:mode> + <xmpG:type>PROCESS</xmpG:type> + <xmpG:red>125</xmpG:red> + <xmpG:green>78</xmpG:green> + <xmpG:blue>36</xmpG:blue> + </rdf:li> + <rdf:li rdf:parseType="Resource"> + <xmpG:swatchName>C=40 M=70 J=100 N=50</xmpG:swatchName> + <xmpG:mode>RGB</xmpG:mode> + <xmpG:type>PROCESS</xmpG:type> + <xmpG:red>104</xmpG:red> + <xmpG:green>60</xmpG:green> + <xmpG:blue>17</xmpG:blue> + </rdf:li> + <rdf:li rdf:parseType="Resource"> + <xmpG:swatchName>C=50 M=70 J=80 N=70</xmpG:swatchName> + <xmpG:mode>RGB</xmpG:mode> + <xmpG:type>PROCESS</xmpG:type> + <xmpG:red>67</xmpG:red> + <xmpG:green>41</xmpG:green> + <xmpG:blue>24</xmpG:blue> + </rdf:li> + </rdf:Seq> + </xmpG:Colorants> + </rdf:li> + <rdf:li rdf:parseType="Resource"> + <xmpG:groupName>Gris</xmpG:groupName> + <xmpG:groupType>1</xmpG:groupType> + <xmpG:Colorants> + <rdf:Seq> + <rdf:li rdf:parseType="Resource"> + <xmpG:swatchName>C=0 M=0 J=0 N=100</xmpG:swatchName> + <xmpG:mode>RGB</xmpG:mode> + <xmpG:type>PROCESS</xmpG:type> + <xmpG:red>29</xmpG:red> + <xmpG:green>29</xmpG:green> + <xmpG:blue>27</xmpG:blue> + </rdf:li> + <rdf:li rdf:parseType="Resource"> + <xmpG:swatchName>C=0 M=0 J=0 N=90</xmpG:swatchName> + <xmpG:mode>RGB</xmpG:mode> + <xmpG:type>PROCESS</xmpG:type> + <xmpG:red>60</xmpG:red> + <xmpG:green>60</xmpG:green> + <xmpG:blue>59</xmpG:blue> + </rdf:li> + <rdf:li rdf:parseType="Resource"> + <xmpG:swatchName>C=0 M=0 J=0 N=80</xmpG:swatchName> + <xmpG:mode>RGB</xmpG:mode> + <xmpG:type>PROCESS</xmpG:type> + <xmpG:red>87</xmpG:red> + <xmpG:green>87</xmpG:green> + <xmpG:blue>86</xmpG:blue> + </rdf:li> + <rdf:li rdf:parseType="Resource"> + <xmpG:swatchName>C=0 M=0 J=0 N=70</xmpG:swatchName> + <xmpG:mode>RGB</xmpG:mode> + <xmpG:type>PROCESS</xmpG:type> + <xmpG:red>112</xmpG:red> + <xmpG:green>111</xmpG:green> + <xmpG:blue>111</xmpG:blue> + </rdf:li> + <rdf:li rdf:parseType="Resource"> + <xmpG:swatchName>C=0 M=0 J=0 N=60</xmpG:swatchName> + <xmpG:mode>RGB</xmpG:mode> + <xmpG:type>PROCESS</xmpG:type> + <xmpG:red>135</xmpG:red> + <xmpG:green>135</xmpG:green> + <xmpG:blue>135</xmpG:blue> + </rdf:li> + <rdf:li rdf:parseType="Resource"> + <xmpG:swatchName>C=0 M=0 J=0 N=50</xmpG:swatchName> + <xmpG:mode>RGB</xmpG:mode> + <xmpG:type>PROCESS</xmpG:type> + <xmpG:red>157</xmpG:red> + <xmpG:green>157</xmpG:green> + <xmpG:blue>156</xmpG:blue> + </rdf:li> + <rdf:li rdf:parseType="Resource"> + <xmpG:swatchName>C=0 M=0 J=0 N=40</xmpG:swatchName> + <xmpG:mode>RGB</xmpG:mode> + <xmpG:type>PROCESS</xmpG:type> + <xmpG:red>178</xmpG:red> + <xmpG:green>178</xmpG:green> + <xmpG:blue>178</xmpG:blue> + </rdf:li> + <rdf:li rdf:parseType="Resource"> + <xmpG:swatchName>C=0 M=0 J=0 N=30</xmpG:swatchName> + <xmpG:mode>RGB</xmpG:mode> + <xmpG:type>PROCESS</xmpG:type> + <xmpG:red>198</xmpG:red> + <xmpG:green>198</xmpG:green> + <xmpG:blue>198</xmpG:blue> + </rdf:li> + <rdf:li rdf:parseType="Resource"> + <xmpG:swatchName>C=0 M=0 J=0 N=20</xmpG:swatchName> + <xmpG:mode>RGB</xmpG:mode> + <xmpG:type>PROCESS</xmpG:type> + <xmpG:red>218</xmpG:red> + <xmpG:green>218</xmpG:green> + <xmpG:blue>218</xmpG:blue> + </rdf:li> + <rdf:li rdf:parseType="Resource"> + <xmpG:swatchName>C=0 M=0 J=0 N=10</xmpG:swatchName> + <xmpG:mode>RGB</xmpG:mode> + <xmpG:type>PROCESS</xmpG:type> + <xmpG:red>237</xmpG:red> + <xmpG:green>237</xmpG:green> + <xmpG:blue>237</xmpG:blue> + </rdf:li> + <rdf:li rdf:parseType="Resource"> + <xmpG:swatchName>C=0 M=0 J=0 N=5</xmpG:swatchName> + <xmpG:mode>RGB</xmpG:mode> + <xmpG:type>PROCESS</xmpG:type> + <xmpG:red>246</xmpG:red> + <xmpG:green>246</xmpG:green> + <xmpG:blue>246</xmpG:blue> + </rdf:li> + </rdf:Seq> + </xmpG:Colorants> + </rdf:li> + <rdf:li rdf:parseType="Resource"> + <xmpG:groupName>Couleurs vives</xmpG:groupName> + <xmpG:groupType>1</xmpG:groupType> + <xmpG:Colorants> + <rdf:Seq> + <rdf:li rdf:parseType="Resource"> + <xmpG:swatchName>C=0 M=100 J=100 N=0</xmpG:swatchName> + <xmpG:mode>RGB</xmpG:mode> + <xmpG:type>PROCESS</xmpG:type> + <xmpG:red>227</xmpG:red> + <xmpG:green>6</xmpG:green> + <xmpG:blue>19</xmpG:blue> + </rdf:li> + <rdf:li rdf:parseType="Resource"> + <xmpG:swatchName>C=0 M=75 J=100 N=0</xmpG:swatchName> + <xmpG:mode>RGB</xmpG:mode> + <xmpG:type>PROCESS</xmpG:type> + <xmpG:red>234</xmpG:red> + <xmpG:green>91</xmpG:green> + <xmpG:blue>12</xmpG:blue> + </rdf:li> + <rdf:li rdf:parseType="Resource"> + <xmpG:swatchName>C=0 M=10 J=95 N=0</xmpG:swatchName> + <xmpG:mode>RGB</xmpG:mode> + <xmpG:type>PROCESS</xmpG:type> + <xmpG:red>255</xmpG:red> + <xmpG:green>222</xmpG:green> + <xmpG:blue>0</xmpG:blue> + </rdf:li> + <rdf:li rdf:parseType="Resource"> + <xmpG:swatchName>C=85 M=10 J=100 N=0</xmpG:swatchName> + <xmpG:mode>RGB</xmpG:mode> + <xmpG:type>PROCESS</xmpG:type> + <xmpG:red>0</xmpG:red> + <xmpG:green>152</xmpG:green> + <xmpG:blue>58</xmpG:blue> + </rdf:li> + <rdf:li rdf:parseType="Resource"> + <xmpG:swatchName>C=100 M=90 J=0 N=0</xmpG:swatchName> + <xmpG:mode>RGB</xmpG:mode> + <xmpG:type>PROCESS</xmpG:type> + <xmpG:red>39</xmpG:red> + <xmpG:green>52</xmpG:green> + <xmpG:blue>139</xmpG:blue> + </rdf:li> + <rdf:li rdf:parseType="Resource"> + <xmpG:swatchName>C=60 M=90 J=0 N=0</xmpG:swatchName> + <xmpG:mode>RGB</xmpG:mode> + <xmpG:type>PROCESS</xmpG:type> + <xmpG:red>130</xmpG:red> + <xmpG:green>54</xmpG:green> + <xmpG:blue>140</xmpG:blue> + </rdf:li> + </rdf:Seq> + </xmpG:Colorants> + </rdf:li> + </rdf:Seq> + </xmpTPg:SwatchGroups> + <pdf:Producer>Adobe PDF library 11.00</pdf:Producer> + </rdf:Description> + </rdf:RDF> +</x:xmpmeta> + + + + + + + + + + + + + + + + + + + + + +<?xpacket end="w"?> endstream endobj 3 0 obj <</Count 1/Kids[7 0 R]/Type/Pages>> endobj 7 0 obj <</ArtBox[12.5 7.83333 221.399 28.2659]/BleedBox[0.0 0.0 227.667 36.0]/Contents 8 0 R/LastModified(D:20180107183902+01'00')/MediaBox[0.0 0.0 227.667 36.0]/Parent 3 0 R/PieceInfo<</Illustrator 9 0 R>>/Resources<</ColorSpace<</CS0 10 0 R>>/ExtGState<</GS0 11 0 R>>/Properties<</MC0 5 0 R>>>>/Thumb 12 0 R/TrimBox[0.0 0.0 227.667 36.0]/Type/Page>> endobj 8 0 obj <</Filter/FlateDecode/Length 559>>stream +H‰ÌUK®Û0Üë¼�ý-më]½Yô�A?›Wà5÷J…²Eê¾`[‘LÎp8ôå뗗݇;˜wc!dð~£œ7@~þóÝ|ƒßæ²_-Üî`ɹ8®6Üo¼ý™·ÞÍ;8°üsàœ#[ë®|¿½™¶Ó®˜(ä)nœ¥Òæxåìñx3è%Î=?^ò- +Ÿà{ÿ§ŸaÎ(’@–Çqyý‡yÕ`‹'WkZ<C W* +®ÀF‰c†Z8N¦?ñs¢’SÏ•«±¥réde5Ý4 +!Qû²%CÉÖ0àBÀ¡ ³® ò’h*kÍ+¢GðdYZÎä,Ž6?2$_˜…Ï¢žDŸE8Äér¹¡à$]÷¥dDI™9A"øP�òË‚zÉ5DÚþÑž"§¦+ë»ñ21åè<±Öçtœ9›C½Ñž“¬.Vìl‡²n’•¶=úQ±œ$n€p j8±µ RÔÚ>Œ¹_WƼî_T9¼·T*×êÿ4ä/sÔãh+ ÒÚ8u<Nf@åœì£kÿì7"êj>YWuúp:Ž€z. ÇYui”kK²ÒÛ8µ<*/àdœücõQ\‡»3O«jÑ”dÚî¨ç�Žñ€zj“dÅ6o\.ÐŠí£±Q5;N.À'ƒ(ë(]g· vcžN<´üþ4 ƈÀ19ŽQrrýôÂßÑWóW€�8Þb— endstream endobj 12 0 obj <</BitsPerComponent 8/ColorSpace 13 0 R/Filter[/ASCII85Decode/FlateDecode]/Height 4/Length 54/Width 28>>stream +8;Xp,*=pM/\BY)j5^4;CJp8EhFT`?Y@2^7d0FX9JOT5Cd!2V_01]~> endstream endobj 13 0 obj [/Indexed/DeviceRGB 255 14 0 R] endobj 14 0 obj <</Filter[/ASCII85Decode/FlateDecode]/Length 428>>stream +8;X]O>EqN@%''O_@%e@?J;%+8(9e>X=MR6S?i^YgA3=].HDXF.R$lIL@"pJ+EP(%0 +b]6ajmNZn*!='OQZeQ^Y*,=]?C.B+\Ulg9dhD*"iC[;*=3`oP1[!S^)?1)IZ4dup` +E1r!/,*0[*9.aFIR2&b-C#s<Xl5FH@[<=!#6V)uDBXnIr.F>oRZ7Dl%MLY\.?d>Mn +6%Q2oYfNRF$$+ON<+]RUJmC0I<jlL.oXisZ;SYU[/7#<&37rclQKqeJe#,UF7Rgb1 +VNWFKf>nDZ4OTs0S!saG>GGKUlQ*Q?45:CI&4J'_2j<etJICj7e7nPMb=O6S7UOH< +PO7r\I.Hu&e0d&E<.')fERr/l+*W,)q^D*ai5<uuLX.7g/>$XKrcYp0n+Xl_nU*O( +l[$6Nn+Z_Nq0]s7hs]`XX1nZ8&94a\~> endstream endobj 5 0 obj <</Intent 15 0 R/Name(Calque 1)/Type/OCG/Usage 16 0 R>> endobj 15 0 obj [/View/Design] endobj 16 0 obj <</CreatorInfo<</Creator(Adobe Illustrator 17.1)/Subtype/Artwork>>>> endobj 11 0 obj <</AIS false/BM/Normal/CA 1.0/OP false/OPM 1/SA true/SMask/None/Type/ExtGState/ca 1.0/op false>> endobj 10 0 obj [/ICCBased 17 0 R] endobj 17 0 obj <</Filter/FlateDecode/Length 2574/N 3>>stream +H‰œ–yTSwÇoÉž•°Ãc [€°5la‘QIBHØADED„ª•2ÖmtFOE.®cÖ}êÒõ0êè8´×Ž8GNg¦Óïï÷9÷wïïÝß½÷ó� '¥ªµÕ0�Ö ÏJŒÅb¤ � + �2y.-;!à’ÆK°ZÜ ü‹ž^i½"LÊÀ0ðÿ‰-×é �@8(”µrœ;q®ª7èLöœy¥•&†Qëñq¶4±jž½ç|æ9ÚÄ +V³)gB£0ñiœWו8#©8wÕ©•õ8_Å٥ʨQãüÜ«QÊj@é&»A)/ÇÙgº>'K‚ó�ÈtÕ;\ú” Ó¥$ÕºF½ZUnÀÜå˜(4TŒ%)ë«”ƒ0C&¯”阤Z£“i˜¿óœ8¦Úbx‘ƒE¡ÁÁBÑ;…ú¯›¿P¦ÞÎӓ̹žAüom?çW= +€x¯Íú·¶Ò-�Œ¯Àòæ[›Ëû�0ñ¾¾øÎ}ø¦y)7ta¾¾õõõ>j¥ÜÇTÐ7úŸ¿@ï¼ÏÇtÜ›ò`qÊ2™±Ê€™ê&¯®ª6ê±ZL®Ä„?â_øóyxg)Ë”z¥ÈçLUáíÖ*ÔuµSkÿSeØO4?׸¸c¯¯Ø°.ò�ò·�åÒ�R´ ßÞô-•’2ð5ßáÞüÜÏ ú÷Sá>Ó£Vš‹“då`r£¾n~ÏôY &à+`œ;ÂA4ˆÉ 䀰ÈA9Ð�=¨- t°lÃ`;»Á~pŒƒÁ ðGp| ®[`Lƒ‡`<¯ "AˆYA+äùCb(ЇR¡,¨�*T2B-Ð +¨ê‡†¡Ðnè÷ÐQètº}MA ï —0Óal»Á¾°ŽSàx ¬‚kà&¸^Á£ð>ø0|>_ƒ'á‡ð,ÂG!"F$H:Rˆ”!z¤éF‘Qd?r9‹\A&‘GÈ”ˆrQ¢áhš‹ÊÑ´íE‡Ñ]èaô4zBgÐ×Á–àE#H ‹*B=¡‹0HØIøˆp†p0MxJ$ùD1„˜D, V›‰½ÄÄÄãÄKÄ»ÄY‰dEò"EÒI2’ÔEÚBÚGúŒt™4MzN¦‘Èþär!YKî ’÷?%_&ß#¿¢°(®”0J:EAi¤ôQÆ(Ç()Ó”WT6U@ æP+¨íÔ!ê~êêmêæD¥eÒÔ´å´!ÚïhŸÓ¦h/èº']B/¢éëèÒÓ¿¢?a0nŒhF!ÃÀXÇØÍ8ÅøšñÜŒkæc&5S˜µ™˜6»lö˜Iaº2c˜K™MÌAæ!æEæ#…寒°d¬VÖë(ëk–Íe‹Øél »—½‡}Ž}ŸCâ¸qâ9 +N'çÎ)Î].ÂuæJ¸rî +î÷wšGä xR^¯‡÷[ÞoÆœchžgÞ`>bþ‰ù$á»ñ¥ü*~ÿ ÿ:ÿ¥…EŒ…ÒbÅ~‹ËÏ,m,£-•–Ý–,¯Y¾´Â¬â*6X[ݱF=3ë·YŸ±~dó ·‘ÛtÛ´¹iÛzÚfÙ6Û~`{ÁvÖÎÞ.ÑNg·Åî”Ý#{¾}´}…ý€ý§ö¸‘j‡‡ÏþŠ™c1X6„Æfm“Ž;'_9 œr:œ8Ýq¦:‹ËœœO:ϸ8¸¤¹´¸ìu¹éJq»–»nv=ëúÌMà–ï¶ÊmÜí¾ÀR 4 ö +n»3Ü£ÜkÜGݯz=Ä•[=¾ô„=ƒ<Ë=G</zÁ^Á^j¯^—¼ Þ¡ÞZïQïBº0FX'Ü+œòáû¤útøŒû<öuñ-ôÝà{Ö÷µ__•ߘß-G”,ê}çïé/÷ñ¿ÀHh8ðm W 2p[àŸƒ¸AiA«‚Ný#8$X¼?øAˆKHIÈ{!7Ä<q†¸Wüy(!46´-ôãÐaÁa†°ƒa†W†ï ¿¿@°@¹`lÁݧYÄŽˆÉH,²$òýÈÉ(Ç(YÔhÔ7ÑÎÑŠèÑ÷b<b*böÅ<Žõ‹ÕÇ~ûL&Y&9‡Ä%ÆuÇMÄsâsã‡ã¿NpJP%ìM˜IJlN<žDHJIÚtCj'•KwKg’C’—%ŸN¡§d§§|“ꙪO=–§%§mL»½Ðu¡váx:H—¦oL¿“!È¨ÉøC&13#s$ó/Y¢¬–¬³ÙÜìâì=ÙOsbsúrnåºçsOæ1óŠòvç=ËËïÏŸ\ä»hÙ¢óÖê‚#…¤Â¼Â…³‹ãoZ<]TÔUt}‰`IÃ’sK—V-ý¤˜Y,+>TB(É/ÙSòƒ,]6*›-•–¾W:#—È7Ë*¢ŠÊe¿ò^YDYÙ}U„j£êAyTù`ù#µD=¬þ¶"©b{ųÊôÊ+¬Ê¯: !kJ4Gµm¥ötµ}uCõ%—®K7YV³©fFŸ¢ßYÕ.©=bàá?SŒîƕƩºÈº‘ºçõyõ‡Ø Ú†žkï5%4ý¦m–7Ÿlqlio™Z³lG+ÔZÚz²Í¹³mzyâò]íÔöÊö?uøuôw|¿"űN»ÎåwW&®ÜÛe֥ﺱ*|ÕöÕèjõê‰5k¶¬yÝèþ¢Ç¯g°ç‡^yïkEk‡Öþ¸®lÝD_pß¶õÄõÚõ×7DmØÕÏîoê¿»1mãál {àûMśΠnßLÝlÜ<9”úO�¤[þ˜¸™$™™üšhšÕ›B›¯œœ‰œ÷dÒž@ž®ŸŸ‹Ÿú i Ø¡G¡¶¢&¢–££v£æ¤V¤Ç¥8¥©¦¦‹¦ý§n§à¨R¨Ä©7©©ªª««u«é¬\¬ÐD¸®-®¡¯¯‹°�°u°ê±`±Ö²K²Â³8³®´%´œµµŠ¶¶y¶ð·h·à¸Y¸Ñ¹J¹Âº;ºµ».»§¼!¼›½½¾ +¾„¾ÿ¿z¿õÀpÀìÁgÁãÂ_ÂÛÃXÃÔÄQÄÎÅKÅÈÆFÆÃÇAÇ¿È=ȼÉ:ɹÊ8Ê·Ë6˶Ì5̵Í5͵Î6ζÏ7ϸÐ9кÑ<ѾÒ?ÒÁÓDÓÆÔIÔËÕNÕÑÖUÖØ×\×àØdØèÙlÙñÚvÚûÛ€ÜÜŠÝÝ–ÞÞ¢ß)߯à6à½áDáÌâSâÛãcãëäsäü儿 æ–çç©è2è¼éFéÐê[êåëpëûì†ííœî(î´ï@ïÌðXðåñrñÿòŒóó§ô4ôÂõPõÞömöû÷Šøø¨ù8ùÇúWúçûwüü˜ý)ýºþKþÜÿmÿÿ�÷„óû endstream endobj 9 0 obj <</LastModified(D:20180107183902+01'00')/Private 18 0 R>> endobj 18 0 obj <</AIMetaData 19 0 R/AIPrivateData1 20 0 R/AIPrivateData10 21 0 R/AIPrivateData2 22 0 R/AIPrivateData3 23 0 R/AIPrivateData4 24 0 R/AIPrivateData5 25 0 R/AIPrivateData6 26 0 R/AIPrivateData7 27 0 R/AIPrivateData8 28 0 R/AIPrivateData9 29 0 R/ContainerVersion 11/CreatorVersion 17/NumBlock 10/RoundtripStreamType 1/RoundtripVersion 17>> endobj 19 0 obj <</Length 1155>>stream +%!PS-Adobe-3.0 %%Creator: Adobe Illustrator(R) 17.0 %%AI8_CreatorVersion: 17.1.0 %%For: (Julie Blanc) () %%Title: (Sans titre - 1) %%CreationDate: 07/01/2018 18:39 %%Canvassize: 16383 %%BoundingBox: -26 -51 184 -30 %%HiResBoundingBox: -25.8333341875768 -50.5 183.066058158875 -30.0673758839657 %%DocumentProcessColors: Cyan Magenta Yellow Black %AI5_FileFormat 13.0 %AI12_BuildNumber: 273 %AI3_ColorUsage: Color %AI7_ImageSettings: 0 %%RGBProcessColor: 0 0 0 ([Repérage]) %AI3_Cropmarks: -38.333333333333 -58.3333333333321 189.333333333334 -22.333333333333 %AI3_TemplateBox: 50.5 -50.5 50.5 -50.5 %AI3_TileBox: -327.5 -319.833333333332 455.5 239.166666666668 %AI3_DocumentPreview: None %AI5_ArtSize: 14400 14400 %AI5_RulerUnits: 6 %AI9_ColorModel: 1 %AI5_ArtFlags: 0 0 0 1 0 0 1 0 0 %AI5_TargetResolution: 800 %AI5_NumLayers: 1 %AI9_OpenToView: -109 77.666666666667 3 1389 754 18 0 0 6 133 0 0 0 1 1 0 1 1 0 0 %AI5_OpenViewLayers: 7 %%PageOrigin:-256 -446 %AI7_GridSettings: 180 9 180 9 1 0 0.800000011920929 0.800000011920929 0.800000011920929 0.899999976158142 0.899999976158142 0.899999976158142 %AI9_Flatten: 1 %AI12_CMSettings: 00.MS %%EndComments endstream endobj 20 0 obj <</Length 4245>>stream +%%BoundingBox: -26 -51 184 -30 %%HiResBoundingBox: -25.8333341875768 -50.5 183.066058158875 -30.0673758839657 %AI7_Thumbnail: 128 16 8 %%BeginData: 4072 Hex Bytes %0000330000660000990000CC0033000033330033660033990033CC0033FF %0066000066330066660066990066CC0066FF009900009933009966009999 %0099CC0099FF00CC0000CC3300CC6600CC9900CCCC00CCFF00FF3300FF66 %00FF9900FFCC3300003300333300663300993300CC3300FF333300333333 %3333663333993333CC3333FF3366003366333366663366993366CC3366FF %3399003399333399663399993399CC3399FF33CC0033CC3333CC6633CC99 %33CCCC33CCFF33FF0033FF3333FF6633FF9933FFCC33FFFF660000660033 %6600666600996600CC6600FF6633006633336633666633996633CC6633FF %6666006666336666666666996666CC6666FF669900669933669966669999 %6699CC6699FF66CC0066CC3366CC6666CC9966CCCC66CCFF66FF0066FF33 %66FF6666FF9966FFCC66FFFF9900009900339900669900999900CC9900FF %9933009933339933669933999933CC9933FF996600996633996666996699 %9966CC9966FF9999009999339999669999999999CC9999FF99CC0099CC33 %99CC6699CC9999CCCC99CCFF99FF0099FF3399FF6699FF9999FFCC99FFFF %CC0000CC0033CC0066CC0099CC00CCCC00FFCC3300CC3333CC3366CC3399 %CC33CCCC33FFCC6600CC6633CC6666CC6699CC66CCCC66FFCC9900CC9933 %CC9966CC9999CC99CCCC99FFCCCC00CCCC33CCCC66CCCC99CCCCCCCCCCFF %CCFF00CCFF33CCFF66CCFF99CCFFCCCCFFFFFF0033FF0066FF0099FF00CC %FF3300FF3333FF3366FF3399FF33CCFF33FFFF6600FF6633FF6666FF6699 %FF66CCFF66FFFF9900FF9933FF9966FF9999FF99CCFF99FFFFCC00FFCC33 %FFCC66FFCC99FFCCCCFFCCFFFFFF33FFFF66FFFF99FFFFCC110000001100 %000011111111220000002200000022222222440000004400000044444444 %550000005500000055555555770000007700000077777777880000008800 %000088888888AA000000AA000000AAAAAAAABB000000BB000000BBBBBBBB %DD000000DD000000DDDDDDDDEE000000EE000000EEEEEEEE0000000000FF %00FF0000FFFFFF0000FF00FFFFFF00FFFFFF %524C45A827527DFD0CFFCF7D52527DA8FD0CFFA85252527DA8FD0BFFA87D %525252A8FD0CFFA87D52527DFD0DFF7D7D52527DFD0DFF7C5252FD0AFFA8 %FD0552A8FFFFFFA87DF8F827A8FD0AFF52FD04F82752FD09FFA852F8F8F8 %27F8277DFD09FF7D27F827F8F8F852A8FD09FF5227FD04F8267DFD09FFA8 %27F8F827F827A8FD0AFF7DF8F827A8FD09FF7D52A8A8FFFFA8527DFD04FF %A8F8F826FD0BFF5227F827F8F852FD08FF52F827F827F827F827A8FD07FF %A727F827F827F827F852FD08FF52F8F827F827F827F8A8FD08FF2626F827 %F8277DFD0AFF7DF8F827FD0AFF7D52FD07FF527DFD04FF7DF8F827FD0BFF %2626F827F8F87DFD07FF52F8F827F827F827F827A8FD05FFA827F827F827 %F827F827F87DFD06FF7DF8F827F827F827F827A8FD07FF27F8F827F8F852 %FD0AFFA8F8F8F8FD0BFF27FD09FF27A8FD04FF27F827A8FD0AFF7DF827F8 %27F852FD08FF27272627F8272627F8A7FD05FF7DF8272627F8272627F827 %27FD06FF52F827F8272627F8277DFD07FFA827F827262727FD0BFF5227F8 %7DFD0AFF7DA8FD09FFA852FD04FF52F8F87DFD0AFFA827F827F827F8A8FD %07FF52F827F827F827F8F827FD05FF27F8F827F827F827F827F8267DFD04 %FFA8F827F827F827F827F8A8FD07FF7DF827F827F852FD0AFFA827F827A8 %FD0AFF7DA8FD0AFF52FD04FF7DF82652FD0BFF2727F827F827A8FD07FF7D %F8F827F827F827F852FD05FF52F827F827F827F827F827F87DFD04FF7D27 %F827F827F827F827A8FD07FF5227F827F8267DFD0BFF2627F8FD0BFF52FD %0BFF52FD04FF52F8F852FD0BFF27F827F827F8A8FD07FF7DF827F827F827 %F82627FD05FF2727F827F827F827F827F8F852FD04FFA8F827F827F827F8 %27F8FD08FF52F827F827F87DFD0AFFA827F827A8FD09FFA87DA8FD0AFF52 %FD04FF7DF8F852FD0BFF27272627F827A8FD07FF7CF8F8272627F827F852 %FD05FF52F827F8272627F8272627F8A8FD04FFA827F8272627F827F827A8 %FD07FF52272627F82752FD0BFF2727F8FD0BFF52FD0BFF52FD04FF2727F8 %7DFD0AFF7DF8F827F8F827FD08FF52F827F827F827F8F852FD05FF52F8F8 %27F827F827F827F827A8FD05FF27F8F827F827F827F87DFD07FF7DF827F8 %27F827FD0BFF52F8F87DFD0AFF7D7DFD09FFA852FFFFFFA727F827FD0BFF %52F827F827F87DFD07FFA8F827F827F8272627F8FD06FFA8F8272627F827 %F827F82652FD06FF7DF827F827F827F82727FD08FF27F827F827F8A8FD0A %FF7DF8F852FD0AFFA852FD09FF7D7DFFFFA827F8F87DFD0AFF7DF827F827 %F827A8FD07FF27F8F827F827F827F87DFD07FF7DF827F827F827F8F8F8A8 %FD06FFA827F827F827F827F8F87DFD07FF7DF8F827F8F827FD0BFF27F8F8 %7DFD0AFF527DFD07FF7D52FFFFA852F8277DFD0AFF7DF827F827F852A8FD %08FFA82727F827F827F87DFD09FF7DF8F8F827F8F827A8FD08FFA852F827 %F827F82752FD09FF7D27F827F8F827FD0BFF52F8F87DFD0AFF527DFD05FF %7D52FFFF7D272652A8FD0BFF7D512727277DA8FD0AFFA85252272727A8FD %0BFFA82727275252A8FD0AFFA87D272727527DFD0BFF7D5227272752A8FD %0BFF7D27F852A8FD09FF5252527D525252FD04FFA8FD11FFA8FD0FFFA8FF %A8FD0FFFA8FFA8FD0FFFA8FD11FFA8FD11FFA8FD0BFFA8A87DA8A8FD83FF %FF %%EndData endstream endobj 21 0 obj <</Length 53343>>stream +°o“71x êÎ5Î%9ù–®¢U=/â#p’Ûm…RÿH?È‘r°-”¯ 8 …°»iª“ógqXÅ&°@èË¥™l¢5 '9ó–.Uç9ˆf²ÖÕ"Îð80žô¦d”Køv»‘<æcCuÞf„:s<Î<c{¯DKÆ °ÉGF‚-lfJ»á‡mÎy¡hh{£™ãg^Q"Ñv¡NÝv½ßSº]Ão“c¨ÈxaD-^LMfÞ뜼ð¡Y®L« +ÙñƒMŽÛ3Y«mp¸É1±vl¹?M$Ú.h$ŸAýiÒiM¯jóL/¾[ÍM®oÀ¹6d“ÍŽ~{(åU¬59ÀAç6Ž`§–¿†-ƺ*7$s›ü•ånôIæÍÚµ¹ë72ñLr|äCVÚ658Y2“ÀàGð´ .®4¡$0+‚™Â@;\SG¶Ûß'§à”aúsð1.^Jb"cäÎpÛßûŠp4_Þê& g›`ÌÍá%[÷÷9w +*<Z¬'My¶=d+¹¼òì©_(šŒ1X¸a†ôEu›„–©‰„$ýP‡ì/ù‹*5ÝEg*ÊLS/D„Où9 @Àâü4¼¿Oæ«…LíŸ6ÀÔA<HVM@bÛгYh·0œu8€pzÉ._Óþ–Óÿ9l¢e¬ŸÁÅý/H”ÿlÂÛM°,ò}N›Ú/ÜþžŽù»+<xÖºFk@“¸Œ�±MŽ9Y>ÜN lC%`—ŠÅ«Àr4Òô=4fö¥A ·cLÁÇ:I0ýíyrÛj{”Û †¯ˆQG®´ÙæFœvÝ<c £àªÁqÿ"Ã×ío9m8åv6P·‘³ü–²ðwÄŸæv,¾|¡Ó¦öŸ~QGŸZÒçÿxý-9w¨F+áQaS�µÂMóì2¤¤*%—Dbų&ÛGÎçn<½êôû›—<ËÝàØ8¢ríƒ�à0³m}Ô<½ƒir©lÓOžµX>f8»«}yºÇóY2€F¹,/‚éYûP¡ºtË .Je°ó/ÓeÂ:Uc2ô¹ëÜ í?·¿¶Ùý$<Þ´»×˜9äÙ²º\Û(Àƒ;µší+ v…íï•”Áómì_ˆó7Ÿ]wú”æ¥ÏæwÒÛÊ‚)þ\‰[˜íÈp@°yî:Ä(åÖ`<Ó//y®I¦XÎßÚ¾¬ý„æ%OmÊÍ<–O‰#n +¹—Ç“ÊMø±æ¹ËtŸ‹À–ÕÖy1_hŽg{î=½ÎD³û©þ«\rD÷»Á¯"wõ€ó©1H:½ +Ej}$còn +ã|“áç¹ÛWég£ÔùDÿ5dåóv�Šis†‹È~&-í«„œYÙ„ì£8ßdúÆ…åUí¯ov?‘_)H½–û1™µâqÚ|ùæÙU†Ïáç®[\!âBGÃÎÝ×¾¨ýíÍîò[.YËÛ¤9ÄkG†ÛaÃæÙUíø�˾ÙÙ¦±]æ7;½óô²öšÝÏ”j„kΗrUbð4]È’4B¢›g×Á1uý%'ÚÛ/´9žt6Nïm_vúˆæ%mr},Î1ü5ˆ\yÛã’K§yz P‚=ÇËç[d.ãì®ö5Æéêî|–|¾.˜€ c'™³õ¿ +;lóì2Ýßõƒïº_Pä¬Éjk³ö§W~ó’gJ0éù(òñPúu¥~t|á ôëý{zÍÙ‘,ò0•KŽWY?<Þ}§oµ>ì(ŸwZLJG»Ÿþí_/;mEö¼*ï{9}Eðé+¯4Yvm„ ÚEY%ÞS™{‡\…ÉtCjš+éqƒlß%‹Ê {.'VåA�’F-§Z.>«íËŒ<¸ÇvÉvøïAÚÐá¼Xïuio—w¸:·¤ÄB—ÚˆC ¦z²â=µ!j¥Ë 2ÞhÃ0˜Ù%÷!Ùp9¿:;âL²Íó·*û[äm`Ç’“í串�º®OÑÙɢ癖ÍqéÙ¨8b?ºð}Ñ5.ZÈüV‰e‡«qøCž3á`C½‡8};GM…Ü–Ý`'‡ãµŽ%é7HH21A"RÈÌoe“æ€bÄYJ]õwK¸€Aju‡=q 6úls\r×<Ý‘-°É.‚‹añ ˜Ì²¸ 0Șš'¹uÜÂ>”OÓÔFÆGnDeÂßîÈâЮtÏ=Ïò+â•]]Ú8€¬±¨è’›ÚŸd„Ÿ{žwÚ†‡!·2¡ c`~UMö¸ËŽ+Űáo3Eÿ”y÷$“–Yed¿ø$3pÊŽÁiÇ!¬1-†nH*)W©ÁTºrCX§(CÈM·•lHq¹Š %IÓx®oº²D^”k¸P{Ôe{&¹Ê+Ý„3M{F€#d¦.ó÷纋‡kL2wå¦îo v@$tø[.¾Þ¢ÇtlœÃ :á×u·â@aBÝg4Ød.Ïnr¸jcÈÑT¹ÛÛ–›ÃÛóëGáN+h¼ë{ïlÄØíöFpGÖ° y/.AQ—¼vuÛÆclä¿¡¶lq¦b#XÅÅn<¿þ ?þ”9˜ :oÈÃZ¶h¶|u8–©úsÄJ¸DÔÄ-7Ë[öl¶È|ZÈ®8mõÀ· ãš7¶.›,“ù.|æÜ ;3tÊ“icCõ ÑB¾™_ë¿s@ œKC'yƒ¾ºÒ‚ÒÆ¶¤•‘˶JÒÆj0!Y„˜-§ƒ-Þ·À-2òæÈÊ e5e@±ö|Ef(*‡ÌQ¥Seq1|«Ìt™¼ƒöܘ™<r^äyU&èºZЊáA³¯2!²ð'?—’¤R¶°‘ô´•Œï )#/›ÅNîµÀ¨š¼yžV)Sh0®œUÅBf«e#ŒíÊ÷6¢Ë¼ÇÂ1|ê¶ÍÉ þbNa¡kžt-¦æš®¬bXÖ±óAÖ2·µÆöCSým¯˜P$ ¤ªxGªáóË Òº’ÆÃÀfRGEh>mƒÉVòÛI/"Üù<^Ÿ6§sY[.?ã€äG0>.<1é“Èh‚+M¹k[òžIQZ¨ä";&WâÜ3Yº¦ëA’žl2ÛÚpgv2*=‘v°üb�ô»æØ¼*¨?p¿8»gC|ÉfÊs>\®,‚&TÙðäa°&o/'‘4”¯+@§Ö B=:œª15¿¦&£É5™iÇiž,€ò!ò{ddË4ätAë2õÜ4%Ùtd’7a¯Èd¼7VÁïœ)1Q‰Ük +Ó’ÕqŠ!â9Hl΃ÁðÒT˜¶\xhðPOÃDRÀ㛰ᢛ Žðv{Sn- ocõV¶I»¦·eÎ6nr¥.†”1£n³.§e-¹›B犰™ö`cÝÊm²PTHô!=Ì€!ËfŠ>ß—Ç\6ÆLd”l”ÐfdÊ5„umÉj1X‚8ìÃ6eq0þÈ!=ŸÐŒÁ Ì:s4yxnÒ¤éqQIÝÆŠ˜ˆ×-„×A½�ÝôA#ûËvˆ„-õ#“YÜÀ;Ùì´b…„&dmì»æe +R4 5 „è7 à´k’BÙ‹ƒ] ®Ô£œÕsÚ»·-]^ì€[!eÛÒdzÑA–K—âBv\à‹¥,PÈ„ÚÙ“L0øl^…r»ƒ)éFgLøW±sÏäÎR“cC|LSÊ'Áë4ÞóOñÄÙZ7T.çà>*1ÁįX–X¨�ßx/ƒ©‰Xt:¸™ÐÍ2öëʯr ]呆+÷|±nö”³ßÛ³sz•òê>*úÁ*h¦¯DL©ñuÐ|µãpÖ„¥[ð;𝦛‰Õhh”ø;M‰ÿS‚%²ôì�ã +—œaàÛáW•±ýúj¸ÇÕ™aƒ5tXw} aHËPÖmÞ@ÌW8–‡lƒEýåýí(úYoÚJŠ•5 à +žcÀ6yc2ƒ6…U™Í €¹j¦<ªˆA4 @‰ ¤ZL¬Ph*Q7¿’W®+O`u~úò& |r?E69‚y6BºF¶å[8 +¬Æ (ÇÀû5P?ÊCiR>NƒIH6ÊVr‚ŽñÓ¿Z /oØ^nËga%œgá@”5‰wù\(7›ãê.,0iKÜŠ5 +t‰¢Áà–sY°xûTÀö‚ÿÀ¾®cÊÍÙXKø +sYR}Hÿª|.5Ÿåè’sëÀ#å² +˜ÍzJÈmº&gÐÄN2V Tºƒ™ê�RL°5BŠè†wS“ùg0ŒL +¥ßÉC‚ hr+“üà)$~àBÑo6ø”à<-yž„6´7EÇ\ƒí›>…4ƒ‹µyCÃ,Wp>§ïYºØõæòlXáôZŽÏ8e&ž�’Ø#h.¯¼®IH³ß²°{ÕzˈX§ZL—}CE[È,0¢]‰ �™-KLð%´:x Ú0|…fK¨2”lj£ZšÐ²64]6âlqûiÌm®=ÃhÇÁHƒ–†%=C4`cFÙ€ÕHí˜>÷PÑ@=>†¶<¶º*Ÿ¬lÐØûtÒg1gÏPhei0ðãÝ[(ýÆ5ë\Ö ÇjH#RÇפ·øÌSRUH…œONdYÒ#æ •ç¬A{È;Y~•'Õ½äQª’Õ¢óØaƒ‚ÔÆ`‹pyU ¿'‰OqcÕ«±gÂeÕýrd€oØk‰} Xü†¿eÁ“BV›®¦ÉϺƕßxMKºQ[ZOül� ,7ÔNÇÀÒroÌ6ŠáVR}¸Áñ¸°™ÎØJ^Ã\÷kú£O“¬[LþZWž"ÚÉSÓ”HU8Ám"¢Ä$]Y—‚ì[3dÔd +°–C6›˜h6y²T.\H¿O ŽÙ™§ÜQ W–Áå / öY=ŸÜÕ^Z2f'Ë% =™r?¸¤Ý™Bb,ÞýÍGd§ý°åÏfæ"8Hþ¡y~çáîjòTfIG0 ¹Å¦iMb‡ÏôÓá%ºIN¡++ü;9R‡¡·m›Le―àÎÝVý]”þÈ·üGÁù\ò¸¸±ÉüÁ@œ½"”¿¬éåà8r³åæ½íÈtaŒüÚM^Žåov—ÖÃ0%ÀAu×p$Ž`Ë%ÃÜN$a2–²¡Ë7qý¥"Ù€l#}9ò¥!ณô~8›‰kÛl/vÛuÕ!-Ÿ-i¢åÍ6O´åkÀžå-—êJu%ƒ’‚Ɇú¤ÿˆMœº+×™Œ`ûæ˜jìMñŽ8y~á#é)a£¡ Ÿ¡iÒ±ó,MÒå Íj#Yy¾‘¬'W—Åå\f–1Î>«BØöŸt.o*_ +“fwùE°ç–[ä–c>¤N>Í2|�‡˜ìw!ØèþãÜãPÞBwÛîšä†q-L®Šd¨²•å#LLŠ_ÿŽƒ'¶D@¦ÁÁOú—ÎArø†©°«Ž‘ð÷9cZY–mM†Q"ƒ×hóØo2`MÚ–ËÍИÈa;Žá¼L–Yt8VÀmØe,ãaü8¨j¾qD³ùqäƒÊòFȘ0{Gó¡ú©ã¦ÃKãð¢¡J26¾Qº—o‘ÇÓZB†C¹"7“ãɃ_Î/Çóa´³á0IéƒìSLuÎfrÀ—Õºá;è„ +ÄEO$nl?Ð[²wŽ_¶‰!p@ÏåR\ OœÁK®Ê`È* ô +¾ó’4x<M–)£ÑÂ`8Ðë²…kùå²á~0Á¡/N˜~À(Ž} +GÖ=½'1;¹§Û‘“o»¾Ž‡ëÏ¢"a2L)ÂmÖéVp?`¹¥©9¾ˆ½É\ËÙkZ(pæñKI®âêýØA.Ý´CÔaÑ>Rá~uk‡ ^A2ðïµwGXmkáñ)[†¿ò|^‘&ƒ–¸JŠy7»qnáqåPÿŒ¡ÓCèá±-1üâk\cÍçÔ‘ë'~¥ÿ*«Q‚ÈÆˆÓpå>Èèçî>‘P*hö`A'u\øäT†@üS°tþ&¿B„h×X¥Žeil ŸÛŽ¿ÆC-1Á£ã£É�>–àf»Ô@;þ>²<î†ã®ÎΆY¾»ØÞbÌ p²x‹±íµGqPl+Ó¸¼‡Æ5ü6ÌÊðc”86Çð¸r—Ÿ©Ë=G•lDÑd޶ã3veÁ.@mÈ9ŸÆ#¤M´\>üÁÖ¤s/Ï 0ä)À˜&áwÈá(._W•I`Ý‘•å‘å¶*˜X¨›ml«Iµ‡?p€T°ïl@Pty‹' +ø‹Ïº2Á§ƒXŠÔù-Þ o˜²ö®_OG XBžÊªOo¯çöy“çÆ@—ñ®¬Ç:NÈ"ÀæL}Â[>îö9ïhBD™‘D ¨Á¿kÂ9ƒ;x#×p| Ç©K~•¢— ã\òÌ@vEjPùwkèªOÍÒåB3pñOzc\ƒW÷+†yœK6$n–E’PÃ~)Ï/ÚL«ù¯'dÌ×”™X¿4 æºg9:,TË~µ"Ô Cƒ,ª<®Y@ÖðÅòltÄð°ëÝ?(Næõ°9ñVaÙ2¯Ì™2ùR“Ò5yãG‡ Ž�«`6 ]¤Šö¹½È¤¸š|_~q.öØ•ÛZ»¬†ÁeS8šêøçòQÖ¤IW´_Žß^GÖîÆ…3+Bæ %Y^—®á×»´8žEKÁ“jf›Knp™0 À¸L;3±9Îæè¡Ü:ÅeºŒã²!ìôÉl¼¼AŒl×?ËÅcΙËÁ;Ã84�SžñçøÛìØPI2Bt¶çiEö’ƒ)š$4x+—_v°{ϯ ÉAö’þƳ ɉäö8þA:çEL™ÊнÓT9ì³gË}ʲڽÃÛ°¯…wö¼ñP΃ô¡ÍŽ§Æ„ë¼×ÄßÌÂp‚Ïa¦8Çz9{Ì€Þ×q%.ƒ‡”ÊjG–³!Å€@Š.Ýa&5Óï\“›÷ñ#Ìɇöø{Ë/>@nÓá8¯q¶™Üñ‘:´0¶Ý�LÚqåªÄï * Óz¨$û\¸LŽ&=�Ûˆ ‰e0ðþõg߯ËäZøz]bæ'èÐ^ø^|›,*e“‰€ÃaLéè"êò="ß6¦ Ùôóƒ.ëeÄw!Ž � ¶Ê¢†-¼|B½!9pfF²ÆÕ!ÑÂÃ:†Ä†ÈRHW×Ô¥REv›ãkí¿sÑ6Ä|à‚1bòZ…'É4l“xEž¾#‚¡ø%xåþÿì½ùbSGÒ7üÝ�÷ LB›ÓÛY€$xÁ„-8˜=D–e£ KŽ$g’¹šùóÛxæÆ¾úUu÷ésŽlÃ’Ìð̼óšRŸ^kïêªH¨ð#Á«FÒp`n¡ãÜ{ŒL)EvÙUÊÑ&&—Ë£ÜH’#ApøweÁ§Ižº"¡j#3Éùѵw²G¸Ì!S�.@æÝPî§ÜÂ%l¨h9õlœX`ÐÍÝ8)E‹kkf1>g+.õ ,™B|Â.-š4ìJ<êe7¿Se3WîøD¸8).fQà;4NRÀ«Ì5Ld@“pÐp+²Mò¶ ²H"Îl/ZÅ’ªDмƒìugC&'LŒB<i„b1é%þi¬¯à„‰hïÄ +6§ÃNØŸ¸gбýÅc>J¡ëü6—7S@½`›!8ÐŒ‘K<vºñ˜NP‡óéÉZñìV,<Ÿµz‚\œÔÑ'èåܤø/ÿ‘CfŸ'ß<+ÿšÏp"â—ôàÄ«©±Êì£9„*˜ÐJ`4Wl6¨4®AɦóªÙr…^tD%ÝʱÒE†�ïG ètžù/ I]m&x\øsU\/“Cò¸˜D.Çà0"JW†U~¢•ܤc\<BÑjÉ— ×6]±_€vÃ"<ZNZcÆÉœYÿdÞÃ�SJ90<¡î‘R¿ +|&Š]ýšcqm`HzîH\±l&Á-‘³®Ó”kÞ:Ñ!aôâ�‚R펟á2Ç`ž¨øº´Çw…–t´éÁ‹Íd‘_ I7%nix¶¦’3+/"`ˆ‰7Q\§ÛþQ¤<&Õ¡þÄ6‡ÀÊñ‹Jö•ã²ÏÇ”ì,%†'Ø™’º)Ö8ð³JîøI-ÌN¨ÏÉÌ2øEÙGˆâ×Ð?,ô~þgÉlÀJ�'sÐ1‹$7Öã€81ç'çZIP¬y=lT³+ˆ5?+¶‹hðVâœWµýõ?X¿¼Ö>PÌ©à(’Œ(èwª¬«ìpèŽ×êqŸutÂFÀýòKÃÙ¬9<ßT\Òž¾‚R¥¸‘b‰5?ëÝ8Z‹Š¼b XÜßá*¿2â`ç;ÛÜc5»-»Ÿ¢–iœ=*8öCÝÇö¥\èlÖIU<Sã2šüP<ÅrJQÈa°,›s~Q]$L ùpjà²ü*Xž¾‚ƒAŸiwÏ÷W%Œ ìðœöQLÈÓ>ˆ—ÂD +pb“qšyð¦Ì±Lf/+3¹sÌü9^Qñ•OÞk±Ñü•hÖ`–ðRBxNŸkø=´x›8ê2¿ðžYŽ(`¡$©fQ'f¸cØØ)j?ic$¹Êå• \Ž2(\^+Abú#— ªJ¦“ÃyçÄ=ëKÚ�€8B–#B@òÌ_hµÚªKCŸ³Þ•Û“E{ƒéáÑôx²×›?í {‡Ó½áÅÞå }rëÓ阻0ÛýÅb8›ÜœôwÇÃ[Ç£½á\zH[¹íÑïÃñöp¶?,$¦Z>x6üCZCÀã)©Âúå±sœ®ÁâŒtý/¤Èß@½APõ•‡Ãþø~1ýN}4&TíŒGƒáÎ ?MnÍF{wÃP®Þ€Ðøáð`4_ÌúXå£?Žü¨nÛ¿Mg‹ºÉ‹Æ‘?˜õ'ÃÞøøp4ÿ~B�yú¨˜ÉO"§Qä¢È‘½‘#e9Ѭ·Ãƒ(Aü²ˆ×8uåÿàT9[!²Òþt¥Ûÿà\ Ÿ×„Ÿ²úO~7ãsÔé`Ù0ë»´'¾šLú‡Ã½ÞÁ¬¿7ÒÙX}‘7¦ÂÉ.…ÿ]?8'YÏð¤ó™ã+pÈBg‘.ù·œoA’¶ -xßÈpw<?-;¥äßhߦcÀô"aG8á?‚*ñƒµ”*ëjå*ü ›õA2²õ!ž•C]ÐdØöj–µž.KÆîÎBg.#h0£—Ma]0ï\Îs†àmކd!œ7ÕÈÉ|$ú2!:™y¸0FÄïú«?-#‡SÒ`|÷UB!Á3?œ„ïúúÿ UªìU¾nª$›?Ë%oD?gµx-Iv7Âùñ(ŒˆH+6¾ ¿ m^¯X(^ÅÛ#HNsXKÔÿ=ú,…<WÎJŸ+@WÎxŽ;“¢âàPî$ +]i|þ2Ã)$ÞQe†4O¥�ÊjT‰à¬•&¿Ô|¥ñŠVÖ¢'°áÝ´:¹¡H§gêQ„R•"&Ó¦"d2;å= ä²Ê½èq K+œ0>Ê“näˆKø‚ 4\é˜üåÆ"«Æb�wS´ÇzU¨!ñNÐfª‘+t^p²žyºÀN¼©ŠKM;X&R”*Q`Òg·JmücÅI5„x5ðÔ+Ïö¹Twý#>â(ºø¯z0iÈÙþÐiÖðã¾S>X9e¤•S§¸râÊVNÛöîmœÛ’|˜‘ÇYÉtyl˜iãçö?OmÛ™zãgϲu¶¤'né¸ê2çk6<‹ö›Ûüñ´aNŸái‹Kl¤³‰Ý}½'NN¼³š§hÝÈÓ˜¢™4sGäfÉ6Ï჻‚R…ˆ ++É”^ª +a–eAc©*—¼³üNÎEÎSÕɬ0†3U¦éc$š¾´ì}³Ö¤? ¸wÿ¿Y€Ïéx‚¥ß>˜óO–-¼†>é矼Üâé»]þù'/·çŸL ¬M¦“ÓÞóŸÍ%¥_½Cçáp°èOÆÃÞ¯Çý½ÙèDŽ—'/àÍ+° e‘\Ú_e[H»BRxr#‚Ö håDº¤ XÞìǸ|·Èä=ä²&Äý“^äEI³ÑŠ´bQ®8{ï„F$2¤'Žg¥xgsÎ+2麣îÚ;MøÖœC´«R…Zæ6÷¸ jcÁuh\n»mx¶ÕKsÂK›4.Wø6¼·´Mó :ÓíœfgÑgÁœ{'Úîg3Ý3D„|cXj^%iªˆïÇÝ/rS y5É?—êe›8š»‰hR°Y ÷?íd»™úmZY^!ÔéU3‡4š$,pçöÂc‘º ñâ¶´‚-ò–yà +l‚•©Ÿ¸Ç,ùáÇ«YXÛ·Æ1tu6³Ê”Лpú⣑Y-¦¼E‚.ä¦&-ßšÉð€Ù8Èè¡® IäÕìUÊX92^Ò>"‘ñúë92~Á¤œâ¸IS”EE_Õjû;.ùŽK¾y.©ÿçÙ¤EÔhå·¬d7aÆOò_›|uƒå|/€JM´=2’¿>¾e„o:Âóø¦Ò%šà;>ö޽^>œYëO—+~ÕÅÄÛUs4BSð4<<ƒ_Ç;à=8{K~z]!€ƒGsŠ$¡.štéª\7É ‘QDoËñïHà ¼ƒ'?ãmHå+a¾rFé€H%T:ο"éH‡eÒ|¥#Š^b4®³§ +‡L!èÉá)~Kž#ÿ3?W.ŒÑÔD‘í“éW¶¶Ö‚²\²[^}i¼d²¸T}™á´\#à +¹Àç¿T¦¿’Ôj™²râ%Âja+…ÌÌ4JYpææ{M ¶ÆOžy¬éã³Y³öÂLÓ�Ýûˆ@)Zo;*¥˜Ê_N4jåÊÀ>¿ÐPð?ï÷V÷÷Nýžwîw¡€Eœâ’1’ß=³Í«<½˜Hàg#I>·\Ð#$KîüœLQ¸HòûÒhþn¹_4´f¦¸0Vü¸»¹é¯Ý³I>š9çXì~ŽiéÇõ´:?¥+âa“Ÿ—iëçt;[“jÅ©'Ý^pç ãÍDàÈÝ{‰¯ÚžÔ¶sWx†7áùåᢌb?y8“¼—e3>^J?ŽjR¥ÜŸÓY}¼ÛŸ<ÏCýðÜ[®H·¶ÜEŽì$Ĺâ$N"’ECpBO<šõïôQwŽßÉ™–ò•Ëùe:j/Z. +‰ÛìÜJ¢cøÍƒRëMKâÀ”R2:y·8À+†Ü*ÉÂùOQ~9—ÂtŠ3l`s(º™”ú¥‘.Ï3|ñ_<… }ˆ«™¢HKÈC~7:À[Œ2w…DJg|‘Ãb1ÇðL¢L,ÂùÙY%•v4—yÁÃ[#¥&9¦ÚøÔ=Hu/Uãy×ø±ÁJ¨Ë +çŸÀûT$½Ãû5¼îÂÓPÎ [À—ŸÂc9’n\ù”wÛ†7—xêÞüÒ–ó»ŽïFÝ…šð|åF\Ê$s‘lÒàT'°³…QÊ™;ëºnHÒcJÿÒUX<G¶Ë1rê;ÉAB³›]q²X}9zΙQùg…œ`)?ùb4!ç³YR1Þ§iàü€ìÕÝR¢¿°vïÞÅÞ•Ål49è]ØA¼õúx8Ù»ß_ž>š®÷§3O×î.mI\àiMüÖOlt{Ó7Á³@xÒr}}m08>|8]p´sÂHÞe’µ„‹òrªcN ™ XæÓ/ðÃd¼ºÑ¾Ö¦¯‰×뜙¹C˜’8¹Œd8±YÅ]´×òÈÖ—>J”H¥S"oj£¢*çdA†W©f¡Pë‰3Ý2!™’óÇkÎl¦+¤<àRÌœŸóÑÈSyN#1À[.í'[âd—ÈlPÂÛI~)<ű”ÈöÀ…éðÖŸó +à'®,-ïlŒâê^x‰S9$ç0ü´Ö—ÎSò€B*I,Œçã†Ësðÿ +?Ëͤž°«´'¤ù`”ñ¹c°kÌ{T²ið4l7x=‡T„HßÅY·@5Ü-ÔÎL—3D ‰:Šûx*2L!x£ªÝÔÈr¢I góBžhs‚п…çgñ+üƒ¹© +uðzÇIW®oÄ|Õù*‰Zùñ3 _ƒ‘ÙŠN–ËÞ4D„ÜÒ†9©T.$l,ùÅ·ò¹¹ðÜÔ¿pÂpœŠa€“¼À¼ÞJŽÌHañ&y4Øméä)¶ œ ce8•‰¯ƒ§|†4èà=Ã&*¼BóµÍç„I¢°¬\có´òrÑ"e«,æ"p +o.-?ÅÅC8$ÒÀ#K®s[qi3Æ•Ë{"äËÊ8ñ„@Vž.RO§†’…ü´¯ð¸ä)ç8†qÏp@@p9”õDEl<ÊÏ…ÍrJÃOÝøM˜æ4oœùÁ•JPišp_G[ƒs’éOÛ*ÉÈÄÔ«Ø¿SrÎ9F;<¡ÂK5~K8à·8RßÓñ+$çÓNþɘ«äi§dE¸² +)JN¥ %ý‚¸'<*J†æ"¤KQ|ˆ…¯ô)˜‡¾s¤Pï‡sIpÇÚñÜ‘ŸÝñ«E©k€².ü|ïA¹lwɹ +qÉÒ\óÞçòz‘´<³>¦ÉE4ÒÚZÉÎÄÑ ÄÌåõzêKyYíËÅósÞŒQOcæ¤Ð‘–J·8(ðb$â.q¢®ŠÙ?ëF9%©=8Î�ê8‹q<E.'$ÀƒP•Kjn'/ÉtRÃPØï$‚ƒé Œ°’Zœ +Ʋ•ÚŽž»UX&'ì„BXFFŠ +FF.¤:8Ÿ"Q<o/ï™a:‘Œ¼ÈRZ¦}Îb/ب86Z*…⸹ªÄJÆ”IÎüœSBc£¥¶i�ßsI#¢Eñ÷ÊÄ +?(ÏD6²\Ô·ÉÖû§„d:¹ö|INõƒâ%ù\ýijÝR^¡ã¤\,òn“àìàY8ë Ò[#Õ÷á9΢/yPJ¼êãA ‚J§´ŸhI× GðøÓɦóË+ÍY“¬'=yãiºe®Žt€VQ+_Žs3+ζ�žñsQ…D}je +YE¡@&"G4ž®!¡0 )¡Z‰ñ6Òy¡n‘¼t_Z®&*igr®aˆ"9rnªBò¡WÉyL•OO§¥x1¿Ø-| y²I~'‘¶œ®;ÆŒ9 2<&V¤¸ìTÄJrÙh_bÌJŽR(›œ9[f*~±Í8é—á2ˆ±,ÎyDBeFFÅ)$¶+|] +°'äT¤9=iNáÍ_Ƹˆ uòJ•X—cÌ™AE¸;Î)yÃåJ_Èž³ «=*ýˆøŽçƒÀa¿Eœµ…ÃA]…OuÆ•»[XT„T¬¬¤?sȳsWd>>—K•qª˜Š±ÊFJêDV¹|*4ŸMQ!¤‹$SÑxkÀÙl8J,ò6J2.s5)dqÅɳäkMcaà3¡ìó�·¹bUIqÝq`Ø7?FÍù¡{…´zÚg^â/ˆy9FX.fŠ<€Êç/C +è @wA[1Í2æÆ–SÑ¡æ3ò4ƒK™ (ÒÌä9”ˆZ..Vú:Ñ +Šv…ä¤Q¹â„#œI8®4Æ)KŠ\r“òXrßà|Ê’ ų= +r‰ +åߊsΡ%%D ¹ªÖ™TJfÓX4r‘",Š«¢ôj%gP+éx¾*™¡°8ιÔU`õ—Ý䜳="õdµá[“èŠg +W‚„™íu° (¯,$i¿w"J:-ìÏb”O„%¢Ø0M“žœ÷$ ¨oÈgrŸ:ǰŒ’2)Ú¿OöµÀY)dD”X%* „!l#iÀÙîêœwŒ‘JAã|aNNfPñ-¯É%À”Y’äZæÅI䑨L V–ÌDF®Æ‹¨óqNB¯)X_Ä]B/9—a%ÜŽ°ÜõXvúÔ™HHRpž. Àáýl#A|!`²ÁVsVûP®CÂ{@óH°¢¹_%ç‘࢓š†Ú—ŠÇ,¡8£Øy™{†hùê3Kã’F•”cd§ªLîֲʧåˆdÒN’q^œóïJN¾§$m5°J†å,6lå‹Ç€KHZ(Bº»îŠ#—StÐŽqIŠ*¸BÒd €É%‘¨µšÃÊ +Ñð|Ù*þL`�¯²ÐâYjX{ÇK_¡Õð…*›Rš;aT̹®gÅé² ÞH=#)€«8™×6†óW‹“C‚“”ŒqRÓsÒ¸Š;'Õf1œ{í•ÆbãË:?çœÀ<(ʘ�ç.ƒµ½ +ß±ÊÊ|‘ÆòŠ8Ak¹ÈaÎý(¢“›à¹?ç6F$ÒbN‹FÍÛ ¸Rr`:E†8N›&雹l$qž36Š——äªÜ‚‹òž9ÕÄT†„Ö¡vf#ÕLP`&PŠ$#ÄÖÙBr쪲IœëR4Nžy¦öß±‰8/¦“§JÒïs†()ì‘).„™h®ˆ5¡òø‰G=P‡fó.ŠÖÄ;FF°'&•BÒCd‚f“âÌ#ÊÜC&3ñƒxO ü•‚ÄLîÈ9ÅYe*I?‰RÊ^áç:ŠN0±0±.'‚å‚õRÅe8KWÆ™HEþ#ñ´*äÉàü0Ô$9€m_I* ÎqŮڊŸWœL; +cTiâÇ(§m}nŸ†9Ó«sÎó\±jh™©sæ_åuwíNt)àœd[*Ïpi*ñ¿Êóvß°–Lx/5ɤÒê±ì‚![p.sñzpfY~!bS”z²u¢µ7v_áYiÉÖË©‘WàMµEP8¥$« 9,²ÚWb§(vfÇ,pkêør!äueÏ臕ja ÏõS–->m¤BW)i>*¹L.èÓÊWB’"v•B=<'Žy®»Áù-}~àës¡”®¸æÅ#Èi^dÅ¸Ì Â)øæ+q;«,8çs‘þœÑËÛE)LÀ'™„3(8š¥:5éuH¡Á+Þ}®/áAH9ÌzY0'ëb½7—^aCº\’ò¤Á²OF´Ydxd}ÉéU—ë`‹fûÛyƒØK_zm(Ro!lm6FÄIÑ꘎ؕ‚Œj«(ؼ‹¨™ùÄ”Ì5%}+½á{iNò1³¿žŒÝ󒙥0œ5½7&{ë¥n%? ëw=[µ9Ü=qÖ—Þ5oXùðÅÆ™`A;ZFOõÁ-iÎý“K18¸émü˜¤gcÅR,Ýûäaö;‘6Ì{içüÚþb8{ßüÚó}ó0SÉÐ-Ïä›—Ê?Yîý½{úJ +]>šõG‹yooØL†½.ôzÕÿýs1ëOO‡ó.voý±³¦)ɲ^ÅI씹¬ÿyOþÉÿsï\ëϺÑÄW‡¯ñB’+„<¸A“;mÁ–ÀD4?+«ˆbr2¢‚³<ãÒÑÄÚ*]¡�Uˆ?»ðýÃáÑ¿ÿ5ë¼È;ýÍ?ÝÌ<‹ULúsìÿ4þ;þS•¾.l‘ó}6ÒБ‰Wq4¨¶dœU³`HVN’W[cø2´„êN†(‚T·|n«ÊÏŽµ™]¼9%nüg—Wxç@*N¦Ø&DÆm§¡ÛR¬,$ï©ZÊQÆY˜ð6tÂå“Ó~rüÔK&ÆnΈ$Ö“C¹r:ÆŠÌËUãiƒJÔò°6sšÝʤV’LfȆ’fIj±nZXûòÙ?;¶3dvaðæ”¸Aògœm‹…Z‹ÀØ™Á<d3ÕÅ‹w™x€N=X€ÑyiK\Êf9"™—OÎúÉ'ÆnÎȨæŸqr¤jUÆrìVi˜"L‰7ψ:t ò�É¢58`[b²cd ”pêž09ç'§j’05I$3RUóÏzrŠŒôXŒl)5I‚ËÂòF$5w§„‡1@Ö3¡\Iª”œå³ËÁÆÉ©š"’¿âÔHþ’–ëH$;9Ô¶·.wI+”𒽄[ +Ùïè|ÙoqKF|E…GÁ˦VÈÔjr¨©!ÎÆ¥ÄY!r± I«ìUs°DA*Ñi†ºŒ®’2ÑU÷¶È\(~k[<Å-°i'°·ÕR&¥â~E"ˆSQEã¯8+²ìéÈJÔed¢ Û¼¬L!+rfËMx\ÜF%ÓЧTÜœzx]5þ +a™³ +&VV9NŠ$p,%\¨‹à´óc£ºAòè˜VBŠÅKcƒ€:žë—üçØÿIŒuì$V¾8μ^ô؉þ—œä¼YžúµKOÅS…7†ËA”¨³[páz�Å— ¼�±û +OÚ‘YÙøOah ü§ìl0_j(¤àµ‘lÓä?ä$¥vˆ‘¾ra›*Ì"|ÉÞ�žöcJ#ÎhœþÛ–eüˆ!Öù¸‚LéVMX뺥“:2þË”�z‰ñ•ñJ·êcå ªÞ–(÷ +<m+cŠ ˆò[À¡ a¢l0“àtÞªBÚIå$ÙR®ìAá,8‘e£d¥ÄQàôùX•²ñÓ‚£�äš/bÓ ©và Rö‘í§ð)"by/m8v1ˆó(*®åãñ‰ÝßþS)•í¼k”!aË¥8³Â%hijh¥Êb³Ÿ$÷϶¤¶¾¶f›Ä)å>xõ‚vÖß–.TÕ©AHHì/sR`îÂ\^ Ê„¬¥¼‘6„ù¹iùRçÚ 9õ*@™\qùÛÞòŸJMÁ¤ñe•�Rr*å!Z¢ºxÇ¥äg.öG*e½y&©c¬ô5šÂ‘r„‘JäT¨’`=F·ÜƒÄ+!@¾<°¬1–™¬Ëf‘¤z¹EÌ·ºÝŽ&¡7yùÀ”å7΄ä&œ´ !l�ñ uÉUåÛ¬ˆ›ºT~L·Wêò˜ÖŸŒ.k6Ä5¬ÊPƒNÕʧ*ò´\Ù¸uâ&U~9³lyî{óV7N +7ƒÂ¢¥’Ì´Ç_ù«4!ý)@|@£RÚÎù“É +Y= +䮵TÜ€y$á’«Z”«—»ÊÄ\ÿ©:ölûÎŒðA®Ïèµx«8][y”âdžæRo&áyelM3Æ6šIÍ È·ùbZP1_Ê–¾(¡œLz“g!:iÖö ;—¤e1ÅCB+¤Y)ðö®L¸r«ÌhBÓÂrUFhC ÕG³†Æ(W'a±µ>DšDP5¼R?IgúEògQ½%}è…'ù–ô!ëå"ª“âLS,(Œ”Z{ ÇV¥kÉå9Š@å"úr©éŵ|?ev«‹Å¥@Ã*W‘€"ƒ2U ôS±|‘ÖøX"%xãù®_žJ§Âi¤eÊáñ}!¯«¨ZWENa:Èjƒ+uežÿY.ÏUøÚòa\¥Œ•ANæà™Ñç (pXNØ€aíÌÿQp×ǘwAn€2a.ï +z ÜÞp¥ì s È¥¹P–¶ÊÂZYrb I:¥Æ=ƒP¦…AE8+I€8E‚ÜBhJNÁ÷%‰ÛyMÎÔ €\U +¨ÊžðƧ%Ô‘fÿ$-óPe’Iõ^©r'§ð ¹#NAéÚk`î‚VâwˆïAdHíO*Óq»å¸q,žÖÒÃã0Þ +kgFÜ:yÑ^¸h0mýØË?“�So\á‚àä`€|'+•µdtNr˜�*±9|µze^HJ!Ó�òŸJQÄF;Z}iY‚Ž—f¢2V©ñý², ÷à*•q¡Aéužÿ¤;Â$š{g…p;@¾bMNÃJ™c93pO\Y¢r¸ˆ"vmMq|ÙÜéDgÀ€vè-ËÈi}¨-%Áu+±Ì)EX‰âk“•¨&9Ùkë#™Ä*ã‘©¦jë_x0ñ‹ƒ³yYÁØtõ–û —W OBÊ̼ͻ¬þ§ÄT°ÆñyÁ•*þݳ/LÙæÁV +“´î˜ruŠ3Ö¬ß_Å5EŠcè2•$qËkq“‚¢TJ^x¡3/–‚„³Rë£) /å˜HL+ïH±j}QÛ†LŽ”“Êdë³ÿ7>‹?û–ëu´Ô˵áS-Š‘œê6”ˆk.¿©½Ü‹Š¨E@0žÒf÷ŒP(KÚï +²Aá=VP©ÿ ŽFE3/¢çµ5}vQqKþ¤oGÑ|áI¾5Çò̹XlôLÑP@•EÆj¸f¨€¡™sýé<K„«Ò(ï@ 0³²FjèŒo‡›ƒ²=½D~rR{Wü¹q]^)×� €ãyÚ.ÐŒN[ +ˆËÙ%Cpltk&(ðÁYë[o&&ëJ@*¡û˜‡/Cga/¹OkË;OŽÆÊ;…ô�Aº…©A©è°qÆU ce}&WR;'�qûØ2¯ +@áU¬¶æ\oγ_®q‹Èȼ昬Xù+ì1÷Ï.Z D®Ö@ï¶òåoTKÂôÒÑ ïcH8«ŸœxE¬Ø¼ Z[Â@¿z)xÛrqñFRAÇãÕ´Ÿ^\%L–˜·F‘,6H–”lJ Œ›Ç±RÍ-_Gë(|ÙúÀL(3\*ã‹ (0ò.š ×ð‰8¨Âe@‰Ø0X·m ŠÝ¦CWSœWÓ³E©‡–.–kH—-IA©‘ÉÃ>ˆà©XæJêâEc£ll²‚püÆÇŠ5*Xè Üáª|¶dO\£Cäh +¶8ãSmá횬Â4L·RP²'50î]è¬Þà8fzqná¸lÕbÆ—2n`S²ö›ø2³'8ÂÚÀšµ[TA*:ÜÜ¡¼“²PGzS¥]‰¬aûÂÊ©x“W9®ëŒÔ3´\ªxª€ŠÖuâ 8ƒùi^+]±k=d*ŒsQ;ðz�þ´&ªÉŸÎ½%æ…'ùÖ|e\DoÅVÉÝ¡]åhhÀüÕ¡•xVÙ`ôq¡IÅ«C”«ä¢ÞU¸:„/9tV„Ë~ÙAAóªf»,Ì-XLâ´ÓœSʆWñîÐzÛÄVñú0ÅÄh]üR Ä„uJ1x[%׈áJ@P)³íâTÕ[Tý5"†(d*jìÎ$^#Ûƒ€á»–É®eѨû«�ŠçRUv¹ßÜp‹h½³‹Š·ˆe„å°Â-"@•L.Ü"B¢ûùÖ·ˆˆ-dˆp‹¬L€ü-"ô+ŸÖ·ˆ°¹Ôz¯QñÅoy¸—{ÄŸ:‰no¶ãúÂ2„ÜòáVÂ#t}‘ˆËeSù Äý³’ÞÂEb•ÉEb‰ÜCüåÆä,“{DÿÞÀpè/qäï¸B"(øªf3+u +oBK¾³H' +£‘‰„kDèžP¡x&œ)ë¨�ÅkÄ ºÙ2^#Zo|�¤ãå¤í*“kD¯óæoo€-Ê)86("~^¶Ú‰ÑÞªh‡ç~Ûâ-¢ Ç\Æ[DÝV6Ę$Þ"&Àp‹h%®œA.ÜÓ‰ Ä»[&©òí² òá…'ƒTÍÝXá(Þ"Zÿ¸£:.%2moá–)eñõ-¢õ1öLnùåûŠEHl[P ¾Ûo´³EèÍ{¹œ¿+o¬ÕIz9ÕÒ£¯ÄÚ(\#& ú1«pèü…©â5¢ó:#“nç+Þ(p|¯Ú;ï#Èß&Ü!½Gä*èi;xùœ—‘qsŒ·£¬v.ñE�¼"P ½™`>6j¸GôÂ]t8íñ4½ž.®•\O)Ùñ*¹ž’§‚¼ô †r½M%ÚªX%×S»Ýxþ²küV4ñ§¾úzŽ=Pçyëã ƒÞŒ·r™ï.ÚaH»áÂa)ÿe=AoN Ñ–À¼»]ß«0ba¼œ(ë(ÏÆƒ‹R#a‡@¼S{[5€ü—bn`X:›åŒ÷Á‡ò"´€€r&pdçGªÁ˵/¹nà}Á¨‘k„az‡q +‰'�Ãý@•çE8,~ÂÍ èÊÖþ丼x64/<g©Â—"íËÆUP}CÅÏÜÓo ÇS60ò,]&R[HZ…vñŠJÞò²ÂU¥WT50xÈt&K¨½hªôëL½m*°ÚúŠJÕ.˜‚¼]ä÷Ÿ‚6ßø¨Vmjs“E'«ª¾ê5쩃ôwTF +-3È_™Z1¨ï¨*úv*Äʼn�dPˆé¢cM@Á–½n‡·-Þøe°Œjâ¨A“©''‘~¼„Ü/A2á„¥ú/Ë y¥›"IeZÛWAh¦À¨‚ÄñJj™:SƒŽ·TpÏ;O*18$øn©RP‚QXcž0Ñ~æ¹_DŠÇœ¨‰ïEÄãH}Ò (ëIYyš~lR‰×TœÚ¡IÛÖ«ë‰�÷ÞI^W¸¦ +ôš*‚~'am k²Rœ¹ŽrƇ” ,¿¿lœ®Tur¤þS™cãðá™ÐºÅŒm-×R ʬk°wÜ¢”EC`‡ó¶¬°’v+)qϫ䚪¥÷4‰*ȧúšJq€mC$†l‰èôž¾D¼ZJ ÙI§j„Žðã¹ôcŸö«)þ%)EKMÂî uB*Æ7”ŽBÛ9 iª1õ=U¦ðL¼ •YŽ^G‚ZšMNš\ž‹×ˆ”FR2ˆ”£2©_ÅÎŒB#ÉOV-‰çt<øòLüG>‘kUûˆ¬‰îïh‘¤rÑç’üiÍ[ò½ð$ß’($ˆ2y¢°m؉Š8@€ÑÍÀªoBÎ PÂvH:ùvñbµ`» Hœ(‚¢©ÆyÏŠÆÝ-*Àµ>6ìMæ!b̃¤ß+äiø™§È˜ÉÂ±× „)ÔÀÈ<$B Àa8È >dä©o‘ð+Ÿp¤H¸šÄ7P´Žu «g[˜Ž¬ó&Ó‚¸"L €D6N$(Ð`÷•|˜Hö!�EG„¤&�ƒÂj% EšË\S™&é"Œ²dµo%¤) ó†x•P£�Œá üŽ5ý¸ä˜ÆËÄSIîÍØ‰`Œ[‘dX¼®ÝA8—•%Û΀ÄËJ‰©à-¯o+Kö£5ŽÆS\z~œé!‚‚cå\ëìÅ™cŠF‘ä52y#¬ª*=š••Ìk¤"a× +Ò5y¢²âɱõí¼’é|neÞi ”K@þS~üÜjWz®{/jj—†d¶Ig'Î.^Cî× Žœ°ÖàÊãìÆ®àÍsÖÞ?ø!²ªähäDií¿ƒÎ +·_^øóý0b0ˆÒêjÒJk +Ò‰1�ò9ÿ´;AQŒjÊ*cvÊ4Po< +× <³ÑªEUpḄÔüDÔ?®©%QI§”À ¨•ï/z*á‚yÔZPº50÷».w ‡¢y°×¹ÁÈX”Uƒª‚kªq†^Ž¥TE@×9~I“Ð`ÇNÞ÷w€ìWHø;‹Wš©ÀT¼H¥—^¦ÄM¯O +Š*zAæ|ô@"î-Q øë$W^->¥J„¬óg ©'•ÐÎ?i|,!‰�¼sABׇ-S‰R´rA@Gw;;‹[ëoê2÷–¸ç”Nõ0õ¦%ø`|Þkàк…]È>êQíØ©ÛˆŽ’8v"0ÜÙ$e¹ìO2(Ç´÷L˜\Æl²ÏÀïŒÊñ-‚"i-ŒÌ´>.áÙo )ŠÏaROÙøxÆda ¨}!@;vVGqÁ”{ËôälÂ3©Æ VéE{WGƒ¤k{2=¬ò¸ËèlSIÔ²[$�¤”GL‘b®z‚c +ˆ.ãÛÅÇ=bN§£ŽUƒ\œTËX,††V+FrKûU’ì6Õ’å¾±¡Kgì�jy½)©qš#ËdÈ÷CI‡xýhÊé/§¤o$ÉyJúÆ‹x^lˆ9©AqSR`D(y†™lqxÚÖ8 +ã¬É‘Sr°¦Ö§ ª…ˆþê,‘ü,¸x]ªA˜¤@6o,zEczœ7¹½í™½Z«¢µ'5(Ù»iÖ+O8‰2ôfó7‰s—½“K¨Ïß§fm"”\m4G#©é�9ÏVÒ!\þQ\^)—<½,²Ù"«[àñNð)Å=I‘‘‡ÎÂ'cÖçÌ-œnZ|B-$E§dõ)Jö�Eáö¹ LyYCºE§MiH/PYŽb’ME!Û�^¯¢v”øqrQ-¨[ } "{H‚ç–ô2ÚO)µ³Ú(6aÎëPûhÊ<É`êö¦~`¯êWõÉŸæmexáI¾åHíº‘<Úu"y´ëDòh·$’G»v$vHí–Dò4ÛeanÍHí–Dòh׉äѮɣݒHíÚ‘<Úµ#y`öUudŒDòè:!@ˆÐѮɣݒHí:‘<Úµ#yØÂM^p$vHí:‘<Ú-‰äi´Ëýæ¶#y8”ĵ"y´ëDòh׉äÑnI$vHí:‘<Ú-‰äѮɣ]'’G»%‘<vÉ£]'’G»%‘<Úu"y´ëDòh»$’GÛv$¶íHm—DòhÛ‰äѶÉ@Á%T5›…Hm;‘<:Íà#y´íDòhÛ‰äÑvI$Otµ "1nÙN$¶ÝHm;‘<Úv"y("~^¶ÚI$OtÖÞKm»‘<Úv"y´mGòh»$’GÛN$¶HÝ|$/‘<Úv"y 'ñÅ�Çêh»$’GÛN$¶Hm—DòhÛ‰äѦɣ͒HžF;¹÷Õ¶ÉÓXkˆäѶɣm'’GÛ%‘<Úµ#y´ëDòh·$’G»N$vHí–Dòh׉äѮɣݒHí:‘<Úu"y´;9’‡•)m—¸ +p¥¶Æ™–›®‚Ö½¶WtyÒqè$¢ÑYÛU íW€-W#eÓU@ WA�6\ÅUÐB\©ˆuŸL9¸�’…% ®« Þ§¤³–« ±çÁUœMp4NP\”º +lÜ„1‚àÉj¸ +ÚÀ"ÈÏ–«@»Ž« 8Ë®�[®H¯–«€ýqmW€-WSeÓU�PÇUÀJ\ÓUÀ¤ÕtÐ ¹)]WA(Èu\<lÓUÀÓk» +xMW/¶é*hlJ +l¹ +’-®‚ÆQWArdÁUlpPâ*hà„w€eu\†¢üµEU´ö*‰ë¸ +ZË`WAcµâhìI ê¸ +x›®>‰¦« ˜& WAãdãÚ®‚B‰« <ÁXn¯ó¶]ɰÁlçéµ\Q”Õ.€ŸRPÇUì]ÝYÛUÐ8‡dnmWArªº–À]WA%Ä+ÔÛ6°ã*°è*ÈKNä¬H!땟ê JZAJ)ýâ$A8iÅÈMv4ÛœœÕé,CÐeåü# :=òU-…´œ Ñu ê\4ªÎE“äŸIÍó·ã8xÁ)¾µà.ćÜëµÛÀIz¿[›ÆD·Ô¢ÒÝÎófe‚Û�ɨY0ò(V@rèAáKFl´“pîÌ_8‰–¦”Hg|wÞm༂’U¸&®AÑm�‹_J"Øà6ðÖ, µÛ X€\½H¡P}{[ƒªz‹j w`l½™à6p>G2‰Û \)ÝRST@ñÞËùÔ^œ•vf’©]™è6p>º‹Šn�åËà5ˆ~½N +71(z œçzwá\ä"T™è5 P•Koµ×Àù7È�–E¸;¼yxbn¯A¼JÛIòBÄO.róˆNƒ<ðfmîÜ?]Ǿy§AéÄi�ƒÓ =ƒ× —GŸÈ¹9Êò>D§A}ù½¹ÝWºqo]²û‰s¡jM¼"�ŠN\Û +=E¯ó9¥(”?Ó"“¯óF—Ä4ÞG¯ó¯ïŠ^ç(�½Û�¡™Ý@責Añ%.&id_t8©¬%# +¬/ƒ¼Î—Èt Ñk�ƒ×�}ùÝõNŒèç•Ò¾N¡ŽN·*TÍ�p¥Äc�¦+áPÑcà|™®œÈ¶=N¡R€Y˜™ä–A)¯^ä!û‚Jy á´×Yå޼à ÷>±Æ:Q>ÂãGp䫾R¹ŽƒT;"ЇAî}# =ï0ȃúh„;ú/õÔy8 c¨´%ì®MÚ!¥†—G–-y¶Xeëŧ¦Lt¸P}ÁD‡A[”vÖÇÕ(݈¤ôõ7M#’2“7I.Fgü[U;’š©g¸êµÈÈhFKYÎ4¹\%È›™é$ƒ]�ŒuׯÇ9+å*ÍL'™„U33eŸf¦‹b§~4_ƒ’ðâ“Óù*¼Irº<TÎJ“Ó套XâùâuiÏîëìt„@aý Óät\zFp?}˜8h—ŸJ3œåž5ÖÞ…<³ wæ¦7½gER«=5$µq°ÎNç%P’œ.Ï2™Fš.WáËøVÁ«}i޹p‡Ó¦Ì\ž´‹Aø^’ÕÁ”ÊcGL©Â¥Á”ò>G¥IÀä™JS…EPLYC0¥ŒJ'Á”ù¯t#˜Rv[Sf5›‹þTºáù©<5N¿ò¤˜ÆRJ27ÕLQJ’¢NWþü]ôGÅ MQ竱§iå¤ð°JSÏÙ¬J@Ñî÷ iWøc¬{“ª™¤.j2õìäŽO¥YêB e#K]4¯tW$›Œj%%sº‹H<¯¢¦Iê<§hf©Ž†ä/*¯Rš ¥"°F½`ð'Ø~‘sçLáóˆÈ‘,Ä×Ü ©xa؈¤TÎdIY“JŒ¤dÛ¢IÝ."uâõ–JIAi$e ^Øë$’RyÚÐHU¡«IáNÒ4I +Ñ¿éQûO3kÚ\!ƶjñcW‹·°ð®Ž¥TÊbÀ¡oŠÇu<S©·Ý$±”5(%ŒÀK©\ÖxNT¼¦`tRŸ: ¸ +.½ÍÃ!³<ZØ I õ43ÕÉkÖäc¤þS^–×*üv6Þ]h_.±Ö*Ä®HUI9ßX~[™é†RêZaŽ÷#Úßà&¡}F§m tIîG¸îaІPÅ=ÚD·Z IîG"°¾‰Õ÷#qÐúR"™\¸¼Ð>Š:!Kí³ä6H:Ü£4h:ܤ4d¬ò¹ˆ’û•{FŸÞHÄdʆ‹œ5–€R5¡m"vV«*è4‰f¢lPW¢#OÐjNÄAúJV‚Ã$�Ó¹µdM?qT*¿ H;“8´½IÒ*3ˆŸ¦1é×m/�MâÑŽŽ£Ú£]ƒv ,ÃXI ×Ðl-ç¯jiÀ¾Úu#‡3—ÖkèÓ¾$lS»’:¯«àj�µwÈÔ.mɘ™P¿VbJþUîšä|ɼÚàÓ®A‰O»Fâ+WÚk§v¸uâÓ.« ¡û#Óþê69X-Õp#(Дmážû3BÕ7$º…&hù=@Xx¿f=®¯LšÎ΂æ*| Ût±R, ±%5(Ùºù‘¤ñâƒ(CoÑ‹W$ÐÕtû`ãêã—”c „‚[$ë"”¼±i£Y;b-ŠúD~rÁN†!¬Aô%åïœdJAqGR ß¹º³z{ã˜é1Œˆ‡UëñH•8†Mãz$®<Ҩ7Ö×# 0åd á¯G +KêºR¹!Y‹šÕ¨ˆY’Jømh<.Fô—iÔi…’ÚWd +±bš +—îRügK!Y#Ú2©'Pgê7ˆ—@®9éÐúçÊÛÊõúr3}k1–ÂÍ3>sc‚GÜËm?ès*0Î.ÙFC4s¥L +IGóE—g‰õ¢8J&%M†šÝÉ“vfUŒ|T¥TÍò©(NãæKQÇŠHG¦VI'Í0û^á +®ºò¦£áBtIv“Eh|e©\ûûÒ¸ö0òò2c+FÕO™“ã·Ö!Œu¼y}14ÕCšû€É†…Þêm•íí/Rís**Ù†ô<å%s„…m`s©¹,o Y¡æÓÏÛ@¾ó @™¤¸ÛÁùb./Ã9$]"(rŸsMšd¿$eÂ2'Ý@d·´!ÌOö¥È£i,Ǧ8ÁLý¥˜$µ¬‘@±D *NU +F#V�Rbl|ìuOH Œæ¤eâZrÒŸŠYj…>8CiØ·J—uüŒ K¤{C<ô,‘â"4¿eoœŒæÇ~óóJŸ RÓ:üÀvÊŠ]!ÒJÁ´©ñùÚ@ŽÁm}‘õzFðkåecÞÆ?üÅú`ÿŸhHÈFª‚ŸL|D«ÎïZ +J75%Lzó§«¢oºò˜QŸ¤ šo}âðaûxáË5p*ª)N™Žœ~ë#,j´5á~8Ån(ú²My F”šTjH½øV[b2 �J(.…ê¢-„йöÓƒq~×’ã“hüB™×¹‰PòÚ:ê©SwgÆCµwŽó3{,%=#ꯨ¨P€7#•šyõ™/ËE¬7dÜá[‡&ÃÔäFRè§üû¥¦\ˆ#Âóaàií;)‰ÃÙ¿#¶H] ΞK1ÂÉQC£„A‡"¦k9ä}š-‰e"±Ö²-$dJE ñ¯š"A•·E¨‘à‹æçrµ‚al¬ïÈ)‰¤U^_‡"2[×É’¿ H¸*_idr4YÉëò_í(ü\Ò•çÈ™]H`3¶Vè$°\¦ãr)C!Nv‘¹ ®Q„MgJеþè´qôkYàÊìÿÌ8 tT´8-ãÂdÖ5™+ò³ó¿Å]=¢EG֛хMïï=Û»Îæv6Ôìö•XwÎ1A1 ˆkvû_ÒRßôc]Å{GúQµBõJ:Fk‚+Ô´œ‹TÓâ‹d9$ShÌ 9öø'âè¡Œí² S²aŠ”_óœ G·¯½.±JçšùFü׀͈ fðO¹øæòO!H B‰Í“¿LèÓ$÷ŽÉ÷ª×‡šoéB𼞵ÐnáKzô¾Ò"EŽ} +ÙBXM|–Wê ¸¬CÜ{b?%ÍåŸ~¥üwÝ<þñ_Þ{ÝøÞö:ãø•¾ òÑbKþ¯ ›µwÿj(·%\ûù\$âMê0YozY}ô3ó4ù4üá¹&ÞøÃ&~Wd’œ‡ž oI JÔ³W¡AеOÐ<Å %Óè . øç,Œˆ‡…äõ$(ØÀÀdËš‡ëODÑȶ*}ù‹^‚¾eAs7Æy¼×Dxhžó’iôK– $‹s£ÜéUÞ³ú/AÊå_ ‹Ž½$’Åiò.E¹×ËŠJ!RÈ‹Nô 4Õ¾eNÆ–“aÚÀTœv?`¼ +ý2¶÷2Ö™ Î:Ý@çÌRY£+~h*‚—}¢–±l;¢„^ºQªì£Üèè¶^†(ãü·¶Ví–† è›þ„TG)«ð‰r•‰ûÑ‚¦"yÉ'Œ®1ºì„2òØM |®Ô4ý2/œÄ”]h*З}b—ޱdÞ¼ŠùŽfþ4ó†µàwÔùRÔùRÚøÉ{}"æ´g0§½Ÿ-í}ÉH)Íu´£6….§èŽÖÕý¬æK‰Hô¸Åu;nSê ´Ý]HçÃe\dé-péÞ-!û Œ,¡î‰û,XJýªsè']Gs[òá_Љ¢vÈbÉ-D=�—,ªýá2R_ºooÜÐyGUNªz³¶Ø;ú}eôû26á‰Û"uEè‰ô«sçŸ\Y›-6GƒÅh:éÏþè]%ê]YŸNǽk·•Ùî/ÃÙ俤¿;Þ:í ç{—©U–´rۣ߇ãíál8Xìüq¸;ËφHkU¸Z²•Ë2E -Ue¼+«Bg‘~¯„¼òpØßï/f£ßéËÆ4ªñh0ÜôÇ£ÉÁÙhïnÀõ®Üž,FóŬµ=úãhègÒmxó÷£élQ7¹Fÿï\Õ»p±÷Í×çÎSÃìÉÍÉž¬ÿvøç“/¦“íÙh² ™¬¬xFœ¤?œûâ¿”òËöø˜þ÷Áî/´Kç.¬íMw‡½õÙñüiï~B0ë=˜í gOÿ'?nôÇãÑÁ¬ôt4ð-Ñy\éÍfÓÉÞ¨ç~0™þAÛìhq¥ýÍÅÞʹ'}¨Nû²õwÔ{ð[<왳æ¿èÄÝòÙö¸¿X¶0Bâ:ͧ¡5w$«š,žÎúƒÑbØ[émL'‹éñ¬w4›Ì†óùhÿĦÒõ°Cã™´SG}B¦áñ,|ãѧõ>Ù˜/ŽgÃÞÞ°÷Ë;êOÂW{Ò0m¾Þ÷G=Æf½ýYr0¤½]ä!lk Î+FÁ΄ÉdFÿþ§ŸA²rI" +²Àÿ#)å½µÛOÖgDlã!÷ro´KÌäÉÆµtON'¼{O¶ú“7µªpÄñüÿþy´ �±"ÇÿÅef&|YÉÿ;m¶ÿÑàõØ®×Ùÿç•ì‰4Žkè?:ïÖ¯^ÖüºÆm¯·We½•ÜõŒü:¶Z˜Ec\ìlÅÿ=Ã.¿Jlì²Á†Ó™µÐ½+½¯&“þáp¯—_é…ÿÐÔ¯ðÆ]éñî©p|a7ÃòÀžÕKní “Þù÷¿'lMPšÑ=Õš*XFé+D›ôœ—<A„¡ð:²%ëP=Ò…è¿§.âUÕI\ÖÚ`ëÄÊNZ½Öj9Ø5Á"†ýoþt‰,““]¶#þïWº•üB'¾³øc<œŸ»rw2ýû„ÿAJ!!ê”8÷•/hê¤"]Y#…ñ·aøõÊÆôðˆ˜üÞÖhL[‡öOû£IOô¢èv¾Ée²/®<ÍG¤$¢Ãn;‹þàÙô°ÞŸÉˆËgùôÚ¹Þ•íþl±¤—ÅlúlxöYhþaü`æ?¤Såš6pºx8LI•ÛÃÒÌïcO┲,'%™ì £Q}‹èÄâÁ¦y–UYnù‘éòÆ’ÅG†n%e·X„¬XÃidÈÔëÔaÏëiã ¿µI"”½oÖÎÕÈöÍô;ôÇ/=0ÞýÞ÷?f½=‚~óðZ}³GËî÷®õÎõ.$K}Ç+拏ûŸ£Iëx„`ý^?ØßŸyþ'|ï?¸=³a0öH¾"ôC =†_¸¹¿?\ôöþ býzL$ÜÛûA«œLÒÆñϰkúúÑhñ2§í,i.ó¿=™“uñäHø€:ñ´Ôjùâçu!Œa‰/ô.lŽæGãþòÏ“Ž´u ëãádïÎóTâàÎêå/Y« K—Z¯±îá„ù¿Vì.¼ª½@_õV<8áà—l{söÎïv^²‡Ô¥½Ñ¬àR¦´RÕ²%üïú}»¾žìfœ63šÿ_͇7Nìí½uÏ«x8ò×;a•]Zï;á¿À¶Xýú·å-ñÉ3îÏQÀ¹+7Ž1þ¿]¦#öTåþôÄwªL³WeÁBZ!ýh‰ürYM ̘¬’"$ìijüôáX‚DÖ©g2M’‹.W‚8ÖÉ}1ÝèÁñâO®&öN5ze‚3§½C’I‚ñµþt9¾Të¬ÆøÌÿ¢øâ^‡*ñWÖµz§L/Cýwºô+×¥åšhÞÓ|ñ5ê¥z(®ìözÓÙd8›¿*=4¬)Q3O=-‘�½À³ãùÙ½Šÿ¡Ið6œ¾o5×ÌI~Ä%˜þ2nß×♽l±áfí¿0Ÿ|Çî^ÝæÃþq¯¿7=ŒþRþƒ7Í,ÎŒˆo’NO]¹ úhIjò#า«rW_Î{jU®xSJ¥íãüãÞýþüÙ«ñKBÎ(ìU¤ýÃÓ¤ýðÁ‰ó +—òO_Õ¶lÖî¶P~8Lñ—Éâ{aÃöŽG‡�0ÝŸ/þ{l g½ÛÅ +¼“âMÜnÌþý¯£ãùྲྀ-aû¿$GŸãs³}ér8ö+ %\ÕÈåúFåè£Y2ߟÎ_•¼ˆrìúYEF\Æ"|îCÙX˜ª /æ$ˆ†Ÿlõ4…Æòù—{£‰„øG|8ýÚo/šÐÙtÑ_Ÿ@Z÷'óF?³áþx8X|ë,Ç&LJӣÑpiËo¼„ã–G£Éöt4Ytæðy˜"eÓÅÐÃÙ`ØúÄOpsHšH{Øþdoz8úÇpYoÓÞTk z×ÞaÇ;ìxØñgÒÁõÙtð7ôUØ× %½“ A‚’Qºâe(²þ¹’/ ‘ïñ}Ç%ÿ,\òv¼ÃŽ¿ˆý“‰PóZ¼ÿ[òSåjYª¢r¶T¨•ªN§N¤i&)ñuYh1I«ò »vß1ÌwóÍ2Å•Þñš×aVz]]òf§øm ’f›wÜåwù¯ç.ïâW_'w± ÝÅ ©¸‹A™¡¿|ø3Çáê׊?ï”þ‹oL·†Ç´Qýƒá“[;ï®LÿÊW¦oLk¬¹É5‹ÿùž½Û\Ù„þµ¢«VQÅ +õLÊUd|û±wôæ)ûò±ÕL«Êj[è¬t(®Œú4e¦MåTæL®8“*3We1yéóÅd(…–ü¶ð|ý|ðþh6ÍêÇ„ÿ÷ÏoÞ±ÃwìðÔþ²;ñê ó û<V-³aÕ2Ö¼³aÿ +lûÁáîlØC–Ëÿë]Èß;†ýWdØ›³éQoçioú÷WŲk²@€ö™c³]ä={ýÙ³”aæ³AƒWõGÌxâµàoÃÙÂ3NìŽgi»ãÉ^£‹ãùp{çÞºo;z:ýƒwY8C(øQŸ‡_¢h¿åbæ/¯˜ÏcÙŸ<$îåãERB ›¿‘XèIr{‡³9ËÞÿ]N¿MϨfïqFÿ—òG×x·ÔÕ‘ø_¡SCý Íêµþ[òÎäNÙÒ”•1 +”gG}Òå¦Ìl®%ï¤Ò¥*Hf«¹jÒ<“œŒ²Ÿ‡$‹$ï·Ç Dø«sÞœ+þ×dÃ÷Ô¼·÷ïí÷?&Âagtx4ŽÂᄆ¿Ö+uAmâ—‹d?8ÑíÍÉ^æö¹¹r·É‚${œwd{÷ ÔÝh�ÏmºgAøÐŸä··×]øbJ +®L…XÖ(T£TUn*"ôœç™ã}Èâ¹³4tæù6«Ð¥Íå!OF´ÈNkøÍlÂ<䫚u(—W<“‡Óãƒaoãþ/Â|¬£ªŠ—ZròPb;ħœ¥eäZq½ 0£ª‘*ׄèðNÿxÒèX!qÄ,Ç>dÖòÑþeE¥j×óšsmlFûìla2íß'•¹hÙ&“¬f«}dΪ“õ”Ô + uv‘Ž_8Ú•*·Ú®ëN_©œ‹xp®C¤<N¼½cí]Eÿô'iÿt^t4YQ(e•œ¦Ò®´e†ð()_П6s•"Œ—õ-8Z+a{‘ãU’MR~«N2b×Â.Áëáqã�³’¾*h;½5T¡à¸È2C+áÑIìí +¢ICðêKÕrð¶q–ǻO46YôÓ!I’9S„¯¥.ì ôÉLi´BùA?W•DÍÖ€ ¸‚mœoTSÀQßDv|Ÿ(×»ÿ ÜYw>©²Þôg\=-¥é,ò’ϰʊ¼T´Â(–¢„ÞJmk¢£Ì._ý*žJd«üàÄ71êOJGCg߬#ÞÑ¥d†ñ“¾ÁV—ΔÄ^¬P®¡±tZò>u†i0Œâ"Ó(y’i`�Â=EÌLY®9á2¢3â¶áEÉôW×BšÆVÌiñfXÒMÒhÛ¥‰°]:M_2 ‡ià8Òí0´ Ä9~»PÆç²“#xáâÆ7´Ë¯(Ê$U¡ã£¨‡¢Žš¿š9bY4wNƒ(bŠR•ƒ×483ŒÔaUGåÊRôSa§lÕ°„MYE£k1¨ „]´™&vG‡Vq +òÊæ´ç®¨ñ÷B˜X™"”bm6Vg~ØÆÆMò±W}¿‰•åÿ5¸[Ú4Q9ÉÓ±€XM–ãW»|Ü—c—©W®|qIZ—9¡“W§«áËɼ}鸪#¥aváx·tàÒ!ñzNË%é`yÚ$³uQ¡ßP9ŠYšuÊU$g4±UÁ×AbÝÊæ.—ÂMâÈ‘›ÐÜ8±|^Þa4tpHFj¡Ã%ú„ˆÉ•ÍxšžÔ~ º»Mиb<Ž”kê&!^Eª� ÙaÂÚDbaÑ«‡©ÎÉæ-ÉŽñZ{Z¤$Cv‘9I]p +fÅŠè‘æªòÜÊé®ZbþyUð®*ÞvÂo:UÒ¦[>YŒÜJ†|¤Í<£~‹³°Å6Ѻ#$¤ÕÒÖqšR’ÍLE–†°Æ'/E5«e;©l�¦ÑÀ)R¹èĈKÁ0åÓn(ðf¢ ªôLQór¹u4³J»«ÞÙÆY�!ŠeDÅ(Æl²žcذ%½ˆäpÉì/£=WLݤ/0•’"Ý™x¶U„õ¼I¦©ÊƶŸ +l0‚ßÞÝùÄ5'U²„ÊK<šÕCRö)±×’{Ôš˜‹aáR™Lj‘¤„ÌÒº!%ÐK³I:‘ßóÐ.jk–Ô&ZwI¸éXÑ!ñäy²Á«`Nò°®K‹¯ òép=½)ÛÀš÷¤¨•‰GˆBÈ~¯@×¹Ée*ÄÈi‰TJ?•Œ¶ÆXb9*/ ©kÒKžQ,eÃmiŽ‘–Éw—-¡�)‘ +m^Bw££3¤u”yå*ô4¡R‰Hb>cƧXß%Ä"aœIößv:à¬#wMK`ȼL½]Æ5t¯²p¬T¤7ñâióèX +Ø8¢ÒÒ~:àU +åAmΕø@!dÜ™W‡ÂÌ2 +Sõv¹¦"Rሴ* Q¯×¬+c2"&‡~Yg§9›%í˜ZULuUW ëÿûÃë‡ 0Ý87•;²„hM pN¾`1SÂXXR% tŽt^a;®äÅÛ*DFè^²RQTm¢+:¹žó–ö +Ncb6˜ÛœT¥J‰žFº¼#V@¶“>IÚ’I¯~CÆ'iè$j-)�³sL®Cv)‹¶Ø0ëÂÁV`5‘Ÿ#®Dÿ?±`Id7U$xI…g3ÊÑï'IÓµ B› +Ƭ– J}˜]˜–%’P 3í<K™ñŒè*²ë˜ÊÉ|EuZ«ÎØ€%�Œ“N“elOø ‰+UÖwG#íêþºÁ\˜Ž2ç™m”¶›X"ÍÉåЖ\áŠfBæñ ëÊÁÆ'+…íâc‹æ©yäx[—ÊyÆ1'‘ŸX$]Š ^ÞŠÑÜ4ÌUh±„Åšx¸«`…”l’úN‚ ƒM‡Ì³hÙ£Ûca™ÍuËeÑàYdð”Ä,a„´,# +p°œD>q*ö ‘:OVé–ƒå/TMGZaY1jºŽD6ˆn¡]ÂNù(Ë’F9\‘Åj4ô]Rµst+Ö´-¦dÛN—4 +í.èU9Ûq-±/[„šeî‚ÝcâÄ€]„he9¨÷JÕïbæIF‹5ð`‰„p”EäAj2;ülË�CLv±Çš¦C2³¢Ö×]´ˆ1С@o5e&9î¥ C¨+ÉÅb‡à ¢y°^ ƒrªÄMØ(×å²£édK\#žcñ0™˜díbäåûþïd¼ãIÞ4ÚÖ=<ಒ—{ìc{nÍÖu/[¸YC5¶Áh8~n/ÍÖ¾—à]•WG¸{{šî°·˜ýûÿÍ}VÊçÏòÔ1Üsâ[—dIkþø…nØ’Ö¢_¸5q&ßíƒ?×X4‹ ê# +®>Ò©Jc–CjV@Z"–“Š,<¸c´Ó2Q²4&v¢-Ê,¥¾eVí³Î´ª¨>W´O’…¨ÄÄ"ºÒ$‹H\“ªÊ¢™¤*™D¹‹fRÀ²’½w&ÞÖ"–@ZfGwZeœ–¡ Žíº‚ukà¿¡õÁ» ÚxUU¢ÐFYC ݰ$6œAµåC´m5Õv6« éΪˆŒ‹°…¦Oú9é{¬äì2&M‡´2f©]ˆç�aZAçÂ>º¶Kþî¬ò(åZ‚¸)©šEqÒ‚°Y[責Š3‘îN4 & Ô{ú±¤=4ŠWGÝZYæ˜Ig™<\0И™i³¢ m™i¨=PìœhMÊÐ^Tª`•8ƒ2F:Y@D,:ªÃó!ÝiEÕKãR#ƒA¹t¢#“HF¡’½¡´ðµ’5Þþ!ŽAL +ñÑ6ÚzÃó!ÝiE§QVFÈE +¡¨îš‰Ed"ÿ t“ +V7_´ÝÔeêûeuöùî¬tm*’zEÖ¸‚(/èx{e`ê°V +ë##æšiá{KîœÎ�YÆ:ãe—ÂÆ×fn“Éå|Ö„.lÑãRRñåð¯z¿gë^à,%¤ÌÆôx<<žÍ{¿~Öòæ-_ ÊdÅ¢nzdáb·>¸$ßæ’:\Ñ&CDï“6,ñ®·ý 8€tÒ³*\wXBÈŒ”pâfÅ3ý2«ïd[È®+¸7صYŸ½´î¶¯PHe,îáÏ`6�Ï ±bÁ„£F.¸ˆï•J“]¤a¿‹¿¹cš·áËý͵Ž8øAiaÅÊU/iÍìû‚Œ…&ëÂUd©å…ºSìÉ-µp½;°ícÊi«É<ÓPU&·hnÈ’8?1 9`ø5!$Ø+Ò®éBê-óÛº¦Aâç‘/™Æöz4ñ/R÷Þh¾hGo´cº;%#–¿Õi§Zoæ‚m½slEvÂ'x^/SmXeòÓ·»Ó1ºùÿÎ]x8,HÍ{¿÷÷f˜Ûýéb´ß[ôO‡½ß†âÍÿý¯‹Á èG“áñïùõÅh1gí~z|4ìýp¡O_ôªÿû'VPó.R³‡Ç»\·ùÖp¶;œõ/úÙÐüÓ¹œ¼&2›ÓÁñáp²Øì/úçÎ?¹þÝ»ÊÿJ‚ðïoîßûbº7\úãµÞ…ßÇúy¥¿XÌF»Çy÷@MéDûo¦‹WÐÒjðt4Þ› 'Ò&d²¿â å×NæO~ëÏæ×’êjiÓßúããÐðù íðœ]šù™Ìÿú‹îÎîˆHzr ΰ9´‰;Ãż Ïß¡´õå·»ÆÉtrÒ”Óõ§ƒgý³¬-´|EÇÿ®^ºú3먿;žñŸ{’%B¿úÛ™IMß2cyƒãùbzøv9ÙëÃëó>âD!óˆuœ_;]ì RêŸf*ÿ T:ßÿûŸX¿e2˜Gƒ¿:/ÖY‰`B²oŒÍaTù÷c'ùï£=CyþIû†o—kø+5BTžkž·º§ÃÑÁÓ³ðØòí®/>p8iA»Ó‰¡{ÃýŃو¬•³,ûÍÛ]äŠCáÔçœÜgYÙo})Ú–g°p£yù¼eý~&¦ú§P +˜îLgƒá:«½u€d×ÛžÂápÑß#%é?GõÎãý=ï•8:%‰ï¶×n+Õ¿õžMÈ´š/z³éñÑ©MGó鸿övñxÉI?ÿ$wθð÷vÕëÏ»Óþl¯7˜Ž§³žê!ïÃäŒmgÁÈsc=¹¥®[>·ÏݸÏíôš&«R'¶ëlgÕ;ê g½ùèðx쳊¤ì-8mÈQŸfð 3Ú£Öÿ‚"7¥‰mƒj£?ù?ß©[5Îo{6œg¿ {†¿/z7÷F‹þîh<Züg'¼k}<îA\<®1.ÕàZ6r{¾æ½9ÜïD©2½š†H”´€Õ4ŒÇæ<# €ÇÃY*®BîÍÍÑühÜÿã¾O´°=îOà¤íú?£dñ•¯&£‘A z"QÚ^{è!e•NÄöV\™´Jæöp8~4}(óâynOç#lÿª½P0LoEë&ପ3 ûˇÑÜ—Ùôhm6ìËkp¿5ß?ü÷¿ˆVåíàáôád‚çhííaìˆ~N²tŽz[c䪙Š2Ú,zÉÖI€¦÷‡ó§½‡ýùb8ýƒQ¹÷pF•/LÖøâÁñâˆÍéßÔ”Ðܽþäà¸0ìmO¯j£eHÁJô×&¿CN''ÆÍöŽF«-¢™M=Ë4y˜þQo¯Õ[<ª- µÛ½µãÅ4®m !f½ý¸·ƒñèˆ8lï߉“Ðü}_EÍÊ_̸ãq™÷vûÁ Dfê•FåmbÚÎæGCFŒ[ÄFž<„ª²nÇ㛿/¢l8ižGuLÎŽà6÷ÓL’õ<[»½ÝŸ–Ðüæ;Ç»„4[Sjøç{wøGà•ê¸j|Î$Á€xަG1ÿí"r¹“3|ÿ¸?ÍŸŽ'œyõ.5g0¦Ó¾fY·'{Ãßw†ƒéd/´´/°êuVÚÓ…Wîl§»hî™'Q¯¼3‹³.~k4›‡aóâl'ÆÃ.;²óäçÚ,Ëvd*|F–FöÜQ‡¿¿ ·ÆÓéìEFçN}ùgñx–~%æ”÷Nï8{=íDœËA&1fÏÙ™¤Øj2ãv“G©åØ•~²CœszÏ}’2ËÙsÓ‚ÙŽ?ï/ˆËSÃÙíÍy"áNhyoJÓƒPJÛ¦ Ám‡Q[û±ô¥2¬´´®,ìi‡~«Vù¬;©[×V0\ý§ßÅ\«“:Fó¤ß3Ó*p'¨~Jå‰K}<þ›t¨E-6ÜÉí™ÀR’êØK?A¹Õz^Ÿ<8v$;à`CÎ|ýt4xº=›îÆÃ(cŒ.HÅ<å�×2ð¯Ñ+ò³pm˜ Œ¸Ó·èÁQõhµlž7w‡{/2Oî÷VöX2ÑíÍ-Ì•P ÕäOFJîµ…•'¯]FéÒ²Ô2Ç£ ©àdXÅê¤N!•j%í1OzìO£iV}¯g\Pv5[Ís—öaëx<š¡ÏE¿ž®É„©Î9×ïÝ&V—W|1Æ—Ç}ljïÞð7Ä Ÿ¾YÂFˆpâ1`6¦Ç³Oîõó))‘ÓÉç‰wò¹ØiЕU©Ná754…é;‰¤ˆ«¸5ž’¾ùpxt<®)£ù¥áñÛkø5fKiIv2•†Q½›Û;½mu3‘2=ÒµÛ¿?§ÿÀ”®Ôþ´+¿LwWwG‹Ã>(¾aÄ¥¥ÍŸîbÓýýUqzÞxbóC2VçíæjÉ\šÏ‡„ݼ¯ +Úi^Z†\ÚÙ=HåI«iX¿1ç‹ñêžØë¼“CO@NïŸùöµ³é,ßíÒÏãÉ™'u´wæÎå’6~±ì¸Žf¾Ù)Ç@müèž*·ôp©]r-‚¬'´JoTyR«Ñ!Ù´«c¢Ì³µ\L½íëŠâô–³zx¼89µmФ6 ×F“Qïˆðîh4žBO=íÐM}´K)hÐÚ¶“¥»vJWÓDw;¥³V³Î©s+ö¹ÜÌbo8L–øìÚ ™<v½ëü´¹!«ghן·:Qà«ÆqtW=žF-ý¤dÉ"»%<"§¬-£ƒ`wÜx/K¡—¶ží’tCš–Ï]Úp<: +i1Y$-muäg§áz°z*òù6¿u|íVœ…8ôõÜv¿¾Æùàh<øãd¶$m“ùiHLm¤ +§üÉë£s÷ž¿¾Ý)sg©5œÀÜ:ñ¢Õ<d:{.ærsaÔ5aœåBù2½ú™¬êå¬M‰ÇClò¢S„òsÚfÓ£ç49";šìOŸÓž@Np{*]È 0³wû³ù)çØT+jùr†Æ‹dIÏk›™3èBõ4ÎÐ8Nãm“i,£¢ýÉbuo|:Ë“6G³ýéä4~‡fóãÝ@fÙÍi¡ÑzXªlÌIý„ÂzÊAÏW'Ã~íØ?¡Ñ m¶žØŽÄÍäô¾ÆjÀ†e0ç–Ÿÿ|uþ´¿7œ OÙ%4.`Mhnq#–öÖlU,ãó¿6¼Þµ¿ÕjÖÖçùÞbY˃%šÿ²v^ +ÖVî²ó¬Û‰‰yzKk§ ;˜Íà”£/k8=œÂU¸Áü”ç{Ç'+4Ô`~|Äèõ÷§£Å0äYï˜Z}®”ÌöfóçKnµ<œ‚SÒÆ[ÿ¯ž#Fø›þdnjŸC§Õó,‰Áa¢\]˜?¼µÞ»}si +ò½ºä¦²õñÑ,Q—µ 6šœ‚‘ÜÜßÿxvŠòP7œ.žCðZ¼>¦Qzk¡y¯v6¯™a·oà^kÃßk=Lﵚ´]ƒ«gãéå—t(÷iW˵×zÊ�.|¸7:>LnLüD±‹Sn4_Òm�;zîÏ ‰‡˜�~áròyÕªþx|ºA0#Ñ2›1ÓÙéýÍŸŽH#Ÿ<; ¥y`ÒP^`~aIóe¸rgº{›”^à ß”Þ÷(eª'´ÙI}viW®¾ Þý>ogH!ß\Â=B¡p~{3 ábZ\J·BÕD$Ÿ—»íÓn³å#iéQçü‡W´?jŽ$ëzÑ¡ä«çõ¢WçéVŠ[s(Ï'2þð´¨ö 'óˆNÓç"@ŽVÏa$ÜÓ)|D¥Ñ9“i}ÕÝMøŽÆås.÷$ú‚¯÷Z“ìÜÛ<þýóÑ^‹Ì0tëÀލ¯qgÅ;ý߆÷Ç‹íÞZ“_‚™&ÏÆóñ³è’„|{ò¬‡‡s û* Û›[þarMr~M” Ð{ ?%¨PÍsI[- ^êlÝ$x?®¬Â2×v6nß.Ýæ?ÚÏ|øý¥ë_òѵþ7—¬ß˜Ý:|zõ`òÞ÷._øhcÔ_õùÍüý«7¾ºõé}ûÙÕ{?|tÿÆìxPlÝÔ÷ËóÊÚ÷³l¾ùËæÁåìƒ×~ZýøÆõËGóó»úʹó7®Ý{oÝY¬|þå½×ípgcôɧƒÍÕÕ:CÝÛû–Æ+6·Î_-¾»µØüåÇuûÝÊåµÃé½9ìâé¥Oó÷·6í_¯ÿ2þèësç7÷³;»K;û ¨ö‹Ç_~ÿÃÚ£ÕÇ'š¶»úãë϶~¼qu¾zxióòùã·ööÏçÍÚúùɃãÍý¿.ÖÇ7Æß\Ý_ºØxZ|§Ûñó‡›uï××?ûèk釦<ßøéà§)ýõᯛ·÷n¿·¾RþòÁÚÎÊû™Ã7ý½ãsç«_.\ܸ//l<µO®]_;o>¼´þÅåŸ/ÝØøè«áñÇŸ>¾óþÓkƒAÿþ]º¹ï©Œ¬²+ýb6úàç«£ŸîìÏöÑÊìÒÇk÷v>üó¿xãÚ§æÜùüÚão¬M^úäþµ+Å៌ŠâÊ|߬ͷեgWUìq°ygþ˜¶øhX|m²½«£+}:_uÿ“+—‡ëãbûPVðí½ó76n_ÿë›—+7§s¹ý}þþ§ÅÆô§K×ï}Uï¾ÿ#wûéä<-èÓüã÷q$ßç_ç_N°OŸ®?»˜¯xÔ|¼w/S?¾óJÿú‡[ï]ún†Qrüð÷ÂMÎÏvÿvÛòß—>ݺîÿºþõÍ»Ò|ãòÍŸ¥3ý¾M¨ûMvéÓOo^Ö›Ÿ|âûùú“ë×ö~ùâ'>É8aêïÁºó£P£õ;q?ÖP>yˆFCË0÷ÞúæÞêÍáü3›—ÿ2X{´ùË¥Íý+w½ÙïôÁz¾ûÕ—Õöùo¾Z{°±¾½¹¿3úõƯ?^=8w~Ý~ûè‰læwùÞw7Ÿ¨K×í7k¶6ùúÉÆè—üʵýÃó[û+ÚÀO.Ї{Óz¼rç×ûkî}|wkóâÞ]Ù›°Ñ‚ûtú‹£Õ//}ö¸ÿ«,èÓ¼ì߸öhñ·µGwÇÝ¥µv6Ù‡pßÌÞ]íå<ØXœ;ó»½óúçëŸmf[?Ü0Œ×¾¾µIØññåKëÓê§öY5w6=Øp‚9Ÿ=ó.ÑZÒ}ºsïÖÚ“;Š1æú¥£k?o]Ø¿»º–]ô¾øÁO×e"ÍíÈVÃ]Üxš?|vóÒ½ÕS‰�¾‚ÃìÜÜ†Þ ¢:ü–öþѧ7çŵÁW׊ïô×í3Øþ|ü¸Ñ÷ßnÝ\¹¼[-;’êÙðîÆ¹ókîï]"óiµ¹~ïÛgËfË-“v·¾-ö‰hnêLß²÷»˜³ØÞº¸=¾¶µé¾Ó—>½õóʹóõºhUƒý››®XÏW<f†³ª>|™Ý¼òóÑÇë¿,ö×Ç“ÇÓµGO¿ù€º¸{)vptóòô½õáJñýÚÃý§Ñg?~¸ž_º÷T¸åÅÍý>Ïi¶Ó§Âo>þæóÀÂi€»?>2[7>ùþçÍ]ûôëµ¯ÎæÍv®=|ôý¸üe¼r9Z-h”ú÷éìúú³G£ë·Ô…„·÷ðã~º'$Kf²Ýã›>ùõëZÒ´~%L¾°(hzÃÎïåÏ—®ÝžïǼïÖÕñøûµŸïlø_«µŸo\ÿ|c•šüü˜¸À½×ÕwÇOÖvŽÙúWnL|Œ�‡7fƒ«Êi¥ôyåÛëŸ=ؘ÷.¨ÝŸ¾Z3¾÷ÁMàô†ºµqïþú4»sK}’ w¯~¦._Øø,Â>¿8w¾nÉPüs¬pƒ?äæ;÷ô—øõù:°Øºt¶v}e«p+›õ“ïŽn¢ÉunŒnž;§·ŽF_ÔýÈ(¯ÙÅ8ùOã׸ f³ÍSŠË]㉜;ÏË”cRÅöç÷v;«Gá.Ú[¦Ü”ÿûÛñ£Ä¯ù›kø—ñY½•Üœ§'»89¸öeÜ‚ÞÏ8ÊõÖÑÑé7jÉѾÄA´ŽÁ"ß`³ê¾y¼OÍíø„WUÿ“;‹#ßZ2‡K×òéóD¦ÌÅeÐæ?-ˆóŸ„'¢ß‹«ªQeéfñ„ÉÝÍúDÖÊ”¶ã“zÍhü`Ù¦¶(5nà'²ceòž\mvñYs6qdÁéÖ Ü¸¦:Âäú´§úiµÜ;±¶„T®ÅnGæ!HÊ?xÚçn_|«OÇÞrÞEîÙãØ2ÈK‹¤ùbh(GiH¸%Ïña^ª‹ø/Ù~,ƒ'ÿù®©ú}¼öèñÝÉÖ†HÓßשÀ¨Ö&$+îmý|ÿÛ«[ï}¼JRë*ƒ´_ù€4—Íg7¾~ÿ«ƒÑOOnÜ<ûõCe‰:áÛ'›3©Úqék6gÈk4<Ñ̓•‹Ÿ‰ê·}ûⵌkX[Ùû7t¡Úxzüð»Í»w]O´þd¸öp²ùàÆÎO³]Ò`Ç7Us”Kl;\ý"?¹¾òóÖ´ýë•¿]üžŒÐÇG7—]YÏ/ë•ÄnTë»›Ão~^ëVДîWõÆx-ì‡òAbº¥J™¦°m«ñÖt_Ô³NßXúlezåþÃÖ0/Ò”H[wßý'ÆÉLhJÿ¡qrÓÄk}CW°41™¶ïOÏj¥¯Î>÷gðÕùg^?úæÎ:«±õ>Õ]ýwYlH{êó6ï®çÑ�w׿¼ñýÇë_žÿqÁê0XE±dŸR[„ÑþÓüîêæí_Š~½mdY`ãüö¯M>/ï=Z{ðÕ]Bw¢NAÎz"'²ŸŸæùÇ‘�nóƒïYû?w¾Öÿ»>ؼõìüÈëËëpjè¯Ë‹[GÛªK×ìÍnï`¤\ÿH8̵ñKôõÁ¯jðð³úÆWïUÞR}ôñ6ë™}ŽÑ¯¿{öþÆÓÞ»J~ò$œþ«´ÜU¢ýõg÷/‘!²½o#\…aðÓú3ýÉ{õÙ³«{‡ãÇt§a#çë[×oþ°{)¶~úñã÷·nNމ*õùê°ÌºüÁ•ïËbpïÎú—Û7HZ|{ø…Ÿèñ·ç×¾übç1líðÃ׿¿ÇÓ³âÙñîvvïhu|kþ`8k쩲5ö«ùÜùˆ’[7f³§_Ù«÷¿þŒ¸–}vígXwÙ~µq;éûÁÑúçëöx=S—¿š¿×8ƒïZ«®Ý]‰?<²¿®ŽÖØ»yùÆìow>ßúøâeKìêk²o.ïMH:=ÜÚzrñ½§X©¹q}÷§É¯¿¼ôáÕ§—vF$üª_ÏîÜq`|¾²ygöñÏ‚c]Œyïæ§Ò2Òo£³³Q¯Î×>d ?Ìóè×ÔNÇÓ©7™¨—LÁéþÆh>ÊáUXùþavçæ¯Ï`å'Ý~ùIî@½†Ô—»cnrU•ï‘οuñÛíÅÚÝoÕžã'w¿ØÛÜ;¬.ä»ð7²Ó?Ë67>_„ÑÊô½OWÅ Þ³¯?qW‡?8ôûôùö•õñêCEîLXí8w^Füâ«òÇ›O~úÿ›{Ïìtvå]xÌÁMÎt€&™œ 0Ù6`’Mæœ÷ìÿñ¼wwb·ÔÝ@gšpÖ½¿½¶Ðj•T*•ªJzT¦7hü_'ûÖãŠ5;Êh]ÚhNhÍùÊŒ<¯ßB†ÑØoŒïÎ×¥/°”üíòª.\»Ù’þG*3Íô+£Ø&a¤p>m™±OxÁ¨¿v€µ8ò”!þkšÓ…¿ï·¤¯Õq'jöêWâ¥á�Ï"gÊõüÉ91ÙðMvA‰xÒ…·’/LÐÎu¹Æfc=;0˜»éOàWò7`t¦Ÿ¬6+cÜç>cI|™æ A}øÓXŸÉõÂ"ú²Í8ìô'yCcµ$ûñ–q·;R.Áaô®”}Iö5Ü.Á#†Þr\Çõ•‰Ð–>?Cß–ZL:g"›îæír]”ó9t¦poùö®V¨e÷?ÃQ‘ð´o›3q´ÐóWø;ã\¾ }D¢îËör;»•û9h‰¶°–”g¬!£;¹ÔsªÉ·{±ÁÞÀl^¿À Ç×<ë« +w{Û+‰Ù�‘7ÌÏ"MG²ëücú·ä;ÁÜ ö Xú³þ±L}ë>lo%±ˆ–r2„Æ ]e9^ËŸ"Q eŠñprÅ·¼¹–=ZãWptr<áïMžÓŸÁOæuº3‹øüÙX°î÷»‰å¬bŽ …åh.1_ßO‡FÅ +<)‰FhJN@‚óD¦‘ð_³qþ¬maEfU×Ú¼!›Jô¾²©ø×KÞ! +‰ gž/’°ÿÄ[Â0û˜ÞñZ𨠇ÚÓ¯x`µ0qI)pèìÌXUgZ{ÊšyÂZs¿å?GÔŸËÃú²~ wE¢ÌlQ˜¾ÒñcŽ·>{^ÝQúiŸv¿L\ñÐóÏœgœÃŸÏ.RÜÖËqº®È{MþÁê'`¿å×3›ö?¬žzùìÈWöé|»M;GÙÌ£Íhj‚,v×É¿JÔ'•—š–¯ù+²”„ôœ×¦ZÓþllÀÙÃ?ÿx3°°í}äLY¬ßú»ôçrã–Ø ¬š_6´·Óɦ>cÔiúpþ2ü(ËšXYcçç'}óY:5MÁÄÒlvÜzÝ« g…I9—ïHGtÒÓÇ>röŽ“xØå¡ìV[À· ·Á*Êý$*D’7;6?FWþ\<˜Aðiâáqß:_éhÓ›Iø\ÅR„” +Sˆih?K6d×$}¶´ÈŒ} ìrÛd˜eIøëå,ŒA·šX&>òT€óÅ€RV°žð¯PÙAÁJÚ0cšfª@ìÙqQücðßÁ$n,8ËÖ@¨>ð̸»ñ¥ãùÕúPعDÍ +R®ÿe69ëÂyz}âqV^ò×72®·‘I£Í¿}ôÅKÈõù¸9ö”‚(çmxò÷wõ!ràO2Æ[¶G™þhá[ð\4û ñ;œ¢] Ú¬Á/ËÒ.í¬¬'Ki¾?¶š¿¾0TÌ™±žî'ƒm²™ÀK^ll¬ó/%ÆQþ™Íà¶ÿÐ'[HÆ(ƒÆÎ¸™Á**6E¸qT,``ߥV.Z†iX4å¬[޲Ît¤ÝŽ?þfm|\\Y]yÞ¡)¼N=g‚Ì‚âˆn_ƒ'åÚu)bÙºÈCyö|BœA{(”üzhБôoÜßùÊ$¹ím}»²Ö'W+E4ÿ¶áiÈü}~±ñ)G׌‰trl<jË}"0Z}ñ–Fá¾Ö†y°õ–xøs?݈UïÒžöðÞ8n3B£3Ñk"X{»žÍÆ¿@ÈëûÆä¼üÒŒÓËðùeŸ6 öÈc9QwÆa\¾ì>F83ã½~¸ÜzdÒ"ñ‚åh1Mzç“ ÝjöZ,•OÍÞ&zäaéã5ªŸ.õÇÍbñk`e‡æL<Ük‚Ùé¯9pÒ¹ƒ–Úû¹J¼üúÚ%<ìÄ·¶Ž>]|¢@ì É•œB=ìÚW_ýÁ~¡3AÉT$ýå£õÎýû7]Û3àÙ×ÙÇ옓ƣ~:ª¦ƒNâôØ–s*ªfG$î×§™³Ð^Ê_Ÿ,Á_û®Sp34™Œ!rh¯&]D#×yí,`\vÉS4-òÜí³½ý¶°0¾‘kálx™à6Žn²fGãÓãjÃÀ7‰Åèk{Ôm‚ûä³òÎXªmñÚß»&Pkµýé)+cíD£éoœxœÇJÐó¿¶ d‰¸üц%j…oøãóŠe˜•´<6ÒöoÏøÑÙ-&gÕgþ†¾0sõh)qþ08œ…—c*9NTŠy´]úÕE| Mªéaq˜¾…‡íåx¯žÌ)› .¿3ýά +ÇÕ•)þA7+o?œ†)eßëÎÚváefLÛ|ɲÍöí_j䉋£Ñ5X÷ËYˆ³ñ5ãê¾’Þ6åâþwßù•h¤·vz]Æ"à[Á¹z$„ô޵Ø#0_F¡y$Ýûîx‚v¬‡qëaÍùSª‚ª¥fñ‰+]øMµEK>NÖÞ Yk1€q©¾:—¼þâàôQ3|#ÿÓ—52¾“fP~E†C~¬’× SA>2…O„1—PføñãL,bX5ûaí‘h2¼§Ÿ°OüÔ¼C݃~¸PɿСNs}™f9DÓOøŒ>˜y6 ðÎÕÓ!COÓÑ"_pàÈ”A˜u'Ì¡Æ63Žæ¡ª¦ye63oÆàW|dhYÅåÝýDc6Þ¡6þOôxþNx4.Í\<§áˆŸõðû»g�DË Ý¼/dµ¬šÎ˜+>RØaËÜAñû†_C +Ñkååb9žm–Óôòßöæáâ÷áªy”Æá]†äé5•ó²Â·5^:¥ÖìÜføÞÅÜå�*°¤Ã‹ìÝ"Yèpb³û÷r3Ožk¹²@m\¸{& +‹1HÁ#bîiL”Pt‡›ï?t#[›Ø=sþÐVvXR(½ÅÙa`^€y¹û^p—žœú¥‘ïíg°õû/,*ï?ϪؕOª,8±åtKŽÂj7_ÐÚE’7‰Ô^Bd†»ic¶ÿ-†ß¿*ØÃ;ܹîïFBÕ—~5·S† •ô딞òË¢»åO·Œ1—Œi›Ãr.Ý;Í +É+ +mR¿E½ëÌÜöý¢„.NZ츙’P’”ÃÐ)LøÂÿ'FËÌð2Ö8@ÂÔàpeb¼Yކ»Òð?Óèõ%CVÜÕ{)tq'Ï*Äûèü—[5caãûýù†ôÑ|» ú"+d˜x<+ŲCt NP¤}еlà@ö*Jñz¯áZJ¯*ÌÝkn”Ô1ׇ÷Ž7¯ž_ë»áb2ܨÀ#Å‹³5_…>øðô3Mm¨¢ÃEù6Z`‘å5V}r²b,ÖÚþ$d.Ñúßÿÿªà›ÈËtÁáï§gbÙ/>¿Ç3˜z|Ãzº8]‰|Äĸšèþ…íôŸ‡1[ó‘ +Líz?}ø×r6ÿûýfÁ?èêÚ¿å„™Ùèób¹ÿÊâõ;=Àª+ ¼Ü+›Lÿ}ÿ¡ŒaP^üêÖ¡ájÆ;Eh!ê�‚û9a‘úersY +‹4s»‰‘}CJÁµ�›a‹ú·BŸ†PÛѤ²‹!Ô4ÙàÖl–7ß+uöQÀ¤nOGè2»óRÂN©ïðQèñ2©óM`ô\’ë‚âD›iµšªÛe^†Ü]OÚQžH Ûœ»©áнÓùûà'ÈÃãÕ\1±–”Eák¿•VM‰)˜.|»a(ÉêýÔÑ?åú>9Gv²uñÀdjH1Ã2û`õ)9ÀºÑ(•öTòÁpvhÚD’õϲ¡D…Ÿ1lÓÆ1³7ÿUâ»àw¶üþO ÒÝϲæ\iõÏ?ÿ`˜í#av‹Ã¬Oz)à+e*ÿœþŒŒoj>7èk#áï}ýÂS þè¹d|šcÚcž¡ç¾x«·¶Á‹…ùšùžÐ×0ó5IÂ1ôµÂn¼ŽCèë˜ùšÔ¨|°êQ݉@õç>Ù"èkCgÊYÜ '|¶£Bú—œiþLÁ'ç3z;“úÞ6<è+ÓP_ÚýâÚÂÁ<ͦ¦›5úÚD_]™èÚŠ>áOЗ$g£ ó•éKZFûþNϳ©Ï^äú•^Í2£®Ï>¦÷ 7UŠÙ©¤ÇUM4Ö[S6“´“Àkk/32†ÞΔ.î©>Ã2†™”ÎÄ0ß‘0`32] ÊdÚøÂ?ZÄË?ÿ˜WÆMœ¦Ÿ¾¿è†«ûJf0WÒ3û‹:ã¡3¡¿Ì£Ák~rƒgŸ¿²?òž7ÀƒñÙ1`~„·áç'覥؇Ÿç߇²úÊ�ž^Nõ3Ò’¬ÕcêýÙMä’Ý×—ÄË$fNf</jÕýµî;ÒÑy$c^vì¹ä;ý‘œ‡&Îøºûä‰Ò©Ö +Ȫ—×ý‰y¾Nü-¿öÙÇl¡BÓÅ1‚æCŽL¹D ¿#SÊ>Ó”q?þçÏü©ˆ9¢»ŸãÐâ)tˆëOv:“ÿï=êF¡0æõ3›dv=ÅO‡×ÿ÷F4E)‡Û|%3ÂûD±kø„‘üq$]ÁÚ¡fÎÎþRÉ_Ÿi$˜{hzèkO@¹´LÔ÷ØÌ‘ÌŸ¹±q!Xàˆ^»Þ©t²\ŽŠ‡”Ëþ3ØfðŒÿ0ý$ÿƒaé¶dv“°ØÓµSÏ•ÍÞÓc¶ç㇂vFÆ™q…ÜŒµöÐ7CÖºàÿÐmׯ#¾µ}Ð#’mÌŒéͽfp¦Ÿ1#éa&?L]s¤âÙ·„ðfý¾a¶L}‰Ù‹a7æ¨é“˜³Õoa®÷Ìæ¹l˜çë;‚áÕFlýSŒ2쌵oÒ˜Ïüø„ÑNCóƒ ˆ—),˜õæ±PëcáñF‹˜Û~,}ª`±Vä‹/–ÙÓXêÍ0À2æËV×q,oZ½c…ÊÊ€]ûVšØsÌaêfº€ÕF‰o¬^({±&Þibýë,ìu™•÷NÓõk¿ïØGÃçÄF—:6鬌Øç$ZÂfËá››ñ<öê®±eÅÃÖãöÛ9ɼ+÷zÃ*YÖ›“³Þ:ë4õŽT×»¶¦=^†õQþÓ™ô¾ŸÐ“>ðl±êáŻ>j>êã›îZŸš½ÔõÙ~Ñ«/ô +¿úÒ{¾¢¯LÊ^ýËom¡oîZ }‡zÞ¿zý Ž ô£? ü.úï&TðgXõô«j �Tv–&mÐ×7FƒÙ›lߣ¶ÁU§ó‚ê>3å0þ†[ÃãGøÓùy5¤ŸŸ*†|ÏJíyÄP}¯y ŸˆËÐ5Ø,†^p¥7Á 4L¿ê†²ø£3/©™akN|õ•اÑâL}ýÜ̈‡‹?FÖü3ßkc´¸ÂŒ©4a1æ©„ËXv´}Æç6bl»C9ã»§U5C†7ãg¹83Î?¶{ãj—s›°ð>¢3™Ìç’ɱ·¼›ˆçáÂDïÓã³9jJâŸuSnV›™ÊňÍT÷»ã¦®~×1õçkÓäç›6ý>ª¦ÕçøÏŒM†^³e>©™Ýæ¿•Ùëׇ͡*ñfŽ'¬:“9G·Šærg¾07ÌΈùµ–™‡ø·×ü5õ½™é¶Û¼wÙÚó¶í²¸¦žŽÅÛê¹-áZøÝ’,.½–B¥>±Tߣ1KûÛº²ô÷³²å“î:,¥ÂÀ²›Çc ÿ,Ñfu;V:H‡¬‘ŸÀΚɆ;Ö2hEkcQ7[ß߇cëäiU²þ&qÚºKõ6Kr:¶yRŽªÍ_*Em±þÖmËÓ[[Õ=ŸØ:O©¶íc‰mßÑP±>»)½vØÝæ7ƒî¥×öXÞ;·ç)ãÔ^3/‡öîrÚ·~‡ïöùwï;[Þ6ÛWÏA–G8¯9Òø§ãÙ™þu´Ëc¨ßš?å€Û±Ó¿øu&§u`H:ÉláÙùèZ¾93Ûì·³2ÞœÝ^•rŽ?¨Œóo4o»ô‹ÆÜå2E.È•p%ž×mWñ÷séjùÞ)×Ç{»ìš»_f®ý×+îv$ßÊnÚ<úuÇg+ â.¶¬mw«ôht‹Í¼û÷iñëÑ?Q×ËËȘ|žÔ>ß÷TB;ÊóÚ|ê{@}žuµ?ÂÖÄ#N5 s<æfñ§]Õ€·¾Òm|T£|øè¦‚µ¤3ijÍCDê¶Qâe¢¹ô“ĈH-‰E¾Ú"MëïIF,2ºÌü’ÅT¿Kvìî &¿Ÿ\—Ê–®/(Úkû R¾&Uõ'Ÿ¨^Ч~J_¯¾]Áu&¯g—rx#~³÷©ëÐ{;vãÎ;í·Þ-eÜúsûÎlûõ¾\*eò5=›oìúÂ}k§ÝOÛíÉ >òt6é©Ó—ú€ýZéu°köÛß½´?h›da=Ëõ‹+JÎý“ÍÒîßNÐÚR®´ùü*PL%½×hø9ð]Œÿ •8$§Åj0in‚µÌì1ø15Â|<:Cöïn-Êê1ÐY±\¨;BßHZg +‹¿Ë°7•ˆÓiË6ÜH÷JáIûÉÞ ñö#n5øã©ŸïÇêl\xÞmëÏ׈+ÖME¢ö‰-ò<œ#ƒ–±Y=ù¨¨3WÜD#éQ/ú\´¢ƒ×2Œ~tõ½2Ç\®Ô<}Þôb•U©féØf5Æ=•œ'žðS–xÝjÂâ“¿ù*õ{ó5|ûNd&ݯDû«ý™ø±gIËãü'¬íÿ’žIö“9Crµ;t¦”ûÙN¥d)šªïvO©ÏQ®•6vö“´¿ò¼M?UÜît¯=K¤WåzÆcŽ~g’»-Ó|Ç™oû_7kiÿl³aÏ,˜}žÎ›ÙQe·Ía![$çsú¹‚í¨äz¦q9·vØ6y<XLåÓÕÍ<ß™e¢ù?ûïWÁÙ(F ›í§Ð|§ +?Áܿɶ'ŸŸ¢Sƒã©Þ˜õžfi´h¼m‹‘×~«ø2A_~ïJÖÀ¦[ŠÈ¤ÎTª[öÒ¬õöS¶X«ýN¦Êæ7YþI†±g‡ÿköœ 3oÏmŸáùùïñ=]q—³áJº“•7ýÞYYgæ–*9ª…Øû¾:Øõw5¬÷¹¯²K}´št¦Ú§ƒ¶½X=Uü%Fýø_ZOìåï¹ùT÷LÍÍzÎó2ª÷+¶UÓ¿;Fì±Q Y+¯Ýç¨i·Íä[1Ô|ÇkÍM#<oùú¢UžEËOsæ§mKÖ½:S;ñõÙl¿Lúöæ3šéÐùÞO§â°†;_óò¸ëø0ú»é^sÔí½‘Wløýùš•b¯ ghùú—±•ÞˆÏýH}õß&ýQôÝcï)Ó÷ëûûhía=·Ygê…ŸC£^³V/õ–_ß;¤ ý +öúÙÿöÛ›w³™¬„0îÌ6oaÿ‘ZóþÛn<4FïÃX¼Õ¾Æ«õá¾PÂ/Õê¨5iUGûèexÞµt¦q}K¼—ÅÂpB;¿~&µ1¾™üµÞlSïî›V#¯Ééo*üòIå×ãÏJ»³ÿœÆ©/Ф +_•ºyð5ß.±U[„gUÏ_kö;ßl¾½ï¶ðwzû^<—Àúü¡«ãÂOýÝñ÷³ú*DæAóïdÞJ'üóíÏjøû˜©~»{bú§ïüEÿâõ¿¿>™}ZX¬AË"c!ÞcY:ýîÝò)Oµ—³QôqEâêZ|¬–ìIgZ>¢¾u»0Ôo0Ê=ÝÄݽÖf`÷ç¶6ÓgP°¹+ñWO;¼aé®nø˜¤]˜¢ùòlêrt]Ïᙎññù¿Èú¾Ž¨ïÃFÜã(»±ÙŽBŸHïc-DÔŽŸ˜a*ÖØ%ÓŸÁÜ<ox‰ÑaÍèñ)鈼Ð3ÌFå#˜ËcyëÑ?‚¥ýÄœ³oxôñ –ð>TÇœåNsáe÷DºV†¼KÙjÞ-¹-CãÒso¬ò¥’*�ãß+ƒT`N�œžâùÁ4¥3m@EŽÎÕóS¼ÜFùǶ;»|õ¶2›÷W<ýší6²‘DdLØþG…2Ö)—ýè•h¥î²5hŽI +•¶›MxÛ�"ÎîñÖÙnœZ¶ dw-²¿ûxb&Ê•Sµ›¾}„º{G4‡™™Ž3ã’ž»=Û@ÎX‡àkîÞDß7½ò{MžhÎß÷… +}·,ѾñVvÙQú»˜3É}Ĭ›-aÚÈï^=²ŸˆÂÊ~$»µ8Ë.¢¾™uhéfä‰zmïŽGòK¾§à€>44W¿%¹¾âÙd1®@”6[Dh·g?Ÿë'¢ÌBG²9ìÑL< ²Dsy²¡È^ò5Úø`ˆ‚,Ž2Â1mƒ$¿ï£%DÖ&Uk—zû%l@Ô»”ˆR OrD«‹ˆ¨Ï÷7Xˆž$™%;Øôf‹†Ñøög„,Ñ~ìãE‰h^g2RÖð»|_±ÞÖ0›¾È¥lѵñ¯$GÔþ EODa\„¢d½Æ+òD½Ý.ž âϲDõÙ/¿ñå¬ÈÕ™ðl¯—Uè+m0Íå”Ñ!žs~´ä‰æð„ejõw¢:“˜Á;ƒ3Æíº¬"Çž½Ž½™÷yV@ôõ/ù]"jÕ™¶úütI¿]$õ¯Äò[z{*¥ þù$ÛW"šÆËö^!ŠdLÔ×Â:ÿÙ<¿È‡-”"Ñâ´NárD‘æ÷¾¹ðúÀ¦—ëëV_ÌOŸß^mVY¢-ËâK‘h}Vû1DÁ’ôõ-‡·Š«Gy¢%ÊÔÌÆ#òDWOz9¢ “ÙÖ §ß)0ø‚·cÅ´<Ñr43è×z=Y¢½Ê¼ÀEë‹´¯?]ß$«@ô=€÷¶¿.y¢Ï?«¿J0@‰ˆ¢³óˆì àZ(2xcª;0¢Ý&žùþ{’%xvé±xÏzȆÖâI³øÑeMÛkihgˆ’–¨5/ìi ÿ°‡ˆ¨óD¨ ²PíÏú ô#1ÑíÒáˆîbQO±÷á›%šì¡"tn¶Í(T€¬[ª• +.¦¯@4µ“¨Â¼žf‰Æˆ¢K¤+ï3»ÒPÆPªÈET8²ÆÍf8Z ¢¸ˆèf“˜.òû„‰ˆn}?!n¥‰…jn{õËéGCÇÙÓá€6*ß4÷—!ŧÝñ×Rz:Ãó¦ýé©DóƒêM›Þ†10;R‡výLý¢§t€4¸§Ûy@2+éÅLß‘{Î*Åj!ô®ø4@Ú_>”ŸÎ†}Ë‘cÒç Òü:V|Zr,b¤òÓQå3|z*âm¨èÇ£¼ÂÛ¼9ÿØÜ²O?-ë èݦãû`œ~ú„cÍÑS}!÷œÕriÇ|£ø´my0å§ïéPäÀ1™ç¦¾ß¨øôgW]åŸÎ[d²vz*áØß<í+½ Mª…}ŠOŸHo´£Ì1Óx1ª—”Þ6cæÂ»]ñi&QMŸ>‘1=¡Ì±Fm!…§¾<ž‰Ø}Yâ§ŽFm㞦ÜâY™o|äì‰ÓsïÖë|z`)|byKqúçÃô‹ž®8w4;ð±ª'¹Ü>³ŸzŒÜ‘‡™Â\OÁ.x˜? ôÇ~ËbÎôK +ýi3þÛÑ{cuGoø’<h¾ž´Dª.NŸƒŸ#°Ç¢Ê/>ý1sy:¼á)ðc;{Pz3Ðû|<Ò3x¾##h'}f³ÿp»êv£×™NdOG(m@~Λ<Qo÷U‘(,"?„Èã÷•ñt‰¢%o¬DtÂ'êƒÌ#xNÖyD'f³áD”±þD){‘õìiîW@ÔÖe¼W>Yƒ#¤"QÆúW +þ XÿýQè‹ ¯=E¢ÀàW™(²þ‰êLÈþŸÉ÷õs«-Y‰26ʼn(šû²È¦hFu<g>qaK½Nþ´”ëïÿü¹¯P’6¬û™Nål9ߌ“;N[$¡Ïï N[J¦î‡õqç… ‰f÷N¹˜ëqÑŒGX>çéOte48gé$Öß®l«cV¦Šh0oüaZ æÞÒ ¸†D™:©&Ž|4câþ8ËKŽ�cmKht.²b‰¢O ö’žÙ4m:þyá[Ì\̬r,œFTrüî~<Ÿ˜4¹Y…ÌÈ ÝÛÜaívNózP5xŒ¸Aƒñ'ŸÉÄüAÙzIrš¢Fñ›4Ø[@tËNÒÃyq4Q8a9hËÞ>Y<Çtô‡k<ëÌËôÏ‚)öOg:õù£8‚‡ñ«ëÏŸáØ?;'cr=DÆkS…YÚÇoÉÈ'ëYhd–Je„=ù“U¬J§EÜÌ +».’¬“\ VdV²rïëË9/Ëw0n^9I¾™ódò5ø¤Îw2³„ªÇ&U=ýŒPõPŠªGwNt3ï… ŸÇ&hfU<ïúèîÕƒÚãÌ8Ù?<ïº.LQm+ÍJ&'Ûµ®þò®ñW1¦sT¬Õ(Ÿcu®hævd’vˆzÅ_Åx½šVÝfnô%j4TZË‹:$§a@vÀëðx{œ†|9ÿ°™¡q´Â09WÄÐhÉ3m`ãüW2W^¥gKGä 9<If‚:ò•Z+“«Šá;o—Ç.wìÖy§>ë`ê;{Õ±4Î&áDÞ¼M +‰X€f´fŠrà ã(úz +DKeúwÔ‚RÙ¨ÔŽMⵋéË.'Û²hn´UêdŸîš‰&’“ÇWvH‡d’;g…iU=óÀVgR\˜4ØŒ§Â`ͼí—%é’ñÍ!žä/·žäæþ$'ÔÓ2Ì*/O¯J“v±'ŵ²òµG‹IMR6èC§3iAðòU ‹s6¿`&UÃâ‚ñËUÿNU±’|Ceõ…†v¡»½µT&\P.m×a‡—«¬«îÄ\ÒI¾Uw3Ç›;rL¨Ñ.l×J‡ùðo$Žë.º½Ò:ì¿@{òrÎ ’A+»@“ÉÎ;£Çx¶ü¬ÜÅôw›•ÉÎÚx™£ÌîÇJF2¶LJ'Þ OürîtõfÎÇѶs'º=.ËgÃò†a^¤dçËùaŠnÕ]<QC8I–6åŒÐÔ‘myOÎL{^CXÙ¡°D}åQèúퟜݔ2:ží!{Û‘›Ð†O$ó™(5ÀÄTlYõ¡0A +êf‡ÎtI£W*�¡¶DS®·3©/ËZ@á¤�´úûÊý³h`¹NÓ¶Âùx†Ø’?Åú~ +hS¯}¡JïˆLo›;iÁY8YÇGÁ'ÙŸQZå“Û±Rc–ö)®èö0^0ëÂ).`ÖqŠ3oPÆàÜ#œàO¨/Â).ëuŸ.ÔêµEHÔb O⬸5j!YQ„äïIhÁ+8ÅçC²Ð5ÞDâFÿâ0É:—PÖÞ8zIâ¦<í…Ëòá ƒ5Étˆ9©"-íc%ZSâ>:“Z”îï mîvoŠû ¶œõ‰TB¼q‡Ö$É<½)ˆ4¬¦t|/6¥A”ƒ‰œNÖ`L#.Ŧô%¼cí1¦=&õöh/P±¦ß"’ž/vÑBXYÂ×Í—Pͦ޵ór^<-~ÇõåŠhôª(^÷”:¤3©H:ÈŽpÑ»FÄš&Ÿî̘kcÌàL^'Zê”lYàŽh¡;·ñmY¶/¼¥mVYøç7P¯à7- 8ëx’œ‚ö¸/‹yKûÜ©ËvÂ]QÍ[P™R¼U.ÚÊzJñVTÙ“OÞ_‚I£3ݼIÁŒšú’§Ó\Б¼¬5Üž8[Ï3åèMžj9èäKê¹|Ý;úû2• v/[D…ûƒÆºpZ…gŠ9¦z—†søTg:? 5,7¨2Ò}ñŸ‚ÎrÚ5±’g~†Ö‚UL¬Ñ¶s›D£mçâ < M6B’ÆÄ×·j´æI£¼×K,xqeç5šNãªìzvœ•¹Öò FMN£]<÷¡žË5š$vÁÖs»FCµÜ¾÷ÊÔ£²äLZ»8IÎ,B¥šÍß:”·Q¼ÎáyKðy$±qôÛ°‡õåÓ²VVC-³ÌóÊNn2³øËÔ,TÖÂ.R²:“¢š½òôƒp2·_Zà‰_c À¨‰5)i˜óõh3íkaâ0PÏíG ˜ZjÑÎûùz„›îÃË2» Le÷ˆU³k!ôϬáj¿ºn±ïyB:Ô¿loöø:mÑ,^ìBq5l_dß«Ç`Qe·Û÷ïk¹µðÒUÚå!-é*†ê¹Å¾çÕr\¯_Řzdì{¹ZŽÞ«B=ZWCõµÑ0ïë›WCÁZ8ï3Tà×»GBúGö·V +OŽa(ÚƒÊðYéÔ°ûÖéÜ«Åù¡²[g7¯]2s[ý¬µ +Ç4™»‡‘DT”<"K·¦y®²{š~¶<*‘+ ÇéDMR”ælÏÙé%^˜Rn—dYJ¹=šüJ ™ìLç)Ÿ\Sð÷¡e¤6Vj˜\£íýNÛBeŠ{7ÇhÖõPeK÷ˆ�Çü—™ +gÑHÜšb°le +“½«zø–•Ý!~¯©Q%B2¹¸™º§õ,ê+/d=n´Üös-jtas%¨>ÂÍeätìÍ-·cèø«˜A'B]¡SGÐ1:ù:E¢‚N-x!†NAÇGÞ‚¡SGÐ ¬¾0tê:Zð:‚N-x†NAÇ ï€¡S/Ça«oÆÐI&®�Awô,nÄЩ#è{ì<†Np YaVµdå¬må3ðÊH Ña M’ô¦ÏܶkÃKeE>òÕ‡aÓbëW&8 5Òû–®ö— o/->°q5ŸÂv¸ +±¢Ç5Þª6ý™¶ÎQ„{|j•©ŸÃÒÖ?&Öw9§¹¢È•t¾hgºçò&) ÏD®Ôš$™C}¹4§I×dDGANg{.Pí.: +ž“=ryØX)hÌÜvs¼ªë2¨wM§ì&< yi`‘dó[#Æ,ØMiÛFè%»)û§ê<m™Q="pMϹ!šA€ÖV™ð!ݱ‘ësÈGm:k˜½Èéef¥’Û;¢”P^1e°oe¨Ãó¾=0Kn/ûhICgç‡óÀJ&w›²‡f¯Ø±Ê)š]Š(0ž¥$Æ5»4ãøöçÎÀ_€ãÿA+ehš2FÝ”–ž·Df¥FÅå šÊãwö¼æS“œ0‚);~Zq|Í9LŒš0O§£Êî†Ýœv>”)—Tv^âµsL`½‘cga¢Ú;yÒhWqLø%“®KxÐ)/:X/ƒäÒfËJb¾R7ë8Õ_äã–êx9Q +ÌõÂY¦Š²O ?ª³;¯ÁÙ;z|gœ½¯¼fgO©ñÅ+ª8w5 +ŒóñV mP¹«Fh€Ÿ__&ü´@·óAjH¡Òœ8‰Ø«aätg`ζ<™©_y¢“¸W*vdh+9ÊoMï4°œ·3¢$É?…ËÂ;2®k)ÈI´Ž2"j'»š_a´ÎøÓ|W´Ç~ +—…w”avâDWóiv&Ò ¹Ê"paDFÐ$E^þPi’p2Ÿ_ÅTøäÕÚ$õÓéçAqjMßÝáÅYHÒ="2OLDæÆSj` 5Dd¸=¾3ðcÈm¾%"Ãó÷ŸnÈ@V•ÓÀЮ‰ÈHЂ·GdM‘QB¤žÃçy/ŠÈÈÆùŸ4Às´sD&ÜyIÖv|¥êÀ…Ærñd,+Ÿ×b,S±¦Ã AÔ1‰«â}N2 q Õ,÷ ê@×BÖ3gzµÀЮ<ÀÎ__€L9ºt|LrtA-xWwñ¡Yé UW§ñ¼ž*®ŽUA +Ÿ‚U/©âÍ^žm©zT¯*½‹ý¦q¡;`Þ•&݇¨ÜãL:îòûÇ®ÁÃÉ‚®þÝwÎâ<œÚ ÕûááPÔúƨ's#¨"ˆëz<œà4Ôá˽ñpâ{GYDܽñpgo ¸N°c¥á¨åux8±/¦´ƒl·#ëÑw·3‘P•ðL¤’m©åLdk©éLä¹¹¿S·š)æ€Äíht¦ç¹Ñ×X‰b-¬=ÆÔs$—ä$ƒÊøó ë”bÒóμ\6 +'ž-k»äije}f D“P1ÚÓiÝ2 Oà#^TáÖi•©^+#§Ç§aw¥uªXãˆß—ù‹²‚vŸÛ€™z.›> +xd¨ç.@È´GÛ*v¶å+nÓR:f-½øìmh¨´è¶F›SÃBà3õ‹Î:ÔGD*¡¿ö€¯ÏJ_…Hê@¤©CýHKÈàÔï.ˆÔ÷õ}©¨ž{ R^ìvD*ªåˆTT¶k E.±Ü¹>f‚(_šzñ!#›‹}á4ìÜ< EP8y=vo(sž_õDÏ= p²ãrw(ÜõqK!ÇÔ}÷üÊ pü;ˆ0Ü +'Uø/@áäãcý³®šaÈWüû“Õ€O3ųªZn„Úc)÷·HëA/T•OSDQC�U¦|³Ý…6Œä’áK7xhô®Æ-µÛyA•Ë-y'*çÁÍb\Ý»âu8âÅá•YNóesÊÑãÆ€IqÌr¿á m˜ì3Ù 1ÞÏ6¢ÕLܳ³€æÏ6bþ.“6<ýšÙÄyºñ”JºÇ©TÒSDIê«Ãrdú6™‹8 ±Xr¨3ä%q¥7eÜY ªòÅKv+e~ð™GÔ7³›±¥ÂÎÛí¨Ý&E¢x¶‘TCØ™*ßå¡Ñ¢9WGTŒÅ +9¶¼(œìæíÌJÇÌ„"˜Þªv#Ü"¢Â||á?%„m0¬éý»ØíM uö§Ž°[6ŠDÍ¥él¢Dtªž¯ÖQ&šy~Ë)²×¸ Â%¢5!ÂŽU˜°\¯™Oœœ‡4–Ë•c£ +‚’Þ÷’¦½¶*[Ž[:K´Œ!ú|ð’¢Ùý¯xAU‹k8r+´`¶/‚=¢ªyyhÏùªâ¨‰r«µ†&ñöÅTuîpê¹s¬÷zÏLrriGdîTÑ]RË$wQî-ùˆä4$s'äçúÎ%‘S=×§]žÎ$‘SìŸ\Þ·sÉF´öï|®ÍL?—gDt—Ú ùã´Ï—ÜT9‘âqW èÔ#½× 鮋Ã\Ц“ó¹8Óx?Ìh:¹˜ x¾Üަ“ÃÒ]‹|TFÓÉÅâåOÚß‚¦°…›³²÷Ý„¦“«êÌ !W é®\‘/DÓÉíÓ×Ê»¡éä°t|ÿ>h:9,Ƴ= éäbí‡ì÷CÓÉ.é½+šNθ៽šNK§pÛü h:i“feKéZ4œqª3ÝM'7~2§¡nDÓ‰«:›Sø*4’my_4vŽÝ‚¦U%Þ¿šî*Ž]Œ¦SÅXÝ M'¾7šN® rg4Ün‰èüÐtrêAè½ÞMwfgäNhºóëË=ÐtrÌ8Yã÷BÓCrÝM'‡¥SÌÇw»è:9€‚üb]ݤœÅKš¤Rœ›C#ði}f²˜ï]*å²¹>_¤I;´Ësï|uÊÖ…6>í–‹øtâ’à$$Âdž5,4Š€� €zVj”¨IZU†ìr©«š„8º(í²Z“äR(j>©¤]VP™hzD1âi+òˆ(cpu&±¹zdî˜-K-ÑÝÍiîx÷\i4ɯIs§˜]®¨ «¤1Í’KNÓ õóɧDw·U®»Ò’eF5J¥)ÍÝÙˆ"bÌÍiî8F=ÑÝÍiîXìÛ™DwÚ6VÅ;ÜsEÅš„ú jÇYïvDiU<™ÜWcy k›VùTÜåA êΞ=<'ŸF‡œgÕ¼& –ͺóCåCšñ…@EåØá‡ÈwCBIÖ–a(,b<º4U±ÏrwC)í÷äªW»§¡@¨Îœ×| +ª:{~Lói(¨LÛ‰nõƒÍŒî»òñö”QPå:pnô5Ö£)·«\-¼“]õ{Ì@¦ ’])|ËÎT¦ X«”B¬/¤ÀÚúâ~·¢Êî’Ș‘1heÆ_»YÙcåÙ|¯jg¨íÒ-]„Ä“ž VõÄ•ÎPO·ó» SŽ7_nIH«*íï•ÁT•·ˆ5ÏýæE‰ª•vßPâµ›Í ¶µSÔs‡[ØznÍVÍÖr˜„r7^vVµ©ÈpѯÍ!3 [€š"ð7g¸;à+•rÜ]1 eW\›·ú²wjÈǦáAиwwÉ”wO¤-SÞx¢c¦¼Û§¡J†;!.I>äšwjù^QŽ»Ë3Üi½Õ¡ŸnÖ¾¯OfŽ’÷ªX•7stZ67ÝuÀZ1òÑwküá˲pèËî¹bê¹BoJîˆ@õÜÏYƵùbgëQÆÂŠ@Lºs×L0éò.Á·Ë˜ø»¢HA8%Ó0d=3âZ‡¼oaLZ@L–H_ì‰òV1-0&a'ÏÄNOUÇEƲjB¨«ºíÇY²j™•Z@L–ÈBl|_ëWv.1) B¹UVÚËÇá½áV~‘a(sYb§Ë怸Æ5åV¾Uù/—f¤»(Ý#ÃJe{¬{¿«©ºÌîÛ0®]Å«©.·aFÛ‹Ò=žÉ”ç¹ãÊ›ŸÇcPÏç1®Ð$ͨg5Œ+BQòËÓ;˜~ñ–4Òs"•ô<µÓ†éS]gJÇõFdùá áS®Ê û²÷ì„´DõiváaB»¼Ø1÷I�Â{޽ð‰ +ðp:ÓÖÐêVù¡*a¶Pê«€‡³)ƒð6û!ÔÉ"nWÂþÑ£ÿÅÖSá½+…¾è³+J±¯xÎðÚT$j)ŒÜ_JyØl'¢G$׉ÁUÉ#*„¦m-~ó) %B9Ú¬±·_9¢:b°8çœ�†7cÿøì->VˆÒ“÷9ýqŠÁŠq¢9#L4W3¼Êeò¾òh¥˜è‹ZÁbK™h&ÓÌ +NvY#zî<~â@˜{{Ä#}…rT +W,ÇÇWâöPBCŽÐr—9-“Ðç®Wlt7k¸hpñL©Ä‰Æc“ÀTŸÙ d1;pRÃÚuGÄÀ¦³eH’ôh•b“$+7*¥ÚtØ´½Wf& {&3‹ÖHRZýh•âÐI2³�ú%GÐÔPw¢›'o@¥9¡ÉrI§MžD›^—öïµF¸»‹³,*4IrJK<_43ý¢SZ:“Z£”ãÄ—5 ´¥ò9-®=’³±"u•yÚ…›×iΔë\ ¨» áêë31Ø~æ^—7v]˜¶5 ‘TÃËZwyú™[n¢=a%WÆ]v“ß²¾è^ë~æÊȲðM„¼õZ¹»âñbç¼é]q*||LxhDf‹u˜½(ß²†ÉÞÍGfÅæÚ]op§4™«óéë-Çùχì˜||ŠQïZr€`Ø\n(ä~²D:Ê›ƒ—É$ù,nH˦Ždºc¼èž^“Dø—IN-v|Ö4‰wTŸÛæÍÚ¡€s£('ÿž+(๔ÆgÆï´ó>ÉêhQ^cÙ,3Tv.‹ŽEŒ®U©L´ªÜƱ³Xíî\Þȱ³ùt.âXÉû®P™.,gr»¨¨ù%€˜& Êét (@@i<ù V ÿ†ÃËQ€Z1€LÔúj @TT<Lñ9ØËP€Z1€ˆc×£�OüT×BŒÕ¥(@À£| +P¡I ¿’m´W·'åÓž‘í–¤|¼¾ü“òI¢ +ÿ•¤|ç2²Ý')‹Q7PnOʧ3ÉX…wOÊ'ÍüßHʧœùžIù4导%)?ª€E+6ŠcÑ9h°rV¿Ûï†zºÇÝPóúiºêæ¼~¼®Ýán(¥¼~—Sº6¯ŸzV¿«î†’Éë§’÷Ä/Ïë'/|ªwC]‘×ï¼$ß#¯ŸúÉcäêÆ¼~ç\w +èªfõÓ™. +è*æõSïš(vqu^?AC$Yý®È�"›×O½Cr'T¯Éë'GT»Õ\;c4#ee"¯ŸúÍ_Ç=ñóú©.t)f»C^?õ°ðE7P©äõSwueOA_‘×O&yšz·åã»æý¢¼~êµ 8ÿ=òú©o¨è4×sð]ŒH½6¯ŸŒ©ÉËêÇÏ΀ß×O4 qaV?Á]ÃSðc^¿³¸×»äõSÏêw”äóú©¸æ!RoÊëwÂoÉɢ螫«óú©3±`ï×Oe®mçÔòñÙÕkÑœïL:9ÍùønÊëw¬Evú\ŠæäõSÁ=œ=m;½4¯Ÿº%n<¸G^?¥5¼%ÝI¼¿¥Áœ?ì$ž›†çòú©ï7O\Ÿ×OÈm±·xm>¾Ëi(çã»Ãô9fõ»=ŸÓ¹Û¤g5.KÅ'F¤Þ–×OØ–dõcC·çõ;B¥ÔòŠÞœ×OÝÌQ±‹óú©gõ»ùÖ&.¯ß±>yý4à^ï×O=«ßÅùø®Bኴ¥4¯ßõ`x^V?•›òúICÉü¬~J·œ]š×Oýx—h»:¯ŸúA'QLéê¼~2ãÂËê§~/œö¼~×Ç-…»ó¤àWÞ×露ä²ú]}zP”×OU"x@nËë§n²ÞëíyýԱ܊|s^?a'ÅYý$ö˜æ›¬„yý” Ö†9s“•Ƽ~šl˜›óúñGRº£‚®U˜ŸòyýÔUçÝ�±ìºï‘Y^Õl´JSþćø^©{£¢h„_•C»êïE°E4dì´{¬ø8x66Å‘² +VH÷òÄÜS™ÒG~><ÑÒaßÈíƒeå s¼=qOgîg!<f,GnܺÀ<ã·•—ÚÌž²Ñß^°Ö´[]6KrÄó_Ï ÃzŸ¤±÷á„‚Oq“/Λ˕õ‹o=ï¾éL~ŸÛ;”³wѽÁ|¥œ÷#ù2oÆ&õ2Ýž5¦Ï¾uË:ý4¶6oúGßx)ÎC¿å4f]¬þµi_ÐÏXû9f1RÖmú|+lû™áÍ»|Ÿ†¸¹Ï`;£ÍF½…¹ý8F~[ŽGÊdzÉbÏ~ŽŸðm~Ùl>‚ÖÍ6Ð.l }z´õÞªG¤eÃñ¸ÚnªÔ`o?žÍö}‰’Í ,¶ZªCøÒðkiLŒk+äPS@¢|’ûÂdOÄKOrÌb˜ÝݙѸPFL±¯¢Ñ:´L«†Ök#j\l<Y3éýÚ~'Ø!IŸàPlï\yŸÑyµò‚Á$b‰l£aÂÓ ãïW—B“}%š>еjŠš;Å[y]µ&LJ(mªƒ¶Ì/“TïÉw}«j"OÍjñÏÆ*œi'ËOñÏfãy^3´-‰<=®8‚tð5ýšv˜”›©^áãjlØDšVÂ1÷#Pc·—° Ó—ò"ñ·,mÅv{àÈ´:yô º^ýu#ø®“uð£¾î†ñ¡pÏΊÎ%v¬NöøÜ–Ã'ÂÊD‘7þ|õÛü/sn¼°‚"NæXÏÞ6ð5å>¼˜õd3d9�ÕæqGÚiÚgùBpZf™ñ|Ä=Q¿íØÌaOáÔ÷ÐCÀƒˆƒy 3±†ÆTäð(å:½C&_›±ÃƒÂ‘^‘OÏe,ÌÆÀƒg(åœÈ•ôÃãoH'ŸŠçúîññ‘‹ÿ`ÂÑoÎRò=ãoôGäé’}%ÙºG}ӱ-2Zlîšë(@FÒµ¢ƒW57[hL§HôGÇÄ6Ä8_a¾rÕŽ_ßn¬ºY‡§\ŸSð´ádž’6:49~ÃÍRÁmÆ�NþÖMgÐÒ·Œ|ÏÿÃÊmб ‰$qÁ¨Ï#ªOws8¯FÂcØ>:šá mzŸþÞÄŠæÊga{cœ°tßÈãÀPÆÇÇìÀöV$mûÉüÀï¶ó4`d:A2Ýv³,J¿´¤Éô¸âã>ý6Iö¼%|Þ¿õS…ÌØ†îùåCUøØ*¯qTã«!7–äà·„³ïö/\ݶÎQÚ^ÉSkPÖŒðäçøÈ{œ•#^_>ÚX +9at`á%ùëþ²'ªãÏRºXÀê'•rÜÖIÃf&ñ Â’”i_˜ˆö<L7(3Ùô2¥Ìá7÷)=ü>–£¸r¿„¸5•T£z,ý«'^ï–ÌÈo£eû‘9ÙÆÍýÝŠfç¢Ðˆn›ô¨Ö”nü¤Cå4hz?ç š´ýnÐt>™!i ÊOEÌÚü† âÌŵ¶Ã¯.¹uæv|“þ÷ÌõnÏ·¾j¦ŒÁ¿Ž[Ý[NHAo2‡Ã™,|õÚè3ƒKŠ£BÖ“(RŠÎ£¼Ã;-¤\ònÆÖCÇqÜLt©#}È{âLyü$:~Ô´ ˆ]N|ñqÚ¢Õ&ΔitüÍÉýÖ$tAJü|êcž˜ôk Ç}£"›i¢Hð5cr«¯ +Ò‚@ »dÔõ÷g{åRNö7vÕÈØ"ˆY?É_ý"Kä]YUÀÖ2ÆÔ½ =W³‹¬By›oGúÄ!–ÓÊ}\×¹Ý7F¼‘zf‚OL‹ôf›ù& “ÿú±Ø>Zy2ÕyO6(óJn\>TðaZãŒÉ3ª®Át +ìY‹ÒüJ>ñÌjæ7,ÒEôe‡¬Ñ¦àÖ‰ÒÝYPåWà[f^ó+Ux;UQfñeõ·”gÒö—ô#ÃØ +‚ö…#9·q¿ ×vî·¹Þs{äcÄ•]‘'Î/çl¯™û7NÉ´ãmûÄÞ‘…n3›¤÷O”Ù1w´è& +Îöt„›Ï¨¡zô +¼ŽÃz—¶ôdXƒo“ì¾l=0GÆ—w>oî”ÁútBÕ½<pl!¢ËJïöÍŒø„. Ná{D°X§‚|âÌÜg˜àõœ˜€Ú3çå•b®p`™ÞÖ6ø;Ÿû·Ê‘¢kPœÜŽ•:¨xÍjå˜0ŒU¤‡Õ8¢H,`òV+0ÍlÁHÒV<2!ßsëšä€=£ÇÞƒQþÊœc¹'øLWÊJr`a¯™`ÛM~ÕŽ\ìÉUÀʘ¤ +ú-”ÆKdÑìÍ9Nm8æ¬Wh…\|a8Û ¦q>qvº¥°Í=œB9Œã#k +4.i^TÁÊ ~ZYi=±R$R¬$sUÄBóÅ¡ +»ˆ•Ö'TÚ ÀJöÜ…õ$Úx>]/ YIÙØ›•ØËtÉãÀw{¢Á9•»ZÆøZ÷ZƒEÁ}Qb;²åjãsâJãsâÕkåÏx€dLP…DLyÓõRVr2vëhØÔùÀYêU\¤å*`ÖJÙ¯u4l§ÑP\D /ª¸\ÿŠ+@ÃyàØuÝ8 §úZˆF_¡JŠKs4Ș%ý^㪠·}aö‹æ'»"wÄUåòÊ6ˆÖ!ž¶ÔÊ ;_*¯Ó–v r©ºÙå¤RÆNV‘K;™ìÞ×Þ.ôtúJC©"»Y3ý™zXõ¨aûä®§à+æ +¸^1ÇØÇœ›“‰4 žÉÁ¥Ì»AúÍó÷™3Ó]<ÀX‡ÇhN_àñ ïl4Äéú^÷€q]‡¸åû}=†âò–ã'p²û_´1ƒ®É³þ.:àd:„ìd懔ÛÍ5”{ÑsrÇ©Xk•<¸½^ë1¬hã‡1ƒ»c˜¯èà?(9Æ:Óñ?„èìûÁ˜â‰^2†¿zâÄ.È›‹ØO¿â¤h\À¯æ=âÅI‘‡ 3Ƽóî`}íÞög^4#T¬‰Á×jüT÷€[T³·‘ØO“œŒvoh@ É• ªxP=N °6Â×&Á¼Ã†D<Õ7ê£t8¢†Gzê�nðN»¥S÷ãDå¸L¿ºÒžá£9ôµ°4³ïÈÏC»X5þ–¼ÜI²„f.R¢Ju¦›«=܃ÉTk{ +Ô‚\6n™6Ò…IãüJèa‡8ˆMƒ$m¿Ã! 9ô™0*» 7t£Š‹ Òs~ú¨éá¿£NŒJ|z#'T=£> ÀõŒ†ÔáÓÄËTÁ òü…©ÑÅl Ã×Î!P7ßú'¹‘–X)z”±ù„â=êcÔ€‹V–×&®/ó?šq$©d€ +„§}ÛgjFg+É߀!ÀÁ0Síг:þ9žè>œ<À=»ŽûHt̉ͮ9"n…OCâðir +Ae¼@ÿv?^Ik|»h»-ö·\úrö£l +²!Ró`ëÇŸréíÑܬìàÆoîµh‰âÉ×E +µÆ Ù=ñk#…Zã„èæ–ë#…Zã„@å†H¡bœð¢º�á%˜?ž—ýïtSÙ|}/œº°Î“(Ds1Yf7ÓicúÿíÒËñþoºØ=„<‰zªPøÒÓñr2}`ƒ+þ£ÆpqMåäš¿Ñ-ˆ92ódú3˜›ç /‘aúïFyÓµ]V5æœýäÁÈ‚%Õ„9“7ÌIfë˜5¿u¢¯]6 Ã.©²ÛŒ6²ÒÓMrŸq”KmÑŽ‰ ~4r)ÓNN_âží×£'Ÿx-¦_³zܳ×̪Ìír +ÎðöÂe¶ÎÁ.Ø™1Ûã³sy,-´…ž†¾Óæ´Åãè×'ÌQÓ?£þ=£1Ì• &˜³ÜÉcöµaƒÂ¾Š0“nª6³ƒÁA«KF¹êØ]eÂùõe¶8=‰&³«q˜tæ+:èhå>ýLóÀÆY–5J,“wp_CV§Ê»¸I€îáªøl†v‡\ÀO;‘|ý}v[SnSSgRÜÖ<=¸ÒP8™ løV³¡À|Õj(œÌæ°ÞÉP8è:“’¡`QYÑÏÚ¢úX÷ZsÌ9ã€3~ïhÈèí}Í9ã�úrgó@Î8àÍ—;™rÆÎ¤l¨Ÿ9l¹„”NýÛ{Y}´�t0g«Ÿ¥Øî`¶çW+§7÷¡*R©àjÙb ÌöýÅ\‹Ú;Ò¥A´.Å;`‘.«ê`Ò$˜0™ýg•É®]‡C ^ëéÈñ܆…±¶tpÚ²jþãkKn ·–8Öc†iË”ÛÉx«doÿXð|wvnÖàøv†ÌÆè±Ì“<¯ç¢hôу&PñoNªõp0„"½ÊØ RQ˘¸Øœµî~²]øî^.dC²QfN¢1@�»³OäšÖÀÑzá¡Ü—qì™=b�[Ü“~z\âPOg•'Ocçš$3ðÇÁÃú·žN®‚2?¾¬{-†mψ²‡Õ2}ßq°& +y²ž¼‹¿‘8%;‘;ëöXEUºiϹ½ùÄßa¿sin©±[¦®2oËÔìR‚-SÚ€™’Æ´ÊžkÒë€Èvr³Ç˦“Ü´IgLuÏw´™aŒ$hQFοµÖ‡ßºÏweá8º`DN`æs»`løVvLe+QaìV`„TØ e¬gnLgíƒÂU×í‚Ùä6Q èì~è ÄêÈ„>ŸLÔ‰cÁ+ŸÐ!ôX)î‡jÙ =†ÃåXp¬ªEË\G&pD¹3€Ìh`Adǹ~K8ªî4ì†re÷ÅY¸ñ ë,P*€Ñ×(’*˜ToÚÚÀ;•VÁ¤©º¥Ì±þÔb8vq7š!ÏE{ÓÒYéîì·È4r¤¢ +8Žiåò»]çº1||>U@½ý>t†p®R¸l74²§$˜ +¶ú\>é8&øÐ™ìojÍ+ î¾+™ý!2©@89,7Ê(ÖÛd¬äuŸ*P”1Õ*úqüV³Ì¬·É¾°)Șæ*JçYáWÀtB(c}¿û–Ñ�>â‘«�dLk¹’þüt•¯€x#ƒO³î“oCß-ÏJÍÇ‚yvÆ«µ¨äV¡ÛFYµê¬dÖµnä]ÙËæ†¤ t …¢o™ùØy¦ ›¨‡àÈyïÎÝ|äU1ê›n[F_ÇaEVm…JV„²P‰ÚÀÍ}q+ÆF¿ë&‰»"î+yÚòÌJį‚NÉNqÅ6Hµå8Vˆñ¿æ+qþ×Z3Á:öì‹S +3¦6ö¦cŽA'½æJ©Þja#¾ø)ðô>äd˸l útl1šk3ε•ŠÎôCœÇW™.¸Hgî"ù‰“ñ¹[½íŒqRY÷‘Š5õ¬7}ˆ.,̵Ìî�óõ´;ÀyÝL<ÚÊ~ím§,ƒñn¸8Z˜¾Žn/¿¡¢€?ï0æÏ{Ð$Ž{¼E·`Ûtö'Ϲ¾¡}Áê1Eü2mÏá/çÑ,Dã&ü…ã<úâtìôjü…ô…Ît3þBúA4nÄ_h@_p›ö·à/4 /DãFü…ôŠ(Þˆ¿Ð€¾€YyÄ_ wÕÇ?«mö˜YÅM¤ò‚{±2µ³\´Dêv'–Ýÿ2z +…%pNOµ3ÃC¬Œwæ…• ‚ÏÊœ³8»ði×›ƒÁ‰ÃŠ.Ê€Åê´ÃM€\ÑÆ]ëæËzD—X±÷¾~ã½ùÃ=sPiyX˜¬ÖÐa$ÄtÃÊ×ÉѸ“ ²Ê3Zðð` n¾²W‰‹æ‰÷Z@¸Íʈý°OzM)v™�=æbU«ïV!£».ì8eVf›åT÷i¯å€EÜþOTÖ™Ðnå ³˜ðw*u&üRŸîö+TÀ7HN¿¾¥á¦ñÀþ‡Ãè¯?ø@Òçƒ/>ôki¤³¦†¿ëýô°=”:ü!‘Ñ™žÄf—þï¾—‹áæ?!ôS§\jÒ¡î¼~°B£ð‡g6´K:€†P=ðçßÐ†Ä +>Ut¸Ûï¥H’ hÊï ÒAhƒ›öˆ€?Hù(I‘4ú…â$Iûü?AzÑ/‚òá^’â>áG¿å'}Þ NiÜÿ÷$TôèÎP‡sœ€fý¾<Á‡øéßþP~xëáÔäŸtûiÚ‹û¨@Ðë§È—w“Šø¡•î%þä +ù ?Á€/@â4îõè�¼$}d à÷úI? ºƒÌ?è%Aä-E\d¬óùݤ—òO‚ +ÈòoLq¯€”¤åu ¿ I_�†HIZCání§ ß‹è L¯$EÆ:)w$…¤<–´FÃXuŸHW:ÂK¹4M�7hÚGúxeýˆM´ÆUZˆò¹ý>ø ¼>˜C^pm}>¯ŸÆ÷E7”&R¸B>>ÂM kI†Ñú@ò /áHéê°¦À +§™BtÀGQ¸õ§€TÐí§ÜïÊ~¯—Ç$? ½Æ”7 n°¸È˜éå¥(úÀ¹z(I=,³)ÚÀ© í—)"a ’bEF(@EÄ@qkŽðâx€òÉôJRõJÌi=CÐ0%0„^Ê+3VP„À(t�æ*ÉCûh˜{4pÇÊÉ÷ #]^w�z½40~Ê‘òïSG ¿hšþ@ÏüÞS1ÚGV$‘˜JÊP44´N@o}HLIÒ ì…¦ÃTõƒP„rû|_ÄÔšºNúĵnÔàNS^/Ów’rÓP1H/HE3…poµMA1d‡„ @L'ü$̃“xyѤ„Éú Ó`qP¢Byq/Lp–”¤BR'¦>ŠÂXP2EÄüC”$e8)õ¡ DGÒ˜ƒt¡yLe:%)¤$Ì‘©GÌb(âƒÁƒÖ^¨9 3THAŸàÐ:)‚f†J<äHnqFsÁJ@#i—6™BCD+/” åŠHø÷©Òn/MS¨ÍD€ôò„™†"†ÆŸL!Êï†u- upñô»½0ÛA±z}°jû…냹ˌ9L8ú!@êUPj3jôÝï#½Ðw¨‡ @»@/ ¦È2Œ(ô<�\ÂýA¯Ûëó``Àƒ’å‰ð‚‚÷= IƒÅEƺ€ÏÁ�MOÁ«& æ ¥¸Í,™ö!i!VJAƒ.¢@aHÚr. +ÇaÈtIRd¬“²FZ„Á 04ქŠÄƒ~™ò‚V‚5Ï==°%pP”hy�É'¼> +ÉȉÌG˜E4H*È\)ÿ>æçËÿmó3¡ƒV‚Ðð� ¤Ÿ¯ü¡PfRëÒB;.l&)X„ý7¬™ÐXÖhv‚%šEôüª‡†éïEv<;üÆÓYÒ"â¶¢ÊÅ…ŽÖY–/šDBÿhv`Røü2-—R’>Kë‘pNÚšó#0ÖmY[ñÿ ÅEÜúzÖ:Àk1(ç I"S@®ÔÁò€ù ‘m kZ V¬ü°ªñ"óO°ÂDõ!X^°`R:T +f;šv à/Ï¢¢‚ l„š¼nÄO4ÌWoé©�¢FIZ-.3†¾Árœƒ*§‚”\M„´¦ƒÅ *™;²eÄœDÔ$¥Ž60|d?J[t”EXËaÌåº&.´¤<’Ö#aõÑA�«Àçõ‘rƒvô4@an0ƒ&þ£ËFžŸF’HÑÑñÙë—+#ÃÅOùøÕE¹ÁL1³=xê»Í÷âëÁšL&ÆãýßËr7Dey²É:Žƒ1Cyy¤Œ + i}™Bœ1ã ¢õ$†Â¹„%2ÀáL"|胟€¹'¬Åw²@'À"ëEöZ[ÐZG Eêh£a „¾{–ÏKý`kÀ¨úPð>pæMÒ~Ö$i‹%E@Ý¡„9++Ð"dÊÂzxNVÐï§—¦äŠˆ”$…V¨íù iÌALiX½ý dú$)2ÖIy#)$åðÁÑ@“Â>±ÜP<–@�ì/ò«¥C~p|(Ð v ¹&sî¨mR0¤4à½dº‘óÚ°†P|R4Í|È”–)ÄØD(D#ï{ °®€²ö‚F�C”>ZVŒà(ôG£PP k ÁŒ€µŽ¢‘ÃÕP € *9샡N%8A<x40~4"ÈD«ÕIDÁ†ðû H¢öJŠ€TÀ +ÑäõCÉòJêáD<|`°–\™"bþuÒB¬¨{AøÐºK>H[s”Q0{ipŠez%)½’pGRHÊcÖ[ñ£åŠFî›ÌXq^Œ «qÀÏŽ•hÈ9ï œ£€ú¤$‚sðÁh/‰S²%døwQ/%Ù(uf1abÔ.—Îdª¿¦ÍðûwºÑ}m‡ÿš>ôîtO¾6Óín¹™>lgË£_à•Cq“)SÉêþêiK6 endstream endobj 22 0 obj <</Length 65536>>stream +%AI12_CompressedDataxœì½ë’Éu&øñ¹?dÃ’á·ðîÚ˜åUC™x16¥á˜v¬ ì.¶0B½�šç‰vŸc^l¿ïø%<Ü=« + °¤*ÝP¨ÊŒŒ‹ûñsùÎíoþ_þìðÕëßß=3ûq7üÍßœÞÜ=÷úÍÏvòîîç/_~÷öݾõ“ß|¶S~?â ÃÏç/âÿt÷æí‹×¯~Æ”|xå·ò÷ß½|q·;¾|þêËÏv?ùïÿöÅ»—wøäóç¯ÞîÞ½x÷æn÷l§>K×ÄIÎÏßá€ÑÿtT?Õ£šwjþ™YxÀóW|þöí‹ÿ…Õdfƒ÷ޝ¿{õÕ‹W__ÿûÏvÏô´{æ¾`wÏï⿾øÍÝÛê·Ÿ ^VÍÞùiÆ7ƽÃwðèÓ4ºY¹ŸðxÃ?Í29Ó_ùÝ7w¯ÞýúÍë/ïÞ¾=½~ùúÍÛŸíNzþj÷‹ç_ã“ç»ÿ~÷òåëã3ù¯æÈ}q}ñòÓñÍów;e89‡Ÿ+ýÅñ»/¿úåwßüþ¥½áÛæ9å?¾Å¹pZþηý?ÿï|~÷îä£ýæïŽåmàM?ùçßÜ}û¿ÿ¿78þ|Ïùæõ·ß<ó¯øâ33ïMñÂÃoÞМ¼¥|3©õæ;᤿½ûæÛ—X)™T™Á0ë¯ñ8<|˜x£=?2j ¯¸³Îá}m–½šòkß^'üî/îþíg»_¾~ufõðæÝç¬Çð3|ò›ï^Þ½ùÇW/Þá'¾µ„iýÅë¯î^âøüýëËç2›2Ôú3ðÛço¾¾{úyýò»wBÜsº–ížÿéŽk¯Â~õíݫ߾þ'¹Çgj\vÞï×§™üÎ`íg¼í,fX.5á“/®òÏx ž‘çK"ýý«ú«7/¾~ñêg c»µS ¿{óâ«•>Ô<î–ô“§ÜãÖùRjÑ㢗Ǿ³ÈËOØÊêǼ¦3ûîÝÝ«8= öÓ/ +ê÷¿øOsyõÕéõ7\Þ·ÜÉwx,PôË×_‡Ïòïò ¾þÝ·afäï/@ ¿~óâÏ9üR>™¿øõËïðÑß½yýÝ·?õ‡×ÃOûú§»/Á£@,_í~õûÿ‰?À‹â{o…å쾺۽üO/¸ÉÖþ×Ýþù‹o?»÷ÌxN0°ð!¾)¦ÿþöùî`ë×A ÝÝÝ¿¿»{óê.òÞË«?Þ½|ýí·<oüýn÷üÕW»ÿöüÍ·_ã×à½Ïßìäýö¿¾Ã~‡GøêO¯žóâÿù¿ý'ù"Žý‡ÄÏqÄ#.ýó&_‘Cò%< øèzþî_À\ï^}õ¶}œóÿÕôõ›ç_ñ.*ç÷îí®|¢ð݇/ôù—$á7»ã›ïÞþËî·¯_¿¼µBä혷øÃwoy•øMù"¿÷i]ë×ò…W¿zfò±W¼Û}óúÝ‹?p=ß¼ût/‡£q©p‘çoÞ½xûNˆ>È'|±Óó—/_€¶¿ý—_>âz_®‡—×gyÒüÓ7¿ýòÅÛoHlé÷õ|¿æs}ùòîó?½}w÷Í£Éawùêxì Vqï1ŸÿÛów_þË?¼øý›ço^ÜÝ»‘¹4xñê+ì¬Ï¿{ñN8s˜œ×ß|ûú-™Dù$ïþå*žÏé¾€*%ͳg÷ˆ =ŠÏÿŒè¤´]Ñ€ÿÚË‹7Ÿ ›¿ õîøÕðÏÃÿ5ñ;šÑŽnœÆy\ÆãxÏãUA*+Œ²Ê)¯fµ¨ƒ:ª“º¨«VZk£vÚëY/ú ú¤Ïú2è«2ÚXãÌd<tæÅÌÑœÌÙ\ÌÕâJBÛk³“õv¶‹=Ø£=Ù³½Ø«½ºÑ)§qÐÓ7a@#vwt'Œ³»`\§qRz2“å!Ty¦yZ¦Æq:M—é:]ýè•ÇMB©¶Ô½ý4xïg¿`üÑŸ0Îþâ¯3ž}V3žf63niÆçiÆ¡3_Ë|À8Î'Œó|Á¸Î×e\0+<ã‚§X܂๗Y_‡åˆqZÎŒëaÄPLÚÁðäÇ[>x^á°Ãáp8bœgŒÆõp=ŽGuÔGLäÑ1Çéè3ÏŒCÇÆùxþ˺¦:¯ª—uåe¹¶\ÝK\ßu…§¸Æa•¹ÎgYiœf(–{Ú,¸,9ÆUV=¬»‰+Ö>~XÿHCE‰VRHÄ äiav˜j¡ÒÄy(ˆ¢$É"ÆJ§éòHR’ȽDr ¤"Ä¢„XŒ ejå,„ÉdÀÌêL$‰L‰l ä‰Ãqà{kšVôøÀj†»®¥ŠKi†Îjže5¯y‡•ÜîâÍ:æeÄBÕZò–®W2eZM/«y(ö·,æWSËj–Û|»žGYÏóÍõäŠâ5p/Ç5åªeUÏÅj®ë™VôÞÍÏ5媮Û?m`�íæ¿ÆÍ?®kúñ^j�”CC¶ç(K6ÊJpjG™¬QXÈ)°Õ1Ö ´¨+Hƒ@_¤°@c‰Êj:û,cˆãZñ +_ʈ‚9$bвAˆ¤C²!Éœ¸ñƒ$ y4–H$-ËÏ|µ¾Ê*[¬ìŒõäZ^±€KÆå:`™.ƒì>jôŒɅ/˜ ®; ¿=‚Ï^ñ¬´êA‡Óét>]NWYÓëõz¹ž¯§ë<{™xФùì+u/×Ëår¾œ.Gðõ¤äÁ‡ÜÅ^ø¨ºŒçëùr>ŸOç#xÿržPè„a±éôYÇÓ×:ãšG\yÁõ=ÙîÅâŽ4îk<^Üã wzÀýÎ ô |Òbó꣎#Äɂ儇;àg<ê„¶xl‡A¦ë „{� Ϙ sd1Só5‚ú/˜»vÄa^L¦Ç”:L¬Áôªy‹$«<a‹°f,Á„…°Ø‘43bŸ^°D',Õ6cÙ&ìl‹EÔ“¦Ñ]ÁÎàG,ò‚íè±ä|Y,¿Œà(Ä ¤q�Ì ” ,Å‚l4Èg4W°¨3êh¨kM 5Kü´7‚Ï]@‹'p¾ˆs‘N V¢Õ ÞQ]AÊç§5}ZÓ¸¦^Ñã8|Üçáã®è47Vô{'—sø~ë ±sÄšÚÝß|q|£fÜ{‹d‚·œ“ݸŸ,žØ/T<ðå‰ïèeÔ‚döJ[¾3+ƒ{Ö˜:ƒ‡ï(…©pvÕY9÷ßÝ<kœv±ŠßÒ;µ›vnÜ©qä}>üÍŸÐßc�«õÓõno}ŽïÏÙFM¦fßú¼¾~õÕwÄT¾|q÷öçöïÕX;̃òP +¬Ç;vÄï”ÜÏ¿#Þ‚za>MzÖèy²n\æÄ®hï¸ís“ð¾–,I¤ºê®¾ª ØÕUwÍUwÍUwÍUñ¤c‡"~¬ ü°oèëGºüûï¯Þ<õõÝßîþþùw¯î@¾Û¿q2——µêð¿ÙèÚáoßOú¸Ý—‡Ê7DT‰uÎ9BnhÈ92‰î9C² aDÿ<;ÈÑ‚<š!˜P'ªËù +M^Ax™2º4䙿Ìr9^ì.ù-ýÞ{ÇÊùë±ÃÏÍ�!hïøãÏ`ꌛÊ.Ks5üfLÕp›a×1È&¹Â{Š»„ñC)ìä +F硚1Öƒ–z5.Û1ˆøŒc‘XŽÕ(¿©ø[i8nH•I¿¯Äl†â¶VÂ�Ú,¶³`!˜™ˆ“9ÇöÐbx%Ó댯úùJ¸×áxÄ;ç!æ¼~Ø�>þô›ßWrŽi5óPÓ5®"ÜB-ž6(5H%c\tÆu”¯s1NÅ8ã0\y%‡9¬´¸•¸T¸a«Ã¹`µ{c¼ï+’oIÉášøTCzº Áð“¯ò˜ð^"Ì1ý?ä7ÖWº: I„ëMäjÅè( Wg|€3á¨KFÀœÁåA€&‚LSDÊ0Fl0lƒ›dq©‚dP’E¦„h€D#dÈvHi‰$[$X#vž{ã1Î2Nqó8ä±Ä1çáó˜âpiW›‡‰cåy²åºïocEë†5<la¥yÞ‚í}pv…ζàl ÍÚ¡Ì^¶ Ùf;Ñdz€ <ÞÂRü=G C0Õ¤lT*‹lÀ¡zëÖвá·Nt7¼1¸›¼HgSpC@ñ*³Ã—'Oȕޓ³sŒ°55›à‚àH/šaV¦1oÆ¡ƒü©Bõ‰ÊSRÆp ќ +DP+¨h¤z¨†læ!ïî0ÎÕh_×û‡°Š¦�fô^âæH[ø£ žðš˜a‹«”ÈJÍѾ²Dé>E%Èm,ü�WAó#»¹êrä%¼Ä5-9e3æz€Ä[m°†Œ6€6I¡3(•Î&‡]MªÓâ‚¡$º +l.·7'Æwd¶kç÷²ÜjaÖŽj×Ö©Š +ã©pEÜ&Œ£E–˜A?k7Áôš]0´ –A‘åC¸ƒÑ‹w¼¡ém®hZñṚ_7pOä~Äèã,µ±ÐÚ¡¼ÓX„†ƒo;¬¯:Ä+ArP{ðZû²k?>Aƒ¸lþ¶áþòíò£õnæ&ª-'èÓ¹©0Kã2Yãq_TyxCN3tŸEÓí7D¿Úè¹bP–nÜPk¬o¯>îuþ”ËX@MÓ´ŸYŠYú„n*Î.M™™7¤±VËâÁÌè O½½@cuqÊ +¨±4t[\k%ÈX¼¢ž÷#L¤r~À«†çÄ–Õ +ŠqˆëÄW¡ñR";Å=ÍxO^·¤7k6Û6^AÏ%ôg:ÿû@=ÿøêÕóoî¾Ú}ßbdxïMœÖ&Ðç$!'±DݤÂ)*§("ºDõ¤òÉ1‹Jt’�Ž ˆRÕÃQb.D#½ŠVz‘ØS„ÿYC :ª=ÕFE‹¾ª(d’b=ˆ*rŽÚ+õ׃谋豳8¨}Ôgƒ•‚s—¿Àƒ&!3-Ž 4?i|Òô¤áI³3ôXœbncs†¦#“° AB&–`‰@%J“$_ƒZOxä n'¶ä(øÁÿYOT‹HbJá#øæ$rWAÚRÎ X'¦zlüëÉ\7&§¸bï‚[܉j:I”Å$Jªr; ðCüyˆ’=ÈøXs–Ÿáïcüy®~†ã !пT…kü~ž£úp)ߺ^„§¢=´‡Nå¡ã0yØ8Ö×”Æ >FÕÌ9¶f‰1‡™qŒ±6i¬(IRˆ£½–â6R$ŽŠñ8i˜8$VDÖ)y˜®¢¸Ž1L'Åp¥®dk‹Ð-öqbÈÆ1†kØIo`§ÃxR1ËÅ0¬>ü4ÄЫ +~ +!W50vÓ"{ö(;8Dq¥®5Š+œ.œpä +§•Ë©åäC<€~'á>³(°QoO1!ÀÀÖÛ +@–€ð"Áq%ù,ÆÇ5bÂg'7bØ”ææêÏ*ÁdABŸB¡DT$^C3³UÌøÄÐ6'.]¦ig¬‡Xã‘ø¬AƈÌ6àe1ŠHBÁÂYŠ5ÝêÊ‚¢i;ƒ.°¢ÂÀݳÀŸC©3Bl:ã¶;P‘O¦•¦•îÙªcYº.ó§šV ø£Þ…ÈxONªg ‚q8ôDR¥aÂÁ¸7g‹ß5KËo–ÎUø'½Ç¦ðˆþW Ϲ8?N'7ÚË¡Xòú +3¬U¼¢Þxô+N›T›õŠjO‰X<çyÕàÜSP‰É3' «Âü8¬7ä�ĺsɽfŒ›Ÿš‚æëKí˜ïdÇZ¸ñZw¤nx÷~œë˜Î7v•¾q£õÅøØEà»uø<¶y¶•®Ãm†ÝŒ€kmÿJC§ß†øg9BT¨Š%0A%¨¢€ +W†ü c(½›qÞŒc'ÑÄÅ;‡rE˜á!b–ë(qJ_„)r”NÒ»þW'ªÜêOÝ"]E„Q\Qp¯â+¤é(±ž‹øZfñµLnÄã">ñº\E÷8G%ø êô<HMЇ(,:èÅÐ$/¢_D©9Šzs§Ì"ñ¬^”1+ž™à›Q|êAtªKÔ OY›E—ÑSNT<-T3Šò**âY"©¢e/""½ñJºìáQ‚<]Å;IÿäQü“ôP.‘ú¬D2V3x&“èi0pâÔ‹„èðß$Й“øOBÚŠ.an»Obëü ÷L xˆ8m ÁK¤¯SpOB 2#ö^8Žàªã·º˜Â·Öà-¨:C»•L¼[~…äU–Û^…ã=q[[Ÿ£+˜]1>IsPöÃ=¿±¥£vÕ=ø¯}$ @<œÐ轪h--'¹¯9ðÎ +A¬aZçN˜Wò:ÈÂͧ®PSñÒ1[o\_Ÿ-8•WôCÝÕ0Ã{¼¥VýQ‡]ð¸}±?Â-÷}¾ôg9aðD·ÀV¢ˆ²Žm$ƒÙ»CűðØÆlcC–ÍÈ.›aõÛäqÚŒûœ7•7…²s(eëfl8ÌfØÍpå²›4¿óf,›q¨F„«†øËi3¶nœê¹Â+D)ÔöFEÊ¡X3cÆ"‰"'PUE“BU%Q¥4ª`ë¥Dª%çQ†5•J´’`†oÓ©&Aç’!žLñ`ã—Æ¸ØúC6Ç“A>gƒü òh’ÇØ¬Ò(_£´¼„®,C°Ë%\ë$Þ¯KÞ#i?ʯŒóH¸F5Ò7©-ÑU¢¡)“H ‡´êi…ÊnÓýä¯~"G›î'ÉÃl¿2×/Æ],ш?ç4¿84|_tè8d†ïõá¡¡Eä&I¸g"Qܸ—ÃödÑÂ_„Å(Ye×wŽ+{’5½–0‹Øcü™ÄÜ5z7/‚žEZŸ£Ì>ÅÔž ´¢ïS·ž˜Ô :¸â"jP +®ØÆ®¯qs©ý.ð—•ï”Q$+ãZÙ[ÉìÊèP|Ð ¶Ñ>ÛÓÆÛZ½#°´Ëб)ïgÃÑ–·…½nís”x¸µº—àCÐÑÃÔ¶¯‹)ZÙØ¬ÌÔ0–<Å8æ!ë_RO¶6]N›$bc*ÎÎqXÏ ´t@¢9rŠ˜¤–†U/·b܉a¶»{p‰¹Y½(ûOÂf=¹È÷’¨œîD`%ó(%aÁÿe £ìª™ã6箎ó-MÛ)åâ ¥†0‰|ªSP„˜BW1[.‘†N9@âim.Â$¦2ÄQH6Ìóãó?îÍþHѰ͉@só X¤Ó=## BÄȶJLûêýG·æBT?f;F‰x±¥f£ Ј4Á@2Æy?ÂÀQŽïŒ +û’;O«iQ»Ð V®ôHJV‡*Κ˜Ý¸·Ñí®÷ÜÀ…7ô“º-™)¥Á~¬óË8¢SŸ0ÍJCÚ+Ü"Á¼ý²xKvÙ¯gyg„šàzã•õ^B8t æM]poܤîU?©» +…i¡$©Ñ:ìzιìOf™^fA\“ Æà0ùZ@Ði6T$*)ô\ïçòê„ú÷nÙÂoUÇô@ØOä~>”µ]PÖ~†óÛ{ +X„ˆÂ‹Àœ&Ë©2â2©µ«bKÛ…àÅ!¦(ÇHB-1„SŒL)ðD¼ê¶÷Ö1¸YÇÕEÚûZÆ N|¿nòÞëÜ÷‰!ܾJ~Oéïe|J7E¼”6ðëkñCNŠiñ¡àÁ)¦ÇŸó9Ù—c1T;†Í+^ç!jÖlœïAA[ÿù˜¾þÃúÑùž\êçÂÐ0zÔ 0eÄ;ÕHÐ1Ô´Pf†(y‚®”~9–4›9ê¾!þï#TQO>g-‡1«—*{T£N cˆoøßH`¡Íÿ‡ßœàf6â§NÂ]¸A"_ØóXò|*ãÇ¡§Þòü£ŠÏ3æ´F௙LiÍÒÊ•ºMR¨ñΰy+DT¤‘¢ çø{¹<G w‰¿/<±@Mú@ÞŒ‡”n„Õµ0¿-Åïñ;CñÇ¡úZú+ý<w²Èm´~!ÌÖ¹1‡îûeˆvyD±½†Í9Þ÷áäå[éËuó‰Á�‡Œ—IÌ+¾&2×é馈{º¤˜§!#ãsx²Ñ4ã0¢ä)Ê飜AnB”ÓTÄ8é¡ +qZ£›Öø¦mlÓb›bYñgÈ®6Ê8dÇÏ5‚)‹(„ó8ıcû.:Ì>kQ +â-Ød».q½|i¥Æ„†˜N”óDRvHÈY†˜ÜæsÌtJY«…Çš Ce'ä ê´øU\õ¥ˆ«.£ªs$uHÁcŠ4"äÂ09R.DË…1†QØ]tb] «4¶¯Ãf,Q,æ°þº®Ò)_"=Ô¡Î[©sV&"³./ë½9+eîX7A(bC'K¨ÌÚäŒur ›üÇá1éeöc1êC¡º¡‚îÓ·ò†õ×-xõ ’W®*±t* „&7ö‚(JT¯©¸µÆiŠà¯Þ€o("´æ Îw®€à^6øï% CÿtáøpÑ«1ç,Á¢×™˜,þÑM«C9Ý\Ä)Ú™…$õ$^½]À¢ËjIWµƒøˆClU*åDß ã/t1Wú,3aç2x”,Ù¤ÉJôß À‹It~SŠ+iI_µQK]bFäÔåmô/`õ!�®î1º.Ñ•Ü!/Çn–šÄ1†'6ÿª€ÍCt;ŸrXÉÒ=Åzž£g:¨š¥ÒyÊ¡›§|Äöï ¦Êe†xíñškˆiù[Ð<æ¨ü¶*ÎPèkm§)úÌñ[T!þš‹ˆzžÜÌ69š‡Z›’åæìm¹¥8Í1Ú›øìJeYò—*,;ª+«®’±Oî>d%eUPLtý«Š’ôŒ2Ç@�,ÙPD£¨¸r׉rã-Æ¢Ä5«ÖQVRÖ2¬¦¬ç—4,ª3E¢h©Ý“}¶NqŒðvÒ*zðcWºùZ«V±fgêD©L¬ŠDT!†¨Aɸ*«Š°*¾‰Ã+ÖZBñ‡M4þŸµÕR0eïñê,>—θÊÿ|rºðòºìsA‹Puú\v[ÏîR8?|ñ¿7H™H›Õ’¨k†Ø§T©2¼ŽQBž„\“ƒ5¤ÉË·±J¥TXÝ«œ)X6 Ê–ád©fdš9á>ÿœåŸ—E9ˆ\]d±NòïHåï(ëˆõì|ʶފð¨h„G +”2ØH#¦ô$vrH½ŠXÕIý ¹¡”‡ké¹qS—’›íÙϲN*– Kµ—ì®”:”…ç¾$ìÒ¸Nn‚YÓˆS"ñIÁäb®5I®l*ËZ>³—'>‰‹6UcMòßcöû’ßE oJM®¶¿vàCÕsžÃ3®£ +ÆæŠ‚®pUªÕ)ICéO +1\.FG„x¹³ˆ£“lñƒ¥EÓ,ë6åêcV„”…&ÆÐ 9ˆî"¹uRXƒé¼ INä˜ P‡p©*ªî<ˆéƒëB\újí®®Ñ~a¯K{Q6Wž3£ç÷¹aö#ýî/"µ$¹A¼ÖáÞ-y:%¦eçES£dF׸)ýÕâÔ2‡¾[„ž°µ¯CákȚܶìAt®¿ÿoBfaQ¤²L|lŒ§ž¡¥O£&ƒ™˜·¡�akÓè›Sdü¼IU¼®öN°›ì{¤ð¢üð—O=t™¬…ª>Y‰üÇEaK€lIËrz¢è“ÇEÔ8óê€^ãâU\‚½ª§[oâÇ%Q › ˜îi“§ü ÝÓ‡¹L¦®Ëdb»)\&Jrܰè«'à6E§ñ‘æUj)Ptˆ(#²1$ù°$«ŠŠ)´ý.Qc¯] ç¢q‚.k±”lÒ‡lÑ«N@@̹šCCþ´1ãõpOÝì5×Je;ÞäÈ®5®kì‚¶:D4¦ìÚæ[ÕÁ eÈñ|nÂ@6Á^ª {L_e|c×X`@µJÚÆ0®‘ŒýW¯àDÖeÕ#G§HUC7èñÖ°á1½Ïø‹;áZƈ³%èÉWÙäjÉýW¡ªJpBµÚqpyÎiÓ +û>èÃ焚÷Ö°½mSŠ`ÚdsM�Sàk¸^ ó¥bè»l€¾Xr?„‹.RÙüá,VÌŠô…0Ñ5D4Y1[æ’Kí³ nô‹±\R€èÇ%‰¢™öu +Šêo´PM51d”cEdz¯µ(BRÂêî]6ð¯ÞÉcg¨î0íò¯ö‘£.XTGmzpøÇá±þÕž°´(UZ¶º^}ö.…I¶ce¢z„*“yÖ¦‹ÁVþ“\ûkJ‹unªÏ£‰šN!¨ô‘¼{–ÿÏ•wŠ[Hùîásþä×�®¿�i阴ÛX1hT“d¼–Ƭ iÌ8«³ÐÂïë{V´(·:ºMþj§²gÛpÓõÝÍûkYÑû¢TÝæó{â·Á¯·FïrÍ KþñȾ³¿Ö®Þý3„ÈrõWÅGAç:Cy[ å9h‚ +š"Ø”Ê)$¬®"‚–:AFG)AB$m °Öä´µà]�ŽÃZç.ƒ }¨! ã½@C 5¬`á@šCΣÐÌI(Л¹iQ› +±Ùä=ž‡(gKÌ& 65n³!u*a8 Ç2˜§<Žy¬Õä–b”Uçdf†\’nª†kÆ£Js½:œŽ¶ÌlÃ}>\¶ÃczŸñwÂpPoï´·4ÛI|îå÷ØôŒ)5nqKLJx;NŒµ 9¨Üä:oò2ÿ´—x±lS/VTqhjÍÖ¨b¹ÝÓ†w©ëaš³‡Éå\g½o×í¿…nç• ‘¸ŒÝš.§*~P‚¸ç¤|[H¬A˜Ã°áGø‚S¬Übå%ߨrŒ!3‘uŒí¸aìv/††ù<4N÷á¡:¼íÞ1<öÀ¿Ún‹|Ÿ¶"ÛÄt)}9Tqy±½H™wÈîÒdY®Ñyk|=iÑ5zŒ1z«KtÊno»q}'çwY™ìœ=¡Ç¢žOŒ•ó9„oÊ%¤lU°,-‹žò¶xY +ñ;ç@¿S÷;EÍÖÂfky³u¸0õζÃ5Ãv‡ÙŽ!ÿªêq#´?Þ¢ñsýXcøx§ú=áêãP2Š’R“RÞ¸Í̽b†ûQk5OxÖ@zñ§¨y“dBÏAYžqœÛJ•Z\U’«?â=ß*÷ßÙìfÛ¾™ŽÚ{_¥Ôo˜+dîºBæ§ì‘§ì‘§ì‘§ì‘§ì‘§ì‘§ì‘§ì‘§ì‘§ì‘§ì‘§ì‘§ì‘§ì‘§ì‘§ì‘/{¤Ò«sGÖ¬‘5.U5Úþƒ†1äÒnkI£SQæ-—z{ìëV‡©Ç½’nt‘Ë‹f4àÇ’Z1?Ú¤”cNJI5ÿR(—‰")R¿ÆuL¥þ¸é†Xé¯N@YÓN1å$gš„�. …@øÏˆ€ÖÑN·\ÙÚþ[äß,a[ñÈŸ$l+ý;Å×õß¹¬o®¹.S4O!(&f»Ø˜$1zž))#ú"Ò¯I˜1 $d¼„Vˆ—˜ +¢£3«,з–磨¶my¾!¶~HÝT5MQPÏjJ¢: kUˆkK| tÈ2[€£ûûn=†<•KX»ñ¢x> )Þh3)y(&–·Nà’ƒ„GT5¡0ƒÔ{õ/‘´“b¢ÒArŒ¡fâŒPM%å(ÐLyŠÚÈuÑ,E8I4ãIôMs°5¢*„¥ÌÔ1y&zuÇÖ€?l•mäX?¶-èô™G–Æ%¥ú\êR⛢ã%ˆ–€´mus»V±k~.÷úŒëdŸ³8:Ї¢böDŸG¤ù¬Y>CQAÛ縎·‘B/Ö:ÚgQNNq[¢’âS1í!£| ×<¢²Îôêë¿-€¶ ,oeAWxX·{OínXkÅ}ýnȨËîÉéIÆí÷#g'Å{ø““f·Ç²ê#9)]:&'yo´]0ã˜vé+§À½Wbœ¼¤ùgP,œ¦æYVe²°NbæÙH¹±mY¸iÇ'éBU—{ó“>¥Ûú0¿ÜÒõË-ŸÉFŒ~¹t+›s–ëÚ÷;U×â·ÍÈîðhä§ÿב°ÝäýHîýÀ*S@'0ä_“%–B +|5VàwÉÕ¬—"v!V·b‘k·ôžàCY%}ú¿£[âÑ?rȲ=üÌjF0.[1Þî(¦‡\¶®ïyØŒëܤ%Ç–b›_‘ÎÁX£@J >·®Ë²Lgë÷T4ñð4fSã¤oÇjå†È5S„©RŠQ†ñecÿ:*k» FÄ.vƒ´ØmìœH«16²£š¤o†’Fv¡MƉNØ!ô±;Å~ŽYR°;cÓmnY]v¥§´ÐÙŠêï ¬]Óª-W¢»ö©49|l_2EÛßÅÈ>Q�‘€€¨€0£gŒvÂ†Ï #$ÏrÇ“8Ç+M9&0vAbp €¡»·jÆØußÚ-œÉÒߎS3êסï4zƒ0XÇ´®9:q(“Êì'ù¶Ô¾ë”Ú?E`{moÀí¡E·79•uVe‚·ë’Ë9©rèbÛýÂç*}ž�liJWµo£r£À´^'íÂö“‚j¤hàñLˆkqU¥[èB…tÃ'ú¸±j°ßƒ¹Ú²¬êyQÑGâ´óì$YK£éQgO¸U驺î}SówÞÜ““ð߉ ú¯ùAš„îvjÕj“ìÝTV¼ c!˶?©é*¦‡‚š¢ïÏ9Ô»_¤Þ}@zò—ÿ$—té§ô6ÒЋ´ ±ˆW@ºŠðÈM¹JÇ"6rÈ¡‘ÇNxd"¹*)u\di‡GEöb× …N`Ý¥;Î÷Œ¶W{Ã}nüñCç-‘BS̯ Á÷!ò~ª’k˜ZÃĦ՜…¹†6¡›îEzézÑMEû$±—†a£”^?±‰®´ƒaŽlxÁ┡²}±§¡€/|´¢l‘A[¸bƒV„n_¥RrǦ8¿æ¢ã—„Š7†îOEk‰ÐN ë…sl¦Æ¶ëÝŠEܨÀ”VÈ)ö”[“�Ó¨sÐnux¨ÇþKÛÚþïýê¨ò©€¿šäiãB6W1 +ˆ.Uá¢ÝŠ„¦f+e£•N8ä,íMxrXîÅVRÎ6ÑÜ>x) âR9[†5D0®s‘¹}LŽÖ¨¡$m•$5€$Î%¼Ê~@«AwYM¶ÊJ¬¥c‡ÕŒkn,®òuÈÿæV9†Î›uàùi3Î7‡°éa¹|ÜÑ9a´²sþéâ,ÀäUh[á¦kÀiì½ô)ì4¦÷²UTv×'ÊI!¨>ÓPrݧѩ/ôµHUÄ×Ð6F¥ºËDÁ½K´Ž™OѪ¸$OÂtbÄjŠZUÙ:1EôêÁš¢X{‘¬E4ëRÄ´–‘ÛøÖ2ÊuUḚ̀¾VMºÆ{F',¶›mCýFŒmªº5=®WS¿yx€†¢_ÓÚæ.‘|?++11fg5r¢‰34ÍÄ:Ä2³îú´i·ÄTˆ4U;±)R@r3.¹fÄ1:tSg±Kì!3æcjȲ&FÙØ÷{(1¤•t•׬f¦¼†hƒ–öimÁ^šÑ5ˆƒ±<ܲ¢ãhîFc¨GjjÍ^ÊÍCe¡UbyŸ&y¿:(‹;äXÍm´f±YÄmVc*Çu7†½w˜zÍ[ßåd%ûxÆðÐï;šn#úª.jH0B�B÷4ª®ø<f!fo΀†”ˆÂîu¡ŽpÍÈÅt¿ºtG¹Q¨~ì—Z¥0;Áj7XíK¡NÒ@ìVôÔ ßZ˜ˆ5öhu&ÇáÚ£6ý øË^™4ñC^4øƒFÓı<ÜâÄ…âý„p6Ü$uØÎ½…´uJ³xs§ÊsK÷¡¶½¹ë:Z´Ù{=ϼ‹Õýócޅ̃_F;^ßj:ËĹĸ NOÑïH"†E>a ¸!¯Wá?ãÞlÖAÎäÊÔ³€iÝ´4úñnáƒP*ãz(Þʼnõ&ÏRúï¤Næ!¾Np‚èoÏÎöCde{çcrgçÔ4ûv¨ùر(\L)Ùöíu›íµÔÃŒè¾®š›žšuKM¹~Á”0!Ël&®ÔHòÖ´tøëºH×+C +²#¦ÌÌ<„ï-µ{|ÓãŠÆV¹Ÿö£7SÑkë¼(7#}½£ÆyìÝg$7ôTÍç{D…í¿tè¼dŒ¦¼v¼ã("$þœWù -Õíf7ä¸IîOìì§un{ÝFèe0ã&¡3¡/çX6Zå²ÑU‡Û[6ÓPõûÜM›zyUÇÏ~‡Û{3%MκëåI¦º2+.†º9`=ýËÅÁŠÜHÿñ¯i³.§B†»yˆ%Cþã1÷Maw±/¨¤8êøÏE—ð”³ñ¤2RêÞÔC•S{‰‡ÛPÁTM+·šrôà”AÄ)F}§øømÀÜœÃëW×z$‡øá<nû–<Ù‡â÷%™Sæâæ„<Ç{åòÝ®7QV›$¾Aâ¯×¾žKdJõgrÖ^ê�<7=€¯C®EsØD©mcÔÚµ›•®ïKŽKIUÝÔ¸*1.%@IºÓ³›Ö”8]Ôã¸f¯Q®Ê‘ÓàÖPõ¦®Ö�õKš~Èù½k䵈??fÿòüØl³~®Yi–»È÷ÿ&¿¬É-;oRÊ6ÉdC“CVdŽ cÛ±œ +¶ÍüŠÝ‘ï ìÛhˆ·>ÿÑÂù¶¦Ët&i».V¼û ¬¥¬¸FéPÆXGieÍáêÉÍ:bÏ‚µ©¼$œ•Í RƒåòŠKôcUÉK¾¾.$RyGz£ÊF÷Ip¥T¡L)[:[qÚL›euŠ›>ÙbrWÃ&\úšnòCXùMFòs;Œ|[¤èØ\¾^+<jñëå…WÒòê‡S™Çî§2gS§2ÛÇ)@xSõ<©E‚Ëq#JãÜѱæ»Ñtéº9hÁ²›rïuûÜ>køÁ®øa¼@wy¦!»T øWv™ + äšïAe €pÌ`Í‚»ˆY J><9éQc7ë€û+÷îgap[¸É2+®ÍÝ3gÃty9¦#…Í#Úÿ¼9µÉñ˜ë(½ÇÉbW…E¯6¶¼Ê¿ñ&7ÝaJt<8%NµºU”÷LºV«iõ´¬\÷/¤ +Z šÑÿ9ö¿ÔA£ +¹ÜÄe%‚K±q—¬ Leá!'rWü+©VßI}èõà åª9;¾ô¦ÔÅóÓ¸Q:¿ÄL†›¥ñ#…§Ü–ÖƒvÛ\Ád +VIîC•å^vT k,¬ë˜Ú³àT]ÁyؤI%‰¹ÍÁl>”YåWÙ«H¡¾E“Çqšfcq©7è%œÝ;–¨ÂÑPü…µY5.¼Ê¢ô4G¥ê§Á4:ü_—E«F½²ÄeÞãù6HÎx¡<ƒÜ…Â[rZœJYlJqÞK×zêZ<÷‹ø½jk•ÅÜŽÒ‘}iºØOªlÛn:ØðÚ×^ïq禜•Oæžâ9©r´Î„½õzý„˜¡<‹`4†d¨¹X“‹ÔÞ€\²tòrR{†d•ÓðC^6<)ö”¥Áª1ãÔý‘7Ï;`ùN…©^”sÄ]ˆÌñšj%îzI1›¿»ZÒtùRRº`»{ªùöTóí©æÛSÍ·§šoO5ßžj¾=Õ|{ªùöTóí©æÛSÍ·§šoO5ßžj¾=Õ|{ªùöTóí©æÛSÍ·§šoÕxªùöTóí©æÛ£å¦½;úqÅÒM<U}ûÊ«ý5V}sÝ@B§6Y0ýfåÝq½=VÑ8d?ÊöU¶@]{6º<’v™†è .„KK%`[AacÀƒŠW1"¨Â1GX|í<rÂ>=… _… +²IÜŸ¯aöJÊ~ôª®ÿÐGen)<ˆ—MŠ~ˆ<Y£OÄw8WžÃ Λ,îÂ;Øäqƒp•ðŽéž‘ý„CüÅoJùÍ›¿Ê"ti$ùI)¦"¨ë‰'¨,¥3N®¸ÒåFɽd‚9„˜àB;Ѝ?'¼-Jº)ùg2þfEgŸbƒŒÀ ‚u$r9¥úÙµ¬"g +Õ>Ë]Ì©íì@.Eb¿Ù$ªÌ™\Ž1Éÿ,Bý²Iö¹®·Åš¡n¿ +qȵMW]´E±˜)Ž/È$„X"•ÊÌ“ôó$ˆà³P®òïZ¬þ¸YóÄ(¦!r‰5)eI¿aaÕ¯´% +”U‹ÄIVÛÂÔzˆµ]NEK^e•Wy*œ¾Sî<DXþí�%ª×ZÅ#lØíú6Þøòú¤NXWûéÒÕè›]µÉµ¦nÙ¡UšWÙ¨ÊVTÚ‰üWþè‡Q‰úC +RPޚɶæ²ÖRB"¤ÀuBœãôèáîÙ 4Üðm|@Ó'ûp’#+½NC�ü6�béšœcñ•Œh2Œ¨²wò24 â6?§ÌÐiûèvrt†˜þTÁ*Æå¶¥áîK¾Çc … · ؽaÄõl¸?ëêÖëûØÕmÖ7nÏõ*çóãÖ7®pÆ„‹6ÉCß›pʹnÉ>Ÿ6 G¸À¿Ä„2$»—úÖ¬pXÝN½—ãpsžà¡ãžk‡pC.¸òõn‰àR9Ê•¯W}»æXïaëØ8ÚÕögÛ 1…qí‡ÝÛÇÛU>Qö¾^ãaSA£·‡KÇM‘ÜX®oUm–�¤ü¢TÌ<.¨³Ÿä =âë3ÆyšÄ¦óf>”´Ùº)Z‹›ì¶ +ßÙC¸™ÎöiÜØï +ÚëÝz®Ñ!a“¸Øq™ 4—Q œ7ª)3ç)Æm7×ê¼Ó³‹½!ãË`Ùñ>Ì2ïfÓãÝ÷°Ì°Ã[3|xÀ÷·,ðB».õëóÐØßª²¿]¶¿çÕþ.¬©óÖüi6Eó®Q×Vqnð¡c¯FUQ$/Ûà9~W|*sáU‘)º-QeÄn²Ã—M€¢N@3ÅÂŒ±lôPÖ~ŒÉþ ‰^ÛçÃÆ<oóÃ-Ó¼°Ë¯)L–JîÐæzc˜ÚZh‚x?míòá†y "/T4‹Å6g‹¶Ì/¤£+£Äb¿“qîÃ6Ð/…u®R‰A0t)©4Е‘ÞF…'?Ý©I~Û9O—GØò7lw³ñðl÷¡°Õï³Ú·6û¡ž>äq$Rs¿ÅÜ%‰µ˜ ¬ç{ûð Å®òòÛh³ûãß3Ù±ì!HêÙHXþÄFÖs®RUߌ?F¯•"2ÓZî%#©á¼°ä¶rÐ +š7”i�F~׿¯˜ïð¦üt¯ãôj׿|vîÐÒœ·¹FŠÏÌ1%Ù&yŠÓ$Æ–Òæ+£¾Èœ_ëÔ\Bš!G ¿Ç؇Xƒ)8Üo Þ¶òC`c è\›…Q0<񮧯€ XCÇÊïYÙËfàC¼Æn~ÛÖ¿·ñØ¥Ëöû/û=?l €÷‚wú?<Âø¿oákpxØøïÀ;½¥á_à €çØÄù¥¥ONúë&ÄoIŽú!Ç÷Õ @i$V0ÀPLYü¡ô×?/x¨Áá‘ÈÀØÇ@z\àÊax° ô÷~„†ï•K?íŒn£]„¯ƒ[/{ $¸i„îg7úEšvX½8¦4CaZfIÕG3D––Ä\(Ѭºé`¸[1ÓmSZrÓdœ;ïÜ@>•;ú‘ Vš´?2”ïრ„¹‡$Ì\Sè².‡QÍèérf3tRÕ†˜U¸Öߨþ•FÝè¡Ô÷ÊÓF•pû%“ÒÝ“š#ê˜Í5:5B¶Óqûógj§Þë¾ËÜëêúà1tüe4†æp‡ý‘ŸNX|˜ JnÕPerͲŚÄÔÏõD*·åZ~óm5Äìz›M›9ÛÜ¡ç˜Ñ:CˆÒm"d2žbhT¯í,&ÉH*±¹“T7±h{Wø˜ 4K)óìW°.7¬èôª¨;UÕ-¾†µ5EÓ—¢ß‘¢Û‰bSQÝ_h ÑTž¿Q¡^ækè–¶Ÿî½ÚùyÍ[øšw6†=Á_Ù ÓfWRAu–¼´«@€^ð»Pí/Àp³ ¯²±½DÕc÷Æœâ¢sh72ÄœÁë<†Ák\<ÕEÒ9¬‰TTD69 4©B +`/´Êþ”4”µ'¢)(CÎÿ ÒI 6�Q¹ëÇÚñ#õúH>RWÔÄã:Ä® ¢FšØ˜Ê4ÅLQ³Eç˜öòŒÌ‘^búœsµí³¿ºmbàbô¢s”¸ÊTŒÌRÉ;-GÝôèÐ6›1kõ´úþ·ã±¯K=†öG‰Å›Ôâ3þÂOø×?ðé„O'|ð„kÁ‹²èE]ü"S5Ú¦S‚” E[ˆm•Œí¨Û†Ö54òŠ?¦†{ÌŠbæ¾1Üÿq§âÇcxü¡?á}Yï=†?ÅÓ ÐnKC÷ëDõjDõû TÚQ©¯@¯J”íÅéD~(ËâgP¾ðÊ”)ù›ïdã''Í 6L*!ª2l»4§ÆÌm3æä)›0ŸÖ¢‡<êÖËeóå~W¼¢/ÞÐ4ÇÛ¶Ç«[äUí—7µÃrævô[2?¦5óyxŸnÍmGç÷îáü`GçÿÐ'L›ýŒÍÅÎ[\A¨Ÿ±¹ll‡-°¹™XÐ)´I—j,rš£s—J[tÙ”ó€½È}ˆýWÔ¢ðàþ¯ªv7ȹôuÁ°Ã#êÍls’׬ä5/¹(O³Ècù9ÖŸIÙãkîx9^äÇ´ñ˜8>™ãkîøš=îb“sÈu€s&ù5;Ñ1ÅCL)Oiå¡Ñ_iÿ¯Øœ/ÆT—Æ“Ð×Q¿tg¨îÆpÃÛñXU£©6´o=jœoáöGßoü…Ÿpuq(ïýf(Õm¬’~–m³°ì³6ÓlÔ$5²½Q‹' ¢´>–ƒÆ¦˜´Yì襕˜Ýt ãyšw¶u„mhÑ8u|ÈŸÐ=ß’w”a5¾Ÿ»ªu>IÇï'‡&µg„ØÎØý¤œÝ|¯Äöûgulf9î^|çûõùû˜mèúíó ›®sØl:Éäš{’+D荒gªè‰(LB¿0|£Qé`RÒºì"5ØB¥µS.ñJ·®¥fCÚà�tmœWÀ\hÇ´a¯S¿-÷¶©@¯¥À7ž£Æ×ŽkSìC®Ä”ša_s쀃·øO5 ÛòÃ[5·tSùÍ˜Š³¶/ÓÌ0^;+Ç^*Ò1uf˜ÅÂ/cƒ/±˜¹QŽeÞ©ÖÞkZµ7Äþß“ÃJ°Iý¢Š"ò?ê]„'nd!ãGcÆX:„]eÙF–>;¥r"u‰_„Îà=^±âŽ·{dþ W}FõO/¾~u÷îÝÝîÕëoîvïÞüïÿ÷íîùW¯¿ûòÅ8Ö½ãº&°.öîÇÅOZÏ^a…àæÉYvì•X¾cèÐÂ’jïYp’BI +g‹OSCéºYCÍw6}#ä2!jÎû¸‡ÎLìš»Ø5w±kîb×ÜÅ®¾‹]s”Ť’^vÎï©x„?µ;•Ô»QÚR10j?³•´_ óÕ'3m·oðS˜½Åu´ÑOèžîc…xã‹_¾~õë7/^½{ñêëgÏ +Y~0üò[~bÂ'¿~vøæXçõî»/_>ÿš|rý}§ì´§Ë~™ ×&kw¸/<œßAóf¨†T÷XP?ï¡™àQ,T·ÉH‘®ƒüüÝ¿…?îðßwò«Šå»~÷'ùóïñëÿÄ›ÿ†ÇÜýb÷ÏÿcÜ}¾ùª®õ=Ô—Ú}ƒ£¼¡Ý?ôŽJÏó½Ýûa÷ü¯ð劉7ïÎ/¾|÷âõ«çoþ´û™hß?=¾~ýr÷“ÃÏã”qùêÅ»×o¾8>ÿò_±,_üöÅË»/~s÷å»Ïv‹/üŸøWOÚ¯bçtˆ‚r·(_0XÌì”M–á]“”„"“wqÓ´<Òm¤¯¨U¥ß=ç$iÖÓšì<1®f¿g)™gÃÊ^˜¸Yã^ܼÀPÓ8`碄±£V;å-ŽÔãâÜ`‘#f³°q œc‚Ý£Íî$çõá¼øŒ?Ëo1jlç,züd0ýÊ…+»pe˜3Žp{v—À3@qP»æyï ^„óÎ{Ï–ò“5�õbv{‹]†oKL‹Ü•5ØÐXÔÙRiOb3úÅÙÉ+¼ñOr³·˜!l} S‹sb©�â(c@I°oÍÚÇ×ÿÀS(À³¨Ñ`ãÖ4„ñ`2½JÓÄwÙƒ‰ÍtŒÞƒ÷ŒžÅXØš~–‚ùÀÂá@`.`RFn7ba Ž˜`/78ÂRƒelô<ÂÜ”yÑj?‹™AD&ÜÚãܰ¼py#çáx…ó,¤7¹_¢I¸_ëLqN<x1;m-Û_±Ã.{ô© ;§ÑÔõqì$ÌumAÉ8–ž™æ0g̨Ã`†¤šš Žà$LÔ‰¡vâòx¤i¯â‘hËŒ‰„$‹Ld£ÝÓÀ^V‹åøO„{ÃFpR;”‰g"¿Ö–ªéèÏP<¿Ž+ Øñyq¾iâ•…©EZZXòç!ÁbSpqÙá>aHZÁÓVO1¿7ÉuÀúc.ÐîK^iR +°sp+8²{EcØ:ØÃ˜Y˜~{B{³ú‰€ƒts²óh§;ºH'r§À%°\ +dzÇwÃ3az*AœfžawcññèroFl*ö‡wÁ^fe‰'r²1ö…‡µ`‰x¸‡aºÀ2óG<t€\+Øi5± ö7ØD"ûjឨ`ÈU�ILžG<´qNÅ ‰Ôâ$0Ä~Ä;kÄ…ÁöpEÃxÞ)Çúz3ƒ½;±ÂX0;$Oƒ#pˆhðË{z‘#ÂhËGLØŒØg‹P8v§<òhðˆ<@O”àà¿XpëÈì*ÀǬ‡ˆyP+iëÉ•œ‡\Â2PÀ.~«ããÖ5ä§NãQ¹Ä3V�÷„T,/‡¤›½1¯`JÓ‚ÉI4ØP Pp<ì ðGÉ¢Ç.W{±%Öo˕좱‰o”mEMnÏFo¸#Íþx8ø¡!Ñc’œ÷¢´çCkеÝÁP?ôôàR^ÉÕs§-6^ _ÙóÁ!p¯ k,´çIì^ã>fzhtóF”ç#E˜y#c Çf„Ûem‹pvÈP4Œpá=P}ÇDð(°S̸?–Ͳ¿�*ŽP{lcœ‡D‰³œBÍØCA‚}¤6Š1ëÍ~¶üt„ž P™•‚¨âSóãÂ6sØÇLÛÀY°Q)•Á# ‚cñ‹FQâÚ“(éàÆÙ„¡ìq” ;˜î‚ Ôk1uÙ³_ ‹B*r'0á…ù¢ +\ÅÂÈ–©2œN%³ŠO‚Ã&àLÓÜÇcZˆ@+¤}XQ-¥Ä˜YÕÓŒNnÔ˸QϽ»»¹!yãïE3jDã>Û=ƒÐ·Ø7´µaRJ!PÄ<úE4уù¦;„ õ3(Ìž÷Ühøøø5®ñLlm±ß±3wÏ0ÁàÐË‚]Dš/ 2$#HAz»gN¤¬© + +^ðüÂîXhØm$!lô™n%PвûùÌ3lp·ëå¡.Ïæº�„è‚÷¨ËiJ÷ýÌäwÜ#E�§;ü¬;îH^ƒsïÅa¬ÁÕÀxvÏ@‹ ryX#Ø6|6«Xv•!µØÖŸm¦…‚‹3zÚ?â³árÎìIÜx¬.¯†mMš8XDx¶?ˆÚ{<öuꟖï~úË×ï >¿~ó(éo3:“4~ú›»ç/ñüÝ›ÿŽƒw?9~žªßþáõ›oÂGQ‡ÞþÕëßß}qøùònäów‚²¾^¾RÙÕîw_%òÖ¼ÓO¡å8Óî'Ÿí~÷ßVá?'Ï|–wx 4öe¥Å)å·â^+×ƒÚ +vÀÅJA'ÀOCûRK9ÒF¢~±ƒpƒ¦®C£:ÀnaåZÝ ìE‰\E¦¼há;Uï‰Qã[â³Ým¶Õœ(7¨•€˜¬ÁÓi +y\žõÁP-øt3XjøúNW<$¾àtà‚БØo››’Ь•Û-Ò’¿T¿Ë§3†×’J¹j7™=;œât˜¼… wA‚åa&Z^äµÐa œv°0ˆÄ‡Å×™q¢";Š5˜1;NOFccÄZì¼ÆªsJÃÆÆÌI² oR5(xf¶—ÝÁ¦ñà�;0Í=X©¢˜…q°Ã>#ÃôC²ódàéäÑáFf42FÏk,1ô$ppmú§ÿ\ÄíÀÊš6\Q¬ Ù!LìnA#äV,·2.ˆ¢™=1§‹| væK5zê&7/.GVƒrrljOÒŒ4ø>ÔÑx3%VÚÉãRAy6˜p†žÆK†aìÒÌ ;÷FJƒhñX`œ v1®¹³zcGA/…ú=Jï ®é¤i3cC@ñÊ0ýNát`_D¶aCžµøt:p9¥šæÑúŸÉ¹AˆÈ³.3à xÛØw‘p¡ËZª‚VKÊëŽB§Â’C1ÛA«‚&LPr+˜e˜’·!æ'ÅÄY0þ ¼LÔ>½Â½yìLÌ®:Â-@§[ÎZª«¸Y\Åq7P•^˜V«Y;½-‹JˆÆí½â;s˜P° ‰Uµ¹'½¢õž¨&®þ0¿Pšö4Xpk ®ü&n‹YÂôó‚*f‚€³É�ýqçÅNâÖ’ñt#[õÎ4ò&Ó~0Q‘——Û©?¤Ô¢šÊdžÕ1“~,m°…µ¶y£4qOC³â¦„í¨ã2š°ÆTe'0neC¤ÛÃODö–3m©™CE4´ ¯‹§²q±ûø;ö#ŒýO]´�ZQäUÜ2²Ÿ„zhtÁb‚n»gæMžqVÇ“h+Š/ˆ@s™Àé¬ÂƒCKfCgœ Æø$8¥øÔÎ’aëÉ}â¡å>Áx¡{be¸IoËf¤2k芘vN¹4h…z>Ø Ì`E¥ÓžMާ M‚ãAmÀÃéGò,¼&ûÄ-ƒ€kØô4eYa@14ê”æI´XÕ3ÍOòQ|0Q¿Ç'×g%t&Œ;ùÀG[ˆì„ÌÖ¥UÁQFzÁ× $ÁEÚi‡G¦(òäárSX ¬À‡K‡Y ¬†+.““²ñâ0� }ʬ_VNˆóÊÀ:XæpÃF%Òqs`º!sIë`ôX…À~¡x;ÅX\Ò°É·Bn#òÄ#wâ£ÂŒ‹°æÍêfç\ÔÉMà´4DÁ@ԄΜìmÌ<»"Nd I€ÏF‰Æ¥tÞ +·5JêšëYd]ˆçÉÍè÷¼Y89û’ö?8˜Ì0¨\ðmŠ816X¤pÁ1çP3ñäã'zn ’)[fOà tÖrÁ¬CŠ“k²X�•YNEç‹Ó÷Ð03‹ýmbIÓÏ…ÅÓa yÇ †“áFL4÷Y@8ZÊOHBL1}2½°køM+å y4F_ðÑ•†S…ý|Š@óLÛR-žg~káÕq9Â`>Xw0$nqê%Í„ÍðFx‚úÃp·Ø²Ø” 2*ubð9uÐù1Þ” +êÙ€a=:x*'L” œ¾~»¼¥æÃô ŽPÁÄ>}Ô»ÈR“;¡ h1û TÓ÷;²SÜæI3À:à–©½X¢À컃ëcŠõãÅsQÓWëR;îò5…L¼„h-¸6¡ßÐŽœ&+Ov¼RçRWv#vN“hâ >¿¦pÞR6&P$'ê•Ëûü.¥ ~Òþ¡4ƒûÁ b›¡í¦sd¯žl ö7¤eÞª‚¹.‹Ìì0on¢qŠËEÒY»a ÄOE[˜c²rGÞ¯€I`†œ:ò©ªˆùà±ð@nÃ¥äι޼sH¯ÌÛ×;ªñkHØÄ y}FàúdknÃCqþ=¬Äp!}"H¢ [Y—8´#L µšÄÛ•\dO>M¯MNI9ž³q„¯Ê$3AMù 9ëÐy,ès¾àÍ$¨â“*ð¾4™,ÚˆuBOâK¤¢VÊA~K‹/eÄõ¸q‚ðtTIµÆ,cLÒ–óe(l(-µ³í¨d(Þ9ÔoÜE–ì.iï`PÆLÖ[BÓ Å-+a5}À±SI=IÛÀ[XJˆƒyN*Êå,˜ "ô'J¿¬Øp±Ý(@»$ó¨ +…»öá®±Å6zépV¼<Lf‚QÙÂvÞSûÂã¤|#jgÜðx‚ä¸Zd…Nç&Â×'li3eMÐÑ¢ È÷ž²îØ|PjœÍ‡IO%ROÔ7á…S%Í–|Gl/L,»Qƒyë†*ƒc)EÈǨ:sÈËê?U<½—ôvîR +tÍÁFY5}Λ¡‘Àà÷”*¥}À ¯Æ Œ ¯Õx ãµ#ÔVá©‘Lë¤`äô(º0É„UZ•m ú<„’'[V2•©†ËË6lt+”N|ػЖl–qÚñ`\{œË›9ñœˆà˜È ]ßäÜP1#MѼNÆ#=<œÜde‚6ɼf²`<ûÖ6…¶þ j'fÙ¢å·Fúoñ@Ðg\2¹›Daã@ð‹®ý좟¬n:0=¬:0¡•Úd¦ƒ‘cÇk–kÆáÖll{§xtßd<€®™NH.E56!„å£_Dš8é î�õ$Aw†Å-ðt¤ ¿„j=!FéÕ ÷Æâ€×)§Í´A@ÓO>èñÔs‚MÈn pÏ&‚%œ%H;BRÚÍnÎÐ] +5NSâaát†tè� þjÎdˆÂ�J'Ù:ãõJàˆ®Õ°>ÞRTd¸‰'c+žÌp—$€Š.GQýYaÄB¦•°Vó†Q@^ðQ'ùÈðçÒ¬ÄÚ8_”: ˜wªäÄ,‰¦'ˆì .:]Õ56îÎ3Ž€ê�èÑã 0íE1êÅÒŽ MeFà#R1mkN6þ22ú�rq&ÈÝfµ,¯¥-ŽHTXÓüpĉۃá +Åf‘Ü F˜˜¸oãýˆ o œ~óDJé›ÁÖU,µé¥¦ŽŽ‹…Œœ±ó²‹&qAâ<0Eœ‹ºƒºƒâ{Ñw!SMº§oÇÊ´h2 g!í$1=<d°VGØt|ÍÓÓAƒÓƒ9íߣg7,�$8À0¦ár›àϳ• lã€GQ›ãÃXjQV¬fçé>V\IVVŒkÃ#(…-£†è×]„ˆ•)º¢ê¯cÏ‹þÐ\YS«#šØð›‘Í@ÕžP6ù¤’Õ3aTð†N8Œœ»™P=í¡/“™PŒÁ$šÕ ŸŠþLx‡7\¯(/Äîªo›¾Å†2øH,·#n‰”QS˜¡§–N9¬é<¬ˆ·´'L‰ûY°ï;´Í#ÔÜíh¹_¦]n eyÇÐÿðDQØ5»¬…q¸6-6ÕÙ¤˜<†fàwÖ›ó&Ýnv*ña-ÁÜ´Kì>8òq–Læ%0ÇpkP(YÞ’<Sù†)GýÇSà a&ó¢÷ÂÞÒûÇ€š–÷ÑE9‚20™ÓH{µËéu§»²a¶Š‚Í0íƒ ]Œ@Ørj:ÑaèÁ2¸Š]ã\6lžFn`DO宑tÈÐt¥C—P€Ájƒ£d#`#•0é¸K‹S‡²~»FžÑeíióUBPÑÖ„¨ÁÑⱕUЗ¸§@ØÇŽ +w%|i+°8Ùcº•Ý —=´ r$Þx|Zôó(îZò-ïH0[AQa@RgÐgOðjqô(Ç稕N²Ä™Dm†Þe¨”–´!jf +Á$Ãàá(¨¦hÕz7£Žf°I.n‚ÑYO`t<.Üá‡ÓŸ50tjòA•[²'gÖÜE6ç®VÅKήŸ„–¦Í×è›n]R3+-UxŸœŸ^4üJÁ%ítãPZý˜H,’8fs¼V¯˜°È„RÇ']k抎îôF±$p!ûÅæ™ãÕv9�{$½×&…¢ÙÂR˜NR)¦Ö"iŽø2êüƒ¦=O4íbhy3ìëE¹Æ4ýÆpbÅ#`fÑgjc¬=¢¶åÈ)Ô¶ÐÍLµ6Éê¸r8}?SÑZ‡t71ÄÚ&:^°îŽI?æ†1Ê-b¿°‡¬ÌteýJT%6¦ÄsJÜem<“=/{e&å³¶½É„©€óhV¼ß5V;@ÈÐÙÔýdôt,ì‘ëâ…jÈ€aš¤x†ijá³5ÚÀ)¨{C¦–ÙÌ-XÁ@QKÆïXWNd°:Ô"‘L-@Â'¾ÄXÒQOxVQgj|…üX�БÁnÇè·…9= Ã#È9x„%°Ô® +R£ v ~„ƒž9Ñ£›Ä”©á'Fýº0ÌDeÑ¿A¯ ~Uwñ‰’d»s-PU—ñˆ[•2„oã*´ Ñžs¸H ™^Ôѽà1Mô{L¢cW0”PÎSÖ(KlPÙ`â[ OžvMÄŒÌ" 1AŒ{i1HžK1ÆÓ3€.š¨ „‰ÛYXƒžË$ê‹C3-dÊš0 TH|‰tmWÌd.Ô#C"V·X-Ö#„‘r2ÿ¨‘^ 5\™yt*é^NÌÓàa£‡Fê Ĉ6Å"U‹P˸p+‘qÆj|›Ñ¨ÌŠÃQËH«ÆqãªuQ#µ¢a~&›}<ž¡™!ŽÑcbȈj(_Â2Ù'‘ó¾uPÃQÔ°%Æô •+HËSäîZï6Òµ÷Tã¸`�0µ �3…9¢d•ÛC3†i¢2æ‰yàij §Ýk?‹ò>Pø3öâtU^r©Ï?bTÇ)Ä]ªiÝáa¡‘©Îä@#CO'y–¾£¨yàÚ-Q-nL€¹_Zo(º£aü/«'Ä=S;ÃêÓ´¶úFÚ#zÔÕLLíük'·öÞX$q8¦•m“ Q$gf—¦’ã³¢Çèé¸ñ¨ö6Cãm¶TíÉmveã¾±»·näÄ·sÃV¯u—=5Nï†Í5þò†UF'{Ï6Žù†]7>ý†ã7!]ÉÑDÔ¨Eˆ¢«`èI¾6�¢– mèD-|›À‹Rv·áµèo"=õ¡ éª!MœI£Î¤È”¤�5a,]ý© ‚iô°&~&jpMÐMWÿkbv=2Eù$ͳ j×S/ (é½MR£6ÿQn«ŠbjÔï÷ÔhîM´TÏ�hB;¢‰Òjl‘&È«kÓ41bmÔ„—5öU{DÏNkªÌ½ ׊u]×ÞÜß5Fk³÷˜#:vsç¨Êìn‚ ‹½ŠTìÚýM˜c{–:B²Á ÚHË–¢3þÑq6ÐIÚ…`šÒÊi¢O8(¯ RéÚ`PMlc51¶]¬ Ñmд&¸·AäÚ á²×Ä×ø`œœ�Å&¤¹G6Ñ ÌlB¨4^wAÔ:Z»ÁbSxwã6Aá=4¸‰(OPr‚Þ€ÐM�{a7Qï �ÞÌ7 zoßã›pýÒo"ý“7 Éè:Ú¯×N‰&3¡ql4‰ ]I“ÑøWÚÜŠÚ5Óæhô\<u]ÚÌN€Á·U¹Šä©©ó©lºÊÛDJ–˜y¹F¶SÇk5Ѧô`tÚEm½ö~A}ÙSõb’}ÍÍÓ§!ý>Xùhq}GþÚ³jÞÌäVÕºóD‡$&O’IÏKGFm•l.™ÚµÉ°%·¦*9å4eÖš_Œjýœ¢Ù,^a<nft¿Ô°ÆÄ‘ÈÛêj…ˆK•Ë)HTé m¿UûwÛ+×>âæjWó—Ýi¨]ÖítÖ®o‰¯—%øÍëÕ¬Ýí-MôÜö iÕÞÿ†:Sà@CÜe¸A³7RB»êø†‡S¨xß!KH¼š˜%ni¶áÚ㜗\ò0ÏAÃÇÖ[È} ¢1m¡æ¬iE²¦›d²R¡¢õ]DQ[öì¢61¢‘²K/#‹´GÈsC-싦™ <öÎÃ4Sê–Ì3¤2„[ÐLp£BqA«ëÁ°H#½5”d]4×aÙ�KY»Œ0ýmç~ë#ÖÏÝœ§™;êBLŠBgÚË©_×éë!Cí"tåb–æ Pô7ý£¬àâÔäà7¸Ã&:x}ù&ž^ù”ãóÛ“DͱaÜÌâ†ë6GT÷ÿe6G¾gּƑ¥0xÌ&LÅŠ8ÂIŽE:.1H¡¹GL9c0h<‚åûŒ%Z¢Õ`ðâ뜧žËö^Z“/·k¨ífcÑ)b$–—’ª!‡›‚ú«˜¤:ŠÊWÝ#ŽÞd&ºÓ*î*“î íYO5ƒFz}³û-+ìyË^¶Ý4L§÷Re€>3½ Ûi¿]íÏöêÝ>IE´3Òœ§™Õš]•ëPﲚþfZ6n®êCð8ɱ¨ËøLüMeÇðî^Z¿U‘ÕzšÞâÝ}ÙÝúäqLÌj)F’êlyó<…¶û,}«ž¢|s—6ÁÍH&ÆDÎm…Œž#ʇeXÒ‡xŠ`%N8¨‘rx‚æ²PÍ.ëéý¤®©‚P„ñ"S!Â`dh.{Z²@Ž’Ó{3uó‰¡EbeOưª‚¢£‰<Š +ˆÇJŽ4“°´®žˆIHtëbË@5±ç”Xü#àXÒÀi^ÉÞ3ÄF�f1¡‚Oz š"§‡šâœ¤xûà,öby?¡3œLÍLËf²ˆG²R‚•1Œ‹èCŒõbѕɳ>\@…;‹R…¯ÏÁ=AI%®¶º¢™´´‘'¼¯XQ Ž`<]é3sM¨Î&71˜/:õÀ@Ä?Œùge1ÄÁN{Qp9'¾2ÐŽxÔ&áëïØ®›ÑA5ÅT»Ò‰$ÞNGW©óó@m˜eJê[ˆ%šúO0O™u +Ä¢z3AdÈ–ƒ mæÞl2…³Àp”…&koUx”“è(Á@¨»cŠgTôÀ[ð_tK’šútÅà¹/àe"kúts¬oå°ÑòR“8Ão¤²Š³ÁÝßÛ)ŽFëH–eÄjowœ#ê*y 멘v׿Gííy‰p!h/vº˜8ï`Å 0²Œ,V‘ÙŽ“Ô‰FéØ5J5D[ÜúVsA©á¨}³�Ú¼Þ/Õ –jò£‡nW¶y\ªK…‚®¿k§Œ1¬€äc}\;ó=»¥Y?Ê^ËVì’gBÝ–Xñˆv–×ìÙ#%†²H’çXânKã ªîÂÞé®%â‘¡X”ãD,—©Ýí?Ÿv[µ—èípŒwi¶!x˜ >Þ.v1øtPÀâÈïÃyÃÞ_X±GdqÅ-–Ø%Èp)*±fUë—*.·^¦f’Ý›k˜mýl ÃNÓ’Ø|9‡p¨— 0õ2¶‚ªGÀ«©©š5E¶Â·k7B¼ÞPo±ö¡{[µUKê~[£¹¥‘µH–1–š<þËЯ6IJåc,±ò¸zB½,ëoca)×ë7Ÿy‰|ƒM;Y&°rfPµÁ‰Q†š:E•›ÿüÃ_n©›ÍD÷êÞ´}e'åYÇÐŽäÁmQ>±$˜^<Q¸‰z‘Ò€ûŸ¥5+JBe€ÎϸË^iJ®™¨0h,DJåM£DáÆ%H`Ř$¸g‚šo£R˜”@pF‚ŸU[aÜ .¼p›´!:Ú`›Ñë/^À$¨fÚ*ãu¼”$cUA™c!FkY»Â3ü”ýL$CiÒ}3VFÒzÔfø©•Úê±(däïžVŸŽ¦4ãkðumèêU,iD†È_ð5Æ„°ÀK‡-D³Y™MD<ŠÂ7&H)³ô!†sÊJXÈÄó° Žâ•p +Ã@&'ùX‘UI)R¹¦¢4™E³fÖÂCSdÖD&h¥�¦€nxb±¹BØ©Wb…´y‘¢’^ +BR^9‰Õ”Nô(™�Af§–6APCyµÌÅj›tW[ZH)/!ŒOÀC†:j±Üü^,æIŪ‹3Hƒ[’Ý,5"—,Éé•”’£#C,uø¶”<¥I¹6¡úâ„Çih2çZbÖœQqîŽÓðˆk˜7<θ[¤§ô …5½C!cÅö’°µ¶¬štÝÙý2ªÝ3¦ŒÓLßõ²H¥5ç$еÁF.Èný–f¨Þ8 §œY бš.¾½Ã0�”à+eR,¬¿ qmd²Ë3Q èŸðømïy=v'§5Ê:²€„è4CgCmµõ«÷õPž)Æ/àóf¢þ>¡¶cÕ¹=…ªgÜ÷ñÏõ„¼ g>"Ff�¨Q`í!*ù*¬õˆûQ5Õö¬¶8úx,=Û¬ŸìèyÂÁËàiàŒv¤ÕJ=tAXk)³´£$ —U½YóúùÊ¥0KxÛŒ^X*.ÉÐA#°¡T¡*¹0Þ‹8)YV|aÂÒH^�•—5‚gºÑÅéÎLÅIº‰~®¤ò†ð húN@ F?"ì<)ô У¢Ê‹¶Âó‹55Ô<™'G•ŽE¯ifb?Äx95o©I+æ(ù Œ{ +ØvЩ±…FAkl*d°Æn2“Gâj&¦š³©ùeò\K϶PQšÒ£“³Ó„¾%É·ôæáR1‘ÍÇ:°† 0šé¡}Âîå¦÷õ1¬…ü4N;Pbt3’•¹P7žcŒö®6úuUEU† †ybÍôA +ÃÜ%‚škåäÓAC[~ò½¥c>½dß(æ@.å‡F£H N3ÑYÙ%#æ"3ÄÁAjM$Ó†YB•yÐWQ'B¦–"xé˜é„.€ãΗfqÜÁTPæ×^Æs�hLø�Ô b¬§g1Ì”±×L„%,b<2Ö%„Poæ’ŠÏ ,¹•j!`Ñ~_ÆÜûpz=iÖ`s‹` àô–pš%œ† îæ=©ß€[e½‚µxΖ,“IÇ4MBÆG·¤=Ò#ÅGf í~mdñgoƒ/:ÅXowX{žz“¶÷Rïõþ3Õœ¢›šÛ4Ó[óªî*5<¯Yì†o6ôÒðßݵ|¼¦ßލö@-7’Ëå†áØé;ðó·_üæîÛ»çïî¾¢¤ÝHÖ¥®*Ê¢¢Pc÷¬ËØ–Y²özÕµ©¥ý›q2’„XU×&˜ÚÔfvbP|¡ò²jt¯ 6ç¾%ùΪ-¨MåW¾íÞaÖµñ= µdåi/…™;µiEÐUM+‚¡pmAm–¸ÇÅh÷0ÔʶµåV˜Èn$Þ[õjãÖÄÅ„K³¢öÜÔÆ> yÛumÍÊìÞ÷Ëgó1Y6c¤".Umí\Âëfk„q ÈÑ©~ýlͰ<Ú¦Ð,i“µõ³5Ÿ–¡%xt܇iëgkO²ß”ÍÖ¸±’6-1WuÙlž:ðÈóBo×mUl˜¡\ÆfŒFï×ÍæìÑh^ظ‹B½©›Í+…ó08]µe³5+…ÈLÑÎâ\öêgk–a`“oËgK{1ŽÖé”Ï~xë=ÊÆ{¸Ðð#-¾PG›E ÷N`Ê¡Ž¶&Id‘¦£Tv#!B‚®±ú³f1u‚¿&‡‘‡‘A2Ž]…´™{ÂèV±÷ÃôxA&H@tàä°C„îR=òju°U¶•ÅÆý1ec•p"\°…¤Ž¶&ÊšzRH\LGÑOÿè‡%![k»Ò6s-½ôlŒ™'m’”+ +iƒ?X6Jüaç}¤JÚ?Do&ÃGC¸øÚ[‡7,¨B„N¢Ú&;š ^T¶¨D+oÚ&;’£¶½u˜¦âqàÍm“f¸ˆœ£4aW³¦É«$¤Ô1wš²¼h²#y0FiɃqºÓe‡7N¸ŠiËಾße‡¸«&뵤ìej»ìÜœ¿Ôe‡<3�Eƒq¹½.;„GšF E٪ˎ¦QƒÍÇ:˜`®m³Ã 'F/Ì$˜˜Ük³£% —Á[ì`Ëþ'u›-¡"Ì£µA¹j³ÃX©0)°ÁFlòn›é#"•9€u›I¤RR!¿Õ4µýq˜ +Æd‹—YšµôÚì•JOð.¦uÎ3K¢8€q9å>;\_KÑ×Ã*yõ°ržm‡TÛ^‡r’µ]wÕaþÖ[S°ÄȦ«U!¹*m‘̲ª©Žbœ¬fŽÎ¤&¹Ýª§nK<C�ôt£§ƒÚ¡ß¶=u¨±Y&ª9+™”mOîC+h1”�é©Ã§cÔÓK‡`3XáD°™IDm/·G²(xó¼ÁÉ‹ºÞ¦ì”Ó8]˜½@(—QøšEo§ç’Ø:æ’ Ù´qºÐ™Hžò¯Mæeú8³¤Î°ûbã|‘ÜšQšI’}ç˜t=bx4íMë|íAÓÔÞg¡ÊÊùBMÚJÒÌÎB~ã|6,O9Ceš[ßÏ/QG½Õµ®æ'(y¨™X‰¾ëE%¥Õ1bŒù£µë%$ Ù˜€tãzQŒ¸€Ù°ªïz‘Ô¹I–¦r½ù3÷|q¦[¸q½ðBbE@±Ñ2cë%$Ds^À&Y¦*¹^hû±Hm?&f×·wØœÌ5Õ}×ÓL9䨲f¶ë…);¬ò-m$G q½<¼5¾·ëåqèÇ8^‚—`Œ^‚¥õˆ®º„Ršx¬y”ª…¿Kü"v´1Ì +²»gÌ*—Ü8ÃÄEFc¼×Õуw F쎅ñÄॢª>Æåòþc°ò¸DçûÇ6^nÔ•¿Âæ?BG›ïío¹ÑÃFÍ!ЛD¢—~ÑkŒÄ’ÓQëÚz—Z"æFrp‘PgS„(c´§ÁíY<kSW“lœtª½IU޵ ʱ…¥ÏÕ:)Å©êàÎ5n[×4ßJ•A©?¶âØþ[åZ¢d[£|ìÞ,nS”§�´VžIUK©ˆ@´"s×Ö5¢åP4Q1d¦WY•rÛ-k8SA××cÅêX{UT<ÂUFgæû[E»›ºH*™ÎU^ɲ¡ºÐeRå²°©°mˆ»1ÃsSKV¤ Ñ`)`ŠjKZ¨¥W³’š½ö°áúC öíÀÄ·=lhw0œ‹µq¯XÇKa +ªIЩ×6L¦J"f”}·º5xEï‘›YÈ3Sý^^m¦9è²y^[Ø0$¤—®Õ©ÍRí\hB˜ÐYIj +SôI§¥Xs8¨¥.¨¥fî,ndjªwLy7È,:©R…d%¿¥Ó䵩«Ì{ ÿC +a±¹cªÆL5"è+¬ê¾“ê7‹¦Ãö^ÔtXë•&^ÈLä…à˜ªGG¥¯ +ç¥ã{RÍ;aE*VJ‚UªùpB—(³^+X“sÈÜ’"FfVÇbØÍeåìöÃ`[2ÏœÕxˆ«ZnÕô>‹™ˆæçY1Ôl*xË‚(&NÂ^dU˜T÷›©Æ£]Ù¤¿Ëjâé½Tz\¬å‘“‚`õ‘T¬œ·Æk3~fö]YâœSV˜mMõÚ¶†•Qja„ŽtÍ…Jê’®l$»f.+Rå×¥šý…lL;³`z,ÚN#H’ì¡|9)å˼“Âi‰¢Ýô¯h]j<Xö/œREyªFl9Ö~ÐÛþ5\!Úè>´ÃŠÅëåΉËóΙ[›ÊÝ3ÈÈ–ôd›ùÌf +Ê8#÷”Ê•õÉúÅv%…ËÙB)~M°ðRE¥ÝÔïy±ÐG1BQOUÿÉdŤÃúÜš©O�m"z„˜9ïXû¦ì.@1À±ø»µ¡ õQ"©yµtÉ µl&.4‘;ð†EYgJ,ݱK¯ìFÊLè«Ò>6¶Uàt±]2¦K<›\hbÃ)#ÂÐSÖË"ý¤Ü–e?ÒËó‘æ0×k×^RÒÈqɉu^Sß [3ÊBÑ[6«b¶9Åš[[\Hibx¬ï£çµ¨þôDòn±ËNâ ‘m4kúÚRû Ú‡,jBûªEj×!¾‹Yœàu˶} ýaž6Fj ¢‰h©Ï°1‡±™ËjˆÑG‹ dÓ‚D¶¸XBU´òcß9›¼Ï-©5úœÇJUh£0\ÑEìê‘Yù0´Ø´%vSi¬åÔE gìx†FûM×%N,f¾1Ô-´•b½™PÅć*& ¥Ü¦ù ì(Ó|n[¼8S('a¤$…®5¡#û;²OKlrCN@X:‚Þ™t<w:ü'ìT:ýöæžêó“@Ç¡0y">:k°·ówÝó›µË 9fœœ¤ÖÚåF_è"¥L¹’¬ñ#çb±º´ú9‘\ò–#¹°¶�Ö€€ØNÆòJ<õ«•0yÔ¬W +¦6&Íd‹ªè>”qÊ›„µ©å`Ï$›7K©QUTñÊÈÜmF×§]+RsÉ»›�SHJV0›°À‰o0tUɺ€ÙXûÕH�€˜¶Š^ÖeËŸxW\9©ì3/c«f»¬]jDK"¦Y6øâî!wMÝÀ ™µiEò´é/F¹.PBêEfè|È,Þ"n¶ýÍÂåfhôo‡¿C×4Jj\dÓYÍíYÁ3I//U––,åD97q‘ÂTYxª¤%{¦ƒj»Š[椂o¤{Ó+†VšàÓ¡²R8!ɶvÓ)†Ñ—³$éÍ!ä?®*†Ü—ߪ#Xe5 P±Òâ/ê0j’¬ýXèuZ•¥Œ7†Mà +U‰©¬Qœô**çdüž(³…’&V°QÛ곎GMƒÊ¹ñª‚Äx¡ÁHî¶Q!™Y¼6{á¼ +_§7ŸèóÍ÷K¶þ0k¨aÅu.bâUÖYühb/Þ‘ÈÉ´U¸µ þÖ3Sã¼~‹‘Äw'‰•.ûX©¨ohÐg–:^ æ&Œt¦úÕþ]\^C{Û F6¸’ .ACÙÔáôÓ½E~M6GŒLþº0ÂâFSPÞKX2P‡EŸ²eF-uz“åF3pxiæaAé³H–à"ªT²i]Šä÷¬ÌЖž¹´^›T&Œ0;£1;KýL½1|a3Êurgú£^ºØÀJÛÛY¥ö‘Ú·ø½¤Þç^´°¤ÌVÙ¯–Ñ\lí{ÛNô»è(û æ�®¹’ ðVBšr^Ëʘ~ƒzx7³S†HXL–0MÂR ÙQ/-q—tÈÚ_‚{YÑy†Ùn»²Ó6ÃCxYÎP"_w©gàš»Ñ@…@5)³),Â{³fm—ÂŽó´÷7]RxEµ6GaP§(Š‘àš%U˜D`JYWdù”Úž0¿E\6½n'WzÓirBßÙ¤oô6Q̆›Ûr5b?I`[UéfÜ„´åÃRÇ’t¾¦QIº‹^’|ïUÑŸüÀ½n$qjÚ$i.ëZEyºGâ²µ}FÂò¶íE"-të3Eºiª;eB«CµtÚ+0•ɼ©O÷C[Ú*nž~e¬¸ÓšÂZiK65¹âöíVôÊ_ŠuÀ+h+‡E¾Ñ-<yLS¶,ñ¢¦âYä[›*i³µ¥Õ"̵Ø"—ì¶óˆµ)ÿ–XoÛ¼#òé~ÏŽÈÔ›"u‰û§²vIBôjá%a’ +è%aSWÜkEU¯p_’oMÝ¿(›ŠIfv&ÛÔ+lDrSó°íEÉÄF!h +-ÖªDS«±QDº5=¦©Ù¨@©ìdVœz*u«©tÙhjMµÌFÑëVÝlôÄÎy*³©ÿÙ9¢SG´sTU4)Ä*5º[µÑ›²ª_dmèÕumªëÃ&{£)-ÛX)ݵ‘Ó”ºmÌ£¦\n´©zµv“ùÕTêMvZSÛ·²íº5»0n¬ÉncÆMå£ÑÚ”AŽöm·ˆr²…såå`)·¥š£Yݯômðµ>t°Ñ›BÒÑžï—¡¦Û#AMýë'lªfGÀ¡)µ€‰ºJwF1zE¾3äKƒ×ÐH]S¼ÁUº¥ÉX¦)qž€œ¦:zB}zµÕ#@Ô”cO@RSɽŸºáðª©,Ÿà®T‹¾Áƺ•ì¢ÖÂo0¸º–~ àõ +ò7à_]Ö¿… «v�5âØm%Ðà•M'‚êLM€´Ûù W› +-l[wahèushª¸”ÛX´ +ˆîö§hpìæ4 8ÞÜIsD÷‰š£š™©qûvvkØÿÆ*U^ƒ¼È•›¡%ÚEÑ'³ÆÃQkíiȽv¬t7Mí–iv^íÐi7oíêïýÊ›”9Gí}jyMå»ê³¬ÚóÕ°¾ÆiÖpÍÆçÖc¹Ç®aس¯áõÉEصc±‘8É%Të¶ìɵÖëY‹ÅÖ_ZKÔÆÛZŠáìševãÌmÄ}ãî*+¹Q5/tRNßuW¥i<ßFÔ8Í£ +U;Ú»jWã¦o”¶ÆÃŸ´¼&. ÛÄ¢‰*È:f‹ÐmbÑ„2´ŠnÑèÈMEOÃn"0õ¼ ÞhUü:ö£o*Ô¡#ɃMZ#%}еqÒ‡µ…Tǽ´FV6Ó7Öê ›Öè«ÃusDÏîlªí×*̨5ë ¥¾)]Ç8µç©Ã£Z³¾ ³êÂu”V긮¨ÃÂú¸FUÖâ#u@Z±Ôqm%@càX§‰šk¡¡k×”š½ªCû «ìá`M€a §5‘‰ kâ{ ] ™¾&~²ÁëèË.²X‡n6¸dôÙ@šMÌhmNŠš"S¸µ‰g-0Ú&¶Áu›øÙnÂo»€r½ÛàÑMàoB°›pá.îÝ~½FÍS|rƒ³7QÍ]˜¾ ŠnPþ6°ºv´Ú=ÿϼKþ.µI+?…<,c>¬ítKÅJvdfŠîûG´T™en7û6ÍþZ¼Š’N�¾h[ÇŒ¦‹‘µ-ýO·~×Ã\y©ªbXó{1WHIæ@Û +2¥v(Q +*+ÛöøŽ;*)|⫪|X’&$n÷Nà +>%OŒÛsR +£ñ›iÁµ–ì`Ó4‹Ù$ÉÜlûTäƒk§]{Úß—o³×–"?[í[l§¦×¢™âàÎlצö~¶kÜsž6¤R»^jK¾Ú†XKÇnMêÉ Ün’Úküp6o»nGAF%X+Ô‡ð޵ä':èìF½ë´£`!+À3PIçºF<—A‹$RR^£_kžˆ!ßg1>1›óX%-¡´HW§¶î½IBƒ^?ú-‰¶_®Jî·7P—ío¤Wþ¿æ<ͤÖn®Éº€’þûåuÛS¬VÝ!Z4*ô•hÞïv¥¸ýíÐsP¢+¾sÝæˆN‡ö¨ºåœÑr»pÍm7‰ö{])¨ñúYJŽ+–`ë'Na{ÿ?{ïºkKr]é=A½Ãþc@j Ž2®ÙÿTeÙ-[†I[0‚>,Sew±ªDAoïù¹ö^1cóREQjHÝÍÏΕ׈ysŒw^üǧïüª]Ï:H;GÛªM2PÆÞ,;«§ôŽØå +ÒÜóÚHKtxâÖz¼*IܧÚ0÷Mí¥e棬|<üjEÖ7µ®óuM¼QмÂ*¸5ÂÞ*Eü†_ù7=ý\o”ÿ6e6KÌ…â^{#±Yà÷¯Ö÷ð¸Î;/è^Tz~V âÕÚØãuE$1¬žJ¿ÏÞ6Lî¤ô]®ö n{Fx²íDž‚.¸ò”•PžèÛsUˆ5úIéÉfÓ †(‹ò¨“/ÙÒ`ÃJ/Ž"R%^¼Â•]ßÓ»ËÓ»2ÞQˆ¼²ýs%‘”ÂÞ*à©;婺à~t¾U¯€(Þ¹öìÚõÜh@¤¤Ž®eêI%vG!“w‘SC3¤ç«¶ï +½Qµ!.ßúG©+‚¢×úo@¥Â^íVÒµ»Ê`h©T‹Õ'¼*>Ènq"T:›Wƒzrõ·éW¯¼„^¼}õ9ŽRÕX_=o>r´Èý6‰»ÇuË�ålR¦w4!tÖ¶Y«¥8÷€¥Õ‡BXï™pšû3k v‚í¾±w(ž;4:Á:Æmg·ºSg|yôÍÖ]tk8ï©§Ëg/C"û6ìëĽ:ƵôT_nœÀþWëõVžøp×;ºùøð+m}|+ó}ü»"~Е‰ÿ^ ++‡ÿºŒvJ�áaWA°šWM‚°)ÞJ„=uë„ݸ*'ÄM½S`Æápvå–|féND0jöðq™`N·wÌrxÚiѯgõO/5¸‘ðM‚+ +Ÿ5¸´íê®1¬±à^Ãê¼½óvqç6IÂF»Ý°!` ûþÝXg Œ0/hYˆÎ +Qp§ú²¿,Ä›ež0Ú‹.Î%¬¶EJV£VúMnLZ´4à|²g¡EvFT¼úKwm$EÛpášæ¤t.E†g1Ñÿ·Ÿµ=óC‹†³Éj˜5lrnupz¿é¨=h;Þ)ðô†Ëšß¨jeæôÎ3#6ÉŽ8¼´í7”Ü1Ö|CÉM‚%Â,3Ý´×v?/óµ—ó¯\¸êY½Øš Á¼}Œ2}]‘žÍë; Ÿ 7l‹"_›—FY·¸3¬4öŸÞ9U)ezØÛ拉8ˆÀ¬Êo>v…³˜åPÍæ—w8¹€#º5v[jNnu /^Ãä»—-|`P +8’ž¥(7?Zøˆã…WNãø�;näø"VŽåð.Wšæø%vtÏñ‹.¬Ñq)¬ÄÓqEí¬ãÂ\‰°ãâ^É´ãÞØ‘r‡-O³nÒx+ë^ß?Ò4áÛ²¾Ô`™¶ßæ6láÓ›VG°ÛUltXѺ¯+þ=çp×´~TÜQó¥Ûƒ‰¸%ñipÙŽ²Øb‘"ÒYîv„¥›(E$fâ 8ÎjõÌyÁ[é´W.3{ö}òm$€ƒ¦ŒE¯ˆÚFm$…Íœ£à¸%äVm¤Îp~ÞH"u°4�JUn%‘úåOPJÔS¼/h#Ç&冱¿À£´‘Úé¼”mì´‘K„Îå‰öž6R»¯Ô ìm$¢cÜ…}݆ĨÔÁ v˜¨sæÅëJA©‹ÈêlÛŒVq$8ÎlÛ•@f”8’(“-_"îj·NgGIE¸XBIK!ê$‘tPî°‰òËF0 =ec{ûêKëJA1‰ó43 œ‡Ø-*& X/–nÞpÛ(&»çë/þeŠIP$Ÿ NY'ŒYI{G0iHÖ×^Wb¦ý¨Îñ¼Šû|¹²Ímõ’F…Ü„y‚ÒWÁ$„Nàà 0žÔ„êÙúVMè7_0™K/_V[96Ãn¡”#í“ÔKºßLü¶äß奘4hV`Û-\Çî~õûzÄ[1iœbuž~4ƒß}YÜsYNó'mùÓ/~þòG_}õ§?þãwõý?åX7óŸGºýÞ‚ú÷Ìõ÷¯Á²m¿Tám˜±:‰P +¥ àÇ)Óì~2óÄ5á†Ùˆ¬¥€¡�ó9ø WKžEš4`F½t¥Ûß?%ÄBĞͬ-Žuìü8f)ÅâSiëÊŒÞÙ•1ëv„¦Ñ1bXÄËî{¸C¶ d`Ç@GØi³³$£gb!¼ 0(c‰ ¦WÅ‚!ÕÁ͇ŠêãoutO`ÍæÐ±³…aLjN‰²ÐË'ßâ͹ݒ“æ"b·9$QÑ™*ÕŒžJv~ ¾d}Zy¯X¨Ø‹Òq:…]ÃW$þ¸lpB¸ì³AñQ§ ·íÚ€rœÌ)àÚ,»iOÚ݃\+ºµ’…Å^vnåW<ÑoØRnmGôùv,‹„h9‡žçØêП›ÏÊ.zQ€š‡Í‚bzÑNé7û-H8¢qж +(grÎÉŸ¿¾—&ñS§:ñö×3D ÀV"À·Q SF)JÎZ™ †åÚ7N®Ij€/ÛÚnÈ +YH®´†˜2;ØY°¸ªÎ8m‘˜³À£DÍݬÀ ŽlGÔâÔõ©„ã˜P0ñÉA$ 0\½'_L‡e”e@‚z`@NhvÂÞ£å hZÃ?‚&©Û›¿²ÐÑ+ðx€¤èb�ê¥UmnàÒ“ØGC³W¹æÐAIe)ÌGA¾ÁÖÁ�Tê¹g0¾TÚ.µ7E]Õ|ýr»“®5y7=üéíñÚß¡v0‰¶Û‡Å °‚à>XªÅtHA +ÄäømûÏ‚)åAÎÂÛ³X¬Š¼‹ožˆrðZœøEÿ>¡wSì€!ÄÃð-I[uYð~í…Wlm!_]]¯BÒ<4Og–}ÀÑèù#Ú ¤ ‚À£U e[xÛQ¨1wb£CM8í×ß–á‘»Y‰‹l¢wWz!þNÀËÌîQÔóÉ€°m=Ê6&rXJþéÁiÑTóàæ9ܾgnzˆþži~áx-pü@kß>'Öz‡eû²û/[ž\ø½ ¶ÎÀçæù•MÙw@!ûÿ5 .n8[m°ëhFÀ¾«]hjäУ°ìµŸ'ä9ØJÞÐ]Ù…[šð‹,h´=ß1gsðôŸÀ@@ˆÉ‰rLÓb[°Aî Ô`sE;ûä髹Öé:#¡l³”VuòÑö͸Ùg5ÕN‘xÀHŽSà¶Y'ŒZ)ZJöÚÁ¢s¥TúœL1—ë[Ô«yí…±'àòìYH:%@.šA»†ã¥ûb[µÓ&Ó‡ôî@ ‰Õ>þ!Õ훾¥ÍÕ‹«Âôa8,^eáX#«f™YwÂ-†Ûö6rØöiju»ÏêÌðå Á#ß"{1‰µjLß®$£ø>Â'†„ê) 3{±ÑúÎ,t³?<,!ö«NÒ©‹[ûRËcð&Xp[÷˜éÊèœj<d$.b [‰«£–/‰%‹‹ñ§¶ Ógm?ù®êµÚO¶ûí(¦jØæÔÌp¾tXìúÉ]¿ÅB¡Dæêàj+Ɔ— �ïTiÉO/tÛÛöþÍgY +FÖxáTÙì<}ª«¡H€iËs¬u>’\n‘i„Á-þ]kËܵ6LMDçî,Ã?YMd±|ØÓ|”½h3ù2EñàζüË8fóhs5:Ëò”Š.êW™Šµg) ?-iî|µáÅ„Ä<cy|{Û—2{ÌA]õÛ"”„Ù€˜¬WqÞ×8Ö³nŽ‚€ñ¼xŸ1eÛUžU*aâY•ÊÇM`[gŒÜO=±»I†Éµ-]¸ýçG·µ¯•‡`XÑ8Cp¯ÛÎG¶�{ÀyÂl[”÷Í&7‹Ô«ôížØauzOæ»pB¶¸)œ-m!ÙW3¸`líÇœqÀ³Gh[;|r-{¤7N*-ÐnlM&ÃËÍmÅ@ +#‹Uy¯ÝÄÑ`†"§€hW¢^o(L€¶W/]ébl –…®“SèÒÌ·ùØål·T¼Lö§´·©§¬¼4P˜<ÊÙ‡ë0‰‡,VÍdù:BßÔ~ž“Ÿ˜h[!¸L‹æðK:m'7Z‰KärðP#½m_”i| +1ðœ1žƒÏaJÍ|ézQHeëÒÅÂî~Û“Šb7ªTa=ìçYUh¦«NQ‰ŽmgfÙDïb벇5ÿ|RdPÇì'G´›ê®&~¦ÆØî*¾$ýææ)è ~ÃòQÜÆ,q›%MYQŒê[HŠ»È§¹0 +möÔçMÞ`Ï[å„(ŠQ»òÀÑ4%añ³—·ìš…Œäá7ñmÙ¿£Qèüq;bxñ*cT®2ê4Äeà¸ax—N©Š©Ì™-â(íCC;Œ üI“+«bëö^!Rk×èþXôLiY”;¹$†8ìJöQgŸ^Õ‚‡bÙ;¨ZŠŠÚ³íd2 ‚dŽÃõÕX~“ÐÑÃ^a‚uK̨;¢ŸM®K’È.o¡C);·GE‘õQ䎲ÐòzDÕù¸R€\¤.zUX +Ù—Æ ¸ý¸g¦QÓ'ùÈ ëØ’lwLÈz¢¿¦Sˆ› +ÄÔ:–J·ØoÓxÖP¿è¾\ÐV!^sŠòYŨZg˜f+Ó€LÏÞ#GÏqì;ÙH‹Tö=Kö:õZsÕÚ"h§ŸŸüÕ“>„ +å/ñ1W‰Ð¦°—”<]…a‚¤ì:ôyQKÕÇc•uU©ÄW½¬ñJ"J`¾ešÊ"<E2jÂÎ8zE¤Úv)~WÈyÙû³UJVyYꮸÚB =O8bTŸE‰í˜ñ¨õ1Q‡½³¦€;€)ÄÞªTK)Xa¤….¶šïï›<–·üö¤®[YR£aÊá(·ŽØ=R<j}5ˆïÒµ²[!E.ñõ¢7¬VM£ RÌö3-“𹩆0Z×àÍú`ä7KÀö¼˜ÕÞ®ÆxžÎ>$mgCëTGõnV57 8½1¸ŸÏýžÐ…ަ™#Þì-¾^¦ÄEu +ÝewZì0_©%Bª]m÷ø€æ¢uæP£ IäçQ÷&mÌMc^ÔžÈÌ +ÙØÞlµê¤�ò-ÀNÑü©dtÁ0qÚƒ•3šÐ&¥8ªvDRµîM1•!ÃøoÌRŸÀ¤<µ»�Z1I£ï)€#Ûz=/K‘ç=q®«'¢FIzÐMf‚2x3îñ ±<ý�5»õŠv.æ¶:Õuƒ½4[ÁŒ&¶è˜²i–³Æ5|¼óïXÍÖÞ°~hæm ,Þséç“IÅjp´» ¿è~Ä&diÀÚ.7£`–錡¥OV²î Äð‰*’ƒž“x_÷ÑçÉR‚< D)1Šk$Žª4üjŒù:4ÁYA n½mDI;%žœ¯*ñ%2mw²noBÀÝR›CIkPdèd;kpì+îô‚¢Ù7²#êNt6¨õÆ`ý׺ã*ÊjçÄZ1èg—R€LŠ[ÒêÓŸš1þMÖÁ°¼<¦ºÉ]h‹jŒÓIZÌ0¤öF¨~âê6j•an¡í\HÍgÖ¨>ujÚ9Åü-±ËãQk>I•L m`9Ž“bñ½ÍNžÕ´Éhy\‰¹cRéP¬i1k@uÄwÿ=fâ¿y<†Ži8Rµ�>cúÖ'ëp[Sà®qÉv×XÞÍy ŽÈ 7ÀSÝ�_p`öÁœý*‰åªcÐN5³Cµ…‚º¶�ÒàPs„2Mƒ:E ˜›m¹‡w£“=p·±l:ÿkåI•{Å]„Iû¯˜„†=@û ”¿h0xéx©œ5Ðã¶!ñ¥öæÞ©À5„êdÅj§n+yœç Ãh¯Ã\T‹Õ@ìŠ"ø~À‹µ/*¶™»ß¥HškÈ_Ó\;Nm‰¥ŠÙèêÛª4k?¬e_ màøt{ôbMµAÁ—ç©å,ÇVíps�(&ØTs+ûCÿxèK1¸4ÑÍ47õd1'†Ÿ"«2÷Z„¦§A ežˆÕ>B §Ÿ j‚¶X÷èì¶/¦Ó´d¢ž¤)†P”§ÝçíZ +¿Üå|Ü»f¼ÏÞ¢m+€†¢/Ú¢öè$pR¶'-Œè†&½8eõQ¼ÒvŒxoƒàÇÍ•òrºùƒ(¼{Ä"¶ý^>¸üµ{£®£¶Ž}éž7 ŒfÑî&Ö¦¥»6’ü¶OÉ9úƤu9'šôÀÏéÓ%¬Uò×Þ¢ Xø4{d/‡‘þƒî½myl¾>ipªèEô™_†r…?fb\äA!^·Wñ¾?ÝA€W`‡· õ¢µl³Ò!¡s’±¾;ý>fþe–ÜJÔá!‰'gßâÍéˆé—l66“ž¤{j„¹£YGD¯ ™1<*ze•tæ€âŽ›™ÖÇh�``â€+i¹Ù•„hRSb93h}ñqðÉöq�-9s:¬Tpãb`ßṤ�Cï%ÕL§¸ƒÖ-CaT”NQ€ÀÅÖnEo£l°Å":Í‚ÂäwÔè® žGM°‚„hy‰÷2NŸï:Ì{2ÒŸi\’xù¸}%×áù¤Åî©Ã«µÝ¢:.�ìUÅÓø…Dy&„"†z‰_°"–ž�7Kâd]-< Ñìš ÍŲ.:* DÇá൰p+ÂêP(^ôzP Y×}Õ ë`X÷ñ¶ +owO¥dènÃNü¶nÀQÂžΞ¢mö±èÃ:G€—I}ülèê•0^nCÂ|ˆ¹€A¢`¯§?ÌOeìÏžcÙpŸvµ^d‡-Cäš!-ŒÖ“ô¾1š¹VÐEÙàì{³Y©¢üˆô™–ÕnW¼°}}û«ùÌ+Xÿ +h›.ý Ÿp'n«ç¨ÐÁ`ÛW§c]õ‡B1µÁyUÞØäñ>K«ÌðÉ VFæ³¥Öô4ÒÄ<ùÑ +7øIKç¨*/\5´wèIÓmRƒ3¯@²é/Yžv,³Â…h¢Š¢Þ?XwehE8ÔöÄTb$âîùE¶5²¸J!–‹¢ß%´5¤âm#ø+!{ETƒ±XÌ$³™¨#§Á¡�ž75în Ù“öB{2)•]ƒI{r[€äÔd,#Ç ´”’¯SmåA©Ç´ÚN'3&§‡k4\+€d¡h›˜Úl‘J‡ +\µBs,¡®ƒ±#b[Ã{V%e§l:SLxTÆa<ƒHI=ñ;OéF›ÛÔî!xõ’²T>›xFíæx¦ú\LNòLæî|dÍ ôæÍÐóæ‰_BVEB5xó8sÌæÂgæó”ÆóÌ„’O‚˜Ùspãͺ ?ç?žÓÐJáÅ6Á¸æœKHzãkîl«_ä´š¬Èµ=¾úSŽ1”»cÀˆ äñUìðÄÚÂJ¦Íòe�vÁµ¯°[™|g·š¡$QÙaóg¹ÅÂÖJ–tÀ¶w'okëLñ4è¢_B‘…#ÌL!UtåÅRM……o0’s�¹˜WZK>ð$¹µZT-¡&ÅAäÜS¬:UælXšÀÍÈ>>ÿSõª¢ä‘ ÀÓh± +Æ•ä>íJÙ,E9k5Ò±«‚Ê€")/¡"gvôƒì€mpи±²Wh{k’ñÿyÇk…£ä¹`Â%ÚUF[›Ê}3gp>V+k§~õˆžjµ /¢ +3Ar—r„Ô80g" +uWŽÝ* z‹èõÛÊ<qÈÐìÀK(WF,ˆQlmpñ…J²åb|àR¶i§_+Ò¶DUò°p[ëíå.fWÖ¿¼g²iè`©…›øÀ¸a#°Í¹ó–šzeBžÄ»ñ¶.oïE/Ájb¡¾¯÷~=j–OMÊp…È¥Àª +Úí×Dä¡+ÁuGf«æ&î ömwƒóÐ3þpžµC¢»cȆUÁ·Z-º@ªÜò9K¿†ˆ¼¿=µXÔ_Bϧ·¦°ÔÌ·BÛµw¤”ðŸù‘Gÿð©…ñ‡icÀ½–yßk«–KXd¬*ÑMì†Õ[HW ªà»Ìø¶©fŸkËþÛYΗЗ«üƒ…r㔪L +í=°ìZÄ^w{oiV˜61êk_‘7/ì®å|ºµ=Y Øn!Ë¥¹I\)ïd·sh0gmÖžÄW9„i)׿ˆ3 NM]"õ»`ŽZŸríùV´ÞXÌçi_žšÚÚ:&¡zFTÌ„Ü|¤¥ÎÚØáVâ»GŠG…W³¶æãë][üOG°€õ{Á½nðÁvýLÄBX|á–mÀGlWÀYÄ]´"5ÂNˆwvô3p$†€= Æ%`Xv6*@aVKÐ4ÁXN,ÎÖÔ$O0Ùtû€!zã!)ø—€b +>* ¡¶¾. ª‚ÏȬànÀkë¶P,¸ÿ�6[#ˆ€YÛ"ûš6b¡€º{IÌ^ˆÃî/Är?¸ 1Ä–7„1„¥ÂÛ¯wHÊ&Df·]!l¿A¡w €¤Û<!�RC¾@!g ØØmî µk +й!‹Gì²¹xÔšÞ@ãP®(åm^útÉm�JÆ»üzsÔ’žìwÈìù¶>pèñ,+–=Ô*"&~Sòp<}(— ~(¹@ÿ¶tB (άe¤Çh® +&ÖbVŽå°0d±¦…aP•¡²GvÂ0w +ave-Q†˜m¥3ŒÒ„Ši˜Â¹K÷ìή>»þÌÚî=(´Ö‚ÃtѶ¤†”Bezs +Åí0.µ-’‡±«Pl[w>Ì{mËüa\,4ÂÈYh8„Áµmã"žgö=ÂÄ\h™„É»më%ð…ÎM\z>q–p×:ê7qC±Õè³¥¥g%žæY‹6ßÒÅ"þÒ‡…�³h[ÅfX'û$º…yFáýÚS³ðë14]4‡C[î¤CBoÃn‡‘ËmwÏ,„å¶�™GM±E¨ “ +¿xm3vDÍÞ¢^aéVú*¢ì‹¼Olzöá‚ZW3"úh™*¼¹N16Ú£v°¹±ãzªò†PØAinÓµ5+rqT¬ÚvãyÖ.r¼—µždmhܾµ1ßëÚ`×Mø>k£~ýÂk«?.“d ¬¶yl@/„uÿü¶Í +ˆ;oE_|z˜Y…�:¡á™„ÎkÄu¡b’:9]û1ë¬f¦¼}œ¤—$Q¼Fe´õ±mšº!6ú`Âÿñ=ö€`¶“Ee%y_SJÛ¹+ ¶e·j_Fg¾<QExú‘\á(”†ÛæîÖ#|µ®Î_Ð5WútÌÂ|òE¿~žŸ1qý–Ô‰Z—´¹ð†ì¼ƒ›£ÌÕkSÔ²$À„EþrÜ›#º~ª²Úgü\jÀdÿ�ƒx\9üa¹ñwê騅7Û±ö2Ñ·puJG4ñ;¯¡ù–õ&í¥ÛrÄ#SñLZd¥Êmš·øâyÖ—ïåSããóÇËu¿‘h³á7àÝ�¶®“†48¹™œCsÕëZ£ÍÒè\ŸÔÅÛ;kÖ³tA²~pŸ…£Ì¢¨^æ<Hãþ1sõá<°ÛÊï †âi|ÏÆ;˜›;>À“ŸÿþU|u‹ Ú¾õuW-ËŽ9ª`ßmÿxåÛ…fËIQ�òQpa쎸ôÓífÚü|Y_¯W^ÿ0ï÷ãnó›ú@¸Áš™¹X×¾Å=J©£ÇÆhdFŽ›NiI°§Î^j¸w^û½m¨´g²ZúÑ6áÉw3ë÷ZJ‚²ãŒG©Fq’†š¡nJV¥G8¨¸@è¡jv!«33ÀÏ´/Ü‘ð4Ó¥@$m‰V$[’N“” –Lyµ“²(§Ç·º` +Œ*L‚@¶HÂê`8wQ§]8ŠŠZvà™ƒŽL±ªªpª§Yþ”‡Ž¹ý!½PhTîiÑ<´oŠ;-Íã=¥û1Ö‡en§ÔÈG‹^‡pÍdÞò°ô9èlÇt¢*p8 H6|Js ÎRG‡3Ðw81ÖˆÔ¡ÍNߨúøÔšp¸×ìå[N7BM¦Òd ¥ »W1¼-M•799²j'”¼qwIª%w4•Ù{@óÐÜÕÖ»ԥÃl–ª¼: 5RíXª_ËYøŠz ëå%ÂúÎÝÃH¸ÁŒ”^Ÿ™#Šdæ[¨@lÞ±þIv4íß>G5{2UÂ+~¼Æò›ïÎ-œpm6–%hÐÍòiÒ–gû•wVa“¼ªÙ®fdb]Èà}ºúÏÕ6ÛD䆙±‚ªç±™às„{¶Ñ®u>o·‡¤Ÿ¡Z¤g´°9.…Ûi{¯‘ÚN=58ã÷øäy½P%xc¦1€ßr¶y“z0Iè²¾E(%�–¡‰Þ!ÅsóvéMøŒ’vE“£Ó`{‰îEå†`ðˆa=I„›•‚FÏq?$m$&î(´hì ¬d þ<èdä¸!HDËd Ò+â l,uÙN[n—½Ø2i9Ÿ¶d?ÜyodHµUEt>fFÙþŒ{hN'ŒŠ¾³Q¨N2u<‰:~0?@÷Á:Ø5ûqÕWûdÄ6çYa¼•Õžn$XãùøÑ¯oîöÛÝÈòý¢'Z—@th»ãº£s]stÑÛŒ?xø¹¡Bh°nÅø¨»-#•Õ"|F´óɨ ëô‡V6jÏÖJ·L¦=t¾Bæ#þCÙà7Qc‚×H\›µIóΪ“*e9(w‘|‰"Á9‹´©¶2QJ: ë)i»Ò8<P4IS¥á¡Ù×â¡£Ït:ç…Jq¬qûŸ™N"‰ÊЉ÷ªé|¿>”nI)ñ‚¯bé²û–ìu†Ý›>û…“Fá¤ÝGó©Isøë™·2ë}V*ÕŽgÔ…m‹Ò#¾šÎ«ª85ZF=ŬgVé`¶~1Éåk€ÔyÈ`fýŸäý&’[$š5«&êåd9équÇiöË,…߈O PtxOŽ>’ø„Ú‡{ò‡‡UÇÃföaBö$9 +‰É`00'$–ºzgR±' ô\Çr¥Å>O +_¢vû8D|ÍëyJ˜½`&-P@!uˆ �w]šB As‚*à¢&…rrƃ¨pàŠEŠ'¦ÓV“HDZ?´Y)ÐÕ#0>4º6œAy®$”Ù9Q‘ðƒ¶x€?ˆ=¬FfÀ{à¬ÝBæV`b¹¶’|9&£H¸¦âŽN[ Cˆ#½ó#—>�9yw>3#Ž“”·9Éã�w$=1Éßt{^gw—}ýÅg°?×Jý´èC›Ø@.qÓVÉ´Î=þÆ6èåmiÃ?© sÛÁVšÒŒžœ¨G3ûm;FÎDÃ~Ù·¸’N:æô–_ž´6‘ìF9¾glmcÖâ ÷Å) m#µ‹žÝ&}Íá°ŠKdÿæñ¿x»0)ä†ú™îÊT€¤Oêg@Ãý9Ü<CùL¤°4ÈFÌ[~òJöHh<€.ÒD噤øZ«"êkr>ÿ‹ŸéKda>t{š"Û,ËyžšµMo!‘åŸAöüYNê½uðo€Áùó—òVŽTšûB‘ )åW*‰Õû ¬ì¨PË‚4FL(PÁkГRHïc™ku†œ"ÞHl+–‘wÔ¦ÂXێТ êVOEIˆTMÔvë“Ìfœš²Ï‹É~:€)r礽²æøÈGrLÃíPX씸Êb! +°óEqÍCw{þCµ¢2{`ùÒüy2@h@WvÒ=вè�Dq3np:L°ð³ú•ìW'_g.f¥_>Î9¶¹Í…�Ç!íŽë:Ë£´Ba�%TÞüüðO�l †˜×& r*ÄÞ»ßcæzvöãÜ<6ƒªtšù¸RÆæÍ™¿@ãN¨ñ³¾óphT?-èèçî;âu4‹D»^—€(pcKIªÞûŽ˜Fˤ9e³ù“ØË2[GO«¹‰¹‰5>—ÐjWßœçtžèCûú«õ^ÓƒÙ²ÄÈ[|&»ª +ŸÚ£îõüFÈ€Øãd@§êFËKµÈC4ÌІ^ã§1K,©ãƒÉŸ;m_˜ +> Þ5yýüy‘œY“vð»ºYl€2UÂjÀ4Óëb{Z«ýî•ØíƒË¼÷}'Ž”[ì< Æ-96Ùãçë¶ŒW^·÷þ V+ßÄjiâÛ\-Öö«Ë>n0ša}Dã—Y´áëjÝøeÅ¿ëFî¾ÑïQ¸ÇT‘~lˆ¹Ò +sˆÕ‡™ É\™íCæÊ^ysNé8‚d—2T‚óIÆ{yƒºSå®rèÙÇ․ù²s¹ŽN¸æã’0 „¹øZ‡@|¥´ÅZ1g»þ ¾Ò庴þSÖå$ê�(! &ÆåàH J~´)CÑì°(äŽÄàPuA¼ÜnQbrÀÄÄä2|tÁ²¼¹¾®®„N”ØC¤¼€“–(\΢ÁÏ|…) +‰œYp-‘³COÄ:å‰Ì„öÃr%îÐÁ O¤&§±7Îý¦0 U8L"ƒTõ¯}>d†“¦ðDÙ1ñ—uH«ªËGI÷êð{eÖ¶~4,æ·IóBþšS2wÀœí4vij—ú& Xz’„…)Z15{µìÔCÉD¢IRû˜Â§ º§h§XLxð]\Ñ¡¼AãQ%ÐÀ“-1JP‚éV¨^ =*š“r +HÁF - 8ä&Ðm–ÍÏùd6EøP?dL ²†ƒu‘:ÄE¼ß¹:ê ›ÍòYÉÙ&ֵ͘yˆ"†ŸÞ×hÔ÷tdN¬í‰‰C*ËR‹Îª§º¤yÔ†ÔJ»b‚C©0.üÛ^ÎR1fç-=³t ¼#½r®÷Ê<’ýþ�n²³…ãi¿ËZ²›Þ{$MAŬÊ<?Ú +wŠ^*ü™,«‹&ËùÂ<?Š0ð^Õ/ÕýÊÞaÑSÕLʾ4§Ãº.ŸB¾�Ä]eã°À•´¶í,Øú+ªb˜ÖÃ,G:ÆÆ_Eƒa-=¯è¸(ØÓE‚³½ãòÑüÈG;ÓÆq"f‹ÓµëÇeñ)ÃWü“R½Úù-…Â’¿`eÛ8®A«@èJ³íGÝx.»ÙªG"œýÏÅyޤ »°ñ\±æÔìµ8ãDð\_q¶ÛÌú·w<×5›‘–Þ}¥à¹®áMšSƒÊeð\‚Œ€¤¾Ð3Ê{Ï¥¶8�Úâv¢èº@d›ÿ‹Kˆb7@37°õX‘kX“PËåzx,W(ÜÚ’¿l¤è±>½u~g÷õZEŸß¬"-Þë3œ×³šå&ï˜ÚƒÂ}±Ô'gŠ’Ï¾+¹óš¿dü†ò%Ëö‚áµQ+ÎÛøÛ\͸“]õ¥ Pp}؆mSrí3<×ïðt ¥·ŽëÇ~:®–ÌM.nkü«ºß¼Œþ={-ËêÁ˜ fÿ”•[ió¢è*§Åäe))ûÿ@7sΪ—‘^cº¿MmH6åÊB¯TX‰50§#:]\š´þ:…/âdD8ÇlžžµH†Y_†Üº$Ó¤¬IzN½ª‹A†èV½—”hàÛ»0©$çvV;‚¦Vrz";Bã+²V”˜41«_MÒ„³‹© ×ôHˆ…v¦—5†ê’çIW«º„«n¥sû¤M]øQoz8¦¯²èÌd§Ír0åøÒfƒøOA—=3‹‘kj—uê €¤)¿K¡®ö,…º|Ü-¨äêx‡;£³ +ÿÃ)ç×ua{o•ºù¼ÿÔ‡§íuͱÛ7jæF§ŸàÓâMÝ“�µF<ãÁ Eì?}Ù¶è8`IÌS_À¥ªñ8䢸føé±QÂ{fpâ'É5\̶¹Ø¸5,KräÂ•Šƒ.!†.&Ëm2c{¡÷0ÿp·Ì +‚nãU\á\êZèhª¥è?7#㪵¶ìÄxÐýÙwÎ +²(Mí1–vLù:jYSKæ;í8—ÿbШspI÷d¦™× ÈË'·ÚÔ@ûòÑÞïpxŒA ê ÙÛÎÒ̶¨¾T ²±KSô_z¨™Vg¹ ú@¼áIéNfäpÙxM[Ð/…øp$-rx-ãá)cývjˆXè Û½£bû9×Bj9KñÛ¾"<ÑÀXôÆT¼«<‚úhÌÝ™ïµegR#í¤¾pµCЦŸõdç©�Ž"ô˜œU +§(of÷v?ΣšjiT²“è\,·zésÿý´O-‹NìÇê¨ý+(¤"t€{¹rÑ„³P—sˆ›¥<½:yØ2¿y *O”]@=k�Ï5C-¶Ç‚·è"¶À‰n0ýü¤¸¢ºíÓyìz–-mÝÖ¿›$¨ÍýJ$XäÔvw`\딈èº=jÐ~+ÐeÙ\’ÚÊIcÇPµÃq,$† ¤IÂ÷3a1_Züi Aœ)(`„ƒ9¬NT®˜Ù;è{0*—‘ýH=ÙÆù[Ç^,úÔækªêÍöfG®/Ÿ|÷zªÔt %?"®7ÏMÁÜ¢Ë㼨,(m²MFŠ(ÜHåaNÈ$ÐX 0—ÑYîNeK[– 9²$Ô4‹f+QÓj„Áz+„:.W4o«N®Ì²©6¦ÎÄ%¹ŠâùaŸâ¶WëEØ»‘€Þ +P÷$xûE;�h%e¶a¶núØW'ü³ï‚¿ýá%á,r{¯"Ošå„4ë¼Àé,Ýñç³B+2§î¨O"$Þc:„7åKú0´]¼iaàd¿À5?ƒÇ¤hÑD]sÚNðÊ�/QZFâTŠ,aQ”†?l/C÷�ÒEón¹•"G*³ú¾P‰ö¼–)ŠR’$"Äpž@-Á—œ [7—*²ŠX¸P›mêèùQd¦YC.WÏäòv ++˜&ž°ê¥ÙÆdrR©7'e1IC†Î¶‚ +R$VéªK êQ¹Ñ´Ì0Ê0ŒW! ¢÷VEnâðÎ`6N‡ï0=|–€Ê'7Å×o¶„ü,öM÷)�œy±t‰æJ1`ÔEE¾iAxlM4£{¢Ü‘Æ>àÄöÐU@(W«XR�Ý JáKäŸ;ø¶m¼S +(†ÆxÙÙÄ„jaÐøª1Þ×u™W.†Ieì5Þ'„”(ód{Äbb:o9†û¨Ù‚°2ã¹Õ¹÷y6Í=[?"“ö¸éd´’.Øt²”Ö¸Ÿ_êVÏØ‡ýˆ@ [R�;¦ÃþÜfUÏ>:x1ì·÷¤¡BÞð»å6ìÏ�¶s¦wx2EÃ~®¤ÅlW„ôˆî]ðºd ^+<öóó67Cû³úQ|áf¦6_°?ƒ×²¼Y+uö[˜ù¡žˆäÊxçög +.ÈÏìéÀsàÿéö£Bç>…F¾±sÄ=vÆ|Gþ殀I±}Àà‚.͘µ�a…ÎÊÜï—§Pdý‚…„øû5ö‡U¬ ¡3ƒs€`·ÅHCÑnØúL‡ÙûT>çjX™Þâ!$Šì¿‚«ƒ»Ä¢ËSŸPtIåÞÑïè¿Kúâêúç=ºØã<›…aèÿ„·ÛvÑW?Þ³ÙÕ,£TNS¡ÑðŸ9J¼?šî ùþï$ø£”jYhÔ—´ þ-„q\3É¡@"kð_Õ2 ŠÊ¬šƒ2C(è¿•ÞöÁ¥…v7ÐZˆýk.>³„x_R¨µÄþpù‰FÚžçRž² ýItÍ54é»C;B1ª�Ü•lú›þÐÕóH˜ÓCÿO¾ß;ô¯bãæ@µò>ô‡+Š ¬s§)†þ° ‰š +¨ü5bä/64:`ýšì»4�*21ŠÝ§˜˜ý€9¹£È&õ.�‰ãvwÑ?¯£Å_,<ÃÃÂÓ²Á;\âeb+À¹ýµPOB[¨”06çñf—^à±5à“jXJê.zr�nG_‹(Ü¥»—€•*6T\§8Ï× 2$DHƒ2/=å�âÇáC_€ZÛä�W÷é«8Þä�„m4 +q÷švÛæ�4ã`~º4êµÉà%³ÔDNª24r�:À¢÷²xŒ˜gŸ°"…ØÒaª1€úJ"6kèÿéMq‡þ¡ï>Û¶e-˜ÎÄ<vkËZÓš¶@@ïý¹e-"’ŠÙ¶¬Ùd`hB§Z�%ÑàבìÐÚ©Ö(Û}ÞµAQ>ÖØA-¼–Ø k ßÖšSƒ¶Ï j·\ìò¡¼mƒE¬!<ü‘éŒ jî³!ªxPàÖ5ÈÁS›¤³Mò¾AÍ€š…ߤÆÒ_Ô|ÛKœ]ö ‰ÈÚ¡æn¡ùc—ó˜û5v¨`C`’QY;ÔG¬¼«Np¶éPóö8"KâMí;Ô<”~@’8Ýg‡Úe™B;3±C]HgpŒô}¥Có°u8H˜Ðªæ•ø†ÐÜoZÕ[K÷/hU*zîU㬾ôf5‚qÒµ6XÏ—ÏêUÛV07|Òœ`BdíU#è ¶îK "¬-l…ßîr4«æË.‘ж½øhcߪ¶Î^5–1•ñ;<ê“qÞŒtæ`ŽemUÿHw÷ªí±àú3Ë e^ÿ,ˆÕ¿û�þwmAÿaêõ qf²y3–‘}ÁÞ¢eMÛ[´`½Å‚}‚8(“î|t(ØO&ÍÞ꺡`¯ó\šÙ:̳ÜýT±×½0Æe÷ÒU'Z+ö ´IO]…Þ´¯×'È`ÄkXÂ3–ëÓðÐt[¥OH ÷Mq>¼Îw«ó ö5Û]æ·P9=÷Õy0dþïb›±:ï1™+´°²ªó€ÜT“êd“28Tç9¹ÜroP+]±:¯›¤HÕá«®eú”'äŸç¿Ù B””Œ{Çœ:½m'½c(=S^ëô + fæ8OJî»N¿ùùR§OR +“¤ôyˆljÓoAV¡NÏ»!Fúe˨Ç:½Ýó‡‹ÑÑŽŽCn±No)–À‚Ãm_°O4Bn +±‰g,ØSèC" IyÈZ¸ODAsš*Ôë-¦óœ…CDʱ\oÇ:ýúó4ÑÖr}"î$ãíâpLûr}"ßÌ�6)òäËõ@:Uxüäæøúá74ñŸþQ®à••ö1¹_–ò¶*<ˆó²ÎZ„%lüì`I/–çyD]Q™(i0ÓC•Ê^¨}‰ìa¾Ú7NÀ!OgâI$Z„YÊUvÍÖý$®š@�Ý™ ½u3e ƶ-Â]·xAÞP}¶…¦óÚ1Ð.C?´±‰î±v+¶0ÌG_\Ìþù‘k?Ÿç¸2j»g‰Æ_:f|N"oVµ¥Q•±W *è°ƒ³#ìèÀ*«}ˆ6³o”W¨Ò 8Ð/·ø=²ÔõNØÎ{±5X ¬mJ’Q³Áâ9ÒÐ`܆0]ÎÓÏÔyt}lMhΆjG¤:ÉçT#`ÙÓK<’$ì©`Ö(i”^O¨q– ©²Ì6¸9³¹ö, +©dµ0 =q 20Å´žÓôÀÏKÁ¬Ñ‰a$Àì¥áZåP¯ÜƒS`ªØ.®¦`ž£ZáUžŒ³Â6_&bj�ÆMp›Òhæ´ÎÃ5¨D†Û«û"—Tƒõ Ù¦·Øel‘Š0™™T±ˆC•<™›båhª½ŠÉïm°WPf3§š‹\Q;sÿzf¼ºMêÿdi™¨¨{š$¥;± “Qäæ§RáÅ/coÐã0˜å¶LÉl“†½lá‘„¦Y0âþÈa鈗Îv¹»®ˆù8œt•ɳAÏ"əـÒγ¤Á¼% ÛÊ™úe𜧹]B +–ó9¯ä<¬ª\x ðd6ý…±uÉmÑ(cÉaácmWÛ·7«hzµú7¹šÏ% #³y©…uT¥£žøBŠ�xÝ(2Ð +AGÉó‰Ö®½)Á¶l1¨d˜|&¾I +}⯠¨¯ÐYåä-u€ÏÆÞw—2ãÕ,tÆéCÔDá^:*s…_µù‰(࿆3{UáñˆÌ7£T£AÄÜæÂQ³¦iÿ%u2ÿ«xãî`¶/8î"DÆþÈv +ÞŽÄÒ Ç‡2±ÀO\¼½KPíîÚSg2Šj!0i.àY;¬ +‹[sÕxµ‘³LÊ·:)ßòŒXÏš=cÉ)É[¤i!¶ÔR…|>ò_hƒYÖª`Sƒy¸dHJ!H‹ýWþ¯Žp—ŽìÊ55›xÇ[ŽCÆÛ†4:ä/sÛYè˜q¶„!æõC•åpq›Üä°À¶jq7LÂ¥@ûÖ«áÃÂØaÖp{jàHå‚Aäè"Jdª”5õ`Ƀr3JÒ9ø;§;¾…ÑDmv—£#K0yMˆ£úÃq!»k¾¥Æx(Õi»¬ÒÁî¯:‚½åÅâ +5ß,ÀAÇIôÚ§4Eè¦bþ) ’ßÀý¡R£†¦úYxJÁ%o†ýRöëYŒ—N(Ú˜•Ñ +êŽGSä{‰Ør-REDÇ݈BP³¼lfI/K ‘Œ†=¯#nTgÇü6ütÔ^³ƒ æ¡ùa;‹ê<$ÿš$6è'„[Ø0³Iÿ¢\5¿oÉ8§™ÑùÍíÚŠ‰_\ŠQe~ºÅ¤Ôj¹a LaÓ3kÞ.MeÏ®”á’S$ –a‰1Âs/q4f’MáJ.ñ:á&£f¥Itf\lùZ¢ì…II:*.\NN÷ôÕÞz¾Gç%-PÙ[TQH»k«éUŸâôŸ:/°†Ó{JH÷0jQBEÁEÚ�dIPh%;?Rƒ-¨?ZbÏ®U£Eœi—Û2 Êuá&Ñá8!ÈÖý^>IÍh´?2¨—´sšßÉð;aÔÀÓXèdJÒðáRºñoÁ¾`UM˜†±%‘ƒæDV‡î˜!4×¥‰üsžê2À¹øºF¡§NÄÛIÂL©Õ–5üq‰ÙnËØx‡4»1ÓÂ]›[ ÐDCÏ,Â…ã¾N·ÛJu ¼,¬{”‰Hª‹ápàößkØpÓ]|Ã…y¹’Ž bÇ�*@ GOCE¤Ü‡C ”BøŠSâƒÔë,ùÍlX>u_ÍæÝÀ…--GÚSšþ¶|£ÀÙßÀ¼&EhÓt"*s„~oZKVÇë(’Õ&Ã&]C˜ô¯SÓ"óçÑî²¥r�Çñ>ÿ¸>I™}ʆBãTb%=‹NÌÏ`¢ÙWPêÜ7?oâ”R™a¥Í•ÃÛG…ç?D˜ÞS™y{³*2$Û7fÌ׫[ÑÀ¤ÑÞóæëÛMP§Rƒå;‹§å9} •š6‹°ÎšiB²ƒÑ·°á’Â;(&Ûnˆ–EŽÁ•°›EGŠš~qo¢mlou»±;Š™…vÇ¡ ?˜Z‹ú$«eaH¯¦wS¢U|R·37r¤hàT%‰FÅô%I‘Q”Ã7C6°±µ§x<»jZ—FÑŠÆžö˜L©Ù; =&+/Á6‰] ‘¨]" +c²lq_Ü#Ìq–²A¼w‚PxÛc÷+w <GšQÊ�ø…ôm½à‡3|,4Q©·3QºõçYä© má^×&.ÈãÆn ‹sÅØ"›™¶E`G�Î×1DÈð #×Elk¤CéGã öSòð-ñÐŒ-ðÐ*íl£.ÎsÑÊ Õ˜ ]£7q¨«4Øhó_1ð£xhW@´±ªŠö5–ì·`ª-ŒAg™I·¥³Á²âV*qIõ@[aJ–ð×[ECȯ`áat>E{ +{!š°(ü׺Os�¨RC¤i†îEb]Ø^cß„úþ„ç|ÂÒ÷){Êeß0ž¬ô5õ€aPfМÈéõú%}Ã`íê™CNü”ý€–2 ˜S7É6L½PÔ5àgÞÿ°KÛÂQwÖHÇA‰óB›+$Œ0NZ“kŸwVØIØm™J_Ú¤¯ö‰œØ®+`,>çˆM*Ž +)9,*e�±EÑ+¤õ"ò@ ÀJRyfS«##§°:6“Ãy ÿe_7_ÿ]PwS f3QÇ{åŒzN¦•eñ®,b7꫞Ž:fa)¬0á®e‡ ªu_žÁà{«YŠD³ºhOB]HUx¢ªðÀº·å¥‚n&è”J'µmÊTܶ@°ð/{^K]8ND°U¿„t|W1£ÿÖdª’ívÀµkáM”@‹ÕÖBÝÔî°#ÞxzÛ×�ËLÇÍ&ªtk‰tÎ*PqÛ/´Šb=’fø+,á_|[ÎÄ,ë>sãõX ³®YXÒµžšˆ¥ U²ÔÞöuYpÊ”ÜBYWî>•A:}‰µ4ŒBË¾Č²……§¢ªRb…ZHyØròWc•Ûƒ¢Óƒ"[¾ûj9QÓTbg€À»±RÌ¡6;/Tšw•ýr¤Ùt,Ò{Î/TÛ?D_štíÈß/ÊIh–n{ñ4kσ784�^ªõÐ6!¾ñ™†qˆüeÛ}ÑÈM¿,½éâbÊ&˼á¦$ÚuY„Q‰%w ëS™²¶£òZÄðW>¨šðš‡ÆâÐ$/ªÁXc‚Z0¦å˜á6à •$Jf-Zz‚õ-ÓæÁ‘¹- wª¦*ÒhEªöDs_Úúbo¼dÚ#ø³¢èê’ ÓÍ› £ƒ:áýÐäBòaž8—g³7SůàQh›QhuSIzTéùj¤½9Ü07u“í¥ØQ[èÜ<‚ÐK²ÊŒêÍØ¶.‰«ðÌÀNµ0 õË7b ™º’R¿Öý‚úµåjÆk§§êBùZìM“>«lgˆœÇö¡ÝNwÃtªæž‰ h—+-âÝ'¡–!ñíy¿á4êo¢Yg›Y«7ÜJsºuf1ÄøH–(h8Ax{#ÓŽ,oƲÍQ4¬|ûð‚ÅL@Û +v§³,Ÿ©_Ë\qh?|ip¨O].›Ãe1žv¦¹×…×1àM"Lv¼Äµ‹¸E�3âö¢®Í`ªÿÐržÓS,;éäv¹;Qˆ]/q3Úý3(}IãÜmjflH?èw—; ÆŽ¸G´\TéÙÀX”®ø-õ„Ù†êb$H¯¹µ£´GÖòlï¤8"ÕR¨xêÆô"–¡X’Èâ¶×ü\×2D“±—wl/¢¼@O)itÂçÕ ü80ٓɇL£XîdxòA¼E@ÂRÝN3›—Ó’f&È t–¹ >Ï2j-ÔààÞyä’Ͼš¬.{ϬßàmŸ’_[ǡѻÅóŒ'Ì4YÞê1y÷T!Î{�;ä¶\Y&ÇøƒØêj¯#wOá¡*Ò’„ª…q°‘£È²Ðê-ùA‘ªåù‚a—YrY#1säSQ°çW$¶FsöH¾wå®›¨PD#÷xõS2+¨.ÄN‡…=‡¥ÌKÚ:oØŠ]£[PI>ìQÁ¨Üáí%ŸN*lÖãšk’0Ñ¿5›ÒoÌá÷kžrÍ `½=I<< *¹„¨±˜Ýz¥å +Š# A‡äò]ðѶúÊ wKH’€ óPœºîX#äXv!DÇÞ+KžVȇ�](Xõ˜ï…#<³\òÆÍyÖ5UzÄÑvG€èfïÁœÇ>‡Å÷¡Í.¯¢µ ùt<bMËéghB—{/©Þ3Ž8d{Í�æ•hP +†ê”äq<@sà–jGÂd_`À@k„Â’Zdd^BCƒH݉åiYÄ ·HJB—Kló©ÔšRK©@jÛ¡\ÃÔ°¸™ 4–}djÐ3ÈägZ»V€Çy-M#ΚðTwÂG(<Í’£M±lU4l•DÇÐàc=<•¿¸?„®$@F¬¢q!íkÑ.uo"‡bœ}%o'ÀÇ>7ôxFê†K®Z\¶[-®xä¬O¥DŽ’Ã⟠+˜œµ‰ÏåM°]#–5êt8Õé˜ýŒP•ÖJ¡øÛ™AJ/¡Äе_�XîeÔrƒãwªôTè-ÅL8à[ðƒP,.s¼D!YN,:ÿ«Á¨”п“²¥xÍŽT…iêk\j%J/ŸËçX15˜©EösÏ6s/Zù”ÒS!_ÐG*+tó±Ôk?@oûÒ7²Ôw ô©¯ÀiqĈYúànVê_r¦)ö14n…¨´]8•z“O,ým'OLgµe4^BOE÷W5wåX‘»%£+O¹Ì»ƒaâ#2 +ÒǤ/~êühÑ2UiWKéµkD@É|Ra~ï.='@úr¡]%â ÈÛf$?´½øt7w»Ý·½¶ÏðJ¾^h½ˆƒdiÁi8lhË¢ž;y¼ŠÖ´0Q™Ž{ír!&žq§&I×®"_æÒÒb$·lº“˜Ÿ†Ï zïFë5¿D÷Ö@‰ˆ•Yû¢ˆûŒ®î5‹5mް]x +uÍxÀx§¿8ôzÃe³C\D“Ðó°O~ü;òãàÙ€Ž§¿ÿ°½»ûááÖ>y|Ak¿}ÿ~Ãø[øN³Õ?ñŠØ/•yVÜ +^ˆ‹vAìÿ +¦ˆ›hÅc<ö_@sl·o@…¬›–ó�*oNÀ·S02ÁÜH›Õ€Ûè¬O0Ó3´5÷+ôhu»üÎ }Úº€œº^�]À[[¿@`Á Yˆímàl! ¸ÅhÝ6º‘y!˜ + ¾Là6°[¡…wP@‰1ž\Á!.ýz’ámÀX†0ù׺Oá2C!PÈÐ]¼�¦!m Õ˜z¬×m +°²! +0ÛNEï.-‹GÙ]�‡1àŽ·‰fÀ/¯ kÄ@úˆ]ò¼9jIÂo8wÈßoø>ý_1ä1ýðóPŠ0ömI#Àá×ÒHÔϪJÄãïŠ2Íj;a à.…y‚]U)Î%àÃ8ì^…aˆmñ+U¬E´8˜±ââ€Ç›2^œY«€qÆd$†•mErt uÍ0*j£aäæmi5Lì„Êl˜ú¹k¹÷¬Ð®�'Ö:rœVZkÑqêiWÓŽ3Skm<Œ]…²zßÚ–çÃX¨îÇI²µC'Òv†xžµc‡ãÖ®G²ÛuOâ°ÞÚ…‰k''î:BuÊÙ@©R½¶t–ôÔ"€èB·ØR¦omÏ?zßö¸XÑ¢u·XߣúµUçs°ÇŒ( ‰Øn«49ļiÖ¡Ø*Õ13^ÞÐôãÝÓKô¸ó¼b㸜xví:Þ!Zö‘±q±yYÍÐZ@UöGúÚU„sÒ,"¨„¥•ØK* Ù’bX µÛR×L:<ªt»®n<ËÚŽw²6˜ãêÛ7³6¼ïum—k.&|–µí?íÚ¹¬Œ]ã?.¬@çŠAˆk|‡eˆ{eÅDÄý¶Â*>=ðË3ùÈð›1áÂXw%>ÂUë’øn:-¥ +ƒ2tâÔ¨šQ&"iJLO5-ÌòióÂÒ–©AÜ$"Åqðë¾É‘æðø™æV8 „¢ÛTØõ¤ª\¸+ °¥ªè'¥³û¥Îry£¸à¡#Öû0O’‹$1D0°yœõÿœóm„ŸÇy9nAÄ Í|ê{¼~ÄŸ1ÑýŒÅÔ‚”DWä “bñýÔ‹ÁÙªZÏ™TÖœ•®røJÈÉæñú +úÝ#ýسv·ÿ•Ð dà‘Eê´\/ð|×géêù ZœœÎÂB3mC'dÁržö•^®×ûÇÒ$üd¶¢<JRî9ì‹«¥½¾·pŸzýŸ¿ÖÁò2)G$±Ùl$6fDé}çCÝ×udá!“èŠÿ×UF—Ô=?ODÎ÷‹”À_ƒ&Bƒ_çALA,I°1•¸]ðƒ¨xá`!;”P8˲u㬻?>ÐΈ¬¯%œ%¾ØÅŠ}òû,›o]¡1¨žÖ!LNêE*`p¦yŒ"¡IXAͱæþúÆ@ôHUKyÚ~›_-‹rsÁõˆõÆ?î̳M êg{ÚB‰1Ù[—ðP}}‹!¨j0tQÌ=?†Ážöoüy|Ãë-|òÜ[‚@3]™ê'Š!;?g.” + Å(‹â÷W½h²8¶ˆÓá³3CA0:ÝÒ'F€Û|?ù©¦›3=1×£x¡í hÛ§f¨³D`«ÑRBoåÁu«Ôj°h;"墟nBZ©4Si; Õæ¤‘Y¯ÓeÕ'o±(JQ!ã3ô ˆYÛBü¿±ÄÁòü�{®Ok¡-…6mG–á¥6‘%;=fèÍq…?£vëuØè,¹…%M¬Ø¼bÁ'547#ȃ}Rš_Nè}9_\…”ÚÎ+xo…x“ŽúüÈK‰;š¡6YQrôƒm±`£äá¯É$¯ù³óÔeéõt°™½†öêY0:„’¤aÄs×¢¶*dežðÝ¿ªªÊJA[�ÃõzÈ}ÐܳUHûúÛFe•pXÉ¢djÖÇg,L%·Ac¶¾¾0Ô–ôÄúNý÷Ý\‡6aóœeýnJ¹Q¨¹Ž¶ùôý&é0‡¿·‚ÚåÐsÌ¿%t›…Ø&ÝÕAe•3ù¾šÔ¨‰‘|·)èÔa-v‡÷g³¹Zw;§AÞö±/ÃÃîv5’3R’Mdñmc$ô†¥U¤£yÉuvÛ ²®èOo@Èo>K¸t"‘–.u›ç!ô‘#GAgÖ’âë üa¢ n®¹Ðõ•ÒäÀþ(ÕéJë§Ù%ZñZc,ù¬—¸J +4Žd¶œÕk³Ú`É¢oÉ{ u¯¶ç‡Ml6“Ÿ|IŽ2·aéãµÙ8¹y£³‚mžŸ¸ïÔäc„$ƒ)/qïÚ•T¾²t¯u‹6�ðq +íÑrs—S’]}‹Á ¾ÑÑ€Âë%ÇÂÝ6올Tu ŒnçülùÂσñ\ï ØàíƒÜ&<¼‡`ôûÎcûMV>íêÅîE±ºÀí’ +ž4,Íà×Õœúv“„à l¶W„ »>év߇ gµŸŒ“>kaÆÄy¼øÿùêï¿ØÓ¢ŽòÇóô™4¨(È2PÐíý¢Cé?^ÿfÎKò¡Â§{˜¬ò¯¥÷'µ2¾aæüOïÈØÿ» ç|zÑ;®Îø¢ÿ psº÷-7gàÓÜœO?psF>ý7çʧ¨9¡~ æ\ õ7ÌœNeælúo™9‰þÍÌùé—ù.yþ–™3çfΕ<?sòü-Kg Ï,7y~ ç,ú[rN§ÑŒœF?pký-5g Ñßœç™F?Ptý-Eg ÑF?Ptý-EgàÓ+Ÿ~ è\yõŸ(:W:ý•¢3°éŠÎÀ¦¿¥èlú¢ófÓ¿™9?½9¾~³žd=3}%æ-v`Ðc¯ »ïÁ÷Y7 +º Xla2jz–V£‚.d'ÞG!ì:Æ^A7IÈ)¡mù»UAã®xcT´otÓ {°íŒhô,³/º ³l¶¦˜w«QB—‰n½Ý œpX¼-|îGcfJèÙëO¤“˸JèZ4¹"˜Æþ®ºÜ›ÛpËuŽÉ�sKèB¤à‹63Šž7bºÜ!QÐÐ=f¨ˆ<Ý”¡ACWfÔÔí¦`纰ê’ÚW}„„nbëá©z¢Ó;/´Jè¦îA-+Ûii#¡›X¼i3¤çQKw=¯´ŠêbbqNf»Ôƒ¨®/é§™§ë‚5uÝR}Z¡byoóÔuÉ7˜¢¬„p¯Eg—aj@æµ²¾7B»ëŽüú‹Sh÷IPA(Ê͘åήò$³Ë<çªk‘ã³@ìxÚÅ>€E!…v†’Ì:.J»ZJY)SÖÂ{YŸsW¡]0m(_ˆyxN.pçNiËòVh÷ü¼‹=tv+úX:æSÚi+y¦Eg÷_ò`™]æôHÏⲬ*˜’Mf÷½Eño€§ÿÇÚŠ¢v;¿e#W¿e#W¿d#·~/ÈF¿wËFw7e#·N.èF't#o'å"wN:¹U72ø¸ ¹õqA728»¨ 9]ŽÜùº(¹úº(¹øº¨¹óuQ7rõuQ7rõdQ@rç뢒äê뢒äê뢤äÎ×EIÉÕ×EqÉÕÛ}z#þHîî¶o*ÑÛ-â’–3<kKœõ¬ˆX_žU¶¹¥%-Ý‚üçÕÛ:KZ¥%¡dºÈꋨ6Ÿq7Â’§y #O&+̿ط5#³–øFWrðÉ?빦¬$¯Çžâáë,§ëª¿ú±ë¡) bQ£w·¯ÈmwP~4Mš÷VÄ7®NÝ–2šh*Ï—-‹\7ÊhÕb”ÎL`¥¤œ7ÊhfüÄg¹þ)Ò¨4Zµì“î¿Ý³R>¦×&?@PD£{oÑÌîˆ2Òâ)3°çF'¡lOÒ% ÑfÕô¹ííó–K_%јð×ã%§¼ŠhܸHÈ�7‚htRô dvà[A4YäÌý&ŸÚ +‚hu*¤¤©ÝµD«ˆk2ži)•FÖ¶‚h5Í+Qê+çF A?uæÊÙlÛ ˜N† š84æi;¶•¨‡V&ZÙq¯†'a4F²\!,n/{a4Ÿ9j>sÆ<£1äZ))w‰ÂhÛMòYžg§õ壞þ&ŒÞHŽÚ—·„—v<{ /•ïÀ'1öŽÚ}Aäíwæî9}ešƒ©¬ÎÂým/h÷jaѳ?郥úöÑçq¿ó9’h¿ÃJ¤ìILçó{xBFôÍ:.ªhãÇ˶Þ]'ÿ|Ðï.‹v0BTС…Û§ÅXÌ–«RÚD{”œˆR18'Tˆ~7XÌ¿àõë êØBjú®v”k¢¡>tÙ™ˆ"sÄ!ÈÇQ©R#ÛÒq{15Î<‡Ù/³£¸ü!UFн_|Í’*S³ÙŽ:âHùd!ÙÈ£1ìCWUs5ŽºÖ°ážÞ¦l¡5m×T™&*¢ ¢¹|u΢ÖLj ð²ê†Uo3b…3tãr$«· IÛ2ƒkc裳ڌ‰”¤ÝAâ?Ï?§9(|Á@¶i7§éÑs6׋Ã2„:ÔPå,$×›f}‡‰†O‘OºÞÓm•ÃñÛßöù!ÖËB>L6€+§5±¿}9Ë~âtyмÉÁŸûËëûyØìP˜£Ý¿~’/yA€×GÛ|FÒ!\Å»$dõºìN-ÒÅëeÑÞám&®ÆfeÝÐÛ·èŒ÷fQóÍL›Ù+ï`^7§0Ca ¤žh½Â=^rbÝ<‘Ï’ßaÚóû ‘²—ØÚK|§(ÍÔ|{„oS¥oi÷ÈDÅ oŸ0@Ñ}Z¸ Xh]z‡œdlVY%Feœ×"°«´×Uv8:‚©iТ[X7-=ç[Ï©½Eâ©ûÅlGbLåÞÙë¾ +?{3\?ìñííS^C°2áUkµý$Áê…O,gXÑ¿Y]·ÝK2šüuYÊsÜÍ1À׫Ks;4ì`ˆUÙJ]·ÅÝû²¶ó21·Rsïù{ývs¦ÝÉÁEVdñuÖ£ó}õ +´C.b£ÊN£†@ãCx—ª Ã\fYÒu‡,(¡n\Tu=x±Ä(S0Ë º‰ž-÷[½r˜'ɉËYqºåÙ�\Ô)ªÆPýB"‡¡™mö‚YY –4ÇÑFÐ*Õ®Á‹`¬ÍþƒšÚ’Š�Ku©ŽŠ)b+ð$…qÒ#Ï'©S�’ΡӜTì-NÞÏó_–íÅ¡ÀTó¹Í‚Q¤¹« +d'+A¸”“Q8Žçõë,ªXq¿P£$ÛÅA¬uŠ×¨óÓš(|Ú“OA8o0‚VÒ-(‰µƒç+;'ìÖ +}›.ð ¥FX]ÉN+g‡ªËÄ¥â¦nø¬âÝæK«�ùÓÓgå˜8'®UêW:ýZ@MYOΨ3`©CõqsÚWjù<%¬xÌSöêdôŽFQ÷TõÔ-u*…ó™FsäCƒš_xk;ü|ÕÀ™Æký€Y$§Ì’E26ŸÚ:¿sÚõZÐ)2k^Ðébhï(P3Ï˲g¾~>ÏŽ©™l[íË5=°¤(|q’/q*ì™Ìvð‹�µeÇídÌ�Q‚Ó>l‹¿í倧úò%;Ükù”ÕÍ.ï$¨%Öi§.ÂË2ú]¯_/@”>œö~hÇb|õûy<.gÿ‚±€Uá¸[ñÉÖ}Yœª¦üñËŸüµeF¿øùË}õÕŸ~üøßýÕ÷?ü”c=úìÂàný{NÊÞ‘a}¥’OÀ¥HŸTJ>Ô`½fvú½Žv¶Tö4ƒ©™/èeÊÉ2þPÄa¤M±Å¢JûLοRê‡"&Ñ?fÎÁì³t +r̬™ûL"Ug°ÑrFjÑ·kßT8}O;¹pÐÙ¹`ý¤ð[êSø!ÐJNR1ÑãV.gG<Äì} ï¤×\'.æÐ1Û&I�´Áè÷º¼LRCC.¸Êߟ^"eœÂ¼jÊt¦Òd8b.ŒˆŠbŸú()ÓKœçÏA¦>wˆŽ¨0Õ›õÖ59Umg&I'G0›»Ÿl¡~ÌØÿ$ô5“ñIãÌô…ªËÅT +³ŒH+(CÅöJáza� GÆ�ZWˆ8\ŧ*þ^{Õ'Z/f¨ëö‘3óæmËd=I°qÖ¬–ÐPÕ±êƒP§Ð£êbÛ‡¤¶ý*Ì3¯š!Ï$¨–+„ØY]çÈ–L™Ð¸áŒOØ’!Nß±†IålE[ãò/ß2°ã9R)Š +6½áœn”ï¦"6×R#¸¶2yñaRcž…Ûå ÐjáátÎÅe/¢¤¤Ìú¶÷*Œ–Ä1_Ý‚²Ýí®Ôkç¾�ÁD±4Oñ“_(žÌÐÃ$™I÷$[ˆ&(yëü4>Ca‚˜j-4´¬Â‹Îæž!¦ÍÔ‚Õ}=¤êú©ºÈ5 ,·y†G@"*A,œNËë4—{ô)áÑÜÉ ]qÚ¶Ž »$=¡ê=JB‰¢HɈ1>Zƒw�¬`URK Û%“q€k·×J¹WòRbdkXðì,ÐW]@ +©šQ°ð‰ÅZ<ö`\6§AQG”dUžÍ™SõoK*¤—ްdÐ&¤gŸ× uçñ„vy¸F‹1Ë*+µÐÏpƒ§Ñ.¡2D»µ¼®[*¬BÖPT4öN×™ìgÕV%/Ý6ÈHÝýÌX,¡-{¿ýû‰Œ +Ø5¥¦C/—r ½áT_fôºrŸ‚§skeqkÁWr>V”¯;Ë-N #™Qe–Ò,(Ü9¿¸”ˆÐM€Ì£!ö”™yPhªÉa˜ó$×§Œyà¼|‹ÛŽ€úÁR]Ñ’cÁ^Ô2•ð\NnDH|ÓÛ^?í:æ»ï_ýt¡3½7v*_¤þaZúΧJ6ôqg묔“¤frˆæÐ왞™ê(o„ÒŽ"(4ëE}¬Š\T4—k¨d˜ÅŃÌR'=w›”?öìPÈØÝ$ǬÙ-‰"9—.Ÿ/¯£Ì+Ÿ…¼¨Vÿ•ØRÅy4DG>}ÊíJ.-¦ +@ŸÕ9:3XÇdè±ey¨WÜçÇ–ûgºš‘9ÈäÌj] Ó.õeËŸ±Ã•²»Ò‰re×51YŠytòûÔóÈS… Oô +miMóˆx>‰s÷Xò/*¥xÝÆ2ŸƒæAf2ƒ€†&ò¯BÕW‘ØqAbsCñy^倌Ù;Õ}vÙ;ß5&:°96Ã> È«YéøNü[ö“’}¾á%Ä„2³Œ]™ŒM,ËÔ´Ì}'¸loÆ,òÁõ"æuÛ( øxV-¾*b×\ê˜všð¾!’“¼4\*Ê—…Š<Éá„tÜV'BdÝeêÑÄýÁö$ˆæñédT¢ÖÉ]¸ò5UQýxì#½·Ë\¤HË2Òiò™jÌšKÏŒn”4™åP䕚WóŒâí…-Lšlï¹á¨ÊÎÐÀ¥xØ· Q”Y¬4Ó¾\<6л«ë¥VýT…E‘k¿Ðò5+NZN™£àc8…&$IoÁÝžby^ÚRšžeX\óWkˆŠº�–U +z 1?8¼]†Si¿hK«¾½/.Ó.©í–yTZ’ ÒœxºIªðÓâAÂÖœÈí„®ç°=\òk™éÐð>YÕ¢X±vtñ¬¾JzZõJkʪ]çìÄN{ŠÚʬêéò™À;ÎI\—ô$f(ìÛy�êÛ''Aì’1¬NæcéYãz7È„}Tgá¨õyùzškDø©Õº+©M*[´§Ï_g¢ñVë½ +ê,¼™•ºA80#ÑÎì:b½—pÄö™ÂQáÝ~AÐÝU4è›÷[{,:¬ðG¾÷¦±êÒJcýÞ¹�—©J`©ï¥B¯_¼Ò¶×1#Ûu†ÊÎOÓðè›õj)•A]¹¦Íš7× PÞ²¿B¶Ý:ìH:]éÚnÖêÀ”eïZ”äo²Šqø=�›wÙHðôs�ÑgÝØ 㨨ý=KÚØ²°r«%DR²]цª90•E‚ "a=£Oøo*ôgÜ>Œ‚¦ê¹&#·ëßÁ³°¨x +m«çöR*<«Óƒrß»:ôb5ü¼zJè¼$á³øXšXâRÜxhMTŸ%úw•-7ºÄ£íà J¦×¤t~ŠF(ß\ÏOifëiu±kmÂ(Í +F`öÞÎ:öñÛ5¹í×à/ÝI±E1¶(ë&€´Xü©fr€Å@T_›²ŸŽJS® ´P 2©l¦C:ÂKX5AqªÅ÷Y7¹žëÜópÒ7Eô&Sl +)m{ÛÆ„pÃÕ×´"OÐ’ˆÕ{Ýg'©¨õHiHä±ÏŒ@š²¡pÄ6™ +G…\Œ»!‹À£Y„¹Iãàh£v‚j'þl› fŸ¾©¤½…ÐæÞûŸ8`“Ò†ƒBfŒè'ý3õØ%éÐ2ƒ0c\B|šÛ$=q‡Ã=ŽEÞœ§ ŽåÏ®`�•édA‰õ†\?€YºÐ-€98Ö-`ñÔ"?Pã:7µæÒµè +…Ôë +&6ÉÄšƒ›RLö)->}q‹¥še´\.¦hjÄ¢PóI(Cɯ§X["£G3T£Ìfe§õ޳ƔLX+`› ¢¬Å³tL>�#8Ëm γÝú¨Ü],7jqk¹Œ+ç}©ð,ó&ÖJc£ÄÊPÁ¬MÒCGwr[ÑD8Þ£ó¥Ú :¯XIûLîOõW[fCÐÒ¥h‹ÊßE²–{åãÏ}òR×IXJÌ\¤q—¤™_l¶«cŸb€îê÷©9õëå£)åÜÔÚ?ñò<îïæÆ{ªç3 ×'çLè Oˆ?Z{(cŸ7^èm÷O&‚–X8е‹¡t|p 9¦DO ¼¸Þkõ ¡V�p@äì/‚ò«æjQuž¤äšàñE¬i;¹�“mÙ4GÃÁÚX�ú¶M[²W¶ IÙœˆþ µWQª “pfÙúQ@ãÈdÅÊllZj'Ýš¤¦”³½Â`ê¯ :©Ä4ÿ¶v6˜ϒW¾±CX�º0¬m7åÌôBO +±?Ñ2eX‡øj«”¶úL 0hœ^‡8™n5œyü˜²fê,*/+ ÁO�`€*û2“’ôãÛ‡°ýàHî)>ætTf)…ݯ뢘/h¡-ÏÂàú|¿"iFz#fׯÂ-L0Ï!Øù%¯âþy†úr~z†Ë P`:=pº×‰¦Î±þ×Pÿãܵ8{»l @ôX‹£:) ùzËøÛf)æƒCèW¿ÇÇNŠq“I”ø÷Îa¬!Áèlûù`¦ðÞoškö‚gžg»w)ä€È@• %ð0�œ¶î¹ï!©Ç#1Šh±xÚù¨k˜¢¾!Y›—Ûªˆ¯@#¶&ík<l‘TCY²¨åj3¢žfæsr·Û¼¡— ÚiØ~I]¦M´¯¬ü³†ïæ†!•°Â„aãÝ–—ÑLÐC@_{û·™æ^’&v¯éÞû·qgL7£H`#Êi·7@݃眞£êxhˆ!½q{{þ†ðÝ페âgÏØ§2NL¬ä•‘`P3ï¿]Ÿ$[ȧì? H¿]$ßǬ1I/;zX[ÜšÕÀ�ŽéaoÍ:6WXljDazt{ +Û›¤"$¬ö^ï0 \1Ø#”)é|ZŠ'§{šw )f’Œ¦Çð^sò:f‘óäK‹Q»_’ +JY)ÖÈ@Æ’piŒ‡xŒ'deÐm°=õˆ“žâºª¼‰åßAÁ[\·Æ†Ð?4Íê‚Uç‘îÐòJNÛr˜E½ã½50Õ{Nˆ4kÚKnaÒ`Ž˜Ð ê±Éáˆ3²| +¶7çYv>-lQCº)‹Å#¨È‹×ÔõþNàï:-âÕƒÝÁë9¢}‰XÒ–ŠpTg¼Ån;ON”þ`vÈ]‡¦ª”xÊ7GP¤I¢{aí_ûTLD50÷Sº‡¾ÿN!‚AÏ–lÑAbU˜²Ÿ˜árÈD1‡TÕ„ ø5›åsc…#)îL‰‡:`9, Í~þ;}™®;φZ„«‹ÀËš¤CÝY…H"—”ßõ)Õ‡eXvà]‹%)& ·"šê]¥xF¨KŠCÊ¥Y´0Û÷~$!À¾Ü…ôèj |lwëwwWGø£œûÏ|×S¤R@•Òî*Œ(A^!XKNÄ^tqwÇ Oš˜AöºCü»Z‡öïå¦_›Å¤*-(Pª{¹‹Oy0 + !¹ŠUEƒ83ŽÊŸ&SÏ,sAO6‡‚ Ÿú宋Uû_yœÄhg{TÓàCAئ{‘YƒƒìÄ}Å@é®D¾©ÞAz°ZòFjŠ€zW×£ôòT9¬¼ËxîZ#_ÚÕCìW Z‰Y¡ä2–ãYçxY“eØ"C®U¨ê º2HQ¾MÚµŠªËÕ¬ËÙÓÌbÁRŒm:|é¶8¨0½Üu\è°š‚!3sÄQ¡¬Xˆ] þ1‡ï²˜° +Ñ+¼¹µüŸºÙ{É|àáC[b!NøvB{3`)†CôïK"'Ы/¡ ; d¶mñc)Ôå!J1·ÀŠ«_N3»Tõ+¨lÞÚà=7"[OÜÀÚW€ëê^#kW¢jh3ñÕWý¨SªbD0´åÚí�!6œ}¦ûñ¨õ)C·:˜Âú„¤ÂC´v}*P¸!ÏçÝ!YºGñ<k*ÞK8bûLá¨ðnÖ®Z|¿kwîéë,½½ði—¦àcM¬-Åý’Z[“qe®í͸º×6é~—¬íÖ¸ÙÖ†mܰkãw¿ß—þq4k:Zœ¥“½µ[k?|µ~¡¥ìfhÍonhñ£Ð·™¿1o] +Dˆeb‚+ +ˆ'PŠà#øÐ€êØzàüvÀ“¬?ÀR¶áB€·„`#@dBœ 6o‚›�Ô Q�û„`jÅmC±�= +\€/…0À B(ùõNCÒ–BÛ_Oͼ+È+D쩾lˆœZãÖ-¦+dnŸR¬ˆ»™L¬^Leî?l3¡û!‘Z!…1[‘‰û¤n8ÆäpÅH~ÆÛü4µæ¹ê3¦Ê+xtŸr¯ ÔxžÈÓÿ�ˆÝUV\m¬A¬ØÜXÇX1¾ûzÈŠŽu•�7¥™µ¼ðLÌóZ +héXbš`ëma*`µC]k…{‡‚XDïêitêr¸¾Vôþ}[8úPNü»�¹øwEËu +`Ö9ÃøÀZ ÃÛªj˜aEÙ{ü!”qÃôĶ +¦0B 9ÌoÜUç0þ±-U‡é‘Pé(¡HæX¶5öxžY˜¿çfB?ŒÝl�az'ôâÐÒyˆƒD»¾EN®l§1J—eíè ¥yD–òÚ9Q¦ÏIÛ•¸aÓvÉâ©AW™]ÖõÚ´a´^<AŸUc»Á‚C,¸éÛ^‘´¯˜ý.).±Ó¤È>ûäŽê_›TD\ãÚ} ¯®;0T÷km‹ÁÅIkÀ{h„2<›FkbøŠ·¬Â×{u žDbƒ¸zj»Vßãçkk0^yí*>îwíE~|û”k3¾£µúw_LÐõÓ»^û§ñ{×øÙwÛ°zÖ¶oX€¡aÖñÛ6óºÖÖtÜGkOûÓƒ}<Ç*·ˆ);ÅþÞÀLŒøù5˜™˜¡„u ª?O “’Îdá-ÚíºÞQxÞÒ¹ª4Àã=þ §6ç&=ˆ +‰3PŸûWSag$’¡Ui‘²»X‚Í’«S¿]¬ñǨµˆ~�.ýþ¯£}‘ž¹yåÒ6·½áËw}êpžøæ®¹º`˜d‚î“_àõ»i€“…¦™-ÓÏDOÌ–ÑwO4g¢ªÝZÊj—6ˆåCº§›#º~ª`ö3~~‰ ŽÚQ¢çÿzåð‡å~?ÎÒÓóQ°VT½‘fÝ; Fq"Y,èƒ$Ê‚\suóöŠaéD(×ü(Aн¬möÍy滋·ðÎÿøôagµ»ÝAvNóó)~þ®d~³¡Ÿpi·ðÐ…ÇúGHìD‚·.y{IÄPûÕõú+ßeÓÏíø¸—7{÷qãóß^Ÿp1 ï¾—u]/KÐ/¦ï¶¼¸¥ÍÇGTo{QCéåÜqé§Û¾ù¹ü×Îÿ>ïîã›]‡p¢?Vf"g]tb.Úâ’ÍænvÁ‚Édr [ œ%¼¹pï¼Û{Sªèyãü¿›¯AÐ\›5D¶/–@t*À4Kb¨R)¹€¨L¢\$c<§ÎžüÜ3ãÎi‰=\¨™hú—'QšÇ@uÑeƤ}ýR8©Rt¯REØÅl’bHâÔìPé aéLÅ®*%ù%�}”58ã`GH�Jea%nð›&ý“‡Ý÷@“hÞ~xH`ð(¸ ˜„¶Ó‰¤À'œ +ï,¿€mö©WjQu Sm;a1‰‡SºGN�äi*@ªÈ$Q£ ß j” +XÌF’’¥ZÊ–ð&È:ˆ+Ý% +)3o`¢GY"O6UgÈĽ®ÿUbÚpé%h§QyÞ:œlq +œo_A:Wt÷†#@Ok–³$¯Ivù‰÷‘$PoG$âÁwž5Y=JKBÁøË(ÃËN–½e¡7ÃkTâÊ‹€ Û¿ý +ÔâÀ›Ø‡Ó|hø˜–…KHË"—ë\×Ê[ô\H²®ý¢*ãÍŠ,ôz»ýÔ^bšköyUg"on϶~-ïlŽâÊ)N¾„ƒ¸wT17H¬ÚáíP:´ìÅõá¶;4ªìô]aõ†ÁòLa&lß4¡þƒqQºG󹊸ñˆ¨ð‰ó¬·ú+‡8ü¯ø@Dº×É�ïïk}- +À.ÛÉm¿ðFiê»ï±Ë4âwKQsº±ËEtN§0=(Õoa-©©F +H} Þw¿<"a([P± +Kº'u¿ …Cá$lšy$*vRÜ`ê[°Ü¢ŸS_Â΄ÖhxØ×½ÍpÂ:�¾¯û�F\þt0~õÀBuÛæ5;´iòL–Z”YñãVb +æ.žg5™áV‚åÝ>Q°Û÷¹-}xƒ«£Ø‰àpÖ|VXÁõmWVp¡a}7¼.ìÛ‡o·Eðü÷® +1CØá·;Ä0Á>|:z/ŒÂBý+ ^;ÁK¼KU{Ÿ‡dRÌVo¬A/ÎüÅþÁ)pWŠš+4æ:Ê „¸Wch¿¬ º©yÊ⃡±³Óx}i�ÀõDašÛÙ¹r† +o=\Æ1ú¡Â›7L’Ó*V*>KBÍ =maö€ss€– €j¶ I7«Î^„íÅ1ŠÈmÎðó”þ‘™hšÜIΛ!ôcø(.ï\›S³€MÔ¤°=Ú2ú[§ÏNa”qÐ>€£.C†*O¼Ï[b‚¸HøpÍ’>¤5bVÍžì»ÙM÷Â?”ÒTÉÕ©KE2E¢´Ù¥YˆÔDDb‡RÐ2²³y½ÇIñ„PÊ’e¤bGØ!ýµð/0L ¤p°0Òr‡M»¢õhðn;²+Íï±ábt¥2_µ£§-€Þúë¹ÒHUjñEÚ2‡ Gj‡·¢¤p‰pÇÅÔíqN*ë¢;Làjf“„UjŽŠUʼ؛ŸOÖÅ)S® +,Z’—â’Ëåg¤À»£äêþ¥P| eó±i{3£iñ‚¯óê›X%ŽC°‚Dc´KïFÓÏÆÛ ²B¾D¾Š"‰F‹™xf‹ÑXu0‹w0ùÒÌW£vË|5Bx<W‘È‰Ø m*0ÞêÜΆˆ˜ 5vÖæ€*Sl@ö™�°ä�ï"mF¥ä—žãrx{½ü53É,Ÿ¥1¹±rr²TUú͸g;Af‚?_.âX¥‹ÓµðNæ) 5aZ>µ ¾~³]„%9{$×XPÄÒ5e´]̸œ¶æ/ÊàÈžÂ2Z;ÜRûÔ8ä®È‡#˃ +!¦î‚YØyÌWsÀ¬nCé¥cÈï�c’æú}üEØEU¹ó©sŸQM8½ÚUÝ=Ó)QŒtÌS¤¦æ¨#€ºT$ãPQ° l/›g‘гï +ù ¨3¯z¯ ü¸™o×bKu'§°Åöè* +ÄÇR:-0e¾¡$ç+µ]55Ñ¥{Øúà”úHtxù÷{2ŒG£_É£A»®ÙHV>D“µhœ9-¹Cºo¿üË¢u/êÑ÷YÛ”…*èw£$ ¾N!êÒœ2"uH¦PGÑH,JÜN‹«Ñ!wƒäøCXjæÅîPeµ»;H$Å…ŸlOÁ§já4pQ‘‚–0êC ïUèO®GøØ²U“ÆVŒ€àøR™ÇÇBÞœ±v¡¬ÑU¢Z°Yæ,rr²Z=H7ñþ¤Qy¿sªd~¼_Ý¹Û >•„аuT}/¦*»¤>¼‰÷éýôõ�%@b70Ó·à5„±¶|ê± +à‰„‹Ø]òz…"Nü3UËfÁ‘}W‹8¥`k»]¼[ °Ú%\9Yð‡•\¿¦üYëX[@°2Ê/Ó!>brÞjy’D è|KÚýÙ!ñ™f߬)$»—‚i5¦*ú¸”¾úñà†�²#coè‹k…+Š·eÜÒˆ~¶BÒï_«‚,A‘gá’»šºšæsêúWצ =èr‹å¨9‘3“ÒæivÖ¯¿\XDÚÄ¢¥zÓÇÞ —4È=n¨²�i(Ôá¯T§S>ž4ªbëÕÙ㑃’3ôÚ¤9]òBU%A™yj¯UõätýöÚÀ—xi +;@–•wÿƒ7åÙ+] l6%Èù®QuRã±;|ŒÐ¹§ãmûä¼!c4§h‡ØQ43\ïiÐÏÙUt,Ä‚ ó?7zæy¬n¯¹1ûþøy™ï›º)ÇãzàD×S~çvË,yäÓÇæ©A%©<—ºÅÃûBûºxM¬)Þ¿wºÛêÜi›ÏW9<XUiyýà5;õ}ŸÐÉýz13*ð—ýôvSXw§)le;„ùk—@’Uàõ´)ÙÞ¥Ôå<§'–Ì{‰÷rVçâ1k$j|&‡Ñ«ý˜î*ÞúFDÇ4ÂŒ,3 á¥2§+ñ/€SbƒZ¿™àNË _}”×o|Ny÷CÓ(Þ>|^&Hé< lbÝ,·³Îº~žËíyµö»ákþš&a\è½ï1”E:¢jÜ,ýë.{üzÝ–ñÂëöÞ?À4áùƒ] ï0Ø§í·¸Í[ø”Á †Õ ëfQûÖf´ñëúþ¤¯¸®wJqéåO¾úþûÿf÷Ïÿò§?üðͯ~ñ“?ÿ‡ŸüÕ7¿üæ§?|ó3¼ï“·}¸xç|õåOþÜ|î›ÓýÙϾýáû_éÿûéÿm~üëïùÏ?ù‹ï?þäýfzòvxx°ùÕÿøíw?ùËo~õÑüøëñï^ƒÛþá[nç'óÏ¿üÆžŒ{çdÜKï^ëo¾µ»û/ß|ûó¿ŸÏ¼y7onËžãÛoþáõ®Þ?úo¾ÿåO¾ýÅOþ§_}ÿ‹yæöÞü対ùõ·ßü“ü¿ýÃgúWßÿÓ<ư”¤3¡¡’ßü¤ÿÇ·?ûáï?uëñÍÿóÃrïÔò-ê}ïÜú?|ÿ׿üéÇoñóŸüíoý‹ÿò©âàÿùWßÿÓvUþÙÿßþyùÉŸýâgóWþß¿úæçßþbþË~ù£¿üþ»_þôgßÿã¯þø‹7ÿ»`¤–rBàD•ð%ÑìR?>U;¢·ª($vc;üˆDBÚ«ÂÅ?Õþ×úâIæŽ*í/ÿ¬ÿú¿ØÿúÿÚ?þÓK:^þ·—ÿóÿ:^~æ¿ü«»x÷æ^Ö+M¹²OÜÏË_ìŽ +Ïõ›~ÖAÛëýâ³íÌü¢_ýôãÿǧע´”â‡%¼ó_ Ž—ÿ]±84ŒŒPƒ¤„I(oÙ¥ù`ŒÇÅ¿œÜp?èý4¬Ð�ÀD¯‰!˜¢_=Åâ/Q®ÿò¾Õƒu¦R,¶a.]¢L¡‹ã»ùGó[üñ ’ùøcõhçdÈü1#ýÒˆþ�LÑÜáŠÚ4dD!TÊÑ<U‰ˆÁ'[( +�ÝNðаÖÐcæj™P+éƒ-Eð8 uyÄßgîÄnp^ˆÁ6Cái¢³I=LM¼r„ë˜P:Â=j—0Šá-2;S~Ð6]óüÌX=‡ÞÕG +ìjõaýƒQ¤øD&©#är;JM~Ä©Ò%£‰Ç<ö6Žè™tŽD P&b¤pDÄØ‡H˜PH×èŒê|š¦nCdÜQ²hùIdmÖ¯õIðóM{‡iuKy'8æ(&é—‡ÔÉX’àÁ8.òƬn± «SÕp^$òûòƒVÇL„[èì’ƒ@YvÞ]º§ªCuàÚÙuü,w¼·û\êàÛÓÿvò~¤/[@P>ÉAYocˆôëT?Ò£«é‰jôT$„Ž‚,¨Ø¤Aw>.cgs½1ÉÚSfêÔÖ¯Z:ÂV’Îc»Ž³+<ÝÈ»jôPû<}CÓ•ð0QÖTæË<¥4¯ÒL‹R2b6© ¥€Üµåp4ÑÆ¢½ñ×Y[ÕV„tÎVÛùø ·mrqv‚=©ÕSdMm{DõÙ%ªzeÞt<èœÀ‰r´YZ¬Ì'ÝK\JiedN|,zèá‹B-7hÇÍy:+íG3Œcß¼Øð‡g!’£œâHÈÖCŒ‰Ñ5s;WG¥¢PÞWJª*[íd–J`N9�Eä$P<æ'i•z&‘ùÌžsû$¦ý1þÃ1%9"MúÊ´Sš˜Ô@ø_2n•® ްU©#h‘rDCßów4Ï¤Þøâ˜öO‚¿ƒl”ÙGæàÚs%óÒf¤+ØõžœÓà8“ä >ÝeËW¢±~ÞùG*¾½0ÚÝš„±ÊC™2’„(†ÏËÃTEydq–\®xÀÿÏÚÛíH“$gzW {¨C®�}þïq¸l Â$¬¤=MJ rj–€î^ö<æ‘õue5f8ìéJ÷ŒˆŒðp77{rHÅý6ÝßìÏoÃD~ám'l‰|V £}Óã»±ûÖ ¾WÑUše[JŽ6P¨ŽGÂ#¤€^¾Rµútˆ·çepmùÄ÷ Z›s;¥KÖ‡zg~ÿV#ùNBÙŒ9ƒêì¿z€Ü@°$S~4PýÁ±æwá,ñ,oµ’âî¦Æ¯Ú}/úEÍ‘jÝÎC$GÆG-çnG¯}yšJá›^…p$z1ŧç5èQ·\Yzt¤°‹›v`¬Óa‚¨ðD¢ŽâñÈÎûÛiµ@@æ"f)&± !‹ñ³ m(-íbØ’8<ymFwïRÞ<Áž0cx)yy¿ù:Ô²-0n:É&5{D´£œñJ‰{12^¹ÎêKc¬V4.E@çÑÎÊK)KY©Ûð‡[öñ»ÑÔf,󤓋'#Ç™÷“R »`èÛñ2gðEΛeq—®Dk7G¡«£Šg™DJúÈÜ™ºÊ +LJä¨8òQìÝã”}ÛäÛÄûŠÓy~ {ÁE&kd]Ø£Ç%UƒlŪMî‚sS2¦ÔΙ¦ãŠ^×{'Z#zÂЃcôˆµõVzPÊŒËMðO”%bÚïÙ!î”7?”D‰‰íxˆ +yÞ·¬ví¼X¹L9q (w|c~÷§^q`ªu®éýÈ4Ÿ AÔOÊ‘‰ÅÅ×7N–È\�mËe9ÂIz@¹âÅ]®™Bm‡ºàgnFƒ�Ql”‘…âöèZ›BÁ°C.DðbÀÐ!.˜íÀvíe⢬4Îë< �ÙB¹…×±eÑk�Ÿ‡©ì=\Cô¸b˜®í¼t¢¹Íg‚>Ç™ÐÉ3ÁJh0—éxfß@ _Ñ5@ïßL|4Î)ßoôŸyžìâ¬0q™ñä&æ?PÓË7el}£ž*ÝU%/p¾¤!žâëdS§ Ôži0؆ ÚÁÓ9RïÕ‰FiÃÕ5.E³:‰¡úxp7”ÖIºƒ\ÚSÂ)—b¥Óâœ|cöЖV(ì;eÃå!òfP™ ¥€L€`ÛA+Ïo‰Ëf’—}a°›äÿ†›Œbç‰}´xW_-šhwìh¤Jýöb÷K¾Sñ9ÜŠhˆõ‰*ï {šxïæ4Œ˜ÏÏÑ^ž…Æ»;©9Œ8|üi–‚D4rÍ5`ÞSÏV:鹸á[ Š\ar´˜½Œ§9ìc±9bØ'!vmoˆKQíô:»5„ã]×VâÆæò¿0‡á&îTÝaWøÃÊÖ[ÃÀ†péí1^ÞÍ5€ëg¸}RÇb•‹:7r„OC^]Üú}y_·~~t ”æ –FéØYœ÷†KÈeíK[¼OŠ·\¦‚;\à[ÝS`\L$x2 )t‰¢l4~^ÿ€Ç°Þ𨨛¡¡ÉÔŽŸª¶ÏÌópÞƒ˜S‹äúX4º¢³›²`cHcQñ˜‚ZìÁ·7wϱ¹¾¤îƒ/©gpÜŽÈÄ1`º?eÉóÐÖ‚ÊåÚì +¸/m~×�Çà5Ö¾4ê|Ùò§ °õ�…¥ûíé~;"°´%B—þjÈíz,ÈìÐ@ #ÑøúV¼ÇŒH«5Å gC ókÃ8*¨y¸/ñ4/Oø@–Í&³1r·,þJ�[¤ú¯m¢æ+B.c(áTæÿz±~ó¼ÿDm¾ŒäÖOv1†ÆÞwÎጧ4ûX†¸têx*SÅu¡;³±¶Ð¬ëqilK€vsÙDIÜ…ìʤ,q9ÁC§„�õÔOgX•“ ‰m–#È3O~hÕ4ƾÎFLW”\%¿56þ×6øúN`8ª“l/ùgJ#å•–ä\ÊÝÑ :®ïS™C¤À²ytòåÌD~ܨ3òaÈî÷ÚRBˆ@I€e™ê¹à|»ê=áä�ÄR÷yhá¦n¤…é ÃÀÊ ¸)P€ñúŽÈc/0Z=ÅeQ°Ï à罎i°Y”ó¼)4òÆÑ¸uúÞ â·ß2U¾\.¿×ÍÏKªò¦AüÒÞçh3—LÚÒî‡MÌ9Z]œ 8¿EägCÄ'—ç÷ÁÕ—(4Çÿ9UŒp }ìx޼üh¨Œòp܃A8öI1( [Áðð%;V·TÉ«øAˆYôŠ×é±À±l~›R͹`Ä™ÓÞD¿ƒW &•}ÂT‘h£‘»:¡ƒ§ôO4^ü“ˆõFÞ¾ÄÓ|$n2ù[¶vÌzò[ˆNð-B¸Kã}¢Ô k(‡¨´Ìó(ÍÄN= ˆÆEC•ÊÝâ‡.V£ŠÂÖ[ó=·ë7mÀ6]�;6戣4•J•ªØ€ËöâkÏud®a{ïáñQúV×\Š=ÎEÔÒ•·EÆ€œñdc³g\<ú,Ö‚»äÐüŲݪ·¢G€üeL',¾Lä¤7˜î} sáI£øÉ›ôð7=¼pôâž##vLa¾CŽ|zL ãÝ®Øê¿7,4Aê~ †ß4Ƹ‰hò31û þWµz"6¹YUX‡¹Ö#øöjðppTýço¡:ÔÛ¸K ±è˜á÷7 8µ—úîk#N1› ÑèšÀc$’g„¡3ÃdßE¾þ³áyú¼o<ýÎäøùX\';DšSïbØ�QÆÂ„"NÃÕ€rÿ3X…›ñª’eŽõ›M5…g|_Ü—-�ÄÙ`c²g–œ”ç÷ëpVHÈíÇo°1¦¿U@¸xl §iðb(r@L‡òê\6ópq¯x¨`MzbáŽoÅ¿àrûÂ[#Ùê¬èË1ÎËQ_ŸçÑ*š¬ñ$⊈£>¿ÄBÙ‘aMý÷MÑiy.îk#ÑÎä†3Õ8ølq±KøÙèážÏ="ØNÔ„õöù¥:MZò:©CIÎ’éï^Øõܰ¯‹î¨^ÚGÄÄñ:›¸xûÐùá¡5â¼çógè²Ñ>#ÁÒ3Y¸¯GïŸOÖcØõÖÈè0Šcûhcs·Ysãç +>2^Âð1å4äÏ£Lã‚O;>¿»éb=ð•/¹æúÀncé– ûœ†ˆÚØ’`ìn3w4o@Õè!o^»3ðǪJ&X|ƒîs8ÌÆh,·®BÏìs£r?i¸4„Î]¸_@wØ”ÁíNxçÚyÍžoZMÞ®F5!~*ŠŒì^Sð9ŽÖûxˆÏß9!nž¬ge~ê|ŸÑƒØÌùz†ì[YâÖ_ÁÄoI÷Äm†Nl¯Ê ¹¨©p’u•'ôcáåáú³#6ÕmŒ'î·uʉ“b±ÀŠÏ;{m>7ëy“.¯£åtT‘NEœ2÷Àm±Ú(h‰$÷xyÇø9èáMzå>+ï’{Œ‰`õ ©6÷�ë¨=€ŸG›ì½EçYš¾6vá`@”¶`„|$u4£D²þqyqWùly äëúù{"7ÑüO\³2ÂMK<œb•_ÌFäši3ÞfÌLÊ^ç~‹i™2ÓòdǺOBbPêæH“ÓÙ?e*Ì_UbiT›â]xÉ1 ‘¬dWQŽ[ì¹¾6ü<þ5"¥¸ÙF£ŠHãBB+f•“ ”Ò˜!qbq·Ó2ñÜ‚ÜQQ4Ì<Våx©Dˆx¡f¢”kG©Éú#ù²yçÆ{C¦‹{ ämÜ(1ÐlÄ(ù«Ê¢7ÄÁÖEªõù\£4Å‹"œ«.>ß! ç4´Å#;QÆ�;ÑXö4LA:+·¯wN ´¡£`ÙxØ×Ò€•Й²¡gJ3|~JÔ´5µ>I\}›®F*ƒn5ëÆŠáCƒOŽR†7áb¼¦@ù¯Ãí2Û.PæÃVåÑÔ'h¾ ,+„*Gççgp“E©d’5®ýÈbƒTØXv¬š+ÛèÁ0¿yn9 +®“FEÞ367ÔšN0Å–ºÓ¶AàÓHZ„<ÌÈ<©»N4!SR¼@¤¤ØõSd'ÕG£» $(LS¦ï+çôCÃ"÷7Pg±d_ò×ÅÚ'aµÃC‚ +PK/'Vù=H`”T�àr]¨!W¥ ’˜üXwNÍ¿œôKaqSõɉ–tLL{k€göíüÚp+}’Ù_×X aÆ@!jçÙ%ú¥à‡Ù}KÌN�Euœ ©Tä6H„o°'q‚iÆ–]Óùž ¶Aª3YÀ–';z—ƨ½6ÕG”š*¶q+•¶¿Â¥+6›0•;À0%¹{¿E±¸CÚ]¦QâRJ;jâ4zÜA2~„ƒ·›ÔáÌc\·•÷ûÊëLÃÄ8áýèçrŠ_ט ¼’‡s¨¯Šæ,>kµK8UGAÅ϶ VLëyjìÍØI6U‚A°6gJ†•x똤+·Po@º¹i””–ÒvEèßy" +:ùÒÓÝ~z5ÓÄ3‘†"…±1ªÓÎ`§vAô€¯ö²ÄÄÑN‘ËfS%í3·«ô°Õ�zå‘ZßòLØòr&w¹èäOqÍEΖ'� ÅWÉ^¼Èv¦ÙéÐÓÓNŠZ÷¼4]úmlü×¥VÞ7=.àL€é㌊ôµrP¼±Ý°uÓMHÕö¢S;¢æßU¥¾dp= ™»„~ ±'ùé[“2µ”^¸È®Ï³8ý¦!n: jþ(£ŸË|ëU®ãÎQ!7¥ØY>¸WŒ.ÜöâNáñýð{çµþÒ#Ÿ$ˆ3¢æØÃÂ:üæ8*L^>kÉ�¥dÙq±[W¬ök‚Œ…MQ5Aÿ9f~ÛëHãÆà¬Èú¡Tgd¯¦;jÊ‚æ¯LÕqsÙªòD‹ˆ†T_ý|[…©5=k+’“ìÜSáþÊ:ì† ªÍ±}Zˆõ®Zï>ü&G7{�¬ám–×™2h莼ý}`TPA£EãèÑ¡EÒCÚE!if’›zfG-E.€"\ýsT™{ Þ`ä¾ÏN⦅Lrl'¢Â©à›™ÝèÆ*ø4äüð%¶y}KÒ…rálç©9¼5ä“íçÉ>/ë[/v7?ž¼æ@\Ö:—·:Wiõ€Ý:Ëê„ìÇ+x6—÷¿IÓEª„ùûí8Ü"VTjÍhdsc-Þ 5Ü*0Cã¯5Í·@ÊAÈâ—SúÍRõH�ö¿¬ÓZysçùžÌñö9‹+7,—g‹ùÖ©2›Gܺ3Ѹ4ŸY8×9¢fN& a¡DYh±*=Õ¼;ÍcôAíÞHAø•žì´é?°¥!€3ƒÊÎàh·ü‘Ô"RZ{FÀÞëL¹2›Ùaz5Ù ÉmÅe$JÈ_\\ŸÙÃ]×Û²JÐ8Ÿ'XwÖïvK“m…P ‚§àa²0Þô²ZÖà7ê ñvECÿ¦î*3 †åz~Ó[¯Ø^€J»YÕHÞjÜÐ,l×¢²Õ>~â@0ùª%�ü׆_OXT;�³øÝ·U|^Dí”r[êÑÃD3£~×ãzàïm³' +i(ŠÞ„ä¶Ž¨;¡•8Â#?”"ÇÿÈ6õ{׬h7fB:óý8äKwÚ¾¨f0 õt(·‡ÑŽ×Ï=îyËSж;ì4øÒSŸ©®h`1B-ØçXþð~8Ò9‘QKÌM}æ™TYŽñ0÷ëL9é>ùùe"�gnQ½\+{¨Á¥¶Ë-üwç°*%±ÈÏ�BíµÔå‰&BM X°pè-&^âÚa¬“^ÖZ\Ze¼÷8ž„C™÷^VŽtjE¬5¢{9u-±ÏzþNâÓÏÀ¢UÑ)÷·r¸!C_W†Ö_Râ5¼s(©½�1ÍY…ɱÆÀ'–×;J`-¡g7\úAVŒë“²%(•�‹æåÁ¼q§¯r„´èFü:;nò�a+ê°*j³ E;…@ +¹†…4= ¸ßä}ÈÛ`ÄâXî¿ðìc.uì× æ{¬Àw§0зgúÚK…ñÕ¾X½xÔâ¡Ð_�E‚î›÷ÁÊ‘qëOÿk/`¨gÖ›YñÓ•(ð¦·<Ú ÛŸÒÝ~áàs%¼¼P9¶¾oN£xس®ÒÉÑ/´z$Œ*¢·Rò^ÝxD°#HÖË)ˆÙuÒ¥örll\,Ž•†Àý@bõ8“°àÆ‚jf´ókÄS´ÛP³zD`F$±^�!Ô }§ŠÛJ7¬®ØÛáÉ_}òOеQà¼Ð;ø¶æ¯í…úÒHVª©?’2€‚Op^^wùöó¼/=ûx-M\}óí™LŠ•l\gÜìLƒŒ‡Ê22Ò“Ñð³gGžS({.å\¿ôú›s�Q£õá\ô8IÏ03ð0ãäBV ˜0¢Mð¿éAÏŒº„a|fu~ÓãCâʼÜè0‰lmÏi©i5Ó.ž«Ç{gCˆ– Óñ7ÇÙ‡*³àõcHª)žók¯koƪ_{ž¨ÏÉŒ¶3�ì¦[1×RDq¯ìâ-+ù +Ö ã|J™NUÁŒU[–›)¿q;³2šI%Àú ÚT%Ç9^–¸0ÊÚ¨[0¾ê1qÇÿö¨¸PO66\H´HÇò¸4Y‘+Ϭ="Ê×:´§DOÄnònþë)ÛÅ™”íЊ㰠osÃè¹?F¦´©pV�wFõ xfZ ©Ü‰Â;Zg»Ë +úm‡ÌÕ÷ÌIL4àÍ\|9 +é`îÁ ¸ãÞ©Ô¾bÇÎÛôÖƒíÆ8»œ·FV~ªõ p X‡rŽB®¬ÀbÌÅïŽx,ËÚåzl¤Y>›HÐZ"Û¦ˆ³±u޳ÄV·“'(™ÿ]lÌžQÝï·¤<ÀÙ%ë>ÉŽæØˆQðÏÀ‚ +$¶Vè�=h탈ÿ¿-G(¤Ã‹,[:ÃAHÕ[<šÇµ»ÔPé!Æsñ®‘Õ›- zk/Xï:ÕòˆÉ v ”CˆÈÅ|ÎŽ&º]W +/ ß)[Æa^A.6,‹ž<¡xòšf¼ÊÇæo¢WGÇœ^ÎU“l”Gí†cž&Bì-ñ³·\U*õz�ïg÷Y§=Úú<OÓâìÒö,{%+‚”]^/rqô -•W^… +7rœèíXûúx*þȸÛ[GXu O¸âË×S &…œ¼ý ï�óJžˆ>,Jd¸¶ã÷ø¼÷Eø”¥æ’ÑuvB¥ëÂÝ&ÞWpÖ˜ÏvUýÆq^‹v¥Éæ<.,þÎ,ËÞÀ*^[Ü2€šVM Œ«@J\ìÔ>¨&¨�±¤ÛÝ‹<´ Ê|Y´½4µü@í-~2†¼FóUÛJÂnÌìE2ѯ¤æëþ€µä5†åÃËü(öµXÇq¯'ð²Ø:HRó>½DQS¿Xyó?ð\µO³+'v ¶‹Õ‰ö]×i‡hÁy®§XÈ΋ +D-Ø=6éE†�ÄèY‹&¯"Àž !\¤@^T°ÙJæ%±(õì¶©¤JÛ¹(Tî=‡H·;«93ÂR¯æ›Aöº_¢¦5Ø¢³qÞž™ee¥€#ÚÄ( ÂÅA˜Ž Š•5‰[Š ü˜h�]Ö endstream endobj 23 0 obj <</Length 65536>>stream +•ŸTãm€îêOUö ËIhWv#úƒØa¡Ò‘÷ßÁÞ)á0ªfQ-£3J$Ôuò¤±ñ:âÎVˆtYþ¬Eïƒ7*P³RÖ=xUéQXL!Z�˜ñd:8AyªÓöÅΑ7-y&i¢lfQ؃„˰\ßè¡dÌ@kÐ-8Æ$9="ÜÅÈs*ñœév€•VÈ‹½Y(‚þ3©Õ”òyŒ•ó›"”A mXË…d}a^ŽÃ);Pè2¯§½“ʤ¶ÍÐtÑ÷X°bZ<¥˜Á6°ƒ½Rç‘^ÒŽP)ðÇè +''~ +€\äå)òëÊõŠc+iXŠïN¬„"Æ)BBÀ1GÕ ½HhÁ®é.Å d)S�.ºÎQ^yA7ÍŠN3A@¨¥hêîvÕ¯TZ%Y ަ³uD%fc®ºà¶óè"‰¼&š_jÁFPsE6Ç5ôÊ©ô–·Oå.•ÿMIÛ¹K¥5³øL/Ù[PºAïÓ‹Lš˜AA•Ê šxèê!ңɱÙ9k³]¤™U8OãïD]ôYÕ;ÃMÖõ\Ìe+J;ˆGˆûuåIÌ÷ô,Ë“zj+wö°ÆõºŸ\ŒØ¾#ë{ÓÅ�¼Ëï”>‰ÅžÌPW0íÄ¡ÓHê |fÏM~çAY-ê ,&ºÓ5„”ÎMb³‹`jY’Åo¸ëå@-pÉ•]k�Ã}$ó‚J7±ODáûÞ·‘™!Âãã„=®ŽFÜ¿®UbDÉâÝÿ\ö„tß7üÕÿ�?VÒú>þãÿþ§ù‡ú¿?þê¯ÿú?ýúëûÇÿòÇ?ý-}£Ø½ÄÎ]†…>¤ ÆÚ?žä ÐÃü“-šü�ÜãQtÖO`þüÄÑ´1ÂD8ëËש[¶€ùiÓ†ûÊòºR6g´’å~gYcD~"¡¥$ëXCy.;Oþ^Ó ½$�¹bRŠ40Žri+ Úf$²ù>ø_ +A†¨ÜÛæáÄœØ?TÆ©BÂñy +òDX=÷;z>úvBTie<qAø + p%£±Bg./Ø~¢óú!V›CôiS”€À;4ËËYèìÞ|ü‰ñfM.—¢>Ú`Ìk6Bˆéž%Öו£ðÇYj^ôz°dÍA,9�m|¤w7Èt£Ž®z‹à$hòwØ/Á±L.á PÙ6œÊù/þ»Ò3‹^HWÑ+‚¢ìÅ3£’ý™“¦À7ÇÑl‚`;“6Ü:ìë©6Ï¢èë‹»“ù¦Gâ@}$Iôâr¥mªh+Žcnä2Ëðº„ßæ¥Ì<ÓÄ›—HتQ²^ ¡y@+ÓuUÀ”[ñ™Ø +¼”u%V•+ûiärS´õù ¬ö`Yúp8…±‚ÄÁÛx>õ 6$s£náM]–+€•„’:ÆŽøÝÆÝS¤˜×í%D½°ñ¦WLµwö"kv|–Tö®F»ìc'ίÉÚ·D Ü=]ó“`ÇŽ…o³Õ¶WÓ�a–—É#µT†.Òù1äéªO’ *ç+{ðé1ê}¬sh‡‘ɸG>0«K˜O9„iRжý‡iÇ8U$K“ºÖfîmÈt+coûª¹`˜j¯dÞ™DŽ Wá[™:=d' =7Í’µ·Ç \+§|–0út¿rqHë˜òu;æ³lp**¬‡ËãÈ¥Ådþ“‚ +�—‡ ÐÑËŽÙ•!¹@3½j.RkñY`;ou§™±ñMª˜ +¹è-Å6mŽÑ�©AMØ |\4½}œù;ÒEk— 1ïšr½3÷Btì¹°1õÞdîµÞëô@z‰äë%ÝL‡–;ëHJv{gRíåvbi3A/¶òôÚÔö`Çnýc›öȹóÔryË;ô�0ÂÅ@vzI>߲ɞ3]¢Ðâåê¼9ì™ðØ'6r)s!_™¿èØ—'².CÆü¥ðhã—Žò¸PÂn8E£‚ȶÉrªû±ª"YýÑò,+Y5Q³Í:¥4‘O+žŽ®Ý�ç.ý¸Áw¼ +ÇhÕ(éaÒvÁ}UdjZÆÏ³‰ã ó´Ú@a´×@ãÚkÿé°òcÒÖŽÄÑ|Z)â�KõÐd“c‚£H·”5$ûLiµG#Š?7æz„̬I)½ey-xó‚’l¾˜tÕ˜Y�;.‹PnR%¦“=QêÁ~‚ˆ“ðØIøKŽÂ"fé7�A™k§®×YÅÌ•ó +Q¢Ei–Þế—´÷‘7ŸDÉDƒ€R\K¢3k:MƒNH—Ťju,‡Ó(±ZPëççÏ]÷åY%W>b#8a#DGðYÍ]è8tܶ+Où)ÌÈÈwñ˜ óc ?Ú3'¶STEžÃy"ù ùuWs$D®Tâ2ñ¥µveþ¾Ô-rt¯·ùÊATlToÁQÀÒ\¿z6lÀ:üN+ø ² >]ó¸x$Dt„ÎdþÀ\›‰Mo€nG$dn_¹qãÑ CÜÊïŸwþ’;ýÀîœ3aæ¤ ª˜@bò�eSÈžê3r¥‘«Z˜ _gjÇB;–-yMVìBÚȸ'Û5ÚND8 )8Kh"“HÃ$ [öîÞ~¾†F!n +Þœ‹ ê¥7ÏÓ X˜€òê�î—¤n–^Ê7ð)êA,MZ5M–Ñ ÉkyVÌ3B½]3‡xø’þ7F G´—…V}EJ%,C©€fÞ嶖ЍÀÔéž +eW"ÖÙˆóG{(r4úã+³Nµ³´ßè|IÝ$üãiÐ` Hönâîó(KH +±‘LiÞ“â·¤ýÞ÷<÷½ó¢ŽḂÓh/”ÃUR&ã&sQ%–ºÑ{ü:ÞãäÏxAo–EX ‚.‘ý‡ì±~¼X/¬ßÉ à R³ø‚ÂD<7j:ð dX™:p¬Ñ鉔ïÑ'Tdr³ŸV‹/ä4¼Ýrñ¼´B•—ÕMÙ÷Áq=1ÆÅŽÙÝ´ˆ¸î]kb„’eÝñ×Hú8yÖ5t6òÂÄSè°=â$O‡È6¼ç+k<â sŽ£Ö‹ÅE〈˜ì%¡ŠÖ`Œ™OAj¹ÎȺ•꨽¶^›·{¼Y³¨DßSvBÌ’Q“BVû¤C `Ë|ß·ì&B‚®î´‹Áx„ò:;q²ãLJÇ›´Á›ÌŸÿÔŠÀ1%næ.ÖÆ€“Èÿc”"È'ÌFez„4ØW‘Š€óðÄ+Ô g‚åÕÏ‚²€ø+Ôê®ÌñöoS°j|Â4DtÍ|ÖäRüz0'(ãl¥šÆ«_t|ãÜ2GR4ü4¸›‹çÆ&A +I{pöL1Äݘšu‡ˆd©¢ª;±./._6ÚÃóôºŒL(ß„k3pnÖœnnÃþù„KŠnEâÅx½Rå‘H@L9Þî&ÄVŽn-“ð(ôþæ¹X@XâÙc"‘ÝО*}9øÙ{JðûИͱqèœ ¾™?ȵUõ¦äÊOØO½R£r)Zåèi6bMö'̃ȎŸ(öýFe *Qr?ó,á‹»|wŠÅ©Ôt€u`Gªùrªïl„h¬ /<ŒU)>¼L€¿c�-Þû‘†¤Ñ âSæ†FåLy%\Ï¥;fòõ/û531M…)ö¡±íTŠž…ãN¼€™^÷Òú©Ø”¯þ`·t¸˜ÈPG° +a…ÇðWoÂ…"„äè�sl=Fó§âSÖÐ×Cð‚)·e-ш¿è‡#²#4(f BÕï¤Ó@%ÊÃínƒ$àçp—ªu ²¦¾œüVP4$¶‚î¥yQõÉØ!ș∸{ÍÛ¯‹'SlPß"%#+Š—à% Å~µ`ù€Šj’xš* +M֊Ц®6;Ý)!ZÜñÂ_¨L©xݱ™e |±dÁi)?±xÇo‡„¨ð>*Ô·bè©;JŒuòÓ©ÑØˆbÝeQSu›á ˆ– l“hHÕ¢UO–"‚Y³�;Wµçp=Oa’–¿)ÑÝ §êåQL‚fCåo ?}™±¥£°ƒ–¶•©†Aœ›(óouG‹Äd„ЂŒELÒµ‡s¿„ô!+o±ºààèƒ.%Þ™l#»6œUì@*ç¤[Ó$ 'XPª<»çšâÃ@Š!Á:ÐsýÔîœj-µÛK +}ÌIiKÅÒÅüÈÄ£)eF»Sþßš™Ë¥_uLmwyÓ[yÀ}q4HØ=vÑååJ终³¯v€YYÕЫ4d×ni<Ý!æ€ÄˈíÔuŸÝN哇ŸrŸÈâ‘Æ¼F&x¨ìA·"Ÿ8⾓bTBƒiQîÂPtðf;ø GÉ¥’ÓEÍU<@<ž[V¯Ø|"‘ãéÀÑÜH,¢(’É‚~’@´®�„USÄõ—g3´<v)dœÜë¨(¹bãp•L±Hž 2®é=¡š[ø™DKLv–,µ…j4•b¤z1“™˜p׊Zà>½©û/RнŸ t¯–{'ØÎf·bºXÇ|ãû^FÙ«ÃÌó¹Žë Ü×i€n`—Dž=Ø7ƒmÙýóøÃËŒt*êAS¥S¼ëçø·¨µ +1{hµ¤2^Ô'M= ODež}=j'$d¹[æŽè¨d‚6S‰†v‘RZöhâ°P]1ÞWæ³1A0wÑwVßg¬ˆ(Øÿr¢×Ne-†¬¸Hue©½ +«àØ<èRø1)%±KÔ·bù—1t§‰ h`KÌiô@ ë~x·¯"½6Jz%ZTÚíq$±’šY —‘km„ê†^u§a×a=j4 +Ð…*ö"âÛ’7ÏçnFørD·DB†–v9=ÌTÆ|æ¶Æ1HjÓQw*Ò¤ÝÐÃú_lNÚu¬ƒ¾dg³Ýò�çëã]×'Áb�pÇ&¨?ê¼’$[A/9=‹»qîð=«¾¨G¨ÿ ±RU‡¸®*žÂHí˜óS>1+$¡ÑѦ^È&©1M¹©¤ÎÁÂ||mÇœÈÂA{ý -}Å×îTFGIO+oŠß@ºTˆ¨¼)4%ª6(-§‘n3ir|™oîô§ÜŠ’–óDôJ âˆÉ ›^z(Ž‹Ó1å +µ7ú©Hߨå™Ré2å#°Èd\ÌÞ¥d¯ØyÑk¢CCw)¬]ƒI˜~œF®l¹NògvÏß÷S–¿ Av(UA@”¨¢»œzžš;�åÀ¶—ð¯š"¬Låù€L±£]Or›^êHôׂj¸XÀ(ß#f5ì-Š=²ì…á+¥ÞK˜l`;DÃü¡ñ2WF¤† <˰ú+å”7ãþ‰*çÌâ3% +e9è°Îõ?ªÂÀQ°Ç™˜¹«b[ÔDE ”l·AU;éN +‰©Ú©ˆB¬M†G<“’{ÎX‹ySceB~k9K†ý6âJÈÈ¢VhC|È|ÚgŽb#ë`ˆ8别͗“Ò8œ/²ò9Û“lp™gJV#»$Œ6D$¨aßlüUmG[Žâ"» +èÊϾkÝ ¶“èOí^æÂȪÖR¨ŒQ@ùÙ1žUä!d‚'8©‡}Lœïð‚$¶36ò…\¨F3}ìqÅÕŸ¬—Z›¢’Àâßqä;Ý‘±,½eÕüy6îìÊ`’¾¬|Õðâe¨W +¼<6S·€ãjÏ\qß'bVdŠ Àì`[.½S«ëµB¬‘ù0“e¤š¯•u‘NRc¸w¡A +«w]¿sÜdËb†ùò×A,!bÐk9¼Êyx•%%2•è1´— G†[;™ÚÈ%¨÷óáœI¯NðNÎ1¡0êsl˜ˆ6aä¶U fî7’l&y†R1ò¦¢'øîr-›¨ýLmJ±Æýîë‘×\GšåÀžU‚)¼6†;e~3*<¼&Ý)}æQf,SÓ +ºsŒ €1âÀ©&»xLC–\¦Zâ¼ã`¨r9vçë�*ØŠs™8tŒ¬;s$ÊÇÈ’Â#ÃýŒýøÕ?•Ž”zYàÙ°ó–Áݳ6ËÐX^O2ý ªŒ†GЍð+HÂbÁïæÚ‰<éŠáFU¦¥|DM·Û7x`/=V䩤ēĊÁ±¯TeT(‚'r$}ç‹én55ý^`}H–bÕ^>™èAn +ÎÕÁ– +nÉŽDâuqý_± +ï=FnsÚ#©xíƒk.¨<ÍìDB8ÑUˆÜ©e§@Ã,3$ò«ÙŒì‘‹hp±‡¡Aô:‹mJÚdá[ýqïG÷†Œ255¦ò¸eû>R``–Å8MTs×Ç>û½O±D£L_ÜPÏTiIhc7 …=Ap¤%d^ÇZÏS”ËŽ|ãR¹ý–@’*;ØÂ5s)](iK?W p¸ÓãÀJo¹úëZ8ñ(¶æVÉë=&ÃçºkŠÇÎÔ°!H"0'HBÆ[vr;cêÛ‡q[GQŽˆA"Is)lŸqQ9¡ü}=²E:Kƒ£p“»Qa{HÒ–€êˆ_A–ßÔ¡ˆà:וfÄð'yîPšn©«åùQÅ´ +µ¶W·ÎEfôN)ÏÝ*$Æ™å„rîXOË"aˆ–I¡ *ð‰ÀUk0â”qå™tð“€ã=XDéqåatü�:XEœL³”k½.ê*Ñg_´zdM0•)J/¤¬)S/).æ#“ê< %Ð:ë;ë³®D3>`]0?5×èí£€£¬ß8ª\ñ‘ˆxR߀Qã¥ébßÊ¡À©½Û»µÎëL^xœIÞrsŒén03ÁJ…04;o¦Êd[Ð]UÁ0öÇí˜0–Õ@¼Ulùå¥D8߇g)w0V™fØcuÔÎS fâŠ=L)J0Ö&…ª[58°ä¯OäÕ¡‰œÝ8œÕôÆê áÔ½t›3Cï v<’Éã¦F}ÉìéÝšùmû•])HkmqcN=Jˆøßî3uádPòš&ÄÓµu^,j,Š�…l!kg4µ£<¯*îÄ‚N®Ü’Ën)å+Ý<TP3å-ÑeNüw:¼äš‹Àï(¯Ã?þ,i~TPÚX~Ý}ZL_ˆg§¯s‚sâˆI¸Ç:£@acûýÓ „Ãà')4G-•”e~šDOû\^+²rëutCIÇÓaì¼D<™1“Œ¾^Ó ;yÉ»GHçÿ‚þF?€UmØ?' C\äá6ó½¤Fà-#–©ù+¯ˆ´¹<ËZÞ^ñÍdºû¾F%ýpºÄ•$^xn»H*¯oo2ÿ³RèàBJ7–øÌ¼ :«§gEÃr™ü¡¾Ãëè®êö§åÂF–`˜Léɺj¯lc2£ ‡¿ùï’bvbV*Û^ˆ•›´¸Tö;ÊÝ€çk^‰üN×ýè˹âÅ-ÉòN§×æ\w(t+÷Úñ/Cd&iæÂh!ùõg\þ%È|äjjQ)‡ºNÑwÀ`©Y©xš'ZÕ@¹tÖîG]•Dûsð:TçÐ/·ŠÒdWvÔ¨Ñ"Öfìt‘÷~je7kz"7•WWê|!¼k„–[¥BžpþF\D:æØ{-ô8ˆ,-ˆôäA,6¨Ôo Óĩ—â5°¬Gn+‘dðkÁ˜ßVHX/àŠ*ý9Ý|ÃÍœ˜$LvkBJž]„2Pt«ÞKÙ,ëûÊŸ÷Ø5-ì)õ� +z’d‘Ô´Ž—vdŒv¤ë¼P;À6àlĹlµ(\àûÄ«ðAÑòQ¥a]kÛaŰÉZUŬêC%Û +ê#®y§Ìó/júCgè¸Þ‘FçÖ¬â}¬=+%¿rùK"iþûßqcýwèwíÿGÿyktþOûÃ/¾–2Kê¦äÚFíÇ*7Fw<áÿ0K|»ñOWéK/©#ÎnL¨nF«›e\@c6sßPÏ®€\]Ù¯u2ž¡eè½TVƒ“¨†êZ~-ëiH+¿Æ˜§"(&ú„VB€}. z)\X3=„mƒÖÚ Ðè�ÒSù…Uò]1ÃWMÏS‘k@=Eí‰ÀUh†ãú]³à^òpªêD~È6Ü'‡Šü-™/ÏúH}® +ŒeqkœÉëáWbì³Ô¼ë#âÝfnld¦ðz¶ÌÀª_ lɬ÷ñC–CŽìì[VØ^àïep…ϱJ°ì†”{ÐÖ!•ÌrÉ©Ó,ºø$þ<¹Îd8²sÚ6r0ÒвùbŽ©œ +Ù¨É|EƒÂ×_BØV¯¹6p±Ë£åµÑ�d‘•ÌJMvOs+>ðùæÄQ¨Á@màžz¾ÿð©BqäFÊÚæè}!•ôjð(H-Æô‰×âpûò|ËÜñn¡’Åm-ÞTn87챜å#V…†KD]:‘ *:ÀL!7;ŸÏ=¨è·kNüÏwÐR•fÞ§†s¤'ø‚Ø›qÜœÒdÃiƒÉÂõ#Ø~Ó@< ‹7/Ç]·Áà>nÔ¬f^ÒÜS©È8ð×Ô³¡ÃA¶�?$ucÀ=ü»?’|u !Z‡ê³N¢gXŽÕà¤ÜûçW–Çó _Ùß.ãx“.dC}aL¹à× yn%“€`!g.56N·Jôo±¬$§ÞÞ~o ÃT`Æõ»,˶ÄM®Œ�ÏœÈÆ‡P=dFU삜¨œ(+dâøÌƒó&ÉГ5xKá3¡"þ fhý�åv«HËçl“ù¨I®gäÑVüH'¦aVŠŽzÄû¹úÏ€X 0Æç¦©$·ó. µ×xµºÒc„‚à!;b¡øî´Ý(yÁû”QÄÃ$·ó4djåa ¢‡ö󷈤ÝàžÄ™i<õ•·ôG謩·¨5*kÕõè¹ÓKb9IÝ+™QzAiñ8%‰3Q•LWËùð9ÿÍU÷ߌ5âøÁÿ.~ŸEYÓŠ„ã]1{aŠ9 .aÕ/–éôÕÉÈ‚ï)>ãB,²R´¤™<97f?‡ %U%„òHšöNl£ à¸i�I‡ôl‚.Ë‘Ud!’]“òÑÏá²”?TP´ñJ)C…!H¾‘Œ+ÇG!NÅæâ éD?Ø +�×be=}¨Þ¸Ó†fbfc×´neÛµÐ9 PlQÖtNºðWȲúq ‚÷®j�fy6¶´¬ÆèÚ ¨ö*Œ”\ÿ”ú}0®î‚•b î‘y‘w_V— NȲZšGP~#Xk’Ãò—ê¼j’ÿàŒ pÃ'„É%Yÿ'Ðn?f9ï[wŒk +n+Æ.±1)îö;#ë—¿à ®«P{GJNñ%KÞåŒc0ÒI Ð<@çÕÐßYY×�‘EþÎ!Eˆ+ 6G¦Æ(�“SåOly’úYÃWJ€ +=ó§Èƒø„AÅÃ*¿p¸˜µŸ0¨¢Ì}z$š¢RE9ÇÀÙ™3ÍWÕäXbcIÙ¨UÙ-t!ðÈè[öµÜ¼“i&ɤâˆCòzü¦î·˜ÞYú€Ë£=ê×^„ž]nüª¶“³”$¼wx²tZàØ„û$/—$9¦‚OCI¯wÌ2ô¢ÞA/t‘=Žïè|ô\ï‘yñèÁÄb¤Ö7ÀG© 0Ê�÷0¹q‘™ÙR? ©âpßÒ>Â�xB®»’±Ç&D6dá½’[¶us |ͫ客ϗEMÍ9‚D»õÄ}4ˆfÈwD¹Ä€aB‡+Á5èŸ\ª<Æ/q}i;¼SÄ6"¸ú>ןaiŒ�BA`0†�Ó)uYR:)¨Æ† ¯¼ûÓ \ÓÜLp±Ë«qœâw‹Œ²ÎJà6À<©¬^·ÂŸËY¦u/Œëß{üz’É!Øß¾é%[$ÕÈÇ¿d$™ïâùiDZRO +É.¿Ožá+-NWœb †è¤(¢j´\è™HæzNÐSUˆ)2—¬)}ª¤Ý=LÈw(8Ý·ðVÕì·®ËKé"¥Híî@°òD¡ñzÝEíÕÜ㤷d°Ba€rF{À+ñBJÞVI$NpÍçûŒ¼¸Ñø¢yG¨ÍP PRÁ•5‡žÞæÜr•b+uºû»--l-SÜOžõk/xÔï§pyï‡Ù´.å.z\G¤ÑY2}qÔaŒ·MÊá×9Y=Æmñ`6½†J¨{zJ² +ײ~Ýß4P9êØY=Ê:o½tû#¡[pñ½“èå0]¹ó}΃·xsálÇÄâáXŽGÁ¯ò¨¨ÝÉXÒ/[}ü ‹,ÝPxiß êµ™q¸]tî•¢³ªõ†*wbíþYOA*°¥ÏqT +¼9äûh(R‹ ˜‰ÝXfNJ¼„‘+|Dtç~y`æÖ¦0€�U )™›$û±ÎÜ©h,æ²AîÊ*·dJþfÒá#R3™ô>5úÌç®›3îT÷‘ Êb“¥ð)_©äJ›uïh•\ÑBÙ){»à"ññ©X‹lî_¬'e/(ѧØUßñWby*[é•=Ôúæw^KÚ£÷Q€¤µ"N5ûyH]°Tn̺(±àip0“*)FŽ(ÈŸ‘þ’Û +€øÔÐÙ7+³%‡ ‘I²cÈë[¿úxlôeÌ¥…ò#7·8ÇÊ×D}åVã4 …Å‚=ƒz ûXYÍKezi[b/–=zmµ.³{†ßy"¸9jktèæ£ò"%Ù)b}§^Çt=&µbÙåÎØãð\HÛ¾Uªà9‹=(:phª–ºˆYÖOº… ~ÄS+êØ*4ÑycT·ƒw6›öYˆÄI%úÃH—/U_б„Im°+$µ8°ŠXpËת\'²Ø7 Rz‡+Ãê°ÂXÍà%6ô…Šªßô¢hå¹MRR{H̳l›mŸ®Üö¥CÌÛcÊ]ÊÔµwû¬$ûŒqD/íŸÌM–½úÊ’^¼L,+yyö}¼MÔ 0ò‡ÜPH xdÁíÔòžÇ½osÒp´~—5Ñuê&<w�åŠ-µâ4L˯êÆ,ߘsš.˜ÒN»º@-I0‰7ÓïòƱ8žÜ jQ9c‚Cd§ócg Фø×7À·h•L+DP3»=Bº×¦B}= +õë±èAæ*gA̪›²H¼Ö5Y¤³0Ôf¢„A&†ù&'Oíið¿šç<ˆ#“Ɔμ„"àJpB§Ç<v!~ÈùL_fñÈbé’^*×3¦ö Ë7%°"ŸÐd{X•œ×éñˆTÈ¥’ •½,ØÂ•M¶kdÖöQ<.SÅ㪸Ä×5ªG{¼Ó¾ét½}òx\õÈP_ ÄR»µ2ð´T± ‚²†Êo=ža’\_ ájö=ªOr3‘Ñœ)T–0‹µ;´J«z˜ DÊ/_¡ƒÙA²‰‰™"¼ÏP˜I¸”ã.‡ŽŒ,bJu°&è’•´ÍMh•ßÚYìõ*Z•ºÑjgž�D ÝOs]÷hŠÎ—"=ôF=„6R`rö64àLÎWhl>b(c`^÷2“:Á érû’ iù¨f¹Z•’ŽBÞ!æêÞÍ˸æ{|=M9(fös˜µO§™TX>‚¸ç‡Dw`(¤ËÚ7ÆãÀ7Ýsš¯¨áò<k+æ’@îNE›B½^\ƒ…hâ^²’ }KæEdy÷yÃw«ÜùïŽs¥Q¹|t¨a4uŠ®—ƒR<[X"1í<¾KO#s4tdFKƒ+u_êÉÂPÂßWÚŽa·LQsÃ÷Ï[WùÝ0mIL¿sb9-1ÊkÚ©fBæ¦~×ý‘Àvå?¶´îœ$”-ÐàD‚ÇKš)EÏ>‹2Ë=# + ø¤µÌõÞ#ïTI`y +‡ÔÛqy/`}uÐQÆEE5óS0ïlÄ&)„=H[>ëä½ó\¦Ôa©ÎäP®)Γa¦¡¢ƒWËi”¦èéùª2T²¯Ïè×r³Ô]É–iì׸ŒZó8Ý_’¸)cÖ/f?E¶Öáß$£ªÒHÈýC;.Y0¸÷™Ö:ÏÜÒÛÐc.†ôy^H**ÄW‡},^ EÉõô8œ¶Ó‰È"y _{Iþ5¬—D„1U ‰ý Ê¿ßõè‰\‹Xá±¾wBVPÚ?hÿ@JLE™óAs”Ä?dbÍK×墈ÈY EÛKµ«>qÔB ;{é‚Ü$zxf¥@|ÚRÞ'£–ñ!"ÛÙ“K†ÁH}ÚŠÍ)Ë{¿Î”jxlÁU0ÇҲϙ2ìD¾6¯¥Ä$¦¶°ùp¸—I¹ì¡�kÏ´~޳ᾟ¨¸ht½Ô¶q@Ñÿ`Gc!�¡GØ?3È1èÿ¦‘=yÝJ-óaŠ~í¥äØHÉ1ÌVš1˜µ5A|oJôñòÌ‚Î3Ì|«h/m†™ZûôZzëè@ +FM0pÇRœöÎý4zª²¯žµuœÚSËkL*uøfH}ÂI½Ùò&ZÇV»¬ Hg)m—j „hJsf2‚ <k4JÓÜ’]å~ïñëSÍÒPjô˜²ú7ǡޗ$»XFT'ÿ¨</ ÃþMo×Ì·^úe2±c!¼I$ÙðÝ,‘I cÏ0Q.Ò‚¥¤K—ÕrX¤kPxùåÔ.NEáö¥,¬�Ưo/i„©k4µ‰• e° YZÅŠ]R‘tÁÓ{ìÚ?™£Ž4GÝÇ8i€Jf T(1‡KðÖð¯'w”Ù®Nìw¿÷‚^V4YÐÿ×Ñd+cb ‹pàZ³HF ø’äÀX3%–ƒC´SËNË SFâÌNsØ0c{¾N•=0¥Í+{°Öe¢:zÌçLÇDyá²Uñ’ªHÆÎ¼/>Ô«BÕ-]Ñ|L²‚ܯèÐØ•9?AÆ×ÑŒ†3V’¿ +oéxÛ0 @£5+&ÿŠWÓRñ2Üꣽþh‚^1å&БÄ'F;Óÿ†´ñô LæÕäL+mêush䫊|æN1õ}�@9O·¤”ýBtb2iõ´äæ9’Ðßúò8¤¬°¥e'è1MKôÚŸ'Ð> »yúhì¸ãNHØŒ—ïzèùd;O`©]ñëÔÇæ…þzR¹¼°aãà7Ò]‚Õ +S‰5g¥3inlÈdŒc¯zl”ñ«cpÇü>SA ô†k,eôÈ¢˜‹+µÀ r²¶0èß{À“7É|ôB”®#¯ã8¾v›wN*Oê´Nˆ§´î„‹iGðJV¢o:Î}©ù°Ò/2$Õ¯'ààQL ¬ïíbƒ¯Uƒö2¯Í9 ²=§®d#m¼äNîô\lE‘5;ŠTÈ2ïGÇþðÿ©ˆÆ‘šNÁ>PQJ ªã}Š$ñ F� Ìê˜"¾Äfô:Äx¤mõ®qÖ¸˜…Tçyôòní„s;¹OÀ²l¦:ÜÍ¥½Rv`‘“»V6ŽüV—TÊ´�µƒˆÊÈ@Ó°Ò¶ø%¶acÄr”t¥uq”"wEH;«[âyIð,„!gš×•m%,=n�wHK쯞ú<xmu“Žwˆ !&ç¼>pÞ¾%¬ã-ÇZñJùû‚‹™ÄÎ,a,¤.Úóyf¬WRôkyï¯ïP¶Ôf€X‡ºþESyïÃGiOnÿK㾌I†<%¿‘¾Š‘ÔYÑÞ›)Pø|1#bÃcˆÚ”Oo‘TüüÏG¾ÚTcXÙtþ—Ï7Ö×3ý¹m¥&%x7ÀåbÇ ¹©{ÉE·ˆDãeJ™ÙÏÛG‹í;4j5%_멢Ŀnt*·å=(=>ÊUh@Ñ̳˜º¡¡Ø·>õ›„£SnÆ�4T¯+q‚Œ–ZuU]”¬ù]ÃõÍn‘É´•†kqVäP÷‘£8_×é7=rŸÈâíëNý˜W¦çb©”£ßzø<^ÇýÒˆ'p"/«ŸËŠ©¶/€PœbeçÏýÚ“ß_ÏꚯÆDÜèXGa͇—@˜œ”¤Ï$ÄÝòñï5ê£R^gô7ª€-9jþ@åh‰¦ò\ߤT¿ö¸Ùú¯OŒ"96¢§j•‰õ�É‹”†�1LT2H{†Ìæ÷18^ÛÇ¢ˆ,gBÎ[ìH4H¿í\ù–¯OO8mü£KQšìÉ—õ;Ñ’U¶÷¿¤Á�ŸC&z‹nÆîêõÐ0pƒ!âŒãu;Í—ŸeSP"‘¤Ïß<µG¸ó|´?q[wFÊÇÍýC%m¿zX§c¸ÕrÒlé&@`ÛLŠe£’ä–\HÃåß?¿s{ +Ë¿i|d©áê¿j¡ì +|WÐ*ëÜŠðè^Ÿ¿Þ¬´»ÕŽâóK1q+ð±Ô’Õ*Ä0’¾KTɹ9ÏNñFœcÚBÄÆâ‹š¢ú€Dî+ÿ¶øºFÖÐ*«ÎãM#Éòujjùâ·’™2ˆÏª ÌërÂM0m˜³äžçp¿¾sc¤E8dL +à×7˜oŸ¯ü y¨z‚@ß×Q´š¤Ê¿yaêêòÇ^™½øÓ!Ú‘¢z:—"Æ”î¶v#¹.@„”W»˜; Ã22“ý^ðŸ¸så¹N»€Eåƒ{‡Ï>r¢ñ Y¬èÕ#(a?ûr…Ä�8Q`#_êÐY¨L$‰ò;Òn‘ê4ÅXàL«2æGùüV?JÑ幆ˆwÚ׆~ÈEy¸¯-Õe%©®.C ÀÅS}ÆÁ‚üX±àŠw¢å“Êd'0"SBú¨¥ Kòdwç ¾þÅV ѧٳ¤‘°NÏӊ⮊„}¥›Â…¸^°&,ú„¼!…‘ʨåJ,ÜJ›Î^*Ì:\ÞðlzÌ1ÞwʳŽ5:Y£}™RZqhÈlÔ‚ö4äáj®àðK >¿u ÈiÏ)£7-=’É3´áà÷x“d4RéPrç– V#¨K–`œëÖƒod%ÍjT2¶’SÛ*4çù%ÏÇ;ï|V ÑŠŒOU3H˜=:W‹BÄJÔ÷õ +y£/Ó-–c�Þ¦%“ð’ ÷i Ã=>•‚ßãKIZ@;Κû4q¼F,…*¿@‚ä!íúÈœõ£Tww“(dJtS�ÿ·4õÀ‚™ó$½#�Ùg*ž¶ñ*¿ºÜ"#TEG®ÝꦲÄÀD&_Ì×T½’5-62+ TdÙQ� KNÕ¸Ê= bÀýËù5¼Ëz8nbvÀ÷½5(ÛCU‰¸¡>BÌo½ø¹ƒºBL +lEL©f,ÍïÄŽ¥«\¼ñÖ+§¬ø4Qÿ:¨Y—å^´ÁŽŒßTX\ÊNi«thQ„V.Ü]2)ªe/Ù¡:àŸƒ´ü%4r�—øï<Ø…‰ãø™Úç¿ü]üËüø«ÿðñþ¿²òñÿúü>þê?ýçÿíoÿô§¿ÿ—úÃþÿð¿üí?üÓ~ùã?ÿøãÿõ‡ÿéïþáOÿó¿üñ¿ýsžôûoü—¿ÿç¿ÿÛ?ýýßý!Nñ›‹»_WðgèŠÿ+ÿä=AÊ•eHÆ›d|˜r´ˆO–»¦É&+ÊD5Ùo¡~7?pÓ‘øúIÕ¾çjjý[’dEI¹S�Ç î ª-N4Š.Š©M•W# Š7ðˆl¹æ™÷4`œa„Çõì@µ4½ÄŽ„ýÖ�XHEð#v°¯ *£)ÄôvÆ ð~ E"¼¡œ™ÇmV²ŒvÞï +€%Ìè5ÚI^Ô=ž!í¿€HÔØû"zôÉHr°æ?ïsüÔD£mºwÄ9Ãò?Ɖñ²Òƒe•`A³Çbx5òôX¨EBI({ôî1œÈ3îîn1LT¦DBÙ@ +ï1€*6† YQ¦[_„-*ŒˆTv³HºÀŸÌy%Ï©Äd9ÖÓàÀ£wÌÚ©ÝÚ‘XAõ*q}UH§Æk€´å˜º ‡×zÍ)§Ç(N´¤þ¨Žµ‚\ͧõÅ•vœºÆŒEG§;v™±ê¢õØ ² ÛIÔÐ @:-eä†Z8‚?æQf²›w”g÷ @ÕiÇ“ö»¥]¸‚~7eèõ:oW“0{¥±Ì¸Û9ŽôÀ£P&µüM‰€!ÎÐåBºY‘�Wv8›Êz܆µ—–OAYEDÖ‡4¶Dlÿ +œ©”yLÕòŒÄ5ŸÏ9j1ë. ùí^<•¿áʳŠOœ$>Ç·=øý<dAÑçðoÖñ¶‡ÏˆTE§tc|]i²¨ºík³>‹Z"ào<QDEÊ"–²»}s˜;¸Ë0Ls,/0ƒ'~³[ÑHŸÃÄÅi܇‘äcÕd/ò£hU'xNH ¨~“DáTãô3Ê™~°ÔñJš¼S„ËÓ%——ÈúyrRô±ð,kJ9À²Ã/þñåö–¤^c¡öœ=po¤‡.}oÒ˜y‚!ÔEFÉ•Ø}3¡@ w&p…u£¬›(á³a³¹@³ƒýÕóN#X\Äg`'vÊm·Z|\•Ù{ì˜6(a¹ÒçÝu7@ »ˆ¶úÚÃã" ¥ýóýÍqÔcd€¥¤`L:»*¾Ý¾éñÝÈ}ëÆ«X÷uU`«Ç\½ú½S'v± +b’m|€áTv˜ +(ýâ‹ÑkœðœÚÅDOV›ã”f3#½‘«R±ÿê]Hü·.AøTЋ!½<{çŒO‡uжŠÿ.lŒKB.Þ ØyšÊë2¡sHÏN<_tl™b,Ap%ZÓ¡m!„1ép÷é"z°I–lX>d8«bæÅC”ùÃ-rwܳ[JK˜~ñÌcj¶ˆµÙ„lrV Ó»œ—f$8@›Õ¯ Nž%èDÚÍï¾^ÛLà%~(¸w¡:zÆ1W†+ >†ÑÊá¦Ù+•m”œˆqØÆÑPÚ6db>2*‚úú»±ÔY'[µQüæ-_Õ”=ƒ·ø-‹@‚˱{`,RÑ=Ë,]’ºú–16$h Ô?úîéù•ÀMÎåh¹°n+v´ä 2†H…¶üh–èИh×7-. +•<&—ÅþÝÔ²k`FzÎs§ª»7¡§õ–‚Τ>YŸé)=ä<؃ZbôXžèÖgmÛ¬›m~=%ÜFJ6`ðø¢:y€«@W‚w¬Õ$‚*ü¨\/À(q»£.=¦|É_>@[. +B=¹ÀG:]ÃÕŒ`tò@½aO¢”* +¿îNiêN!BÄhñ„ZjÍ+Ï}2®~f‰…�ÈWêê1·RX±Ë]!¶¸³ÇAvb#;ìÿâ†bÆÆ`0âJbJú<Hzz5mØÈÒH'#‡Áž71Þz0×gÇ9í×B)ŸwΔýÁ¢Ùsà>hÁw(èÏ:¢×‚ÂÖ`‡ÅâLMmŒl'²é<ì?÷.ürÞ†|kLí0iª(úÊ—…R;½5tvV¶üÃ:¾uáII®Aeœ+S‡40Jh˜ý,Ð4¢mFc'q0ÔüÖ…Ìw…¿ÓW6ÄÿÆ…™ºUt)~ãåQ!èq¶ ‹«R°UaqÀY¤ø"†ÔýÈí¶åù<whÎeúéëKÌv¨òw’@§RAªU)¶’èMjÅ™4q †±ÏFÊ +ƒl{t&¾E'5㢛ŒNÕÆCX u–[AX*ˆRÜ(’ŠsP‚®ÖeÈÌÓ zÝ™›Ã—ògE–*"¹›Ê8‘?¾y”* _ö#”ÀŹá�q{À±¼ƒžbdÅ&^<'ÃHB¡Næë‘vXÔ_À/“¹E,ð!âc«ð¹.|mØI¿iFó½ït¢Ú—ë1aL‰1ú«!¯.½’î6ùlä'¡½Ãsø„,t–Çß®óð#ÞÚº@¼¼?÷$»¦ +3G…QÊ¢ÛAbi¤ðÓØR´VÝúÖmìùôÐ^Ïou«©#5Z=÷ Ÿ#ÃKâI¼WÝ3ºw~I£>àÌߊR!'Çæ™¤$wVÎìZÔTddàb`£FKaP•o(<d¶¸ÕÛÂpo)¥CíKãd¢jùKàb5·š;+l¸5¢‰+ßÿjÈ·´%¯«ÖÏoî0‡$…ô[ƒâ‡6õÖ(»‘ªŸÇå‘ÞKÚÌ¡mÑŽx=<¢H€Ss`IÈM¹ÐÒ"½Ê5R˜€ðŠrRÔ®ûçƒ!E˜1KxÓA‡;çÑ€â¿Wš-ŸÂD¼1ܱ¨Å\ý²Zb¡ÞiK«�üo)ËâÑ`¹°+ŒÌô3½W‚¨«ð¥¢ÔÞ¹ñ~_—yÒL?íqç5çü} fŽÆÐàc<ÍçÓ` ã:3mH‹¶+ÍÂ@âtÍ¥ë³û¤ þmÈ%z&ý i`FŽ æÄˆƒ:e:”GJš\Àuެßѩҋ%æ}·ÀªçZóí‚÷D“P½@SAõBàöCrøÇº¯–Rо7GH +ʨd©ÁLpXÅœ°ùƒvŒÿ_‡_÷§3i@ÔbK2½…›u Ô!GÓßÒ¦Æ-NÕ„ðBGp¬œB±,—ˆ]Fc#»äáLp7,nø\rÏߛ愱óüãÌ’;0XµÆˆÉýŽIõ¦(7~R„|ZñaŸú˜òe»ØŸ|º‰s‡¼LýžFæÊšêyJå ½ôÈ|<…Ò†,5“$ú‚ùúÉÔ 5)4ànŠ[3‹"™Ì÷OÔü“½¹} Y bjÿ<†-ÔŸ:‘É »¯#°ÙW‚¼$qðʇ5®®Ï‡™ôÂpȱ˜AÑž:\(YŽöX©ÛýÖ�ìE&üÒ�°&5‰-Ýmø±R`D fv¯+‡aéµß{xcÆLCaí¯ÇAjWÐ!j&M]`Õ@[K× 51‚†ÈÄÀž‚)j˜ËØHƳ q¯‹AÁ%ºˆ&°ëfoô¾œþNÿ¦GÖ…xÒVÅñü|;¤rßP%gÇ»¯óá—Ï<Ý3~nS—¨Õ}жãÃP€(¿ã®R¯ŠžÛÓ›SøƒUøáŸßh‹þ ;¦¨(Ë·JP¥>‡ûÚ¸:ÓHB“°#�bth+ÈáXN±U+æêÇ«áyôÓ]ž›Áöù‘’¶8FáJÌÜ++E+-V¥‚EºuKëÞ6^S¼¨ØÑ³£æ”6ð²ð%X¡Ñžo㘜¡< \>Ä ¨»TG +VRàfGi€˜IcL(37ÙºË}K9Íã½Ç/"ª¶ZÑöåÝÃS×0ìoh×ÖßîvNô½ù^P>yòÎ%x*%‰ðŸ¾Õ•|½ÕùhFCjÄ¿7`Æ÷0Ñ߸¤©©«„^®ZŒ†®·k€w5äobHw‰¥¯oÝ™°„1p0 “ß[ÃÄpðu˾4"¹¦©Æþ¸ ê¢@mîßä6ú3†N;OÃ3vËõSgLwÈ —x”WMlìû§D“õ1)üÚ¨æ6 \ºOWú)1/4vÞEðS¼0¸®þjȸՋآx}k*¼ÇÌlcæªK “]úí^ÏúSÅþê„×½;¹ ÁR:×dÅÚ8·O±NÖô±ÑçK,Ác‘J)›ÒH4^Èd£ßr{>üinœ}‡³òÙƒóØøá£Z*ç¨èšùâÁ(õ~)D\)zVÔp!uáë‰ð¤çï\€Š\lØL>}ñ1Ȱà@xqän ~Q¤¾´-TŠ2þH:Xü[S´éDŽ‹!ŒÓ1ƒ~*úöð½Ø\ƒ'eÁêÑ0Ò©Oær’«` PÅÏuF7\^GKÃe*fT¯Üûz4TA9 $�ˆ»¦‰¼Yüä<âý a=cX…›¢€Þú;Ê‘S`Ò3œ8˜÷†’V–¿žxó7]ó‘0N!<P^`MµI÷GlfiîÕòh×_dðöÏßri|†ÉFdå„÷H´$®ÙØßBSçj/zŸ¡†¯R&¹ÏbRF_Â9$f¥}2Š'W»CÌÕ_ ¿>Iܘ»M\{}ë@¢$ã`bÓrÿá7óë×FD`´‡aCr=D…ÑËÕ¸¨•´®À·:Œîíì¦Úµž–Å7ÀÃii}…Š +E"†ÂB#×DYÍ=7v1Ó `/÷fSz[0pU¬%D·ÕAC…¿Æ€«Ïçÿêî°å¬ÃãP[÷|g®ô]¦I=¯ŒÙƒêÁëü%L¶«@’ך³'mØRØF*Þý`/SÔÔŽ =Ø/Úð§qMÝ™_&ͪ$2 +½6p³I<÷T^–ua›}‚ +èÔåËÃNᘉb1‹6 |>M4+)áëçg Ê;b(‹€1 +Žš?ó årœ=˜2ƒç8 d•ï/ +ñ?'—¶:Þ-͉�Œh‘ërØÒ�1ØtïP4À¥§Dëëpne°Ü$‹´ b¯<œS ä£A< ‡£VBv3.æÓÀ«Ê+´¹E~]¦ù´|¤Ø +~wZþë‡.Ý@߯+ÏÒŽ $¹‡1 +šDÄS£z*0üÖ·†»$0338_Á¶#‹Ãï)í<¿¿5jI²’r‚J?6+á+•˜ŒÒ}$ìyÌ×6R‚”¿ê'€š¾9>{¡œ‚*‡åÃê䄯¿6~eΩ Æ:“Ž(¾¥«"ëë/À$æ.S÷H*!Á>-Ó|ãÜW²‹ O|ÛCax×µç1®Ûº;ú£÷ëLÐéè•þ^NñëÞ™K:2Lè(C¶íƒR#cu˜(U?aŠr,ÝwÖó7‘}¿È£ŒÉ2Û–(8 [±ÿ&§QÓȸª—Ýí€ì +4¾÷DŒ ÿUGЧWó0M8Sô0‰sÚžÒ嶇>d™gúÏ·³p†Îãgn/p}U_™ì•CfÁiy&2áœÉMnMŒ³É.UjÊCIŠ,W’"ççÃ6‰;{)xPS© 2¹9€®Wµ€4Þǘ‘RXû¦Ç˜ üÌ̈ôµ—¬õx¶Õ°î zmqá¨1ÁɨÔüõæC32.üiÈtXêò@˜AãÕÈ:D)—uÈÍþÃQzk€QRué"«ÿlgßzÁÚØ´°¯±©% L«$î sWh� Ü(åký¥G>É©²Äcð"X~?Ž#"Þ*FD›i™xPIûø¦‡$²vüÍ7½JZ›à²…¹r}´ªZoi†lJ±e²Ž›Ë®™'ªØæÐU?² ̳ˆÒ«V¥œ')qc%–8|P@¤@Ĺ*l�+<|€Šûœ©¦£™€×™Œ*ê3/g*wNTñ—y¬eàR±}³]ÃÊ'm©î¾¡ö¡_ý9¦Ì=@º¨Ëß¹‘ã>¢¢Þ¶§¾wÃ…ºûÉì’$,ëÕ·ÿKpóú+/�‰£›÷OŠ*ÁÈ׆|¬ý<Ö×›úµ{Œ›ßÓµ³¼¬u.k&óWÕ&2eh“`Æ«Žä7þËï=~=s¦P=œ¼ßŽC¥ˆ•æA¤ÚåqÁ°B&QRž%½~ãèBÙ7Õx<Ä\p02eeŸ�Æå™Xã½!å¸Ú‘ãzv˜o½¨Ññ–L4ÆóPõÂÊ9¸‹î¡0K§ø0ÊS¨½LHÞOiõGsDPª|ÑKÐæò8(MÒ£5×Ñ83Žƒl{=žô蔋XÛÈé]Ÿgr=${Xköº—z?–¿<Žˆ%DzÊ\%Üo 7—ܺEögÙCQ�9‡ÿYïd²ÄÀø«pAÕµ³SLÉŠ‡ÉŠ¿ ·ûx|Qê`/úÖƒðf +ýŠÉæz*â_{aW ÊÐrÇ铜f\K¬ÝèfÁÚUò£¥xx]GPëkï'*Rê°x³ó~ûú4çl-l°3PÃF¡¢ +°ï=®ùÞ¦O=z<”Í•Þ!ìŠAD\ÌvT0à;7vŒL _z¼& »nÍÖøæ8Ðv–â…ŸDŒUʪ©'&¤˜-ùÞåžwùñC£W‡þÍp-K¯4Ù®P¹¡ù/Tµaª#µ� df_ š…Þñ4÷ëD9í>éù5Rg4F÷Zç‚Y{ná´=õšØFᓇa“ö‚uîÄéÄþ¼xŒG—;’gÂ.Ð'×҇ݥ (ÈKtÁ¯„^‚V˜� Õ¾v(ç¦r>Zdo ƒüY ¥¹1óÄö,î×ñÖ›ûHÔ-K¢Ý"Ý¥¾tÈ=Ä'b°Üße$)6üÞ[�â¤vJéH¨$â’4ÄÔzöÃäMW6_Ø�@dNÒ)<à~oÐ*ûJG¶ÔÁða%nÜü.‰}&þš·(O:Åî6²œ`ï®5Ý6'mÏäÙbªdyÔÈGdf·1°ž`ŽuLÝJyï‘õ÷uð¼÷ß…ê¿h57³=s 50¼÷¸R.â²ÞŸBÿ×^@„UçŰ×3 oL�8w{ w}m ïIKa³ò\˜Åaç›/�mifoÔ/}¡×s´Å¹ÇÚTòF½8쬖8jÙ9©ú:‘J¨Êœ‰äy Ù¿€WV3‰ +Àø+ô=RéøBfæ#±Æ#îE…Õ!ŸÎçDE8X×Uòrrª¸ œ'v ná4UhâH-ÞyżԿíAή½ÀB_/iÍU¸\ ++ß—îóò²û·ŸçÁVÆv ¾ÜýÝ—Ñí^Nôˆô´Lì‡Ã²2Ìy“νÌ!HìƒÀÀY”Õëk¯¿9WÑÙEsÇ’D`=Šiq×b"ã31U¥[‚tõàÈ5´ïzPZa.¥šr?œ¯½à²ˆPæÅ"!¦u0ìwÝ,bþ¸ ú÷ºZl¤�ϲ‘šî—Þô¹Ê!È`W,y“Úì’¯@Î/¾®¸™GýÒ ÷?w™ÈvF}ÝàŽ\ó•ć¡Çf,ç•Ù5OxÀÊ• +–÷Q ãi‰¹ˆ·d“?€2ôA´•ŒÁ½‰ð +ñfŸ©ïú¼Z_#U =lDÓº�7„u+šXŒ+OC"Á�"€õtIµù¯§\‡º“S5}*!8(L†u쎽a|‘›He£D9/(Øñ#‰¾a!ÿ«o2ë¿2q±ÓûSº’³ßØSÚ!Mí`µfåoz°¦Žùȱ}i\©ï¡J!7+úfeåuc 3•ñ«šq©—_ÀE·˜J/ªBý¸¢ûåK©ÕŠßYÉÜ÷ïBbÌŒ¼Äwv^-÷3-®_C8£ êŽ?n`¶ ±)@Ò…E•êe‰µ©�p :¯dA±–=4õØ„Ãûléx¡G)Âçó…ä½N<¡«§GÂQ>Ç|X«ÀÐZVÖîfM•Õê0ó“GÂf ª'¥ëS66iSÈ0”Tµršš˜æxñmÑ~M•ŠPLý#)§teY– +ª’8Üu¢éªg}žž3½úÓ)™¤éòrñ`¢CeÀx!`T(lSí‹|ù;mÇdÖ'€w×å�!¸#üÛSÆÝ°¥=ÌKó î^9¤èå\Îúלñ!XäØÊ¨Sb®2µ]´eôÂX[x£®¾twLf +»T§…+†</ìÿ6b¨œä†ét©$x"l!™ð/„vá•-ögT=sÔŽ0(™ú›âr*|Y©e_¬($h +x;è¾>šæÑK8ëÅÌÓí´�‰ðmå-ãÛJÏo8|.Y¦)Q@Ë—V¸ûz¢-{¨Ö×é¥=„Šys>1A¥±ÇRÔ’ƒLƒÖÔ5ÅŠm§&Áy+AkÄNhÙQñ.¦†ÁB‘þýP¯×•Ôë+¥1» -žÇ†“}ùX‘YL.QAâA^-…‰bU‡ýAL¼'ÆŒTŠâÄ ½ØÍUn¦LÄ=,Ò#n>ã¢Ô¶úb‹ü\ø} +Êñr^loÁ,’wŒ ;ÞÙ®°þRk¯¤˜2ô+~b>Žh~ÁWûV\sÈÂi¾?õ݃%¿ÈŽrÿêJ–ÖçèË–gØA›lË¡åþ”ºƒxwö[¹KJþ¡wB‚ì§•pìz]PiXZèAæ‹!éQT^9u3”9*¥T^…iDª“|{Ie«é=êm.½°ã’݇8ÊéÁ(à01èѰ¬Fx|¾Cô¬?Þ‰œÀQ'øØ)xë±ÛýÕß‘ÌK>sýg†Ð‹ƒ4 Uëý<m²Ø%•ly"zÃkÕÇ"ÒŒõ°@ÝŠI¶±ƒ%…i7²2ƒ¸<U Ÿžá,»íH}ÇÛ<²©Yþ‚%'ŠÇå‰Ög‚Ø"º¸j:K1*£6Pú*ÑðñoXwfC¯“ÿt¥”`°%Y^äm+ÉiÐÌ×–Ô½PX¾Õ=§6ñ'“¨«€Táo\HÕ²®[92Šþ`–)ú/Šññ.#ú#–»UgzÉÙ‚ÕC^˜^]ÖSìðD2B9“¥E{4‰5;'mw‰Z9Î<@þÎäíW7ÌØmÉÎõb€é€®ÏÃ$A£¾aóâôðp±ÇDY3z˜JOãg®ãFõœ¨[HŒ[Ÿ/ +Æß˜ñCe C¶bÔ‘bMï/Ø5y|yØ©Â=âõ7Spe¨0Jaï¸òκƒÄCФ\šYŠ•~«I=À%=Z*!ŒæZl%ÜHRÛ,Äø¦Û˜y!2+'ðqu44ùmhšƒ²çÈÝÿ=Ý_Âhúðò’ú0„ÌÝØ1ëÚðgµÇß‹<ˆ{JöÓÁ}íHI7ÜÙ ðóÖ0†ñºRôk>�Î~`kÐËJae‹3FÜ€%Õ¥P™ªy641Wñt«‚d×ýLcÌÖóä²óäï…Ì‹`¾Øñà§ZÑ�+MíŒA‡@¾ûžˆ×ØFv ÅU&ƒGd…/SÜ¥Þb!Ž6O žèÊz1úÀ}ìíħòÈ�—¤¼Ó‚h+IŒ±â(u°ú÷®Ã&ì4‘ÈnʧÄk]íýO/bÄÜêÏ.Ïó ìf:‘ݽ=•Ä?7eY< …y4Š}œ† +ÀákeÓzJ<ð2ƒ]Ü[Ë-:¶hAÑ…T@Æ´ß°_þ‚#™ÊNØÉ _ïê¥~ù<½âæÔ”D¬Gå/«èµ‹¹$8ˆ0¨Òr|w´3Wƒô´·ª!»—'ßJ/ó"…i){¡g@¯"3O;ôauòq}$üöR&äÝ©:+·Zæ,L·_y ûÀ6_nÖJ¹×uÞVßF8LdÝê�†˜«¥ ´þ‰XÚC¿Ì3H¯ Ãù€ˆÈP Ov²LçåDBä78ë=ê™88®]®Ýû‘ W¡ö«|lÏ Î|pqD$ÅS‹(]Ú#*/í ìIˆªô4Ôk~rêܰðuÍAaÜdý3•¼NM”+‰ä}4ÛKj¶ã>Hjuôˆ#ìqë€ çìEòBi¦YA÷‚€Å1.tüöÉ<C“fH”<ŠÖ&Â`>ÇĨ¡\©ÔzKë“å“zåÝ63²În2-0¿St0eæLј&éMÕ€G\©HŸŠ@©¤j@>Lª(/(w¬!fÅ A¤<}¾D€X-Hµ›8ùÓ"¶ÇK¬®¢�ÚÇZï‡Óˆ£½Ç|δaiåQ©ÿ[ѱf2¶¶W"^HA7¶cí>õÚãeÝ4áà6ä¹ãÒ’IÝ“nO¦AÓ\ðY�PTãoo‰¿†ÝÞ>=:mìjûH_gü‚Mê@öؘî}ôà/SÐë*•ÑÑJ`£ìq Äîë‚Ä–[OîaEz€iˆ‡÷ìAÔAz—ñ:Ó%ª(ÆvvŠÌyì›G?y«Ër~®ç×l\‡ª®MaüÐQÞñâ†ÅmfÚ`s´”g(ƒÈ0Þ««€-´%kl\Õ3vÀ»¤«JL ¼JÅ]ôóÚ™¬•Õ$»Ã¨J‡µþ U‰õ�ƒ–ηH3¡?‘Î ?·<EuÖ/bù²’ÂcÈnŒ�I¾ë‚c%Õ{>Ömb6ÃëÂÌùñm MÎ}iep¤"¾îœJ•@ÁíRÑéçõ$RMïGBj$$<áAËh§'©• N‰èû-Á1$š2¦üâ÷ÝjoJ8!“Æîm´SÌ‹ë„üË5ºÇ¦i «~Èn÷'¸yo& ª±é‚Hš¯D"®%A™<ø™Š)ܲØ@»¼’Þ@ŽñZUJúÿÖýwVé”ʋܮQ72”Ê,9às&„ì~Ì1YÔdb2;⊧^Q¦}øÕí™ç©¢Š®Ti‡¨èçâ,[¯¸£Ñ`ÎKÑh»q䎩àk†ÀûëMngÈð,j—[ŽÊ€fU›G?%¢@~ßöˆi– W‰•ÇÅì%z”u‚PîK¾ˆx·õüùi:üO$j·Ü´iBÙSËÊ_ögÿä6±±*J¶dêÉGSÅ/‹gÁFÚr‡R¨V&;âqŒj±»¢c'áÖ±+i°ö‘F¼J ¨Ü~R=òRSŲU·¨Z2ÐëÖCª ¯…¥°Ud‰Ðnãs†¼ÑPtÚn©I1¿ Ä!ÌžâSiÚ3Ec™é¢†$WÇ×núwÙÞò1[&7¼Su>…á¡!÷§`%ÿø›5Ùù%†Yeî +Š«®Ôõ 4‹JÛ§æYI¦/¹ll3h@VÖ}Üà'QΨ©Aú%Í,žl$sECĤTƒRë¼<½ )|1äô</·yê–ÍÞÆ¤°Y0 VMf°ÝE +^*zœ€e)º°ÙÏ…µ[Ž@CX׈-/èIùÆ€éM� ‰å$\Ï*"ˆ“ÿ¡Þ€ƒL2¶š V^øT´å³ñ[‹ý¢\¬jÆ–Û»©Þ¸íìrnCÉžœt3lÎyók‚’Yã…De3ß©{€’Æìˆÿ «ðBYZ¨®K`σ(»VGHdñè å˜ +‹‡qç0°íäÂ5x·Ã’dÜ@¶ÂSÉr.H +܂澱øêT±Ú'J˜�[fHôqiÄ9ä`ÛÎÜî8>t[Ú‰Å0KÖZx¬+‹Ô™ûúц�Rˆô*Ô{è Æ™ZqX’Ý…WÌr‡)Ò_,sŠ„®�d$o 1”‡”þ¦ZG@`Ÿ'¨Ý�8aÿM~ìî‘((�1€ŸF~ÒmèM.±'-“´]Ÿ'¼\P[êGúþœØóÄÙH*uÅÒ£1j2,0¥PE±¬óž(è}§ûKNrg6¹-E5i¼]®õl(bTtm¼,Ýb¼Þ©ñH" i彄Êʱ›R•«¢ÅŸAMg.u¶üäòä3<¦,Sírc3@UИ“* ;å2±’ûHÞâD@lhDý ÁSßdÒ½ç16+GøÂ fì�.Iª‰ÀF•Áyhÿ É˃ØÅ HÄ.@Í>ô¬e¿:àSCÝ¢)®@�ä…ª¥Y˜SIà>,Ui=¾J×V¤2²iÔyxJ€ç¸*£SÞ¥Ñ>œLUç¿¿`묎¾X àé |…LMÚ?æfG§ÙéTJDÚ,ÇNé°/IiG ® +ŽxŽ˜pá†9`L]RcE‹z~+‚›UÈð1N´qiÁ‰í¼úÒ‚» Ó¥+bl\-î¤W¥wÈ«é6Hü}wùìøi!êŸw“(¤?8]”©Løw}vÈoйíÑÍé(`,úŒ°½À/ÉXëJiDó‚`T@árÞàaÏ|ÝÐFù�y;EÕN• Ieß©ƒÉ¬èÔ_nµY®×»N þ÷p¹iêóÃ:Zû:wzñ%%ÕHó_ nGLœ$½ÉÅ<ЗªÛ@Ð-ÿÇÀ…Óª˜°ˆØ¥1-EC&(b•NüË´†Æs +S´üN’à9¼ê?6¸ µýÒÿ„ÔEaCÃSO½É|{•PôÅB›£åÙW©HÕ#Vò¬½ï{¥CÄ»/#&`ìAÀ3bV>]ZDŒê>Bbçámob„8–™BÓ‹ª1>œ¬ý¬žÔ(ÕúPµN‡Æ¦>ébzT²Ÿ‡™ÑxÕÍåVY�ØÎFGŒcÊ“_ š2.çÆƒ(=ŸcäçóÁc@•‹ {oîdH N·‡g¸ ÇÇg«S«8œ‡j†ð]xqžÌ5=ØUÕYR¿—¬ˆí•‡Å6áÜûJ^z.4¤×u“ô±ÞzµP¿Q«¹,IO€S�‹‰a@ 2ý$ +xñ®Ð¨„ûÙÖ²æ¡H{)�nu\TÖJfW’8‰€2‰FòŸEö;ø™ôÊy'Fžá.N£©#¹ëfÊa¦ÎM+@‘–hù”‰hBBq(ÔZ\OyØDDVLãŽ0Ï·½´¥W;‡™çó^ü|Š¥=ü^¾Y÷>=Ø6ƒlÙýóø¦ yGjÇmêêTíÕ·pµNö/{ HDž1=äšýyž)¢r¯±¯'DEÒU€ÌCÚüÁ7ô8)VUŸ!ˆ•ªRíÑDa!ÍÅ6úmó7QöÎcX{ Ö÷Ë _;e5 û¸¼ÇÉ:ÇÜRÊy¦Þݼ³ÑÔ†áJ—TuØ–hq„àoÎ{ô†½$ºEHuit{Øó”çëqZ’_bNS~%¯äçÈ0ì'؇ºN£1E4&�Xç.Ðhôçå «Tšäö|nÚà’'Áäàñƒ%ðš&nÍî¨tnu¾¡ç²"Œ ¤oÉÒÊê_:¶Øo°Kö6ÛM2tõ]×Ájúîy}ÔxåEÖZìŽÖ°™q7Ìil¤á“p1æŒÊƒÃÒóÕ‘ˆÌYëðœžì_.rTbaJg$›¾ŠéÛz*‰¯ia8,7p+ÂÐ I‚ØVT ’¢œG6É¢Ä7x.¸XpH6œÙ¡Œ VæCtG³àaˆ™pû”XIËjñ©æ0ªV”’鑘°øÍÜ’²ÏŒÁûIÏDŽ3©J\öQv§Lù`ú:å7ªž`Ò郒^n#èá.…´{“¤·äÁÚŽ¡{äÇSSªþê9<œOÒÂh~kªlõÖä-+§œ§,•+†]9˜Aã-ök¤®F°Vå»·žÔ6½ 1ý¹šµ°†Q¿-'%wQÔñ°î}I*ÔPÒ†q8‡mÓäf#II]ªØ3x,o•òÌ¢3]¨³"Ú%Ÿã·GBø7j)uãm– YÔXè›u¥M]é¶’«È¨žÀ%/Õɇ$£C *ÄÞ4·@ùUx(H!¨Tè5HÞŽ"5r V²‡r–êWŽwŒgÉžâ +ÒbÕ~ˆ^ëð�Û“pq™gJêŒÉ¬JSCš„Š +ß©ë¬?ë²È‹ÕU™Üš`;æê81.xGmagUKb¥¯ƒ„œ¹¹HàÊHð–îƒ"),H=Z,„úŽ/$ÿ]ùJ.ÂV&r”àÉP_IBµ2…ˆ-«Ü¥Ž $µ¹—e¦µë)uc³*yÔŠe¾kº‡rç¨ðòÔ› +=¶dò6ÚÊÀFé |9†{]øŒÏAcŠß¡3qü>-ÛÆÆ=u0¶†,4H<Y”$×ï6ù±ˆ±¾½\FRPú)ç!S–TÆ‚£Ù:\‡n™×–›M!„•Tú9rhãIúµc*êt5à„„GàV—t˳T„LÉ–¡T;ˆà.'y-ˆjœ©lZT¯ç¡9ºJ% +Ћ6Y¼Š§åAx'.'c½<ÌÄÜá꾇Xï0W¤Þ<†ZÅÕ熇ù9å]|Å®þÿ¬Ëª,Iš^Ÿ@ïp†- Rîvq3J‰ -$4‘z”U%hPu5RƒÞ^¶Ögûœ;»(($¹Ã,Ü#<ÜÍþËw9í)Ï%°C"íNÁusDŒ@˜9ÛQ\ö¡n¤ÆËJSuzso*.8y’xÃá!wןßqõÀ×úèÍáž(IOŠ|"f°'åÑ.Ä& ¡|Š,Ñ0Œá«ÝÛGˆ…=9ÕHÙ¨ Ìc‹1¢ ©óÔ #® ÜðP½?6Á3Æ#Lj=O¯¿Œx´‰9Ú„ =nÝ¿À7ÑO$%t{£¾53Á¥õx'¨f¾!“¦©èO†O�i’ÂÕÌ£Zì]fä³²Óç¬Ò¥s&y`M(çÏo÷|än=š³/9ïÿ^™»œb5ü¹ó½€JÖ¼µ¤£“DB9É9Xùš9ÿ”3~÷Þèãuu;8,WéëÇ.ôb\ÑcgÛì-[)Æ–˜µCMúVõ—WÈRñûµÌN‰GvB4MK L€beay‡Áø*{lå‚$m%×¥ÿ-Û¢$v;>ý”iHìèÉBgˆr‡üé1ÉMâë¹""/J€&ˆBöV5Aa §îÒ6µQ¥QÀ¹šbŒ$O#l ®Á›=—PO´âîw;«Ùèª\ýÈwFe«ÂMÞ\n +‚¾oîKFC–<¼q<]¿|UÒò8¾ƒß*/XñåÍ™Š†<bñ6¸–p-:gL$=N/ˆ”‡YITh:�¬ ‰ c´z¦-¹„à‚Áz dÛåäè`.%ì[ØPà©+{†Í}e{Á,ãÆêÒ6°V†õR 2j~ª êJ¤jbQ×cÓ\`úæ¾é®Ñç»™ÎëL"¿ôE,1å¹gúEçµÚâV[`Æò�Á/`›gM-‘B`áiˆ–·õÄÖü#;$¾y+/)RÊ`Ãt²y×3ýŽ�–ò̰¨(m€ÕèèZއ‚:áúAŒ?>p·’êŠm¦@0ëÒYбÉ>Ó,|̤Kôͯ§&…È{ì»þpÀ~p²Gd¨ÐÜ2/)Dðoóuã<à¿6I+¤"DÓ‘Ðú`ÑcO¢d +YÛ÷ÒµµF‰æ¯ QƒZ!Uçù›[»%ëŒ(±ESŽÕ'Ì–»vú£Ÿ¯Ã+äßÏíuâñ;øÂ²'šwCf¸|¬ß«î쓬îò×pÌþîba¨{ˆËaÖ±^_W ¯¯åT"n9¶R(y&Ô˘Òô0 ž¯uPO¸ºËu|S†X‰K¶Š€U 䪲î†õP‚¨WžJ�@ªj³Á|V¡C)P–ÖÐýdP€'ź( :Î4¡+ \€¸iá1�¡6?[S‘g…Nü}Õ²¹ºõÛ¤ð‚Ìì%Ñsžò9ä@¯ú;<Œ&U·_-V'ÄÂ4q¬ÆÈiÝÐUgeŒµŒ1pÓ÷oBQ¼”Œdîs@q³fq ¢0·P÷>IÏa îË‹i[Š8t‘£˜{QQ§ÂuQ©Þ hRí©�ÿAZ +:@ Z¯ÆØ“’”ô[é^RöÆôHÏwà +#)Ìc + èÙtËh%‚‹ž*úEÔžìͱ0HR:#ü‰:@æ±u«³žÛUä<5kÛ¶ºJPÂEÙkà’Kt–,iMië>ÿAO&æÕk·˜º5Q::#3·ó9€ÂU/‘õ§[ Y[^¾(Zp+ +@J¼Ù QõÖ@Š’ lP¾š¸þýNüäԬ܊…öà“Ͼ›Þð£.!þyGäsÖ1µ’HDƺ�å×&~ÖI�Qæ ŸŽu' t™ªO¸7a5~a QðiRž ¾Ö»«§Öö>Žâ1Yªm*·ŸIaçŸ7�ÔêG+”—é Ç Ú®U|‰�ø5˜Ë_Kóï~Õò/<Пq]Ì¿Ó_ùÊ+¡ÿ!‰ ŸÂ ûÁºå) þ/Þ¾9‰pê}–¼W7À‚&£Å\ÙáñiÚw’P¬;çk£Œ¾÷)Jì=ä S[2ø‹lëÔ‹ÑS¶ùsŠìoô:ë+y®´®P®$Š\aIyõÃÔ…ÄÐ9Ë;(3ñ¥ +_]=OEÈ~²|Ψ/Z+Waé°5bÅtÜÏM!5Ðhl3p?EÔ7vÏþh|"z¹>ŽÂ³¬å|.Ó˜‹ÝluŸ´ÜIm%8Rš¶,Š^ +ü~ðC–C1v5;[‡›3ž^ø[[À:6ÀÙÊÁãªþu~’{Úe ¥jˆÆï¬Ö¸ _é2êšx…~u]0–×ÒaàèbßSò: +>b ù’¿fô¦ôÐ=ÚþlSÌ"KÊÞêþœ'<¶ú?|¬Jw|í×e€C%TÌ�>µëèZÛX*’‡ó2 Zëþëu·¨3!寵]Õ7YÛ|ré¤ÁïÈá} ñ•sÁÞÏl!íúoh– +úš“º§¼.P¸=¯ç³:F²9Â6z½Õr‰Ål1èÚvÆ—EC$í-€×¡ 13Ö!¼“©ú’ñ`×ï²+p->ƒb{&Hm| ݤð›@ð›VQ€�°ÓD~‚~ÄΤÓ`iVf<|{Døµ´C£‘íH‡Åm3Áz˜A¿½~¤Ažƒ|¬=R¯ }K÷„m©|Û¤¿Öå0°Õã0m¶_C{FïÖ=ØðZC`ùhX’ÏÛÀ·ÁçÁÎæ�h·@’$ˆò)êrUµ„•M¦i%f8ñH1dÁbh´HN~…zx±YIXþÅwUMC¤^È èä'¬*%”0y –0-åÂwS¥ÿ‘µqìŒ"ùØg¦~Îܦù:¸(^'|§‘KÜ:Ÿ{pØÜ›ŠË®‚ˆ$wS·j±Ò`ªñ,þq½ŽÞ¼%Ž×@2û‡3¸ž×öÝ»ŒMùÕv½Á Y×Siyʆ\áÏÍE½QÙ¼ŽGÕYVz0;°x¶ö<8“Ç‹,5]Ê5£¦6Ú¥Rƒ·×øÏnÃÿjìñúI‡îg“Ö*#…&„Ü 7Dó +Ö§ ¸VÏ¥ú’`‘ðnFKSÔ>Hù©–Ê: ß…ƒ"'U&œÀŒ†zß` ¨Xó;ÂÁ8œýI8Õé"ý®F·p%xM1ò~DÏP™TV°_<·]RœÊÍMXʸûDšçXg[RÒ´ýdæ çĉή°·‹c›ªA&>4“:0YH—½¥ X!ÝŸn‰Ø +ÓÜé(Rè~ +2ƒ±øòs¥=?ÇC'b°Hk!WnÿDÑÕgë]|löô�‚·F“èx0›ÃœÛ×”?;UzâO6!oXV2N0Rý;ïØ†9@û¼O@˜ÜÞ I4Ø#'·Ïªÿk÷ÕÏÅ[Xô®JqkíU‡ƒÌ§ðsßÅ78Ø%V›³Ï]' ¿Óg×±ÈÔ¸7Ê n”RNàÊEE d‚@壟J”I¸˜†0Vèô?ìø+1ó¾÷ÈTkÆuD˜5Ð +Z4uã UYgº^=”mˆ½VbõÁàáQ¹ñ¥ÞBoFõÌÃvÔ®9¡¡Q#-ŽâÌÚ¹VTðÅŒä¶e7BÎãB.áý8 Eeå^„yG!äQ¬!@,»V²ô%¯ s> »vR’oTñ!1Ü‚½`Ìu„‘=ŽèñºbðK•ƒ_`ÎÌËž&kL€ê`Èܯ*SÙU +wÿ€7mÄYü#ƒ™aï ðŨŸÐä™MÝrʧ媬ú»¾ +ï)wŸCe…-@lC{†’Ê¡8zdÈšÉ"6™¬öíý¸÷pͨ؂¾úÇæƒìðMÿ@ÈÀu’‹üEßGøéT¤*U*‰º¾ìá›ÖjÖ:ó2wyûî„Ó¿Â: +°².À´´,iÒcÞ‰RV½êSäå§(ï3~»K¯RÊ€€*ýâ8°ªÚäï‹Lˆ}Ò©ùÐltJWÙ½w½¹ŒŠe€E +gœÓí_ >ºG,È©ÜåYH®ñœ`DahÍ* +ÂtÕ™ Sñ{’DiuþćÓHèA K8±áÒW¿(?ØÑ$|ÀÔ¿èPª6̲žYÝf|X–d‡G”›¾ªP–õz‘É%'íìÿØœ˜ê^Àw9š^:5ôÝWXIöî?\16犫[P¼¿šQcbKϪßσýy¬jÙ\¦±/}·º†à†•þcË4^¤vqÆQ‰Hƒv±ŸgänÝÞmø·ˆsz;ŽŒQp”N[²kÞ€é4Z ë!{éì¼ÍÒíúî +A0T—õãí™ +°è¼Å«á +Dü”oyª„M {Öù¶!Þ× ŠÏ3´AþÀEØKÙ¬úåçÄnˆõ‡SA~½{%ìåÙzÏ„MÜÈ/‚Œ(ÖXŸ@,TÉNxo!EZ¸Lwê(Âá‘ö‡+ìDèY?? Œi™ŸYi†…çbÒbrhYoBÈLIc!˜d»å-7bÎÝÂ:ìDZ(´€Û‡XŸå}¢kKèxWÛk Pè¢ö¬!G”\™p³me+¹ÖìžçT²ôúè_%ðÿϦDýUs>ÍX'>½à°Ä"€¥uziÙb<ûÇPÆùØîè`úËS$k8n»ãÜÄ®öΩ“IŠD´-¿-{*œ@bÿ|Œô×L*�æ+@Ðàl²¸až .2-‘IX‚¸ìL÷²M%o¥É ÛÊk/h.žÄ¤6Â.„XneN•^£OFÀ•›º_>˜›eP££Lï«Î‘ítÖ”½PSê[3.{F¿ ”0 Þ[¶ª;3Šnágà«ô?œSë¶]gcL¸vëÑK‰²ú ¸?¸R¡£,Î Á7Y×jcDkw†ôÖÿLã¿ çÔŸ”¢Ý²r@k£|‘£sK¥ÂX÷§¸"^±V‡úP¯`Yš*J§mÅ3�ܵ;@ZÀ_‰Ö2·zÐGˆ&}ìÊ~Lµ!v’@9O%,÷÷@žRáúH‡zÐewsõ0í A7SUœ˜ªu”Ÿ„ÓÒè÷RuCƒ;þåÂÌ,¨CÌ*2®tØjþZsœž·ŸD˜Ä�`<ý*úh³ù»Ï²÷ùÉKÊÔ`›Ï+Oå¥nyÁ/dxG„pZç¡eM; ˜o3ÊÎ ¥ôP©œ5ö,d£å�6ƒG€ˆi +N\üC‘Ъ|„Te*æ~9m”¶‰úkÝéÏü«ìt-å.NæÒyÝ3[{`ÝóšKê'¿µêÇc%tþ¤™í-ñ èðè(¡3PåºgÔ^ –‰l®˜œ¯/òø?ûè¼ÞUFJÛkm¸Z¯Å +ý‘å„ zíoÈ#*²_ÓžY˜²»ðÎÀÊV%Á‡Y¡:¸àƒ4šaÄ/:µõkÏ8öŒ‡_,þ]2ìÍmfiE +…”Òkn<fV°FV§üñy),èmF£lo�R+µ/&[x_Ñ<~¯¾©+Ê'Ó`‹u=W¹MÄ'=Ž· ÏM2Ô¡ïYµ¿8ŒÂâ±#È%ô¢"øváhy®åH@ºC•pü" +È!NäyP¬V±çªœiÞ®øÉ +AhÍ[*µf\²Ö(5¸2 8¥®(äa* @€_C‡„¥ÅKm*Èé ‡E +ŸÎ[¿fèÚD×É{tÝ º´ºC¤1ÆW[Rž2LÛ+"æ'Dá¾µÚ(߯gl%Vv«”ažÅ~¾ÏÈ Fü9js¿Ê¬1÷¬+?©hýõŸõ¶\+RAâð?Ô¯fôŸ¶žÏ™ÞfÁ!åG-õ´ª¢Ñ.D+øÙú¹¡›8™ŒP·oY¾+ +E´ûm†'áp•‹oÇÁE~g}“N0Ô‚ª~Q}™)Ÿ²7æ³û¶}‰i¡ .Ók¼®0„Dj"¬´‚ޏÑG!DŸý}ÆóÜ¿6jÓ_Í¢|è~@ÙñPxiFçdlùr©‚ 2ôgň笑…Baˆ@ƒà<míš•T)IÚ¢AÙ½ám¥>ÁŠ%ØßgäZµ ´k;ÇÇyt¿Ö._Kߪ=঑NõÍÓK?YNaKªc÷õ¶Ç€…Y¦DkÖ 7+¸‰Õ¼ÂƆöˆ45ñœ¹jfHyÀà€|ijûÏ>>N K£ì;rœJîÆÇ`=f†íÀF¥xã«Rœxe;!-†s@ÔUcØçié´c/I(ÕúÛ¬¯n!בñ:ÙÕÑ75ú¥—BE»ôÜù+Z˜¦:Î({F¿^††içó,™Á K󖇈¤ÈJÇÑëW3Z@mˆ^ÑëÛ$ìÒ”°\‚°›º” ü*ËgÁ%“ô‚iZtƒ.J¨åÔ—žW*ôFfi˜Â=WŠÇÙ"7z¨Î°uį Q”=œ±ŠhÙ1amcóu¢(y ÃÒ5�FQÓkȧì%�å +䣜þÕ†F:ùm¸ü6d[ÌP˜µi™²c²™ÀºM¯·‚àÓ!v±5®ìFçtÔ|h ytZMnF _Í�xD‘·Ðæ|Îôy–Rd=Rd¬Š1dã:±DùBä¾´`¶V´P#gö…̽w6üÿ†>Òõ'mÅ&·LY©05N?±¹µäa¾SU5xß3©Í¥M +j¥›Š¶½Ðê)ws¦é2¤¬HuöÓŠö(PÒ~G²3•UZ‡Üè/Äî ²ú>ã·Oc‰RòJÆ~>Î=úÝ¥µ¹*%¨•WamôÅŒ/·Í·YkûQéEëbËx뉯ë’ÍMèn-üÿ¡X²œ±dÁå€ÈVÂàÚpÀ½|gAZcAÚ%T!&šs[6:ܾŠ�”Û´²¤9ó2—XÆpœÀFRªÛ┥fë§wËÜ+…¢àæ¼ üË.%¥øuÁÍi_¼]‡§1‹ +öV$¡AeP¶ +`®ë”¨�n?ÔAöM¨ƒç#°y$ærRÛs¨ã0çû(–Ï&$¡=cd„ýÌ{F{fÜ1ãzN´M•×,ê6›ÈxHd\ëJÊpé†T¸ý™±mW¦w…Ë 1ìÄ£šZ3pVQÖº¾N¤ž4„²3ôazPk¼”°Ö`HsÿÙ'¥,q…TÚ'‡òTÅЂ~ÝØn‰BqKœiÛ"«W;&ulbõomúwæUz>nþG}„S¯=°å‰‚ýº.h‚±pÅ£53Xúr*Xk'V毬kžÎx0ºh¯ÁjÙ¾`ÿ\ýê®9C'ÚUMäÅN µ©|H`Hå—Ñr‰ïÕ±~Æ*GªKÑqBª8§÷æÀ!ÔZ–m8KÖÛ›¦‚cÐl ?}È7C{-V&í>®"d+Ȧ½ü6N™´JÖ¤æôˆö²³Šæ••›'*®UÞ°“á'G‹eÖö|š 9(ée‘¸¹ÕíáduPu¾|=³áðͧ>ô"ê;Óæ;¯(|2tœ O:'—¬–B>,2±=Ü@¢E:¤'òïgm›-R»=žÛÒ†ïàà+–e ?½ý`i`wFq +O}¨¹‘´¢—çw7„œš-üòÓ,®þz *KpY7©ƒ=ïj2Né6„©A¼ÅÊø%Æá`wòPn¸!£s”Þœ¬¬‰ç¥Ìƒø•_J$àsɯ°"°S·íëˆ~²œª*m[1T#¿Ýßiå¼½K®Ÿiíûèj8 Zz<v4ÔžœÏ뜘üýu{‡_™÷ «!n˜›lÓAÂ`ó vòÇqU]ù‡PÜöÓˆ~Há1Yð™KXçœì†`3±(¿¬cª¯wñÓÈc—§¾‡°·Çšõõƒþ08"C?ž˜Akq‚Ÿà«×°ãa.¬öÏñÝÅÓÆ!Áõ˜±(aŸÇÓR¹pB”ž¨¯ù6óûËcïÉ+V<‰£€ã@˜åiæ1Y+ˆ\spÚx>IM¤«º°>þ°}Òxöú‡sÆ“tê=ªw[±d³*ï½9[?ÌÈ…ÛqÅÛÛqæÑažÒ0K*ä€.¬*îäo3üA^Çý4“Ç/«åcÅÐ-:ÈUž—d˵:¤H´h€þ1ôÍ=Eßàr´®Y@1gŠæ +ƒg ¿Rõïµ=š"}cwï–V§¶£ÅÚr�:0 +êNó{Yõ󌛸ÏI*æàÊ×5G#Jy ìºP#m‡Ï‘˜ù¼c.¬à9ƒºuÂe:šªfA€ Óyú®Îwùà�m)C`S·ìéÕlYVEÕì—Tߥ÷€ú™—ªjçž#z>(´ò0襾nPûNë];wS¨a<i„—è#€¦ÏßU¶Í~BòÀ’<I†Êk÷žöæGÊ+)u…. +?﬚WœVdëŠö¼‰ò'&ôâÅðSÄ">¿~gŸ{úÌ?>ªUKqv7öÓ[Ť+Èuð(*X} ¼®Xà}¼kÜê°ÛQ¯!q‘ŽYZô~µôSêŽ ä!@£Ýq9Èîàé³Í}E÷‘¿í× él•Žù¯£X4?w‹ÂL4@iA”™üà‹L¸¬”h‹î‰sí凂X³o€{I�Õ³ÑÌ�& Ô@׎®Ä¤tè·×G¾BÕä`Ê€$QÊõv–Ôˆ³@lƒ=ªý',¯×@~ÃUõL†ž +íÄÿl=…”R݆ɼ2 0@}Ó‡Qö+¢zØ„ågµÆI‹õ¤RnomcâûDßÝ>õcyûy£yB¯[A?øsuÑw$B+TÀ=´Š%XbÁòŽ_Á¸Æƒ é0Ã_®wµ3ƒbñfû<Ð6÷(‡û<X#6(%-Œ»õa§`~ˆòé`P¦ÿ�dãb}bdñ¤RÍ€VÂy™Ðéèù90dV^fÞ@ï_D†ëÞMÈX¬QŠñ<ÕÉ×%¥õ•üíx@NxUiB„<Qfëy7‚hÃýÄï¬ðÜû�~N/çŒÏƒ3âõ¢¬M¢ÝQ^´&×óz¾bÏ÷U’7ÕM0™.a&&ßL,ŸAÜ <ר{ŒÁ)@jÝaô§ßÂËý‘\¢«”1†y$ í»¿ÂEO†–×N(¶i掬Ï-›oh• +ï–H≾Íz’ŽWà¿ã°Úbó‡…þF˜0¸3Àþ,¼ > ¶¶õjï3>Eן)¦÷´~tíè2i+‘}}DÐÆ±XŸë$7ìà™a¢]-Ú¡ÎdAž"LÒœhÝÕPkõ`ÝmWò¥Å0òï4qTµ®†½rÿþßDóP#ÑeXyÌÛ¾,|à€â¡ÐÝÂŽz?ð L_žÉ™lŒr!-·žÁûóËÊùÐT"f(ϵý4‡¥½6šô‘"‘èJ„뙸*½Oè—¯Ýð‘YޝøÊœêæh£‰N»Å°-ïwGmƒ"X¯âÖ^V’Ã&¸€ÿGjËÆ²¢þ<´å¯ ¤‘ø«ìÀ¿ð`ÆŽý{Ÿÿó»õ?×·¿ù·ßþçÿøõ“ßþýüãÿ÷·¿ùûß~ó§?ýþŸÿñ—¿ý?¿ü—ßüÃ?þòóÿéÿýòÇÿõËúÝ?üé?ÿóÿï?å¤_¿ã¿ÿþŸ~ÿ›?ýþw¿¬Süðáî×'ø3$ÆÿÊRå6,¢hA[©À ¨cÀ7úÎkZÿ<lëV°J!SîdÝšÕw¡‰‡_<B¶í‰ÛçWà6P +Š‹^ÃWÔÉQ#ׂT(¬¿?ä553Ÿ× £:‚a'÷ÈÇ"´Àò°u|Ç&3©VÇ�£(ô“å&"}¦ÌÒZ¸[{äš’á´œxöºÍ{†<@ñ�ýsÑ”!A˜ õ8G§nˆ•js€ª¸ÕÉ䟷zf¾ÒìÍ_GCþVx0Sô”5P) ší^9øú…|e|¶è"Þ™:ÈD€wÄ[P÷õÏ*š„l¡3;“ceÎ×®USW´¥‹Z¹Ð(ÿ¬µ¼_‘¼Ù€ºo")-Y·ZP/8J,ÄÔ’TG–Sr™?+Ë€¶{kPê—Ì!أģOµcd»r¬Øw™F+ºÜž×ój¾åE¿Äj[a¼[às,dQŒ)ËM‘"ïê5Ûh+Ø>›'dyJ'ÝÔ©Dµ`¶NJ,K”'•"P®x€ÌDöŸYs‹î—аŸ-Àjñx¥½þý�îÔ\]Ñ¿ãcll÷vŒÄ©ú+yË‹¯kÐ +pJӷ׃N�RùÅ{ÜÊzL>nnõƒkü Ѩ+¸f=ç.`ƒO_’6„©]Ù˜Äàp市4R!ч +l-g!2)–¸ñÞWyà?‰æÔ^^K8/ª*•Ã3ñ€Ã;ƒ^·ŒÅj 3€XÄÈÃüˆ)²ëä.ö €K¢<t®øn�Â1Q¢§�´‰*.Ä(]ÑóîHºáb»õu%4ŽA`¿½ø%¿Þ±ƒq¥J°²ÈãË»â$蔿Ÿ¥h‹¿^šw+G¤‰Ùâ÷ë—’;<°Ø2¶½Âˆ–½{$bø ܽ·]`„ÃÆÔ)0øt°©_þ©ø¦¬<÷…x ²FKG½†"dzÃ3†î?ƒò\pf¹ŸM½ÛzÜ–Ò°†Š37*E7¬\6¯ê¼Ãt<-ÏÅsжüfçœÎ;Ë»ÖÔÜqdk({ ÿ4ÀáĹœ×û –OQÊ>Fhù¿¶ Í*ÚFV·)"mÙF¶1艟·º'Þ “%4rÆë¥ÐÆ©,Æ\à�²~àuÅgÚ´”Ž@wõ*W¾çH¶Ÿ¼©´ûúF"Ë�<+͹Ñúôë´ÿW"FËUÝZ>j眰fY7yäË~äåÉbæµ³V„²Y1¦qG†·7ýÏ÷‚ÓFœ£%Yä¯çF‚øemî×콋]/û<#jR*½ÎÀ|¼.°4wüu‰‰Gŵa/*‚YQU“JÚ¯T>³®–m¦àV¼òSJ0‹ÁçëÝzá)|åÀ*ž±t\Û{^ø²}eÉ!‹s:{T–weÌÁ|¬SÏ®ö´?ôAKº²¯ ÀÃ&ærÞâ†i[\Â!¯ãÏŽÛøVÝ›š^í¥#ü nI祥Þt”g>‚¤êÈgÙP?lgÛ>Ó†·Dᧆõ.^o%ssïAj®;HŽÂȘþ]È__ßþìCòóóL‘³nDCpaQ–yŠÐÅ%ZlÉ~2Ó‚ðMÞäÈùÞnì*Ÿ0 ˰޽mñšPï«iT\±˜×»ñŸDˆk[Ýþ0aÙ:Uø¹ü‚�ó“ôÐSJw¢’ˆÕž¬µˆE2»×€› +íÅóz½P]‹3¼qÕ°ð’àž•OØÿfüÞè6Br¢*¤ðžÕapø¨¡=Èp`ºêǮݗõK¸Å4…OGy ÐFH!üƒ¢úÔÎHªT n¡k±!¯¶ VÛ…ÑlªþØuk;êþF‚°ì"ôë5ñm囵# ãVðÄðãùÛ¦uLy½†Õܤ +ÙÒþ{ý½öÓ þ~^"˾ƒÁž78rÔObЙõRAóAó¡N‡ CÐ$ïáƒ/ïÊà¥.qç5ý%®mxÄßÔ$ÑÀ"Ñ·û¾>Ä]¹ˆsÄnGY3><?ùëï2·ïÙ¯a"Œ8.U.…1gj¡ã¹0ûoo5hT¾^»ùQ:£äøümµvs0ž×dHØUpU+„}Ç•£)f²ä#¬ÔJWŠÂK@—[ë¹$÷.þ¶ÍMw!}sRœÈ·¾K”ªÖ‚‹˜Sñ¼SuÉ Î÷nä˜4ѺÓ^þŠ&îz£…=½0ˆv¡©kžÀkGza®ÍNõFjÉã9ƒ*Ï^—p…—E-0Æ šå€lzoð÷Äóš²uˆ¢½†3�öðuð^ëõI®ÄÖeÇ@�7ÄFå¥f“£ `§‚ÒU½["M)B\З\aËâöå²úÄ2P@$v{ÀX¨kE5"o‰Î¦ˆÒ«±·˜óÞvÞ›i›ÑSK0e#EÂd+óC´•A*‰Ù‚š ÊtC>O@Êå’k[O_2b”&ç±Ò±Cc0ës^ÎQÊðð <Š=/ô*>l¿²Â¿psxÓ*kƒ‡@´V�9ÄÏ×ð…§Ìj¥ˆBŒ-w_·Y£ïóá6\T*u¹?%hÀãˆá +r*ϪhyO^úbj^¿ó{"KƶƵK¢œÚŽÈvw�%Õà@ îQŸAõôŽ;äÐœÖ ØÛHcÑÍÈñã¼T¥)ÇÇo'WŠ.Gðʾdv4á©7Ësô|?€yrÛÏcÅÉ(K®-‹«‚¥bäi{‹^RÓ¡RPñ}†OÊ<7Tyý2µ~u�Aø=Âþ#¡PZ(:ź<pƒFeØO³ÙÕf´ˆJ«9w¸ÂM!ÛóØÁö´= +¸¨v¯ã¶ªÏ!ØGT;;�ÊúÅŒ$JJÅ7Z¡¦˜‘O³ø¹ŽüŽ€$"¼ÐUßXÍs/ü0(]›pÐI-±DW[ºþ\Ë”}0^~LÄÈ?‰mAT¿Þò 3«çoêÏç“Z>¯Í4ÊÜ+_€ðΨqÓ»u¤z×;ކÏoxcçÀ×ùñ®%ÁN‡‡œhÚÐ^‡ßÀž~¥»•£ô-ô€ñïÐbɾ>kàŒõ’pšSWò4)0Q_OzßøláÐ0ˆÇºƒ&˳¿c£¤–ÌGÑBx¨îeÀÅ7Áq ÂX7N*Vç–Âï•›Ô€‰\ó[€ž�hÞ3-Fš¯ÉÈ2 »ÏÕh§QGÒê·J{v¨·ÁÝ76Õ4Ãjì¥êèn„Yúú´X˽ò Q¼Ý+l®wÝÛ6�\q…"–¶·ëH‰8ÏϧA4–§Þ¸5Sö>*ñiÑó÷s‡&Yœ êËÇdnF6±�À½¿JøVî'•þ4¨ê®,kÿºú¥€-‡¸:ÃN¸?þÎ÷€þ»9ZéOyÑËÞ sHç+x(ìLµ·w<ûËféã‚é näG´I>ÓsÕPÀÐ8âÌ;^æˆt«à¥"ߣÇÀ5pk=5ø L—ÌÜ|ØÞâ²~çQyБ&'¾OZQ¤E^'Å4Û‚ · aü§@~¯•–àõÈ^ÓüÞ“{î3˜šÜPÁPóm€bÞ‹ñyÕr–ÇvÈgÑÄ—–iÔVÐh~ö½cï°8~„ã�5N¼Žtñ½5¸ÓYëVëéþ1Ž,<Ìõ§Ijæ1¨×ýiD»ú¾<÷¾<�VŽ$&9"Õªü¾\í;äàFØ||Ö™ÎöûÀçºßîñ‡Á¦Ó@Âæ×Ú–^ík=tÑë`€â5òºh|"µéê5ª[Ýðô Ì%ñæÝ| +ß„Ä7û5Ælº•C+—§™„‡u×À`»6³çΆOºXúS+B{¾~ûÿŠRl'†ÙïÂðWcíuJµ£®„×ÛÀKéçAHo¶kÛv¢¡ÄOÂÑ"…`ƒ(#@R¿>©P;žRŽ? Ƶ”˜•ϦUHïLËi%¥‡�CSC ”€©$³¢rBq•À«»oh’dXCé•Ö¶ûyÝ4öºü€Ãz dYD 8‚¨6ð»{@@ˆöm7$_û¥ëÌ”>ówÛ×ý÷îoâq!ÙÒî“¶÷À ù[Òžê‰ïÙÇ»öñ°ÏQÑCfmý™ê‰’Û¾ã‰VÕ#ñ¾wÕ¢çǹî<B+œ¹¾«^�ç%óû ÇßcQÜ _ÀåžúÍðØë{¼•Öߢfxá]IGÈÂJ‹Ç@Ës]Hb#êSðÙhjÛ·ÖR>rÝi˜9ð�MÔñ¶íY”Ö\ïéçïûɺÂ~ çÁó>d�6.Wž+õÈ<ï5–£e+E„f‡·�Ô¤˜qOQ�Ž%Ï(èÑž^…'€ƒ):ûüÉ|´k׳~®û ®4¸•%\í4…Ù6ö‡ÎɯS[ +‰aK£ÍN³cÁ¦»ð’wN¦ ©éŒ¸©ã OÏYnÕy›$À,µ!`kXu÷³œ1ŠÈÕ�}|¦Úx渮â¼ãÈ‚\6Çw-lX3 +ôègú›…S!yLJ¢0B5 Ä\Êå¬}ROöîŽËë·µU\ v|p*÷Ú÷`õMZÕ3`BNúyØJBÉöv†ö;P@â¡É÷œ˜ÆJ¯³¨lKÁq€Y¹]`çš3qÎT·b„&-|6RD]=‚$ûœGÈ>×Çïë6<P,Œc´;ßaE·”—¨€W_;èùW®úUáÕõ:®ØÂd §VLå¤Ä¢“î!ŠæûoÏ]‘ø˜SƒqóÏßÀ›‹f2ZòÓnÛƒ€á§Õ1([Uq'y1ÜÙ-×AGø·zÓ�GUh²Y´÷¹òl- *ê·÷Çá·¡ÝÁÕ?[ìÆbÕDÊÝú3ä3ÔmÓ´E¾˜uFÄ Ép'¤õhjÛɯa¿ºù\ cÖDàF"‹Ël `ž%;«õE/Èd''xßeÏPw=*fѳV9€ºÖ• ñݱkù:Q4¦õš|H]ôÐ/å8å¨>ÅtŸ`ÔœÇ ¶i×PÞ<ÁZÜÒ3=ÚÇC>©Ñ$£PZ§Û€p_³¬»Aã“KÑ«½rÝ?m˯wጥ¼*yªCÊãoù=Ûþ=_ÔçYÄÀ7ß?îÒöǺöÇÚÔ3åC,Ø–ðý"w*å~ŸðÛÝ4=ÊŠ"ŽúÅQè ú¥ÿFä©§T‚:ÕƒËe[1? +5ßÐÖ¢ÿv g·Œš?¬ <S¬äôþ>-˜ºµ`vîó>qؾ;j(ž`»ÚƒÇ)wÜ :Þ(¹ +F iŸ²½„YïÜ ™^0K1ºŽ)aÑv$TbÓá8šõÅTîÔŽ±—œ)ê)(:gʵâ˜:̺‡JÂ㻈6�¾‹åŒÆJà5h“m‹I¬!y1#"ÍìÕ»¢UPó³tKˆmׂ«öÑweÝÒ +UA‚ÜØÎ ®_Û3.²! kay¾ÒÛ¬Ñ6¿Ï ™¥ÒãQ˜q^f™uÕQå[ß„ËüyÆow¢^Q¬Þ˜ŸglÃ>8Seˆ*Önûzýx€GÏ+*=”ô“£êv×ïä²–¬W¥8ÿÍl÷ûŒ×"@õ%eJߎ>JÌo¥-jËëþ!W̺¤•uß=ÙëØrfe�òÃψAœf´k úÙT\ÖŒ¦n¶X²Ýé?{3Ÿ©^sˆ>Ì@üG}.»ûе÷¡;õìzcìO|k»¢"v!ÃÔoÀ?^Aã×Sê‰#8ƒµFœãQÿåÚäL¨²µŒpA'Ö/•^mõp«U-lã€ÀºBܾ¾šqîë¢ß³䞥 -õ†ahÖgº?Hï¶EæAžrŤéÇ×½»Ô»(ocSH{„ºÖ‰H$"t ÄÂNÄ<öRõ#ªNÅk ®A®êX$w!ŽQÀŽ~»m;q 2FS¸ˆ:v-w#º–Hÿº‚§~07:Ò»}|Œ_DWÊÍpÇ÷ïîÀYAOÛ«økPJŒ+£¢M�XDl˜E® ¼ÚóX'ó> öüPWRz_‹mñAMOwujP‘Á]¹–úÓïh(dPÌéÚ3Ž]cÐ…«(äóàa.¼+ýÐ5…ÊuéF_» í€B¸ö6ʃ SÁ â“@mêžÚuns,‘%kÓÔ2éc@[±Tp=’³–è{ˆ¿ª\Ò Bå’ú¹Žæ_ ˜¦qxDg¸‰,A¯áЪª’0Ý ~³„öÞ:ÓÐ{ü»œ«™I¥ œï¥þÓš /©ÊŽn;ß \»Mhè¯ÁYC¼Å‡Ëåîf¾IŽh÷*óïÔQøkQö]HÃä±Ýýûí8mn—1�þVäÈüi¾4b×3>o+)^}žÕ[Y4¤ºD¿áÔ#+<MeàÕís—ÐÔRfdÀîæ*fÕ¥Þí}ïÈë·´€rõ©DgS) <!V”WG´hØãÝ3ù[Y9iâ¾zpÑþ\Û‘¢ÔБoˆ@·Žœ&(yœ¥´¹n0ºØ ÑÓ¿Û!ªÚòKŸÇv•Ô�^w×[µ¡^Š Ä~F´!xCòoZ§;˜üôzJ¢Gr]\qPý|{³¾MôVÑã¶Y9·[PY'Ü´”fÐBì×£fóip„ÈÁÙ%>E¯s>ŽAU[¿0�õ¾Yò?o8€²ˆI" ޶‹2Ö[ öfѯ„ÌŽw~…Üò=±ÀЦå 24÷KÚ9t‹_Ûxʶ{§ *îøë”¿éÏDµYh‚yüÌ¡îp)¥ÁÜÖ¸S€7¹ŽÝ@äk¿`vu·Q1Uœ‘àåu眉 \dW\ƒ$¿P]É].-ð.O~yN FE¾§gI¨Œ,Ckªºò]½¦ûVx‰4Ò Ÿ*ìÛ�Ó-(ñd¢DÖ€eèø8|ÕÓ=ª–™È0…Ÿ|LU;z‹´„}‡f׆ÝF¹Ò‚¶‘·< /ÖZR¨â®N »¸àn¨¹ÞL¥Ì|X‘ÛcoBÕ•rh¬,TœAföíÔ~!Í5¢K¿RtéY ‘ŒþܤÉU]‘›wÁR 3…—ž·ùqE…I–¡|yÄ7zEeH²‰J®áâŠë´KÒêbé³wŠÒ:5z”ñõ×s3�ˆ•E¢b…#˜·ƒXl:@aœÑü ¡·š[g ýi´1Ë�úÑÐnñ +µ‹C¢OoJæï •ÎíM—gÖ=Î +Ïá½oÑ;T?”4cQÇA’”åÃ6Gxi—Ã#wémƒª[¾“õþÐÎàØèø–ìÓE;ò¹×¦qœ¢9¸7¨*ßóê"~zIJÀ + +h�áËÛ)ÿ+Lg{ÝŠÊÓ!ªõYk‹Ý8×c$BÔltEQˆ"m Ûé·ëadÄf‘%FýMձެ6ªcÏYbáœHlŽ .Ä?y¨cæÐË =tègkMŒDê¼-'¿<È`fPP§ê¼˜ùàΘ¥/›Éop#ÄB;Ë>_Cñmb%fø(®½žÎ°>ÒXÍ™Tv£†ýêümþ¦LGÎ$÷‡ÅQÑhf°êDtåL sð®Z+žAicà;ÊŒ +vmͰ—ýœéÎÝ''Ùk“U#.zŠ$\T!ØM¨·Ï6`bœQùÕÝëÁˆ4ž=¨m•œ_?z‰ê)áîÜÚZ{Øéɨf{Ýtk'_gB‚QC@… ÔTqÙvh‹Ó }ÁÆ î²[Q5FW¤PA¦ªº˜”Š3©p̪jÜk•ïˆez÷ÖséhÈ‹*Fí¡xô°Ï’b^Ûµ.„ž¬Ä´i-"Û½òRÀÈè±zóˆn\Àºó‡ÏI@{ÚðîbØ}G$*ªæí<á*è]yB„ ¼ãJ ä…¢RÒf†-˜vßM=ŸŠÜ/›ÔtþÈ¢$–¡Na]E¥;œa›ÿÚŽ#&V½§ñ{^ØAï½×åº.KÉÏ‚‘ ž9Š-`\I®Ýß+š"™qåðG:ñ·jÿ9üØÕ½À.úÜ<oö¶ûz,TJ´ïþBŸ†z +,wyÁÒîì‘òR â)}°+$¤‹, S¸á†¡_pk&Óà4ësèUœ©+$TŽ%Ù+ÆW“ Ç€käÐêqî0ȽÔ@iÛ4«8¼fèrõg#²'Äûk8znRÍØm vS +·rrÖ"ü‡Äÿ¦‚Œ:“_YÊ•ŸšRnæ+–ãAj*¦¶Êy=8¸‘%haÀìØú•}“ ±µ>ê-f‡bVF¸É›×zÀ ‹{Ja’ØU@õ]=ï"ÙŊʆ•”hr¬ƒª�™?Pâ<<Ç&ݬâÀ³q²t×Íû‘ksѯTsæÚ}]0¯ŽgùæPwà*ûÏ'õ÷æxjPG‘ƒïw´æ9ß&=h8*ªÐËå_ûž }œuzÀ½qsdh×À(+¡nˆžî/‚aêà,þ’)ví†eí¹Õ:ž}™§e`˜ÇY:´Ÿ!!ášÑ,G\}Û5}y‡ýüW¼™Ü‘A°„Õ?dìÒ¾ílÁb¬Á __Z ¹–%ÙˆÛ +KãJÙ¨«ŠòÅ|x)nœ›Ñ£kì!z-Ã%„îó]˜zÆh&°úxê2e·õ˱2ô.(.˜;ØXÕ"2vßïìÁ3¸¢ópyWбncä”[ew¿½!‹¥Ò›^‰! Æûa¢°fJb1Y¦¦u–¶·XŸÁ’pQô€‡Øõ"¶ˆPgÐmEN,¯OíÌ£5{Fk¥n~C šw!Ðù>„’±è{•:J'P]Æó¼‚!½²ZŸ~á]3Šúë5ŸRý]ve»yJ™˜3Ô`bRÿƒÌ¸ýƒµXù%öögnêr[Ü~p”Ç•$ŠCåɺ×ûôV”Sm/Ø[y˜ "G7Ò)H×Þó1úæ¢UŽéø£B)½(õ{‚p³ð_�¯;ê8䦍޳ï~ˆ`äPjVCTÂZÖêÍ&JDMëñì¯m“f)y z[¨?ªT<RªjS°p²mDËÜP:n =È£ê×cQK²[{¼ÆxzœÊ/;;¥îô®«e¼VM ·÷ š˜e'všÒ®ÍCàÅñÓ“ñÙ¢%¨¼Ÿ517Á$!gÞî +A¶ÅÞm ](Ž€ƒ=iÛ_®å±ó¡‡àÀið¼;2½Áw¸T4´ñ‡_ |5’ŽŠŸg½gÀSL°†¨ÎÓK¢>pØH¼®}²Z£òXlT§pC‰HáÍîëÈezÝ:„í(‘w\!ø¨P·ÍôŠ»¢Ë\r§Z‘c쪳¸~è4Üh•Ïí:¶ýÍ*BÞy²®°â&!=ª‡<rÊäªE5¡Œô+îùCbÃÐΨÞhöæîX¡n>w¯»csâ!{Û@¶BÜ·«¢éÐ|¡Ú¸éâ¡Ä—Çi ½§‡6Zý Ê.ÀHÂñ @J¨£q™MBÚ뺃ԹÍ-º=ù�aŽõ‰ +2QÞ»9°Ð{Ö"û^-²Ó^¸¦Éü´|¯Ô;‘sÝÏÎC›æ5Ò¯¾¢°%uì¹`$mk£´ w47–ŽÏ]ls•p-Ž7؈t£Ý-¿Übÿš1)¸ûRm”íFEÖº5 ÖªˆJï +qp³_2™¼FÕ˜¹á!"i¡BÇ”%‡ã²?«+FÇ™×öqíØqn]u€jn6ßs… BŒ8 +ÎõÉHâ@û¨Î‹jôT”á'Â1ýº®§- +.(x=h×zUï‡hý ²Ú¿u—G;¯äïGÃë"rŸ*5*¨fu¼¬70U®áîË‚õ‚–¡ãL39emHÊã§Î›MŠâP/re×›€3•ö!,¬¢¤d‘f^@û€žƒ±ÚÃm=AºÞªåqš�~ÚYxkòDÏ'î.e7ØTÛrãVy’ xhêªÉ"ü ÈÑ×ý,Žü"@VdÑ¢ƒ¢eðF6}@�À:ê)p:"+×[™¶Ø´TÀoeuEG°«\oÔÏoŠÂƒf¹Ì?„úÛŽm=O±\-Õ>p4¬I÷õ!tÃb=OûÆØ…ì¼óÖ–1¾©‘‘vŠZ—M¤Ü€KFEÏv4!> +÷N@°’z?¯±6ÉöYA%_M5Îó1/ˆ»ˆ)œëˆ‡7I•p\¹£êÜÈD¼äÖÈè *©·Éë›%ü_bªçΛ›üÊ7„ÚÄ… õãò_9«? 8ÝG¨y€L;}Ídzü’¦"¹:x˜b¾¯ž)‡¥C׳U¢W^_MºBÿNܘzIó1"ÆcËB rN»‰žã¾R¤?XG`¸§äì£ô@o£áƒ„—|²6³[œˆ×'“0K£bawÑ;ÜauÛ©BÆÍi}¹oö;´UQmÍ'„BÜ·Q /¡cgK?’r´‘¿éízy)NW¾;$«ýž…HϽGû‹%éu:˜¹EÒqyòò¦½¡WZyj¨Da«ó<—™´¦ï[ÇL~d¡[_J¬¶d–üþ$»èè3{<*¨¡”£%AíŠ%˜ŠÝårvêÝ,ãO+—פ´O€”s +m*žÎd1üýRáž!¶éâVå +÷ÒšÇ íß§ãõ¥V9*z+¥"H—k ˜ô!êq,ÅŒ,�dˆZ6ø¸÷5Íè#Rç²3ßì*‘á…i}g‡qéà +{¿ó²Ø*ub¡^uËžMó‰øÇÝ£÷¾Ó‰uM"â.Gƒ»\ÀP©¯†FdÓñ¡78ñhb&°- #ÔøØ˜ñ±C!ìÄŠS˜eS¹ŒM°)…ðÇÁ‡ÀM0å!¬Èk�©› +¢¨hi€¢2”>zÚøˆõh`ü¿Ó.ªŒ`¿çÆ^[óêÜêCh›‚Çfj´Ë…2¹ãË üÚ|Ž˜ã€¹ ©Dö*«HC…žš˜TÔÏŸDe¨¢þ”`1_à=¹’rdl”(ºÌM^ùr–æS̪û0þ:TÆžÐN'\BÄ7£u6Í¡,zCíãDüÞè.Ïy“pïËÊôï}¦;ÊÌJq¶‘2Ô’:˃²ÃT#'²y°f´ñÄDÚ0k×ýÙ®]XÅ=žÂê¼õ9¬‰Ö’i˜gO�B¡ZÌ:$‹‘¦ª]ªk¥ƒ+¼ß'º·ƒä=K<rKj°ôŦaK•í)_¯;ºÇÔN e\bkºµ†?·5üîo:«Ç>¶kÆ÷µôíª½nÄ2“Ïâ@³ß©-èë(IæV†œløØMI¬|ñ†Ýîm0os‚ ÷•¸,6’+³ÿ4¶½²ç'¬Ûk¯#}E}oR娎]ê^¼€—ÏH"¢ÅiIˆvŒw13Öuò¯‹ìmKž Ь›@€jõ•wË.FEC»—ÖÓ'Eû`vzª+\œ‰ü¶á"àbè]íq„9«.,fYÓ±°0ºÚ¬„Áq)ˆÄÎ]!.ñI逮z~&Äa¸ž–ó¾€0ÔðMWpT$Ì#üä«fß�gM{o?ßî|œ[Si"œ‰»úZzáÎÐ&–¡Â zÏ‘Š¤ê¾ûc¦8:÷*få:<ü!T U¬d3×qTäåëšû—Rõöp»¬¼¸½ù€®éR¥Òí¹«Ò©™!\]WS£Zç¼Å•Ï\¨.3Æõ;ÑÓŠf^õ&´a6�¶hzrÞDZÝmCºÇùØ2²xu%èÎPŠME¸nÎ�0ÂŒšZ¥RUƒ.@&Q©A–Œ+7ŠEz4¯÷G|$‚;"Ëï~ç pH‘cªÆ‚_]w`Ø©*[™:ñ5ýzóZTÂípÏ`r/¶Ñ »ÁÀ¢gY6DE•€4]¿ M÷F¾Z ÞY‰À§F%]K•ùH6Ú׌:¾¸é+ÀåLynÆZÃ%’*C‡«&ð¥KOèúT±ßÈÜ}¸¤ j;2Ç&pâØIµòâ*ð±ó„Pך[½ª +~ÀÔ»k‘ø¡j¿ú<*´°!¿'å¾»Ìw¯I +ÿVšÕ#à>ûh+D²|·hóJX<+œ,bæá É̪]Äu¥#Ûolε×êvŠf© ÝI2ù%¯]�áXØ*ZôÛ¹Qâ;–Ê”ÝÈrã Ì?~å¡,i}Û^gÊfAëbÖMs¹6ÍåÝ6®S ¯×LH$5ÃnC-Ý2ÛÚíÇ>‘/h«s=*aè¤ÍKK®]Æ„(A@VÔß®-4Xlµìà¶3V`µìù$RtÖ)ª \ö6އ,¶ÛÐWo;Ä,ûǦ¤HšHB.Ì^ä•Ã@šºŽ¶•`5s>ï@iƸQ 0ûPrî`¹5Ñ«»|\»+H@!±é–ñMˆÜ²R–´$¾cÞÒ>$d‹¯O‚`PÒA)sÇF6sÏv]‰Ž"û&¯ç¶i{c]ð‰0“'þ9€<sS}„Œ.løî¤âÆC:Aí떻ļÙ~‘�\‡¥†Ú6ï@+ÓÅá>õ&De†êÞ3^B–Î×íôÚ™%gÍ*-¡s˜:¢ˆÓ”¼î¹^¯€Lx= kDñR¯£ÅG…öȹ›×¤Òv&ú'ÂÎÌÛd Ôà„úTtÙÀ-öÈ–3-àH °ùpékl¿û +m°Õ^yStDtÝ¡s÷аfvöÑ:—2„ÝYc!WejêèL&wÊF ¼ÂƒJÌϳÐP^oú}\¢G‚ßF×£fï?0Ntõp=£PªÙ¼lN݃up¥‰ro2‡`®‹»îÉñŒ…„ÿ^j<(ï�C›À¦sœ@¯×§R2PNä}&Jh›Ù‹¹ÊK4u†ÚÕpz°Ôó; 9ÂB D×ÝoѪ~5 ”ËJ/fÈCb_Êþç“vÃ( pÆÔ(ý?ìrîÈzE®ƒµ2©ij=÷âÞô›ŒëÑúåÆÇñâLí!@(v"·\ØÐ}äÁHa…ú[ê¨ÁÕ€‘)¢èjBž÷ÈU?Yæñá%*. ]â¹EB*p2ô1>4ò¾{j ªGtuTôŒ¸Gp 27:ãØ2Ó›~;Š<Š[$h]7E>éqMŽuÜ¢Sú…:#¼èOò߯3‰g Å4¢ìV£ì†Å¶Ø50Ä@õ +îÖjFÚá.ùaO®ÀdÓÏû +’·‡T#¥ $¼UÍm×ÚçkþjM/R»ƒ+‹\"´.°ãGf»F~²T„#ö»$Æ2¼ÁCòp€‡”ß@V#»o]B±U'¥aŒ3ô–MÇP|>Œz„<ÌXyn¹AûØ¡ÖL©[gcÅ}|–OíéWÊ<#$“çipU÷¨4k§Œýxß[‹‰ž3¥§|Û~ç&‹¶”æaÆ9ÁàCyýžd/›î‰”ñù:¼"²J¹µX‡G°}£àC™avF%Añþ¬ë—«ûLùæˆúJæFo~w&[ÖkVÒGfm±8< ùšwŸ˜Ç^ÚædÂÌ'+MÝÉÈkõ»OÁU¥h…†º{éÚÑAk~5C3ÔÇpçÊC(å1!© \¸g‘`å¨ùõ§*ˆ©g|5²ÓÄ2¸éé%ƒt4¤™5½€*ïÃ[[PÖåˆHä«Vèr W{Ýù‡µÔöyäL¥n¿‡»×Šuzd†;Ë%‰êÞ˜ò f‰ae–’Æx~,aÊCë‡I-UV?ò`^V +¨nA8h´‰8ŽUrì¶• ƒ‘.gŠ"Eº6½î88Vóij¶ú®ãlȽmPcÍO4JØt¡h©~`¼éŒÝãÃ8+}´ˆ«yó|hd\bñŠ^�wÛª`Ô./#75*³¼µèVë~Œ½Êö~-a¾ØV¼~©_2¤�Œž$ˆ¤7›˜Ü°ˆˆ³Á(±í_|£ªe®CçŠÌì°[Œ¢¡”ö•8ÐiCöt<Ò#Êù`‹{MHôO-¡˜x\éœ]›<D üøú‰q_§ 0]ÓqÏ–få +ÖÝÝxüît•“šÑ®\`±}Dô†²B‹Æz?§Ëìt¢‡pî&þ϶EƒveÔtÈΙþµµ"ïàŠ~, +fòë@阈‚li|nÿ5ÛëÿîWý^þÂý#•ü;ý÷•¥‰ç"èõ0ÅÑ8äänêgžË5ËÑÛ,1̳19ÖãÇ»ó]Í�¹¾·0꟣ʓRx¤WÞ{Q]ÄcE!æa“„z,tñ|õ•ábM4Õ¬Â![Ý# k™: ÂØ¬øILëðZ¿ëHy.ªÎ8í!—AÙ´nZŒµ +Š™ØÚ=s¸+ Ðe#_ﬧœ9·xöZ¢ç…(qøAÜ SO#´l(Î=Sº^½ž¹`³Ô–$ Êx–‘ž kgÍ–}•}©çÂR“ÐØÖƒ¯ðtOçÐÕ38µ%š¨ÝézC'ðÆXïÚ©4Qó×a1ì‘@þaL�yª¡Ë€ÄHßë3ò:\udPÂJcûjÈ·m$‡ƒòðP‘mzÀÍ}4ÔËCe«¾)мœ¦yô×sZІ”ëj ¦Œà`ËC™Ïe°a+{ØÖ¥µÀTë–‡úðpªhß`V°1>‹%¨u‹T=è¼~Q~h¡ýz¸·Á3{AYLi¥h+~¾ÂBÊù¥›µ4Pëy^Ïg«Û[t=~¶hŸ÷œ¡vbÐö3ò»ÒZVF縔Ó}~ÔiƒW·ÆÖ'rÌö±Ä@ßCŸV<ÄÞm| kxÍÊÈšLNˆ²¬ë±+¨ñI%Œi%e.LÞA@s´G‹¨è…žÍÝ‚_^weưgí·\ ˆ·×‡Ì·Áº]q‹¤“-"þhüÆt<V’fëÊG¥øR®ã¶ûNÛ±^Ge2=ü‹*";hV~øá~ø<ØA²…‚'gï_ÛòF~#‘/ÁýØ‘Ã9u¹¹¹´�RÆ‘s!�|C‹g};èŸ +±±ü‹ïº 7"ó (‚š¨t–$ËD�Ix]‹¼ +‘ Yµã§G¡À1GDý‹Õ¤æÁ'UÁöüR]e9ä½êíŠ: xfë÷Z¿"F,uµ¸½:Á{ÅÀýpEßv[‹ˆ‚ ÙÎ3¼8ü•×äãØ9”¼u3Îsà裨CUE‡Ö\šKìYǃ5fV—õ¿´eË›X)Ì„(ci„ÍRÇkÖþ‡Vô¯nºÿj¨ñ:ÂmvÉyï2 Ųí_p§òB'Ždk‚¡(‰ò¨Íî.p;j¬k#Ú@l·{j9�ßEtÏT…<cêEšN™bM–›~ohG9¢¢Ôd¬n™¿ç(iªc,†ý×dÿÜ‚ÈH/ͼÇR9Ýýhõ¬íN¸;jyô@LÛ¶ä ò̇¤·T ZÕX•Ô”„Eçº@‘s:HŒ—M¶*-G•åcKI"PK›(jÓ‡jý‡¢uÜAèðýÁ.×$�kpE~“A±YØ6ƒÅVgÜU”²$Ö …—êǣʄþÉõÀ©ðö\öÙ`ËY‰Vœ£Õ(^µ¸Ë †`"/9˜cËÝ÷CÃK[|ΔäF³€@ÍC\õ¯Üh?ÿ5ïiÀŠ4ß�+ª+0ŽíCSúÜ·ua©š”³dòc£-æ›ãpgŽNd<dË_M–»€éâ6@7¹|tÙÁtÎ3Ë4½xZöá%?¤}ëñѶ3ÐÄEÆœ%fÒäW·cmA¹ö©66bË×=º3÷¤öð4Åíº0µ!™>6ý(ø&¿ÏH º™6júxŸ$)Y*Øœ0>CÖ—‹²ÂU'”86“ëDšØ$ y$??„“%\1«•¤×”QÒ|ô8>³ )<õžû&ÁÑ”h‘lÏsž( e†*êd¾óu¦T¨sÕ¾ —2ן[/:Qð<Ö=s —°W6¸GIÚ)6?-Wºåx ÌϬÀ–pÁ¦b)““(gžá†J4lVÁÓáî²¶óxJ=–Nâ =ÓìF�f÷Õ?vŸNÎ{˜Gpäýð7áÍ… s"XÿŠf¡˜Ð¿˜!vÐj¾¨Onö6«ïv6@SÈ78ÕU%JwëÑë~ÀŸ~»Ë§þª$G‘>û4Kj࡜÷ºh3RM†AÔèÙ6…æB¬î!°¿ÍBˆ_×(ú3ôàhS¯XùÀC¡T *R½nëÆ4$�ÓIHÀbsçDGT1Ö¤³Ý™e*ƒ4R<ާÒÛf[Ø.Q1^f‚ײ¸yÒ î›©ŽôÆ<®×‰�ý0ë}³<zfÑÍó8ö¨ÖŒªL#3®mÜÛ-ÖÈg`Œ/Þ¶oÓuOÍ™†¼}»uA.ðJTÄÓLXé('.½r|ëÒ·ëþjF /‘kÔïgø<7-z“Ǿô½©±Çm{§A!Å{o•|õµ>dAÛ}ô°1~ŸßNKÓ:@×|Á¶Â8î/€¸é=·ÄG9â}V߉×ÚsÆI#BæØnŽŠil&!‰‹é·©?â÷¬ó‘R‰¢E‰ÂÆ;á´¿6mWz£*ôÒU÷÷åÂ]œP� ÎoRmÖÊ„d¯g"½€†¿RæãÚP»ˆv-®»L~ÅÜ,Mjºû™Õë +Î;ŠZîµp†Xß~Vú–{ÉQ•›ŠÏnšäuÎ-‚ƒ+nÃÓ7p2íJñ\¨*}ßíCHÊÂ<P³î¶xD¤áÚn=JE +—ÀÚ¤ä0 +é1ã.‘›LÉêѹµÄžÒ•^-g@ +3êr)m*I±Ñ-gΆ¼YwRßq(cÙîMƒŠ±%¥è‡…±•~A:$+lšž`p]#ðëØ +P+jígîþ=&úkfíaË~vÆ–(ôÔʰý²•ív$UÚ–Â…ùôíÕeMŽÛ’bݽ%âûv£O%ïÌ Ù¢)(¡ ‡C”Ã!ëÓ•¶MÅ0ª:Wð4ûpÛáãðFâ(W>S&ϯþ$mã6)<u ²|'"ã69“€¥ }£ÃŽ"`Ç~>DÖ+Ìæ>,„†`5(‘´õîµæ¢1_éM=;ö‘»Zh¥BÊÙÜ‚OcÂ|¢;NôúÌ–é)Ù[ ¤G$Dö¤Ëºkùê–¤²ÜOƒƒ÷ÆÑ®»“Ö–í[ßZè!Ó‚-?ÝÓìNPÕ}ÍûOî¿O-¨¡n‡hí°,ã³,À£z ”g?äh¹nŽ aWr%+=Ðyj0ìý›äU…ýËÁ--¯Hκd¢¿ïÐBº-[èv”—L¾£ãAw!º]ÇÛ¦`K@Š]=ÔçoNûH×?¯!û{Vö5•Î r]è}«}oºõóš&|Â`EuI’QB×¢5æºSh’ÌmG–cì}]zfKöÙˆ‰þlÐ[ô}Þ +Ý*׈†ï±nïÕðÃŒ¶e®R“/&[wWü~®T$/×ÃÅsÂU†ÆÌ¯CñOû§Këó ²²e1{ÓÈïÍ¢(yÒxˆ…¿ƒž|ü}dÓŠôäú¸$MsšP¿Ô˸N™³¦”ï€ÀÊ ;ešmÛ©S UI¥ÕôR¢™¸®è¡(Aêmâáb=Šüõje©7O¼òKñBÜ/Ôsu mÈ…õf[äó€¿4ÅqCåsãr¼¼Î5ÕºQÙ•ƒúÝ@ÿik_¯¶uÝ??AWdÄÂúÔr周ù¼øIqëù>8®(è èµÔ“œ×€%š260â5hqŸO·ò/X¦³§( ý$< +ÒÖCg‹b÷y๋£Qo0Šï³('…fUýŒ@S¦¦/&ûÚ‰&?xôîÏ ‘rRìÜãÜv£’°+‡!ÿßsk’IäÇ›—Ý› +<Ÿ¼*#ÞoƒQi{ÛŒGÎ!ïOKì«íŽÙ\«Ý^ÁqTñ/¡"Å¿é±�0A’h—´\Då7×AºxmÎ`3|Ò8-ÑëÖ +ÍDLŒ×{ÊÛV“^hcñ”nØBÓ^µ[×Уõ/.dhœÞõÜwe쌺oû”·Á^·Ž0<*z+äÖð÷c àc¼ÆXÖô¢-M¶oîܺC“¤Š¾aä€]ý¹ÜÖ|Þ;¦Ñ‘ð†%QôÅ”‹§ŽplpÒòC<'ÊtÔ3»•ûù-ºÇ$V?°_œ9ܹÀ©,A¹ÌëuÆ; Í5ððK¥€\¹ü#9 V¥…- +,ì´’¶B?€F¯×áéQÞ*tx6-m©DÒ£D‚é¦�–ÖÏz°˜Àiµ÷•œ,7Æãf9v@¤ûq¡W«O5èš[ †º4jt(ª½6½‘ôk\r/ƒßP¿¤ +©ÄÉXˆT6+A´8ª ß}úO¿}êð”ú¯ÛŒâ}t0vÖ¡·ƒæÅZnã)×¾˜ñÕ’ý>"f/šÕ—²W‡v–>ʈßÈ™’ÊÜ7UˆsS‹V¬-ð;o$‹ž¢_è¯ð h¿+8û™LFt=)FXˆµíÜë‚ÀS#ré1½>ñ1¿³têÛÒÉñL?Ÿ¼<Fòߣ•ßfüËÎnçFÌÿøöëQv¿Ms´"\!’`aà$×!¶¹K7„s$ui…æç#9µ½ÈTžI~;ŠÇ>Œ…£¿&ŒL8TT©(Éb�gè¡úæ9Q\ÝB|ÒåȺÆ@5ᣟRƒµ5Î +«¯À £ø~>뙡Cûõg[†QÉÈë—º=` ßMߟº‘ú+MUÝý]uôû¥9²&È—Gëô‘Ójâ]·…zDæS¼”“Æý3?•4b¹ë?ad35êéê¬_ìxlRtAvP)Û0Z’‚kVµx}o¤§ùû8$Þ¨ nÁj×È0ó㸸4(½"nKIwÝ’€¾š±yx°ZŽÛ·Â¬m#ÜÖœ`‡ûý@R6œ{‰D‡”´d»€zØ„L9#]öƒ:뾿1\‰ËÍnÞõ!eÖT7»š„[žDïçõÐÈÀ}›SEÖKÒãVwo„YXnŸ[õj´ êêº�º\ý‰Öv@gXØÉSŽša(t±ÒOÞ†ª[1v%çÙÄàT+ûJ“NÊ&ƒœJŸßx•“€¾ ØbLz5i—¥œËW4çšHNϼǼœ1ÕAKšYœu!ÅËzšÞEႉÜ8AÀýÀzåIauqIrv¨áPI´ÊóíJ®0¨÷¨PŒˆÂKÞ[_˜º°Êî^ÆK]ñ¤¨’±ž÷4èkëõvU¯_téûöŒA‡œž³<y»š>¥K'_›cè™Uëc©ëiU6?¡£øYÅ)=× <âØîš£PêîZV˜ )½í@€ŒˆòÝ„æ/ ‡·wI*QO~ûØžFއø!ks¯]ÓÐ=ðÄWðõz‡u}¹[AndµM-oEbe>^@tî×=zTžjæYŸâã§ÁyOFÎrÅ@-¨ZB#.´æáØ·h6äÃÝûG+è|7y;˜Ÿýõ÷cõúí†èU¥NµoѺÔdGØÅ|p>\‚µŽZ9¾»<‡qŒâIz…y‚ÑQœíØ«×ë¬æ¾áñ1jÙkyéÚžðËW^ãFXžº±Ío@þܶô®×'ÙUµOݡƔ¬FûëÚ8å§UN'p=ß½í|Ôúìç\¦ÏñÂÛÛ¯‡Ž}ƒ`=#IÐ#OVd'|žáïðœàó ð¿ãÚ«Y¾¹c$÷õ‚JZ$g}øK#_(ÃþXÏGT€ôòi•/¬ƒÖˆ³G»AP;¥Î—Îâ-Á÷ýÙ Ž¹QÑÐiÉkê ¼n¤@8YÔÈï÷º×ÛŒÇü ùmÌLLÕBòá]amн?2bÇŠ¡"%‰ì¯Ãõ寗TM‚y…-Ÿ˜×gª^Z_wC=…TEâæéS¨QűæËßhïBË]·fZ÷·j5hëôG¹‘ïú†÷MÒ–òT–ÎnùOn¾ñéõ:ígÑøqð±uõ¶ý}è²J¦ß;£D¶[qê×@n»{+ñ +æãã]ºJw:K–|¼½~g[{[?>BY4“4•Dr{8^÷YóòyýõÈIÍ9ÖáŽëãMP'¬CôĆ‹>9·oªW䉋PÅ?Eï¨âß�a.¼"ඇñžÆTÐ/”èùø�2HûS™£ˆø.è~`ðÇyIH :¦,ÑGgk`N‰©åpeîDûPþ¸Ôv;8 Q. å‹×G¾Kn¬™øÅAD¸_qËñ—Ú +ä{|㬔°óiìÁxòΘC£Ð¸ÞwÍn&ÚàtÔûµ7Œù¤ú¥œ5ÚE"SG·±bÂ2¢-ä"~o5Ÿ…η`véÌ»�Ôrå¤^(ý¼‘î—¢a5Àì}ÝYé'ˆ»X‡!ÜÊÆˆÛ30žNõÜynù³~¼ëÜòfï7Ø©Yß^o›Ðˆà§±+ù-’vµÒ`’aÐùÑX`qWEŒ_·ïqJ¼EÂýiçÆÒe›R³zd>£<å�a=pEÁ¿@ÖFæ·‡ÓñÈó°‰è1zGÙ¯ ÷QT>7¢tªJi[ÔO‚RP7ÇÉá©+ãô6Ðcªô`l~œQÀ+òQ¬^oU¿�"d�Åé>_ÉföwÞ£œßIþ-Ê(9=½Áòl¡åú>^ìÜic·èÑÇ\«i+ñóþ»}.vO;ìm$ˆîZpBxK`Ÿ¸îCäçA=\y×ÜÕùǽ~gñÍR.’j-åùýãF†¨³¾æÚêáo”ÍT`ÓézvŸ™¨ŒÏí>®§2rž¸¥ºÝnÝ|jyJ¹wX5²?_QwKذÉò€Q&{õ¯u*ÈÁî_%XGRwxýŠàÕþ4Ð8$_!Ú#¡É}½–!mžaB`øC9üõTù@'iñº+Œãôùé=@{ìy §æ#ØÙ¨3–x÷YöU©¡ù[c¨DàªÏpÉ>Ó•NÝKÙHøUîÆëRÙ~côK¡ŒV¶7\Ë d¦Ó·Ð/»â_m•ÿ5ûñŠ~•TôìÀ ¨Ïò~GmõÛßüÛoÿóüúÉÎoÿþ?þñÿûÛßü‡¿ýo¿ùÓŸ~ÿÏÿøËßþŸ_þËoþáùùÿôÿ~ùãÿúå?ýîþôŸÿùÿ÷ŸrÒ¯ßñßÿO¿ÿÍŸ~ÿ»_Ö)~øp÷ëüîÓå¿Ü£°XZü@Ö—úI›ØÔèø~#\”gÏíÝ Ì,¨Ù@<Š\ïºä´Nö¾µôÓ„þü +ÖÔhAòAÇþŠqÕäJ’ *�ÀžX)m ?ìYuÆã”¤ë}3€1£S"+êßã·÷yíhÌèd¢ÌÐÆy?90|ï0ûH< +½„[zo%›\á€t›SÀ× Šnz'F_{â›ë©Yéez½Ì:â˜<mÜu«¨MÈï\ë×ZÌ*ø3bǾô7g€v[3ºQãqß]pïìwftÊ9F?Qî}|àÈkõ¼~¯Ø‹±&©îÉZìš´¡É»×œÖ2ƒÕoÍpukº•©©: +;£5AÌ‘3Qk¯ÍJvÓÓzÀCƒ2úºP+ék¡…H’†ÖF·x¥Bûn ZMÜ 9.{¢« Ð@h Ðõù(¥i³–y +ÈK+»]ùá¹ÜÈ£ÝsØH[îÜ$êœs#Õ+¬˜"GÇËZBSŒXÙöÑ?ooÈ›²!ÑA--^8k C7eÝv!Q‚¦Ž_KOÛ+Ÿc‹˜…s4³ˆG3ÿŸ5‹ÀÕ㨈t¬%”¿–úËaðû`ÂzÌèÕØsVgˆ²\é,Ðá׉ֺˉۛÎ2íX³ð4sX±Ã”"ŸÎ8ŒBý$Pdø$&#H´íýa€îëCôàÿ+±ü=y´¡ô¨a²ƒ£Gc°’w¯ÛuÒƒóÎf?u¿îQ{óY\OÜz8¹Ë÷{¨öÐ6£>‹JFek'«]+P½/f”3&P�ïžÇù‹Y-6\ëG,`z*° úwçs——+J�çhÖ<*¼~Öb«·ù&4×…AIÑÇþí8¨Þ\>’kå§WÐríŠ1hÒ®½MŽA?Ž+xÇ«æÛñ\3fÑ=Xf.' £8å•Õ†µ— Å‹:³!ç3ý(˜»òC#àwß™Ùý ’xƒ˜]‰A1‘(lŒ|Ìǯ#\‰ê#Ü5' ÷â +¤Þ ãi1¸õC/幘Tp¯Ëq¤†é£‹r¨åëËë„vêd…ôéc ÇÀxÝÀåQ "/†5-ø|² ~¡ºnDÖõs2ãŠs dôºUJP…F÷Ûxn(@Ó…GYƒá÷ƒÐ»[?>ºUØäâ'‹4<Ä÷_ݹo³8Fë¾oî7ù#u +&ÙÛpëÚ +Üvá¤YQ3ÈŒµglÔJ™ä#õª;«;°KvVåŠV8´þ{;—ƧÚ4t±É±sšæ˜DzÏ›Á·ž±}v†rV…Ò·mÓm ÷Ú +AÓV�JW˜b_oØK‡çY+óp–´ +:kô8˜±n2f-?.€×ìÎà^gÆjÂ3!òƒ8[Ý$… +?[¨y™F©%&Þ@ˆµp¤cº!qí,5™ÊºÑp{ð“èŸdÒ˯ÞÞ”â¡ÈuÆÇŽD@Rñº + YÎ ¢'!ËaØs¶"qV=·“õ™ÀF+=BðÌà;2'£„Od›„O£&8ú×ð':®Ñ¯�…£ÛöºÖ´( ¯$ÂG¢6TšˆeÂHË£ íÇ“žx»µÚÂò±ºÌ—!µï§½ùœ•u«Uo6‘B5ó¦ !ˆ^QÏ«–k¬g�sf†nÌè®ûìž»ÒצJfôH-AgY9X³�|cÆŠn9Ó‰²lfÐ!dèf È¥©$UÏDªŽ*Ðc¹ÃŸd:i¨ß\fNò8B$m.&Ífæò¦¢ÈiÑ Ñ#ÌÓ;r‡5›ÇtÙ^7ÉFš7Û.ýò¨L¡Ðê|εÀœa'Ö—œ>W#•wµ?mæs«k3&ýC�¼UÕJ‚Ýõ”_êpg_\3&.ÖLp·*þoÇA‚3žþÙÞÙý:õVæ¬ëÉW;‚)(@ºÏË£r™AÏ¥œ™ÁÆÔ3˜±>źÂìò¬§œa|<g’ 0ÐB»¼[ªë"Ð[ÿ'ns8»Üæìçßþìsðó~lª •ôèhtÁCκå°?ìYM;MÈ…sFh-M$%9^åºÇ‰±- Þ[ñnE:ôão¾òúºÊÊ|vÂûí>Ñ:Þ`EÜÒÔï¤QL9M3�z-tGÝ3B»U)ÐRÙú[/²ü$5ûÆ£Ò´VŸÎ¦¾<§Ÿ[ßו¬Å{%žŠµ§H`'¼'ƒXg“ÿ6ÜøÛ‚À‘ã‹ãÈþaø-mnq>Á–ìñ·#ç¹7GX‡û)Š<±0hÝû– +y\AÈkYÔÙ˜.âÓ|#.q§ËëJt"_0€Ø²Zß~ÃåÓø^úfOVËs|<U©B’Œç48Ö#šl>ž²sŸHkÀKå 'p“Ü|Ųå™ÙúxjÇèѹ<P\^Ž0 r(K7JŒ\Ð^Vú>´éŠè#zt™M/i?0r£løtL&CnÖzŠžÖJEX¸|ëCE¸b—œrˆ€ÊT´Àšübƈ.ÎÊG{òÝ·Y¤¥zù!µF>}òS¥n9gPeXa&Ø=[æ£pwé0¿ÍÈwÂíõ<¤]}qN=hí]EÛOþTCí·'êJOâm°‹ôRó@#|6éÝœ›¹LMfÝìk%µNöŒ¾ÚÜE}ˆÿWÊÂ9z*Ô ÐE½2KÍÓõ£¸†b 4ÈFl°GÙ£™Ý=ˆízŒV¦ú:Q_ É<i¶³ì/cC'öQÒlšÖ6 ÏÖTÔ¥:1W2¡ p‰5eCoëÚ•û‚”ä•“²rpE„-Y áI¤sc_·›ö cs1ô¤y÷6£hŒÁï‰éös¦·YwØPÕs_{$J¸$5î—kȘz§St=NÁ%8¡½ÍH5…ÆØUR9”OÞŽÞʪOAÂ’;}FJ~=Þ MÞ'èÕ…<"€Ýªýb5 m°Sþ>±ò… +ŠóÝG3ìÊu›îhȲµÙÅðvÄþÆ»€¬¸YB8ξÖmK`AwÕEêD<è«û¤ÒÓ&n]+Á‰æÀþH¡õl¯ ™Cšá¤šUfl8XzV¢6¤AÚ!™[¹šãk¢—ñG:Sv#)Üç·¶dx‹¤3‹’ÆšÕ,Nñdo¼Fmލù`I†H+©iû +ü@úW•§ãéhÅ[6öbí×ñüJx½Œá,8ÙΊ!pY¡ßZ瘱õ•×›‹·Ãµ¾2í0³MfxœÜ´1oÖ™5©L6e–ý;¦ÇY9võ8“íu¢XHÎW®-ÂvYòY¼ ¬p©¬t#’·O�~‰`¦H`ýCô{· ¹"8Ò±ƒ™}¶Î@Ð7}ïo>rzR“ŠPëÌtü®0¥ç U”«Óg"èÊï^ÙaiÔFýdp *4^¿}óæŽ¹ü·®ÐZ*×–ÐvÞÿ1&±>1i¦)×ããÁ¤É sa8Ü4~„{±ø=Ïàšq%aQ‡1\ý0l÷ÇûæJ Æ$Aâ%Og¡Dž¡Ô´fbWñ«Â‹Q+ +w|Ø+{}ØãØá^DÎ$uï3Áw¹ù8LÖuA«Œt$dàXß^\{h°.[×€]OC/¡«ŠGÊœzØÐ+VPÜä±¶n*ps5O¢f^Š)Ï÷�¢Já‘ÇèÃnò¹¡‰ Gùð+-7HR ‹èÛ–X¡ƒWõ8ÚG× 0Ú€”Èˤæx¸G(xýÏ[íGGý™Ji¹?™¤;cFàsS•ÙÜNö{ ›{±Ñ"ótÆýè¹Ål[€©ÄëµèñÇžŽ¼«˜"@þ…ßCEã <[rÿ/f¨ù8^?ă}{»Ô}c(£ÈâqøV@TX½Bc§3Ÿd>Yz?Ïð4æUvgÁ4œ_a¤YøÀ'ÄÚàû¬»mЊD‘ôϙȽ½x{£ñJW€ª†QU)’`UÌe5•<¬®3²–BÏÅW!Z™—è¼|1ï‚i<%æSã� ÌoΚºnìØH+j¯6^ßgÔ-ë¼BŸ£»ëÇY¸ +f7jÑëLâÂÚb©¿`ò¢Æ´š£k€A¦Î¯³nvã—O<Ïa!p¥$ØÏuÀ€(øCW´fðÒ¸ñ9Þ& t„¬4ˆ÷ñXx½Í¢ 1|žŽð˜•@¡ °â#JÔ’7LÙ&í9ºeõl_Ìxn7޹-¾:L$ªªe×TƒÐ0Ž3k¾e4¯'ÒÛ\ý%D¼ø5:g¹ +ÏlmŽwnæÖrŸo‹)Ãêe7äð€êÀ‘¡µØÓQ +¯]÷‚çL¶HéåKYʲVdx»ÇY¬À%*ÍïT·lÛ%g2XEx¦íï”HŠ.ßñ|'-ÀÎi® °†%¦µ¤X.étm&w&©wfc„fϾï¸HyÞËÛxN£ñ(R¼Ð°Ç!fCwèž^í :7{ÍûŒmaÔ¨©=kÏçI(jÑ@kÄÁ|Và,¼‰L:R÷|ɵ^`¡£_ß§a]D6¨¢+[ßA¯hBYÇ(þff’az¿˜1ÒlÄÇ}<¿ÈÛ¬:HE{¶267 +yëj»Þ#kGÁ*ß\†“Lë}ÂóˆRF|¤‹…\¨4~‚þÅËdYª¯½¿Õ§ +úy*ö>œùåâ-‡Ù±åHÉÙV$Ž,àTi@ù¤O3r4Vg#XÑ[ï_§êiÄê]º®MFd}Gd\§z'wÅ‚{³ ºê”êP(ÄAS¹kñ]¤Ä°€†%~Txü…Tð<azÙÌ€cPoYúÚ]¸=ŽÖ¥¬ÅYó©¶x”[kæõHÓÄV†\?n>9�³`l¥Çô´ë±‚õ«e-R©QCüÀ{ÕL +ÂÓŠö,”A6F’í]”‰»`Çù>-kÚü!^SøÕÛïýȬ´›¤P_ì©àõºcŒ½?Ï@q_Æk¤P_‘ê§Ymc/k´#‰¬«³Rp¡ÈòM!íö› v7±ÿö»Î+ì(ìÈÏòìÂí‰ÏÈÄ[f¡¬Yè“zÂlf44ô€¯4Êhê1¯èµPŠ>{} ËÑâIÒSŠqeVäXøðä´Î‘ +B*e>? +W£lãܪÈ9õí^Jhnq�Lí,ùùï¶ +ØõoäNVîthN3{Ðy½2Ÿ/f ‡F=´{>aåÛ¬3^1}…*ýJvÖaàyÉìºìšÑ‰]_åÅú¼nàõèzSܽ«ª’Q + pá#‰2ìØ[Ä@Lüsê6)HÑÃñm͸®–Ê“@%ìq)²`°®½ê‰’þá&{Ê6n嵯ß~ýúÀÊÿE$ßfüöi°¡¦? ðÝå}åw¥‰¯!<†ý0D¡¯öÕŒ/¶¿÷I þ4a9Ð-)ë0Àæ¬Rïóí=¢¶â˜IÈÝ u_‡å ¡0Ú‹= H‹'àDÒr Aã0wTüa @Äo*Μaµ¿\m‘«â’ë¡K}pâ¾``¼‰;(݈¨ï/II¹E‚•&r¾Ù1®;Zý=ÿbéÈNåý*ƒ-MsݨJ£;°¾OCuPvJ|'e…SæWɈAv.Uos¸ô³Ì PÆêÏõYÒ7€>3ZfpYœ@õê4J|“4€(àÄ@¡76ô;‡ñw$ tp†7ÌzÒÖzž´Žn²$J͵„AÑ0r(Oeoòù�f5wg;}®¥`r€ö^‘qx1Á£IA.¿ðÍ 1çù�HëOÁ¦ÔãlOqÏ:Áõ§¡¿êqû¥„/&âÞˆàÍ鎻§¾9êÜ3º\Ò°¿+åO„±ÓfutÅa}ʪG¨7Üë\œ× °`«u§Ó®t,LÖ›@,,ù<'²¸ øxµÀÓ §ïïº-m¬e\i\¨4x÷öÖx†^ï„ì9|y€hž%{Fâ‘–„G‹ÑFSÉ'X/GôWOÝ×±† eSã«Ä*Ë÷«Ô½ÏýûHùܪX17â¹%…a&×5÷‚JÕ°Šë#Åé÷3²Ž jÓû,ùÓkyXùUÑ~nçZ µ™[áx½Õ¤µy%@U?‡.¥µºo°Úv’Å„ü9~YÜC¯µë´qÙtŒ‹!›�EÓVïìK¨AÝ|͸6‚“-zþ̲Ÿ¸fµ x®ˆáÀ¦¢ÁŒJ;Œ£÷ò±¯Åý®:cý¨”µ×ž~åj¯®ÆÃs¦n›V–oÛŸçôíd-ëÒ‰Ãvâ°d¬žƒ³-¾û¨¢’]yñ°JäQ‡ÒÍñªnÜ•ë"ötA)ùŠéÖÝIDI5¥ÜÛ·NÈ-ìʳÀ,0KŸ¨ÌªÅYÓ3Ý©}Âtod54Ã×b‰ã·ÖàcÖ”|�¥«K鉘D=˜Iv¢ï<WЮ8ïœhý¼žÈêÕQî·v§ºÅg¼jŽ�˜·òë¾~ãÄéz‡*tRšÞØ<ú`3ÙpæNP©Èœã«ø,p»ÖömVÔÈ`S®ççÌ}+bJ]TÎïÐf*F·(ÈkôÃÚ¾þ¢8ÿ6#ÕúCÌ#à}ÌÞsa†nA½¥R‡^ +†îWûbƵ=ÖîÉæºÏôyÖ)*\lP9<½hÑÅÚ½¡ +9è¡´c¯Ÿfäg§KÊ…ÄÎ_‡»gÊ&=»[Û˜Îëûäxª–eš]¼î¯f]3ž@U¬Ë:Ì•a=Å©Z]Ð-:Ò àj[†[h]ðf\> Â-RGtŠþ?kï¶k½’žç]Aîa:' +kÇ*& 0 AN F[D–á(r÷©çy‹ó_=Ç´V´ËÝÿø&ÉÁAV}›w£aJÝ ‘�l‚5ÚøÙ%BwÏ~Þ}:Ä|å<âK9ÂX÷×y’5åFr5îz~“.jáê4¡_Rƒºr&[…è !Hð;% BvÈ{&}`ª´b{ÍcáÁ"Á-[ÂvhÏq-7b}Ÿ?`t\Aaþ‘Eæ{Ê÷qRZï‹®?£ì‹+ øg„OAŒëØ*Ι¾GQo"jSÜŒsÁó\0¹ÕsîöΆݩs´}ÿIñø*Ÿ> :5“þ$cüã�½b3z5‰PSÀÇJMáLNOô§2aâ? ;�ß™3Ö„Ëa¯ú”Ù#ê + +G¨o/G +zéý‡€9"H‰ÐÒ<äü fíX]¬Ld€ªÑ[8ĵ"¢Ñ‚Ew„“פ–¨å»°Ë$4cŒ¹k˘t}À*ô8÷^$Z" 6 %-pWVlŠpÃFái¿Î”½°ž¨‡l´º(?‡—…ˆ›vˆ\±ó;ÂÌ3Q—s-¸I±"S|½Öûžß±èΣD•qŸjßñ<9Nö£VÐ¥†¦¡Þ® îÿQWäÏ +×÷+}DÁS›$i¹öò#/tÇŒOÌÓ +¾©ÁþëtM@qÿàÏ'ÃCÀbªüô×ÕÙ“N˜É‰{–îN!C¢ø±S–Óýá³,/–BBÁPQ•°ÎÀõ–œwú7 ÉÒD[Íï_Ë +äD6˜2|Ü*¹6šo¶™fÒ&ö‚ůWâèf–ûå¡×ÍaÐX(²© 6éR14oÝK€XØcLæSΉL !Ü9"nDÈ¡~Ï”õúLç� Út,(¼ž¾ÕoÜ"^åAƒkohN¥‡$Ÿ/2LÕKQ`fpPÖ}¼*Ð~ñ+k,† [`ˆ²ÆåÌ�(0²Ë½¶ägr¨Þ–;íõœé{Tay/+Â{Kå“9¢u›zWp’âN€;Áüè#"O.q”užþûqŠ"s>Kû[wÁü´;ÃFØ3Hqå-@6^Xšm§ÐfZ ÌoìõN”í<܆]þãf×Ë‹ô"Šœ-ô +?²3ƒô5•+D˜yºYüµ9J3<D…)#DûG•ƒ€—赩¬»¦ÅÅÀs|?v(•lg|IŽ€€¨”,À¯`êøjªsîüÂ<£Ì$@°ðz~ +¸$G#åU{ùŒª‡qц!rE D*ÐÊ(’Ç;k¿¯üÒÔz¤¹D”/dž]3Êt&ò¡Ì›ŸH"ò$¬‰´³‚Œù+ªFÒQ˜S2Hí/gŒúk}húTÀì‡WÀµ¤=*gx)¤¨ƒÒÄ&ÂR,ƒôŽo‚4xmAscG¬·ÿ +R•”N�Om¹]a!W´ˆi¾ôQ.¬%ÓÇýµnÚ�?D\ªí¼Ö¿ü°D䣉&÷TÉrG»‚üéßs_z²ÁýJÚõûá¯oÙ‚\‚p«"I¥J1<´P‡ý~ÑüvâÈK6‡à»Ú÷¨¿=—‘cG9ÉÖàLx¯ú—Pyk–š Ë•#¦<%¿ÚO-%Wú[}D!ò¬x ÓX™Ä&‘FŠìKºévÂïØOOÔiÇgÄ[…ÁÝ£ +£cöÃqÖa›Nx½î4t hJe凈ï›nÒÖïQh®È‡�WPÌûº ïGs¥¬×.|Ú‚lOQ�ÁÔîQˆ/ÉjÎd:Ñx\Q…©‘"ÑÆ@W‘+‡¶_SçÈð¤˜ü_šX¾7ˆ£÷N(Žì%�sÂIŸßZ$t#ܦ\ °°–+Ôû8pMÇV2úýpÿÝ™jSå0ÕF•gGÁ¶§34w»·¹-¬M€ôAª ~øBE÷²<öམɬý‘KOß„esäûqŽÏ©2ª�æéºQ"é Ðü3‚Ý•Ñè…ÃÙÿÒÖ`Uj¡Ãà½ô=‹Î—¶¸ ú:Ð!¹¢¿qWB3·\ïÖ&œ,!ˆè%û„è>>RFôâ'îU܉s[Ácþ1"ðÅ*ðI›/ÐØÿ‚¯®‚-¦l� MBÈØhŽÃ|:P¡ýÿ襥ÏÓK$ŽÃQ™!M[r"ä5L^N:D\r©a+ž"j¼ËÎßêô:< ›nÚ•4.Û4'àÑíºØ×¢Jú¼î_’Ç\äƒ&Äu¿˜šöÿÚ(W¶]^ ]‰Â¼#ÊZyl•ߤ.¥éLD%™R«ú©\ëÊõúu&©X;jˆ[%*<ÄÉäÙã€Ã#¢ùXéw~ûIŸ¤|–µ¿msxé“*R£µFV8€'ÿ€oϲ†fŒýÅT¤™m8¼Ñ–Äo6Íæ.ÑÝ à˜‚»Œä="Š6B!Àž÷~±n‰¥ŽRز‡ëCÄàÏdoiïV‹ ¸Eß–3‹ìÊ?’~íU�´À™¯9Ú @ü»ð2øá ËèDˆ! ×@áJŽ#Téö¾Õ8›A _ˆ† +Qt7ýsHü¹×89Ìöõ1>†„ïÚ}Àáü5d—{g&£€1M¹>ÛLHP ^•öÙªõŠ¢ùvÄ2ézÌ™ÞtJ.I¼ Àû_ÁNi>CГ¹Q?ƒÝ"…8UJ{ÿ=ÂZûÝšoYÎP¢lCa›¼á"k»‚apÊ…ä䥻ŸÛHñ`³Çt;ø§5r§0d~‘ˆOQ0ÒÞÅñµgÔwñ³zîµÄ#9-c¨Ï¹eTݺŒî2„¿,ŒÙ©7ay¾Ç?¬*d$©Iùrªl¡Š×ÖÛKR¨ï:Ý…IAõÑ2™czÃ4kÉò…ìhö°¨ Ùgø$Âuˆ¡’Í-U¶{›¢ :l¬KPˆ¤ž~ˆ¢÷Å:"R—ÙdÉ™Ôe`ï¾ZÎJ•½äšú^“3Ñ&:Ð9ÆM‰vÆ€¬„õu¦Ç§«ì„ç|¦‹÷¥—àc;?d/“ò}s¾Ò®±:ÂÂü¾fû÷¥¸Wn ¼Kr/n[©ñ"~ê^10¡Ú»üv~!(ïP»êû{Þ¾ƒ@îAjïPÚªØÍÉ�敽jš™ŠBÎ`^úÌ~-Ï„_8ò +²ïûÙÄØ öœ}|l£ÀKàø3û/ܹÝÕÛvѾQ^ñw“ßÍFÏ8Žõqß©÷šãÝf0vo%¨†/€¾ŠØŠB|ýÓÒ>LÆA=†ÜKßßPë>°2±Í�ÖoXÇj~É\Þ>Nç™[Îö‰’ )Eˆ"í +Üô(\“a_(oÊ'b¯FT¶7<ÚavÐ tã™ü®ûͯ +<ô ò ÃÇàzPdè<P9Np&wUk‰±ø}vÙ `•¸ÕûJ„c?@Š÷i܈ìee™×yU˜*ò´+ +07 $,xš³—O7/IñVJÑ·?U¼làöÏ×h#Bo¯MQ«æXµ€û‹d·e ¼ßÈõ4k!Q׬µ×L‚ãDUœ`Y~0MÉmº¦™Ä®{’7GÒ"E'øsE¬ŸSnüë Ø›Òý5üäÃvõ2ã(E…D¤6ºØ Ä?žˆ7¨‹§¶ói?ä"6{ÁGh°¸ë›)ûâ%E |{`Ëå]ÒýݹÓ`Y|HG�•¹½½+¨Kd¯uçT÷ãžâôK€ø(c€'âYH©iíëLJ?Ô3_ì¨ Ìs‚»pi±]&iŽ+–bŸY#€)u=ƒÎúóÖ³ÛžMHFá �¤ëa ¨JÅ# ßúüá[ÈP™¼ ë6.t9ý2X:„•û;®ÌÌç¾ü®cv·| ±|pž¯ð¦”íä¡ìPM”$¨`0Ê'÷*@Ø~$ÈÕQ ŠM”¯„*0oÈ#_·Æf„ˆ†çÉŽ¨.D@œñqŒé%ÂT˜O'Ç @?¡çUz|=Ré–£Øc¤s„©JcïˆNåïy˜„r%õ|g… vD/tŽÚ ØÍÜ` qÜàFKhHô' ˮң4Ô÷Ou¢ûÃ÷äOÅw“VÒóû�.à/RVF=ˆ_]1_kJÚ¯zð©HÏQŒÓ’>C~Æ”Ÿã€ +Fß"¸D¬ë8d–\úËÛ~NHjÄm”fÊXÔB"0èÇ¡Æ#BÈ©xAÁWXkÑ(}32èx/ÌÑv—@™i·’^„8¨ŠòáW÷¥§ö|Öè„C4ŠšZ—”^á"ìøÀWÚ«íU|ì¿õI¥Ò¶‡Œí"Ï$ÿA‹‹³Œ®Mø°‡2 躾„Œ`ÓíǨ‰ÛQtí¨ufºf·“m€à¤Kˆøm€ÿ¿¾ój1€ú®¿Ž_ÉröW P&J_Ü[©‘ã×Hm‚ýÍ :JILÉñÀ D+ Ã%#Ž&•^å¥úbóà„œÈ}�iב’Lÿ½–ôßÍÕËߨx%QÇMTUèÝÀ ÙIéõ‘ý“ð½'ÖÛ˜•ª5‘–úÞE®û@÷Ò;>*`)#ÒÀ¥(ðƒ|d„ŠÎ¯©Eã™]©Z!”ª%…•ã¢n†&gž„çô8*mà2¢½«ÞÎåM.,u§«|éQï}'N Ï™'íŠ-“«Ù6€½ø«_J¤IÊÍm" J©·Sš² !kyry0õˆ¹Ía€´k¨W÷Ö¤ù¹÷<¡RDÀ©)ä™5Òh#åÁ‰pRŠõc†‰RÀë$äPóQ²—t&ŠÖD¡ðaª©>+i(••µ47o_0m(#�Þ°HQAXT_ +ÓÜ_˜`´¡Ä^™³[ö²àQöŽšÃ\ªÌíÃ<ç+1ð÷x£“ç«…@6½ÇGæÛ¼=)¨÷@:0ãìñ¯sއ®£«�?‰¢ËfÇxÎ?Õ†ñ"ehÜ\w$ÁÚ2U5g ½.Tæ´%À†ìgè kW@0±—eØcùÍõ8lQÁƒYìì<³êÇ€\äÎB¦�R*7 +À<æÎ¯®¨1@°I«½¾óؽ¢z£7m—mïÆÍ.H¢ª ƒ¯'”2…ŽXW€´NÇoÕ!°irO7h?š×Ýu(å>p¾ÉÑI;!xzGœ™}¾“:—x6çýßoSkŠÒnÉÐ_ð‚zü�!ç>¢E~Taø£—ƒ(½ \üÎÁ±h’híRƼ—š‡ 4Ùìâ ´i¼¤|¸eR÷^{”<Ü3…÷Õ”–UÓBÐÛKßdh²ˆ®ps¿àî·ý´l bžŒ¸‹„‚ì||àfÎ3uEÉ3m<HëÚ•î¹ÏþLÄÛáC™ý!.Z~XýZžý¢æèÄ égIDÁ°“öÒ§õÄ!<ÿy¹Nõ…07û´~}Úh7aê«b‰µèåaõ1ùjœïü5+*~¿½b<óØÍ»$#EtïlÆì +/4Vwn-}aMÆŠÂÏ{k?uòs,ã/}«÷BheïY¾N¢Å…©ÎD»¾ä'Ÿ¿Q]ƒæ3¢ÂNÀ(ΞÀsä-÷^‹QdU÷“¼•Ž‹6Ïx4•†L½Óå௯¨È|T¡¼ÀÔrr¾^0ó3×Â+¸¯øŠbçcÏÔ6¢hg,U$jy&üžÀkâºc‹Ø “°®/âP)š”ߢç%õ~ËXÜuTW§9ÍÀ‡âŒ^Ñ›Ûå4M˜[w�‰d÷È „B¬ô–®k°@G•\Ù :ÈŒ©us€w©€7a8ïðØÛx=nì:rDEIQŠçŽ˜±íô6؉0qåqç^§3JDÿ@¢~ŒÜW£x‡‰:‡Q“â–|®S¾þ,é… ¥ªå’Õßm':õe”È~!„<:©âöÞ…°5™¶ ¦½ª_{>Çú�"EC;Âà\@#®}±žºŠo_ÙHX6dOý8È«•F «Ø_tü1èyp˜Ýl2Ç*j²1wåù|‰{ýîG¾ürÍ@ž›LPX£…nîU@Îîs˜¦Ñâ)>q(ÇÅX]ªÁˆ½ruû0YÖ÷m˜È,aN³•wÝ‘×=ÑYR“·ž–%›3LótëbsÞ¡¾°×{™kü"é-úhÁ±—,ýûëá…–¨K-”Ó6WÃYòeîÚOû{§®Vñ~®:Ï/Ÿîk;Ñq{i8^^tw™½Ë™@¾~ûµY^5Î9W:ÏËbc2ÕF‰ÇP%‰â5iN‡©O&Ž`ŠI¥7n»Ý¦ü¢zdkqO?fO¹1�íw +ÌêVѦ¤õB¥þlw±ê<–ׂ§«=¦õȃQ®Ú©BÚà!V +ëëø¹Ï ¹Ð…Ð݃¤9™�È´\n¥<i*ѵ4— Ήå×4Sž—ÛÄKwh$`òø¡ÇG·ã±øÙ¿˜:A²õï¶þa]½Ÿª5ŸJÖ°Ž g}ÏCW“Jȵ6Ïnö* YÚÑg“ΗýÇh2="Ïáz@§däZ¬ø@xÝ/!g?ÚN4<ù}º2yê t½u€Ò–T.E¾”¡6©šx¡Ú;´ô"ÿ#SËq_M%ß™‘ßMÔ]H ±¸QÇ|\,äRŠ4bÀ©‹éâð^í9^Oæ´X½r:$!®á;%éyBžìuNd(,¯Ãñ‡9áÜVDröÚÛE]wøB-¶^_P¯Ó®'ÄþÅ\‡ Åÿ†{£Ä WT +ÒŒÜu +êfÜ+é%‚B5¢oNç(=z{ß‘rT^Š"aÏÑŽ>@rÞŽ\¨ÄX•F„€0}õM¥‚uQƒ•`×´=šõWñì’Â;ì첄Êõ9J…öR÷TÁ7(ðôŠ`y+¶g{ýª_ò�ß&ôM¯ Ù+6#æÌÄpCÛó(r†Lý8ÃFÖF_`µ£çM–Ï™¨¿_-ñ±2ò$}壂…õ,²ÂÆØ�Ž<õ«Z„±#rÏà'6ª5»4¶„W}¬eŒ¨KƒÕŸ*¢¾ñ€&ÒruØñúR` “²Œ`Úà™˜â=ð3gÈF³-¢nõ«xõ\ÆïDñ¦iÑx!ŠzGeLÊrÇ=’±0Þâç«( Lñ–ÿÏGc›û<°&M(ËP$ã´XÑÆ¸#w1É(ï€h¡G¥r™”÷áûÕã.6µó€”hI”„ðTÙ1§ø=*©iÖÑœ™QÃÉbFÍÏYëÒ7³»3«e +w›yÒéÃöa¿0TÈΛöµÂ2ä·ÈqÄ“àµ`=ëÑçg¶Í +DËÑŒyÚw—$ +}ç}óµC vTSu{·}Þ|–#bøƒ2îi`zt*~܉0é{~¨Ÿ«ÈÈ…ôbøÇLà%š}x +HíµkÞoDõÝfzðÖ¿;,o +èãè‘æµéžLí¼í;^™Iφ,ÃÍ S¯}øz1]¿Íu¢_²Úx÷f¿Q'Õ µ£c‹�¸ÞmñÚ,5?…\ÂëzÓd,W>¬|èÝŸãú³LaW’p»yÜë(¬ò `fƒ;(¦Jh›‹Ñ¾MitHË…+9{kNÚQ޹ÀtC‹2¨–‘o +Ì;4í½lÚŠh+3Æ&‹‰gö®Y#†Þf[£Ò¨“ÚÁsŠ*Ûe†÷ð>àЃîl—®nöÛˆËb(åy»*íZwZû'לþ9)î‘·¯<€l…�à•ÒÓü¼@÷îE$eÄ臟7TgYƉ“¥º2MNn]’[ìmc?Å·ZWêÅ5´óîtÙ¨†yéÝyNñ“é+=Mçq¶ð˜ÎœS³K~ÎDâƒH›€"îìzÅäЯeÃP2UdU]ïêÊP|ßÓ9íB <�b§V"G˜h;<jJr´Û±äˆ|A„ƒ/tÊ«µZMÈ;Ͻš‚WórŒbßÛQÂVqŸhXÓ@ëÔ"øSòªDÐÎ"âz~`xû˜ÑÀÖž“ µŠûAdí�¸Ü‰ Žr‡Â¼/'�DÛï׉@9~Ä1 S¢D’+ÔG}5éôNšðÐý¤NE‘g¦L:Y•BÕm;\mŒêT2ÅTº·²3öJT%Úfo Qgà…h檨Ãx"¬&M¬¹Ö|ÿ^oÞä‡(³1êo� h$eÐB¶ð;¢KktV4€˜K’¦—óÁKÇVÃz¹…2@7_€ý‰™‚ö>XT£wR¤‰=I’˜&ßåD8>èn_³Y&âãÌUi(+-Ž€éÃ+‹w28ƒæÈwL8ù²dW s|Ø]øC°ñ‚K^8'¾–%DÚ, %*Õ|à7›ú¤ï·|_ô¥Ÿ +¼ÀWx=V!ÌÁ&`Î’ñ÷2r¯ÁóðçH@5ÈÚÏBÓÔðüm\%>“Ùù3&aÎ�ol4Û<ßöç–½Ù'ŽGîè(·û'à(4SØm÷ÍꌢÊèdÅ´Àmd*ýÉèúz5²x¨øï7GÅŸUS@gÐå!�n"éÏ…¼qN$æåA1'Š{°c)A”£ôÕ@œÅ(þôDXϲë `"ügE07-§‹`´·©‡|ÖD\WÃÞîHùWÞd0ŒáU¼ç‘£ë¶2t/)¥0ŸbŸ*‡¬�3Fïo¾I”R6R ù¶hÙ4ÍAfih<]5»Ý‰1"ƒhÄì–2áùwŠaþý%òáeûš\J’ûfÍs#^aß> ´æ±çÜP]#PŸ"bžë?oô˜â –žFwl€„$È}´•Aîw:ºUKÇ>uJ@GÕô5dK!è~6å)ÛìF¾†9è~H-´ýtræ-U×qÑ +Ò×ä š_…) sj×P>é8UÓùEô°¬HãÐO;êyü|×;�àíÏ™BmÌG¦Ä÷†‘¦à€¾µbBØAv5Q¸íÌìWïz×>æâ,æðóÝýÈœàÓÀwZ#sç©|a5SP{p/R¸Vâ>tv\èUí_¢ÀÕÊu½~¨ÂÇç ëJê””Æ4‹É‡õàóHƒÓcá£$W«®“[űulý*Sáûý•îpä5Œžy÷*ü4-að;:_[{:š,WÕPT!ÂÒl hx"$úµ]ìmÛ5vÔó#ÓóT:ƈîäö‹Â*üÓQÕ��³Þ¾Ë<0Ic˜!…~ +8ùÒdÅ©FŒÈu6`£À Q …™u΄ôPõÏ™JT|é¥D$UÊ8&¬w*gø*ºñ&©’æÆâ¥,ꂳÎém€×—üÆ<:½ˆ:÷ñÌHÌëÜôèxiºË{;‡‚ry+oÿ ñä©�öpÙŸ½PìIè�ïc¡ìéºÈKÚ§X!ê%.sÓ°È/À ðØšÞ‹ê½È '—æÉž®a„¶| á~ŒJÕã.Š"´É²Daõ¬éª¼ÇI¸ÁBÈ‚gõ4ðàwýʤðW³#ô0â:´¹»Ã‰VPzÇkG¤Ç¼ýA"{½E¨`ZP—ò‡¿¶ôuº‘"Ñ“PswµzÈ0°èŠ!Ò÷àeÙUc_y¹O¿…*ñþÂséX8UiªF¥æ0ጤnt-P(‰ÆÌÈ–ND}äÊ™AˆWs|)|Œ2„¾e[êâYj¿…<õQü®D(@J4زk�¹#.`¨D˜m4×ÓWTÎø2ômŽ‘_S1…3íW©ª#Œ^±5õ.†óHé¢4®Ñ oÝ oáw˜Ëä.l}lÖè Òjùˆ„ã×p_8Õ<ƒ¦‚A¯"âwX,î>÷JuܪÆ-A€Ã.ƒ¦Í쎹×ZV½sì7Ðú´A4¬FçÉ£%$sf7Þ¿))|ˆd õôÍ/u«„ûh¡=W<ç÷ÊD®I˜îÆô0–”ÌéÕ¥aïLeùÛŸÓèq ˆ>O°BµÔ¦66ÝÞ)$¡ E¥ì +¨{ߢfip¥G!¯#È8L¡Ð€ÔŽÞëRQ¶Qqö¢(¤QöÀÕ¯*gÄ%€µçè_0ŽFÿ¢F ]nä˜6^ µØ°l¿#(¯\°hωp=#J?5#ØÎ‰¸rûß \âÛœHéÆP߀½ýN€·óŒ €‰9x¶d¨<(PGÄC•åEÉ’Ôã>©ø¾<äÛ£^8”-í䦿¶ ¼þ|Ñé/o;åš´AyÏX·ÂȈYâLæ¶P‚Ëw„£Dðakï²Ú§«ç×™üNûLñþ|ÒHÜ©ÓÎB@ü‚ŒBk�Æ5ƒ>H, vU^¾Çlůh¿3(ÿþ§ó¼…ë1B’S®Sehõø`RÜ)x#Ô¥zgE>j*]îâ¡þÒiõØbCßçÁ~9]oÔQÆ!ù2— +G.²àn;ð{D‹R’E|ƒ™"¾Ã°žÈ-´ÞeFq_u±q�8\ô˜TˆÇ× ]j¬x€Å“IÕÚyÞ>ÆV4„e+€ÛG}e%ÐVû~ŸŸç ï.OêZÞÑqTõqø>z_˜Tª;ÉgIsÂsôfø*åÇRãÕ"$Zù–’ðÆë_Hטňsâý•¹ËD@þ%âz]è.¥?|߉ŠD¿ÓÂ,è:—Ç;¢†n¯ŒhˆK³#(/ˆ óòµX†áPMòmš¸ÀÊ”»'N_3²}ï,€@¥‰C)›]$ÿ Ë6·ðeíß©°ÃkµÜ_‰1dÄAæ†e@Z€n0fR½v˜^[W:…Äï•?íÇOb'é ¡ÖK”ï“rÙb¼ÈûxMq|³l‹íL˜Ò0¢’ƒQô§³-‚>SPò%ƒëoÿ›°áÔf¿«ViA_/1û®†‘—-ìÌa˜ÄT*¸W@é0¬Yíö«xìðgû?ݬ"ë‘ÃiЖwc61𚻳i"nªN ?ä<`Š7ÊݨG—Lk¾-ƒ{h–¹ß:%–©O|óÆ\p3tVY$m¦—ØqÖ3åÅoF(WÒP‹,T-ï/EúsÃ;iºØ‚^U®Ä *üڔɻ&¾ŽÈ£L\%—NÏ)ú@•’ü¤ê$ ~…u?G‹šh$¼{8e“*ÜÑ^I/¶3'£“Çf  +X(¶7ûŠÑG2O&sáNÀr´-Á캃ñºÈß×L ©}à^8Y öüïNñ+‡1àvgágèçWåÿˆS™Š'Ø“ÁHH*½'«ÄÆSEÒàZ½_þ5b´LF+”¾@,Æ0Õèròж>œë·"C¤’$Õ÷írª+Uw¢…Á=ö…^¯xˆ¼^€ë扜ÈR¯«sw$áQ-©©,"e?Ümb]±PãF!+V 9³ÌWM¤ô<4qv^GüKϘtaÕR2ƒ'è~M<¡û¿ÆþÀæ>ÿ[üߟç¥ÖG%hàªviÄfì=á‚Íð'*+é½—@Ø0ߣ$ºRƒš â¿û~`>€NsõßS3Ø=EßЇg˜;“{ª\²‘LÕÓA‰ §ÃÔoä+¤PÍÆc× CV +^¦UáàÃé…¹ÕÛ.d|9¤ Ôu4}kd盬M#ÐüœˆŽÑß;úÃ#Ëk Ñ#ø›áq‰¥í{"øQÍr”޵ºÀªØ+½FMfêA¿Î´÷ ƒµÙ&i\Ï1b»CÿîÓåXJ¶nnÅï ’ÝÚ{koʾeöBþN}Q4©N$ϳÝGz˜dÑÂroGò{ù/½âÔ¤ÐÒ^ «ûÅw³+¤&Ô/Pª°?¥Ü~Š�däDÃ1ô®Px~±‹ÑÛ ©PP÷ùÔÕE®<ÝÒ®º|{‹•À<–"H½=B9IJ“ÛÑÜ ŠêˆêBöø®öÆ1[ˆËÊ̺@„:+;":ÌNÚ¹°´Ý_'ˆ:D†™ä›ì§])"�›¡)ÂñÙBÛŒBÇKÉöz¡-ž>üçwfè&Âñ‚\á:å6™üÝξ´·w,žØÑ–¿ïÝõÜŸž`¿»xI&F¦?ÇF)…J½|0$$G Dø ~ˆ(ÜD¼ìðÚ~Ïô=ŠÖ »|§P ?[qý´cÒH]Ãl@‰õmžûë;Á§Àdêšâý+¤ÛZÀQck7ìÝËN*Špÿ_ ¨^÷'>D±àÝlÇ{*~§š?B?ö‹Á„s®x®Á/8°ž€ÙPë(ý€–|ï_ßÀn ª2ó\Æ@oGpßǹ3dßý9¦£Ê‘‚8PŒJ§‡=Á Þß ï{År2h2°EþÕiP¡ñ)ýùÁ5�…Æõ+ŒòU"ýòÞÇ¡J"¥j�Í¢W[WŸ!W¼œˆv"ifÈÜ»°l§é8?£nìÃw†¼öuÑ'øê ®Ûá?Düôt~FU ‚îì¬Ù|a;³ ¶—ÌÂ<»ð +MûXM›ù¬yºQ>’%³tM]˜š_øÉ Pm~áÁ{”Q3½Óu'nTðýà†ó¨CÀòì>@A䦄iü¾¯ +–ü›À´K ïÛ°ü 𧸠Bzeq"@‘¼ŽOZ‘hˈçU×X"ÈYLúi?è{wÆæa“wð/=ûmÓ´�åö<:»jâ²ÂHïðeúïgçþñ8œÚT"^™¾N|ךËreXU ªˆV³%ÉJ}%[ˆR0†ÁÉJJÃü(Z%G€0±'ÉP”ì‹®¿ýqÚõ¯&› j;ÿU´}A6æ‡N :;‚5D¼F«I¦š-л`…HE‘²d¿n4\ôXù`óm_“ˆãèbµà¢xtÅ09©4ì‚—ûÄ^Ýã¡¢}Œ`nýUVYJE—pŸVÒ¸˜É˜´óœ+“YŽ–3ÄÈ™tý Z/øu”ƒ¼Ù?Û3ãm3®ü¹zQšÖ•4®1¡-w/) +IGg‰ÃIóŠJ²u<TŽ˜¹RнÆx}áÌ΀Ñ�0jÔ¥ØX™O“Y¸ÕƒÌÑ3™ã‹¼¿K--èÌ®ÛÈÄQ)}MAž«x&Šéø¿ÂK.‰€�E!£¡Ÿòoÿ-«/ކöÒŸ!fUM»â8‡]v7˜2ÍD5ît""”°ßE^’?|1s‚•Ézu‚³‚ß²¡bÿùspÇÅLb€|ßç786¥±6k©5û¥E~©x¿—AÞ5Ä•Ø;'ôÞ?~3þôW|e§È¯ n"‹-ɾúT\¸¶<’C…UHDÊKPŸ"–ºvåFˆ]í¥8R©#VÐV¥upiL#ÄþûÃ4Md[‹%a8Êêô8Q9F™¡öõTÊXÄéƒÂÚ99³C#.º ¢¯in@aóE&½žá ëÀ@vf·PÑþe䑿/ £ûüRû½’øÊb3ûˆHEôdT +3 §(*œ®�-… +r ú–Ñ者žÃ”ð!î—Ñ™â$þbpo!¦Þ÷]bæÂpM{"ÜÔÙ¥ÇÌ™¢ýƒÆÐŠv‘*§îão¯» +pd€¡p~´c©F)uSÆ]!ßSL»Y"¸'˜®á ëÕ6¤tÐøòתY†‘ ׯŠÑóì<èÑ=ëRÂ(ÜæL^Ùeˆæn¯$\ 4uÚˆŽ!Xåk6uGÐE�î„níGw:—ªýHæì¯ÚÀêîøàü³�xÛ¥—Þi$¼’_Å«.D>"3·×VT¦0øÏ+nœ-9“–æ�ä[ÄŸÏ�$ª6°ÛÚQÊ»¾¬Iýï&ÊÊßWÿʾ>ÄË Â‚qn"£§ŽH}b1TlZéÓtFô*-¤nç) ”ßô(2ïÌY•‘DÚ––@Ò¢Ë:lÚn„~J_‘§Ê½ëR¾#«¨�›LûÕmßQ|ZøH¸_×ExÝ+¢§@ùø²½u†ÛÏa”ÈÁ@àyŸ˜už»½ã3|ó–(/™,3¬3ìˆ÷åž«v‘¢öŇ’ºw[¼}Î;ð= +îœ8šFçæÛØÔ!Š.Î�i*Ošî(àÀÓC5ÒÁà·€,T¯q6jçzÃ|?ŒÙ—Š•Êæ:tÈõñ€>:¿`p¿Dÿ>£ð¢eÄòÄÂTx‚�pË“×ÍY))/š@CUm \¯ZB}% +÷šöå(ü„sæÖ£²p{ýÃ18 ýaË ê‡çѤí®Ë‰W\²=éf}3 '<*±ÂŽ8¯ LtV{µËˆÛ©Î}Ô þXÒ}Z{$4^B=›*H•—«:Ëžûæµ+9N«»˜T]íö» +#)¦â´1˜pVU†½hGY€1fEÏë¥íÅ„m™='J²6 ÉåQ„cáÙTýñg(–µ†¦BDôèK¶ÏS]ï_N†b ¤dG¼‰¢9ÅÐö‰I=´…9kÀ5ϤÌdz&B³ñäRdV$^ax aÈߨ‹ ƒ<Ç}¡–ÈŒÀÙ}`ÖJBó3iø£ìè¯YAVºu‘Õ*T×+·í€ÃêÇ÷q¹˜ +Jü·¶t'¼0\:ÉTE;šîJµG 8é3Â)uÙÕùä¹ô ê!d”[<oNMŽ”²)ý“a!¢©öH@·;ŽyÓõ—ÈóÕzû:yQ÷rkž6 <>¹Î…>â¹ëKÉÿNŠtÁðk”–àú0bŒþ;"›4%@H1|à©Ô˜lç¼/êî¦F9 ¦uû¬ +ö -3¦¿D‹êT¸î×jÂÜ˜Ñ Uäd¿˜Ñ‚Ó›¡ü¹]š¬“=\'{€½ö8Z `\šmD¼w¡u]_•~Ôµ™ÞžÄ<…6+¢Ìfe??’0ž A”•7‚4šx™D8àÖ´«ý:,¤K]€ÙÁÕûsxÖãPÈ-I�àð=ˆvPÝ2?Sþ¶®ñR+PªÈÝš¼/šô«^õ&Å’Îz¯ãŽtÁó$~ûå¬d1£Ò;géb° ZåpŽh(¢|Å&ÝÍ,'nŒò$æ2÷`ŒDèü»kI-Á-A`wöyþ†&ùÿƒ‡;+½}1¡U&’26G=h?ú¯ßN=~;ÏüeÛHÿ‚Š-.:0"lãÄ”s•{Õ¶FjVeË…xh2ÓŒûáõØ~ ‚) +ú%3˜ÄIG„2×óDÜÇí],òoä—MªwÊzÆ`îÄJG”Êö³0×-ÑÝáH)r¿öN®Œxû2jç�ø.ú„¨¾%R”%9n}»jfõÑà#ðS–þCD3ÕË<ù«Åð—QZ†ÌX†H®ÇqãMµúʺQ‘å�±Lšn†qï³ –eýó8Eóº»{á¸ãÊz‘gá¡' ½Ÿ= jƒ”©}/^wµrPxôXxkȆ`¼Ñ½§3@Y3ô,žä²¢«©|¾DÑU%Õà{QÐâƒx.p¥q%¹Ž}"¢ˆíˆðáùïM‘r#@1ƒšˆ<³t¯Ÿ#éS‰â×x^œެkZà:ÂÈÑßÉg È„Ž¾¿´[óºŽóºÎû3"?DOþ~3× "AR‰•ȽÌNy…Ìú! ¥+&æ•ûB_ )åÁ@H!ª¥ÉìÌp•’† Qp5uLE' ?Íù‘ûE2Î&ˆŒÁuÿtœ+¾“ZðÜà{¢ûüõsb®=ÍùÂ$ò!jSöØ^Pmô²´[_§G§"–3¤Ñ€²`ñýñ¾p•ïøâüá8hÉ”Sã*&“];µ}ø, JÌiV-¿ú¡O˜™(MeˆÔØ~4†=½ûÕ££gµT#WïnD®v¿>m·¼ˆÜ©¤Ÿ¨ã¼zŸ™û:B|(`›;A½}æ‹a¸Ejû¦öé%*‚*º%DtMéÝ+±…óA…\¼k¦ðÚ¿è[«mûùShÀ[ý:Fu šðÄòp.Ä;¢ûU©è¾Y¿@lòU"ñÄ™ˆPgn–ºW¨±dVò¬³¡¨ïÏSFšsNÅ;Á"Ñ2/¦¯S4Ä©>ùƒa²(#ê‰Xõ+ý×÷’ÙG” &Œ•ͺ(îL’µZ’}F”@N¡a¿¨ûϨŽç¬ò5ôQ~øf{(!‘Ú=à]ŽÈ.7EX©à\Ü_*õͶö& Ù}¼àjäSˆ8z8âæŒðçÞ+P#`%\²•Fôõ+R‚Z›´¯3EWÓr¶~§y^Xüqê››Nº‘/zQ”½Ï¯ÃÝ�uWóÒ*Ùéuy3 ¨…øÎcÐq¦ÝÁc¾+Çc¿õÞhì1£O‚€ÆG„}:¿;Üoó¥ÂèˆÂ(æ LÛ¥ùi½Óð¡Qí\£L~¾m5aVZ'J¹^÷[€™ }Æ={‹îŽŒ™ÏÕÄxæÌ™”ÜôXÒ¼þtÖhÕPö†9…Ù—"ä!÷BÔ£×'àaH\ÕO¿••oX¤}âuNõ¹>#þüÎí´0É—Žs—¾Ë̤¥Œe¸D‹ÒgÄÛæ÷(öŸ¦Kñ�üD¿áŸ¬æèOv*•àAõ›+ñ›`CN_åú³1ýéL7ÎÌAmXr°€(®¦s=,P«üü_ âb.Ýëò´èã¹:€#Øð(œ~,ïÉC$„BÒŒ½‹íã–ÑÇÿr:Li‰á¢nûï[Ôй¹*äVæÑ ¦â©škÝ +k³³-m¨Táï¿…w<{ym”fò-¢TÙ0ŠO“±|Žc_ _ày"æ‰(óDÌD ¬2;:iÏÛŸ#‡Kêö‚KÄžØ,doÐ$%¡Ën@œ®Gj –¢+ÿ˜äB†€Ò۬ڿΣñœT9°+(שÙòãCm eË©8kœµ‘+UÂ²â×^s^ Ÿtih=m^×CK¿ç˜ÍŒé´·÷Sã¹pf{(MÀÁ'-Ö²Üüj뇲ÿ ++c¢&¢@5EÀب×CùÙuÙÞ}Æ9Σ2è>\5Âeã.ÊàÇØU¿N Òþ°ßW|…ô€®#ö0?F¨pFÁTÖ+Eˆ%Ž>²F endstream endobj 24 0 obj <</Length 65536>>stream +ÙÏÞŽ/ +R¸yÜb¨U5:À4óûÝPß!ÍÞðüGRÁcmO[ÚÇ6UC”:¼eáð §êðFÁýÏfXÞgÖHo!aóÎkŒš‰4Nz?ã 2}€"è"ƒg ßÒ8éá†âoRK;ž©3°ôÏvp}jxåjN5(QÚ‘Xx|zÈK4Å"í"éE%Í}‚åÞÄ{Û` Õ:ft_îõ +Ä=+#CÞî‹;OªÆd"¾arxÀ‹{W"lÃX‰(×È_Šq¬hùœÃÏH™ìS4ñ-^ú6tÉ´ž‡¼$Œ†IGsÁRaŽÁ#FÄÕr‰‘°© ®^'´l“i⇴€.E•¸Í³Fc§©ODÓ�;’ö<Š`ÿ—ÚŒw²½?¹í�°¹íåe`¥¬ÊŽêíš'j$ +Z] +=q3t¥WPî›r²g0;DÌr®ŒÈŽPzè=“æÒ²Uh='(*H V?W®jG`õd„½« žäND³*S•¯ŸG*̾µüq}cƒ"_{œÔ¢›<4Žãò†å޶D„‹@«ÆüQrkpÎÞíÇqà»ÚdBq~fu¡=²ß3¿™èµ÷ßÓ°ŸQ5mQ{ÿúÔˆtYÇXÇ¡xƒ`Bà ÏÝe½`žÊ}ÝÚ¿G¡˜IÇ ûiÒoF1gA¿’’°Ž²FøÜHu_@um@ÙJĈ/ßy–(Ÿ”©õçaxdïêy¥|’9RÓ +³ü°ÒŒjx +Ý¿{~´¿µÒb»Ð¢þÃ@ô_à&±“ +b'8ÂþÂHy1ú¡[wýG± + ˆ3RCÜÛ1ßñÔþ+Âz€„®Ð!˯ýMe@\”øÂ‹s؇‡ì_áºäE�ÔD<OäȰyÈ;›ú4ðr×øº^·Ðï ìøºa;ãÅ€ÀbÐÏF‹3Áµ÷8þ¬#B +0¢bè_Dä ;Äð?ÇÈQ«Lúì¼0¢è{Â4žÈ@}DøÓŽü´ãm~DAˆw%ÁÄÏ7i² Êž¼ƒ…[.lÉ_ŠG‘=?)•¨°—}FÈ{QRéŒlÊæti…Ê·BÝÛÜRu¡êÁa-©N6¼…Ûµ«ÉEʶáï^a{~6»?"ÆŠƒë—œ(vM7i@¦ú²öK“ÄÈEè·^Oë˜Ê¢À>iŠ™‰âÇ4öè¬íïóöS×±ÊéîÕྡྷ’FìȤë뼟îçø³(¬ËSÛ„Ë‘$Ðõ·þ:AvS0îÑ-m¤Ð*FËaäs ± +L§0{••+@‡ˆÑÝ[®Ì³³®w½€{G¥ÃÓ(Ék(ÚÐ%sßAšØ½D•9ΗÇsü›œ%0 CŠ)¹Ër(Sð‹5¹ËÐb†ä¨Ëì]ä3"{J‹õªKQ +úÐ_DЧ +¡\ê-~@Ï’¼d?Ú嚯(·¨n†ÿ—†;µ@ý´ðå^·yÞ=”ÓááùøZ%0CÊ©ËÇaövhÛaªk$ºhÂqÚÈLã,·»ç¾ïÌZÌÏý¦IèFÝFCJ 9ú¬ú‘¤ mjüGƒü©>óD€)rR¾Ö£’9Ì<ñb»!*½•ã„d¸ólæíFÈÊs›Kð‘Ýo¸æD0ø¶ý_ÿ±ûœi&9ƒ57â-›÷±""_Âîç<¬~u”Nž·Ëh”ǘ¸>>ëŠ|wf¸3RGOÜÌ-öïÖ¯u€ ÂBÐ^\÷gDj‡£çøñç2…«.Q ÷£ÿÙ‚öR@KÞ{êt:üÒ®bn(Æ?‘ÎÃN +™a0,- ˜ý¸sZëg?Y´EÙÁ¨P 7½'EÔ«õ>g:Ž(»Œ¥Ñ•ÐØ@LþBR̪î^iY!±ÿ;Å´çØYá³LÄû°‚êK5Æ>ÊÇéG#Ilн˜w ²Õúâ3¢¼„ÕQãë|ùuErÂùnu8áêA†IÂnˆë#Žn~§'÷ªê̵_“k¼•ôY_xÖPPÇ�SFþü^wîc·¨‘Š€Æö³£§v©`…4†Jí/£¶ØÐ¡_WŽ¡²ˆìýÆ’ãÀµÑ²à)í8Öþ…Ø‚¤µKÅ~éßÃÃvcú¬:Žl¿ÜÈnÌ`:gУ¡vi±à£~ëÎýS¦®·R·H‹=ú-jŸXUÜ^H8-MÑÊ}Ìx«¯ :OÄJö÷ˆœ©&ÙCœÁdôó8×á*aÁ¨;Åî_죔C%w²¬}_Ή÷•¼(A¶©¶÷„ù\éh…æÊßžëyô™xWǺ”ÕÀªWú:ãŽéƒC&Ëøú�)…]9õßõ‹øp¡a±ÿ +Vä‡ò¸¼ïûÙåYT-nÄ"Žq6…ÅRî_%«cD&µTŽ·”ˆÖäÐU°žˆçDÀŸÿ¾‘¦eü=ª”ø4t&Ô…\ñã[Z‘¶°HmºŸ´`[~J—#ó• +=ªW‹Æ&Õ[-Ž1`kz0•H%MÏá9tú‘ç‡P<¿rIÊó+|›òEk˜Õôá…Âê ঞâŠM‹h•ÞÐm¿´û}‹ž¤ëV·œ\h_%ó.\{}«ÌG€tØ~xE~Ýp#@]}ß^mè^+¦ø=âÅ%¥½ðíCT}/ñ7ˬw¾ÇÝ@r)Vý=¡AgÕ0 œà#Š}|ì7¸”Gé3X [vÆ,HÇEú>h“åAq9žZ1»+ª6‹ ™üx:8hk@âV„8§Ø“ý0c,мÊ(€FIO Z܈¦ûkb÷dÐÿYôÿ•»0¶¿'Æûþýþ÷oÿæ¿ýíÿøßÿË'+¿ýwÿÃ?ýÓÿõÛ¿ùïÿíÿúïþùŸÿá?ÿÇ¿ÿ·ÿ÷ßÿÏÿî?üÇ¿ÿÓ?ý§ÿ÷ïÿéÿüûÿñßÿ‡þŸþó?ý?ÿ)'ýù/þ·øOÿðïþùþýßïSüÅÅ=_Wðdÿÿ…ÿËë‡�9;샨å72ƒ·ËĆC´.„¥è›òí¡]ÔÄ�4ÿj?= >q#Ûû6ú@ßÿ¥êêŒ÷£úþ£Ä�L}¥ë›�,ÄEZð´ÅfìO”Ç&áùŒRÊÑí€Þ- yÈ):@a=PÐÐr”cŒ“޲®ˆ´kÚ/,eQ1©‚7 ½PâÕÅ ^š=`Æ@pÍçÉÐâYÜg”�ÌKð´w…ŒZÚÃ^æñûíiˆ�Šgþ«DÈ¿Ê1Øëð¨™,/b8bFm±ø™òÚ°ímß±%tz"n—hØøëtlö`Ýw"z÷ô¶r¦Ñm\ 0}md«Ô:ëªý¹Ž"ú°åéò]þбF¤VT†îBgL§!0%GôC*Iˆe€¢ù±6` »Ç‹çî$³-ÀkÅ•*Á#2\UÍæß·©Ž�¸•"!%šÕ<’úêÂÙk™îéð3Í<»-ì¹DóÎM.{›¿N…FjÆDMÍ*•A`ž»7Î~ŽsW¿]éßLÕs˜x9u”‡Ë9Fuý¹ƒ�3ŠE¹+®œ¨ØV*EšÃH)ßù&Sn7$Ü´û\I·µhWȈ³$›¾â‚P‚@A`¢ˆH!³MŠ^nÕî;x>,–ÔHÑjað,ÎûýwŽZìîKÅÄf¹|ý ¾]ºÊ€¹è!¿5ýÈ·ú!óm¯ísü¨ž†:ÓE4Ž!¹¡÷‰°~ƒXa@ÿÝüj Åÿš�OD5è™!¸&n‡y’`ìÛ0Ñ +‹ù¢¦z˜¿8²Tœ“cฮNçôÿ_/X£h‹Ñ×~1¿Šl«€Ñr˜f'‚Á}”»\´ÿñRš +àÏ`B$âÒù¡þø:‘X¹¡2,:Ãþ,•¿n¯´™i!ÒíqBUOG…•ï}¯C9GÀÕµ²aèëÎØ†‰a…kñ”K'…øõÊ' cæ´ôÊaχ¤”ÈÔZ‚¶O*ÊŠü¬µ&ãÓ ›E3ûÆÖ¤îüàÑ爳„~ØÎ}?Š™ü^¸ýíY9Ç3Ø0¡÷CÄOÏíGͱh.¹-ìõ4©>±!6Î÷á ¤‡™ñ4Ç;] Æ?ù^´ õi~c6êâ.Uc?D,Êc¾xYªÑ¹—¸Xñ_¼ á¤ìbgtW¨Î½êîÔzÿœ#Í¢OÄ< w÷ûò³àèwñ¾ô¡(AÁ–Ãä¼½¸V=žGŒQN&EÚOCQ[æ±3ù©Y"Hê‰�?UVˆŽÂžãH³#pô:g¢"ytçæôß«ê‹:SÁ]ƒj¡Ñ€4èÙòDmˆ"p•òùËg‰ÓµØÞû§?§M.Ò«Ä‹– î~<Ó’±4Yb&,—I\“¹\v™R9žÄgÜF ‹±ø2Åb‰Jòi†ä šâ'aon±�¶Lœ¨ÄvqžƒMUæ�f>aÆð|óÈ2è¥Ü‡õu¬Z!ÐÏÐÀd.„Îoߪ»ž……Ü¡Õ7ךX›\~œO׳ÎZ“¥¬„"÷ìÌí] ]TÑoéF 0Ú–Â9Ï·ïFý¯ö; +ÔYœ'jNà�5@0JÉ”[æŽyïì·¨AeÚ=}½ëY1I ‘¡¸íÕ†¯"Ìd`†Ê[ëO�`S4Ú-›ÝÍž7)CoïÅ-×lè‰ÇW"Ì•TG<Ì›Æ0*ÜJK¯šR2¨éRøƒ(jõU‘!^8ÿæ„sgExªËpìã¹ç¯ºKãóøÕvĜî1�ó ØÝP„’«QtWõK¿ÎC3š ¦4®[gßRT¢Ï¥SÏNŠæÀ± "p¶H+ñ¸žr¢@Û;ÌŸóSÌpµ +Šû>ÐýàÓ¯!FL›÷;"uù Çã_…?WGÎ�ûP7|/ó%Nó¡ñô' +™™÷ìÁA3™æsÐd49Î^¦GêŽ1Ž´… àé1�Mæ}ò¢ÐR% +Ú‰QЍ€O17ÐîŒ6,Å>OÙõ…y‹‰Í�FXrm$9Ó:#NVT©22·^ò{ aW%†yåþ~D›†âêÚW|>hw¸›�p˜ë3 •Dañ—úÃa ‹ µÄéf>¥¢ ÞWX™X¥(îï{»ÂA£„}=¿ˆ" %ŠŸ ›¡ž£ÑÛ£øFwøg3n¢¤@%sH˜Ÿ0_L�ˆÆÁ=…zÚ£’T퉂Û?Žfl™"f¤`Ò<ƒRÝêb¢8¥| 1òäDôÓ +N¢WÑÛ¼YÔ~EÙñv´Ì�Àê + -0¶I_ÏÀf–¶BÜÒ[ŽÖ¢/Nö’Iäà¶Ä|W7+| èqÿeø9õ´»Ž¥dŸØý8_IuÎôUxžãb+³ y©f‚ÆS\ø þâ©Ôݤ˜w§Ï÷="ß)ž¬OdÃ~ˆâ– ÕÇSVº“¥’l¯UÝAÒG·÷Çøüp(’è~tC¡àÈŽÁi£)£z�ä&l.δ°7Ó¨•nÅ|O—¢:¤O¢tfÀýŠD€–Ãtåôe‘=ØôD#>·´ûO<˜÷ý|È^b‡žÃÄ÷ƒˆ°¢ +ÐÚàƒgåøÈÓ<ôõIP'á²_íˆÚ*ÞäÓ ½GHRU!eÿi#,¥</%ææíˆÙÎ ‚áMÞ>£žhóóÜz‘4L×Ë—[äïùRmƒh¹¿�¯Ïˆ,b-\àv§ +ú<Î}©òÁ¾Î#ÿo¯2ûBøø!ÀQ'ôƒà‡(èyûöÒP¹›øI1ök]Ùûsw»;ŠÙevÁQØqD±áßÕÏ•ÓÀQäQ[NZÈ™õÇ`?¶åXr*´Ùp¼øá9¹›8mOÔã,G æs?”|Ðg,lM”2¢í“‰z=%@ôýÒÒ`ÚǾ2œÌHyó§µ¼BÔ�M6 ÖÍÈ+#Oæ–]HmgÊ¥¸ïPü6ÕÎcjhó +ÀÅé¦ìWSÿ&¯G—u6߸*2uvæKz h gUÅ ªÖœæ6!ìXBÞ‰pÑ«Ç#ôeÉÙ³žWU— {½Õ¯KºA×ãz…µÛò07X@#ØYXpîøkèÙ\s)ľK|fã±J_oW‚cä-TÎÙžWj-FtlñvXØ'fæl´†žßþ8iz+Ï€…a<w}¯²]¾ÃI¯@[ÿPØ©í)XÇï±²ñÃF'·Þ?X×ì›3Ê•ˆépª·Žó¬ì% uÁ®ý=_úÌu|LáíݹpN2™]×1½Ä8uø‡_LÝ¡Ï<)XˆXúœô””×´•(’0³{IºgÉÍÛY/¾pæZâNs/¾Ç, pÏ™‹z2_Œ;_"7¯ç£$—0¨|”oÃÓiå`˜ÛÑA×÷ihT +à¢n÷xÞÚÙÞ/.m¾gº#a‹‘þ¤u"Õö WDðáú#ëý™?8ob«R’½«@ëÔ}îa´wnUdu*µŸžbT=öþ[F^ù÷'{.)´ÿLmÎ$Œ+Ä[x2ÃñëàÎå4œ§d"Æ…Íõ]?\¯ÒLòm¾†5ùKdE¯ùõE M-yÁ,°Ïó &o+`ì!‘•ØéêÈÓSüÿDºÎ¯â/?Dï ³„–'kÆ&±ÿ#Ãj×b´Ñ #Ù¿(Ü®õáyú’™ø°Ž+´ûq`ûñgPn0Tõ¾m)£�ò03þÀ&Z÷¢£Ê8ƒ¹µH¹m´Ih9ôyJÉÉh<hDè7&ÿÔ¬°—vÎymêÛò="ÃXZ ž5ÀÎ?gÞÇõûžG7œGR˜‹©ÿøŽ:®¿R˜IÃXL)Ÿ8)k?½ü ¿D–R–³ôã`\öR©Ê·€ÔàÎöûöV”c>þ¿Óoªx< +ÈmÊ„ýÀÌX#vhS¯ÉñG”À-ߦKœÌܸW¢zkûuÅÚž•L“ëâpm|F¼ÏÚmÛÅîLûá8#ÎpõîröWÇ}`¼>F€“º?A?ûÃ{qäS b’-º¢òQû«ç0¼ÜÎÄff[ñín(š6#k²ÿTè+;I"Ô>Ïäx´¸Á”DÉ.iˆPƒü8‹ÂòaDÔw*Qs&ÓTÚ4%_)IT‹TNTävì êærRrašL£dèôG¹‹þELÏŸ[aܽRç©ÓLšWÝ)Ø·€üF}?>ŽÒuŠà§^z÷"Ö¤t#§?E\±díÒ±Ïy¾}C!ÚD¼"æœÄ„yœß²#9PK|ú÷Ïs¯†@3†N”¬ŸÇx2¹¸å/ÌÐ-·ìþcÄÌœdØüúM¾G¡µ+Þr?YÏ«}l¶•¦š0U³ž¦ÖUøõ¥zJŸï;Z®ŸþœmA¥º"ÎÿLUeaéö¶A¿G]Çi íób—¯§n øBÒpEþ Äåî�ÔžÕcÿCqôø-"wj©)+¥‰Âçq4£î²†©7ON6NNÆWÕÌü²êz“ˆ*SIt&~~ä«`ŒÞ…aìc‹WÑ`b•x6Ââ\ÆvŽA³MèÖ»¹€ãA¦Ö®$ Íi¬<3çÁT”mÅ?·{7D°“{0r€ù¶opŽ]K{—#Údþ{o&wÕÒ–86㈽³“ UçªÍ9°Û’Mi¦¢Èi\~ü5Ž™É0ÅÃÚKë2œwîÏ€U"M@³¹µö•§þePÂä@ÁðNººþþO퉰¯õÀF’“4ª0H>¨,La`FÿÊMñU“™ÝÌ•%�¿bÒ±<̈绲)Ñ0~bßiò4<dÁŒÄÊ«)aTÕ½iW‚|•M¸ +·.ÇÑ€K€ÏY”\€{ÔzîEa´\vÄ—Y¹=Kuëüð4ïvð”_m-6"¿ì aá©NÆ÷ j´'ö*ÿ<Ç à‡¨'Ëüúc"RÎÑv‰ÿb$©sÁÒÊ Ã?øzt±±~÷WN²(2sÃ˲š†¢â‡ +Q?;a0`në^Æv2žò¾ôÕEzu'yôl®|Ä(…GU÷ÏU¸ÛL§å:p7aÞtå"Kù}Füù®!½ÇDÝØÏãì*Ù‰µ-úWÍ,LÞþSÄO›ßG²+°îw!¹·Ù#À3TP-—^®ªë®;õÅrÇCäÀ†uÖŽFÛÈôÑ›wÍwÖ ÜBòè8D>¡¥Å4ˆBƒÆ"˜t™m³œFÔ´qŒ‚/€y”pûÂru4·Ô~'¼ú€Bd1uZ,lrïÂwýúà_ìµ,ß<ýúõ!µ>_s–Ef©~@º" B‹ÍšDò +ͧüÍW»ˆÙ¶øPÏC?¼5‹yà[$B4L#ûÿÄNj͉艸å"•è¯A¡ùžI%ÉwÚ·V†ÂÜnYŽã/É<²ÿ›CÛÝ¿å¡øÙŸl¢àW¬m®8ä([™3yÐü) +Aa|àŠ¬ÔÛngs m®0|ÀëÄ9CúÕg.‡µ¬ô©nFð£é£f”ÄîtQÉÔùi‘òñQŒCž^Y·È)’Xî‚A…Ï}«ÿ®¿ÔùÒ1~&ŠÎ0—…¨ý¢—`pëA¦¡.A=`;M=l׫Þ*ùÎä7»ömE‚µ9×ËçW>§NâóØ�<7퓜‡¹=‡«¯Ü[�qröL@ŠÔ(¤¨&6;K錫¡v¬|8‘ˆsñ”¡rC®²kÈË„Yb:YÎr·Ù2²·åüFMiUÞ]•XIC.¸k[ Þ>œý°†ØŽ¸æˆRð‚çp8?£°¤¥‚Àa<ãéC¹ÇXÕ9Æ›%*Æ^E!±‚<êyvg¦€,ÚëÁ4™ãï3׋gjï"ÐP±EâNpŒ+"?}S¬ZÝø^0’Šßĺô¤þDU”蕌d£É¶HÆD4•½®?W¦ºö^¡N-¯™# ¹ÂÚsÍÐ``ÖC’' +i +¢âBéõ”xʱÇ{Yó¸hf°?ˆôÊ>ͩ̅°ŽÞPè£#ˆÕýM%Ác›ÎªÎ@+b^;Hâ¼T½Šº¨r›ûë©MÜc¢4ˆIcíA¯)ds»Ÿdf4›T+öè÷%1ë[-øü†í÷ÈGeLyÞÃÓ™§j¯š <4£±tçDLI9‘ͧ'ü*¯‘î–=ýZGaÄb½Éåy“ÅýõÁ¶}ïŠwÊE7ÁBŽgʘ¯ÌŸ"&h] š»h©Ll¾G'¾< »À’Ö"¾ÎCãu´Òûl€ÜÙTdÛù*ß#Ò°6æ#V€ÞÕ÷(va'øûÙO£î;þ3â>Ô ¬/½é3 +j»0ßýˆ» XÑ¢S »)„H['ƒnÈ*ð-"?û°ÛCªL÷yŸ “°Ø*‚ ×Tô¤çOÈ´8Ù¿ÒŸQxW3/hb]âOPÕbŽ™sä¼[FU†PËêåª[hÝÏ_¿ šý,à€,‰r–Ãn ä‡ÑFÔeê�R×TŽàsÕAó¯sÑ¥at—àlA2;Sš ´ÆcÐ#^ô6£ÐÛ9Ê… FCñxå<¶ + еšj±“�Q‹_ç±ÑGëvŸnÂþOEŠGO5`!NðÉúÉ£xëêgpŰáÿ""?Ì÷œïã8sH7ôV®;jâ¤/¬>>"|zòµ|¢â|–rÀ’ ¼ày.øŽ8BŽG¸8˳ÎîSψ?DsØ¯ì ŸÇxàÕ v¸lÿ‚U@ÐÛNNJLâ~v>�V¦‡èâJ}]àõ&j)àl¤÷Ÿ"TØmGa÷ø$}Fátp`´«g½u‹* +ÌpÐg}‘X2]üÓß}„è„ë1Ài£ù‡ïO>ºb›HÄ^ÿW" â¨Á-#À{…7«v=³üø×™Üy™Ôš¨‡„´º(?"F<¸ù`æ‰(Îw�…w"–«bg¾{^˜°s$3ÖQW…ƒ¢…¯•Ñ•IÀN‰y,ÊŽ©ve°ÿCD]¡xî¸Öó>£ppVÅÐi¹ôò+Ã+»”Ù§³¨±òΘ-šG÷û> ˜Jæ„2õãÏw•}WŽx€ÓÒB%KåTÄû´áÛg%X^”4˱zç×A†¦"ƒ ~ò@Éy}]f~å›7ü#àkeúbÙ;ÇçQ›9:é”jr´y˜Ýb†»ÜÎñíR—Ø:›æ¶7©Ã3x5г)ä¹Àmî}ز:ºD¨ñH¥Ð}Ê9‘©ÑCí¶Œxåïˆ2ÞÄûçèÛt,ÈÖžfÛ€§Ð±b¦êtŠ%ØãeÌz +Î:Ç`æË1úYsGr&üaqDEu׉ÖC@ò /ìçª\Ø_€:K¼ùà·€ºÎMáí8BXAjû’Ñ\ÈhrcîSC\ÇÉþ^Q•O4û‘\‰¿G¤X9’¢<,ÏÇa*#%…·»H~|+)¿�L> ^„ùBËV¸ŽžÓ[icLį¡G/xwbÃÃ|=%±¸q2EDâ4X¿õf™ÖO،Ӝ‘¨‡È4OC‹¿6£ ®W™2vàg¹ŒÓX:Qu³oŠSæŒ(LÄSZ„û;êàÿ2 ªy°iU™±ƒh}Íëõµn7ÔpѾÖóSÀyÝoÐ=_¤Ö÷(H6Sôyw‚t19T€•’W- +f;ÅÓu‰ï®�>^Ì\S寸·sƒÊwÍ=�‚I�`Š£v.YliÔF@ú °[ˆH!‹Q{¯óèp@ò þTäÃà8ŠŠ<Ø£Ÿ 10‰9D~ÀÜü`¡ ³±ÖÛ€µtÛ6CF-—YÕE=ØÒ»hXŒ`]ñNÆccíµFhÚGôÏö^ýËy®f,ÉPðK¡xÁ/¥]Eþôï9ØL*Ø`Å??ýñ~§v¯WVš^œžÌáƒNS.Ñöþr í×K2\ƒ}ë{Ôßž«À Iá¹ÐðÎ<¸ðnÚ#’0ì*U-,®Ìw +¿Ùz~Šh'íJ[•‰¯îÔ_D+2¥Hr ½JÈàÍ_Ÿ:·ìÀ€i`ˆköƒ.© +j3T_7EÖ§žn9ÓJ·½:`»�2c³zùø¾Õ¦•ý-™Ii¸ø$·ëæt¨|_!‹´}gú“¦Gjÿ1šóÏH•iײíRÇØx‰‘ìZüÓJR¯ÐöÆìÃ'ý¢ßÏK™opEoêÇjÄL°´À¬‘ÁäQㆱˆ'€8†øœRQ«D_¥¢¾ë¿;ÓlŠ´âo,²Ø¥Öe†yaÄ£®5ˆtU°"±Ihȩ߿ù7ºâõ3"ƒœ™fÇE…8Ög’ +>@ú{äÀb¹~)5ûC¸fâ ^ ‰ 95ÆçÂîìšAÌš#-#o5¸«Úuõ(‚žmï¤�ÕfvYƒo¡ hm®åjj‚8f!*'*»¢Jåćõùí€/dP‘€Oª|ºþ{Žz;–f{fŒá™ã v[²°tAOMT|¿öØ«ˆ,¬°YÔ½Ÿa£€ôú`Èd¨¨0´ØÞÙ'Å�éÛ°´ˆrÙ[ÖÕc”v¨{ÿΘ W7ÆLû].ؘ¢PÜ|-úa¡Ó´Oc¯êªX¬/ÞQUZ"Y뢶“Ÿ‡l}-ã‹xkE‚äÑ#š¥¨{¾#3Ô&Þd*Öz§b½~ Qý +÷p ŒºüÀY{á˜yúu,ŠÀHy &¨ß$îøMœI*¹ŽÍQÞ†Öbü@)ÕÛ‹{Øv?´þÔÊlŽùLái¾‘Âëºâ~ÙÜ!úqm'XŒò-îñ”Ó�@ÕпűãÈyd¤g”‚%%òGß\ü”QÏK壞ܗ3…œ€r°»ÇKƒ8ÛsñrÀŽíÕþ_Á”¡‹KABà�峚ïX¶ l¾|V›âª¡qu&±²Šzýþk®¾dü»ÔHdÄBÇȃæ×tY02(WÆ#Fi'’)WgkIoVp‘FL5ë}™P¿‡?›¶ký�Ž9Ó›E‰Ì%×B«Úéo¯1N.À“ _*„2¯¡œÀz„¾6ú½î4ôª.Êß½0Kxß=6WÞ¨{„c ™)0N·ö-½,ýÐP¤ÂÞÏñû³ +pONnî×/'¦ ʱôb¹§»ÉrÏTsPލРÖàµúÁ¥y–®bâùƒ½°7)ÃyKÕN+bq3ð¢×ªwšW~‚.ö ºÝN3Š`‰’Z–‘ #]Å¿ðÊyd¼Ïýè³U‚,¼ZpÊFЦèü´µ¸„‚TÍáoçë‚ã`Dt.ø‡'¡{÷Õr¦ Ñ]ÚµóãÓ…¬Á#À1"Ò»´Üÿ¼™ÊbÐ#¦‚Hœ +²zÓ +´ÙvÏEªp´|¥²×KLÐùMXôãõ°-™Ã½hmtûJ|*€¼³d\y1¬¬ô)ÁŽãðôÞÑ‚‘@Q±ãÉ’²êÐÂU°uöåvœ|ö«¡ 1Q`æ°óT žT'š6¹AhDqƒÄÖ=ÐÆz +“A÷ïÚÜ®êõ6‰Öë�Ë*,ðº„QMsX€ Ü{†ýp¡a5}Ô»ðÝ-g)½o]€ÏªNꫳCÐ`ØÐ»p&ªAÁ(Ñx!"·×Òñ8-´hȱˆ_Ц¹¸ãƒŒªX¯½”15¢ùÕBïˆ.&mXÙß9F¾ë~µÇK£À(×|cŠx¯ç„`{¬tE˜h>Œ°¿O:7ˆ‚Ál‡} ïÓ®Ñ+†ë:ï +³DÞü Q}¸|çÿ_: +^^â…‘HËâ¶Ÿ+Þ6:Òïþšâ£ç +<“@§¡JÞU5 û¨5ùÈ5“âÄ•vcÿCR¡}U�zø0-$fª'íqs41ùk…(œWŠ5{3ºÕžÐëÜéÿ_µ§Cq + [ëᇞ,c”oí~é}4áÖèwgØD˜Æ4¦±PµÐÌ€ª…IÚ~RbÄǹÆ`ø¼cý :i)‘—µ‹…Ї‰×¤‡À~OjEW!èqO‘ù=hˆºrMY]šwéªôu&…øê™(vtæ9A;D:h°]æhŽ+~b_Û~×z"@'Áˆ;Úˆ&3p4If¬ýáÉ:àÉꡨBt=7D›HßNáÆÀÃÆá÷KÎïÝF#"nB€ª<g¹è-Sr, ‚ò]ˆ•’Dç +ô’l¸‹ FrûQWÿQż¬*{Ÿ[åþ$\%ížG@aÄ6ÝBùN +èZeHJØ]M+yl!²Ïð£ÝÅ̵„ýÂh÷y|Ø/Í”óY¹=w)L…Ú©€¹¼àG"u)ÂíݵX='búÉ¥P#¨è©Xf¥Ít³Ž@ïÈv„”‘gcÕLB[ú8;©=ÒB}ÿXLþè=ùÓ_ñÍJôè½ÀM®VÛ°¼¦ô'jßÛÉñzd±uèU‰}¦Õ!Âj‰ÔspÀ(:?´>5-ùÕÀ:Fpíaz\¾°Dõô… +’�‰b(KI@ŽsçL8!Ò´"j? Ú5O5²,™wkª*ìõ2^Ÿá¦]±o/q‡¤B-±ƒÖTÁ±YGGôB1Æâaõ«¯yƒpN3{ÐÖ g–'QBvÿI/ØÛz¯¦?OÞ7€¼oû}îæŸWòÏLàÒÝo%ŽkÚSôd©öë ƒ¯2«èIÑd#ÇQñEµfIn~àÛraÊñÔ_'¨še4ö£”ò¼|r‚Jõµ#:Ò³q™*q™ª%_¥¨€vèÁŠ7"çC +¸übQc»àfÉæêOqaSa¿5•¥Ü·ÇÁƒ‡ã ÿ[ǵ¡û¾Âšhq‡ê¯]2(t0÷Ö¢cuoéœïµîºdϦqC”näµH°×ßK/ƒQªÍþþœÀ€Oou¶Ü²†ô&7„þqŒg·ÅôrÜ #`0ØâѾ³¨E<Iy‰@m¨ç+I‡…’Î|Þ3‘qëòtÓŠÎ<‹‰Q ð.¨"Zð +³=ÇT«Ì˜jÍ�¯n:šÔ“‘®h¨Ú÷D—~H�|™t6›ä!ô¿J|\í|6\Ä׉€Kƒ÷Ù퀑¯D?±öã°6BùF»Â¯Q&Ò&Œ2»ÞgÀ ô>Ûo’£ÌÜ GhÔ)¦¹yû‚%»Áu5$‹z"Àì=šEô¯]3Íù‚ŠÕÃÅ>‰ £¡¶ÛùJ‡)Ä$SZží]Âöý@ÍüÁ £ÛiY8ìeíÖÊ„½Ý—‘Én9J¤ÊD˄ף“ÊbãÅÆµ¶p§[õ#í•ÂÐÞµùÉTc_9ªýɽf{îø¾©Ç-ïŒgHÙ«ìÈ«b.Ëø_1|ˆw!¢úa³é½š¡pãäÀþ£¤¦w{·—™>báòâBxg_NïHìÀÃЙÂý<ëlñi àK¹T^ä`Þ™±i$–àÇ9wd a¥ 'tÀ¦uŸ½y¿·HSù]M2÷w½û‡kyŽòÝãîN‚„¼êÔÃÖÝüîw$»”}£S.q ¶Ó¥×æ.²Ý£xjV:×KØí*ŠT¥AóÊÞÀ±ZDßÂ8Ó à0ä3êZQ§5˜/UíÍÛ¡í¾¦Ó¯5†2ùôŒ¥”~Lü»ð×]kø<ŸÓÁS’¡=,,¤#_ÓªHaHaշ雵<xs>€>X^+¡[YV_p3ÇÅMìõ¸á®ä-„ÒóåUá§ÙtKµj©Cюœ=¸‘ƒœþWÓ¿fÙƒ–Y06£EËÇÎ;ÂC¤Ö&WH4¥¢‘èèò·#K9ú±`�¢ÝY‰äRÄFè-ö½ø¼Vba*+2(·‹(*34Q<ÜÊüZ‰Ò&ŠYŠ’~T¯©švÛ ìð?™>Oåt8Ð2«¯ˆž»—*Ÿêƒ%ÊÞQГŒ ÍÞPjs-Ê•ßÓ4I=u‰ö#!÷õÆ»á,&¥éU‹†ù-î‡~üÀÞ‡¤À?Ãáì$ 2äB橦Õ.öæÍÑØIšçF`øj'ìùAôÛb 'TÑ'}”3_-tn4zFUè"ó0÷Á|Œ‡g"ÔHÓbÝMR‡‚’o)#44§¡t ÞÊ‘1D¨-¿#ú—Þu´&AOÔPÿZç0;i¦éwL‘®Ãá:‹œÇòJ&íl÷Î¥ØB.¿|v=O×>¹iôÕO ··.Ú“æšwæ¤DG„wBó+ +®NBˆÆÁ.€ßue^áÖ4" úì%Ó!Ú¾“^ðsi…³—PêƒG1…BÅ<z¨§‹:¬@É<–èKÕ½5Ü3MÓØ‚~l`Î ¾–©ûvi½ÔµPePõŸ¾Dþ§DÜgP¿ºª¯' Vx`ý [ºÔ œ#1²ßCÅ»T€oQ€çrÙÚL²Î`ùB ,y™å¾8]A•,ßi]?ó<A®c显ó¢4õšò¶Ÿí†ˆË~¬UÛ»ÍøºSŒø¡3°]OÞ¾Km$63+ ‚H;4<"¢åûG§`ٵ٩CÈ´ð(¼ß_溸šÈÜ(¿ŽãÚ¤ØÇÿŽL™hˆäû"y¤·‰&ñÈŽSÈÙûâ²:UcÆÛ«/G«`‘ä\³Uu¥®é÷‘Ú?|ŽÄ€ùŒ`û.¡«×‚–Áú:~¶X»üá!´ÙbÿFI@<`J·opÜtS§S¶ mD°Më(1F“ÍŒ?h“ÚÓ kš:>‚¸¥ê~ú¾Ý8¸�ýý¯ú>¶“Åi×WßóÄhÜ(ø29¹YbðFÝÑckÉÙÒdª1œÂØ/”A¿Ÿç8F)áÆ$í%ᬌ3ÚT`=Bo·KÖ¢3va+k¦KZŽ,ã·:”uéž+ùI^ ¥ètò«©œ@™DúÌ lù¬#s+~*ûiÏà ½åN¡‘=º€gÔK‚½1B”dF¹Õ9Œ¡¤D$mE_sϤ,NÃ'ÜžÉó7šƒìEöžeYu0kw~éýøº + 7„¸ÈÆÂ.ü®H ¤Ùð3^Þ)µAöºQü@VÍÉœ"Ví}xW*Ñýþ—ì©Ï‘Š9À¿>(„ÕÞâ,¤ôjµ¾—àâõç¦mÆŽ×úÑ@ óWÕÍYP.PØIàlW·u;²àL!ÛUèªáWYÀ®Ç`—@ci]ìå«ÁÆ»²àÌâËξ‚`¯Úçµ½N™W˜ÌtÑX—œ¹A#k+GéJõn¨Åœ‰ÚûU/GšÝ41ýÙ+HGê!ÜAsã*GõNŪ]PŒOoRHË|쎤!°“~|LŒ¢UÞûÙ°ñ‘µŒH›q›Æì7tæÔÑÂÀªM+'…ðÉ¿) °3c}éZZ•Њ›ù +®bƒ—":bvH4EÑû%Ézø’z£¢{•T&'þ*ýwf!4~''Çä‰5iBI¦Gõ¨°§2J‡m:R§]4èhS£T&É¢£"t¿òÛ==í¡÷iDbìë®ÅE ®¦döO0ìÖÃjç,Ui¦Vg6úDHO¦�íÈ/=ËëÌiÕ°N†#&)pt€IÁKïõŠ\ ”„8ôqÓüƵíN’Vör¶÷I&jêµz$°í:³ð'åBG¹wò$"ÖlHá*u0N{naÊ3ñü:Ñ{¸\DX^™”t%½�õ¢†’Þ'"YJ‹o>ý×aU^¡cö¤Ñ¶ã9.÷r¼¢‰íTåN6ôn½(ÕÙ"8\Lü"Y²öŽ{vùù +ï×¥_).ùæäìÈPKf;…î‰û63õ+Ò –+p‡G5££}©]*–ÒvpYÇZñ‰Í:ªr PH+M”ÈûÍÄÊ(R® †Hå5yªJl5Çíh ÇJ xUT•$jGþÕó9älÀ7ñòÉ|1Ù8-Ùø8´Ôe²……ÒY³ö–8.7³†°=H¹ÎPþîƒ = În:‚¡I5žQìÑœÕ÷R¼ +ú »¦†�ñ‹Ö—Í \®kP6Ù ©Â¡‘Vw¬˜šj±Ç² =þþ$]•uÀ#›¿ŽG•$!Uü‹’FÞ%=btIPþfV´Fµî¬™áéw¥é4ÎöÝÂ’§fƒüíµè6îFTQ†_ ¾–§ž¦0ª'NʵÛQ&ß”WÆÀþ ¹R4pv;+í´’À£µ�<£þ^ÐÞˆJ¾´¬ˆØ>ÓÞ?þBËÐþ1НÒ(h6_Ek> [}õ( ½*ü)yU"èfq=¿N@ö…d‚ðÊÜâ².™ŽÔæÁcUåj"P¡¬Âr ‡BÛ,gZw.’ øëL´2èe -îÁÄ®G�¹â|·`,кf8 ïÚk¬+ +òôïm)²v s¾œ—žÇ‰èáÜÃà{4•GØÎ½ª´Qƒ.|„1£áÖ4 #Á[-“QU#€mÕ7ÿ!J~ïNªb›-ƒW’ºä9RT¢ƒ‘ i Ù6g(=ƒÙÂï‹‘†r»~¡•¶sYÆ&©i{«‡¦ØÝc=S“(é*ü$ÀéAwù*™l¼;WŒ"G±ô‘X:Ê�jaßÀà”äË¢§~Ø[ø;°óJF¾¤¾%ÔÙ¬ +GµùÈXÔSÁV,æõÁOå zÓWæŠêšbœ¥ßïâ&IaV'cn ~!·ÂR³³¦" ©Gµ§(pÛ|Î�oôÙ³JØy/¸÷zuwˆ}W™þ€¥/¡í¾ÛŒ„vö(/§¦#zŸ®¯WÛb5çß<Î^‘'7ÉLëÅ^ØžøÎ`Ÿ÷D´ÝÅNœ(nM`¶Ž‰Q™£¢/>2H§ÿQyáØPÏ2“û@„ÿ|;¨TÑÌ-áú½m=°…SI5Dµ´mX“ò=®‰€ƒSxu·ú)[×…îWºÑ¥#zSHìÞ–ŠË{ÉÿÊ8‰RÆ.Ý- ÿ˜Zî»Q´ëiãHù¡‹[ŽOœ“èò²6í�5Øù÷¡ z`¦ïñ¯š“³ƒú!Ò>8â†r491ý²q¡¬k‚SDŒs‚w«v ¨.ÙÀ²$Óa¢5îá$ 44yÊPºOýÂÛ‚wvÁýtîórÇI&ïÛ™WQ§Ñ.€ŸLš à®7£¶ÛíL4zø€9e2f‰êÒ¢ÏÕÕ>»(|9žë圢šwGG&C�M+=SX d‹Ö~$_Ô~;Ié¢ù»Âþ¡}·Õ«"ßăªö²`?ôMî~äM�&3çÎ…'hdP©æ {öÓ‰¡þ_jºßb¾;_AOj8Tma3¯(\¼‘U)œ‡‡Ž«xgÇUk€ìÅbÕ\#23 ÜÁßé9´xQyùvòÀ½TÎÙä!pxò²’ ‹¶ãU aë¸Úsˆ´.À½7liâ¢YA f +’1jaɺ4ˆ´b�üþçƒÊú÷ç)Ï×ѳ¡Xþ݇÷}Þ7/´žÀJÙsfx2¯Hš!dm‘çœ W"H¢Î™z¤{*©CPTÂ,Á£Ã)ÕG]É’TIýrcÉ¥Ðx=ë\¡Ù‰øÖ+¸¡Â’âÕ̉ÉÇíÏòûÛÏëÜ$èö_ªZR±xœ!$7Ni,_˜ÇÊRëá>‚qØKR¿ÃA)�ÇhàPzðN+øÃCþ¡>À}¨ãXªgÒ% æÆ:‡ëP;Ù •ÃÊÍIšöcöpi30˜†æËrƒ¢‡)ˆ“sO|.%ie•¤‰0Ë›Ji¨FO:¨¦TƒÆvwˆÐÊHW”ÙJjŽäîÚÙí-D¡±Ú†ºÔ<üµ©Ÿ.aôõ‹ÀU¶u÷iê冲>˜WÔo!½ô|·5 g”þkc-±($Èúl§ì0áî0�€/n‚˜QµºZNÔÜ3é™®„´UzO6_¾#`zÞÀÀJ(GU¯TSÉ |ÁÚá–çb1‘ÍW2Û Öú«Úõ†qù¼wMaíçLCñVð +ÃÎÅUu¼â-ÔÞf>ÂZÆ[w"=ð;Ì¥¹‹ä[ÌOÔõiÐBêV|¡F¼<»%HÁRiø˜ðŽÅ¾ç>(P£ÔÎÛAêæNѳ—O‘é;£¹V¹'ÞªÆÑ’?ue/Fë¹8„_Aêƒç›_¢„#Ö׫€æœÉQýš?ØL›âø{ºà¬•¢’1=µ°lºá¬Zæ$àç4v\ ¡Ïýº¡‰Ó¾/;ÿ�tnëµØ +RÔÎÇîÆ·(YüèFèêè0v3(Ä*†¤ýˆŠj +²½¶¿ÒG²JkÙuMK^±yD/h�¯@—yaRªòÇ•Þ"µýŽm ¢2ÝÕ™¡6G”jÊó,îµÈ”‡ì«·}erÁ2fã‰Aà[ˆüK#Y-ìµm*as;ŸáIYxøF0”¥lïfƒ•0¯G»Ã3F¶p(Uz#eaÆ`vÛ€ëÏWöЊ#òÛ¬AIÏA,Ö:ÄšjÚ%ÂòA^5•eXS¿±>}<¿Î$˜— ŠOš‰âY}„Æ(ܲ”Ç$3R¢±¤ÄéÇïy¨½3*ùö§óÀ…é±Sé1‘\#§êÔÊ';˜â›om.e;±q†¡A{‚Å Úx¸è3õpöy²_‚B‡^'·ŒÌÅT0Bà–…%¿¥$‹ÞS—CféqŠhÜ~¾¯÷'AIR¾À^ì�:vŸ¶Ê=²¡_˜z݇\«&+•)2¾}¡ahà:¶oÅ«#ÑÜ_§4 ï.OÊÚP3"£#Ì«S¢K/iüð©tM +,÷7S?ê³ZÄ€DßRò’o6טìʈsb¡®‰€äKÄõú�-%?QÖ;Ip4ùeïî‡Ø’Ëã RÃkgC"Úˆ£ÅWÿî±3„ôÓkL§ «)oÏìQ_ë½Ó XЀ‹š&Œ²Ù=jxOnáK+b^‡lªæ|ˆ¾9OZa2aª<Zpn°e¬^w-yOÉͤÇÞeJðó,Íã!1k(M˜iUÜ’c ÆóŒ2^äm¼¦À¾Y¶E<ùIv„ºUTÝð‰þt¶EýøZx¨|¶Ó¿ýoÂ…S²iSÀ&èÂÃÅ0²²ÈA…IL¥|›a°æö¬(aè_€é:H˜Oô–ÆZב%W´AY.b°´®‚EIàn¦šå>¿õ+Xе߻t@)¯š>Éû]|XXiû¨`†©2<]pÔM}_š»××hG¸Etç=A'«(~ñºÎä X1îWƒmÍyKpó½ªU¹WújmJdRÌ#ëh†fc$‹©÷pò_r‚¿$%Ô$çù>kvÇkvb;c2š8M8ÐJÇ+¾Ó¢¥³‹féÞ^aÚö#ÓqÍp”¬¾z'U=;_8Ó’ ÏÿîÔ½Ò÷/ig…áEØú÷¥˜ +¤Ô;à 3z‰‰NÓ6ÈRq›ùÿ±ö6»Ò#Ùyîœ{ØCùÊF†vÁ0Ȱq&¶G ¡%lµ ·øîO<Ï»˜_ÕÎì.h•ШÚ\I2™Áˆk½?¶Ç +¹ÆÃ«íÏ”}Ñ-†ªŠ±Î¹=¸¼@óûW“žFÒC’ÍÃ3®”Ì0pÑù5ümñ'bÈlI$×~b¬0ÎԦج«l7*G ê¸*7"R&˜ã+þXýÎ)g¿uþ¢¼�S·ª4v*öSƒÒÝ(tOG5JQ•¾[d°ÏjºþyŒß_Q(½þ/q¢ß0¶Ï?Í>YÌK¤¦�ÑTó;ØŒµ&ØÓþ_”™”cÿ%ЙÀô”=圞ˆÍô@6M�vŸ=Ÿ¾[2Dˇ0D†^:90)¨„ɳz§¸Þ“A)!©¡W¯IÀöë%‹ŒFïê)®éñ‚ǵ”|÷(͓Ɇޑù\b’EúÑž)]^å(Á9‚EMû˜ãCÛçvhL4V«Ž5¸Àžö=]tÀ>*ä¿’GÓéeg;béi„F;x ½˜Je!É:8©oæˆ-À“sº÷fãw™?ÉlØ@èÌì§Y€ç×#è}gk)¤ÍèÐø7T¼bФ¾Ò¦/“+¤&Ô/Y‰\SØcw¯É3Ô•®+ÆÌ•‹�$âì6)*ìJ§g€2ýÄAÅ‘1ÖËžáìNW@ÊŠ:ÇŸå$²¾øñ8×ÞÂJÙé³(ôD1Ó’8 ÎQ¯(‡…x«œ™ˆ¸´I½KyCY^&·ãuÄ9ˆêâ#¶³¾Éîf‚Dàn…Q¼åàìµÐ3mä½d]ßíˆw\>üó³Ó„,¿Áñ „×9&ÌM.µ8aµË¯†ÓZ‡ð>núëù`JÑ’Ákºñ.¿ÆB©h¸£´Ó�‰€*þµ ÉE]é-в +ý`«°Rˆ>R0Ïë…àuec³Öß¡¶:¦&Ö¯ù@T�å[oúqph¿ÃWÚÓ½i lýPÔœø (B’‘#žz Œ×YéÕppZI'ĆiÏÇ'm³õq¯‹S®ˆ®ÉÏwÁvÎlG¹¨6 +µ<åb¿®D1W}uP&ˆá¾¾ÈmŸ†z"v RðšWÝ‚ä .ð´ûcs; +Å-ŸJ}rå‚6ÚîãÃNá¬xF£8ç}‹ÚKˆžáºé! =öhò©Ø\P«²HÏ@Éñ‰èQ¤™±Ççˆb/>ðïQšªë¦8î§‡Ì QïÇæ[Ô€V—¹á“8`°Â«P1EÖ¶ñˆË1Øo‹ÜK…1L)ž«GP•&ΦÿÌ�*ÜT ßòÓ"ºî¼¹æÈ£àFaE)|;JC«(޶VL#dÖQ,wñÏé«åhŽj½${÷yÀ˜,•OÎ)víœ�–e‡¼…°œ*efXK6ì*`l½"$Þ’ö›z·“ €Ä·äoòB}EfˆØ»Ê®ãº"Ò(Ú¤Û½nyüç{D*VïÍ]ãÓyÜ ZÓRŠþ1š¢ù ÝyÄ ãRä�¹Ðè5»m"{Ù ¢¬mê®w&ùA +aEQ;ñ<ÂVDEBŒž};miýfög“OÉ6k»ñ¯bñаNO/B +ÇY¨¬)6¤ +œ6࡬«dbq§²½(fƒ¡$•Ä\jâF[©vÚú]4dw]’YﬗO?qÄ€hg.fo€!Ì¡ÏÊÚ!méK…æ‰X¶¦2æðèK[¥æ¯çJšLJ�öAâ¬(µ;ŒÚòqÕ£kcRò€æ•ëÛ;Z)[{Áa®=v< +:T;B‡Âí„$†ŽóDÖáŠì¯)ËG›ñ" +"L÷ÇôãdŽÉccëï¶nÏö®ÖÝ;º=-+ñÐ ï™+òçZƒðVêá�.#°°Ô‡UØKšj{³œYµkêêh½Hî¹É"ÝQï{Z¨C¥œTs/‘½ë<î¨Høb£Fé?NØhf‚hcæ-vž‘ònbhñ°VL“È#ßÈ'"pŸµujZY•ÝÎè¾bßMÉÜ͹üjGý¥Á¸y_¿ý^üü|%«¨z«ÍO<£(¹æ÷ž ¬Ã[®è¨òª‹Ì+hXká4¾/ï‚'õÀ“”×x«Ô:Ýž�Nh¡Œ8 :k·¤Yø¥K”¥àÓÓD晆û®˜Ñ2È"NH Ý^çØt¡L;ëéí!Ö‘2Bu´_÷L$1‡õŽD½Ü½ZFÖ‚ïÈsʃ]ÓC·ˆý="õ¤½§m;ðW?zTêÇÙŽ7ȯG»[ÆŒdÇÆ¨Ô³«Å䆶:$UÏÜS@ØèE”ˆÎ:‰Â5ëÝŽ?šóÂV¢öD¸´oXŸ¹Rd€xÉg„Œ”:%¢½J¿{ÕÍ´j—MðS婿¶ +\Ý• :°x"IµrÆ/½Î¦ÚGÜ-Ì.dvî—ÍÖÌ,DËLå§GÐ辡tD‹Gå.›öàƒDè Ej¸:JBýh47AÛÿ€*"Ñ{–PÌnŠkPÉEÎ6ëUA^S1dàQZ]þY@¼•0øÞOƒç9X¤? +i§’w°MÌ™Tƒ@dÝÓgÌzœ¾¿Ãþñûj‡(r³A(i¢T{‹¹›æ¿‡•;úkÞ/%²×AøÝ6`aözˆØ©a+s¦_Älô“Os•„· €.%ÚL¥¹Ù{.pFýpEíö¢ó̺G&'ªÎYÛSkºEÆor.lE°ÅŠÄ¢b|ÔúâûJ‰Z顯f‹y/òV[]ÉRx°#ÍMA¨‚ÀQ(—”-½A¬ç+[讌»ƒªÐ™'r(bÕ#L2]ÂõèF=rѯ76>ECugeyŒùÞ¢`Ò ú¡¢UÏ~ZÖf?–Vƒ5–¢~óŽž´Ò‹ +ú‹Èp-ïìÆƒÒæûyÀ@XyêÚJÙ&´çõv�¼-…`¹/ À÷(÷ÃÓãcª¦Í©‚ùšóÏôdlœ’ïÎ3 +òwšÊ MMçžkR}…÷Pм˳~}`/Ú`ú¡‚÷Ûø@Ö%ůVà«¢Þ“lî•�ÑÛSl¿•²4¢÷Óõ‰ESNñ>*K®/7ÿwù®ZèÛÕHG2‹*D¯bî‹ÕJpMËL£bŽëˆ¨Î‚]8ª«º2ˆY.s0Ñwܦ.tèjîH{=ú´D‰\îYù=±ž+ûØË‹At;æ:á’ª½–¨h¹^1}èêds™¦ìúøág"Šîß5t„{£PE±îŽ+„žF– gõÍš,ìåvÂ)ÓQeGø|‚H$.€<@N‡‰î^ÊâšÉ¥Gf}A9àyΑ7àÏfGÉm;…„ƹíÑtÛÞk‡ÕbùSÇ j´aÊÃL{\™R6è£÷bgºÌ™‚’°4®ž°MëÓ«W†ûðY.ÆêMå’7"€©ý0ïñŠ8lr¥a)™E8n„ˆ€ßF"zuý1Ðs™‰©ÃG +¨ü®óa+Ÿ½ž:(]Aå³¹G¼ãqH-,Š}1çø±m“fØZ¤“Nmíä*Ž/ó.IRjhjÐÀ#[æûJpǧle¨ÖsÝsõ“ Ó1?ø`ÐÀ„olRnï Ðn8’V"ͶÊö(ˆ¹ž¡þ¥"7G¶�ïúQµ?'‰lÝÔv¢T){ö‚W„ì×ÒÁÓ…žôȽµ'‚\ZÊ4]Jj^t(š¶kýÇ• &µ+ì'átŒ»z…3oä—$G$ÕTNâÓS¾ŸÎ¿¶ùœO¯>„®t0Êöü’->ϑӚ©ý8žÁ«î„¿ ¨•l8ÓÃo5ê¬(·Ô[(4nk9?S0›`Æ%Z3²NÆ`Ù$¤«7u=Oq”äΔÊ_ŸüI2#Äî)J}N+žãZ¹ø6Êyg/çûüaḉÂeüÜÖaÄÝÆ”!:»-ôQscƒ ÇxZº+ý¸é‘¾ExûoΆoçÁG“ÎÊšCm31²âÊÈlñX±=“Fþ&VZ#ˆÝ=ÌcjË8 SV‘1à‰Ž’0Wëjecînž~–OyFE!ÇRu"£Æ•(ñ£çöØöŒŽ}ŸnMÓÙÛ.ú[D›é=ߟ|ùUiøu”î!gÜC„‘ÏòÞ€ÈEOa×Õ‘Âf +=Ó¡{xFÒ©ãΚûNMŠÞN£µJºíÚƒhd$èx!çÿLÚÕzÉÚ,hz�—¨×;Þ;¸:Ð㳬–;ðÃ3ù§dé5¯1_¬ã—©-í�2Ž&üÕJ·'ÛiÓ9™le£ˆ¨h‹w•ôd\ä.öjD€m"éS"2d×'ôXâJfQëöGMˆàí¥×xµ ¬(ôDªfPÝúiAí> û²ÎzYg{ÈÎX–ÓŸ‘aº +—¹+ ãï)hýÏ¥Ë/j3Û¥ÖZ®O{л¢eÁ°÷(@Tü¢P)zªPE¡JÞÀU ÉÀT‘§¸U£8Öîgîï^î¨)À’ +D¿gôXPÒ0Á7×/„¬›ì‰µ3çÍÁÝ·½†·‘YÎëW•kðhÛ¨!xÄD�š÷ˆç•ÛýÚ8k|Š¢¤éŠAqtÓbFÒøàøánªÅ«æÚÛÒh1"på$²s-Y×Y•ouê®M3f¶è€BÛÒRU4ƒ:ݰ±¿GäYÀˆ4ãmç‡ó<B X:«¤o5¶¤Q@XQªN²Þw?½ÅdÍ*÷£ÝK”›¦&=Ä;0ä0ØýåÀ°{í¹•CT”õQÑyÔG¦@¸÷×4®T§ÏœG˜·¡lÂ~*Ú…ŠÌ^Òû¯’¾K+C$̺‡Q¤»Ç‘¦ÉØjJBiߟg{ÕNJ_¨v6!G’äõ“Xà àà_)Åå~Ȉ½"®ý•†ˆ½K¸ŸïQê7${\ëŽ~/#b’AÎëSDµ!W÷¬'oQƒÕÁ²±EhVP$(]Y&˜`¾ÉqÊáÆ‡62ÇAMú¥ß9Ÿ´½Þ3QZÃí¶#¦œ»ë€~ïй Ž‘;k¬Y¹T¥~](š[ˆ\è™~¤Ž ÌgŸO–ºrÝž[AÚJG!Îþ8Š ¯§¤„S7Yy@{² ¹›ZsÄša�€apÍ´gjráÊ/½6Ö›/Q\ã{ÄDÅ€20'Ïfç-JåÑåÑÖR}÷懘ýƒ«Ï>¶\ÓPzé_‡ö®:/åç<*Ù𺗂‘Ê JÊ4ïØ xbÖâ¼ É–\I)NKØÏ5KG*åÂrÿ*D㢑áúCG<~hT*S|eêc@ À÷s¤wû{ÄïŸÞáFå Ïÿpžûzˆ½({^ÙÓj„¾^ð,ä-âãÊù=Š%Hm¿õ]ºîw9¢ìHÊì!†Â…ºzé@¬ÿ\‹ÿœÔ䳨ȌE€4?W¯#-L‰Za±Ï:íòÁ¿ßeoà QWÈ`۔ťþH¬¥¦Â è…•§Ü¡e$3D9ÀÀ5”‹64éíÀ¿TÁ)²¢ßøðñ®–({Ùí +IíȾUa§:@Ž«WÖ…œ™¬d×NÛ'£zE +¢Þƒl8m‹±=U¶ÊaEœá’·;ˆñDàuDžj©dTµ¢¤·¤åvÑ¥,¡x’ˆX_»/‰É¢¼ÓA‘(Ô4˜Ñ‘íz®¤)„Õ‡Ga°x7æaÒügD°�µ,í[,`wÄL±Ú¾ž“=¢ãP[™ýt Þt¸–x¦‘§G‡ßfè]åî5dvýŽêõm¬ÓÅYMÉYÁ²îºðÒî«qŃçÄgEMmFábp´"ÈÐs²Œuše²qæ@ÔÓ†/äØkßi{CYüŒåžÐT‹]¬?E¨FqØ(:"jÃôÕ…ç+§”%í©�{<>·õ;ª9¡JåZdG㯠žf2jQ}ïÉËì^•[8ÖÅä¬Xz¢e²C1é‘l¶Ñpy>C_íVÖ)ÝŸ"Ö Ð,F—ï|5p¶ØGEoqVÁ=ÖVT¹È½wùVjzð¸F£¾'·ÅBÌ9•gTzXbæãÔK‡ò¢•ko%è¾—‹õS ³H½¦Â£üö•ÓM‹„=Už³�¥ëf·Ç¤·tWPšè,o•gÞ[¬Ÿ ‹|U–%‚9‚\´þ¾€ÜYñêô[¤NÖ¤¾‹uñ&Læ™ÌsKñ¸1Gm¹Í(î3Þ“œ#<¬ s‹‘¸£~>úû{ۘȪ@q„ÅX)—œnOã®+¢j�!OM€h¶”"!°öü·î‡tŒ7l/vÖŠRv¥àQòõ,¨ÜŠ’õ·#±ÀœCs„N 0{s¦½%~ÕqÕ½€ép`ïW²žÂê.“õv¯›4lëù¸jVH¶Íº+X+b?j�M«pU{ý<eÖ£='gVcš[ó«Fm–µo˳˜& ÷þÀáÆ3ªtZ\…óP/ä(¥·íé×¾2¬Bõ3+Rúç]%ÈͶٮ?zþîÉ€3*y²¶’Ðë3ˆÉ)èVI¤ë»Öý~¼Ç™…̰Ë}(¿Ž™GJNQšÎ´§qU\‹”I½£ƒ<°Çj3U3ª@‰8ñ8Ðë‡ÊA?ë²”ðý<ñçôGFÜö+u!è%A~ЏRZSé6Ž_Œ¢_EïîØzµÙ‚h ŧ+ûˬ>¢_Žú’[fáÖo*.S×Ü~ñs°\»‚º8× ZΊÐ}$ÛÓ«:3®£Œ)=]¡Œ·ç½ÊQ×¥ ‡uºs³œsÿôÍqR\í-3±@;ÜO¦–™ð ç¶ùº_×j‹·ôÊ£˜ÐJÑ\Å»òÇY_€[�Bäyà6ža¦Ù¬¢nr¿õWyôEû8^8»ÞKë®Ï[üd°Ÿrú¾GøÛÎü¶³=B3ߣÄÜ3œxœÞu£#7ÊdiÝõ®¢b -ë°/¸ Ž‚`@iÌQUÁ»*±b/SKcc¿äN…‰|+Y{^¸N6“µŽ°è-ò®oqeËj¿aÿ^ð~‹˜WŒ¨Z?åDõ3Qåé +:ÅB÷ᣈú®å팴¬d,çQ°¦¸ûÚ¶ªj”ÛúB¯ÅD%w•dRC9ŒÒ”šÜDté*œç +®Bä<-"‰Ãê•‚õ‡¼ÿ¸@Óûµ”NðÏQ‰À~H;ã}µ"è1à+Ÿ™åÊ-¨n/ã`ÛÛ¸]Ï”5ÏNËŒ¥ÑÏHcÔ‰ïÜ÷FSñÇmèœ9“ÑDoêQqìeêøz\‚÷ä.JÂ)¾EŠàdÛq¾GdQ9âÕt·øpÔ~T›êèS¨Tañà +—ä%(&nç#™ð-êM¤,À&šéŽð_¡ÏÙx)ËSfß﯉³1`v_ÞÎɕƩ,Ô=43Á…ÈIÎûJ]!4¾žûÚ†ñÜ×oUWBVê0Š˜(*ÀRø¼’ÊUЩ˜e¢i›P ºí2o4"Öš5_°ÓªGF”æž–„¯œG #B($FHÚS@!· Óã ò[: ÓúÿcMvוt¾åÔ¥m¸ƒ¡Ö7£Þ‹”ø«ªòÕÑA¹¯gu˜I›ñ5‹èäpÚç-þit?x'L/Öï6¶«€!±¤jÐ…ß#2¨Jðñíã³Åw£Y©J·;ú (�jßs”VF®J0u�´8‹<Š/îçXAŽ0—Bu˜ôÎò‘ãQ#š$Ž´#hí>A² ²Ò “†R%YL|éMÿ\ ¶ð¼oÌŒZDDg@lûuù>{ŒÄÎ#^X”±Bú߀R4IÊéÊ5µÛg¨®5!бø¯|8ÏYêI¾´c/dï%âvêxôÑ>+:DÏoòµE‘sB±4g‰SA¼Vl+“_à…¥¾“,/Ú`)Îa#æÐÙÒCDhž1@õò™W ž› )AL̬=ˆ=z*D¤J))|24l¸¸Å£Žüü*«eáÙ'K`Σ¢.†Gkåeû+! m›¤ +:ÓÂóoMâPû(óÕ¹Ñä8ƒð<ƒ%Å1Ï2B¸”¬¯ö)TÖ¡.ïûKú-j–ÁœÇ¥[^áÃ7Zl³ÚQV¼Ó[0žqµy¾ä‰Í${7¨;ö~š^¬CšŠµö�©Xü›U”Q4Ó“êåc©ß~1R½^Q»~(DQÑ$ŠrößÔýÜ1 §íÃ$v dWöð“ù…Ž® .ÇÍ×ü=N î7Õ_‹8x¡o¡iŹ޹n…<›Q¬X(Ø]……7„ð 6?6IðøÔŸ¼ŠtÊ;yJ¡SNš™Ç^w"”ú¾Œ&åüµf%Mâ +F¶Xõíz”^a4U£‘ÿÜý&oŸ +&”½ÁŒ½ÁùȈ– ÖúMå×½FF‡ïÙ )OÔy·ßr5êF¤ûÑÁ`ƒª”’ÒýŠâÊ¥xA6Lêz7‰=w}'�êWLnz6ˆºFw{[·${³ÙÖÒ ¹ëP&®kÍoûÜã'“ v_‰§Ú]}]HøÔÖïF)Õ…ï§\-‡…ß(¶:¸Ò¾G€ÐVõ-('ÿÃú=‘U; Þ…›]Ðω *‹kã,òð±f<ðp™é›ÌtK¸øŽêuõèsžbOxiÈ”H Ö«]ÐÈ‹*F}|ý6ªî/‰á“Wÿ'¹õÿÊ“m˜ÝÏ_Òåý—¿[ÿr|ýÕ¿ùúoÿõO_¬}ýÛÿ‡?üϯ¿úwý_þöüûþÇßýõÿþÝúÛøÇßýü‡ú¿¿ûÃÿøÝø»øãüç?üŸúÕEï×™ƒÚÿŸùߟ´T€[tÍMÄ„õcÎðrè÷¬€M«5Ú×O¼Q ”ÜݘL¯î§Ö¨€y‰ùØZ‰)f|ÿô®èí$¥N04ÐÄ Å:@Á v!åÊ¿T²mc•Èw(&+Eç�‹•U¥Žìau0P´ã§Ž²uvšÎ¼4ª�¾ÜHN‹7Å/)=‰£jûˆkn3E-åðÔ…?Ž/h>¿©¬Z©¢Òî'z>QšU·’«þE±kàÔjov’U1°ùÖ~œhåy`?1®¢wPiYH”ÚbCm½/T9œ¿kLvcÒrâ�¯îª† ±!°Ë/±´lCö/jn&ìAï~Åþ²²¦dÑN†]Ò½ ZÎóÑ9y³æ¹n*ògm&.··òI?ä>œ‡ÒðWzv/'g6 j\6[ð~ê@€‡Fö1ò!‘£PîgÖÊШQ=|ì +K+G¤q»š6ô€êàæ½8rÉÿ¬¼ë=Ê.>´†lŒt½Åá&¢^6Zîç󟙄3FëOjüT ÿ½¸ØñŒb7{±p•±ÁëàHá—Ý¢JM9´xåaä€.ìÔϯé5øö÷�€pøŒ‹ÝŒ9 yAßÄ"íOdbM›Ì“ìÊýû© NªäóíøöC}DŸÊ÷J.<iOùJH`‚¦Na« +Ï?¨¥ã¨îÖ“nðw6€0¼ÑÿKAéd3Àµb�hÅÙ« ò~ê¶2E»Ê‡Fzüâ�Ø,\Omé9H3æH3æÐ‹b"\Ûâ.LÓt…øj°Ÿ¨}û»¯±¬•ãíØ&JÙÒ=eZTÔ¶Ïcb°på’Û3=Úôò†ÉY¡y¥`T†j|¼²lHGÍ1‚óiï®÷œm€¤qHF kÒŠþv“„Ð<89\Y›1?•Éç(…ÕÙÈl¿ppÛò„~ù;9tF5Í¡;-+w„5‰YHÆ8@Õ\ÒßU75?&EæäRâ™ÙlÝ”Iwåón2€à((Œ˜!Ú´kÞrý®Ÿï8 ¹v¼<4â s™÷èä+¾V!UŽTqÉrÔÙæ÷òR<<¨9*Ã2Y㣘Չ™?¹F>™PÚk¼üŸ†]ù]ÚÐ\RÆTTQ‘;ŠŽ]Ü2!-¯ÂTØh-yëwtšÄªžÄ,5„V|i@5µð‡ÀAÛ(ËqdqaZÏÂzaÏPÓq«N_f7âÆUí€á³åü硇+²nõ›BÏä™®é÷P¶¢4XQP"Üê'z8Hò´ˆ ØG"P·®¯ X;IqZJfçBgô(i¸Æž{σÁÁËãh„#Ú{ÎNýc0rì7×ÈŽb%]�g_&ÌËI¬£+P/û”÷9,…¥.FW„`;ŠÌ½^õydé�îb…M™.vËôS×3¹ì4âÑkà ·µjܬʴ}äÓ#…ø…áàß=ƒ™&Âìþ"ÈẂÖÓS3�|Y6‰'9õ¥MãÉÞ.´ïˆáßi˲xÀ¾¨+UQ|²¦ ‰^Šðà “õ¸KÜ~M4<ÃO|×Âcýò¿õŽüü¼R½´Ç×^gÛ5/,Ž©_a½Mèü“Ýè‹Ïh€Q)¦þˆÂÓ8êñ)à—„ú²5ˆºô}øûÁ3ô6jYæ ô$¡çeÐz€©ÔM€[öƒqÓgEŒÃr÷õBØÿñüt`8ÿUý¤ö˜ÒÇDzABª´ky¹¿Û´&«Â”JŠÌКÀœídùáš³ïÔü•k»¢‚ë@•5Ðwt§ªœ––×D÷x,Ñ^3„kÄÁ‡ /øwW(Vý5>Ž.?É?Ó-æÏ³°"ð.ZÄžƒ¼|T•È\=@7 àõ’ð÷•måÎXiõ|´‚Q*DœsåŸ>î©^k%|a&¸èµº¥c¼øtjO™Ýw<~.¤ö¯·‹êž,J†üâ€J|Á‹ätÏÁ½°Á¼zÀõ°lå;µß1hs,0ä_oüjZOîï±í¾¬§·$¸„!äð:@Wëy@¯¿M…Þxw4‘Thg‰%Ìe}[Ûž¥smïî³:?m¢²èRA~ö +ù{Ÿq«8’Kë—htì²)µW!ûÀÞoÄy66lÈa<õ €;ë�[9P`D_´Ÿ¹~05𵼬Nƒ3Ml4‚cúƒJ¯ú?ÃÆ#^fëe}4ÈC%?ÞIi`rW°G³Úðj-Hð(oóí€oâ•°¿doÈö)D5ºGfñ×ßQ¬„É…bå(hñƒPv(ýÏÏhõ´^†Ä»ÎÂ�¯ú×î¨õùޝÏ�9S¾Ú*¿ÍˆGÕ±ÃZÕn\ öñþ)sÅ‘/O¯Ž¢à6i¬ô?âöçWHÍ~m™pÚhØR¡]ï1uÈÈYtGÜ%—ýL³ù8Ý!”ÃòñΤâ•`Qç;C‡Ìµòž+?¸˜v÷ÒB;ÐÈ¿"O²ÙÂ�çÈÑSE^ÓV´¿Ù%ù]±¥zœÌzÏ€?ò˜Ó¨]ýèkÁ$â�o¸"(¢&·¿Ü¤qnõQp°ƒÃÅ‰å šÇèéžá’_yköÓ™ú +¸ØrïZt#0I-N~á7‰¿\X,oySy+ÔtÚ»}5m'§�½ÕÏ”Ói«Þ_¿½4?y±¦jòXYxPž7MŸW*´Š]dA´OìRæìLºÓœ1Y›ý«M0®(=v*›ŠûíÑ®E¼ðÎR-™mn¸§´»2|, 0¯N~Æé€ á`nŽ`]€¹<²lž˜ˆ´X›$ÆËèùcÜØö×ªïæ“DÑ\ÀcýŒ@݉‡ª¥H¡ïF˜ÜñU±Q4¥àžVÀŽºÀz�.èØu•Š“ˆ[$/ƒÃ?u_¯T'ÓýãY”öÊl$Ü\ï€ûN9Šô¬ŸÏ•¢J +‘ûºO# ÔûP€U¸·UÒR²žz'jöÓïvb9ƒ0a˜%ÔªO;z`ôò#¤0µÅö<âÇ©¾L"î¬ZNùxå35pMÈý•À\Î׉,“ëä¶gô±T¤£T~Ú.ýÀØ`¦iÇuƒj·!$¸¯1I>^©#ï“ æzŸnÞ\`\32u…ÿp¸Ü¸ÁüaYí|=ÿ_DÓ…©¢gDm +£óñ€ŽyË’§o<0·´½¦øÔã=‰ája¡%Ðû§óœ#í ÒTvELt§ßz˜šî'e»„'Ç9k?Þ1*.Ëõí!Õu¶âöʶڰ¬/»…+ðÛβÁ{iÞÊ{ Á¡ˆHýáŽK¢dͲٷ(~ÛÌ¢àò¸KßG¯Í~~ˆø*}ׯ£ÔaÑ/Gº;Fª¬ï$Âß©GSߥÌÄ +‚W9ÒÚ[mÖ{¾øJ†=6©…ßϲ2ûÍYû*dô)oùõwAÚ.C‚¨mÂë àß™mÐÆng}¢Lxör¯¾¶¸W³Ù7ë™è…SFøñ.akp•üpžKqz—µ[A4t?i¦^bž”^6:xçØ¹ç(D£˜j¦QQ< + ãÊ3<oñŠhåtK^|‹™¯²c™(\ñ]M˜%ì@×å¹–ª�_Ïw2¼#.;=OfbômïÈH”®ÚÊö\ÉLÞ"w}¥$H=º.¹Òˆ}÷샵6óF£ÓO*Ãvûêqðš÷-û‡ûPó²5¤¬RòN‹üÿ!%fóýÃÐÿq[/oS§x¼vè¿óSÄEpW½ƒoA߀C WI«/£Ì?p¹4á˜àø–JÁ#òr^û÷ãyVWö·Ì`:o;¦Š—h®•Pô¸"ˆ5ÔÙÞ~ˆ8Ó×q>¿É[¢™b¥Vq¹[K+ˆß2‡«f°6.Çáu +ê};ð¼‰)E] ퟥx”¨(úfS³KàÀ«é©©}ÚÊBMãfè¨QÇvýê® +y gÆG�J „úv ¨!~ðáSäʺÞ0\GeV³2+¥‚gñ.‡=xˆíIÊî¹ðÔ ùCøUÌ›)Ó±²ËaD~šhµ&‘EÊÜ´µÕ9(Ö¸¨5ü2äTìKê13ù¥X>±:ŸŒ€Ôl¬9 $s·Ø?çgü:‹|:=T÷É¿‘®%1eèú¦¹µ åïM‹ u¶¥û=åˆ#Û1šÇ{D‡áãûðñYÅ ˜!ÚÐbA¦Š¶"¾'Oú-jD*nb{$O£ÊЮÚј¶�Pßãóð+^ån3±—~©Ål•w9/óÝQˆÙÍý„VùòrH Ò;öÎH¯ðß7²5ÿÛƒì¨×§¬U#ÚORƒœVŽÌºÓÛ;S%ACVóz»~P¡×³®]á#Ý$ØÝÄ?ŸßÚêçdÿweÂ`xÕݯ8}Bô„Òþ®Ä<b ‹õ(÷¼EµØÑÍCƒ\sÌfñŸY`°…fro¿‰rŸÙ_^£ø $nõÏAa¶gîÆ}0Eßq¥®fu=~àž~çÔ÷P™áoéNQ…mXß!¶º|$Øšõ š˜6SöC’« +¼·©óG{øýÓ”ÙU'n;´Ì÷ótÜz`"¯'F·s~Ô/ǧˆOëÜ[rlZ7D}Öw„MIuìP¼çVÊ?¾˜¸3< ¡ICÆq@ÊR5ÃéZó¢=*ÞØžªôŒÊíúŽý–#ôÎÓ8�!… ëzBïÃÂõ™lÀvÆâ<pØ–¨Ê+”¿‘bû0“"Àej¶ûµ|£ìô°#©—ÕšªO€Û?Ž58¡�àNšgżs# µÊ[cúpöž;Ÿ¿º:@¿Hð¼ê@쀷ç@PSj&yÏé:fÍz@�å`o?ÕíLr ü¸õ«¬QÅØ5ìiGR‰ótƒk·¨,ÈÎÃOx}7ø¤gI]#YýóT§[Õm?|ÝÕ:…ƒ¦Ë¼‘õ«c×í‡QÀp|¬ÉžbÁaódŠMSo=LùþU'–©È1^ôuŒX+.ÿ~èÝ£‹'ûNU÷Ôîñz´ ÷ä݃ö-l}ùç-Žö} Jîɲ9ºCá¦mwVõŒ¤¨Qï4=#ùÙˆ´†¬„ú¹¶–k ]³éJ¯‡ìPW”޾c�„—•·é¨WrÓE°Glnž�z#ì˜q f1ùqàÊ.„öí]d¤×Á“‚là åÄ/)½{<-„ã¿D‡¤Q!E[«m;c¾C¢Y›úI¨Ai±1»©Sœ>¼ç_/ÒZúÖj¹µHQŸÔÎÀ‘œ0˜()®«dÎȼí4 +èiM;Ç“ûâ=˶àŒUìQ²BY#Þ½ÍÌO—¡·[Z„ÃbÙþãm^¯ÏF¿–ËÔZûѽøD)³£y”'’| +¯<ÈeM. Š~‚W‰Ol1É|À:'ã;§í1d\OóÐÊœiBªú@Ö…§p¥ )¢Q.°û´³•ÃT€&¢ +¤f´O:¨Øð˜u.ùD£cø)kD•”é£yØô®_7�R¢)ž14Ë•i™ï´“jûÔªÃÒ’}A0Êq +.ÔK~.··F醪•μ2âŠuÑçσ7Y:¹ùÕ‚¹CðtG¶S±=ó7 è›–¢C¼‡ý‚[Å%US«–ßMM&ºjªÂÍ-ÐÜ=P=mt·F{?àmí +´}øþÝÛýκ|8 +ÞM¡öAпƉ æù{K~jY[íd¾³æzèÇÙÂdßÊ\t<…Éïù™ T¢©bqçþp~HzúN#á¶íwôKÏO0i{Œ”ë{M0jÕÝ®þºß=i-Me&ÙrÝô*Ž”§k¥ +GQùœýõãóÇs·Žw§˜ÑWߣ¯~áNDÐW·‰�êÓ¥&sj Ç”ã°~¶h5¬… WñÔ5àf\?Ö—¾i„@Êˈ ÝõŽÄæ•Y¬"BÞ‚ò×v”НD”Å'U.½Ä©Ïû ôù@…cŒ¨?ÎÌK‰BbßųFIa¼Gäùž¼ÊxÏS¡¸0}iÿ >(|ð=Âß~”‰öëUýuÙ1Ws‘‡ÜðQ7\ª©ëµaÝ{©™½·û=à÷"²¬ÅrëÎ „ô8 +h,Eú$’®ßðõ8S½Ç ò:?îø˜N�A$¡Ç‚Tn%µwp"”mì%ÛXïQ4A‡ÔÊä¹J eØ@L4‹_/ÎYÚº#Ò¹(×ï¼&Ç=û"¹¼{)HCSgׂ¬h܋⪺p‰FïIÝâ~cI˜¥â1îUÊëJYWÖ3\-à3ŠÁ°<Ô°»½ÍCqª+Â=ƒWb¹"à &âR£e ÒW/ÇY‘öîɾµ ^ÚEšÇ÷ÔÅ‚çgM‰ëÎëû!b¿BB!~¾Ñ[�[E±LY.§Ù®~ l5»ºlÒÖJ¡):YÜß#~_ùÜ ²ê5oQw·ç¡‚™:gÔŠÖéž¿ëþt¿ó—T¡€¶M”v—iGÛ1XQ^Ñ/r'ú¸ß^³4LŒ#4ðí,H œM›jÌRÇ¥ìÓ°*bs5‡l 18ëõGâãdK”3Ç)h¶TuPDU‡ŒÔODo·èùØüeë‘ÜÒðâÛ}îꮑóyæDñƒžÕøQGÖÒ¿uǂΕ=êÈnEœ€Ë‰°‚³¦€rÎA‘sŒèÙj¦‡Àºã>¶¤u ó2ÒPàÏt”ÚP%™äŠÇ»²ä“|ì-´°Ï…jäxV‹ïQJB¢‹°!¾FÂ{§”€=Ñ]‚߈“©GŠz×mWº¿pp‰.Úß^rÙ"΀×Ù%‡<’"Àwjµ1Ä´$ðû³É·Æ°ì턪ê½{¨ÓÒW&íQÍpUINUèC_ÇQ¥Ñ2X–ËVø<Cü_ .FßÛßÝÐmÁõ|?6éo™iÛõGô�~üýÈXÜ7œ¦ˆû–ÎK ,!@JœÚ…ýƒplkf ^hŠSêóO}¢Ck¡§Ž&ëî÷8¢ DiA€ÙÊŠ¹EA½‘çl§?’®;P˜ChIˆà”—qšÇ¥„Øf×SQ;h†ù=Њ¿ÁAãt±V¼£•»t”ͯy iÿã€Â"Èíx"hŸ±,71óp7O€êÇù'¸Fég|8ˆ'È‘µÔÒ"HÁÄÍ+wŸG»’E@«ðÐÛÁ¿Éµ†›µ§×Ûn';|u³¡ƒYVoë©býã@Ï>[¢QiýëàÜ¢Õô>þº® ´ß¤ÿXMd™žü?ÒŸÄÙ-ˆ“¤º øý<£\ºµ6çP*èaà˾õ-âûz’úá÷(¬…Å*_,xæ,ÃÔ¤ÏL²Zûñ&‡ x™ä±²#È{—jå4ç¨îq�v%f·Þ€ÇLSPèé‚ +¿Øãµß¶å»æ ”ןg¡d<² +î=M÷èÌ r¨Š¢˜èuBAÃ6ÅÕÂ>‡í é¿W·PE/jË ýdh’¢¤^߃=¼Ùiàú§WÛ[Ȉߤ”½e? vWÕ÷ë(ä#s‘ +ÕØYÎí‡4³é9Ò~˜µoA#ê;‘9•^xþš³ÏÈ +˜Zu + _{‰>ö–¥ñÍ:Ó¼YˆKMA'ð9O…6%=.šî:±©íÏæ€•ôÉw²aƒü÷K–Ÿ…å¦Á&ÖqÌ^ß×^€XD ª8@Ë·z¼¢Ô½S ˆ¥ôÅ•ée iÇ™÷./zÛ”"�OV‹[Ý\ +”o?ø‚U¥5S2†îaåîy+®”±¼n%á§r ÷¾Í¨™@'µ“A$"]”‰ìêÚy‘Aª[[(D`ÓÙ88ÄÝÅp“µý¸€¥÷RªOTH:kš9 bF¯D™Ñ‰×Äîa$ ûw<(ƒ³J$·0kg¼½ë]i–sv‘5阪…!Ö!<ºîÌ>ÊÈÒæœ¹Žƒíþ!ñW_yl€j'¶[-ŠñÔ>ÖTu ´£Jù‹ +$•-su„èΗ6Ÿ¼ü O.öqz®*h0¯qÁ0µ\÷hCœEÒÎ+S¥.9TIž¨n<¯xE_:ºðq—á^árFX±ïi§O<nºê°…Û€a?šu§ëÄãc'&·$4æêh>q*Ò{kI¦æÑ°é=jkx!Š”Y€(²¿‹ë;U¡©w±¿��¢ŠŽ”@wmâ×ø§Ê;Ï0Ò ={E%.Õ9V« ÂÃi£´º¥ó+i�½:¢ná^BöØd€YiÅÀ¸‹¹þaEá¾ze+ƒ®Êvb"EH:…SÝ{‹²t&DÆðP-x’¢€äy’$ðëRP„Њ!©M!võù æïyD›x=p¸dÂåË{ÅÛªÎÚ`<ã°újˆ÷ ѹ9J*t$‚©¯ßÃŒ‹ÞCÖ׈`ŒTÁÂßî¹£Õ¾ÂÕ_WÒbk(—+I¶¥M¥Ùj«´R[Õ#WÁ§¸0€ï@E"P}o×ëJw†ž2)>™LÙH0j©ÂÚ#§çµ Y<¥£öƒô;„¹ù‰&Íh¥‰§ž 6•¼›Ô‹NÔŠ€*¤Ûv¸¿†Há/‡r£2åÉKè¹ +…å‚·O=îPsUùÈJE 5;¥U¨q¯,ô0qé-æ%ëJ̳_i5¾âz°¥•Ù3ol¾p–µG½ +ýC„®Sæx +×c•§nÜàU?Üktéè§U¦/¡_E½á¨U‘"=ÙèÏ…=¼£æ9Rt€f‚œ \)¶oôÐuäœÛPUQ‰RàÖëo7•¶‘•¼-î™Di›¶¢Ø€} ²Î‹@Lˆ—Ac<0]™4+廯|ê67NÏcyÅÛÁÊpИ™ï)"œÑÖAQ$ª#ç·´Ù±©5MCKÒF…jòêШêÑî’—OU1öˆd‘A{‹Œ[^I51±ùnV뺳BNÊP{Ìš|¼X(YqSˆ]:%ž3TlÑ©Èôóš’¼Øp¥Š-G6©5>°@RºÅ´ò<ÏUEúv•¹”š&õ:ta¶ÃW6>!{R¼Â ÆåšŽÿUÂúmd"×eÍ ^64ίJ¯Ë•ï‘Âëþ¨ü~R2&詽+ÍLwJ}÷WE¯mtbifžƒ—6×Ô¢b;Ó¾Ã#Uà¤[ÍS–ú¡C- +Ï®ˆƒ×o™ŽŸ+eL•-:5fú0Ϻ’P³už&'ãÛmH+Ë•¢û{-û§´¤LƒœêhùF+xnÀK#€k±ÓéäŽN ëAG kºe›�ðØ ²¡àËõ+AdËžíHnǦEÙž+�l ôÍM“¥mò;œ±”º$`‘§Þa×É™%ï=¶ñN\Iº¹…ÓKsŸÁg”P¹õ•è|¶Çßz"龇Åâ®t`§Åì@<ì’FÙ[…M€¿Èýdþ·…ýi/±Cçäi¦’-·p8ý.@o¢ròè§¹ìXUká„_ £Ô ƒlô¡›™³l䉣Ÿ2Ä#2cÃa¹ýö‹òó_ðå<f kkö‡(Åÿ•cÇi©Ð³«O{ZH=²¢®2ë�l𥋮Ÿ˜íˆÌw8(Ýw×Ã}÷SG5Eêa¿¾‰Ìå3=UÏ #=è0ÊOB'®Â1í4ñÛ\{”4ºiß�îjw +“1v]Ég/õ”+H™R„Ü£y[åìú>±¬e²÷¤ú×39$2ˆãá2¦sJNÁü÷e¡©EÑ` kƵZN8@×ì¯Óíšž¶,õýééöí*׋×ã‰kZSyÓi˜MÔ‹6©| Ïi«Œ‚õS-–ƒä‰…ôb«9¾„1VÕ,Fã±i¼÷*ížBîzó!}…Øý +R뺕ÆÃº4ËŠÚèõ„Ío«/sd[è©”¿èO"píÔÓÓkXCŶǹM¬†wKvR +N$¨fV^'ÄF-î~zf-ÌÓÉüLSã$÷jA+èÄëDc·ZAѦÂã FäÇz“7=AGÙÖñ$dDèµLa¾ÖOÄ8‰�_PY"@ùcªB‹n•sךzÖÀ<²½Œ€…ó´{·¨£ÒÓ”lÔÔT…Þz÷<ö^æßk«Ùƃ:ŽÇkk#[åéñ:»H4ÃíH°«ä9³«DçÒËÙ#j¾½]ÎJ¥Û«Žú~,¤ ûñœw{ÜMzÈ@á"Ðl…QDV/©- =îÒ~’wD]ᎉŒ‚Ø ÷§½uE•ç(ëŠm}}[ªš"Ÿ‹< üÃýút3g☯óºøa‡3J*FÜÚÊXÄr¨Vä1#}ªî1CºW»v·‘\e’\vÌ(åTWñÙ5þÅ´æ.d]¡ÔÝ:v-¦¿Vžy¦Ssº6;|:Šó¥3Rªs £›.f$aöÊz,…¯KßGUÈÛc�ùÃÌ¥‚Q–®~yœa×ó…Äì#»¢(•à•n|A–PžõR·’åÄü wi»×™]#>•`¡n7LS¼‚X#;ì”!¨t—ÂZôÍçyÍ€:nù#ü·(¿ó®ŠXï•¥ L3ËS¢¶ü ‡Õ.¤Î>1Ò ùo-@kÏæA3~˜œ»L™²t<8I¤éïbc@�!%p~.—·Kì_2ÇFaÜÉå®r/Û1ÕYÇñ§§Ä̦0² Ô!Ö-Iü–ê¾Í°dÖºIgmh²íù”Ç ‚Â[æ …u> Œ!_rE¬.´ªø6 2œV WqÞ¹§ rèáožÎŽçþôd(,±q²~v×ÝYê[9ÂVïÑpS…UðÇ +©"öÃ<`AÓ[å‹yGÿÒïÄ[Œ,•²ä¾‰bNÜ^ghdèÇ@.L>•>ÈèçÁй·0QÕ›b£º¦>ul%5šºi'ºë€ ²*cf[£+ê®qæC—žJ[±¹‡†ÃˆÈ…$"žk±}ΪEÛ#É6$öõ@Nzð,w0vmì¬!¤˜*êˬ[,É/rRLt´rhmñf°Ò¯ù–Û@EDƒF²4Õ,=Pɛ˞|{šÚŒó¥~²=ü¥Q`ï¨è{‡Æê›Dpr #»¥°ªÖw=¹ŽµÓaCæLUg¥ã—ï©z”è:ü8•°Ï’)¯1gqá`9‡ÚõLª¢´Vp!ýä®õï¾F +9é¯à鶘êãÈÒˆÕëTÇxÒý57ÎçiÐ5½Ò¬q«4`Û®7—zÛf3h8ªY^ ®p'kêC´<Ü9^j”ÆæcUh`P +Q}“âÚáëç6¡e2Õ1pBZ¡‘"¤ò‡ò ›1*ëÆol!ÕD-N‡Â«kõAß]!‡~¤Y9ÖïS•0ÚuÅ/1š¾Rw)9Ñùu“-ýÈv‹|h#~À½_óDÝ)É<ߎá#)œZâçÑBü¬G™/º&ãàrÕV;î“©dÞ¤y‹Îäçk¶Í{PæÖ|uâ€Î) ¡_"ïØD²™Å&’ÂÓ¥¼Å´´Èû|í%[B.ÌËÆwѳ<j<KyZ}¢‹]NWç²_QÉæ}dˆ°xv¿â[N X³å “¬eäõb# +#ð±ïŒfN‡½;䕈?}v4¶êUÊß夨¢)ŧ–|ÝÌ=Ð +GùÒP}Å×Eã^_]³%Ÿãw Z·É‚ÿÖ¾—¢=Ô€[…ÏÝ…ÓŠé×þc·á[4zêakƒ¯¯EÛŠs +Ñ ˆßì +S{Ê`ri+D¡œæ ½†§K(¶#R_éëLjï€Ñ‚$^[öÆùHܥΒ¥/ý–½¤F=Ëà&ˆÀ„¼»µÇ‚6ë«ZcG~[‰AOåž#“uøÀkñàÀQŸ +™öóÊÊ�uºÙGXA¾ðzgàá4Ø#îä[:^oÓ8ÔY '° 4s¶ŠÊ|ë׳uY„ÀNF…‹&Ä{vÃZ‡kì|eŽ„Kúã’Of!ThˆP¤Ì§~Ó_Š®˜‡ì%ÕçSaµ�õ[9V¯_¸?âRÝÞK®1û! ¡>ý™iÌœÍ0гpì`\õ"4ó )v!§»Jʰï{Lk¶|jߪVòÓ9Ág;Ép™ƒÓ~<gb�4_ï^ªƒÝ[¯ú®ÄÍ, +’“£´| GX^×ã•ua¹•In†erhé›…™:)Bóµ.m^~VãZöÚ<ó[ŠM•¯C�Ê=òI"ó×v¥PPñ †HË‘·ó©jˆð#ê]&.ä”ÞÓš4w'Ç,£%šºªÄk¡Î¾îZRzIê©ØJkÑËôµ&Mf(mðTçû©±ï}üžÖÊÛ‹£3Hä'Ó‘ž×›J�PÑA¢ÂÄ$F ¥¯çuÝ5[@~eãÒñ&î?3n5TJ¿ru6ð+¼Þ'32v¦r%ã[&»f]ßÍìÖÈvì8€„9ôY:C 阶ÙAÛ9ÙÉ—[°€½¾Õ%.Û]yèH¶3º¥©Ú³eÃùÐÈÃåŽ?œ»ž»<7›,šõK¯'õ/µãv}¢ÔP¦Õòö]¹>¦gyÀNt’à]T<áXA°{}EGTãÚpÌ‹’|ħ(ý©7 ›uHC2—Ί àDŸ€ÃÃKExySQq”i{q×_Wb`ìsHÚ¨$J½V ñGt-Îï¶Çr+üÅs3²Q¹Ó—+â QÊsA﵇†ôÖ•ó�Zl*ûPtGSqx¼‹‹ZòT±¯çÕņY¾s†x½ÍÎ@]‡„é½’ -7.ÿ7»Ùñ‘Lp=½~IÝo‘z¶UÉÊa¡^Å�NY¶jc÷ñ¬ÄDÑÃCÚYíÚùu“l °.:ÒRFÈßDDXÈi’ôœÅ +RÖ¨ôÓÓì…JföB áZ@U>åö‚Ô2Œ°†ÄÝFw/›Ù!äÙŒ˜úî!_¤6$-¬é̺KJK à}¼ãÙä\nƒ"èô&QìÀ omþ(¬F¹…×”9`Í¥G>ì7[Ì`-P*9íxd¢Òoüp4¬ï9£¸}ªˆWÙÅbuމ+4:¨ÖV+EΪ|Ô…îƒÚÓDu‚•·gþ^£‡û Ô%‚gÄv¬" 6«©Ù5ÓÉ¡5³½6Z) >‰ß5#ûŒÍÀ·P««4@×ÉPÌùY¾¯ò_[úAWé;°mÜøÁ‹ïµR“¦™áDæâÚÒZ>Ž«>¨g0. O+[@ ”[b› +ê¢&d6“”é8aVu§Ô-¬¡×\D¯<&Àþ,𠽆êõÇ+"HÚëY¾5¼þ̬ˆ˜Ëì l¹HÄ4À<Ž ¦rÄ"€-ƒÖ²²'=ÀiwKq–Yò8Ÿ®–Au'S—ßõU¶D/3Œz®ó¬«í¡\)—OîE…‚Á,gq|#®ÓéÜà0N–¤˜Ú$êKýQl~¸|WöxØ_ÝYE£òoßDž¬¦…ßÝécÔ IºI¦¡y;®¯;Õ)”x/3ÿ´‡TZ;×ö5ªñJ¾4ôô}:J½²‹ÝZe瑜ZX»úîž×‹¶=jÌ ÚÖ"pI¦ð$9›Š +ßi¶Tfž‹tµ3…ˆ5!s…ê±{ë²RŒ1ût™T³èá«’Ð3î ¯Ìyò6¦`æ˜åLF‡ES«:g»Ê´€N;öøüž©‹v© +ù"{ø‰ø5ËF½ŠŒ…¤½E~¾€<©ýš'•Çà.ß[!eÜPŒÀ+2ÜkIx¸*‡»ë3NÁü´]p\t.sqt§ËK؆Àzs±ŸN/sïWmÃrÙ0QíÅÈ;Š‘Ç+6ZÌ©¡ëoE×LJú7âö@µœu!ÿ€ïÍu?ЉgìܰîöûérøÀw—³Ïúô.„ÉšlθräF&¢LZ”¼xäóETî%Ø·¶–˜0:âý¡i–²á÷+ónó`”“GFÃóL±g¼”–\ÔM„^Ó+uÉÀÌíaÞ¥w²RŒÁ”°fGßidÀì{“YXÚ?ŠÞ'x€é¦ºÊº‘ÜåXúPsæ¶m˜=gsMÇúÒ[Ï%ÚöB¦¿’º€fnÐÙv)Ñ•B«q-/Ñס]>û“$!ÅB’´ ÑŽ«Åqk¼q„æ®{MGðiw¥â<œ¢)‹)DTJÛ(IÖ:6“~¬ßlù_ƒpµ%¢‰Ñb©¹D築T.&Zà÷;8B`^Èæ)±|Ю¾âñ{;ÜQU9^¸¤Ûb'NTvf™‘ßÛów|$ê[ÏùÙÅx (xQ¯Ó}Œ˜ù–‹ÇÔŒ?J«�’²?Õ@½ÝóÌ!`bd£Réh1)6ÅXWØ—kž’!q ¨äQzjrѹÒÕ£ùFYCaEÔ¨¾X[å[I©YY¾¡pÈŸ]"Šô¿@¥íq +%V ÂÜ–Ý9J/”6:ýÑQ•¢é/Ó@a�ëpeÛ×N§"˜Ô•ÌtþÈÒ)4ÊÅô.…gK+¤(6ÖŽTÑŸTTuš1„%` Ê#ZíößJÇ£¯ro©ÓÖÖE^©ú%€ŽœÇý";5ZiÔÝ +£ +уæÂñô±a¸Ârd¨î€Üà]û;0ñ;¥yâD«cö%X»ü¶^E‘£4Yakމã]õ”|R¨ub…ÇÏÂtÀ-BihMUž†fÄä=©å2‡^eucݰÒûÀ¶GH´‹bEy’¬½ã>1>›šÆh»QWÄ1Ô嬤D?Ù-šô‚måJ-x¢qˆ™vX“ ÝÉÒºsR£„ +:sb^*¯J=°;~{´¥Hv;€ÔG_ã* î\ç5Ý?JšÓÛT=ª•‚áÀ'!¨ jàn MbE“ÎV|sz]Iˆò¼e÷q¸ã(ÆTCÛìuçµý`*û4²Ù®Ðé/±¢ý\Ã,˜f\â¢&ëM§Æ³[Ü€Y³^’ëŠ ‰º_X·)bìŠäKªf/Æ¢Ö6¯ZòyBd.x=便ÆûÎ@ZÛ®°¡oˆ¶®*y5¦ëøEªáÒä²^˜…%ë¶À?€: +ìá{û“º¤Œ%F¬'âÄL¤²^¯—î2ÔE&6.ýñ"ºK½/¼™+Šr²u–C#³‹Æ Ì<[Tiíñ‡›Ùš�;Ý+‹\+é\j¦íŠYT³í\7+>v"6=,cÇè¬PZ».ߤ<ÇëJB]PøvCT©[üäÖVtäÓbñéÞ«9Ë^†l/8°—Ù7¨xŽëøËº çÈnލÓ+ŒZ!:k®œWèŠ ÷'yž'÷�çqaîùý±‰ä÷ÇÝ5=ܵù<³„ìû:c«4$®“ß=wùàP…”ž¡j’"í´ +IæhѦ¢+Ç5^ê¼sZ2¿†kßÊa»$f\–ŸuAá"לQÇ!J<?QLkDñó7ÿOˆ Ñ„=Ö‚=s1Á•;€"j¶—2Ýz½GY»[¦Y‡€¿Vbk«Òºå·=ºÆ;È«‚(g䜕Œ,Y‚ävôZa.xgd”ð^Ú=ǵâ÷d:?«,@™gOiÊ@Ýùšõ6¨¶Š›kÀÉÑýn›øGûãÊ’ìI1]Š»¾ëÏ8"k…DΣ,ƒaMî=±ì€ÇÚƒ¯²ü¸†2E&3?·sëµa÷'$4¨1k}`×£´cK•q’Ú–]„•T… +¨@Œ3$04絋Z¥ºý`#ZµÖ1‚)Ø5ÊÜS´?À]ì’àŸÚ|‡?ªfðþ˜ý†ùßk+Ug½“ö#ºß&ºZÄìBÖíåƒeHÓf)Ò¬ +yGÐÙGy”v¸);½ 8Ø×ÞÉI(ž¨$uSK(Ú_CZ_L4„¾‡sêy«\Š•ïºrZ;}ì¼IÐÏžÆsÙÜpúK— Äú¼Ûr„AJ!k͜崽<ˆ_íH“îrœµäC,$¤Íÿó—ý¿Ò*ó_y¢ßðªÌ?Í>¹FŠ¡u¥ëYøðŽ7y+w¸+Q®iE~òa‰ú¦,”â…ÿîBÎCdsŒ›ÀsÏæŒìÆ=‚•B&} +:íú›©<5}¹ÍoºU¡:¦ Õ–œWé÷ o^¹öö¢~Ÿø¸Û¯ æmÀ=r²¤™QÙ”u]V‡=0GħfÏ!‘õÜÌÙúÓúlL$ãu%7B¨ÐîÂZ9mËd‹¶Ô’¨=ïmTùyåa<"Žl3רS£¯ìÂû¼ž½ÿU µ~'AÔˆ¥½sÌw[}bO7HºÝ…A¨r 7¹Ø^ïsÏpàã Œj‹o(¨DØ?à„c%ý~w¨3?¬íËVÎ宊Üt]‰•Þ&ìúÙµ Ç>ÄÜcR(¯[Å÷0($0¯Ï3,²Y†(å>uÓ|–Ÿ$ì-òD:n¡žIt\sÃÄ +¦Ÿ™|èMͺcvåÛ¦ÚFÉ_?Þ‘µ?÷"^ëe‡V¹Ýœ&0‹“M~Ÿ©™2ȪS½àÚ¹âþ ‹s.‡ËæÜ_âøc± rÒC£zÂ̲.½úßÊ,¼Gx%Àò"È ÏQ»õÌC5ÆyÖ•±4GÚ÷ïÏC< aÕ•Þ¢ÛbÉÆçÝLb®U*þú’€†®X("ª×Ûý:o�N‚zðš†n½>Õ¢t°@¬cÎVðjÂhG/å5Rw¿ü”ýœWþx«pç`Á:øÁ‚‰,ÛŠ¸z|%ò~L~Ê3Mò# BrÒgûqã.h˜{î Šð¼6ÿ�¿˜iuM@;"ÅF¸@>¾Ç ÛJ슘’n¸.ô´Þ˜>UÀ—6€Á±#‘"VE€MÙ[o%FúýÀwŠX^‡·¨½Äh/ê‡&ß›îGÈ “xæœiçжl"zEÌÇU6Ü7åÖ· ›@!()¾Ø½äʯ8μG|¤oQPQ»¢úsó8“‘.âšÔ]©.Å%ªÈ¶Ž@Øö"ï[ô$%‡ëD¹&wqƒ€Ñ6Ki/XÍ´Vµ&½ë(�€Q'9ìÚØ_#QWq¤i[ä<0(Émwª¢"ípÑgr' S°Éïë¼]uÛ3¥Î±mW$%)Ÿ/xYÕ$B”sçÇÕëª>×c¢äE„¼/†öCŸ8{St9Ü ¸¶¼IaòU+»Ö‰õÀ³+%€Í#]o¾IxüXÀ^ã="õžpPß?ÎÏ’“Xì#?˜Õm g-ioOæ·¦æT’v;$-û£}GԔ̊jDÆÞ¥^XCãv/+Ÿ=Ù’"»˜Ç>„á?›uýÙ\ó_é¦^¤Qv»ÒïÌÊ!¸‘õkÞÉô€LЧ† Ò�u ·+¡§îú¡` ů¤Ý{6Ú>µ T½6�8Ô+ÞžL{ìèŒÁ�©C)õk}ù#Pcªw||n‰H†¾ÎÞsO× (Ìz•Gê„îöl [©R¯¨#ÒîGj_$Þ×ûªOÛÁßEUG.5š±`2B‹¬÷žæh+ˆâ‰UOI*ޛЇxoÕ*&U¹åÕ¶Q¡ºGrO¬û¹ƒ>ªÚ)6à6«à…²îêý0Ж¿"�«8 iU¬[íy HÆ^F ÂÌÌÃ@¶Ü/sõ}îÇVòøFÙÄj8D€Ï½$ç™=e‰r¡‹`„(Ô1ú‘ÝHüx˜¹ÒH;|Eí +æ%_«lO@usw|¬·+zÅ‚´Ssšˆ oÖΩ=jÄe4v²‘u–/ûN +Û›’|û9R‘ÿм3½‹ß|Q~þK¾œÀ¨é܃Í#°šÈ‘ ¾×þK6D«5Ö($Hé!4t¢éUòfÿr–ÊbXHìîQ$BµZ`K[à?AÐ?Ð9Në+ª)±ÒÏ´™Àð¸äÒ7Óyû‘’‚}_÷>8ÆZ#bC`kåYœ&¬ -ª°ÞÇì´Ts;XÉhŽVÅÙ_¾½Z:Ölù…P1•³íhs½Gd‡4«ÅÙ÷©˜ä· ’‹Ð aï¢ÔÒ5›mñË+zx;PÒ8å„"5õÃÐDb6QCZë¾ö�’C׈nñCq¢`qaF„Kú°ëÌ•"Dq¡E µïˆh¯ÂlùÇa2`¢»y…õ¡«¬SÜO]ۺіóð²€ ‚xb„v„|°çJ°t‰ ù𣟕.Eh€<𷳦y¡¸o_l9gPrmåÑ=SåÌq[“_¿óŒ2ü)\ž5t†8(ê «Ö=5C¼ÿd+©Â5KCÈö¾mtƒeW×y‹*6Òšw . Sj +¨«í„Ž-úZ´m™|;ðûji$Kc¸Ý÷{”b‘þb¦ŠÜ¤ù¢z¬)3VÊîW7û8õ“¼EñØ%Xë4¸£ºJ9Ÿ£�‡!GvfT35hÅ4)Œ¦5ân¶çB[™«*(÷¸MG©$PÕƒÊqáô\°mVÉ&ö%rAÈ‚©/q»ÿ¨µÇÚnã,ÂæLp]ÏcZ-ÝÍ>y|×,“T±µ›o™ÂõÜ+ÅØ]e¤[µ˜†[Õ _'mª´üÖ–W-Ï^¥a: Z¾EUgôë±èy‹‚y$”§ãê™g?åäAiP3ïVfçU<«B¹}8ɬÊãF¬¸àï¿`jêñf«ïÔíïûV5s€³¨Õ‡¨ÒD¿Ùbð™–x×d¥À3²…")æÃRÞåSöÍÏu~ayëüÈ ……›{Ϋ੫ò>(ÁWeL}¢Ø»ï6šPv/ø8ÙÜÈÒžôMP—À«¼ õ«9Óßzm£-®1¸û×uöBp§. ¼à½ãVÐ)GQ—à!’TŒƒ™- Ñä½<GÄ Â=†ÌŒ±fªµæÖƒƒ´Ê�¨Â¸!J(Æ¢—® +{Æ=g‘¢¶ï¡a´^,÷óé\ô2å?¶F™®(äZ÷§ûzGß_{<†í}íl×öP)4dÑ™GS͹ï¹ý T´ðÆ>À/}ÈxÎý×ßCÏ95èùlè/¹/¥zÑ5&0¶ +¢ï n;]¶JEa¨ú…ž}¹Úö‰!„¬±7ËšvŽœšž¼j"Ör×AW/h§+¿ra¥¥ÉéWçt°Ò¦Úþ{Ôö|âêU0ÞæJûÎYŽÞH·¨íÁKÅuGA½)C"ê;ÇbÓõæJ¢ùQ^hèÀC§A6Û#HÑ£QÒæ1zõkÆ£ê®Çé$ ·SÆÖö0è%—º`ÃgºCGìò;ðLûù¨‚WUòNÂÚåAiõ�Ù\=€ªV2£`É~ R¯Õ,^YAÚpõ@?Ï%lÍjãîÍݹJõ¶ûµUZöÈQ}¨ÿŽBýz|S¨OV|[œÀc×埿£’åõ÷ª/yð,µ·ø…îò¡4ÁrhÝœÿ´?†šõùŠ�h¥R* +3‚An‰]=”íßK¶ÿ>_nGƒFFZ¶M‹AÃ,¼´×ý�PÑDýûnée&ôýà±E#›¯ ^ëÖ:5æ,•r‘¯¿u½çAØ7ó¤Iê`Ç…ßäXIÛ×Uâ.O+Ƶø«§0²¿üÌA‘‰�â£ö*uj>¨ÒÓøñËæ³[þu”Bãg„Æ×P¢Õuïµvó>ílÏÛüÒfè¸ÞÔï{:S|?¨¢;; 5ÈúízS„Þ@œ^Íúž…g8|%›Ui{|µ~È«×8¯<žjü'±üY¸º6Tp•”›Æ]^g"”ÔVæ©[ )ÞÐ{£×¶|"+ðºÊ^)§½2å]©q;B¨íP,ÖàwÄÃpù~ÀŸy‹säàyÕÁµˆÝŒ¢ž›’í±ò5õ¿8°)¢jn?AÅ3C®×ÿÕhKV, +òkÌC±¶ùÕ¿"ô½½Ôɱƺ†ÉQÀþÅ¥¸9Խʛø9ˆVÈÕg½²$±KÝ…©HØY*¾t¼¯lÜ¿x°Q' a¾GQâ’»¦*M‹±ÒОd?Ƈ�“ãñùko? +ew¸rC™‡k£{ZÒÙ¡Ÿû*=UE{`Ѭ_” ÅÛŸ +;ÆO#36ji[–Öµo>z0@½L÷ÐñùRz7Ë-àÊAO•&þ›&P�|P„ï×#6>#6þlm¤—Ztoœ#šÊž~jäžZ%–joïI7âšqðâ—îÔ9ETz}p»x-Õ¾h*³=7ƒ¡h`µSžö:P>í³¬óÞÒ7!€ºI7iíî.6?´àôp7zɯƒQdwPp‡½"ʼn¨¯ª! :þ$4PDªÆ 3qL³’Ý– R„ÈÁs�GEÜ{D‰`špàšÅ£õ I„¥$$/xSÖã@«�U’Â5Ðæ—8j‡ˆàcL|ks4â™×óg0°%POjÖÚàêCJ¯¿cÍcl¥ +ge‚Ï1…Çf„Ç(‹Úavý.€?õÑjŸõóû|dó•N` e6Ó²un ü)6ÛÍ‘äòÑ\rM~γ+µ¾pÔÊZ£t¶¦ê®MdY‹Ep(Ö¯€b©—ÿ~à÷OǦÆqLÊïQPôÂ\Ï€Án*ÎÞT|cóúñiÖ~‹ÚíÍ0Mðxu]/Rè~Èn—®:{YsÃ+Ž\%ævkkEŸÿç*ÀVY´Kû�ÛÌYØ}Ò‘è{Xºì×v΂ûeœ§eÓ‘-”–áú¾Å`‘ +‰l-·2ê$Ù?n—5›!X bþüÆcx‹ø—Ú;‹½}|MŠ +ˆqSg’€"ä§U0+ô+×.|všZX‘;æ•ÙQ{EíO;PÀÔhÏo#âpV€nὠΘ´hä±^þ—Û"’*·*…{ khO¨‘‚yæžÈkð¼õ2!‚St¤çÂÖU½ö‰la‰Âvldh¦¸)ÌNüªi4IÅoâ¹Sއ°qK(qIxŽA« 4e ¸i=xRN£6)ÝU‡k�ŠwÜv6ÿSïêHà¼"¨ÿ.ž*wûã'w×vj¨Æúeä5õ˜Z‚´½åvÖyX,×7;–wÀ(÷°2ðœW~(-:ü”v5Ù2 ŽÂ˜ùáûÈJIwÉóÎÒÈ—¢¦éÖÃj˜Iøñƃ7âñsö]§Î4Áú íL‹�MLËÆH¤µx`”«(•²Œðõk*|ÑÓ\ÿrÉŠ»zª ³£‰$™=šû¨¿GŒX®´ŒŽÒ«$™å~‚&Á™¬¬ß& ¸y5qŸã(8Ö ¶+äáøiÓTáÖÒfa˜%Ä/ƒhÓă´ÚóQæ__B^:JžÈ Uä¾ÞØ)Îý(mªµÅçKhÚÜKì¡ÁŽ´<&X÷=Ö¾éî8ŠžGE¶½jF€üMRå=^3Ög”“µ®„óè¥Å{FnqDVÛ[ÐZ¯Ú®AŠ$ +F¡·ÀËÌGbÇóGÄbMñè©ä3@5´ãUÎ�Öà¶Ë=Jg�–”Dº`̧ý¶ÒümSbòbL}Ó%Z[ôÇcö2UlÔ€*h&ˆ‰—�ÅmV�à]#\!q:eöìfV„ŠÞ mîŽ÷óýãBX¥ÜM5 r7pã‘+);TÌŸu`›ubc¸Ç±ç«ë§üK{ý&”µôLav[óëØG‡uUáÅÔf–I +ÚõÚOjE("/ÅR êt^‘í·óÀš³ÞBÁ´~[¥Û&e^ű'f›í†÷ëïA!÷ÒFà–.ŸA–DóÊ01^ ™ìòDtéß"ódo]æÙÃáü¼…¡…¡°gl˜§‰ GAGð¶´ìÚÈ:åÀ‘û/ìÌ3@àÔœŸ>ÎOϸ˜#9QŸ’§~qà›/ëkÀœAã«Ø³F�9Ûª¶É¬aG»™ƒF‘º=@7ž)änE˜¶_<ð-<Q§W²M]Gðæ …Ž0IE½ïé¬,€ùèÑIPü-×u:ìøü”²lŠ…ÿ!C Jt Ü6o9‡ÝÓ€çqµ=‹ÊÚþ^Jýá+&_r'g¹| Sr;Ž3¦¦aàB…Œ0K*îû<èï„Ò·¯¹ÆöV½§5º3¬ÎÚOKå-Ÿtæ'`ê[ug +ë|SZ©óÝqÙì%<u +°‡4+‘„µèÕëo³ôRR$ø%Üc*v2l|ÔAQŒpÀ¼tP ÈyŽÊš·«Ð";Ró—ÅH@}ë¥Vv>À=®ý~¯H¾GÌ+Zÿ_¸ëÞa£´/?Âé�#†¢¯j(QNÄ–¶£¨³YÂ|nW`€öhÒ•€ÒúFýð,O)}M{TÉm—6¸Ÿ§§ñѬ�ßæãÁ’M`aIÛIZ<ÁÛ¼ÎÀ%Pw‘ÅÔŸóqÙ p|Ø٠+ +̬qåÊšZ)G‰Üaþë™ ô¸•Yê¾KÓ~¤;“¥f–öèùÀP×P¤pú=`ò¨2_þú˜¬ +®2UŸ>å–dÿ³8zpêwñëq¥> }ùÖMå="ïÂ]g&ë÷óœÕ½@2ä2Y¼Ì=ßPF»õA€tôð¬¿E½é–Ò…”ê¾þÈÉÞo°ì³“:{¿ku@É÷-à5}èü»+mLJӬå/25 TÁ:û~FA6ùêú»Æ\�ºT%õ‹ƒØPèWé`~+ÖÀ-ôA›‹œ×Ôdk²!ˆÈJÁí3-ÅæuEÉÞ!J˜šUÉ+ç £ ‘¯â'„ Ô”Œ6B°çЏ®¢uZõžVŠîþ^WjþȶÊg¬7€]£l¢Z*¾±EpúÕFj¬q.¼µž¢VŒR`èz»²63íÐ7n–á[SV iMÚ—×{D†Ô•s²»=LJó\£~®’bŒ˜ÔÛ[;b$‚•º¿ïM•™½xnƒŽïY5Ôqè¬RæÜÏR <<ú¸L\h¢žécam6jëÙZ™ ¸ÅZ”ò:ºÑ¿û¹�5æGÓýu\•ž ¹¡ÄìQzñ(ôÌÖœ{œå!7™ˆgÔª5,D…÷»õçi%¾2DCñþ·öá×{@{HrØê^:ø{ЩO{ܦo%l³6¸ÃÖVöw zyù¹ä/„ª¦jׯbm<·ù CÊY€|†Öãd¶Œ' „S )"W n"|ß:Ø�¡šÂv=\丙d¸{æJR°#”ÃϽxéõsºäi!Ó”-ܯXÝ’môV¢Zô@ãQ.toFG9áHºBë?ƒB;ƒwÛš”QZ0Ž÷cíjŸ"öƒÖϱ!>÷àݾEÍ’ržóPàêµ®”áV ÐwDÐz -ÒÌë="ˆ+© g±ßú=J³¢¨æ—0„ˆ2•×äS8ôò‹mš¢ÍC/><Q÷öwø;"†¼_eŒgè-Á¢‰u¥‚“aÊFø½Á¶Ä€ûÜæ{„¥‰µ(~õ_ÔŠ~uÁžGªaåáÓ�"¸b¶Ñ¿¡Õ£âî:í~xÓçˆrÕkË–«o?ayUÚÉ€½Õ«4v F\å'UŒµ}A¾-¸žü-ªµ¬ãÐ[¡!ôGyr‚¶*¥~ Wº+á?+T�8ªÔgÉn%¼Xí2;jÁÀ0° Å<é¼Ê‹È·”‡ŠÍJý‘à þôÛÏSròL'l½d½«¨¯) <—\3홼HþÖ„F (k–Û]Ê.M…¥6¬ýDJïXæ·ãý@5Òsÿ~PzòÞ0˜Èà’ŒH”Ù½Nx’)"·¬¸ÒÚ²Â7ÖÆt•|WÆÝ@@À3>Fjöë7±£R‚û9èËâAÜ*w£õÍÀàn¿þ$Jç/ ’Žû')¹ÿÊ“m˜¶Î_²lý—¿£]óõWÿæë¿ý×?}±öõoÿýþð?¿þêßýõùÛ?þñïÿù÷×ÿûwÿéoÿá÷óþéÿþîÿãwÿáïþáÿñŸÿðþ)ýü‰ÿïïÿéïÿöÿw¿[—øÕÍݯ;ø æðæú/G\×—úIÏÏ•!÷X±©Qž‡×f²àMêJ±‘‚È˧å-.“µ¼ùþH.`|7¸ñ‘¯<”M`3|ê1Ø'Y§o$åÒ�p ñ¶¶lžÞ¢ˆ�vJĤè>ôíÚ#èbĤöCºÃ}\ž`Åܡ⳿Ôîá%ÆíüAšJüÄÀñk='Xv–´«ñq}DhÌ zy´¯.¶ƒÕ\ W¶#ŽB¨R „ÑnƳù�ØŽ¨—‹ƒöiô"vP¯9‡ŽKs"JÇ»XévJHÕwœ¢!tï“ÊyÐèk2â€Ô½6ãJÄ©`‰ò±ò"(ŸåJH, ÕØÖn˜»ú™NÝÀËÖ“ú Ù@·ßdSôæ!z~d¥Ö³L§G¨r™O@%óä‘õá묵æ–5£˜ò"lz÷*‚Ì4˜‹ú/R^§=£¨r1ƒ‘¿qZ<)eómlo×*2®ˆ�³k6ß±:?I'‚¦ûÐ;æ‚G|5ú78_ÊLE´îàú¹DãàµÃÆ&Së©^)®`îDñK¬¨“NÄp½³×J¿ÆÇ×®Þ³Hý%`½h”�à½"&zû¯ëL´>!k %Ô#;HÔÐGŽ:~žn=s¿kÃIe½¬Ü ,Fî„Í+Àö >¿ÖµS¤ä>غ4nóP™~}í!ŠŽ´±'þ!(ŽJEXϲt{þîYçðm’0h>ŸÖ‹ÀŸ˜¯¿a™tÀ :}ЏtÆEQåá!¼ÝÍb÷úÆXTÅLu’²·gß‘Z»å>:í1¦Úðp›ïù"7ØZìa›²Æïç¡~zøF®©ël>@ÃuÃû! E3FNA‹Ÿçwh߉K3ID.D”ÒÌ2‡ARzVЫò!ŒKcÐ}÷‘ÎL@§VÕ§;Š‹k†²Tdv®'½ùºmLŽÑ çØ¡)'Z :¦ï{"Ö°$‚þœHÈ9Âã1âZ«�ç÷s¸0S†ÊD>gàR7PBR÷ª¼ÊáƒBnèC5›ç�#ëd¶nO‰ÿÇA^{¼´ñžÌ °(0…•oa=Ùf $yâOÈWC!”>35Çõ¦¾dL‘ âòÕ§â`ï§°“‡^Ö‡¥6”p +?D|¼oA'ŒL!*Ù²§¹“=à²:ÏMÊ"ø©‡…ïâ8· +hH«Ô8¥/Óx¤{gz‡gÁôδ¬1ØÅºÒç±U(‚ÇnðŒ¡ +(KCŠÇw¡8±#ÝTÖÃÞÿpçì¦Ãì7‚úŒøzÜ ˜·àðš&ŠÖQ·XŠa/“ˆÄo"[ BôxwÞL𛤠\at‚g5´°1l:Žm§Œ)²ýÂkß·¸¾ b»“kñrA<A ² Ð<…ëà‰üvÀ\ì +v^Ë(‹¼EMý ’«¦ò˜Á iÙ’´P6ž•´l&>û#bc:~<=6e&?ó0ŠLÍóð‰ Ìž +¢™ Ô‘êÏ'bO~ú1Ë&Ç‹WÁ—˜ºÈI»@‰0Ó6·-„5¸" h[sÆéœ hòAð{5…¶Væ.¸±mö2×âOPå˜�5O•º˜œ7ÜÜ{M75±5"‚ +:øcÖ”èÌJ3ê6‚iGí¯V½<¦V†Q-N¢(¤ÐϤK[342}'¶ÀW"vnn“’B@‡&zp(8x¡£ ¬J ´Þ©>Àúöj‘êvßÄq‹ö¦ÚèZæä†¸ÜúæÎËÍ& ˜läÖ.çí6{¡b†ŽÖ‡ÉŽ Ûú©¨õ8WNnÿž–¥e’GM¬•F$êÔý¡¨p·ÆîÏ’*ÛÜ7¿å¼ó)@3'Ç|:‹hú6 À‘ƒ�×grµnçÍÃíÇu(´¾ÖúnHS‘ÔƒX=êîv63'=ɽ%¦²b^ŠÍdz‰]&b<ƒùD*¬ëõ9Í©–ðÐw)ë:tçáq󦶯ßz ~®—fe®Aë.‡Å +VAå ×*o;/Ì©IàEÔ&¤Ü-áÕñÑò<qät•É;Jý F(<,"`÷ÑÕ˜ƒ:ö0B1h¢ÖäÏÒ1¨Õ‡Ò.¬¹ˆCü±ì䟽"d§íаyÈ•æ.·Xîé@† òã:GcdêÅ®·'"sPÆT§bàÛŠ“…^L±Y”WØ@ Hgø-Â@lC6CI$ ’oç‘vÈüãDÜãŒF#•"¼)õ²åQ–#ÖáÌ )Qw¢`¦u„£ëéšSó))l’ÑIºÃÓQÞ¶Áê&¿%ø"Ö̲Ž"žLâ"÷§Fe¸Ùt˜ ZÚáiØÅ@^ QL„Žéª<æB'ãdEì<Ÿ1ÌnŠðÕ…¦“ǽ–c µz×Ê[³ +†ô0îv´ÿX$U‚YRßz¦hûLçÚˆ1Ìæ\00* ·6;™= -²0m)7Ý%9p¦Wsÿp¶2uˆÜ%ó!ê +þj³'»n³ÁmÝè£:Ç“k¡§£k}ŸY÷vú#lÎû- ßÉç“/»Iö|?‹²‰£©†7"ü†&P÷ƒÝ_ÿíà.ªØ§ÌË|SeŠU´ lC›rÚJnruŠš~²7¥Í@È)[Íö#!ê±3…P2F Î&ÀܨšÝ{]ÆÇwëêµI>¸žá44GÖˆ6GûyS±¡fÅò"E?{l%;ä gÉnUbMcîU¸�x3vá³ä³zôpyäŸ<€ŠéŠ—¬•hí#.Ù5<fúùZûǧ€rRÓ¸èIÙÞ¢îC¦@Ñ–FÓŠ'Òëñfð;�S¤øÑpï®uÖ7üUDŠ(tôÁÁ÷l}ÞÏ.ÎbÏ…ƒo8£©½Þ#˜·"®Ò÷&-zU‹ß£°˜B…èpó ›¢•ànCŒWÒ6-ÛôZÆÎ„Ñèú×ÜùkME ˆÅÏu%¬H¸’ˆÎS£€žÈZµQVrnYs|'‡‹~«#põú•ÖÞ´¤ ØJ[̵òši´mÂ(¬+ïb]I‹ Îb÷d”¸.ä’ÚÙ8·úÎô—°ÃDmÀa"¾!5@«bzš¬ÝÉ,ûŠŽª7Þ´ÎTq;_Ë;kRþ®,;µ1¸(û•·¯ßZ+Oe ˆÚT„¸{¸ÏÕW*7]Ë“½òJ-ÎxküŸ©:®-Å `È"»K.V/Qu�x"øóy; ߸DtŒ`UÅò†Te–Ö^¬ÁI6‚A`Y«!v‚ç¬À·%‰¡æ=Tí•·ùDP¸šl7]›± +Trâ•DæÏ§LÏŽdít@î²ÙÇ”¤èŽ0 ¤unr«IŸ‹$`}‘Å•ûÔù…è%ÿ¢3ÇÄ“ÔJ¦îƃ =gÃÉ<¹Ö‚)@œÒŽ£¡¸ÊZ‰bv"ê’ùG”KQG÷<pZî[•ˆX½¹L¸é|§ù“�ÉÉø««X1úw+„v ´àF{oÃxû<r!˜+bsxctϾiŒÉ½ÙcõºÙm«,o³¶<ÈÄëJ¼Ÿp=ì&¾x2~cö[ObŠf®/yûpíÍmLT0˜0G¡€~l‡4œÜ`wmÈ +•å3?mõÄ7“Tƒ@3µG.(ìÂ:¢[ôýUÚ0Cñ¯eôØ]H· ‘×WÚŽí!J³qDqtí¬šÎƒ[z[w3lÀž?ßYlOìü;Ûñƒ’-šàtK©?N¡ÄJ¨s¸JÉÙYQrŒXÍóÈ_ºJe}¿ê‹0¹P"¤"KÄþºÿ3Ý + Ó,Y].)Cùu;–7 Ìx ˆÚÅá¸Ê¹¸¼G05…æ|?ˆOqD'7ørëþ¶Ÿ„g¬§N¿y(JIñŸþÚUM|*}WPú6™ÿá…šÔAÁ€HÚ‡ó ¹ÅƧhk`2óQ)€É†z‡%Ì=N_"hdª0uóñAGw8�¬,.”¿`¡NÔÝBnFWÄ"Ï„F3y}°·…™z|ˆð«t*�kØS^â‡ógP~u&UVn0΢eÅ~ˆ�’eïVyè]¿ŠéxÆ›[7è‘ë·éP ÖúJÕE#:úCö{Ž[ mûî·¹q®ëï^iÓH~íDÖînûx8O@šü¥!»eÆÄT�¹è=hT³Æ÷®g÷Eÿør…ª'¨¹D"¸Ønîo`ç_îǘTI¸ÎÃÒkü{Ä3à˜;pÃeçý<`h¨7¨¿–…À‚—UíµØþ$Zô¸è%L;RsVîܯí!Þ5{¦(G” ŸÉ¥Éy|Ç-¤œF,GƒÍV"ìjF.¾¡«[®G1Ÿ(»£ %—2 +œÞæäéiÖCDK_¡=Ýô´C.d¶ŠÐÕ¨¯”TªuYݹö¨©«øÀ¬‚O$Û ¸²³Andp¢Ù`öÑB?ÃÌåzü¢yã÷÷€\4׎"ÿšnÏóÓiHÜÖB°~í[“…•q©V¶ÒxÔ“>”Ùâ†ÆÞ³V¿G`eJ$UÆ?óoÒ“¾rT/À9˜b·nÐožÛ”®lÿpðpœ4Í>ïS«öûß#"÷à®]w\é[Ô( 5 8’ho8fHHvQ\n)ùÀ2b’òã~Z~´wü=àyW-%~?hq½$ò;ìy¹ƒùþg7\¸‘lÒ1žJè÷(¸V¾¯Gs&qð!a&wùŒx‰®X¬`#׌¬õÄîö-"Ï -¢0xgúvž®Â,ùÚ;²³YÙÏ©ßÙÅ·ªLÿl#)1°ýÿY{·Uk–4=ïVÖ¡}ÒÎØedÚ…1ŸØ:jD© ·ZÈíß½ãyÞÈù¯5Ç”–EÑMÕ?¾™™#GfÄ·y7ÛÖé�Ämп¢8†Z8iò7¹›ŽeçØùVê;¢[$p[n�p¿6¤N–Ç)…°,g@3ÍìÍN}‰�ŽJ@ºˆXÙkM½øäŽ1ÇûMPØ©ûÝϲ4F~Šr1ƒW®&ô¢0f3[a˜z¬"Fïhæ}~ìqþCú"Wþ‡?_çµÙ'´@¤ˆÿ¬)šš?D<‡K_|È¿òÖ?FÃf!ØË¥ù¯ –;/ãÔS È™NòUPóÜgg€2ŒuY�¼)_Ó5ªÆž µÚ.�ÇÍà vJDGUµé€ž:A>°žBO[Ý!Ï× ²T)õ†Ü@>'˜äßÈ)Ç‘Þ,”’×û£p7j¨ÑFÐ…Ù{Éxs¿’Fé§æçW÷¯Ð*D gWR6 +FèéÎÒE +aÍü@ˆ±9FÚ¯nye¾G<ƒs�¼r&‰e$½ôe0ZŽ˜Äî/²/”þ|ðõøÞ»Ò+½~÷W´¨ðì^”µuÑNU„* +‚ö"Hn¿yÚ®{gl“=$JòzÜÌ—Oží$F{d35¿¹A†rŸ{=צªü�¬tÇNJÉÝï}l8ë0ªV÷=ˆö;oу ómƒ~E5—B_ÔGÄO{àGÝÎåÌW2 @šÕíõ÷Q형½Äb`ÄÇ{Ôû²-Ä$³Uˆå<9�uÎÌ¡rª}˜[GŸ(`®Ì«ÉÔÑtì¼ÀeÝvêoè~ëš„2ÈÀ‹ÉùÏsý0gHÆéÆpäÌ }€XÑ7ŠÌ¯þÅvÒ•œÖû]}Øc#‰Ò!6fË X%âcøfC‹‘†–º;Àƒ¦¶²q©¿ÕÞÉfVLW¡ö㎰=÷Ññ´ xQ½Žß1”5ÄÄ j-¹ÏŠó”Gñw$€¯fTf¤44Œ`v´(—è]¬ðsˆÐ¥5gòò†¢&·s%„|GÁ>ã8P$¼!è)L#à•ñ:ê|@ƒÁßï:È„T™>5»Ê,ÍúåϾtUÛ骂$^>y‘e¸Î³«êBU„’€Ïr²÷Ž'ä-w‚öc~¢PƒÛQÕ!a$ókŸŸB#n«4Œ.Œœœ^±6Þ#ͯ3ÙiГ–ä5Ôj$j²W'âJÄê‰�\OB(9“³ûeN}«4A„Ù{ÎŽPú¸ägVÒ‹Ûg6ÇW¨º òW¼ÄHF §#¢¯…¼¹Ë¾ž›MË:LoïSÆûV}wvÅt'E’ØŽ@uæáhŽ=€ Ûø)ÀZŒW¨cixF:ߣ´Åm�?Dv¡@=imÞLij¿ˆ˜J$ö¸Hª7| Wß'Þæép0Ú½Û9A»H»¦°wqtE|ŒëáƒP Óí¶²1!E×y=™• +âÜ¿áã!Ê™âŽê™<7u¶ˆbÂîqK×Rè‘Ìta@ˆNï™ +ý:Ï$0õ³¾Î4Õ*ÐÏõÿœâÅImõ•‡íÑu<#\ÐÙŒp_>‡C)õ¹Š»tz%ú<.ªþ$0[ø¾<”; :En¶¢NÒ×ɳpµ|t>çéH�îlpGé(™(^Ýò8¶A‘Ï ¡It" ’}\ÈìV”\ +ËÙ¾”òÖ“FÑ&ª*ç‘iºôäL¨¼s&QtJ‘ö•Fy·œ�°Òò»:üúLW¼}‹Æ£ÜTG°€ÆèÌ'ÇÓºçAÝχõ{r›Þ…]–\×û0}Â*Œ^ùÎ<†ÅšIÿ#@ +‹ý¾!Ò'ÑË=L‘Ó›O‚üHßþô¸¿ÝÔùôã({®r’˜Œs£ê°¸à-.÷ú!�òòÎ]“×Ç~FíäTÌ3@O×~ï¬Jû†áiˆÐàÎNrk5YW´ûîŸùÉIbx%©çüé8ŠØÉ•.¾Ž}[óìJUÀ"Pùòu¿¼~=\ˆj±§ÍìIƸSìWØæ¿f÷µ¸2*ànÓråj¾ÈGø×o‚XþŽÒŽ(F:<!K̘ÍË¿˜{›Î +D£:¶À›>ª¯æLbLq|GÅ÷›áÔ#ÔÐÆòzØL„›]÷HÄ¥ÈLÎ’€ÛÕú¦Uþ« ÌÇ}`=_'²áªª Æo§›`;fyÏ;´é¸R ~Ò(ø´<Ï™aíB´±â"²È|Kù>ƒÎÜ¡i–0¯¥>v›Fw¯ûˆð9èç9xQcQ›@s±y@ìÏsÅ´L?âåÎøÑyÿ^i÷ý'Æò³|FüõàêÚL•÷óÃqÀ_±—ƒ¿šD蕞À‡€&')ÚUŠÈx4IÔó‹7ý/×`€Q÷ðª +9B}Û꣧>Çg@¯êá>jš¼¸ŠïAèÆŒÑrÞUUs_šcÔÔD4ºÂ±X:‰¢’‡Ày!ÙÔ8ÕNOu9ËÜyÌ!Ðÿ!b/YÕm?ˆp¿ˆ€¿òÀ\ƒÌp¯,sFtã×™²ñƉZä£}´ž´‘ÇI÷°Ä=ÿ ¸WaUεY!âqiÜõåûpœÐ?F>Ôd•9É„^gÂì\€}Ñ|ï‰Å.P´šñ{Ä +ÿt!Ú_£á?D1B®AavÉA© ÜÒò#Åý¸ÒYT¾ˆÅ†ÃÇ= )–Så§¿FEš‚S†xtiA$‚•½%¢}D ß¿€øŒ£p^DT…ƒ)âxÿj°ªÁP89(ÑáÛ2Y û<Àþ¾G|--0`�}2qø<OfU°r™UM+j¶šán×»×ÿèòê=ï¾C+݇>ÇüãÁ×Ȳˆ!Ù`/Œ~PèÐø=êzNd~„Èà3áMuÉ×™²hŸa`DíÏqîGP"Ú +§W|‘€’)ë¡øéËì|n)×FÀúlwwØUýô‹OmÑáY±:í[6d1ì×ár‚�"PrU¸ú÷ã܈?o÷…Žx¼XðzKÇ”©ý ÄQ·Nš&¬ÀÎø—oyÜe£œ¨óäðߎR¯ôQšhæ§ÓHýU!X 8&Øw®ÃQZóÖÚ¥¤ßذˆÓ~è �|kjâ€Çf&EN=.fFƒaX$»3»ª¹Äv¯b»7'hÉÄÐ|"5ÆwokP^.^æj,žZÀ±N*V–W}˜Ò‚aCã[²r|FRÕ]Á˜Z,Oô=ª©ýKw ++ŸP0Ó�öZÊOˆÁ ÷ÎëΙ>¢–œ}7•As•>ç·ŒF;¿0C~kê½û +'«|¡ô.ºg”ê@ÿ·¢š™å8ñ¸Îð/HŽáªl<h`ä^ÆÂdÒbR¨c€\Û×™¦Ú +â´KHp;ê–vÁµ(ìÝꈰÑa?·æZÐn +ÒâŽ\ÒäØîõ6am$Ý_÷?µ\^ñ@Ò‡6;kžo½ØßC_’:0ÉX?FÌ¿{}N~ø0*3M`¹¿ C~AÆ+Bú÷Ü—ž¤p¿•éþ}þõÖ Ã7z@·âq¶UAt$÷™o5ja_-y@ÉMT0ægÔ¿>—¡ƒîʾÁÙÔ\˜¼¤¶‹¤¨Hñ¸¶¬™iÜ3(ð[óÛó±·LúˆÂ44AtZÃQG¸9¾’†‰$«-1¬:0ŒT}‹x2H|d´Î~8Îsh§“ ¬üúPÑÖCþé3âcëMöú= +A©xHµäÝÖ÷Ò“.¬j7X ŒÎY;R€Lp©¸UùLÒÚ=¡™‡æ/+Ð5ªØ!ÈkÌy…í€MÓ¬™öâÜû¨k1RÆïßC ½/@‰‰á¤|`9D\å@bkäà,é¢j@º;~„7gÁþtgçÿ挸ÉXq#"å¶FæA©#‰Z$Ó=,-H•“ä‡5„?ã +SñþPUuéµÈ¥§óqÛ}éŸG9ƘäcYˆW É…‘úù!<üR$ ú;ûˆbÿ°ÑèÉ€Þp+PZ4¸´‡;0¬�Y˜ ]ÈÀÝç~ëÆÞÄö‘i͸€Ü ôò€F?€AC—W;"%yáýä%ü >ð*ðIž/ÙÿÀZgÜ<TPRFòÔ^®e9ô§ƒÚÿG?Ý(,Ö¨¦ ò8Eê±¹j?däa³ÌÉ “÷’”š¦Sgî³.²ºˆ}Ùé›ì©Ç‰5âB»„4ë¦cI{à²#H‚„¾"´rˆéóº‡|¬Y5¶ó/�¤¦…Øzö<M.kØš±´”<3BvÏ“‡Y_°æ6‚yÏ=›ä©]Iô"ýu"ºøD P¬FIEDúÉqôËHg<ý˜�‰ažÅ) ÅÝ]_ˆ0±K¥NÔ»HžñŽA@`öxÿ¡§pÿëAÙ‡#“¤~KuƒŒ>þr€2…¾Ü N½gAJƒÝ‹§ývo¿YÔ.¦^Τwr +^|o!›ìí¬SœYaãH4Žó8¼Ví'Œ]–RP\ûsÐG;û&=çßÅšáEßÒ–# ÝÐsãPõâÆ‘ûMƒeXÐ3çö:,UDÙþ°ŽüôLËø�²$ócÕ„ù`åÉêõÍÑŒ¦ƒþ^'ЦöD¼}L DÏ,°ñDLs¡D„Ø>ñužˆª»T¯o.%h—ŒP~ +“%{ rø¸„m™Ï³è)CŸ[¼S…§$¦Q:/EÜ[™3U‡,ËôXÎå=t¢à¨A!ž~QËm4apòbÀ,Ô…ÂÚoŒ®ß]r æ0‘H‡Æ,÷Þ.apÿ5¥Û9¤öàþtK¬ºuŸ¾É5ö{ŤlÇ{w†C®Bɵˆ3Š¢0•+^¹¿îDÐ$PÊMôᲬe€Ã@c'åõâCJ\>Ä»2ЦNíŸ:,Á0AcØî1ÇCwŸ—Á5Î nú–³êÌõ½ËŒ²äLê3Ü<Ûâ«rX#†‹›mSÐÏÁBÏ�ÇØ+•èàñ|¡S;ƒñÞŒ ¦wÂüFB õ, $&8E,øüN»GµœßØ|aÿÆÜEHÁôÝ¡ÜÁ‡´UAØa…¹·.æ—üJøG©X6�Xy¢ã4€áƒÞ']YZD”o¾ÜYOç• kàã£ÌvõÎ…ŸK·+.Oô<çîôaÌÀSåá`Ó€�F¹æ/(º]ÖÛ¦Ñôkc0 vƒ?²¯Í¹»´9ojÛ·úYÃW�õ·ÇŲ§9ô©;3±Jå¬ü'°Ð·Áv°_‰uA[4Ì"Õûs…'ŠÉ<Ø'; +Ô–÷n‰ýº5>JDó‹IýðæÂôØlÃ9‘_tb¾u%áà‰rµôr–ø g j‚>ZNc7ž™Ë%,pðºÞª˜%ÂÁßítæ¼ + }]YæyO”6ÍýP†î9ÿ�Õó‘ïp¾ˆTÅ[Oßþ¸Ø^ˆö/xÞåJ]ƒ¸ÕNj.óˆ¡0ÝÚE÷R¾6eÃ~!÷É6@6@4î ´mà2Ø2Â×W-ÐÌŒÆé&uy»ÉŒº¯(¥4y.…‹¢ú§9Ø›Õý¨´ƒåâ¿Ês;¸Ôˤ£§÷S‡,yõ+iï00£ÇÙ81kõ;ë3_~ÿ(½T* g¨\‹Ç¯¿$‰†8d0ÌÐòŽ•ƒðÜϳü,>¤£…¾¸˜|Z ™C]ùNµ ˜K>H :âF°§t·0Àö5Ú6ê —.#F9�ùãà Û/ÿ2Ñ„SìóÆŠd–½ð×Vfç3¬d7 ›ÊQ( àèf(*ÝÌTðg¡{2º¢uWã?lýAVÃõS9:ª¯G“$®§�Ûù„-Œ ·ë¨’šK +çá +‰ê‰ÁäÀ¼Â4/º{?Qyä;+PØ~têþI‘÷ +Q +(¡†�н;´/fäÒµèö{••oC‹qNþÂã¡Å™UÂéR®^Ëï#hbº ´çB,Ìw�Wž…±×QÏ7V +b`{r΃^ïXM‚óò>Q¡.üØ~„6Ì”“Ø[îïÏéO_‘¿ü ßJQE@~à°2ìØ�ã ˦/dÓ&ƒkÜ5cšâ0³ËíbÈm[ùâKì\Ïqªü €8¡°žë97…¶a‚/zjúB +TÞF_ipŽÀ Dþq[ʘ,‘Q°ßø£À¥\â_bƒ`@*júB÷AÉÌ´)Çäq¨%ý´‚"g“ÜÞä„#447yÞ–ƒ†ƒ(a£bÿiuŠ[g Àâ$ŠR¨IV{Â6/Ö-É iÏ‘ù`?|å´bÂQT5†=ÉA3”Ë Û/f2A—EÛnG¡ù"A9Ñ¥±Ÿ«sß@Êyµo?¨ûý¤ðëðN�øÍ'‡GSÙ4˜ÐKκÌG5³#ÚÙøŒØ¿(ïÉ^tyDÉ1é¯Z9¤Ý‹ Ì~Å*¾Pl®þ7`Üþœ|-éÀ“«t#eÀ;·o Sû;}_#§zŸ.f¥nx|!m¢O1ªAð¥u10Þ|z± 0`{<¾©Ôkï›;57}§åW +W»?R.µ*éJ›L/mTÊ9N7ðûèþuÐá0ùÊJéÉBOÒ@¥ó5r|þ¸å—Œ®&K¹eñ«À$¹–KC +`ÁJ»p¼"bÃcY…3 P³8-¶°—}%÷ ™n“pm“Ld¯ +³±5ÙûÜÛx)#:;ÈE§;ÐÎÓ‹Ñ‚:Ë¿lÊœl.¥û(–f¢ðSš!{¡ð˜ïöœrš»·¯x�2<–*3RÊêËÍçñu¢KÐà~µ˜Yù²îQùN$‰@lŽã¬ó•.�Ê$Âùªä +ã;<Û7X² û±n²v<ì¬öá'äA‘AðDáÑÇÕåžQ¢3�2‡ðƒ-]b:¼_ƒsºo½Óµ.O4õsÉ3sZ`Dl« +Èb©óÕÑÑs/¿+YÏM®=OJ2ŒË±Kf +1lÛ윌\�ŠC¬%GéejÆ¡¾DHô‡¸ÞŠà-$N4ÚÈÉ|Ai¶#ùŽ6¸ +G� +P�w‡ro‰Þ\OKNh9èJJY9ø¾ú~“£˜Ô†@™:<$p3{}'œš“EÚ)3lGTaSL»y·_¨dü>X'ÔáMûç¹”òØ4n +qƒÎPÌ,Ϋ`Ô«AÀ™„VЎ㽦չ¾P½U.ÿ+[6ºdF³ùÕ”–]cbŸ +)ûQ»BÜ7@ñø òeIQ^a6£*£‰%õÎ3ÀÍ¶ðŠ¬§Ý<¤ÙÊbøYÀMÄ;º:Y# +Xè‹uF¿å1ÐÔ±ñ²æFA`ðH&bßUVáFB“ãŽfÖËKzª/š¹É/ò §OG±’®×i;l¹ÀI’°ü—Ÿ¿eñƒÞ?à?gDè'=x:€ã¤Yˆ8 ¼¦Ç”.zGHœ½±²¶„Ž pµˆþC‡î²SmšÀG†a–È0¼ŠpDñnЂ&•ôx`üñÏ`¢©ø‰B—{ÃÕ‹V P˜× +.#núñö!aÍô9Œè¯ÎÈ\"ˆÖu †FyÅ;j¶œ‰Œ›„Ýs-]õÑÖYþðsU˜Óx–õô ƒ Ý7–^wt¡\5¼Çœ\Œk+ +e´¸=RT/§¸èx¾Ã*óúi(<7”ŒaÍ/ËÒ ËŽB‚Ö’e=bWÂ\Fý~À°‰ºjº….áü R¾í(~ìk…Ÿ LÅZâA† „µÅ¥d°tX½éŽq÷õu‚)VÕt¥WóF“u*V\úr¡ËŸ| ü4"jJ8—æjõÝÀ�®ýRàQ�lQÔH¤”»í;Y¶Å´WõKë`[(–+èÛºFw?ÅeÄT[;Æ¿ÀÚóÐmÈŸ¸`æá¶]4¥†ÂX-Æ];@Õ +$Ž‹Qà™ô!hÈïQ^é}¯ßýHš€c®«éC릉Jbéù—i¼·”Óeªˆë?D9í… ýŸ›:Ö…-1hXý–p©ÕáÓ}•‘($åy¨ÏŠØ‘‹ BZ±¢›†‘!iOÅŒé|û¢˜›ÉÞ]º`øYûé ,U¨DºÓ&[N÷\¿Êym2ʵHɸŸ{ºŽg5ïŸîŽ×®½yêI$.9Û{Y +ãè¥0þ€¾Wæ£Ôbjß ˆçñ==ä(å.G¹¥;¢æƒsŠ¡9lçGSveF°ŒcŸ`Ï•<Ô5.;I9"Vbgyjzúð±yÉK¶£FgÓ S +W»U¨è['Ý_'Èm£RÃÂß�^Ð’pîsÑóê;¥µæÖ*âXÞwžw_G«é°œx¶Î™t¢œÇ=>ƒ¸#˶ÇQ:h¶¢Ç•‹l„ÅTŽFs…¿ÜÓŠxU¬‰‰b»"ª±ˆåL²Üx¡Ù ûI®~¥¬ CQ"ä#‘kžEŒÃ±fá®òˆÀ¥Æß?pmÝÉŸ,U¤«ûGn‹¤»„%…ï’+úÐ9î+´ÔiчK¤,ÀÒè¡å1PÖ|gZYĆ>>ðd¥°Û›·jG¨’~g^»fw)²WqèyDâ¦Á³¾,^¯Cû‡BÁ"ÌyŠ&¨{ךY<ERïe¶—ßy¼8€l+ÏÃþ¹\†¦€FÜnºkWd|ѯc±È}’f‚É’JÏ/$6Ïûh>ÈZbÑšMõ>bR MèŽp¨ìXBõhž–Äð ¿Ò…˳ßóMè°ap®¯òÙõ +†¯û•¦õÞÐ\p¢0ðPÜ;œ+«€¥rs· [Æìƒ«W1~èCsÝ™Ö`Å6® ÚáÖ‚jhl±ê“!²ê3›x% èÖ–ÂÞÍõî7(dó°ü¤yTÊ ’Ø£`,]•š*#à0€2GOE+<äf4ðjOŒV{D¼Ð:ÜîçLìJ%ûš-î¸;Š5)ÇQæ�P_j4és&¦»žé鉈À…¨Ÿöu&f[DÝJZñ¨Ÿ/ÔyG´´½pSºŸó%ÉzÚH|ÅÊWAIØ”øÿI,¢:ó>¬IeB„á{ÐD, på¦z«y«Yý‰H™ù*€ûÚy<JTƒôáÙ¿0}^…£¸ŽTÒ]}§v +-ÑýfÖNZðΞ>˜{×í_B—wFµ +½$ï|Þ#Á몛'vôU´ç×ñÏL’¯L?=ŸvrV³õ³Žw‡$ +•çEƒÃ(œˆê¾ÒÓJ^Ö�¶ÕÐ mO‰Ñ³žÎ´h<aƃ6Õii&CÎedèÒš^-|À>dª+'ˆ¦—¿N@õßõ¾Aüä:é\Ë‹2`Ã}¤1¶Î¤‰ûÚwFø +MÛ9࡚Âí#ªsjMs¢er«ŸAÖW~œ4ÃÚ¦ °j:Â…“XóSа +ÂI1x\÷˜e.ÎZ{•ø‡m‘WQĹ•e.|M¾ÁíæÊê^S„ÝMÒÀ{3§à!®Hæìý«9~ØëQtÇ5˜ÀN5-E”(kuyKÖfÑ´!hŠ"RqžYRq075Öª!ª^ou8Õw£Ó¥¼01mÊèÓ°6ô€;ÚóÍM@Šýæ¾]•æÉmßèôTcÿEös/xeîáq²Q„ÓX¦µ/U)»pƒF@ZÒ°F„ÄkŒì@P<yuIVV‘Ûk3ï’1ÑÜný«Ø>ûŒgÈÊq&Ù=6ðúiàµP˜‚tB·ø:(5-äf(UÑ‹ßg61i=„0¶ÊªfŸ®{ˆ‚—ü—Ó,”ÄVPØŒN¤Ò"G’L-%þãÌ¡$ü¾«Îrû©žýËØÎÐ¥C™ÉºêÛû1ŠM¨BrÜ_™k>�ÆÉ_' =2ùÂíD ’í‚Ô`x™UuHŒ™Èy€”,î“ µU#§Ú¹‚à aâ—�2¢Ü_çiäüñZ™‘_OSäJ+Ü·ByA�ÉAùå`ˆ¾|3ÂY“Z%Çäƒ2õ=Ι0“f€ÿ`Wßk‰®vëïƒx„†Ï�—Xfº•)Zƒ§¡:žî‹Eb!b&_¥j.Fñ ¤áꇕ܌šdmqÏpv”W4˜]5ÌuÎo…†½†Õr“4ÀgxyfiQ矟ȃõ¡ ’ýE˜«8˜D8<€HüÊ~ß=&äV»px§÷‹Ì‹Í:(Ì+…"„S‹?Vëˆc +gþfzáÁ¾&y—Ù½¿Ö_ÚnáQ}üÀÒ mUßò}Õ—®*ج¼Êè±ykèô°BÇK*mi9tM†½,v””pyÐ)ÒÁMÑ⩲²ÚwN÷iÉâƒw¾mÍ!w£6ä/Âöð´´=>‘£ƒ¶07r+±}4|=Òx¦Âã+rÞ%;âeD‹þ>I¸<¾îÜ%»‰š< +1ŒÃãsyF þŠ˜_p/‹÷>gŠ‘2ܧ‘H”óôÛ ,¼Bæéþl©>X7Â3™@±á?+Å€Ón9íØÛ> Ȳþ¹> _ªÊÛ »qÙý èà4^ñûz*Öqà¡Õƒ/O;U9Üd™—½ù&Q*ÚȆžÙH{5Ÿ’ +j0wÙÜÆX&Ò€>Uyv?=îDä÷ï .»×d£€'@õ\gè'jUzÚœYÔ8ú=HP0ÏõÏ÷¨WÈo“½W +ä^4GøsŒ¸¹úÎl‘·&³éªì!qõ+$.Vd¬4Î +D* #<oêNQ—kE9tG À]Ë.fmÅíL8˜ËyÎÕkÉÃ~Û÷µÅUß…ÈÉêï ¥5²2iÿƒëΙÂ%S´î#órT2ÓƒÓ’‰äD3ŒjªpÛ˜AÉôÃ@‡[¸ÃÊé/ Ñ/Ésdô<•3̤-Bvì*û€bwiatMYKý +†ëQÏᜉÊÇ"ë¡pæ¥P˜Y—B|˜HûÜà�PŸ®RO f J7ºc°ýfÆ{á9Žƒ05¤ËO$Pf^¾*ã`¿¸j¶ÌƒŠ”[{æ9˜ˆ«DùH¢Å¬¡wø¤méËÚ`¤#lߨqP9?3Žw¸³Êd·â±fn_ÿ3Ç$ÀÃþÙ¿NàÞ‚z°¤ÐÁïÐÁµÀôub3Sa<éW¤Nˆˆ.)ô¬s¦îPÙæ£õÉS¢¤ê½Åô¦¦×“Üê‰õ›¿e}û,Æm'Öán0^ËCyp;eIöýž_Zóè÷’<ôû4h‡p©¾ò”¦ãÅé-’9Jƒ‰0Žš¼Á½bÑNÀؽ¸``üšV¶ðQXe ñ2±Ü(*nH±öâW•QΖ¦Î¢5…p +@þu�!ónˆŠ‰M�Ñö¨hfhìN.ÓÝÉ…´À‰6i–3YŠºî(Dœ¼{gKaÄ/1ë]G”¯Œ +·5{Ò ùAÚˆn�<ÓV…¦•±nG¯Çô}¯K‡l®ÌVr¥ù~íìÏéF²àï ¨ŠRÇ¢°„6*™i§o(*äBfGµ +´/8MóØzxªF-œj6U£òÃR¨QÚ¶¥Q (‰Ëìv|çLM&ðWÎt¸B÷[©¸+1£ ³¨€Y:iu(TËð¼‰0�ÜÏ8”ó\,¾Åˆ$¨;ž?xLWÈ‘+›Æˆ=RäûNs¦¢¸«Ûxž™AUE+ïD ñ-õ>佚—""I`±Å|+Âoƒvî¬":óèŸïFÿ쬇m1øåZ†%²^!ãtté,ð`¾óΆ¾×Ûª™ü€Ú§¢ñ¸úQJf…Ý‘oå`îðÉn±XöÎ÷¨ñO¸£‹–I“óúŽå¹…PÞ÷õ¹àŒq*ËÎàh3!#]É÷„Á-fúxjA†€EÀ›TlþÕ¡¬²‰Ž/¤Q¤Vfi´ƒ„b<ßèîª\3’¬Or¿òBUpTµ¯ÅøLœ¦7cÕ²»Dot-Œ¥Oí€sï�mì<ùAÓ +Öuó:ñ +/ïLq\9hŽpWfpxº(î�ÅÓHViÀx"Uўή‹ÅDÛ€—u0‚Z`f®¾MsDã,RÉXî¥b½hZ¶¨Ã¥cƒûp ”‡¦½k·ÒJ\úk½(õ—¼€ÉsMî€Ð'½XÈà¿E-(Gßå'ð|nèP8øð‡5{yÚ§Çç×™üJŒA`Þöi$€‰ÿmy„Ÿ?& ‘Ññ׃ø#šCMx<¬‡!Pãc Ž|Hê¯1lY‡NpqÇ?)š]ÈxÊY§Î•JeUМ„Éÿ˜Pîñ‹‹àäõFúp¾ad¥‘· ¼Õ”©Í"Ä1QÁÐZè„=+ˆIõëW™QI¼¸ãYO…/ëŽÎ6¥àîE^/ê! ¯ƒ+¶ Ü¢ÈPýz ÛÑpß/ôZ…/ìÓË,Ò4"·¿+™ûU)ѯ—>ÃV²â«f6°ÓÐ6^%NUôãVq Ó?·¦Ü‹þ@‰¸t§b“œïzbÄÚMõ&"Úk@6ô¨º‹ÞûdÃGheìz.}°ý×}œ�æ4ˆzðYÓ4—/|zfBV«™¾©4 P«GŸ ¤Þdûµ9x°Àï”6JúvýàEGîàËdb™f‡=—feCži++Œ°åÎI’{uÕÛ[Âv˜^›Äá}û®öî'6é‰ïì!M¢¦ûù£]¬< xò\8Fpž{g‰»¿Z6F0º–^Qµb?=â ÊGrR-U†$ùA/ +>FaïC¼6WÃ(Í’,iizË»õ@aõ˜ü0Ï�l¥åuÐ:0 l <$¾›|Q7ØÈ^1çL>AÊdI@‡ +’þ’ó *)·£¢Z;Êk½<®ð•tCjFfQ¿mÞøÂ0й«‚y‘'mâã[”"œ»*´tw“†Zh¡qù|ÉÔ?ñ:TWdEß«:–”{…Z*_}\Gîцæ¾z,•ÌS÷ ÷ÏO2á +—Cq9tÏWlR‰+Ü/‡¬®e¹WÅ—€ Å–Å!ÝéÕ‚HáFðœ=JšR`\3¢=ë¯K~ $ÿˆþoN,—1PwGajT°2iŒ +U™ê(Üãø¥Çh§ë-$ƒzÿ Ì1¼vAÚ=õOSÊ^0 Vk¶Ê˜Éâ®% lHÁ2•ª†ýÞƒ-Pö#ãn ó5FŠ©Î^•û+"Rž¤’€„xb®®3¢§'IXŠè?Žo¥”‚!_¼§š>¹íõþÙ9¿(ˆu›Kk©FcÖ ý.”3–E´b¯RgJ¶ŽôŸÂüþ– B¹ö‹ý‰ï}þSüÏOôRëRz?CÃ^è»z8]0]ªîÐÝí#H^ õN‚o*~òFa² KÕOÉ1ÿ¥viÎ%íaözª,³w²<1Ë0ÏR,Èñ¿V3¨5c["ñ;År»ªoÜ!Ž`–öE+ÞQû…¥wßês~¿UÓݧÓxѯ£�|À¡rœ �Oç!zÔUŸ£áP^?—C—ªYŽê±*ZÙ+LuÑ]ÓT¦ôKÊGÀeÚvĈ»Û£!×»M—L²˜JôUü{V…ÁIKoœ”›¹S˜ù;óÕ/‹Ž±˜ž}/¯£M²he¹w#Ù>hÒø !ÐBU£Ëbê´³ž¡'Ã7,4'Ô0ÁEu¸~Zi‚>€sèûC`6Ý«ÄZÿ7Ê%Ãxòx‚EéŽâ‡Æ‚5p]aîªÑ‡aŽè~|F³öµsYÒÞm¢ÊÞ¯,ò½±Œc¼ë•‘eµV7hº¢4¯ÉËΗÍ(u:¦Ï‚Qù&¸ž#‹Nˆs"tø{ý·†y.%»+ôŽØËeýC¿{0£AZõTß)6!ÜÞÝ +”ë» ^¶œÚ#Þ º+è{»[÷g„'ˆÀoÉÄ×ô‡ãØ,¥P)éæ¹rê¶+€Ÿ‚7P“Îé=ÓGÔp—g\<À†Ä’^Ýyôñn„¦°t×@TáÕ_x\°Æ¦ Ãgö˜÷¯´çAr¥ßñ©Ã>ß~´€Ïš)‰$ÇX Ðû¦ñ!ÚŒØè¨kJ˜Íˆ¤p…\„0ÒÈ%4I×FXÏ‘x©õ”ƒ\Fõè]=fÌ¿i²•y.cW26þ*Á@ðG;·¾Såc9Ð#„Ô£€Ñ¼T§H¡àƒöNþOçuwpÚøW§A9DĽDôôƒC‘/Îq¿G!t;qºgð*˜êæÍ²yß6«x̰úrÆË‰h' ”µ¥ø3ÜÙùuÃø‚‹×Ë=/çqdüû<?|þóùµ�Ðò2°û€ÊJ› ââó8¢¶€È$ñ<,ÊïO?øËyæK†ÄáÌr”²«0˜“ <îz€¨ö¾ ~ØÀ¨™ÞiàhS<vþü†÷´ã´#ÁÏM)éjú¾ï›¢ãRþ(èÍVe’mXþD[•!Åþ“usѯ¦`¸ÈÒNDS…n]_"š¬%øu?î$N´– +ycdü¦Z=ûíNEÖÂø íµÚ3×ú‘ÖáËøç9øñ8ŸþÕ`šÐE‡¦E΀ÞjóBË êÑ{¤›'ê*$+ý•n!Jáœ4Ÿ¤4ZÙµ‹x@‰“ŽÛM{²%æXštý3Mf {cù¯ãî…°-Ï‚×cõÜ–DÏn¦S÷;ÊÔ©Jd¶dØw0 ȪO÷Ú,Ü*žJ8•í]ÜÇʵWÝò"JŒˆh ¿ÔæÖg…^B¦Â²ŸˆÐE-2ö‚n•Úcå¨:“?ŒœIñ\/þu”¿Qì0ê +Ì_Ù(ÚÖ,A~�0x¦ny�‚”¯½aâ¬DÀUÚ¤ªö +ýÉ"–FJ¦Ìô¿j¦˜cU5öÙð’N¨è!Æ×|XȪ}é©Öp!Z_ޝ¶Ù[+-øÌ®7šWTÐã"× Õi¬y%úéðJWù¯V°—¬þÅÒ°¾‰OõLSS¢®–fôccƒ{&àxª!‡S"|ÝòAã=`†<fŽÿ8Y÷ÃÑwY0üo†Í`&÷£õ}PÂ^)p”_)ýã]Jý*±x m!Úã—Ê÷ªLøÔ? +ðå`üé{ñ—¿á»(;Eá[rî#5É:°É[x³v³îÔôˆpFÔ°¯Âq|7ê”-PR(IÍh°¶Š®N;¡�›v…_ç/P†¾‡EØ’˜2¨6Êîõ£vŒ@Cí'‚Mºâ¥ú@±vyäšNÄ¥5%ã«wÂZ2é„"@§(Ø <<ͯv‰HÛk¤û3!¢NyJ¤9e¾ò}ÜɾG¤Z“Ò‡Cÿ¥•* ]$HTÛTÿUt"ŠXÑꀇ„åûS4p_tQKË*¡ÔºêÒÂ\=Fi.÷Ñ·'Â=ùøÎDD�ˆ×üI!Ò)ý÷æj–߸1S†§ß‘á¹r)„IêQØa"b +S’,þèy6ÉqµÔj·¢E¯öIÍ:Ä„¬ª“ó +í”F.ú5ŠvU…ÎÁ™wQ@eB‹ÉýÎ+ÄF„“¯ë×.:fy‚0Zý ¸‘ô(ò(œCS8C2Lÿ0ø®¢1¼ÄÓJ8ÎPýÔ¼¼ü ïi‚©Ìú4ï€z¦ÆGD)£ŒâægÄ_Ï�$ò6pÜÚQ*½¨1¸’ú¿ƒP;ÿ‰ôÄ_O©¡u»þßEÕ±öΞömÔÕ袄ì‰r5¡Q±r9“® š[^Q¢t££^EW›¨Á(Ö§eJm7Bw%*›~y/¬ËüŽÀ¢Z|7R4óëLÈ�Ó“_EW¬GW_uúë9S,»çDÜyf‚}C‰UYb9BÞ°@cf¸ihBGîÜ’[8TQ˜Ö îZŠ /÷ü²ûIÞ°~ˆ8ÄÔÇÞî—EßGÔuÀ>¥�,ò«ûØ"+HÉ€iõ‰³¥ÂÒ7#®öÕêµÔÞ¿l,1¾Üƒí&P,”ÎÄúá ¶@¿Ú~Éÿ}FY fZjÚ@Š«Ç•KçãP4âvDuŽX!Püco]A]ÝÊ,Çóüü0fKÚÆ–}'ÛOº.éx]&J¼ãrîÑ�ïo´›êyÕ¥÷«C,kävJ†ƒG@9n2êW6_Öt÷Èj¼„uvVÈ]€D˦;HyQȈˆ–§ãÐ3¾;qDsU‡ÛÇ'L\ëŠÂmVŒ¾�cLħ_+�‚ý'ç¸â (ÔÀcEdaÌPýõ{x–D4zÖQ¦We(2î{4U¿\ EAÉÌ*Îxõ�&ÀgõΙl£!ÿ¢´�ÜË »d#õšs´[ +zhdµHoÎߦqP—¨w~¤^lù—fªK='¤¹àu×%²°X‡ýöçIÒß²<¢Â¹å1÷'Žk¶·÷O•!Ãî§}û¸™A©ÜÇ1Žðvpä^JÑ3–Å‘(ŽúÒ?ö‘fzrÜu$ž16¾P›6Ê]¯¢ÙâHŒ¦²y}šÃŠ *ÓŸtä;�q³ñ’«§Õfü§±ürwîö <þŽò~¥ÊCj>æk¾LãQÂ"ØÅúcbô‹e¾òÏŒ…µE^˜ë�o•QÛÕË*r‡Ê=T*CØëŠÕþ1ö¦qŽÞĹQð Yäd¿˜Õv4Cüs!»Ð̸)Ýûäãh1EûK%×f®0é‘ÜçF!±ý¨VNŒk Ò_W¤˜Í:®>Ǻg.ý�ÖNT."œHìˆö"ZôNñ¿›™²×é¨'5bfüRîv¤—$�<45“¼Ä•øóïíw¾"ËÙ +õÒÕ²#Þ°00âÏLš+4É/«ß@µUYßî“ǘ•~Y‚f‚žrØG2Ø][hUMÙ¼0AŠa…+«³3:ο»–Àb—Û�¨þúÙžsÈö¬ìZ—’wì—§ÇTìȧ½î;U÷–Å_6Ž”{_äÙ„ ÎvQMárŽV˜š¨á¶ó§®È3¼]CDÀg„—ÿámø=J'MfýìvA%’Vˆ#¿±H8÷ñc{U!οéïb²FçJiu4ÅAê·Žvy�Øn¸Þá«üÒù1“ƒ¦QL}rÖ;_ë¾QrÓé¡è¿@›à‡ˆ§fÒ´Ÿß[íý1H÷yÜCT¨©Ç~ƒGí‰f}½Ýuò‘ s±Î8î{Àû EGö ‡ý~”¢µ²{Ù¸ãΖY¸]³‚¿;ý}˜S;“m¿£¢‹ÂCUòJšW@š?ŸåÒp%팞çê@"ÐaÌÖ?OÕ^ Ö„.Oæ¯Ñ[3^Š; +h‘_�:2uçtfG„D}×AF¨>³@”VŽ‘ôiõõv7Ï+|‚—äŠ]K©ý�Cm‘NÂ¥ÖTÌïhN€®ôm÷gD~ŠÛ2FüýFR:TäVõñg¡f”/²dì§eìÏ€œ® ˜×•î{̉6œÂ*'Š Uˆã¤!€ )”ÊR{†ÉŸ¹a4;`•î¤Fï×Ïã\Ç…+E±“õõwHÍ5ez»%ïGÎòxñþyrQH½Á¤ªX™É8ËVhöÀlÊOïWùÖè#ÔÃÈüãqúÍ[ê«HõËö:ïŸ( ‚6Úw²ÿj‰®P4/ö\"8†˜ÖY:ûVÖ3Hb˜I<ªJ90óºçgDîT ThçÏÌš8Î+þ‰Ÿ³Úù¦NýJêtGfö`F:傈BÍ?p{zÞtGES%V ÁårEý,ðA¿ÝéÉ$"¶Ëî8ƒŒ8ƒ¼4QºÖ-öÂ+t¼fE×é7¿Ê²ŽŠú›åKǯ݀(B,úUÕ€x‡õ«¿r)JEx²)ï·eÄ‚F»:Ôe¼,¤Ä{3¶§Ã¼Ÿ§žyÿ^_Ú‰¨‰è§É“n.Â=ŒøÄ'|‹R¦Ál±²Sõ½ +X9®öCذ"˜Öãœé#ŠmÁn1]½üš¶«Òº¬sü&ø»0"#©´ÚeVË|£=_JõMµ 5ÖDé +ÇT\?Ÿú*âÌ®09b½}ÆxQâ;H]2–FtöõQ�»ÛŸ¯3EYj¦RTßôúè»?íœ)™é”v †¡£–ý‹ÈÁ÷×QZ˜ (ß)†À§ÇïhÀŠ¢ÆšÇ ³ïîPT&£&u]oÑ…·•äÄ1æGDE®�íçÂWìpÓ?¢ž 5«µ–3z©¸œ‘ýn¿ƒT„Eò…áÆúÁèçëÑVFe¥çD)d»£Æ*‚)³&’Dµ·æ¾A‘õ¸n‹ÃXPšW;›þS¦×_Î +"Ê‚W‰h0‹#˜Åã|ÖÐJ_L‰«}Ë4\§©ªil.møc°ð‡ˆ¿¾ƒ;}5ÇίþÃqîñÒx÷+ªÊŒÄ�"6UÓÞï?î™Qèi —ÿ ñÖâ +ÝæìOŠê}iH¹ôXÔv®ÄvN"r?¼c»Iwù?}‹?=ë%ÃÛ~9f{ìA´¯ò3¦F¯½Eæ†a Mþq‰§£TtäÇÛ¿a¨13r¥q¯}¡Ã2úøà_N{) ±NSt}FA`-ÈwÍÀA#"lµ³si‰¸€ï")‰MèÇîšEld:f3¹AÓA4wR½v¾=5\‚牘‰ý=ÑLÊd‰ ½JDY_®M׎Ô}hsj=I†~Bmºšœ¤[JPÜ粞 M7»éy ¢HËùE–Ž÷…¬ÔWÓVzm——h.·lúìR8l#Xú M3OC±¼òâˆM)¿@+é*±žn™˜ÒÞ¸Çéx~zÛû³ÒÎlïfOœG8ÎîjÓKø«£È�9Kž½ 0øEWdy~Fzþ{ëç8+žìµe¹rÍ@XÙÆ%Øß@¤ý¡fC|Øãp¼÷öÅŸ"ô9‹ŠE¾Š–✠†vÖ(ýÇ·Ù[Wœ=oxñÔr³¢ü©™ujÛs™ÃÈþGT¶–s×gží½Ñßü1ñDìW¶Ì@2^‘ÿlÕDŸ‘`ÿ)b_€ÄìJ®wTcÔL”|ÔzZÓ(®¶Ãƒ‹®;pÇÚÁ3îUù†µ’ÏÒ‰_¬Hô˜µu‰r`†W=ŒÃž] õ•Z8f=$%}’~À.ṼDMâç>÷¥Kc0JÉŽjÉa->D]îNQpw=q|FŬÙÏK–ˆZ(IBMH:Ö…Ñ?'˜4Ù'i·p&mÅÞpî.€0 â;"¢ƒøZ°vpŒÐdпÉEFNBå+æ�»ÖníÑ$?Dd”¯xkì×ö“®Ñ4 ŽÓ óž-$ÓÝÉžºrã÷æNÄ^ò_%È¥¸ +Zœ°ê5z|=J—CïΪ€ò+ˆ0¯™Q–€"f9WÒ3Ì]ç•_ç±]¾.S+9#3Ê<ísæÏ¨#É–ÃÛ²š¦ù<`Ùß÷/ó1I0CYù®+*2hÒ·}½JÚב'ŒÓ弎Lý%!Ð_ŸÖr--DÞÑìÇQà¹v ·ÏɬFbG÷´/§cMWôü{ºô3¢&“ä¤÷¯¿AŒH¯uð‹unw€F›˜°ÒÄü’öýˆªí€¤ÉxgÍ<šÁÜKÓ%Uº¶k±A,|JZ?F܉ø²ŸãSÂîQ8LÜ8ý•çŠä\ô—Z‡GùCÀH +EÕûwÏÐïcö—ž*^¢¸„/¨ƒ +:´¶´ ›#k™ã7ø'=Ù“ú¯ŸƒY!êÍ;†=Ö%…²ö9m¡;í3A[MOH/P•KÔ¢Ä^„Ã>bPþ†K^ÄœÑÍñÄk uòì)xìˆz·òu½n4ûj„ómm#€›_„*~°YÄÂNiš@<G|@D9lÐ?Däí:™ÚÇŸcw£I&ÍuM=½NôŒ»ÝG„?ìÈû`>‚„Ó³„tkæsý\'ÿ@—õ•£Íäÿ~Äb¶ûXƒ±…p—ÌÃý•ÎÈRSˆYzBß{Â×ŘÖ` ¼%ƒ«€õHp²Çýhqÿ”#¶ø`N¨ji Aç{û#¢Ž¸-D^Z£š¿XIÓ× ú€¬ì‘6ŠÐ)º/Øx‚¯rÀ ,ph}Ì bÆÚÞ»ÛyjŸã” ¼½ÞÇXY&º&J*쿈èë´˜®òÁÔra`´x„H1,@B ÿ:A6Q€íQ+md‹k’Yñæ¥b#@6È]øvÈà °–ür ¼_!3#lf@×óëuVÜyß“*Ø·ªÔÀÓÎD%hî*ç׳hœƒœ*E·¬4Ç'Û"(?ÀδHAa¤Ì8ÈÓÓPa`¿Ô˜pDdCi±À?ˆà÷(¥|è)"åSEN*ŸøÃô)MGžZ!¾Å|SßfÚé·SËHo/¤¼eyWπ¯%31p˦Ä÷Ã@\¥%1Õ3 +ø< Â'x.°e:>`¶Åœ=wvÜ“7C2ê6ªÙþºáünpüŒÑeËŸ+üyÑ*=>™Žù'ÒtqÐÚ–¸ú—AÌ]æ™…D[giP~å:Ã+ÜÙµf¯:ôv¡¦×k`- z¿@™èóe›ÿôáz¦]~`C +Mî²jŠBU'ô_ýá£~óû‹9’ Ë¥GÚ›Ù¸ˆ‡q¶êª?]VK~h8UбψTGÈñãÏË? ÆÎOÍ0<Ÿ°ºJú“êì:®Í£d®É~¯iY(àûSD»©ÊÓ€í¼¯r|â()‘\–xòžOG.ó÷c„õà¹ÂX‡†#Ôslç9N¸ÛØ‘÷ˆv*SÝ]„ uYˆLyï˜]Õ»*ÿ%Xªá‚q"f"öoÿ…äK ÆÅ¿cï?§e¤#‘£öm˯¶FŸ/GµáÏx~•(0ý·b÷·Í~„§¹JˆM¦¡ŽÜ*ð•VnUÕ–‹ÕöÕË…ÏðŽïûšP ÆÈ`w?t¢ñ RAÏŒìï_,"hKÉ4 +I)Šòu¢ØÏ‘–—ã¤,{?y³ç8ôÁô)¸%¡¡Z?>天EY˜¡â{Œ½Å•®§Ž#Ö¯EDGº<ÎŽ3ˆÑ™Àø*ø¨ÓȸîŸ"À]i°ööžé{—Qm×u3ž‰âÀai‰ö´ãàг›‚òNÄ- û#"gªIôPcÐ6ïó8×aBßP®X°Ï%6¢SgÀ°G‡Þ}Þ—üÂwÖWä¢Ê¦ÌÞ +×yï¼'jgêÿú\ÏÒ|dÂÝœäVxv÷l鵌;¾i ÍÓ,òßQEk¼5è³Ý¿ëñaG²bÿQQ‡å±#ÎÈBjc95ª{°(ã½/i+_¢‹Oèy-íRÇ©rº%A”°$wöu«`Ä:¤}ßEÓ#þµW¥˜3ì‚z)ùĉïÑ´…�_ƒ)tÞÕòC‚¸î縌ãZðšË÷#sŸ¯ y„‰¹Ù”ƒjA×N—ÁŠ‚ioj‚8zÄ-–V³÷åWñv¿ŠóþBg˜Ò-”ïŠ8‘Õ…\Üæzלɷ¾ÐpÌaÂÉ›'‘U⦒MÈÂSCΓ–#‚ÐJžùc—]®À~E£¡ø=â"¥©ðíC¨—x¦15(1è2>"j¿•ƒñÅ>ŽIϳëË™˜´ìlYø‚ª(–‹E&BÎw¼´Ž×Ãc]E‘l¬G—øVÑkÙ¾"´ Ô„g?0¬‘)£ý Ñýœ\‡ô_†Îý-z2æÿ³¬ùÿʃ]xÚßáý/ÿnÿ—û·ÿæ¿ýíÿøßÿó'+¿ýwÿÃ?ýÓÿõÛóßÿ«ÿõßþó?ÿÃúÿ¯þï¿ÿŸÿí¿ÿÿ—úÿïßÿÓÿù÷ÿã¿û÷ÿü?ý§úþcNúó_üoÿðÿáßþó?ü»¿ß§øÃů+ørÿÿÂÿçõÀv¡õJå«$^1üË´³p¡$E³”o¿\û†ÚOó¯öÓ¾³"ÆßCèû¿T½œ±<c4ß”¨ýŠ`=̆~ÇfJü¬NR{cýÇ% Ñ6êµ>£ªBn{ïk8õóÊ+8UàÁ4#pã3Âw�ZÁQ<¯Ä«¤lri2QQD”BaüV‘Ü>sdòÙeí³÷(P4;Q#¶÷)8Ù™T¬'c9O]PÑéDÿ{Gvæ+jëí(²¢ßŒ +{—ÓF#‰d]D “Î1\&Ù'Ö9~d]ùì¶™²?SX{oñ{Áh^'ùàÑዎzØ“ˆýµ¹Ô:NDïCj²gb°÷êÌHk£T¥¼Ùþ=)Œ* ûÖ.v=-U¾+^U([§‡!ç~dU™¤ô$…Á=ö«ôI ;mk¼àâߪ°òNt²Ù¨uä”A8ét…Ãô¸ŽûÈ1Ò¤¦áºÕ)D'ºÎuŸB øÓ£ƒ^éþŽ‹R+(ÂÜEq ô²š…’1QøÁ'ªF8€wÕM«]6晑:øî¸ 0ðÜ…7ˆð6¨êäË(–å®°r¢bX‰ÃÅÈõiä;ãTnŒ SH06û†{%ݾb»‘“ÜçðOÜ/`ªãÁO\(iöÎM*ƵhÆõ‰*aľ÷_°p:xçýþ;G-¶ô©öð æñ9£÷A© b7ì1IïÂåþ9o-~fšhåþ{9LìPwWhÖu¦ãª.6ƒÊ?–õ»¢(p¦®]qö; ÈyçÛ‡YI0ö]˜ˆƒÅs‘) +z“ÛDÁ‰Z1ÃÓŽ×ãœAîë�kËn/ÆWÔÞ~ûx`ñå0.@0Y€&xE¯DˆØ…»Ä‡D\úòG¸§tPùkÿš4•¿n¯”™ªÓ·å•Ê4".3¦ïß9ÁN‡nº¦3à ävæ·s¦0⑇x€¡øë8 aÆþyÛûC¼òÒg|Frù¿+å .쩦4RôûwîúŒág"Áá#Â㣦‡«Ä~cn¾ŸÇÑ¿‚ +ƒþv‰–œÃ™‰EÀh?Düôè~#Ýß~ÆÏr_�‚Nôžx\– ¼R0ûx¥.›¶ó:˜B>Yÿ +} +°ù{û†—Õ]nÿ½*ÊĘXªÌI–ìî_¼á¡àrÝy*ˆ‚v@C·;#Xõ‰˜¢Ì.(‹ËD!ˆ7¦@iòÂ�\,G?Ì äÚPãNÍá\‚© 6ÒD Æð¸D€³rnX ª&`8»ãD#–dýÍ"~!8n¸UÄwé€ZªÏÓÞ+<¢³±#öÄawG¬ŒH¾àòYbu-œ÷þéÏk»íÆ ñZ!«#üEÎr%giòÂLY.Óž +%é¯'9¢Íd’ñ:uÞFéÀKÄ^L²âŠ»Î“>ÝIŸþËiØ›G!`Ÿn?ؼž®q!Ïqûö~ UNh<¯E„zJsZË¥°G=2Z”4ý‰;;}€@а·Sä7¶w}çKøûbæ°Ò3�TÝèT‡°3Uã<õĘ_ÑóT³S%MP#3®sž›oF¥-ÆÐT(‡ËÒˆ!w—yØ%% �ÌGNÔoq‚г{"ÚzhŒøf+²Å Fõ=l5„v5&�¡É€™ê°€t«·Ün™dº–±s9ǘ~¤oŒô®$:ÁÀÁ@ý=¸Nàí+CgJLª¶?]HŽÿ£ÿæhs§D:ªÏï™"ÏVþŠ-±ÐÎX‰8�sdï†uð4)ýNÄ%WjgjOùu&À\DE¾[æëBå*×G»ˆ[ñ¿9ÅöŠN$ ŠˆXYLŸÊ^©ŽÏo1ÃÌ*4r|žËÁ£?Òö¦Ÿ|GD¯>v·QžøÓ7á/çÅi×]h¿¹²v‘Œ[Šê0¹òÎà!Á^QcTû¦{×Ûi¹¤áþI÷q®r±Ž´]»uÖËбÁãcº™D<¯ö;Qˆ§Õñ2#JÝ”à =3f.¨è«S>ʈ®®OîŽP:3!ÓcÄ:’nÑéT GÜ‹îªU¯èoUaøùŒÐ‘Ì`R€ÆÊµtØ*T:ö†óùH!xR+õ‡Ã´¦’æˆÏ“áTFæ»`DµŸß¿c²„Ô Òeû¹™rÎà—Ï×싨‚4í^Є7$bÂ<SÆwºÃ8›‰`%¢ò>îìK²'Œ«'Õ H•âQØH¡¿ éºG"RÄ”™¥´eLJmêD´(²XÇ~£K[E$Ür"$6÷&·€ùD˱9X®UÕá¨pŒš /(¨’ç¯6Ù�¤<¾Ó(~BmlˆP‡8}5È0õ£P!¨}Äõ—Ñ'S/'Z‰a¦ûÃç&iÓ ä³÷}D,¯UEµ y©`ÒŸcKŠ˜„Þ{û¶¸õ‘ïÕ¾ xû= ß'&¬+*aŸAÜ ¤ùxÂveéHR¯¥UØü1‚âïýÁ?>¬j"z—y—#GpDƺ¸ÊY¬ ‡³›Ð‡ã¬)õöÒÒì<†„tíéíMeàöNS†A"ÔßcébËèÖ9ã äYG`u4x¾§6ÒEì: +ŸCJK*ô6¤¤øÁ1ÀGɈÑ,ZÎZ«ˆpéOÍtú¿ž§²`-Í´‚pÖ%“iÿÜhYDD÷#ŽgÀÐiï–?¬ãpY²žæ½øµî¨/U–Œú_Uã^zÁ·Ï<Žïdu½Çr"öú{D¯Îo3e¯?‡¦‰ÝžÎ3 a¨¨¯JM§ñάxJ”[à‡(xxLùZ褕Á.ŒÙÖ{/ÇZœfFÜ;ÓC§sû bzÖ…jý圳UöÃ}Ãù> 3wºyc[R §ðߟ…¢ÌŸð½Žg~%ȼç<²×šPStV{ÞYÛáþ>HUïº]`²¯HF:‹£E·sý½ð¥¤ÚßüVÌÔ×3õì5Av1vθ`ÆVîܵlŸ;VÆÇuè« ¨Å¡fÁ•ùRº…Îã~iãú—/¼Ó–úÒ9®K&ÍÂרe +[U~¢õÊ>~]Z…p_‡6œÕŽÁÔc€Ì€6y=¬÷~ï=襄^—¬:‚öÿi˜%Ý‹Y@Yˆ`CÝËørÓ´"a~€¯aÏ•<Ž“¿iyf¿Ú9Á^TFÞAt›éŽÞ<yU‡ÔýïÝÎ +ÛÃtÀ6´ùíϳ¥· Ñ@‘<†—A¢,*×Ð4:™iz@:î<ßÌå~5'FrÎAv!\ ¢ÍóE§’;á—Pžš©(ÔµbÄå#‰Ö›²î¨Ø–¶]ß¹îËm¨;͘\îÛ_ŸsvnÎtŸåÙ:…ˆGSójŒ¼kßä×t%÷b–ëœcÔ®cª¶Ž9“Óš¶bøMK/ôØËÖ a@³' î˃£çåKí;¢t°µxÆÀÓÂÈi:âð>t4>ô{§›} ).Y…éžïo\!è39¥ã«ýÈ}½gº÷ý +‹¢v–,;ÁX,52±lß³§LlSª>®|EÂûöÏýrÍc¡¹‰Œðrž}å³f9œ9Wþye¯Å4*ÿN=Îü‹ëÛû—jb¢Æ¿Žî4N/ÌÈvÂRŸMà~»æ·d[nc#çòšï!MáýùÐ/ªÜud�@Ö¼_©�vêüÜ:Úñ4?øÓȈºóü³³|F‡®óëwøã‡(;ተװ»)†?„¥iéöW¬¼-|$ø8¾.l×óá™ú#q±Ž]3¾§—ˆ©`Ô4Üx4»m%“ð.ÄÝ>�‰–¾ñŠ¢û×Pùê0kË‹ï‘Ì(«" +Ók<MJtŠ´ÉÑBë?DdËìš~ŸHiýã –àÏŽÔÙŠŸüQÉÞR?þˆ1®ß‡hÃl^½××ÞóêÅkúñ'´êb-Ñ ¸ÂJèDZ¸Ô«’ŠD¤ö^ÚØïÛ»—ž³‹*h +à„Qì>PÅŽw5W~Š`\Ls9œõ>QB¶X,XÉ5Û>ùùõÜÇÇrÔ;ÊðºZ§jã3â}Ún;.6fÚÇq©Ø»€;;¬s$Ç5æÁKòþ鸛–¸ŸZæ5 ®Y†Š¢ø‘ô†ˆÖw“^p3fü¯cÔ½³N×âQ3Ñ,(C²%¢©2¢ûR^_¢œŒÁq”Wd“¸pzt€XV"¾è<ÈóT:4娻¸–¨>å<E"`“Z›°`ž@—âù—Æö¼Wô Xn7ížO÷h^v†ù‘‚õ^Œ>Óõ…àÇ'f¾h°¡í§€© +”ß¶¼'úˆúAl˜Ï^ÑnNv‚Œ‰<§¾_j’¡µúgDîÙkÆÔ©CŒûá8+“¤¡JÕ¢ú‡ˆå”™²Ò™:gú¥Â®fÉ\£¾Ö—´uôíwòº=h©$ÃFx´z;XyÇgÄû²–ë§?¯Ê‹ÒäÎç?[nU½1ÒàJûí{ÔŒ½ endstream endobj 25 0 obj <</Length 65536>>stream +’‚çè,sÞ<Cz÷—%âhgDŠ.ƒ¢_A$ßþGäN=JÉ‚p¥¯ôÃqÈLT°àó“Ÿ™sÔ±À«¾,µ«%Ñ»°áuêŠä“wQF˜ù\+yj ,vlÈL‚%6ïÏ*Aüý6…mú×™T§ÝQ—îñ{aÎp“Ë&™&ù]l;@Þ‰Hñ榦#¯þ +‰HÙ#'ÁïÍÕ w4~‹ýÕüK7\²²åk‚§ONÁ¨Ò¤Lìí÷’\ù¥æL¬GêPòÍ âéñ�Må”·/É÷�“ˆ–$b<_Yë‚ðE´…e�93Ciúû¿µE_‹©‚<ÂÅwäi)QzPS˜f¦ÑïjÅWM¢vã +Ÿ ø˜C®ñf¨¾«•ñ⓺ö%$q×fOŽ¿È‰OCëënDŤ¤¿8©Yµà¦K~O‹¨ ·~½¿÷ î ´_vÄ—î›LUóÃÓÀÃÖç©'‹Œ¢{ÒÙÅDU²¹p‡>€«5'HŒ2Ïöµ÷wü+÷—Ç7Ûä”Õüsƒþ”´OÀv—&Þ¾\¬Æ.&ÏïþФeÅÎÏ ¥pUÖà†§.cBónv,öWO¿ug›ˆ›KâãIoür+ʃg›e?#· rìgØ>X…»íÔzz®(³ÅæÆkÜ[ërhõ-à¯ïpÖæHÁÁÕ÷£\#ójÁPód¡PËš2òôgÄ;à÷¨ÈŸ( +µº¶9°´™îMÿÒ¿µôãª;DRýÖJL1TÎâçȽFªhÁÇvÍwØÐ"黿#îçP§˜vì3´ +½–áö…L-=zè4Ž#jZ„˜DÁÂ/J>“ëcGRÕxS=@ÂÖø:-Þå¾ÒT÷ýà_ì$µ¬Þ<ýúõa…l>õ¦dô.-•e-(M[YûÉ1¡¼ÂòyÉK'¬f×âÃ(Á=Z%!åÄ?n¯ŒˆqÄþSq¿=·í¿'’«DÜ÷׉TOiÍç:F30t¶i¹ùK2‘ìÇó&\Ý¥=b"ä:R* ê]ñd\G¨2g*\ß ³„üK¥IÇäúâ0E=TkµÜKä…?hüÂ`ÄÂô½Ôûó°ãάüª`fø³šì7éÇÚïÓN…ÑËÈñEjœáœQ ‘¦Øˆ¤çšQ-y[ùÒ^šÅÏDI›Ø˜³3 zÑ N„Fêˆ|”Û׋Ž@§F ´Ø§¾µël%Ê6ÃŽj…]#ª«ìsìÔ‰¸AY@„êÿZ–ÞÜŒî<\å8äÞ‚ˆ“¾gRdG-·'hËh(mØTJŸ»²¯ìЊ —âN½ ÜœOA¡¡êB0M½5¼ +΃Æ&©ÄÙ f±vû€ßÛè8—H|Ųúø)`Ä +oÕXº¤þ=ªÓeC} ý„5|Œ‚ô¤;ߢT (B¯žºFWšU¿ýÒÌó;3 +lÌ|EmçøÜ®}|àð7Š”Ê„Ç¸(2£‰º¿¶§ý~ ¤h•ô¹˪ÅCTD¹×ùž[tØÉ:Óã4—•½´¯+Ò 4b ™¨ +¤¢¹ÃÚsŒKXj\_gâ *Ö“^OñÏ_Ñ0»êò¸5Ñ{±â +ô·#´Wñ·‰²ß¾¹Vð*GàHÒ>ÌP‹d¯–(B<ŠmÐGl#ˆÊiùª?Q7ÀsßãûõÑ®Ž¸�ˆ`}¿Q(r4ZuËãØ%-ÓõžaxYF<â#Ÿ€f&˜uz)¬hd擤¬½ê©š¨<2{Á#;ôLŒI9“}¨;+/’F>=˜§DXDkAóÿë0SÜ'ß�¾kÞ(}|¡áúêªS†^àgÄïÂBÿ<LQõÖŒ‡LŒýmá-îK¸FHø©38`ÄWæ§4Q+bíJÊý1 ûˆaÂAùÿ#ˆM(›pvßðŸ-Ì5Õ^vÓgT,0/EÍ1s¨Ò"P ›)ó‚½ïöÄpƒïÿ÷ˆüä·Bnyk½ >Žã£³ß>Ô† VÄÀ~~‹•æ3ƒóúWTà3ŠQ©ëÎJ㦾ÂbUñåø7óòz·p·éGIŸnÇùùùýo‚P?«7Ä/}.êñ¹ÀºñF2—ÀÉ!¢néá`„‚¿ úŸs¦ñ“ºžwP¼N¤øí˹C;g7ñ0TŒbkFŽBkþQ#´äsvR>S5P7V4võ|ƆݬK8Z;Íí>—w5€!*&ÔýÖp˜]þƒ|óa΋¹ƒ€ß"òÓ|Ëù>·ÄxCºóŽC}ì6 tdˆð!èç!8 ±Ï¨!Rb>¤Ùq®xž+¾£Ê£ÊѾ/µOn."q×øŒøëÕ9³)Jè´Žú +< è+uPN•í¿ðÈYb™œ¢”8Ãýìw +&*(.¯±úwUuoÆãôÔÕ )=|F(ªÛÕë€*>£˜úî¿.%ã‡ý£aˆ€XÐÊTH† +µ¾µVг¶ó«p:V«—¨«FöœÎ<HÇÑš‹ú +déth©5œ7üÊFDlv¿ŸÌšß3¹ñ28PÚ‘ö%÷Ùz&Ð0Dˆ‡ÕïÞ»dAy"Jsdà|Ô‰xÜlë—&m]!èî÷A†2cÐP´í%æáq.°÷_`hÇIÝâþCÄÒ<QãAøk8ü‡(t•"^X†[ë/&/ûZ:xœ–}ѧ߯Läo?>øëÉ¿T/oT!½ÿðç7îÉZñ?‘œT—r—çÕ=ó{Êáýåð‡Ï"ŸY#Ÿ)žz'ÁÛï¦4Lƒ&'ºßÕ tŠJˆ'“%ý{Ä×êÿÅÚwŽŽƒÞÌ‘G¿HÖwf?)«µÙÝ¿]ãÉÏ]î¹Ë¯é8Qá$~áR#¬ŠL4kC"èêqGš†�í=‘ùÑN°ª"j;™… +½#,}(Ëö™Õ)µ†sÀŽºÊ¹`6/6œõôè«Òã�«Š&¡¨€»% óß'c„¯õ¼Ä“ý�MºGõÔ2uÆ«p. 1ìG«\ÙƒK@y]Û�ãܬŒß"ï{’¾£GÒøÙ¼OAvpûû9jÒUа‚ýÈ ÷jåH‰ªöÓQFØÊà†o=;ì‚§bꈂ=�ÝîÄÕ_ò\îþÛXRM¯ÄÇ-&Üð½5U±Ðq”#úŒë¹²uð÷;X2+4°õ…v£ñr¡zŒG,ª«èUFŽÏLI1Ñqk{¥t¥U2YÉw²Cl¥jý€FK)ŸTÍSãµÿé0µ©§²€&4Vm0ÃW´‚+«Ï^/±¾S/Ás¢¨¥7d'Ê`»ð“J%ly’%¿É®ÞQÄ@ðÕ€òÐkª=ð-ŸóÇA43Éé·“€»Ê€}G0q½s£N[`]#)œ±T#£x0ˆGnDúLÚV¿ b+¸$"Î%ttk®»`ú Ð@?âíÂUE røJ.ÇJŠygAzCkîêÕoe¼5nf™?F¨}õbýöaW±¦ +*S +% †áe÷ÿ=›ÉL—õÓï$Iw<n€ÀË”bx˜¡3‰ÐÍütàØN§nG‡º. ŽïQÿú\E§ZçŽ…Ž—ñ0K~0ow©âfˆEž<º™IÜì!|DQ]¬M;¥¾_êàGT™QydÉB‘h?²‡‚Jöz>EnÙ‡ñ«dÝ<²"¸b…¾ªWòàbºåM+M÷AÈ´™o(¦nzÚß‚ö2Fĸx’¾nnWZð"šÔòþ?$GOQ€háuäÌÊKq¸7AŽdÊG >¸7°4舧¤ÏQèeÊ«È~×ïõ²çz™ý �A‘˜¢n�ÚLŸar#G‡>¶œÍu¸ÐYA¥1/ÿ7g´MšÊÜá֋цh +ÇÎe€/`CŠò—É}¨BfËoû’‚ÃôÇ8©~d3ÓîÀ}J6æ· ¦Ê.`ý=z`qZ +B?D`£Q?‹úgÔ¡¹hmÑÝßÉÀ5Ÿ–¡X{I}¿Âð(Ê8b·º˜è/³[|¦æ $<!ì(‘_QŸrP@÷ßþøâ• +ø$Ìì¿gª·ããa²wɸ‹’k¿â¼¶ÿx‚„ +ô +ËÅqÅŒÌK$Â@i1?í‡}<l!¡¢ÅÐbwg£¡÷òj>à@'âEwüÑSkƒ¦ 'Æd´)1OÖ_”hªö ʱ<rÑË®NÓܤºªû%gNe`Å-8rµ®hüÏšišæpÝú‚i‘íMh¶3oc¼_Uc;5+jÖߢú$ýP]é³Xª>\‰ßÑåªõ÷1ßÔþìWçø·b*°&d©]ŽÏy&ÐùÀzÑâC5P {¬jf÷ ©¥[¶7[¥«÷<µ”üµ'Ì«fQdc²~Áâ�Ç©›Ð]äSR_KDK{ `5/hJÓ—–PúŒ#Q«J {+ò˜ôÀT~lQüçߘí#ì53Š`¨ {§CL>yAƽ¿ÁÎ ë¢vS?>ùkeë÷_ã;µÿý9¸ù‘ˆÐ¦åÀû¨½¾‰™Q`“½öy¢t†£grv—ôeóDLsiÇ~4Ÿ´?¹yÁ{¦7…©K¢…JõuE‚NÇdíæ®qôPæ=”+¢÷”#,#HÍ�¯k{‡UÃKïŸíÁPØá·!‹ ûá×rrÄuÁW~"e}w‘Ýñ¶u1åTJâÃ{áë@Ê~ú4vÜß!j¥g6=¢<Ø5(-™qK¥>Ö1§P6PPãq÷:HBJ‘Nµ“ +½mTÅfáßKÓ©w˜3W"ò&e$ÆžoÄÔ†)ν¾¨ç¢˜7âD%ؤI®(Á^MöD"èÛ2>ÀÖ¢§u™–CE>N€9À/Јˆ]0+—¡"Ãͳ-¬ÚìÕ´Óè¨÷îˆ!l%0܃Ñ5 ÿU4Ñ¿©;jùˆµ#ÏJ“ü¶úß®ÏE«¢i½Îwz:%§?²ékm)Œf%^Âái/€›s‰I xxµž/ŽÑx¤"Éß�…%×ààô¹‘/EÍwÆÁõ©C×q$³™åÇÃg¿n¼^*Š1z`Ûa*Ãy¨"9 +5Q/<ŠºÐ¤¦û°}4DOÎ_�t»«×Û*¯ÿë%Q‘1 :Ĥx£,×;‰‘ qMÅGyÐ’{\+ûé>Þ·†ÀiÙ±3£ƒÉ¬:vãнÍÅ$Œ/ˆ1v½RQLB?Q²£é|¢€I¢æuéËò½˜15¢ñk!%ø½%¥&öw‘/º1_Z…“'QñèÅ¿—ÃLƒèuX˜º‹k k€=ø“%›"Ð}Õ@WÿÊNM„ïU¶¼(XwnˆÒ/ЗyêhË^ñͽæù"²A²)î®B!z˜/¤iÄ´g·Ä³MsÀÏ*ø lSŠßU’ÝEjc$ôøE79ŒÖºH_HÎë^~Õ zø0=¤îÀ ¹û£¹ÑÈ_+ŽÀbÅNýg9Ø›Ôý(û¤ƒÕâÿ§ìÓaºG…^õâÈ¢-[pÿx6~l~é~4ñáTt>è‡]„]Œ(F˜[E㔬gÔ åE =1Fìë¿8ûAu¢ÔR"1kkœþ5 inÁ +¶w)è…*eøYB"¸I¦2 ž/M&OÙ׉\‹×;TÄîüñí?k¿¸d©ä¨B(.’$“í[€’ì¸~4•Lf&› ó¶žQHàçfš*í’ãò•¦g2·î¢ŠËE† Yhô+îãŽDÙHeDÒ)ÏZÆäx?ˆäõÉå‰(r?¹°,pØâ‡<Ÿþl¤˜•û“}•¬{q€Ž‰p7yBBž²éUµ`ÙRò‡êÕt‘¿Ð™=õÒÆÅ61áÂ8Qñpaš9çzr9£D’ó!•Sóñz—‚¸<Mïzfi9 Ðb†u, ÌÜ?ÛzkÅŽFà ÷%T¯É²tët¸¹v"ps.²JÄ…èÚ3=ù“Wä/Ãw’ÖÑäÛå1Wëlˆê]Óýǵolàx=ªØ¨Y�löÐP(€Ë´›vÇÁ@”ãHTE>H~uÕ„Åù1)Š’’_X¢zúA…2&Q¥g}oé¡Á¹Ê‰f—(³âæµ#.RO/åfÀŽ1ZÏÄ[ëO®k}™¯ëàbx~mR ÇZÒMÐq5ÏŸ ‚C3@Š<nà¾2ƒšõÂ&;ýM±ê «mÅñÊ)×È)WÁö.Ø™ð)3ë#UpÉ÷«°/ʈÔryRP„×ã|?L›}n£hØí(¬ƒ¥¤ƒ¡Ôbä0 +¿ìÒkŠTâšpÂG´ê_ÿu|ª0þ¼ÜùsEé©ÜíñW`ˆ?0ë‹ÁT‰ÁÔ¾CF€E&bi&‚õÒ½¹QñEQÌy &Rí&ÝéÏi¼£©Â£Qr"RMÓ‘a©ã˜²)°`+3†<4ù¾æLcæÞ[´*WzçStj{öŒât#úEüÔ�¹„Þ +Õ[“ó£~Z« ޏc NnÈÞ¾Žo1šaÓaI¤óöÁ¦s¦rT6TŽŒüx•V]ÑõÕ7 |ó®òžé-<õ…§æ@‹µˆÜ’Kh-øFÙÖñÓŠNªzÁ4¡ÔÑd¢¤ŒÔb ä7‡©ê[1L¾TºšM0mykl|6ìßљ#]ª‹ýì(»Z |Ÿ‰ê×<“!,óÌ®ïØ,PA*yñ»Zº U§žæî‘už�@7¾'à¹Ô¥éÈi}È{Ð,gR–»ôQû‚ê6‚î¸oç+]ý\€Ëã:‚6f “±å»”1àn&ÎLƒ£V+ÎáÆBÐ#œ?MýP€Èx—þÓC.Œé¡uýˆ›¢Pó½zé—õt«ÉjS3GßXQ2ÂîÇq:ß`±å3þ›°3cuØË¯ã–wÊ�“)½žYµcïºölvÆN>¦Êbh/k¿CFÂV'ãïóÈÂu S}ľ‹Éâ%º…7rHšïtÙŒ úVh̳ÐÒ&ôÀ—YrO?h9€ÊG v¤†¦ð!ÈLIjí&ÚуD¹àç¤\ç ñ>[4õi©1'Ð)s:4úFÆNˆU‚it|ÝiþàLÏÀ‹k —þŽt—pLÆŸ.m6w¡Æf5³3 Ùy«ì}…Ê–›¬Þ‚ì»SX“¡Ì½Jì4‡RÕ¨êpâ^†çx•Øê}¦È$Õ3¦RãÌlMfö¿W½žûFž¶Lé+£‚A·bæ§ïÀ +ž€¿EÍqÉ1óàÐ�‚šûË��WaÄT•,M¯Œ–sYîí÷Ž‹_3NÔ=_E~PB�Ã+±E_v„1ýfš÷ü-+ŸŠ¯ ¹0†t8¬€í¿?M0³¬ÂH !€hG˜SQ(§%‰Ú•ÄÄÓâF*ú‚ ©Àf§Ãˆ$uf‰î‘€3 +÷Eˆ3-Øw³Ž²Iª,´®Pç%›KÁO* +—Øá-tÉC^zŽ&¶²›óëLLF‰êˆòŠw¬#H·ùfÒ3\óŠk>§ŒñóÞ’„dØÎxù,²,ÈëÁÆ¡Äç“–üèªÏÓ“ûŒ¡isKjÁγ/Äv®õpÐh;Z‹l Js XÑü¼×àÈúìp�Ý«$M À¾Å[ù;n3ÊFUí1ÖÏGŽ|dýÞ™±Åè‰|yJµÈ'©LÁ àZ'â ~µ#°t/åˆHšÂ¥Ê|—cÿu‚ø¦'jHËxœe±S^vñFòB—?9EÌLDÄ“vÞ{Øüqðà½ÿ%¸#?²ïTP…YN!…”Wº´—v1¹7¶TóÑIV‹h(W04 º”›ö÷}…dÓlÁ1¾C3Å€„,3ûýŒwÅêõ¼äöâyDÆ¨Š˜(eù|¾„=²Ñ0‰`O¸>Ý>ú5™º{Ó Ì–¼{K3u|vñ"ÙzÔõ0±/�-˜ãºû`çÑ5¡Ç +3·¯ð§é¼UFhãÜßßYC9&¦÷ÁÀ7,?ÕV9zJðó|u_Ô®À…è„L•Œõn´;[°÷øSRûœÞ#Øöу&ß·÷=ŸìH‘Q®Í·ŒzB.ÞWNßÓðR-i`q²_r³m¹(ß@�×?0oîÎ:g0Rå˜WЬžžÊ7JÉH›.Às<›0ñÈ™Œ2µ£3üèO¼ÐPÐ#µx?Ê ì.e¨ƒê</"ÚËŠV‹/zjüÔc†…ÍNÕ±¨æ¢ßÅ ¨ÖDÝwI_püqzæ1êàÙbic¯Ð… +µý\Þ„«†ëÇ]—tD¹ÑZ¢ &Æ D0Ni©Ü/·‰g뜩“µÇC⺎Ï(nɲ�¢KÝkÿ¶Ëý<fûû_K‹µuH‹”òܳã3nÔ¬yzu6] ”¿£ÍÖ’·¥Û¤‰ßbçª~¥, +šÿ¬cE›RÆ»Šõ'36Õ[i8(LÃqT¨ô üà‰ÌW_G¥bÊnÔÀÿqáôÞßJðVB’.?\Ñ}�Kóf©ßT1ßiIÑãpè®qɧ›lªåF.#éΨvÍþµIuÐäÖÐ’—Aˇ‘_j0$ÓžˆcpîyËÙ·‘†U\±UÔËï<^Üb”ßy?¾.BøÕ¢Á¾ÏG‡a×qg¦õ(Ïf殩²ïÒyfÌgÝ÷+ø¤Ý/‰HØ}´£€ šÏ¥Ð†rW‹ÇPÔ€.šØE +QÕœ›îyèþ&Mg +/ýWåœÕÄ“wõJÃzÁ]â}¿¨éC]R²XÓoc<Å$Tt†§‹fÊ»®àÑâ«„ ä${ÕD¯ ñ½ŸÌ´c:Ÿ×¦fË™0DBõ¬.2Þ¨îr&ªïÃëGÝÔc� ýM‰&žß§®°W9xjXôí÷ ê¹iÈ#‰3wR3y¿fè¿g‰,¡Tv`v#&0;ŸC¢§à¥‘ãܦ1ûí=ØK5€†þ|ÎTlðў뉈¨…ˆŸöu& �Du{› @;}käxÇíMµCš ˜Þ¥ÕZ•qDÄ3òd@N°¾jÿ½¶Šg4Zæe"Üyb{„¬*£ÄqH§>H tÔ.¢Ž½Ìßk¾‚ß=mm‹Á'2A1øi „Q¶†5‰@ÞÕû:^VâÞO¨XÑè +…úò7é´_¡ú3¦í>N¦ »‡½ÜB$øÂÎ3ÝŸô08Œî +œy…Kܤ‰ÕKÁ.ØIÖy{Ÿc¢¦ž;°U‚ì¦@T'¯&¢Š£Ü;FY‰ˆC[ð ‘öÜSp¶J„ùjToCLĹŒŒ\¨(•îßkbí!_×¹%¤À½¯¥ÅÀ +¡´õë°J?¢ãû„Ë6üôê÷"‘FR n¶#@¾Å}G¦}�O,€áâäùfgAË;jãõjb«ïXÃsKÉÁG-;�Õ¢°½»¦®M¬6r¯ì>ÝNd§öBÚ4ëø+î¯ä÷¿ô-„µÌ‘Pv“`Áäµa™7D&¯ÛÓRd³9{à2[ÔR`º•ÅD°ìþ뫜êr…¢Íªy<}2_ä/«-ÙépÑŒOëÎFî—)Z“¾ÜÇÀ#H!“òü@¥8ЃéìKúÖÏ`*M¯dÜïÚ{-»÷ím6,2ô_ܾlEöLHÈrÇÛ“´º_ÅØT§ Ah-+_¡ô–øûÜ–5jTɪ{r +&tš«[°t'u»åO*�Ê)ν2Ä{œÑ¦™é@Îæ8ô^Æ •âë¥n·èîgì–í‡ÈÓWi 2ÕGTwl”¬Öö=ý—Ó*”·Ã[("lF›i‘A BÉFËlƒG ø Ù‡îÜ)®(áJùCPÚûûÔ·7öc”Έ!B;_ek>ÀɾN�ˆn¥›„±]’ú¯váÒíËÔ‚TÑ7›æ<ˆ,ö‡Dà)G œ9ÈÈ%=³œi' ^$Mï‰hbÐźۣ½ùä0Ez´b}ÔV²ïb£Ø@xÍGμêÈWÎ'Çâƒ5À»¿œª3½»¥bäftAìÕ¯sç<( ‰/\‚˜‘H½¨´ZUÄ8®Ó¨Gä0ˆý"%ù–bß‹Œ¨01�›Ña]GQ`GŒ!Í¥GV…/ŸQnÂo†¡†ªXÍÔüU@^ž[2T?ÓF¹v˜ß~`’KŠ~ýÕÏì`§í¯ofÕÈÕï£j +JŠ£ïÏK‹«R^AßàTãõ:ÉMý4¹ðw`ã\eâ« «×!êVf¤OÌÅÆ^ö{W¹‡-²åôÏUÊW˜lw—Ö+|úéJ–´ÖÜÞ6còKîYhAF¤Y=EtŠJ䑞fHÆÖ³d¶7‡~;;4z7`uj>`£÷uXm$W*Ù¨ðIÖÛíc¢�ŠjâS_aIáFÈÏŸ4œ(ýD@u=Ša{º¿3·y�Whä߯¨÷‰yáL:ŽŒzŒ›Ý>D¢2LGK†¨2Œbèq¬f™„1d4ÂFùˆ¦ë“F~aÿá|+&õYÔXC[KÿD™q~båçÁ0^ù.[Å¥7l4âPF¦õ‹uö’)>”`†Žü•q¥” ]:HUD‘øê63(}S©î7Ècœ#ij@ƒ¡{n7nDdøï ®š³£‡ì‡ h ¨…¡0MÎ,fœ= j;ªN0ÎñÛËZ•‘‚<Ù?íÜ€üÜ>CnR6õŒg:]‡V ¨á¨ºSIªaJ¡àð²I'÷9zaà ¯kíTF£«Gݱâ½!8ùœCUÊùŒY¤ú•çý¶÷ ŠÚé‹Pöÿ±ö®»ÒÙ™Þô=ì?$CedÆ!ó§Ä‘ÇmS3‚0†$ÑfS£6D²ÑMIÐÝO<ÏYûûv›n A©É]¹*3++Öz‹zŠŒùq·��vçH!ƒòXIäW–ÚyÁ‰@%M]·‘¾*òžûqË•=è^ˆkÚ1RšµÄ�›‡UF9Óz.<AT™ ÎÐòñ/ÈüÒfõ‡‹\§·èÚ–f%‘]fs]/)’ø)e?ÍïÈ¢«€IšÔ‰RXSç’«Û¶˜úÍ ×mÝ¥k1ä…äíÛå4úL»rEÅ“<•4Xb?>æmÒÓàDǵ³T.jùâÝÊà\zÅhU·åc2Þ#cäà�çú¤Ëð»À(6ÝûÏÄâ°/x\K.ÞnD¥úhD°ˆ›!t/ÜkIqWöQnyÏFÇg·0µ›’¢åu&·Bây-ŸUMÕ_Dz×éöÞ`r.è(ÁN縳É\GZš½;ÝbÀv'7E=øÊORnž0äiÍÛ²„Û¸'�þÏ�Ý[!ÎlÅù[¯õ“°(a©RÀÕØ”2ܨû)lˆ<„óiÔL¿eʾá[²I‡1*V=0G¿gDUÄæÊ]®uÊÙ�YÐKÊDMÊ¡y³4á(Q�APÝc¥ÞßK‰ð— õª Ê#¥Ò^ª´'ýá¶iH—dQ^zG£¥®f +?‡µ#²ÂfUçTï}n_UBGüy²»0u\ )ã¡ÕÃzaŽ«›åDqAcõ|¿©ÃœBýo‚ÀÄ'*w®õm] ôM¸Fˆd£‚̇'EÓ3! +õ{¤Ä®´~;'A§â ç[èSh¦²Àv¤Ár{w7ÌÕˆœ+FRùEI:°^Ì~;Y1^`q}‡5R@Uª¹ÜIJ~£‰²¤2R¨û”H\ûþÐ÷‘Aµß«O�®·Ì¥ˆÈSséü½#4÷OVõj:ë³Ã [-™({¸[”…T§kq-æ%÷™ˆ…‚ØËÚVI—Êc|³ª¨™ÐçtÁȧqd-6¥›/3 tÒ–ôôÜüpm—Äþ‰ÁêNØâ—°-5425/djs±V”Eqì>p º¶lèÆµEþ0ÃV“3”mÐæÇrÑ¢ 3ÔN¥t^²J¬–I[’ž²Gš|vg?†FkHcD‘±WuÏj…pEÓ=}ÿëÁî*µÁv=>R§É‚ì‘úØ=¦§dìçÿI=`]<0®¥.݇F"h}'¨µ<ÏlQˆÏ)šUÏE)`F‡Rp2ˆ‚"…ª….jj0[zŒchV¹D èÀ¼¶›Pr¸°Q’CÓ†~?D,‰=t‡²ÅÅž‘0UÏ(r÷–Á„¡WXIŠKàºn¡ØÅ](vÉ»©âž>¦Š/«‘Œ01fW{ª&¢ó¹¤M½àEÖã¯Ï®ž# ,ŸD¦¢Ž2$^bï탹!r|äeµ-]T—:ú„‘�a¼§-2ÍçZ¦'Ê÷˜×™RåðñÖ¾™*èâÞ»~'G,äŒnÌ…•^õ¬—¾Ï£}3vƇ9Æœ¢I§eÄ2§E ÜaaÌ?²6‹öç†Þæ™RØy¥P2hâß÷„yUâ��`yçm!ÈäCTï3ú†ËW_[w4о~´¢™¬r!›Ç-(A#<ªítxàùÁ¼.Øã}}œb®ÊÏ{<¿¤k5¯ÉÀÌ· Ê<ö¯[ØÙ–íª@‘.¾Œ²êóˆM3ªŠ”AüÙsàKp²ÒGµºv@(Ýr³Æ£ryÀKáŸSEÍéÑpŸßÖÓ‡�:5À%�þå¡{ú°ˆÆ§ò75´ô¯“Á'^_ŸëC}åÄòn(‚¾#I£“Å¡ÛWð¦1ÍÛ„-kâÊÛÆF†QˆjŸE;8«¥ìiÆ%ìiÄ2…žÓ‹ÌôucîÇ2—˜÷&5¢CËu Ìxú¤(PtÒ`ä9'©.Ž¢®‰ÇE]J·èXa¢¹)”M2RyÂÎ&9Ä‹*í.žÖ! QÝŸËfÓï2»Qõħ2 £3ü¹96žQÅÀÙ@sâm¡uÔ¬”‘jˆx�ÕpozÙL'æ»7F°ÔÁv ‚¥YJ¡,²¸Óy‡o¡ZUÜhî*`нxD€Ï¼.èµl, ÷0³œ!DækîQ"2Ž#¸ÛZd¡kyÞÂôÈ„èmXŠà‚º«\ÉJÏ’K–Éd˜KàÑræœgpP2WÌ’oÆV^—šNÔ®OÙ B5Â5CësRÊæ9ÎÄW©þÓ‚,Uh_®õv›zàB!± +nN¥ö>ú¥]³®Œ)Ü£ÍNr’²÷uTÚ÷ËÀ°½²`èÿ¸¿Ò÷‚”c5Ï +Oc+ +P*°S{BiÀPN4b_ziw«!œf¡×6»ký3bŽ2ǘCØ«_Ê–TµzbW&`A£$¥•¹¸¥ÂQçì5såÌÍg®t…f‚“4“[9„é’TržFÎ,RºóC©»ºrÌ q”>·ˆ¹ƒÒÒëÊ/YVØx–'û™ÚRÝ)Ý75ãw£TÁ]íR¦ÏÕ(£ OÍâg~JX¡Lû?ÅŽ~Æé>ÿÿyå9/¼ŠV:|Sò);§)Ë¢ïVLRLiç ¯”5¨iVüvB'4ðR2DNÖ5´ü{ͧ ëS̼ËQ7á)Ô2M³TÂóyW§v$B4Oƒ…cµòŠT¬jÏ^æB<RñŒš7BDp#ëK¿ƒ¨]·"ü,PÁÆ‹À)=åËs¹L°Húª9wY½²?Q˜?Î%vì˜jy¥¸á]€û*¯Âµx9—ú#ùI*³Ñ¦×ÔˆRw"¶{ž®1”$s癎ê7Ö(o0Ð4—Þ¼ÙAˆÉoØ ²´,§/Q=óbnK8úPJN¨$plw.xšÓÜ]uöRjiÓ#á…ù•D.Š„¹Q:eddàöEß'e(b〠+Ä”ì̤Ç`…Ïg‰lÀœÞ†Vxmu¬iÈ:Ò‚»BŒ½ìr<f/V\:¤ µ®)$r6Ì5m–f1\i¼êº¦^Qc&¢ ]Qê÷éðÞ’ ;ò—4äëþâÜŠm|«9Ñ�mš‹òœK¦Øù õÅ-<§q<ã矎#ˆÉ²P¼âæÇ*ž.vf'›>^j78eŸœ‚ÂEÏf% <=é9…/vc±T@\_¶Çòƒ#Dnÿ1¼ˆäœÇv,rê‹(.Ñç¼YÖ3°çZ•áeˆß®h.b¯¸æeC~8ù–ŽÞ7òûAšœ$̱âcíJ’†¥–©HBšï=N{<}ã±W„;ØØ xËçÎFH¾.p~Ýã"ÐtèêÝä¬H‡°»î#‹æ@—Q;Zƒ‡È©Sj#Þ‘9 xDÑ’ÈH»õDì8P\Šú̹NŽ»ïÇèi÷ƒµ™ 2(m jS)×—[!èêB¢ÈŽºiö£ìŽi¯År–=¶i|‘É»S¬ûyÄÙcÓü=ÇŠX( ºÇüˆ|rÓ5çc”†K°îÀ9ÄŸ~ÿ~¾ÚþêÉ|Š‚üσ±³Av�OXˆ,EkìªódúÊ=¨È}õ¯ÕCÖPå™v.")sÜH®l©ÑÉ ÙŽÔÀP>êÀ(rfõ¯z¢‚P›‹YÛDPû%âP+ýPŠ_û²Ó>‡µÝ‚ï7‡eYæ HàÔ¡=×aã‰o]âXê•R0f÷ûᢒ„ôDjÑñ„ëɶÉOEó©¡n%®KÁˆ¼CÍ"\‡Ç•Zžç…TÍi¾ðùI?F¤^uóÿê`/öãòЊ–²ôWîœ5s:öG çÔ”õÊðG²˜ºÙK½µ\ˆ²¶‰ã™(ÐÑÅìèQ©Gànþt¤×£lOþD½òç²°?˜yʶ™«?ŠÊ/4Â*½Bz‘“ 4Fî‘ÌXÆ®;õU¼ÈB¥Š±ˆ±0!»¶£š•ª^] +žã®¸Ý¬d ´µ)¸n¦*GW™¯‘ Aíút䜃Ê'é ”Dsø‚$øRŽ$˜@qúI'Ê,Ûˆ=kà83 +E”Dmý+"…^›~òmÙ¬‚×D°VÕplñzÜWŸ3bÔýÖº*J¦Æ`æ´éŒ«Ò®}‹;s‡%3‡d×#+º¤±5Gd;Wm5•Óægp45e÷õž’i¸êÏ6WRFÕ§êÇ;YZ•ñvOËb +Ê‹4¯2×ÎmÙµòrmV´nEç-+nò”Zc\E•(üÎÚ+1-ËX mœb„ýZdyoéá—™ýín”¯XT¥ôo:Ï3øpu¹²:„ä*TôZt–OáF©-ÿRÛy¶[Œ¼)—»2—•'åvj*üÜ[ñåŸðM”¬âÊtNet~�éDS2p¤¼ƒR�€Ã¾B»p#CÝ¡³Ð=íím¾R/¯Q:Q¢²MDQuñ=¢œv”íßÑ@0ÂØ;&f0oÚîn"w\í°® +gX´(Õ—E;÷Xû@ºˆ#m~k]0±y™{ ØU;ÉMé¥S©º +6»×êQ¶b‚þ¶…÷¤í‹ˆÔ’öÕ4å ¥£ó´ŸŽ£wŸ)J—û¡�Eô±"ÝÑàtÉíÍ‚õÜ+B³êF'ÞòŒRËŠæUã”æ¸°-{"œÙ;È2·ö¥D£EÊHM"ê§îj[œÑôSðHi›¥‡åØ×¢ +xÝ:>ã#VÕð²O=Ϭgz¶¬Ûæo’Úû蘥K5_s~Òi4Ó½—u£HÕC웯.œÞ\/¸ÆéËe’I³ â†Æ¦aÛûŠO“F�G ÊtáQÁd ªjσêgÇÈñÓ d.U™ +xŠëö¯#Ô?ÙÖ)*]A81nR B>SˆÏÀùâ\‚Ji¼p+öçˆoV;Dµ›9VÍaŸ÷³@™"#Ïõw¯¦>XË[’챑‡Û†Âmø¼Q\Æc¤zö˜³Cg_šÂ˜RïT_Ï‘\îrãˆÒLŒt|K~D5QûD¤u6wCæ§©ªÊcçÞ‘k7ðB»"¶¨.ß\Åí÷ûеK'j®y?áŠ7£ú¹¯#YªÛP¯‹XséydDÂaÈ$5[–9BÞpnÉG§Œ&Eqà è¡Nƒ=¬ +Pt¸Ò&œ—®®Kzc´¸^D,žêi÷öè{ŽÚò§€É̵oÖµ™ÄÕb¬Z£ÄO¼-•–¦ +ÙU÷ÿ‘Çu¹j.”V1÷ÂÚRg¶µæëÅ37<'®·çëS”Ô‹¢Ñ4n9 +ÜÀœïê~4eìœÎ ñËTOQ@¡¨íéÂ6/ûíqæ:Þnó·+4¼Ý·m lƒ!DFä¼?> tÍSÿÂêòð—Ïúª®,\Œ&Lç-1=¿l·ð<áü7™xjKN2JYD¹RëÛQØÒ’ÌÌŠ¬øê*ãjtMÉH3ÄŸeõœnÃ>SôWµhD²¼Â„¹Â¥Ûñ(Km€®&Dë[ÊŒ n¬lj*› y–AË 5WÎÛ +€ËF€©Û¾”é(îxœ¢ûþîm¸íajíÐC÷¨¹Ï æÙø +¡=jã¦sv‚]é>˜§Ø‡¶ÔÓ�S�ñ7ØMtéÄ ˜'b¢4|‹†Csâ›I¨kF~q9,N¿Þ~>IúS.Ž`1)-4_ò=:# >*ü®°ýË—û-#µûmGA–9È!TúÅæ4 +<ʶ+KçŸ9¶>Ò4S–ç!QÚBTØX#2‡³ÞŽéáá~¬AÏ9ž"HÌèL±/“"¤ÚMKäj«ònéÚŒBãBt9*,ìŸz +jÁǺèÊ‹ƒ/çõõ±Ý±~&äÎÞŒèc¼³ÎÄëT±ÀÁ©cs;?Bù𒨫6è�À}*çÒ~Ó¡>ÎU*¦Ú¶úI¥÷-þ s å¡·®Ü)œ5»áU£ceÛÊ dµõÌg y&«ÄkÛÄ3û¼þ`s™Ög¹M¢oæ9bghÄPl‰¼%daŒwõŽ ž mšÖ,•Õ&ǃ†óýHpC‰Ú©K�¯vÿ‹U#Z¾DÑ$�ˆ¸? %N2Må~·þµ€YØÓnQzÞÊŽÝ\aÿH/)¯’õˆº¸½^\-vYO#úÊgÌÎnáv£ÆŠ¢º%-Iúóì¡ÿ�ËÀyÆ›iÔÕÐÑ©Ás¨<uÞŸ§‰X—öNëòˆò °l®†ñ‡hÁÃá+vš`Ä\l)¨Ë‡gׇ‡ññÝÒí^ÖÍcƒ¾?½�…Kh¸û’vÛæJR(à ºº3»¾ºŽP"<û'›Ã§ýì#½•9‚t¼h¸jŠ.Ÿéü¸#nc¶[Kl}6˜ÔäBðïðäÏ×¾IuµaÅCA%Bc[M¡94=¹î––&å]ýÇŒaR*Qõ\Q´€AtÄÃ+~,Û‡¢Õ‚xÍí¦)Û§ž{Ÿi$2–‘ˆÊ5mqØ“Ÿ¦dŒ§¼]âØu;Á˜ÝÇí÷c44ßüÇÄþ´ôx ÃSç®B¦åÉÐh‹õ?’ô‡Nu!cüÎOš‡$�Dúu¸ ¤ ä2]>Ð@I?#ñy©e’Ñnóq QôÒíÊv·»Qz*¢BÓ”0*a)ã+G-ÎÙ;s?¬òˆÈ#Ëzö‘,ŠîÏm#"È YҢ㖲‡¯�´ªÌ7ZܵŽ})QP÷]må9"q0C|;jL-ÐL¢HÕ¹¡òæÿœ¶j†tBFäù¼0(>G\Áï +—¹ Ꞣ4Ã9ZÌpZx +¢TÅm‹û•)2âW*\ŠRôbEã)ÂÁ¡8\²žåÅ~ôúÎ{B–c”Æìá}ƒ8i$©ú-oro¢¢3Іüu椰%E\*pã6—-F³4Êp¥þq¿r»?ƒWQT50¨’Œj?YµZcªyÁj*H$ÉéêèþæŒ#"E†uò+ p#W7sI¤Õñ¶¥N4€#Ž€ë7ÊAó0M>GäZÕàˆôæ-ãÅ~nUЊžE[B}°¸Ì¢ð”:¶')Q4l¨#Èœà-!fHß²hšQsª$R˜;À1À/$2W6ì°káùŽi"lî°|ˆaH‹aÈþ˜3¶¸ØU +Ô#û9\ÝU[îÇÎq-â£çR¦âàn@/ey#Ñ7—tY]Æå85MõŒHJî{s@–ÑÞR¼ Ï¢®å‘üxMÈsnjyðë~»å©#ð]"ê69ˆØ«ŠŸïèÏQj8$uÜ¥j¡üŠØÌŠ®fîð1¢œÁ¢ÚQ¾ËñÏQ²)ncIª‹4jW)axÄð‰ø:Ê%ó—\þ +fCÜw4Œžíι�1Di·i^è~–ZNü¶ˆ�‹@„ÊWFØYcÆÊl Ò¼·¯±A§¶@E³HŠ1©Ç:PrÔ™é9äˆh_{s¸Üœ«%ª ýá»ÜÏut ®¯á1� +À§´ kÈw4ôœ‘©8“ ônž"ðY¤ÜO +B÷‘ž¢Î�9¹%´v;†hÆÚŠÙ_8ûì5PKÈ%Êm¾òöñÑF.¦2˜ö{?jÜÎ(Öu[ú JÊÏØõw`Fyñ�Ær$9½CØ—kŒŽ\ +ÌMŽÄåTÈ4Î†Îºê ˜Àà!=žêë0a5™½â„ŽÑáññÍÝæƒŽÒ÷÷Ã8‚/òžg–³C9fZõEÄËió)ʦ箦Eåbí×rF™7K=nù«X3ˆ¡³.¯º:°’¤µ1\¦¶ÔË'žõG<ëé}ƒž°)xÚæ».±°›Óøµ¢S¸KÛš$.5HäFê~îHhßåš\T–Á˦mê¬Qy:ÞnÒÓ†[Õ¦ÔÇ€¯ÕúâësR)ˆ{É¥oKbØ5Ï€‘º«´Çœ3> gQ^9´-9—AuÅPë!†ÆEÝî +›Ì¢1Ñê}œ±"ê+€ˆr=윶-ô)ô*Uz[Té3¼'ÜCˆ¨®¸dÁhË9XH$‚ê,gמD‘´óàR×øbHYÄ 1±xúðRRFUb3UoìÎ÷Xn#g:gŠÎÒ;{»ÅÇwDkÇò¢ÞJ¼¨tÌmÑdÙ¸ÓmÕº±0ŒB£½¾)ZCí›Éò“ +.æ(uq♃ +}`ôC/÷C‰ˆ~k7W<ÚwÛÿ=ÃÆ"ADûdÿŽÙsãae_KwÉÊÛËÝÏP¹Pqžˆ/jáÄòG˜%:2wñ·ï±úœËó~È‚´¼k´%wË +ø¨{K©EûýH2¸/lsÛÖÓ=³yUE‘áB ìw´Ë:³aÍc„¾ª‹Yš„õUļ¤ò¶©]>z7[,$Œb¹¹¯Z5½±cñä‚-?äZ½Íœj¡çì*;S]Ƭ„Å›£‡-øT Ì‚·EG¬9Ï 9$qkå1\¸5£`ÓÞÉWhÞ%“—IÏ€*š{wTM´¤H;X¢ +P†K-¾¨øÖ�~�„ö,EìàV÷Â-!]vÑóØBo[OæD¾êÂiðÄPùº…ã\lˉF’ÇÞ`öQT$Áž0'±AÈ–Ûÿ‡´›¬¥2ØÚÚiÝEè<;À'ùŒ¨0È!¹@ªLë¨@Äb@;y›5’›´o_AdŠ‚a¢šQ4¡vP]Œ8´0k¨Š³ Ð|ÑÛŸ‚wŠ\u&Õ¦)OÕûq¬šÐ¦–Å +&_g€*h5_GΊˆ’Ý[¸Â¯Ç'@Ú™÷þnL&EÁÝ.°êŠÊ +„ÊyIÇ+�…iÔU!zŸ’°ŽlIaîÎã™7œ¢ë£Sû´H°dÐh=Ö vZ±U’Ÿ.ŽÚçý¹;ƨâI¡|=¾ƒV‘\^‰ÅûÞ£ `ÃíÃvž{RBÏëæÇ~ˆ5&®"ð¥1½ãÓLCµœKî¨êÅoDÀ8.Yû1¢'â6¢‡Žíó|ÖÉ’ìi?ÜyÙ¼BP#¬i&ŠFŒ/Ï-u(\Éû'ÐgA¨¶ê´ÈÊsa’0%¡î®gÕ¬§êt³€¥\ï¢Ôòn·ðýf0(·Np¨jjkBêèÙîÕ|¦Z"tý$z†(~ƒXùÌüeÞî¤p˜ç°¥Xôr ›Šê~r ùUÙÃDh& LÇQçë,C=ñ’Ty¤’�\l ±úQ§b^‚ƒSPŠ“‚²‡;TH-\‹ÕúYD®üÊÓž¾>Ç Ó»B5^ögMÁ£KÏ÷ÞÙ–;»à0ÏAD@ª‹æuž5牡øWl&èj¡Ûäß§¨L,oÛç}_X,µQAS]r…íÝr¥ƒ_*if8àʇ@0÷w[)ª-0Ö"Â:÷©å=غsÁ« V Á SñTã~ŠØ[L"ºqʉ:F¢ÎkA3/QsÚ¯=Šš¯Þ—©ÏÆóÇL„¢«1ÒÈŒ. 6Š–ë±-ñмà†n5¢¦ºøâÌ‚B4¶‰€¼l7k6�—§-(.*¥ðáÀ×÷dÅÚBáU&Œ^˜™Ëýh|UиíQ^ÕR¸‰P+®�>â/dG¢í|¡í0Τìδ»:<4¦5@Î{£U©`ÇÚ0Š–Áy×g°˜¨í9ذHc®‚¨»ÓäÖA… +7X¾¶ {jjó!"3J=¨¥½Ø :?Ñù±•‹–.wâiÅJÓ‘sßßb>ˆsÓüߤL“]‘ü[€óŽä¹É]oj쀦oÏQ£1´¢Æ úøl?s*TƒŠ”Ä)—µ˜Â3ø.°fÚAhy]…ù’g3|“èpGdb‚8(¼¤©S`ãl}aÖÄ@BÓ:`ñ Š 0W5�‚ó v›ªðýÛ)«%F¥‚t½!BxãŒÁjÞ[Ežn~e¯1X ‹/Ÿ4¡7ëýëޣü§²€I¬ð•åÖ +¯Z£»ðœíÓ†QÖ/ïZI‚4=>z¤&k¤¿iá�RTþèŠ�mUÙs¿_ H쨄°=Gä™ZJO_o%v7bpvGº¢‚óU– +¹Šs%,æï‹ˆ²'•µO‹íylÔ¸í\aWœ±×›cÙÍ ¨’*ž^Hk 3-›¢Òð<—=» ±›aPꑺZWD劸Xõø`í½.š?ª¬Ðü¯eí´ËJÓ7®/X1Þí½¿ØÏXšIvºê¾ð¼§8Û¡àísÄMa=pn¼QZ£ Üt¥ð»µ±$© Z3”'ØÔðJºrü$i] )ª*$Xç>�söðÀ¦´ëãàŽÛ.W£ã3ðÎ-œŸ¦v1Wül=ûGÛËR’›ç=ŒôkyÓÍ(Ä˽s"²fVÙ…0/n.æÓô,½ …mæ‰ùÍæÇò[š +êå9 2î¼éƒÿˆ®>è”1¶þ*‚VжóQ¿3´§(/£æútÓ(o·ÎtïmüŽˆÑ[§SÈÇ€\³–D¥†Ñ^îæX<CÔV—BÈ.øßk'u1KËÓ3ÚG.KëåÖ¿¨)Xo(HŽHÌywEÍTý«u>WüÂis/ÉHòH^©´øHÐ Û½Ùu¬JQ}Õµáëö^ bcE΢ª¶ƒ|¼â!Y€Â÷´QcO‹¨5ã‚úÝ¥œÜcq$oïHµT„¶{CBD }rŽbxþˆ+HF=Í¡É6?F!¯b¦ºH¥È“¾]kÒ3$¸ô¢mÅ ŠkÆÎRîËÑ -Gƒå:ê> æþ.kþßèZ†¸zD58†ÝK½;ò£¹$A¤–’Â,MUOR°_5Ü®%ä Ñ0£:Í ÿÿÂ\)†Î6G–†:F¥�Íø¿ˆ$:šÍ›:Š4¹$±¡ô¼ .…4`WR††ÊƒRÏ/áRóù|qƒ’RSøøu*Ôo.ºLÆTcç½±òq;²ƒT5ìÛ²ó1Ìß8æ8¸uõš�*”ù±D�ÕV,¸JÆ=¥ñó+«º%Ђ™ÿ“ +Þ—§ÌWUÊö$™%ú÷ÔEæ2a‡‰‚"h„EŽˆ>ÿ„îO Ø“Gÿ“\ú?rg>÷íSz¼ÿñëùýíÏþüíþþ§VÞþâ¯~øá_Þþì/ù·¿úñÇo÷ý׿üý×ó«ß|ÿõ—?üö?¾þ៾þë_ÿæÇÿò»þõ·9èëoüÝ·¿ýöW?~ûë¯ç!>;¹ëq?Cùÿoüïš-@›…F:_QNЗ¡§€‡Ÿpé‰6…~ýå°×å8¿5Ÿ(™;"ýõrÇÇO`~,]™O})40ô;…·>‹A=¬¥ï²‘ÎïóÆ</*:”¯›*Àñ6p07ܾ¬{õÀKÙÓA®ÜÞÔ“W,c4ê8¾aExĞę~Å+¡¿N˜P—Í•òæÆN†À+Šk|2åJ57Ð2³ý‘åÞ¥$«Ÿ(‡='^i&ëÍ‘Ðê»WÍqÃÀ1Í øœ%ÜaövB%s~”²c;ãv#&÷Q~ +ÂT_Z‚Ð`âWñ–Ó¹5‚`xmÔQý$³_¨Þ7ÑÜöÄÎ%f„ÁÊWAº�ø_ݘ¦W +0ʺåsˆÐŸ|ŽƒÅz4¬njC@Ç…DÍŸ¾?2¡/”‘tãEVPV¸ÅPÞ‚"µU,²îvÏî†ZDUÖÎtË`cÌqˆhžBkÐTŸPÎ~Â2» ’S[S¨‚}â|¨¼qdœ‰$EÏǪk{ÓÂVþ™Ñz=¥ùœ³†ßTðÌÍûgæ„%¬K‚fmÌӆΟsMRÔI‹•–é¨ÞvíþŠ^„OŸ�²ûÅwœ[¼ií Ä.0Ü›¿1ì +í¹š>ìKétJ5éV6ó®<ŽÝ*_«Aé…£–íQœB,@•èí6²#ß àj¡ü± o ]Z(á2ó”Ë íXWŸiN'ñƃ@+á3'¢FöÆcŸfÃ`Wõ÷žÊè0b®»õØÈ…§FñIhöV´=—Úbèo0™|‘e´ôç›füúvðÑ‹Çbì°¼Qþu4·€ý™ü>K=¹Ïñ>óΖEVgµ?†2)Æ¿WÁãÔDw¦ 4¿õØäá!½B·•gËØÑçXò« t昅ÅÛ–/¨\,A)¶é®¦•1³áKûÖÖ€4¶…Ê›p—sß0ØžŸŸmi.Ö¨v"P‡ªÞL7=4€çP7gˆGÓåŒêLÃQ·oÏØpºÒŸ7vÊ`#n…¼H4÷ßç¡Í™!‘LHtþÑ,eöBÆ›ÙkŽ|K{6ç;iûÌwÝùîõ,yçLao:9ìQä€ÚD±~œôœS®U”ZÑAŠÀÝv›iÖ_sÔQñh¦áFƒ‡O#벂—®BÈÁ=€¤¾†£‹.)‰[`H°¬E31šK§-Z‚wB—ˆi¾(3•uë–ýó~QÊè–[ùi޾§X³r,»ä?;GÚSè*Ž˜¼†À5#æÈ@À=A*g¶,Ó9N_-øÒ¢SIú_¢Ýy]� +æèÒŽ)š2Z§22‰;Å™dªdyÑ)pð&ªt4¸8ëCb·Åšk%M—èS4ÓçjxÞ3¥ÑÆCáÄwYTZt>˜gñÕLbùø¹)˹q÷](0Ã45 ¨q X8`XMÍ ª„4”œ(y¯=Îò¾K…3j¯á¿�hmëô�PAõ>>sthŽœ‚dxºMŽ )ˆc–ŸëÖ÷°Åæ…jtÀ½ Ÿ‚ÍçoŠßÏ›ÖÇÖ‚$Ÿïé®Ä|~îùò~¡P;xÊ*$€®fÕ¥¦6sýòÝŠçRJ^ë¾<:Ï?é7wãCÏZëŠ&Ö’';àVas¨ÃKØÝpÞªÝl¤AÁY-ʼ8×Ö@éÜo»¸ï<8G[rf‘‰=gÄi“ÈýëõÇ~I$ °W0†ÜµëHpÁ™cx,u¬Ý"±ÍQݬ٠¬�#·â#œÐ*ê´ýycGì_Êmû"mK´êæ+ÓÉø©$|” ©OÜ&Ly‘3íq¬úhló”ð-¨1n`‚bÚÞo=ò&~Ž¥“U“<·JÞµôÒgÎg—ü Gù‰ÌÕ ˆ€Î Ôü܀ݰç¶i3‹BVöÆ)"üi¡x!\Ó¢6Á+ƒlÖ<Y˼«;˜tZ”1Í(¾CSx`a»©L8¾ŒôÄ>,–‹sgÁSh¡×þf%f[®d#Æ€À]˜]TÝûð¹?KOÊýià«“ú,_:Ãàøtò‘ëÚ<>ÛÕã\QJB¸ùŠ2ŸµnûäHYÃÉZÖ}Gg}yw!*Ï–ƒå+Ž–ºó‘4ý-öåo…`m¥›„æ¾WÓJm]Ëž¢Évò-(oÙ0š`vã�¿±.sw"mp[b›Ž-ªM3ñQŽcca)ù .×ñ¶9s,yÿüZ®{ÃWŽñØxõȦ^Šé\œÃDÒnû�ßQ`ܬò¼'O|qRÇóÆ‹¥2×íýÜæ²¶Îwã±A?ò]$Kénü¾½C¯7LÄbê«Î,x¬óíR‰Ô +þ¼eTØ«˜Ž/³·ª¼?!7˜ðþvQ¯ßëóºHn- /–9¨³.vÄIûlÄÐ_ª>#îKpöXnÖêÊY•?0gŸ£å>Òˆ¶:>n×åk‹ëò&Qª•�ªÙJ¬ï29¼¶óH€ 6)îØ‹E³d³Ãn`cÜ_UæÞu’´Û’Ÿºá¬}®úÈ–ÍfŒîR1ªÑ¤)dÀÓîhø§û“מ:õi€‰íåkNlrÑÃØˆòü6 ìœêœœ¸F€#£W¡$õu(´¢_AƒÁ:좫|øAó/ªéžò‘w‚î>¬:Œlߘ‹�[ ¡t´¥Œ1öÈWùŸŸ“ïtÆ#B&0RÓm!¥Q3‡ÊÐuÑ +ÁT±ó£3Ë(ïQÎ.²Qín!DLVÅñ"h‡•ô %‡.oe^’LЛ%<妣΋ +<KkÛóD9šq×($€˜=³5}>Ôu¦Ü“Ñ™8!6ÚDûõ¶s$jMö¬¸uVULLóëg9Q2^"}O9Iò~kë+“Øâ@²·@ñ™¦0Ô¤%ì +W« ó»àw–G‡È <¡©mâ +‹Ø}[íµÍw‡¾Û¬7 ßGº¢ªèy‘b|—PößG%á>Ÿ-43FÍÔàKRt ’Ê[¿™&T²)YP³´çznKépÉe@Ñ¢PÅ™\™Æ€VKÇ%®BöÜ#´eÚhïŠR“¦ëG¬ +ý˜×ˆJºòÅL-Çô–4p9CŸ‰SïÐÇ#¥¨Låêy’W2Nèê~åI¬êá\ÎàêElÅYà9"ŠÏãqù?߸»ÎV®ËBÜTJç:ÏÛVãç"LÖbâLÙ uÞŽ&jµ?G82œ!]H>ï!æ™(uD‘¿+3GÝk¾©EŽfStë´ü˜ä°MÙ=E˜YãoåAÖc¾Ï…F£•оq)4î¡>˜B +0Çã…-˜ëcDÊ—¾ ¶TEÔã‡(îî–û¯ahŽ +…–௟#>‡šÞ×g1‡²,¼Js4ªó!Õ^•Ù’ ]D3üŽ© ×ßiÎo›N•#üE#ÞXrov•ŸöÓ{�K¶ÒÕACMùd½"ÝÎ(Ø?–tk£ðŒªÉG#%(”¨ÙÓªæX–Ö�±yùYæ›÷4ص�/_DÜ—Èùx¤|±Ÿ³Fßû¢M2½¡ZUcJ>Ñ(�°Ä™tºû…žøíBí(£ì“SP)P‚-"Â7yF”e¯Þ9£ ¦è;Ój_ù[é81¤m;ÒlÎ_°lÛBŒGU‚�Çbdr0ë4 rkHä@fñÔ¶¯õ‹’!•(½ä@UKï‹>ïÕ³`Ø£"ùGØ ƒUœ½fD¨ç‡ÝboFÀ<UÔ&}«Îž"òT é|ñuÇ.®0ФÊ1€Eºíx0ô_¼ò)wiâ9꺨Œ•йDŽQ6Yœi,åóñwïϹfg¸e:s?í‡FyHùSÍ»1‡#¦ø(ÔKŸ"®j#ä’‰sßQJjê˜ ++BsÛÃê +ö·Ì'vÂ) „¨zþê&ö÷iÃýJ¦uΓ.ÛÓ×[¢àLh‡þÀìŸ?v}³+o»êj£FüU<Fì…Èó7hÝ"¨.žoæL~®r¨Á¾úÖuEó•êO_å0ɲjÑÊ.}q†À·›.¦ÇEm=’Øgíëðƒg*5D, +Îå1âèiÄÃÀ¹Ì`ËÚ‡õš¨Ü>Ž ZÿÕ–d†uV{š/í…ÏÀµ 7CÇ,Ù9îƒØ‡4Ñ÷OA_6.*è$ŒØ³pÊ8×ÍZÃHèÃêT׵ΠÑåÌ…UbC×%ž—"’G,tËó×[^˜ +uDsºBZf6Í^DœÉæSÞÚÍQŠRÞ€90>pÍTw)7´µ0*PŸq/(Xyi<º¿±ÅýáÎvÜÉû¶Ò0DÛ +[;ƒ*å +#Ä÷3B¤ôʆzEJô"¿¥ÃzÜìp7¢d6¿µèV«N„ð•ÝÂô,̰\R⬲îÀµî€ÒšqF<tH·ÍãgºÍ“ç½¶ŠNeBB‹ñÓÈ’:8©R(˜¿�ƒrØ‚8Ë^n×úQÇ©Y`]Ûw»1Ýœ²ªo» O,[h|Á÷-g?ÏjG‰Ÿ5Þ¿¥³ûÈɸ$ÿ‘CwK©•¶#\‹ù‹Sá›ù"_1¼"ñp±´“Œ÷µ•ï‚Bïp¶T:yΖ@O¶î‡Þ‰é‘SkÚ‚”§€oî¦Ì®rñ\¯ó2Ü˼Lõ|èHà]¹ó,ÔO[_#^Nv£Ôv¶U‡bÓ5\Kªdóê\Ô‘ùo& +s‘S«!ñèv!‡¢ +¤±ùAj5,êv—¥Û©^3ئë̸v²æJÉ¡…D.CÃé`F4‰ÖØ�Ýz·m1Kè;.Ëê(¸qRGé¾&àŠÈ@l3ÇŸ'ƒÒ½ÁŽäÖ3RSÏ-ïÛŠ‡�!Q1° +áEÍåâ{Nˆ—JóáôQ7¶HÅgãþ,ž��sÜε¡® }m8î ¶æ†Þï½Qß?ô&)wK^è7Hž»xº¬a †ºÅºBý8w‡2¯sÛ®ÑÀFIä Á´±d°Ñ +à—©f›R[|YÑÝsîh60ßjù–?(^ëù@ç‚ê¼Ý“&ˆMÑ<ÜÍû"=Åa=Û$aÀݧ¡ý|eC×ׇq®³¡ð«ÎŠC+Èë–=ô%Ð/¨E²iƒ¹/oG6(—=7 ‹àî²Pêax_#i¯Uq}-cLéêšö·¬4qs¦ÒH¯-OýîªüQµIñióeʪsÌi>ùJ’α‹> ¢. +d/ËÆò žõÉç-¾Pháî7€çÞµYGXÂó:CÈèÔŽô‘qg¢MRHúHÒÆðXÄ„ŽtçûTD*a|›?}´´âs�¼ç[ˆƒœÔ;iý;f(–Í¢8mD·=zGÁ=Í…Å¢ j#»¡@Xµe³DêÚ^a¿Sg42aQ÷ù8h¸æ0¢µ6HÒ×ã0§ˆ:Äãx2ů÷\P;E•êÅ~C½ÒòáçQ€è±¤¥ +p¦¨y1»ÖÓt,BeŸy{‰ºü‰£Gb‹´òg Ë…ÏLæõí·lÑ:£ \êP—ß²`D‰i)A#è2âÅ4 T +GÌÎr`F†yàòXF•žÜAß¼-²ky\æÈ±×š#±Žt,a6ÈžUjXúöJ˜*Vж~\w3¥úx\l)Q_aêz¢ª6ŸL>ÃæÆ +6xô¬!u«Vx`ýæÝåÍ~«zq$+U±ý†!W.£S×çŸ{R{ éãwŽ4Ö>ò2ŸAëq{ík ë +×°Ð)\}¢¯˜î¡_Å*¼@ߓԱôåù‘[ërÎÂÄ¡•ò¼n"œ2n…N€¾ñYоЀk{Äcùæ¸>GaªêÐpá8<÷³Çÿ]"dȘ¼b^ѤÍ3U�BuœúÎH¼_wz3÷Óœâ8í,p»#ÝOðèÂì+B¤Ï¥¸¸•?ïáàÏEíêúä4>ƒí%850V!¡!B,ȉÅi…b"À€@ÙŠ�èyÐBYÝŽË‹ÙDE¨ªûåjRe®”. ™dš”ËÊ×/hz¬êåÿ\mVòõ9"÷äC¶ò¼Ÿ-€Ïù$µK›ƒÕŠ5P8û‹ï~]wÿFÇ<E±">-ž¶uÆ}ñ’…m}"69ç�::4$iMak÷ðÍÂYvê6/öªRü^.rÖ}˜tl¬a%†,Ô^Úñùœ²i.–„f0T` I-âÊ|/óMj/"Tt<Tt×jl?GÑÝŸßF‹’Âw×2'àV�4“Ç_Î U7, ³ˆéõûFÏ%Oþµ±$Š,¨Òˆ +Ãø¡CR…=¾0×û™ˆâh¾)ÿID„ç»<ð>R¦Â™´È'7#WÃã¨évÊ"êEDQ¤*ï-ö¯‰äŒ(–»‰8÷ö‡"bÙ[hèŽö¨ùí”ç±’œ‰¡Ï‹Uh^4{ôùcB}AŠÜSÖYÊG3ò³¨ù˜,ͬ‚]ÚáX{ù˜ÒÈ'×l‹W:u�WŸ"¾Yé<"ò8OQWn +œ©‚†U0“Úú\wô»®Ÿ»Âl{„Ùè^hP´›€ÀE·Í«´E$ã2ýñ)jg¤P?äÅ~Ð0 ÷¢qfÙ“"ÏÅÞegJh>2…BD®cÍu¼n‰²â> õ”f ”ºäÀAét DÐ&¢åa.i±Dˆ¸àØÍ:#9ÕI§B5ÃaYgÖ0щ£¶X» jBÉň¬7(pŒ ñ6×¹P7ô…k“#mÍ©nH1âž_cä™OPQVUGŒSeZ¯\_ +•$e#xVs]Ä7®ßô¥bd«QŒ¤ +ÁÚ‰rúø×U—^é¹ôJw =VÈŸîÓ¥:Ýþ´í”÷åÝ>Gô«öµÈ À¡¯µ!}Ï ðë'ƒ:Ü]ÞJÑZ[‚¹¼Ã{ÚèÓYö2¢:ÁN˜hæNtõ¥ù²|æœáaÑâÛ©8ø‡ .ê¶@|ž66ºÆ[F[(Iàþìœ=6P†28t +÷±QÂ'üèÒ¨×Ìb¹XGŒ(æhNiùZòôå†'uŠ)aÿØêÖ€.‚µ2Xû³¢½ÊÍT@cé¸w7¼'\DRI(PXRsœîîÊRœoºÕzÉÚF„+ç¹hÚî²Z¯5sOP“G̸¡â>ç«^–ÿt”Ï;]§O7 ³|Ü`·~{HÐMcr.¢ç¡lMïÆ¹ŒŸØà"9 úb#Æ!æGçæ‚$1pSˆ&YÀ‚˵…Æ—ÊŠnæÇõ¼ñ««ºb[m9@˜ø,óçú´H ³ï1°¤µ6 Þ<Ž†Þ£8áFħ™L»&isa~ªý¤Èœ"/uð3?y© ÈÂAÄ$TcœÉž÷SÏ€;:½h†Q2ô”öúA]è)âiVI!ñcþÖ±B?’»TS”£¥ánŽ·éD²?xÑ$´5øå‡U´rúõÀU¹i#íe R$¤`ES”܇Æg¾ ù¤ƒµ§¶ÁòI’Y©$ÇêQò¿Ly˜g"IEŽ‰Æ» k=È8õ”ü˜9¬|MZ‡è~]4ª +ˆaZ˜Ìœ*E¾Í³NÑ]G5}Ñð´Oƒ^åfFùñóÔ²·¬¨±Xûôeí†`PŒµ°/ÛmŒþ"b.&Š>ø¦Õ^xŠÚ"Ó£2«‹ÚyÅtŠ¥ÚÝ”7%·B +Û´ü©ÓÓàoK'P-ø~DSþjz©gèÞª)±®BearÄe3Ò^(s?¢ºÑV’-Ÿ)‡ +à§\?‹ËEÿMœCN] äÓEB÷#˜êºX±œ«ÛMª1Q·©Áe±mz(vJ1k–^ŒÈ+€œ%EÄ«.7öFévå›0I0Ž);~ÚÔR†e)~›3:DÞCãßU >«u¸qÆmNM3s̓²«%5'Ü»eKP” #~ꬂ™ì²¬´uÑjû8‰-z†#pZYË,ÖÚ, >Ù?å÷kÉØ'JžŽjœÙÀbîž®‚ŠŸ7ÅKx ó¬™JÖn¯´$KñŒ—àÀz„NËÌÛTü1ð˜¯ì©…Šxœ5_©à<×K[ʦ@Dе#LÿUš°F¾ä'Ia#'+‘“¿läÍwy ¿ŽUEó9ï©Cf²®ÑŠÓK¾t’(3dq)0O«&ï5ân0צþN¿,ÍWFÉíÒú£õÖÃøaé±å½$Š´Ï¯³Î¬ac¸Ad‡8鹯ºèáR±ÛïŒÆ(çˆÛ>Œ="–:ê<{D”1üú¦cšI4PiôÇŠÐUaàÎN„,Òv�²84иb*9ÐÛÚ"‹wûÜæÌÒ|�Œ‘ÜÓ—grØ43«á¤u=ÿnžûæ™Ó•œIÓ< Ä¡¡9õ¦až]XL´l¯]iÞžÕ òÒšàzdæ•vt³[t»‡ìösç#ôEÑ9…±¨ùˆz%U}ËyOŽ’þ¢$:´Ôâ••>1Á×Y¿{Ì_Œhœãˆº.ô:–]ºÖy…ɱ涧ð¼â,Ì$ùx¹8«d?FÐ=P¦»{ÊLyÝ(ÔµŒÂÅÆýaG´”U³ØJEKkg1‚ZØ&÷‘#¡Ù܇‚ÊïíwaŽ +ÍåH’n;Ï»ÐÓjZëÕž#é#¢ (1rL¿DâÇ~Þ0>¢®<}*«xm¶ûÐBà¦À4,¾‘àö'|÷SŠ@@GPxP˜Ø7ÆÁ£¢OÉŽî´BÊÍÓÞ¹íûA~•£SpÄšYIq23_\¹Ê.³¼½©#Ô–Ô(:ðNW–²Ü™R÷\`ž›ÂEwDÉâ‘¢!î^®ØÇs¸GXy±¼Öün¼ƒv-Ö»ìÑnC½ Ѿ,sbàÚ;Ò¼I`„ÏQ>÷÷„‰ñtD«€æ�ÚâÜÀÒ°‘Òþ¢Âeóqe±ÚB%sÿU¥+ðÞ5p{ªW·_I“%Q`ˆòe`è§1Å2Ýü}Ft±ˆ,`Uñé9?tîbÜu ø¤3Êš‹gì…ßæå^ìî7Ä[Ûn€µc&ûM¤oBvo‰föy×€ô¼$iÔ"yFc½7dZ=—ãòjnË@Dø:-nzÈV¡NPÿB‚ixpP™ƒ˜9qyµX²ì¦jÉ.µ‹J¶hÕ1G»ƒ<(€¼XI ‚¼šL «Ç‚@ñ5~øî~ÚªšTyuÉ”˜MÍ”Žµ)ÃŒÏÌà?›“ÝYÞK% úê$”ÉpPˆoÓý ðqC¯aI4U)æ t¤qmNv-ŠFAµ/µS,Îl7ÀœúîÒä+·©È6Ÿ›aud#…›ëR¡œ�%rçØ1‚¢KZV`z"¡áóÉ_Ú6ý.d÷eL‘-º6v¿(®½´ì¥HÐèñººþç8QîFdÕóÆ•ã?z˜QPmÞ!¼ìÒúZìLOpÇ( +Ñ„Ò']¬5 x 5¹±4{Eøº,Øz:³¡Då彡‰]W’,w“» W%ÓKݰù$í³e7.×VŸY,I7·{éî6 +ÈQ¬&KOªb>ÆÚ‘õ(\(nFÀ*ÁYHõY(FrìÇÞ ãë‹@Š4˜Ìà»ß>Í£q4Ør®Óçȉ¸{ºxÔÎ[jMù±9¤]û7C±T#k!ª‘\!e))ÝpM!ºbÀKÃs…(¨FTîùòOøZ¢óqE6ÌŸ²¡Ô£¾Ë¶>ì6"zX„30[Aª62ϰ©Zò9•—48©„Òà<nˆH[E¹¾/µ$dC_mQNæ†e½äå‘®ª¦hsœFoöæM7ÑŽ‰o¢yÈrçÜÓæ¦ys¢|¥(éÍ‹yÄPír]K ùÅç¡'‰ +žÃSئè{ï—iä–4EÃë&‚bû‘”ÂæF€÷]VÃéç +ôŽbGaÜ.›°ÈaCmË®†e³QU]h s(ã¶sc”c`*<ËP7\ºCž»iªíµ}¡z ŒÑƧì«ÎΕ`&¥˜7/×Ù“iS3ÓªòÇêT�ا²×Ä)R$]'^Éú'•uÊsù"æùS”!æ†r_ç]é»ofË•!0„h`l·‹âyʰ žfÃLßì{”E"ˆ^Ó’`0Sím´Ì¼Œ‰÷l÷ª¿”©Ž‘®†žg$f�~D{ €ga[í ˆYi[´Šüc$WÀ‰¹úÓ·Öà €¿ˆô,ZõÚªfñ™5hïâd�•J_•^æԫ5ǯ¹‰l‚Õ¨ÎT +·7>c‹–*- ÉFá$:£€“¸»/(øïkµÊµÛ@góZÅÒÎæsr´ÇÞ·xÎÐ^Ë·(XXb’b„ú¢ð7×ï a·ôH<j]¿¹nV»{)[VÈ¸ÅØÐšâ=f²-]='.ù7ï!M?¿ªx6˜ƒqŸwY‚ªÌ:}9õ\–)êl‡ý}ùŸR:*]¥X:ïh:Pú4,0N*ïûuÌn–:ø5ÚtyT•DÐßs•Ýã˜4ÐÈ¿Þp+9—r›uQÉ›ÕC~Ã1rQ®Á±zzàš;¯²‡µ]*Špð”È@]Gz#Kßã�ÈJ/3Ê0çJ|8ô»ßÔÝÓ“ìö‰·sñ@AÒ ‹+,ÕsãUÞõWèA/œa†† J •.…Q㺡‡ZÜ2r³lœ#w0Q—¦&n…ì‰d:Ôi<!ã…Ä2^íιìûÕh|¥·Öì±Ö$/”wÛgƒ5_Ü'Öú‹Âj×x¦K*ðò#RÁß @¬p%/…¾#$¦áÖ·„ýyC&dDÖîÄt½¿iïG¹i¯ûöSsíŸ2Í® +•„ߢ/�Œ– Å£*±ýV%Q;C>g{I3ó†Äë®a¡²/.ô(áB/½6ÖÓw€ƒÊŽÒ»½Ô$„Ÿ‹ú¨ÞÚg6(LY!\Œ{w˜ g£'rñpwv>=Žj¡µ Œüâ’¹<º¥ïk)9ïÓv-ùW€ÈН´¿PÝ©O“ +HµzëQ¦jhs&CôGõG!MäÉ]F¥é¨=ûVJ€[Òj㵤–t:çO"®àEß–8©¥#=ƒ£„Á˜ ‘k•zïnHWº³s6ƒÃÜT} $Û“�«ªgÛ—Ž5VZ†ÒJT>’qC²šü�˜ÏÉqúʃ +œíoðjÉh˜¸(û¾#4€ÐA"¨‰ÝC¸Bõ–‰AÄz(¹’4È ¶ž»8"9øô¶yn +(¼ÅË/(P_‘ÉÀ?¦�h?ÉápzVMЫN,¶™µJ‰ô;J&²×9Ó”¾²¸zQëz”,•ö=“Ðç·å‚¸iŠD»(ººGâ(‚¹”A¸?)ƒGF5'Êj³ôÎ8�[®àà> +ÒÎW`þBµññ•W¸…,z¡¯F¬‚x°]2mÐQçôŠ„°Çâsݨô€ ‹À"õת£v€÷[¤Ð(íÌÂñNú.TßN]󉽀 TfM�—U |…Š˜ç B5Ü,î6dvIDr€-ïdL•~«"*°´Ù½fê÷^ZTô/…iÀº#ÃÌd2Ðçq©míÿŠ et©Ú„ÏÍ]»#-iãy#p ’×A»k{Ønè5>ÎËT¶%÷“ÊTôºhà";yEe†õ³f/CçÎÉåõÑ\�=€æõ +Cøî³G +ðü—~¼Íç¨xç¯S +<>Ìh™Pi—L¼?—¡ì¹$4¼œL(\N H#){ šujºóð¨ +(y™£Þ&C£/Û. õæ9"#ð¶¿(8:>Ì)¿¹~å$pm«cÙ†/à� +`Õ82Ár×çK© +£MÔ9ÎxØ ‘Qûâï^ìXµó¾?€â@BÜ–žú±ûÇ„È7',bä!Ìsr‡‚Â'*Gïë ^¡ŠPžcÜ#±ê‹$3DëÉovuI§¬¬Š.͇¨”ÓÀ™ë²ãîN±AÙ58)hKÒÂøB˜á¾Š’}H›¿–Ž$ËEÁ¬KÑ…×àT޹OT¼«3r<Š…”"Ƨå§*‹‚Κe$úN`ÖKu£‚¨Ï¹z¤É°¾Bòª¨{£ë-{ Ä‚�Ž{ww¹Qñ¨ íc–[f×%T”9æPŒ¾"{äVècw×½v©»øNŸ +'MܸÕc,e‰1þîg㇪ê†0¤¦6˜#(és ÏÎ7UXÌA®%í_±`Ä\'¦#ŽÖ”ë-2uØz‰$6VŒ¤ Å9GªGö¦èìÆº5ªhû’L7:æ¸6Fíh¡®Áߟèy1¶|+ÖPTšÈÞ Îq(k¬b…=-SöUõ<ŽõÁ|‹½Ù—æW>/ùÂ%þ9܆Z'¾\É$h`ˆÃ)�ŠÛCOmÞ9CzLçÊ®–ÅÇf}}wL¶`ÂH«TÁ!ñš’’ƒè9 Ê0G›ï4ý&Ðíx4’¸†‘_Ž/ÈÀ£óawX% Ñmµ(òZ£·KµÚ,»Ê Á¶mù8™÷i‰§:íïxëã5S˜¾x:•ˆv¹†õ +Ÿ²Úÿ$S=ãGFžÌaÎkð_³j¡ºqóNšÏvE؆J =4é:Û¥˜»À|ðe‚2ެK%L ¯"–lœöH$3,“7IÀøÏXáÆ›Aýdg-"2«Ë[tä¨`£¸ 6Û5yIiù£Ÿ·-ÒY_’¶íÖíû®÷C¼£¹€ß0Ð6¦ëAÆy¡þm÷…^d–¥µÜ•“ÇQ<º÷¢ê±**Ñ,TB+:Ú2Fù…Ž@âA·8Ï~_Kà×QÊDAJ¼!ÉKcEÔ’ˆÇ‘(œ,jÛŠ@Âѽ¾‰'� ³F™.¥ˆBzeÁfDëQŽjå‰ÂkNe!±åÌhRQúã8Šuͧ«ÒBy±Ù …#‰‘&²i±"æµ5¨þ(ÜwäÍ()勃*&‰ìóË•·VºX,™{t¦>§š¯Õ¶](¥Ü±+@l.qz“‘+ÊB¹Šá 2¬UÖÓs¤êt9ÝÝ«_?½8ÀG!‹“i`ßlÚÚr_5#Éî‚}ðHbØ:<éù2K4È\Š-x�½¨—`½SôÛë¸ÝvŠÊ¬$ý¸ù1Í_çÒº<.õψHCMAíþnd}sº$¹g¡bo�S`¼n??rÆŠr‹3…ËQÏ·]�ÕM»XH¹›SÆ)w)L+›ØøJW`óa¶Íņtˆ¼õv”E¦YŸ×¦Èˆ�2Ià90LmÖÐç«yÛ¸ÚÃgd +pùˆß¡¬Ÿ‘Rs?È1°ŸŠ'\Q? ‘`°ãÐÚn7³`+S鯖%†ºò>-…©1Vf‰eDÍ×3æ¢BºEÞGÙõ¶/%xÀâ·ð0úNcjJs#†~kIšÃha0"Âí Í{?×5F²æîfP[µ‹×•…RÀ"t+`ÚSRƒe¥'°0Q'ÔÞUâi¬ª¸k•*¬{Ä#"HòkÕÞ×E[^AX(£/ {/,¼Ãg9Ó&¶FT#²^Ûx`Sc±ô=AúâÒµf¤ôA±÷†ËÐ:!‘ð}kàI:r˜ã~Å@ãš…´,Oó‰%w”ª.—`>›ÛjáìM±^öùÑc:néæ›Rrº¾ƒB2ÆT‚ î#’O}À"ªNYâVNà%´ë!d y½{jÔ¦€Ã“Å?‹ñ9¶ÞåC`‹9’øº½†ˆˆžDÄÔ0n•ÒÞô¹vþï.žÑ6[IH©K`©[ß?ô–ÌêMX~S[•™Îu–=çªdZ"ŠÕHxþso;¯DÝR8å¼ÞR-G],Óž¼Hµ2z´åèEãYô@]-´s¦‹‚ë°k!ðHY´`·~ɪbæœW9Å<ê`1ŽêIíׯáíI8GÅ“T—`¤ˆX¾í-¤iÿ:‡xöFssíWGáC{èrŽÝ3®oûO ¼Ì9ØÌ©ïq¤LôÏc±ózØyªRó5z$s,:¶EÞLf"8â÷@·Œu jm|[HqÄ“oÑ¡*È™ä ½Ç‘ƒN=ï:–üzWkÀ$gÒ²Îæ²ëUYÖƒµ|,!¿Þ ~>ö¦šh +^ùAã^8_ªÃok7ÇÐpºø4ðü sB²ÉNqêØá¢®§ì +ÖºÍT£2.´–&Ú`öÀ—o$¿UªÓWÆÎݳ–SíZ&§õxÌyê‘ÌäyƵ¦Т¤Xu®¶Çƒ*i°ü®0ƒÑœ½2éùr×Ï^â5«Üd©¡®Ø…lvEl<Òc>®Œ!.½;“Ôµª/fäCÑ»r,{1Ê*æ‡RÕ8õyŸÆõa#õ+§‚‹kŒŠ&n'"ôÄ©ýTƒáŸóÔ¦7 Ð,óD6Ýš1¾|âAÑîJîFí!u[w²ÜU¾=Ÿ‹â£kÌÏ5bC�ñý±àAOr³à› Sâ/Þ½ç[èH6éBQa�ôÖá™5$ëcjœLƒÉø&bŽ!7™u¸H´_-<�U²6Ñ/>§ +‡Âû¨¾Ó‹, Ë`Ɔý^+æZµšà|P bŠ•„ GÇE”Þ¤2¢2bªsÜš*�áFoW÷9FÌAÛ€hÊÄ©mUúö=<îµÅ†eN@¤H>q"xÁj}…Äì²»vXCôëÔ<³²æB²ÀÕSàÎú!«ÞQ—Ö + +´Ö…,ÅQ‹nͱ÷ì&ËFÀz`<ñ*C?fñIUÎðï�VS†SÆ+ÄÓËáq‚'Ï(óvƒ¨ƒýsd ‰VpFD¬Ìkº›W1.6MÖ0è»`ç¡‚ë|ŠÑ!'Ê*)ÅnrD…4•ÉjT޲*ÀVÃuéè×pél_#ÆÒˆæÔv¨.!Æ&DÂ(”a•Á^Ãævš ]ï¢øÁÛ#©…ç–ÜX*l{»Ë#%à¢ÚEOû`Œ{$ÆÔh&mWé)¤�‡Wô‘š:hÚô‘?˜ñ²ö¿Ö˹к@MûÈ´!ºÙxï”øSÖp^Ѻ"$ü<¤KijÆh²hÔ+>ø=Ž$\ŠAYó£îƒHÑ@Ía •ÚU6Í=D„¦T]Ëš&J2ãÀ¾žÙàîf$Bã;Ñx]T!rÆÝmÀˆ`Ù¢Èéqs4ODƒxõÚ;²VUÅ!äBr‰óxÚZÔB]ê!ÒÊZ…=N!mPþ˜Oyt-èP1RÇ£“õÞ˜Ø#‚KÊsÓÁ<Šïé[½§Î駉/Š˜ ñÂújë[bw8ÊëAê?ÈØy«êЇ^Ë‘‚HÁ®^Uä²ôw‘Í¡on/?zµÂÄÁƵ,LMЇm5¯+NÊê2"²¥w”mèá~\IÎÐp‰Ø4E¨0XÈ̉A†ÒÜþåq$/Š÷ï±Ú–òjŒèfNTóí‚¿Õ@âaœ93 Í|^º¸`ƒŠØÒ}צœnÀ1DQ 4²Ð§gȵux|Úš‚jÿI¤çÂÝ@}ÀRGn?c%·¿¢Âˆj—µæ<g( ¿]¯ždÄ^@æ¦{,ß– ´ðÒÆ¦ŽB4ëéã€RÏþ¦Í%àV¨£³<‡³ÕK,x�ÍgfQŒ ꥗ç¿-¢Ö—¿úE(!j¹VÁ99@K" ›;öE¤n¾ßŠÜ³)ëóQšƒRt¥C™ÁZœ\*k’¶-ø�À~—þÔ³‹4b5Ößöºü&3%l°2bâlUæÑ~¤íìjŠJËúZÅþ^üí\ⱈžy`ØÀ¤ì°Ê•Æ«.RJò=)¦k(´¶Î‡Hm{àÏCÉ8 #Þ0jŠ'YϹ„ÙÓ*äœ<°(0ñsE×(v0Å¿TÓ€À™< W¾ôyZ‘ÙѰÐYîCÏU‰—+9Ù`(ÑwÅók¡¾¾g ð�U³i§Ÿºôu�ýoó]¥ÑU#(¤* _·EðÂdþãZäJÙé<ºÝ^A@Å;8‚ ×ur§iiëÆ…ÚÒ§™/T¥…¤Ó‡0˜mܾܔËTDŸ£ï®Û3‹[*3ÙDüY¼@fÒÜr…-ã}A×d¾ÀzÒÓM"7F5ŸÔhq|˜úlc,Â܆’…i=ß>FYÃM”b‹˜RêBaw±Ž%fÏn¼(¤UÇ:X[q›EsÔ�¥þ“ ?%ÒèýIÍ?rG?c^™Šÿ¼²‘”²'ik‡ùWOSrÔ|»¿[AŠMèd{ +’ "þ’h +4JÙð¹Ó8I$‹û¹!kh¢÷â4¹kª…3“TMM‚¼cmf@›Rˆ#é ‹Ê •¡QÒ6lpà–˜ŸXçyÖ›þ=ð:Rlpf„wZ+3Š%¶ûyCµþ (º°˜(#JHwYƒ¤´Be <褫·‡Gò.|áÌgzJüËl' ¨ªP”@„/kDÏ*s®…¶#$ÖDlk6EÇ7•ǹ¹ëR’”(ªšÙÒ2߸ڮ•ç0eîK¬ðÌìFÐ7w1¯ê¶¤#Iî\ÚƒQ/°X]c¯í/“Α\§ ýì\ZBý\ðoñÔ¹2)n4Ê÷Å5ÝKZ±sr/Úc+¢ÁûaIMUOê=P 5ûÖG¦1„JÖ–Mʲ‡Ðp<fŸ$ìE©"ƒðh¦G áqŽyLGnPE½e B¾?ÚúRà&ÕÙ%—ÇþÃ/*’ê¶îùÏgV±^hÔF¢?» Ö¢¹bΩԜAF›FêV†Å”Bˆ‚Ø—õŒbs†âÃFwrÁæEûNZÃN{•R¼ë +ÀâüRká9Â#ÉR¸_>¤ÕŸ÷cM@Öð¹Y1õ˜‹~ÏL¾\Ĺ „™’#=G©j½¡¼5×ö_Ð"™ê|ŽÚ‹“ܩΒÂâcC~5.s:}Tîo•�ÓÐRßÖM3¿Pà€¯êðr¹ûã‹ôì{¿2ÉçÆ +{_;‰`;€õŸù:"Î#†¾Û¯Y"Xn±!0Iä5nÛOÚð§'Þ¨äšÔ‚ž3PA'™V2ãê!ïˆå…kM©n„ÅØöÇÛˆfÄq÷àöy`i,xÄPø™ý«¢ˆ• }iѡا?oXŤ-VßëuøÕ¯\»¹ödÅ1OJlqªæ‹LÕTãç=ßéÎ +çqù£èóaÄW‘mOª5ßÒexÿYÐŽŸ$¦]Tº/ö–%¼óÕöWèSÔEËŠ—³�m˜·—2²Å™¥œ¡KÅ”Gt¥Œæ«A°í«×Ç£?Ÿç¹ßŽ3ÉRÆÊ‡û8é<ïª]Ï…oSÄõH© +ÉÅsá�Œ‚ï} U¸¨.I"ð™Z˜)i|eƒþõ.3”†©ÜÞ¯•ºM¥SµW襻åÓêO‹šDˆòÃb‹•ÖÎÉÊÐ8(æE¾å”¶Sï<ð¼�¥™ZìI]’™ó.‰—3v?¶LÅq}Ÿ7„Ž4ìâðù±ƒ=ësDª=á¢>ž'xöˆ=£@jq›ê0ÜPbEÄ”$-]ÿoHAk¤'§ùˆšœN.©7Œ""¬’, U{A½ûgs®?˜hþ‘ì‹9 +*Á2ú•Ö(~Á'Q_9VžWXMaM¸”Ü]"d…Q!‰X`ŒJ=79wQø³ )Ÿ‚ïú†¾t[‹ä÷ÅÎR¬ÕÀèïÜxh3©èú~éUãIÏâ)À9€Ò§à±J §eFÌ©õx @u²z¢¶€™Õ.™®s}›>>°¿V—rjÔÿ*橉@ê·`8´æKA'§d(Ø!Ýe„Fœèæ(¬»þ¦ßriÖtFiožeÝëJ´û\‡±uwƒ¯#ØR®)PJ]EÔke.‰€�©L)ÎA‚DH¿g½ÛX_êçéĆHï¦cÒ@Áf•éÖ¿<ò58|»ÓЕζ¬K¶ENe7è™ÒÅ$†b„0ÔßÏíÞh]áq•Õ´Ãg^*‰’û³dú‡sßú:‰ûüú¡¤,¸T|c‘î"¯É/ÐønpØr,b½€ €IQ{S–oG©Ì—Àžb‹'*O?ûš|ù§|5ÁæÓº›_k°5$ÛçÇsEëK¹_j¡lÞ( aD5ÍiØï«—±ÔÃCr°í‰P¸ìÒP0GsHÞÇ;F‡A¨¢Ð +Ð"Q_°yÅ£÷,´ãø±_W>˜ÇR35 °=:£#HT`w‰£EA7º¡4½»Å6Ðá‡r}×êçP®EsáðË”¬x‘åQ[íÍco¢?±Æ±þèäªá!J.Ò#æ²hâð «äÏfé‰jk»«š-m 2[¯/TÒ¢yÕ8£8PPÊÄŸ•gô”˜Q£@¬FSCý»®'ô'&*Û2 +Pøå Up}Þ²Ÿ¬¦æ-¡Üë~X…áQ’ÈÊ-t8èKy¶,ØPU(·Áí¬ôæ &Wö–Õ˜–9û‚~Sëžwb]X¹ù¶šv–æQw—˜³=‚ȃ>Õö>‡‚ËgQk¨eU”v¹øê94'!å¸J™ +Çè)âubÁ¶Ö»ð1j„“¤B›$+ÅÔx¦f°œKíÞɇ ߬–†ª,Éjý¥îÀ¦Eμhg¤'MÝpd2ùZ+ˉ=½ïÊS”¬)õ¶Y£zÍc¸rm )ƒ<”"9 +cº¹‚´3M3±9GdRËàFf#×!až¨SȾËGR¨ÕƒÌÑЮaFì‡:ù%‡–šaJMÍb¼<[O©?޶x›Í(¼hs$Ñ3Ìe"zž/§JY—=‡3l(Ÿm*v§žSrË3.âÖu0‚«šöÕó£[h~ì0׌çˆE˜;ñÞn=ÏQÛÂóÌ¡t_×^"䱡z^]xÕ'âs¥`èÇ Ñ–afƒ+@øã×0X¢j:¿Ùë£<ú¼áŒå¼øØ[ÞêETsÙ<¯UÎÔ^!íÚõ«-+0‰m‘•‘ýŒæ`·÷É<€¤næ¢t®í¾ÛýJ�O@'�<=TáWqL•¢¾ï¶šcÆÃ^‘Œ¦k€º‘!=;Î+oȱEÕ_š³§8Ì€láþ¬þ(è+Kìµ(å3„ø’T]BJ]Œu*d´€”£S&$‚Q,ø›Qüߤõfšli•Tm´˜F„¤šóA ¬VáÛ¸g7òԈР„Ø>¼@jDtç8„pìþ°8ÐtF-—Ê¿gQzgûšîÜRÄò Ø‚ "þŒÛàˆ¤¼=Œ»ÍyY¼Åj§•Á.þ|±0yûù¤èO¹:ª·Æ\¥‹²ƒÅ¯ð‹H›Jwû-¨ Åt~ÀcyD&ÁV1lõ·¶£ùøð¡¤é±ÜŒ@eFRš|½d#:b.ÈQÒbgˆ£¹€ô`SéÒžo ±xïnÆöÀµÑQ ó7¶[øvã¥j©KÞü¼ñ $í7æÛ#íáÖóƒÔÁÀ”™”òi %K浚¯q¨Wü«éŠSÊJ JÞÖvóè!˜fʆÕt…’XRâ$«ºõAŠš¶vº‘”L}xhÛÖÌj²Êåj*´œ9Ž#×®pꪾ3vº‹î8lhmM $lîvóì®f5·çÀ¼R#ì°|¨;jð´3ùåóqP)ß'»2kC_º™Ë*2¹q,FŒ€{f•æfC{§|€ K׆<Ú!“Mþˆ�l¥$䱋ˆ�¨”ÜZœÙî¢ Þý‡û‘ÐÄãF…¢…2)}´¹³¨ælçA×¢gÑäÃÎèá,ôqcß–`vEÙGDs|/ÝÐÚ²SYÔìû3ç±öü”K²¤Î6]¸'¨Ž NsFä¥ÞÝ6\å¡q¢»äFzn¤™d ¦:¯Î%S]Ô•fÅû"âÜÓ(™·÷Só›ÏƒÔKsÍ„ó–úÆeó ¢9�}2ÉÏ?_7w¨sða›6Å´ß +Ò‡B<3ÁWC¥Ñ½q¤w’ëP’A5fRª¸*ÅÚd&²fä%»ŸãY• ÂðA\Ë*äÐ%k¡aŽ6ã�L5_q:U°AÊF@"lÈSÃî|›UÓN/‰…©ò.=TÒ¯ü.ÆÅ"(„nëž6x›i“›N·€îØHævaå}ä¤(O‘°aÝñɆ+LËæ±ñŒË]d雄´¹ä º%3à±ù£©.Ô·ùlƒ¿=ú£<oD‡~[»VÊŒ4¬¶Þ7°Dºõµ~~lÂ;ÊEàŠ§î›MQ B™]›æe;½§ ÷¬¯#E¹§(ª\Jò)NSb³Tõ*A2öE�Éqà#tõÞkeWHs,W}Ý¢é2×æÔŠáµ-½Ÿë\ʪh÷`QPJ<�êQ<mðª²Ù£9V×ÌZ·Ì¬½ ó.&�¨—Šãs JÆŸQ(ÈOa`s⤾YÕa§óÙ«"ÿêîÚ’o‘¿—6ö%JÔoSmRÅá·ê)éë\yeÅT“Ï¥róy4*àëìlDV±”uÙ€6*¢Ì]w×ç&/öO˜wÎ<tÙ°gC]‹î¶|ôž6RŠ5€À‰J”0– x´€ÒÓ›mBß7"ú‰‚ÈŽ&j“¹}›É µ$à2ht‚?í\îÍ"]vr.¹¬cÙ–Ðt£qF† j+²ãç†k0vgT–Î{o*ž°‘ò#\]åÍ3¹…bJ´¦ÃHq÷8Öú¾ÙªŒ6èò=׿2²£q'*AH(áýz2³îíú|g=‡ÈåÉÛ•=¶ÁžÑP 2jcý©"øò¯¢½/4ô»F½·t¾Jr¬¤X™ÍÔuVHÌL +Æ}…¹¼4CºÉ—^vµ¢æeR´nl¼3HßTíLµh˜fyäð7|s·˜":@|t—?FÁÔ'°£ÄÖ’…C5FX·á9âÕýÕÁ'ì5àrº +ûù ¶î?2@´Þ—çm¿Á?u‘]Ýöò‰™¦…ÑCÖþ›JE§-‰c—¬¥9XƒÙšBàAÁEn‰nÅ]Ï!ÕJ«Ås—§ñ‰=h[ö €ÕÀ¦ñ¶Ó ‚pòÄcxŠø·µ�v{úº¶ÊðPÇ.âžçÄ䓪-Ý@V”Ì%x;4k:%GÂj<ûíDpÄÔÏ ýbõIUڱ܈xŒ´z§¯�r�#€Q®‡å6"R+·E<C•Ølµ@ÐDë¼}b"†Ýq0£-èn͈wîå’“VúZy£ªèÜ (.HeúÆÝCÂ6E.Lá–3…a6ªó!Rf<ìp<Ày+sVìË$p+1 <R¾”õ*Ù[fÀª¶KÆz[ð2-õ#¦©û�‹Þ«QˆV’?2õs�/~@Ïw?:4{Æe¬ý\1ÌÜmWÆï” í“ýÂÕž]S¥Ž-‰–vs€sô"B›“Öø™_‡Ç²(jŠŒßŒ†fªÏ +¯u€AÓŠ¡„þ.+RØ)ªK Ÿ¤è54ÒJl0öõžžÇz¼¦U_Tz‘pç.YqÔ{.-é!@,E²Ý”’NF}Q´1„ÌAòQ‹Ô2Qdøû*–Íñ°‹lD\ã¡mš¡‹Eõ«†@löYU®!Cülš/†T?kj€ÍWoÞ3¾� +ÓëK¿ ÚË”9CiâÞ#ÇFtkª£TpªõîãæÁÖ4<0÷=¿Bt¹Î¾´½Êcƒ8QíѸ'$TžäiýÀo +ÒÚ* +´kÿÇå‘\äàeäÛ³Ô»>O#¢…F4/3_å!SüÊ¢E+»Åi[H (È#ŸQ—ü""0‡Ê¾}Sfˆù‘H+µ™\v”^ nÆ_¦ëÖôÚ¨_ˆÜ¤‚¶Ôo{¡ú³‚šAL6íPÝÆ^~?rË|½Qg¼dAô%äãyÔMáÁÚå> +žF©¸AOMr*ó449’ªCUÖJv/*†óSa»a~cèyßáöÂúËPgªŽˆë¬Âk©Í²l ñ€wÛ…F¹vWä‡fš‚øåûq/°åF¢t¬»Z#'K’ØäÀâ#H³íÒTþ_Ÿ||,i®ßÒÃå;Çz$Å[·Çã®±âäOGIÚÐç#|ŽÂAì#ª%üÇ™j•q˹ôNªî%1Rì߉ “Q\_}8v\Z^}½Eý•è®ÌpÖû†ÏíYÏÊh;DémuTý%9Œ‘%„±„ô%ÏxÁÛ¸¢˜s«¿´}r¹·°C£ä ¸ÕßxÜ(spg=üQFûšÒ?˜øòÕµZW^ÂgÜš¹;d`ü–Öùƒúñ$ô4/´R˜ž@7"Ôõ;oÙ}¾N'Ø3Ƥ®hA¯ÉÄ´áµÝñ5eÔ†A‡ô½kâ7ä:Ì¿ž¾Þ·@aÛEADB†¢š'PŸ#¼¡-7ôîÅ?E4¥!±6\çYùj³‰ë‚~»ÈìaÊ +Ì.ñèñ—¶ÄR˜É'>F‰ó�ØÎƒs¥Ÿ¨áÿàwòP¶[…'BíÁ«œ&²€Ó¨ÑÃ_:aU3q¬�ŸŠÏ{‹Îÿ…ƒ×¶6êØ¥}ù!“ƒŽ®´g•P"™ˆÑèä‹‚J<̤/d.RèRQ¢[âIó2·eë²”ÒØôˆ,¹FíÐJÈV é—ìFØž»áu`ƒbúE<á´Ãzîq}ߦF�îIû˯ËéÊvF\ü/ ±P"ÂNÇÿ¤,ý=zfˆîoçû{Ü]À lu-I{^+”œcZ4GÁ»ˆ=EdZéÇ€Q$Oe°ü°5>Gqìñ¥mkÕ337PŸJ‘£bPFÜGù†¤åK#•爼ײ´PÆ‹ý€ +ç·!¢rV‹øóJgf羿w>?Ä|Ð+- +»’buE ‹øµ{[H=èö’z°úx +xŒÿ¢²µõ»A¶E…LáJ8Á7Áœ�¡ô“Kªž¨á[«†y:P4Å%ÀHöš˜ÕÁâ³ß¶žáD³^p¿f$[ ¢™äuW©ýÛ¯WÞvuFlÚf2™Ó‰i+¬Ìó‡Î~äTÄwöe‚`DWó™ÊðM×ßב `Š®»¾Xþe�4Q$µWÉÏÆÒרúâž c),W# º‘ÈÓȶ[ÔÍ=”kç5Ñëms³´†XF*wù!"O”:mÕÑáõÅ~�opfžÆË"Â8B{PRHëÏkéÌ󧔈pk`òó½§�”Ï©2j6mKxp8º´mÙÏ”KY¢Ã“#{¯èÜâ¬40Ûð¨dÄ µÓʹÜLÙ™QsMÕVÅ&®8èèÐã ±÷ºH›«òaË1#3 ‚Iáå.Ç‹ý”%¹R…?,Ü¡rUe½ +¸yq ±ü!@W5¸Sù)ÉtôÚÆâr0êè¹#{vwºs†ïÊuÚõ°`(7dýŽâÑW”0IÀÚûQ•WJHSe“Ë‚…,zea"9ÚÍm™Ïk+Ŭ…®ýÈäͨ—ÀSáÈ’A¯%çÜ%Ï *ÜžyÜÒk«ƒ^sÝpømÇ*ý ‚#€ Ü¡ºÁ¸múäª5íó>‡µ¾õWW +@ÃÇ} Q<cFAÿÑAfaYg¾pé#r.•yÒ\cA‰`qØÎçˆÔΤìE òÇ(Ð^ÑÁ ²¬æâòÀÞ’,˜Œ›ô¶¹ªâºäNãóyK +%®f5QEe虿µÎ‡ë°»·Cê.)ìð”Vë¦á3ì’z«>ôy�*L�…¶q€¾y¯}U!ËcZ¥ðé&A@ï5N_Ç‘ÚS´HIR<êMÇCÑ.Z+ÔÏÍoXO•'G 06ªîàâæ ¥2c"ÎD¤=Ͷîü) +[Sì¹Ò¾”«±´éËÜKÜ3Eú™TŠ€MRý‘äO!ê¶„¨oëÖm)íàïsªúy‚êkÒÞÔ9>— ‘Z¸ÈÏ……;U‚ÔiVs¾š£ßýõ!¢mµ¾HL8ÐÖ–„Ç<€8x¯Lpw1~Dž¸Òé‘VƒZÔ¼$§ZKMá°†"fP_1Ÿ{Þ°é§ÜHŸi^>ª5”øYUø™ü_A" Ìr'Žˆ±XE|è?θ>" ¦ÞÆÓBÆÐqK•~Þ 'u·/µIƒ©Ï"‘bݨüE-°NÕðœ?%îGúíORpÿÈmøµ¶OYµþǯiмýÙŸ¿ýÃßÿôÁÊÛ_üÕ?üËÛŸýå/ÿöW?þøíï¾ÿú—¿ÿúo~õ›ï¿þò‡ßþÇ×?üÓ×ýëßüø_~÷ÿþ6}ý¿ûö·ßþêÇoýõ<Äg'wýÜÔ·¿øå÷?~º;øÃïüׯþßù6'òÕß|ý~ûë¶·¿ø»oõ//¾õŸóÝ×ûíï¾ùöû?‰Ÿ+‰ŸúÂÿÍ<ÄÿþíoþÇ?ÿø“?ð“}Ï“ùÍ·¿ÿd×?ýßøí×ó2þo¿ûáûµçöS?õo÷í¿ýæÛŸ;ÿ—ßÿÿý»þý÷÷Å&Ÿ¹kf0ð—þýo~ýã?ÿÜ©õí?ýøáÜ?ÜοþÅÿò—¿<¾þëï½¾Êß¿¿þ¯?|ÿ·ó¡ýq>·ÿé?åã¿úö̽}²áÿõ·l9³å¯~÷¯¿ÿç{?ö}ÿý¯¾ûö×oýϱ½ýåüÿø÷_H-ÿ×÷ýç_|Æ#ßÞþùÿßüèßßêÛß¼ýßÿÏöök¾ùw¿øO)Kïö_ß͸`E¡ü|öÕ‡ÏP¶šIýWŸ~÷Õgùî÷ïgõß~AwsæR¥èèNÝ5±sÁˆ¥qçR~$ÎA‰ö sö£QÌfÈgGCûPTt³s¾þd‚¸9úÌ‚}~‰pÝnêãË·öSÈaùp·) «q®vîïË�/XMÓ|\KÄÎaøÞËa÷ +ùâíéè_þâŸü:2@—Ÿ@l÷uZ4S[OøÅ²Þ[¡ÜÕ]aT}õz'_e﬎i¦® [ÍÞ©°ñcëù"W>œùÙþ–ž©ú±:?UÄÈÇ@×y°®¾OoNWΙõ1Ò÷ÇT|Öá KwXáÛËó]—‰äk»ÖÅGOeý ×Çú˜¾Ü[>l¸sGÚXΫ\ò…ÖÇ-¿¦ÛÌëîÏûCÜÖ‡8fæÃýx|>§wè~ª(H–Ïúýõ?àý—}¾ßïÖ;E©$üþ]ï?–Åò<Ï?½Ÿ¸¡c}>Ð ¹/#B½ù¸¡çöÕúX¤PHO1»Ø÷kÅ›_»Ýu¶;²_®£A…_¡÷-Æõ¾b,‡Þ^ž×—nÀ?ò"Avûn}|m}\®ó>aðÈu½d,VÖ¾k¬ º4öör¿ï·ã:õó.0<?s@Ú‚÷{~ÜûÞá[ú¡–MëŽc½Ð²NîK4Wzkø9öÇ% +f/?ãñ�}8±÷3ÃÖ}ÜÓ•´9°m÷£IùjÍŠ¼îSkgûäÕ�õæÇÚ®g[¨¯gAìË3øò1ü”ë~Çé.=†ŸK=ȶ%è±{˜õ¼£©ÑÞŸm_ƒm´5PÌ©dχ}]¡§£Ý§Ñ?y!+Þœß5[Í“Hvœ·³Ë|Ró_ö²ž+ì)Öj™{<†;P‡}=ჵ×:¢òF/~ybïgüá€÷W[ñÞS”\¿º£¯«|ò0¯ë½ ~â‡<Þ³v_{ýeî‡èZgÍ£<®ÇcØÊ¦·ãñé‡}Ü£ÎXÎeŽ<jßZ×¥Þƒuʲ.jÇûÇöqïI¨;¾‚ün}¬#·Óü|ˇz䙵`D¼>Ôœá=•ùrí`¬y}Óò!ŸFZg|?ývÑîÏûû×~Þ'Àêyí´ôr”óʾü÷M¹>Ùà3óÝúø ÏXÏí¸ÖY@Þ_;ïøNØû±;ƸÆqôûYë‚=Á—[Š3æ=ŽãqK7Ù%Ÿµ@D3©— …óaÖè¾$�a¿\;Pnfíw»w¿”÷áw½Rà´F¹?lÇÛË{?ãÒîAu‡÷Ý>à±Ý»i_>œoÔ=†cµ>Dá+ÊÞ¹C¯ëÝîP|žvúá¼ÞÇ€{À×faŒô >™‰Ö¯ÞîtÑ_ý—âŽë,|f{½Ï¢=ƬgpŸ~¸}í™÷ÝúÒéJóê8ï!nýæ#Iu"1•·HÒ?ÆSDtWìHÖLìuç¶ôß^À7køp}~õ}Ü<î3;ÑѸÇÍûé†rÞWB¹yí¸jà2ÿ“¸7k’äHÒÄÞ)R¨ÌŒûp÷ð¸Ãï##2#ï3ª*ë>P8 + ÆÑw÷ö,w—#;³+ûÂC(B!E(Â?Á¿ÇOÍLͳªÝ¤ðadjÐ…‡¹¹™šê§§)]Æ|>zݦػ<Rjšëy|ô¼zš2 +òûƒ"O\Ú-¥8u–g‘—+b@%yJ�„ÌÝz¯s©ú%1ɵP`PåÌ Zž±¼¤t&¦±–wª]µU)!r;ñøûÎéGTöü'¡þ.OïÕ*Z~x¾èÎ"^0?óR=3®¶—3c¡›ÞZ\êdjÝ953rÁúL%‰ÚO"{|@…È©ç–í—eLÌõ ¢Šáø“?~2å9P!¯&Æ>+~ýã&Uð‡h¬!¹5M•Hntæìœ’î£WÏ’òQDý]T¡2 +"Ætï™Úâ˜W7Ìÿ‹ÈŠù.V~©–\d¼sþ…BÌ5^€‹"!*P¨ ¦ìGþê÷ˆ©‚|ââøPó>Uߨԑ§(H¨T5,UÖ‡LàX/95`V“i¬YWch/V¦(\‡Š¨}“(ebX,¥t¨™‘¡ÍD ÂóâD¼?ƒ85_›¾†BA˜Æ|(òøï3C Zßæ}13þ4ö¦ück2Ùú¼6Ÿu/Šÿî§ÑÝh¾<@ÔO7õ±Ì”‰)ºm„êQ›jIj÷ÑË~2õ•,¤Ò ÐWÏÒ‚H%™+=”á?8ÖZÄJd½GL(ãIa½°Î¤†d<@¬ÌÍP[€Ô`6’ÌŠ46ù ¯j©Ø,Šôïå aÒf’ÒSå<÷ôIbªpÕkDÅP§+5€¯(بì6?’Î’L9¸1K²B8}°&‹K´ˆÌ§Šò†Ã •DºÔºsoyÓÅ‘¼æôŽŸ9 +|%4(yÃç±ÖJê}ÔÞßÓ(U@qާPjš§y±•ŠÍé¬ùoeÌÌ3MüXFãý–Ž”>½¹û6ZÂ¥a¬ ô0Ö.‹ùù4‘ÆE=†/oåÈ“Dä§ŽÍ’²£Œ¢ÊŒó(X©#"£Ž4ÐâkÐæAà1cïy.sýiAVL KµÃ%gxÂg2•²žPÃJœºÀkiûlôü’Œ×sõ2þV¶5‰–³ŽHrý`ž+˜äzØÂiq›ì{^¢‡Ð†‚çßEŒâbÜ$ÐbPO,‰µpν\oWªÑIžheë+W½ë¶Q«_Dw/ë£j ”ß:!”Òn}Ì›~±0Ád™è•M2>~üƒ(Z”Ó/üxé?X¾âQêoÄÄ8¼cS>Þ×_”ž˜³üõR–%‚³ï<°·\8 +SPBQ\˜�¬Ð£9û¦‰–0-HBM”Ç 3`‹ÃWú"¢ncÚÆÊX.‹6—w¾¿˜X¨2¢°\O,TÚEÝ”*‰l¥Gˆ"“.Ž1Ò'4Ö¾" øŠ€åý-»òîO£>êQæ9JäA©iœöѱ"¤îëÅÚ„ÚQH›¢<…ZÉO©„Lr˪¤«e˜¨”Ö©ÇM¤ÈBÆPÉ´šC¬‡,ímÆúœ@2C0Ê›U +™¼%EU I)oMÎSõ4]b¦ÉT¦&¢âO„ôÕ-nŸ¾k·Œ›Œ-?Êtúȸ!0¤Zƒ¢I˜”›»Q-G]»ß9rCäÃ)ŠlY$•Huå&0ˆ]43N¤'o‡r×9Q£Ó•ç™ôê9ŽcEör¡ðQ…èFqÖî÷X½0Ö~ÜTâôŸ˜¬<‹ÔÓ=KÔcéóVÄ€'§mwŒ«^H·PGÚµ+g‘S¢¤.–$æI N %Ú…G7ø«ßS€”U_¢VH«5¢—ó°q¢M)>wÎKMا‚™Tɪ¼–&²ò/DÒÍ*‰qÎÒ0£{ç1ePž)·• */�!Ljh£¤™$WÄ0/Dl¦OÍÕ£‘~”]Ö4kŸýàŠ/ã`(x&df£"c¡®I&—Ò§Äx N([H"Ϥó-aù}Ǹê…tUnÊœq0ŠÈ‰ò~¥œo9LMßRkMù¾T†=ïVIJœ*°€vsPvVÈ1rºUÐ’DºŒMé§TÙDG‚<6Gh€\Cc¥èeÚÑ¡ÀãÇ(އŒ‚"„CÇ´°š#‰Î‰Èæ1¬¯4çíëé +ëë˜ÇÕÞÔDÂAÓITyÇxÍü[áEqgóOŠ&Úf¤çˆ!ûÿ¼Ôg"e.²lcÃ#÷µï>ÐáøÜ»å”AÀ¿»è¹–É’Þ%qÇz®¤AêICâãOP«S#WR°Ee"G™£"–%ˆ©¨þ!b&|…‚¨ +9ëUhQ•œJ•ïAÐ~Tb¾;Þ¯&F'*b×W*Ã_œ¿”£º©8¡ÞO¬°R_n']Ãæ +´RcI91"kƒBÙèb�ílNd$íŽ(´ìÍÆŒ#wtOÌ‘#›T* +ywïúññC²j¥Š¶õD¯îŸ˜¬<r¢g¿4I¨²o=Už"*¥MØA»/¨³*g™¤Êkœ ©©ŒEê_mÝ9µ +9ùê%˜ÅúþÄäÔo‘™ÈHUód}VÄc Ô(¯“ æülªÄËG38ÖTÀxß×þƒø–«fF·%ùZð±'Ö1çM +´;Ë“¦(©M³bÌ^_ÌË×"tŠž—§v“œ›šs</e9Àö ¥Ý2$€¸ ônæËªÐÏ2* †PÖ3(¦ë„˜<â4"êmSH£0äå¡Ã<‹ÈÿûkFð³z8Õ—)´÷`¤úQ*bQ³ÒY+9¥•Ýù’QºÏWʼn•„ÿI‘C•=AÑ|)IˆèKk(æï ä͵Lô¥-BÔH¹a”¦ˆÊ–Hæ¼süè&ÄL¡‚„£!’ìÅL–⌈ŠÙ*WN˜ç<€¼áŸM}&{z�•¢¢ˆÓÈ”ÿPÓTôøŽy),.î•“¶µUÏ4öÄ%뉂<’Wi6 ~ÇùßažI^©ß ¯ êG¯£yˆŒÃñŸ…nϦ2Ö(î~Rd¶>SÙ +h£Èò†HÊ^ô¥|Dƒg_)*å~ä݃©|Rí÷Çï""ÝÙ«dÊ0‘xœˆ^ÊÊÓS¹RDNÆJ¥;}£ÈÔ`\‘SÉ2ha¢ž cMÌ<Ot»¼7P™zÜ’°; >ížZh=±D;‚ÈLŠ5�YBqÂÛ1Äb¿@"›õý‚ͤ“æzj¸£M£‚eS/U +ó$œ£h ‘Wâ1Q}a/)/‘]ÆxÔ_°Ã¼ Ó</¢›t '1ŠÞÖ"&*÷*™ßiÂÃïU´$‘Ùê÷?ImVô�ló%2رQd/bŽ¥E¾ŒwGhe~Y¬Æ¥”Y=n¨"ÊÔÔ>çB•ÓÈìL"RwzO±²ÍÈȃÂ|G|»QTvÿg~b5B3&"ÕTê0PƒG5,UK¸Â„§FlŒPßc=ªÏf¹ž—ï>³‚©— (‰t÷¹$²5¡ìšLÏ€ãÑ)%/¤êÙ0g"Ý‹ ˆsJ¥/…¶N¤M'¹4þˆ½LW!•¾8IŒ“XÍ6ÓœàëD@r ðÏ9EÙ$R±ÈOekMùSOgï‰"®Tý6RY¡T£VšJ½ˆ_’°…2œå¡ó©Y¹¯ØXa "ú…|Žùˆ6c¾:^BaÈgE~¡Ú*eÓæKPGB/×Ð]ÐZÄ+~#²rÎ'òü)¢ÊÀJë bÄ´79JùÙDæˆgæÎ$"ëÛD†dy�?•‡9¦KwÅúâf]ŸÙEظâÒÆŒg ‹0%™eA”$™z’ógiR’߉è11瀑ý”—àQIiå.D¡ü�jì)À!zQÿ}/D¬2²„ŠÔœ9³Ÿè.¯‡$§‡ÇÊ!D‹œƒ{,9ɵ¡€ %µ2¿‹þó¾Š$R7{5/ˆžr[Š[µ1Ë8À˜{ß*«Žò{cžgmE*‡EŒ™²[9$í¿÷B[J”J46Ò"ŒUc*‹k•¤‰þ}¤Ã“~á9ŠTˆ—�zÂ{·;‹• +e´X×@íK’ûüý™–æ5ò�™¯jð�iè©Qó ç/H”eCw†Å$ÊÍLð»èVx†!¯ »©Iw‰ëC9Ib>]Ú!+¡INzþ}¤œ�„ó¼ØA…óՙ׌‘3¼Iã’ÞÂÎ)…t%9ÐáëDVJb L&Òû¾<6¾Ö^ä?L•H¤z>å #N=ú¼ã±RDšÑ©®âË1çzÓûÏŸÀ�’˜(Hß•ð*:ì"’{Õ£¬¥é—Ä(áu¡¢˜b+â¢&§ìRLe6˜ø†˜çK?a…Ƥ’@è Œˆ+ËÕ"ø%‰tË#þ½§cú‰ŒõI¢èå.'àû<h¬j>È>Ð+ëi¯@Êù³t1'Õ*s[9»/.ô,]ʬU)«G‰Yìó IÄ_%’Ôx€PÕÚÄz =ºæO8`i¤ˆâJôªÚqç²±úITš4=Í)‘M¨g˜a^"¥Œ$r,GF¾DµTTοÙ*Œ”½ê%:)¡¾Ø…¥ »‚â@ºÅDçÂDYÀ&™±‘RÊü²aÉÞ¤„ÝFâ•$föRÈYtFç•I¼â÷'F9¿?Е½ö¢ë:ï+PêÓ•²”¢ÛÕÔ‹²Âb÷™(3…^žEú÷œZ€fq«‘6=•¢£»”b–g…¥EÚ=~6ö#ýlÈh/JE2íQC=@(+@ägÑYß(r¬°Q¬¡ =›h±HxLMƒ=„Ã<ÔãÊã”°;›úæçZ>Äy¦ˆ‘Ç–zé• tL(‘ŸCE²Q¹„ˆ:*”û¬–3^019FL¥ÀÇJÛ±™®5ÃÉôGy×HÀQ“0áêé$jÓ¤#%ªD +o$ÊCN"à$䀓sÄe³: YÆ,‰Œ3®œŸoÔ³E8ÝSPL\X§E_"ž¸M„%rL€œ'è*R%1J÷ÒM²<ªÏ’>×ÉÆÔÎQí¥œ['FÕæ}ÄRŽú»ElNsð�L‘5öä<}¾‹&JÎ%²šE•U(nFô¸\É— +ÏÊ›m”b“‰´Š)«VN2žFXlÚŠq#ëÊ7([33#HPcÆÞ¢Í/ÿ>L´ßIÊ3jùª0N"+h$1ɲàö¢<Í÷rø¢ •ÇŸ©¸Jª#;¤mÔ‡ÑFëƒ%<±DçüQÌ:¢;•ƒ3-–«p³G% +ô�qÊrSiÔ€öYʃ²+”z+éÐR¢KðŠÒË<Öb‘ô±KbsÐ6Òé‰y,«äÉ•zœˆiÊÇY¹-Ĩz „S*ˆ°(™z™rE'Tm.É]±Ó´@¤EJFúÙ”qSÄLKº†Ï¸ˆC@}c…”9HBÝ3UÚT"}0’˜y‰š–Èá"=€PœŠèiL¤rZ¤/ +|ÂÙÐy¤ý1gÑuÛ1gBrÂ}^ÔÜE²„‚C!¾N6á*"zlÅ©ºÑ»"!D¦Ì®Xý>•ƒB™õ´Çе|‰Åç�eq–Åñ”Y©¾ˆ%‰GÑ-†QlWÊ %ãn!ŒTL9ÉXÝrtÇÓL‹NŠü{. +ˆu)…<U*iP=§Äg©%»<@¬²abveÈŽLAʳRy·EBa,›>äÚIºš¬*yÕføÖ”íá2ÒK†j³U £è9¬±™Lë 7‰Ì|y^sN¼Ë2ºU™Ó•8Ηë’B‚ú¼"YÉgA” Ÿ6?›È¼1qq‡Ç m‘ÌrËRí +¤\@ƒ.ÏT 0½eE+니\NG$ô8ÒHYÂúeYÈBÇSõmâv±”õo–ŸêRR‘€½á/SÖyD ¸±‚Á\Äžl"²³5’X^[ßã×qk&2…Ô�±êPd‰ãñ\Nãl{EÌóx©JÀŽuQXáÞ£z7Ä¥3Ef@Ò#çØ–§£¸·ÂplQ·˜–§RDBi˜Eº*Rä3‘£6¢œ×…¶4T±eºÌPÍ+Ò)þaqn" ý…ï9RDQôžTår™èz¬~ÊxuræØ‡N•¤;V•“)”·ïÈiQcmÂÓ·Qä(á‚•\¢d"z:5 Áf"ÁŒã7dgs;]9å*@)J’%±X/±7’˜+í§ZFð�ì; tÀ›ÖVgf¤™”¼âk¹8&Õ5ô´²‡H³\óo•«ŠJº†F-PQæDê—Î¥õ™*ÚÙ�œç@ Åñ—âÇ™N ó=æZæƒ@WÂ1â4Q~_0ÏÉÈ~4Ñ…¢Jüßçg9Wô|Ÿ“é_VÄ¢¤$ä"{1®.…N²X¿LÙ+(*¾ á"F‚´º IäuJb–rÂ@ù|l²ˆÓŒ¢ø–8(бu9…hùÆm1<½ÎŠÒj]Ï‘¨ëŠD¦¾*Êb?iu©ßç\†'òy�®u¥×{ÃäˆS‡DW +%Õ.ÚãT}zRWºxËf‰|PXiùËuæ¾,K‘Ĩh«Áâ/ÕlOìÉðŒxÈY)×mdê:-ÉöJ ˆ¬V±ÈÊU(Gæpñ« “Îö»¾Qº<ÑJOtgPº<àÉ›öËÙZ±.|Y&"úgñyã\Bâ ]i²`¥ËÔ|‰ž7ŠÌ^y_¹% =î;À5{y¨ó1ITå<±P':S/™§Lø]×z'¡Ïð›q’/Ñ3#máâQR!d«‘`w‘–¢ vŠ‹ËM˜(Úµ)y0üWV²dTXXRŠK³ŒM6Nþ‰\Ù|œàH¨É&[¨‡Ë…}¨÷1|¶eCù¹¨{¢›Ù<Î(¹eµr’ ]B£¼†uY·DAÈNïÖ×rF*]‰rœ8Ôɺ¾VNtpµWÄ8ïàùÙsØ|zßè4zù(—ü*-ßÅ*+”ég‚¨+*Ä“Ú-“õ«O€Ý2Aá¼#X=›èJdö-ùÚ” ØæÄPÏ€@HÒ]êÙXŸóH¥RSºrQh—hÕ/&7g93 G7¼¢Î,QXEÔ¯¢€„=aì["¦Ø•Vä†*‡ÙiN ‹a½4ô¬.�OÕÏ‹ìBÕˆAÂõ7о…'. +¸]ÓË^®œ˜iÎ~G6d‚¢ŒÈ~Ê™âÂ%åŽÔŠL•ÁÑ×µ q’N΢NJ,áNR]WÈ¡8qc|Ì>†ü–—5L¹ˆ!ô|~–.¶Q_àEì$e×-I6í¼¦Ès²î;F.mV9CMNþˆ äÒç?á>W‰ê’ï:fçœü":°g*¿QUh‹„&]®¯½~‰N +‹&:‚%ÚFSÀ”ȹ†±ú‹SI&n Ë‘!,-.çWxEjQ ?XEGÔy¤Å 9¾èdæ„ë¦(¼Â½BʼntñT¨›ÃÈDÿöIÒ‰{Df8±Œx2yre1¡x.àÌâÐ×/´í:I"ï¬/==3ö+Ò¨…Ä?æh`TT¢ËCëôוójýˆ˜ó« +äBÓ|$bì1 +UÜ/ÔÑ[…¥~Ÿèò•<x²Xñ9Úà—HVEEðÓ‹¸¸&“àQÄŸuâzR„¿Ùœe£@±ïü$OYKé6/*åslô?×EÒ$brK%?Ö±_Ž2ndAD|.t„U8#už´Nwà”l:A:z-Ò§y²qªgã\÷ÿH8‚Arx+ØâSL«±CO¦Z„ì%"GÆèI¿O©|AÍK(ú"NNäñ3¾Ã¹4EÂIÌï¢ö¸EJÄMôb®¥l˜¢vËã0¯€¨lK'j ò[õØÂ’=V¤úh§^®‡¹»‘ÌÙð8÷'ÖÕqªøQdé‚0U (Ÿe=G½¹LÊ×Éj\"ÅIKÕüAäHi3.`ç‘é¢G>4þ®G(´oà««ƒ•ýë%£}‰Ô�Zy±ÌØKzÐ/f$¬U£$àô1BÔê|ªL'ÊTóõIäbBÊ?cÿ¢_†„·Š@Tù…H×+ú}ï "›ÈRAI, +ÇEz¢$ƪbš˜ƒEuQ.TG˜q™˜H¹•륂nArKÙ‹Ü$9@rË2ʼ[u0LîX&ÞQ“Ü‚ªhrGa™3Fd”7Hu.ÉÀ˜Ó&S“Ð%(”*[4Tåu¿¥T‡ÐCï–£#¹ÐÉ“ fÔtU‘ ‘³Œq§ªÓÄUBÌ`y$ÝJ¨4]8çBf¢qñ@¦Ð×1‰Pv€VÄX×ÂgO6¸œ¹x$¤Ã}°Þax«RU;‰øìéC\׎¤B #Ý!B·êÂXÇ9iÇYÖY›*iìëgµ¡Â§)¤Üûè¶b–Å.¡*'Ça§Üun•¤f:Áƒ®¹d>)ëÕE”pökHwdr—ŠDI*<›ûìyå0gH}„%èbîŽ"žUnòaÊìׂ½úT^hÜý3”&ôïcÖ"¢‘ÊF‘3¯PzÂóDÞ\];%âÊR3Ñc±\¤ŽÐÅtžn¬ íà€.@Ò&T,}8]d¯M(ºÌJ Ýꯪ‹lo „²£“£D¿N)Έ’¸ó„Êè§.â>c4±çÇ<lÀ<ªZE1eïéúqD¤í`ùóDç¹Í©pQz×Jp¤XÞLÁ¿g0A¦¡òMÑÃyª+î™lÔÓE᫤„s =•$‰fû>³"§Eé-Sœ•nDù¹lî©ÎHâI-’„Ñ®ðØÉÉ]‘ˆëÎF±¯ˆ~1ªïdº›p]l™óÃBYOÉäÜÏ5~’Iæt]JÂnÊ<ׯËu°WTñlä³?KCâ"G!äÆDÌ"Ok7¶ãªVDã”P¦„‘ �‹¯P'¦ÆÂ‚f&æGé®…0¤ß‘ˆQšq_àÖï9/–h¡Ö!Âí*b’±D‹´Ñ,ïêÓ½tÔD·ís•Éb¤[üÄ‘ž�ùtÙ.‹B FbqKŒVÚÒ„—tkΔ?Žunh4 £tfvˆ‡y g”ê¼à@vu”¿'ÉKU·GÄT]‹%)'œc(·¢Ê¢[Èh\HdµVЍ±z¤ò_ã\6sÈs%¡ˆ¬Oœô baW¨®lâIÝe&Љ—¢‡±î»!›+,ÍY寊Œ +ÝMÌgWEh=ÍØ±LðÉŠü]\ïœüB±g|/¨0Œx6b»ØWÇ…ˆ¾>–©1™îÈúZÔª²¦Ò^õCìîTù¾IvËŒ +U¼„Mc‘ç ŠäöñÏ:$ÉVÜw›˜p óFu_&®È<_®r`CLÚ9›E»)¤ís2›Êl%ÒÎ9 XÓŠr™(Ui#2O€<%fE OV5’É™ÊäMqä�‘ÔZò]äY”+£@”zZqB¨åtÂÝ}e¯ ÎÊe8UL£’T6Ї:§RVÊæ¨\hË6`²½µNœÓÞ>jpÜŸë5È" +8K2‘mÏd&'Ôˆ8#À–⊓P§"¡B¶e&Ç/Ùa]Òœ'Ëk¦d"¥$ÒTüI1@ ‹RrûnÙËuV¥/³PÉ|ÎKŠd@‹ˆ‰®wQ¡ AT–JeDzŠC˜Tß'êYö×¥²ðìîÊpv±"‹Ì:–¬¼â¹tG“Mu½žïgú÷\°›Hù³QB˜ÕUQsǺùT:W¾X¡AôÚ†ìÓ#í]¤8\Äëêàp,mWIÌŠÌN•ÔH·Ï©¦\Éü¶fdùCÙcqp+=W% ±È"Í™mí±I¤áq¹»j"5‰Rù¹NZU.Òí>d~XeÐy’Ž ˜ZÒñdÙ"}]ÎË@”ÀÓ)‘ès£È‰:MhaÿPÌDô3N×r•@OÊÙšÜ Êé(Î#’u¨x0xDF™n¹öϦº:….ÚTŽDÎR$Z˜s a±Æ#€rÞpªLZ”¿qM\”é€MŠx$®ÕÙI¿Œ~,ñ¦š’h·R*ÅrÎNÎ8IäìO&<œë4KÄÒÐ7æ”NU *h̬… ù†\rËÎ~\•&U zÌГ®Ì¨è¸È.l§ä™^+Ù]ZØ>Y±F±nRD’—])®3Ô…‹S[ ¯–JvöSÆë*Ù*¢òß–°3šl¸˜ó“ cóË×¹û¢¬qvw·${:¯V Ô¨ç±p »P§¤r²‘´Y¯ªb~1á µÍËy:‰ìnÏÈN-V}ôÄäZæ(äÅ2&)ŸôÄMTüºìÇW¬-Ji9aYÕD‘.uLä &ü ìŸTåuEö".Ñåtòˆ$$—0†º£tr+~…·ˆš´"Ç1ë¯DÕ–D¡¾ &¥4D¹ŠÖHiÑÍže|’Ê·òYvHa(r–Å"#Qþ^õ0”›(ƒ3Žd1¨Ê"W‚ø™ÔhiVx-‹be~Dr—tzè[—ÉsõWT4øL¹ ÙÝ–rŸ"r@:½å¬Š<íJµ²§Š&0ª"ònUí¦œ}Odsiqò=º„‹”šŠ<mAŒ=€¯Ó}³8 !%.Ðå&_t¥Y!{SÉ‹a®»Õ*qp¬ˆtH¦Õ*ùB–T¾f²‹žÚ‡Äµ;”<.}‘e²¶ÌeUu˜éhRù7vMù1Ÿ(®#‡™ÎeV9KDä`ZR´…$r¨AJ†N;.»‘Y.Dò‹ÓqÑH˜ê¸UøKné®#îÑðˆÜ”2‘¥½üóhs%?]ÈíëökªEv¾]—N_¥2“Ry „$zši9’Àˆ5‘cŒa¢#¤âª~ç%¥œû'VÀ×<®³¢K»S x8“Èl†©jõlQÜ+§#µýÒG¬ðò’Œ/zÂIÕ&:ÇÎHÆ.ÚL£z¼#jÆÕ³%†²<P- Ŭ‚[ò¬p'1ï!—µ‡±Î¹(ŽsXØfêVId/m†‘n&›é:ô°sÔäÏNX¢rD‘ˆÐ«›tdG3þ*vL’—¼è"E<€HwcÙ•ªNgÅ51©ì™8îûXå#¦R³ûß׺B”©rT:¤¤f9€è¾ ªü@Ä".M4Q°B¬s…( ª…F¨œZ Fš…ÅÊøº]Å¡ò[…8ÂÍ*‰¬+—«LNµ¹´Êe¡hK’ê69?haBh|ëD…Ã8äBÃSmrÑL˜y9ô¹£C°Â`à@½|.¼Éã¢ËC¬ÏX$;?‹NE‡åEúxÜ”/ÔyX±dóŸ9SÅ„tŠ2æ•i¤ãë>CŸ(¯&ä*üÆU–4h¢Á~¤3>˜�wMXêvåOšÌµPÝ0t+i^5YWD!ÞJŒBÝÜ6âôzºÈUÒ¸ÝîÇï? rNî©\öŒC~„ø~bªNQE’È¡&±ÝŠëä3F’‚œsh,âÆT$ÒøÆ®É-±y +LÖi÷©ŽºªFMÿ¯Fét_¾DØ4 §1ëPb$`¡ú6öó…7ƒ£´Jo?Wë)%¼XÛâY¢»^²O=)RˆÈ‚¢ ~ö÷Êü9Ÿ0Ñ¡tAÔ¥÷‘nžðÁnu‘Ô_BnË$¨¬ËEî"ÆÜL„=Ó¿(¯5Òã}X$À¤º»å]Ý&ïš•jjGE\>°ìU¯±œÔƒkÕl’~]ë*´_*8‹t5¢jˆOdìºäƾ¿Ÿ3a~¾ä.Ñ÷ñÐíÔ:k^$þséAšéз§2ìIT¤œKËî?H%âÄ +âðÝM™º|/oÝ%›&Ý1¯¢Q>»*#iåèFù>gw$A̽C]X’¤ª6Æ#ÉD}g‘Ɔ9§|SH)Õ 9TŸ:Ow©t©ãÇó*V8Ð×X +œÏ+Ìnca婿ÚúPv:PÕ G¥t’‹ ëÔ¼H]—ADËä"òý_‡|k +—ô‰+åÇLü`úü]Îqe°…[ såPÈ1Qˆ¢ÉÃBºšˆ“®Ì"–¸§#E8xqO¼fPtöËtª-_ B…±ÎhQ½‰˜sö~r±·ñ¥As¬~ÏM@|é?S[ßsYد/ÛºFòp0#ø17?1|ÔŠ&åqTP?cSôÔ¬¤~¬»frf*uåÊ&î.Qv—Ï$¾®ÈTµƒ¢A&Ÿ–€«ïEýžÊœ–sàº7?Ð%5ïÏë¸hóùþÀ<a!w%YפºJ=3®I Šk;⤘;£"ÎjƒF|`}–w|™‰ºq½w¼Oz§ÎØEí}E{Í݃ðFåºKêHÿ“"³ÁHÍÏô0…#7Ò¥áTº©K_uÅ5áF±¾a‚^—s«ùÈKùÙP×"ŠHÇãõÈ´§ºUü¤È¾n€ÃwóQÝQËÛT…‹Êûˆu÷9A-×·kY>x[±p\µÚñÂ…Ú}É·þfÅF wz²ëO€^¡¢# +wΊfÀqÑIô£kížç\ó*4 k÷,ã=ÍrÞÓ\„/•0ÌÒ<×äá””KËEô"Y”{¥‡»ªnÕdÍÁØŽ§‚„¸ð_ …sR„$1 ¹QEª\ T¤à³é'AQ“‘ºœò»{ê> 4TÃÉ¿ hÿÁÈüi‘ŽÉèRHƒCÝrD]À+‰E¹¯AX"‹"ê6œqðKß%1§· + E™èOŠœû|™N^ÄÅ‹<ŠpÕÇC¨ÝL2iÊD:Åà'&ëKÚð7]]=N™ŠIqy‘øt-c™Ù‘νó]Üx<Ð2YXó“U V*46LÖ±ÊLÕÎ6ØR™A!‰±Š¥²gññݯ+.:È2ö'l° ²—h§u¬ï9à~)©ìе¹{5xèéÖŸ™,¸ùI‘9l™É)Idßè¤Çþö³d·R4~i�®©-üìÏ€Öÿù½ÜެW/ßû[ÿð2ûâôç¯þðç?~wóîOúæ?KâÑ7¿þþç÷ÈÃç?ÿüî§o¾¶ÕÙòGÔ$ÿÿê¯Åýô¾å‰ÿ{õ7üËþòþjùžõÀúô3Ïúšžro†ö¨Ï5à™ö…üÂø²®´ oÞ'S×A²?6·‡¸“Xð3Þù䞸ÝÞ‡!âQ; p‹.'“ix@ˆ8QÔé=§>M1)äGjQhz›êtq¨èÛ°+ÁéÀqÃâÇÓ°÷Ó ~ð(¦FÕ`ȧl€W‡°©¯°¿±¨{ $²Ð‡ÑE–a@Ó¥ÄòLÞèKü>÷²è6ysïi±ÈòÈ×Y%!”$QŒ¡É‡™¤±OSÍñ¥°}ØÁAÉMiÀÔc#Ž<üŸÓ3q1u|+-BøÅ§ÿ->’>?´þª6G”¶`²¡¦ü¤öÁþEþñö7<ú7þ€wñ§úá±Ä¤ªÑ\)zÛiê{,I5*3ÿ(¾ùWï³/÷©}PºÉÝc"¿_å�âF¥èƒgyÓÞû£Ä÷fp›¬g[Œzû³Þ_€_½'>Ôöa{)”Ëo*VŠ6=Â)»=¤>Å›o“ô¢þšÛÃéï¾ýæ[kDä˜ÜQ>D‰ÿþ¨·ˆ·ßÿ™gzkTýA}ú¯~QÄ +Qøõ½äýåÓÿóo.•Ä!fa”äÞá»([âAø %9¢«„~T¢KxANÉÜð™}<L0£JIú÷X6LÁ¢…ò¦gÉŽ”b +Î#\L†ñ{²ZP{¼þ@*²ó!u;’÷†ð)„EAàâuaQDiÃjV4dHžìÛS÷Cu§fñ™Ç÷$Yà‹bQ>cÿ†;øîÞ{Ò+¥r±ô–F”˜É´AN)ÄI«Má©RÕ¶Ñ—™ F´C¿R@òV®°[Tã&”Ÿ)ÎEº‡x6cQ•É-’/‹É}u×lQÖkùÃï{'ï—O¥$Þû.ŸðYïíè÷ôþwѸËï¢p�“E2öí/#bJ&Çí/»c¾ÿ¯%ÄÿoTwà2ß:üÝÿpæ‰. +L˜W«&!™ü0yoÿ‡Íÿ**%õÖ0wo AíÖ}š#>:þâìû¿Ù•ßÿäÝñé÷°Z˜ëù½ÅÉ7ùþWß<9?²^=¼÷)áƒHŒ0‡_¿þ3‹¢ÀÀôÛïþñÓô_øü¿™bv~*& +{º×¼ûÓ»]‹|dþ½W—ÿÕÍ›†gt‚^éögeÙ˶¹²“þèÌî;¬Ù\ؽÝéìÒô‡†•4¿2í¤ÓÍíî®aúƒÁîhrä…Wïª?>wðÛÁ±;Ù4 ZsªÕn«9î:™;9žxF‹‡ƒÉUwtdtÓzk¾ðÏÆ³CÓÊF“«ùâ&ˆ_ö†§fgåŒ.¬Þ~ÛˆÍE§»êŽ÷hݘΪT5Èìæ-ë7f¦™Œ'gaü|´¸rF‡MÃ7»©Ù a^7¦]w×KžùgéúÛIð?ov¢†õù$;ø2Ø}í§/âå£ùCÛ=h˜~o°¶,BTkL«µ¡aÎ;vàôóÞ`Yñ®Žµ¬·‚F;lš±åìõG¶³ê»voeÚ{iúÖ_˜Ýu½TêÓjcÖ2üéür49m´fætà Gg]g¿ÑôkµiÛ†îaž¿jw"³÷ûÕÚd§äà¿¶Za«?q¯ÒsOÞ‘Õ;(צµÆDÃÌL3sú‡ÝÞ~«YöªÑ +*µqËŒÛFÒlͶïºÇãÑÖ¶ÕN*õùvÉÁŸreXâC‚®öÀ�ÍE½>6 ¯\îmït*5·Þœ7ÛA£v¬½Ng£Õê˜ù¢Ûßoa¹Òk4æ˜d¹ì¶Û±Ý=èXë^ïx0<ŽŽON>óÍÖÈèdîè|>NOëÍY½6j·"Øœ˜Ý½Z3¨Õ玳¿XlfÓsÓ€P¿vÜu«‚%ŒNÒž Fç½^6ŸÖêCüsNç7ƒñÆîƒ»ÎÁœNßîfƤc'So¯>…O†³‡Öà¨iÅ;ûÙÜ?þÌ´c£§³Õ÷~ò¹í·ÌLÒl{Íö¢Ñš7Z|oÇÞíöZfÖ2Ój}Z®Œ0m<�ï öÚVÚ鯳M²ûåÁñ7^ü®ÓZÅpzîe¯—'ß»ŸuG]÷;òòÅ?]>ú¹ÝËjÍùxþh}òsº÷u×=·Ý³v'k4çXFÃŒ1xµ>Ù)÷ëM¯Õö±¥2vgÐ2"ßß·°àVÞîì¶Ì]ÃÞë8`<œ…5ÖˆÇðÃFË£VªƒfknÛ c£9«Õ&Íú¢ÕôÀ``$ÓHw“—Iü¬TrJ;½juT*÷·wll">Ö´×½þ¹i¶Í}wp=^UkÓV;0ÌÄîîaË Ú&äÃélñȰâ’uÛ�sB¦ŒÇ—£áV4þN©»µm”K¶ÙºÝƒžshuÒRÓ0Œ¨Rukõx©ÑŒJ•y½4[~ÛZöF—$Xê#|E‹PîFâù/‚ðµï¿ìŽÓäÙ_þú¿>yýÓ'÷k£éÕþñwÙÁÎè¤Ö˜Ó!jÇ`øjcR©M@iñdq1žžÚàp;úôSï¢Öš—j®m/“ü‹ }kwsËj5„p:»€„i[»ÍήÝ?™ÎEéËáøÔh/¦Ó“tõj^u‡«®{ˆ•ŒÏÁÍõƒÁÆ´b°åÜ:ŸwÝÓV;ët÷Úâ7pW©âTñEí`ÇÆÙYÚÝ#H6Û>0¤Þœt¬¸7ØÏÝ|<;¹úËÅÍŸ¯¾1œ¨;Øxcÿjè_ÛÃS/~}pò›lùéÙù·éê$°iÆÓÅÆOŸg×fïÐêãÌNñÖ*W‡•êÔ´Vø×z}Š ªTGf'kwÒjs^iùMlkç°cŸLý—þªRw±Î£ÙÃZÃ+WÇ[;È™¶5[`ÄT«Mÿl6Õʰ\êWÊØÊY³áMƧƒÁ!8ªTê—Kƒíí.±Y¹Wo.L{5?p×Îàr:}:?l4Á{km[pdÚ‡£ÉÃ(yk9«R§\q3¡³»+ÓL! +0íFÃk5ƒ-¬U«¹FÛ·¬£7›Q·{<t{½Ü,qv*“rÕ‡”6§m·!´;†Ý)Ù$ëÌ´ß?Ä– •w0_<Z;‹®?¹_w§GAòd4»lAîY{F'¯ +E€c…°º0mѧÓÑÉæÁ÷Ž»×h{;ÃPƒÑ…ac%' –•M&g3ïªmÆýÑÕß³û&εs€ù4Ó0|¸>y7¯ýøz\vÝwz>ö6ø§íìwìe–½˜xçåº[© #s‡—–½ …“×[_8þÓj}^o&=çKÝwÏl+“ÙÝe×Y†îäÄçÉ«IpÓqV~üÌ‹ ¦'SïÜ™&«Ï<þÛúô{¬?΄Ét|‰ºSvÀBãÉ&_}ƒÝO7îðزw!v Z!Ù »ÊÕx ÝN €:ÄT×ÄÎZkÓ:îõ¯½èK™– „ùt8{P©ÏJ•q©2¶Â zm3€³º{8ïúÒ©^›âñX¹ß†^³vkµy©<,W&µÚœp»S©›íÈך~µ†™,juˆÐÄaµ¡Á6XŸZË3¬e·Ž}„LëõVmc +ùÆn´ ŽBHÈÔ¨oo÷ª•I¥ânmYÍfÚœu oýF#êu÷ÿz1?Û)÷0ùJt_½ÞÞïnáóéüÂm{§[© »¶wÌÛ¶²ÕîëáäÒèîWsœˆ–1´ì¤×?À § {¿Ý‹æ�ƒÁªÕ™¦oõöœáÅtþxác+÷ÍNåxpò]ÛL±×ÐP +Îà¤?8Á88\“éu”?ÚÙ©ºz¶÷¼=]\çiüô_ÿÓÿþê«¿½¸m‡½! Ùµ>O²7»{Ÿ9ÃCú +ŒÜ +ÍÎ~ßÝŒç/ƳçÃÉ 3;éÀYNæWµVe]oFXÉÑäz8ÙôÇWQôìÅË¿ž|YoÏíÞÞ<xšïµ{ðM~ðõÔßþÃúÓÿä-7寤ÕI 0ƒ½x0Þ”2…réöV8D¤€v +ß.Õ>'lѱ]•«³z#nµóñøb8>Ü.C¶Œëͼ?¼ÏžŽg7Ž{nt–à‡Á’qµÚ/—±ýZcbA³ôÖØA£Ôë^½åÒ¯V]( 0•ÑNÉTg“`-hˆ¬2H¹{« V©ŒkµE³@P`À3P‹;§\µÌL;oz}Š=,;N´es18äT^©ä–JÃzÝ7Ûy _Qí°T²!Ͷ»P[x¾Ý¶IZÚ�{-è£iÇÆ²ä¦½ìϱhÝÞ!0˜Ñ†ì²ðÃf¿JÊ5w»ân—‡øºãÃo+5¸˜²½me†µçŽÆÙqúùlvîöã<}eϺƒ0`³ÝßNÏòìU¾ÿE½éFƒáp‘P‡sÒœ&7ùÞ×a›–̼kÛÙë’PÚ›yâÝW'çßüáÏÿãÕÓïÍ^Òç›ál“a0:/Úý#09ÎEß=žÌŒgÁÙp|]9™=¸¾üñüÁok¸ÞŠîÚžŒÆçø;¾Ã§ëýÏ&ó‹¶wé¥kà@?~•í½Í¯ýèñÏ¿ûoéú¾Ñ ëã vHTàaH€f;Æß¡2Œv€WcJK¤J¬=«{P«Ok´Ýü©V!Ï!+Ž 6Óì;>.Uà“¶‘5¼iBQ.íÞQÏ9êtöšÍÿu»dUª°h³9‡\º'}çÀéÝÁi³CFµ U[A©<ªÖ€Á¦Õê<V©Œ°³+¯5fÐn;;fÓ/—ÇÛÛИn« e„3¼€â0¡¶:»à4ÛÞ#ûËZÍhk¬Ý^o˜c¿aL̬ÐUž‡\ª ½W;;}°©ãò@J*ðm¯ ž&³ à=xÃbCÍNR«ŽÙ0`GÕðw°VnõVÎ�|Vª}È|²5¬œöbx-¿Ù;þa:è8ËÑ`÷êâW‡§_vºYopร٩>Xî½/.ÊÕÉxr2ã…Ñó…ÿrá½Æ™úÏí>øÍë÷VËõëzk4nw÷—{__üpþèç³›]ÿ¬?:<:ûµ—<¯àê]«·ö¢çQþy¼û…;¾Â”†ã“v'i´Â¦a²ç…O£ôÓãóƒüu½½4µì]›>"÷h2ߌ§WdQvr,ì`xØoÚ¹=?½úy?›òõkÃN+twâ`‰@óB�Ò;Î1^ÅQ*»Nw„`ü‚%°#€vãéÓ?iÖpº…ä©Í°ã†‘’õ—ø'€±eîb¶KýReµ…¹á_ `³¼\™BÕ–*ز^³µ€ ޽R¹gIôr08«5`GÏ„E¶{Ôª0¦¼Z}‚ŸÔ0Ö`#‡õ¡}¼´Z$ž×¡k3 S ˆÇ^ÿ›{œ0_àŸ�HøW¼h<¹„ú€‡¬U'VT.vvºcêÊCHÂ{iHR± +sºx\ƒUGx‘ÑNÁK�u#qûGå8Ê7îlwMê j·Tu±hmÓ+•ŒO>©ÁÚ€ÜM¿×ƒü<¦ã?9ëôv¤”ã±{¸>ø|>À°ãé5°wÇI{n>¯û.t–O¾‚è9oš}:]Â4n™y¥¶Í]àXÏ{4šU›c«ÎÜÏ.ããÁôÌì¯ÞÒ‹Ÿm~ç%O[î‰Õß^Ï‚gãÅcwò�æ6žo�œtpBÓÜñåÔ{1˜Ütúgl¥Þ!„mˆ¨·Ûl‡8¼µÀÌr:{jus`{È(k|/—‰ƒÖݳõlþ0N_7Œ Ñ^�öÁê‡ÄØ©Œ�-°ƒƒþ¡ï?háîØÀÞ_ÝA à§‚M÷aÙA€àŸ–½ŽŸÜ0½-sU¡Sû[ÖÝÞfÖê~»µB¦Mozå +ìúØ Œ!ÖüÐì,«uØ Lâ8G@æ– ½v{±µÝ7‚¯Úí¬Õ‚žÊ Ûxãº1¹¿Õ(—aHBây:PÀ¥`³Éht9_aw C™ ç›9Ж_*õ0m¼‚>tY �›¨ÕJÀo˜�6T?©ÎŠ[.»n€m8P»«ìÙëgÚ.÷>¹ßÂP#›�-O÷ sF“©@§ÏvJÆýOÊåbÙòÀœ€‘@˜ØŽZcK z4<›Œ/F“Sl+Ìçá䬪iû='Žö!¯üäÅx~Uo/“‹–•–ëì5ÌŸñ³Áè¸ÚœÂ\2ìú±axF7…7_e{ß.¢Wîô²m'^øl†½n›¡ãžEù»ÕÉ#ÿq§{Á_ݬ֞ãWÓàÍØ{3ç8ë†^òÂèÙ<x»ƒì¸úZ “Ç¿b§pZ¡a]†'Aöfâ?±‡hv{–Ýhr6œ_×Úþv¥ŠÓ?ÀéÃZnA†ƒÙ,3Ã+¶išØD ¢Vsa™1Î#vG’¹ÞœbIÁ-ØwÃÀ‘LÀ3Û;=ÞZ4ìá–!ô¡¦Ê’ Z°ce ²CÒ¼½=<Y#S@k�¾j4'•rÏíÃ8:šß8ÙÞÔkì)¬³šiø];oÀ´¯/JP $d&Nïh2»L&-\âs s�#Ûí¶-ÄXåþV}§d‚ñ`ðvL¨¶!ÎRˆ/’6ÝlcÙZ +ï‡u« †oéØ)%¬-Ô_¿Ÿ×êýRkg§QÚi5êÓ¾³žNÎLsÞªæÓ LˆÜFcFx¯›UÁæ¼çdØ,èwZ×µ9ßF§]wÝhŽÇ³#ËÉ@!G �j“DG²ûn8½*ð“G c†ÇÏ«P7@vâG7sÿáxz-Ÿu‡–³ïOa“ÖÁ V–-¿Ì×_64ò^¶ÿÎK_÷'—0»êíZ2ˆ_…Ë×zÀiîâ²Öö*µY »Ð�V_ùÁHZ|Âhr6�V!ô[_´Z¡·xœfozîºÕœíî½'•F¿\WðimÒ•G'¿>ºú}w|ftb?zdv¡w€F@¼ØJ¨8x6ž”*Ýz}Ðé„;¥N:¶�Æ#¯ˆ•Úm›>¬ÈF3�´†¶*—'¥2ökÞ×è¹Åj„^ˆ·w<ÜïŸ$Àâh™~½5Å&nmà©Õ žú–5êã®ÅÑeÓ€ ƒÕà±¶n6‚z ’s\*Y];3Z.è¬f3ÄÉ"TŸ7È£‹õIðörµ_©¹A• +&æBC>•+øŠ~«=ËÞÚ2 ‡!£„0M/~û‡ÿ™œcÛíJ¥˜"øª°‚Á›þÞÞËýõ0U½ÚéYóžÂüܲ€¤²:ÉþÁ§°Å`‚o…Äó�½ÀuÓɱpª•Y«´ |Tìô÷ÉõÔÍO.¾rF{[;Ý2lO‚Ä^op¸»÷ex2œ¿~÷ß—ëù¸ØÑ©mçw ÖOÏövŸ½øâoîü´,"Ú¶÷޳ˇ[}kvWýÁÁ"yÒ´¢zÛ‡æêÆ/åû¿òóWqðà›_ÿs°ûðþŽ)ä3„<€ÑøíÁœß?|ü\*€ð¯ø¯“éÌdˆÜn'¿Ø|ß§[ÛuÈ +0D¨ãîŸo~8¿ùý`z>Ÿ<¸ù®Öom7¶· ËÎ Á�!óPX8&V76L_¨'»F"…ìbp{ÇŽZíÉ<€Üö¤£{{¶,Ü•Ö +'Ó“®³¼¿elmµa§C¥“Ü+›ðCØ4½rµ'äÉ�2Ö$$N:àÖlr&Wåº+Üb04�ðRRåq£6íZÙlrÖYq¿¿†YAZA©¹xEÛ÷÷ߨ½²'¬h´óº8t�çਞŽGà1°V¹Rè¢Bâ|üü÷Õæ°R²¶²k{›&_A¹dqútî—K†eLzö¢Ý„e;elwwGãSˆ;Ç=Lª@™VG¥ì—IÑÍÜá"*¸Và;¢ƒIܘÞÍÁé»Þ`!o÷Ü€9i‘¿ôôåÿTkOl;uÝÃnw 9fuwM+1pùôÝ÷ÿ2¯«Gcœ¡{6[<L÷>uFÇ5¡ÍÉa¹9îöw“ì©Ù]¶a[yÏ=:?{÷Ïÿúž^}‰÷öìU29‹v{“ùóÑôaÖîÂÐ i¡ßéǜùÿ Þžb…]N«f{Ö2ç½'ïtÓãÕËý/ÿG«3ßÞnwL/ˆ6´Ø£ÎÎPmá_ÂäÌ1L¯Ýžf¥€‘ñáþüêû?ü·–k½'bR>þi ÔDM^ñî?œ\| ²½ÝªTlp”ËNy�Ù‹=êõ÷!€ë O!m€Ë%{gÇ¢»§‹ù¥ã®Jµ!4&ääÖŽ ¥<è-½Õxx´X\Z8ô¯Í)ÄÎÖV«Ž'œœàœFÉcgK1Xö…y8 ;êÛð'ãÕtr�Y$ "q€°AXÀíÍttñøÉ½ÊÎ6‡1¸†°…Õ�²T²ë¥úx5þÞnE]"ˆ0j›ÀºÓ2 +š±ÓILXâFke§D\&Á50;i†îà M^çW�ùØ5œÜ&EÄ&†©œÁz4=ƒ ÙVºðøÙSÛñ¾tûV/ïõ—žÙs÷Ku¨³)Aîú´A~HÈØ!tq°uÆøm;³„a¹†Á³ÙâÁòà‹äàÝ$|b:{µæ‚—Œñú°\ÙάQ«{à¯ÛÖzá½XøO�®jÍ1ö3ĺUk°¶B‚ÊEµ†1·wZøgóžÆù‹8ÝäËG�9@8CleÅØ)µñ¯XŠñøÚœuû°7@å¶áUë:M°Ý}0j¾Ì¿,SÈÉÅ*•°È8ÝV¹l×ë£Áèpâ]9îyŸZÓZÕ©TºØì~›<fyäw»'sïi¯È$¬qa;F�öµ:ùîºýÓ0ýÖiê6öÎ݈(÷ÛI£6éQ<�3Ôëd²Ñ†~5êsØ#õ&ÅÅ\÷ÏlfïôðÞfsý¸CбGÖ.ä$Emº<ÃÁšlúÓßzcfÙû`ˆ,£ ktŠ£y§Ô'µA“qû'PôÕòpÜ?ÚÚ¶îÝîêŸ8©BõÛ$BÉ¡1€:náKíˆMOrz”ÁZ�3L üUKºfr1¶€XÌ`8>°zi£´:YÓXÖa}¶»þ.Ø}ƒ¥Û[BBŒ€‡!¢¡ë¨ÙN µñҎ݃z{Ö,]w=žÉ›yðÌìí„V·aAÛ©a%cïS?ÿv¾0`-¶cÃZuÈÏÔZÃ&Àao½»÷ÍxþÈèìÕ[!ŽvÇÎ![püñ]í6PÜY×95:»Ur¹dƒ×F´½ážÙ‹;NfZ°ÈrÂÕM:Œ†˜vÔh?X°XM{Z˜¢ŠÊP_$Lûµãž›•ÕYbë¡Oë5,cw{»íYoùÀ“-3³wÍ R°¡PåRÔìÄ&ܳºà½¬ÞÊ,û°ïµÚ3bá,ŵ;yoò´–“ñ¦ÀSê-Ï�h¬êU¨¤£¶‘·Ûq£´ †`NÀ·¦�8›n&£3ˆˆFm^¸÷ï×ïÝ+D• óô¶¶qÐÈ•Z%ã7‚¹Ñ [ý¿mAŠV*ÓJÓžþ56\Ýií&R!ñ!øT›eìÇ‹—06··Øú0?¹ß†�¯×gä ƒ¶…ñØ€,Ýí÷!R ú+å1~hÛ˹2zU’3a¯{8›=À +c}g•¤ ;$Ç»™;îõÌ{î~=š?„!†Õ£'°)ªõ¶ÛqV£Ñéh|Ýs ,Ê•aßÞKãgµD´]<õnÖ§?éðO½éOáÇÆÜK¾˜†¯ÌÞ>6«c¯¦Þ“Eüzà §£Ù‰Õ]¦W-3ªÔ Óaé/ûî±ab¡à=�›Z#®5“j#¨Ö¡ÑrÇþYƒOp(Ì^Ò�Y·`ßµ¼rÙ©UÆ.IÂh»Üt'§ýñqv4ù¸VãéÃÙâIƒ$ç¤EÑÀÐÖ½ad•ê8ÙÄ jŒ¶wÚ°¿*õþ@qÓÒ5üŽ¥T«³ûŽ?à7ÐH‰¼^ÐA~ß½Z,^OgOÈSÔ?êXÑNÙ"+¯>†T·PÆ“«fcb´¦ýn^Ú1·a»íôû?Ƥ³ôÛX�l´Ú!°tS³Yæÿ4[9Ú'ŸT¡ÝÊ%ŠNÞ¿ß¾w¯Y"«¢Ãƒ0)C¶´èëû[¶i.Ûm¬Þ®a¬<ïÁ`�L›ÌFçíV ¡cµì‚ëŒV›¥c¤ÛÛv•,Í.ÄW:™ÍŸb•„ûbˆƒ6«P zyZ¥mŠZ- Õx“, ‰°ËÕ*#�ÆjÀ{ýÓÉâ!%ŸÔÇvoßî[&Év¹yˆ³ãG¡æê”XµèP0'ôÂØ²²¾s8ž'@õvÛœa—ÑÚv)T4�€Ÿ^¹Óë9‹€m @&¶\@!ÐvݳNÿ¤ÙÊÿúÑÓ«P|µ 8*lD¹@Ч~™¾hœ§OªÈ[˜Öá`xnQ ußî5ëÿÙÛÿæó¿ÁF¬Ú)ßٸgïÆ‹V'l‘!¿}½U6w*ý®s0[< +â×ãé ,§Ÿ;ƒåN¹»E* "¹a$ô§åS*N;èõð_ûåoÎaãòõ{Ǧ±ªÕ|œY£T+L3e˜•È + ïÖNö`”ǯ†nVB~.ªuLlP®@Õâa×l{n7¸k¨§*�?l"°hª˜Ç&lbO X`r¶~×ÜëA´:Ƕ¹_¯MîßoÜ'ÆvÀ øK¥4‚Q�Õ„95lEýÁÔJµ6Ç?kƒ•ÙvfæT Ö³é¨-Ø›ø"ü¡<«-“f‡o§ù€ù½)Ü©e†�TH§röc·½O>Ècß^§=‚"¶Ë@øµ©pYà¸ÍJ¥>”]Ó·)UÃ$·3x _- ÜX öª78Î)—-ÃÀ Äã6^'ñÀœaø¸?^o•mhwtâÀ'µ†ã\o Ô=³=ëucL¸ÚX@ÂôÝ‹ñt³\½ÈŸtÜÑùapœK6&`vRË^UkÃÜmi Ý©ŽšÍÀ´R?zrvýëƒÓ/`˜¹} ôÁQF;|ívÇʆî±C.Y@µ1öh|2õÝ5xXÀà¡pïGà|(@),’ +˜p6=ƒ=…ÅlâsÈ‘îí”À Ø—E£1Êbˆu¾ÿIëþ'ÍrÉi6(ê¾µhÔÆƒ>6¢K&�Ôk Ë5r®WÇØV¡ÖÝãþ'5p)ˆÚÌ6ÒÁà@@²q¿·t„v†mã¯�;mowñ +ŠÄ{«Û÷1x¯Û l3lµâF+¯·ðçÛåþtw ¶|æwœƒéìj4½l¶)¢ANæë“O*PµÆ¬YŸì쀽ñi0 ±†ðަF'nµ$›�©ÝÍ)?Ê »<›·E¾Ü€<`t�¡|gåò'ó£fܶâJcŠ¿á'Ø,ü¨rámâìù"xÜ"÷ã° æg£5l°"ðÿÕàß«6ñóa’¾pä¢<ˆPŠcË<˜„“ ÔV&üó€.�x¦µKþÏî’2îêsÓÊ!©°¿@òÄH$4æ8°ýÁ 4öhŠƒ�£ÕîïÏ‚‡“ù•ÙÙï9'ø-H ÌÓ]µZØkIRo¥€ÄØÇvûÅ6—½Þq×Z5( +€É;P7"Ö<€ùÔZkzXÉ<{|rñÕ}H¶po*r¥úÐS¥2ÿLD—<lJiÇ¿‡RDo»»µeW Ëêsð t„CX·æËá C…aû”�Ö‚téno5¶·Àœ=Øò%úÒE½ìöÂO>)Ýÿ¤R¯/abИOv‚ѿ`¼Å¤„“ó¾{ +¨1~ÇLæ° ì0ÛFj=ï˜K`H?ËHZéÖ}˜À]‚ˆà¢†àä(¥ÛßÔ1:I§»/"żŒÆÞÕp~Q!S5 $Ù]âmS|ëøb‹z{AHÞ$œãR +åÿ~:=šÎO†ã³NwÝëôÈuܱ/¸ôÃÈNŠm*×'åúøüòê'w´Ýè¥Úh‹>mVZ €þer:ë¥mø[¥áviØ6 )™öÒš´ÓÝŒN;½|kÇ€í\® 3¡¦îh¹c€™kuX}hðNwuxò›£“ÜáÆîR‡RPj:©ž®ÈµËŒÎ +†vˆ>œ¬IE³• úç#òuÄ`<r;ˆdò`owË%ÊöħM¦g£ùöHx2çd§ïô0i½…RMjä—JÃ-ZLàa°Ö° +äÓ"hÇŒ]g¿Ùp+eˆµútM³E ¥¶UËÝOî…j¥üìgÛG°¿È Øi÷:”Þ�åU)»"sØ«Sßhã“Epª¬Ò$#4n)ö‡¢¦J~þþ½{õû÷š4+Ra±ÙÙµ({-Ç_z`‰N�¶Ü¡ã3‘¬ÕjçÃÉe>›gþ¥ŸÞô\Xñ'ƒÉåpzéÅOÃüM²÷…Ñ=hSb @‡Ø\нš8õ+Ó‚4›“8²Sðçp;ý�{ýN °.ûîÞtv:÷8îiß=éRÐ|=ž\œ}¿¿þr2;‡!¶Ä˜ÀB�ɰ†œþf{ à1ÄÙçÖî`|6œ]»Ó+k@ã"æ;™®‡Vo¯„l-gþ“dùÖvÉË ÕYro§2‚99œ>p'7аÛä´„dóG³óáô³-WaˆEm“òWÝñ)´*¬KHrp„p‹Ò{`€lðím+³í‡ëžsرöÁ´°òš&˜V@\%g5ÉRˆPÜfl÷öL¸5Œ°Ö¤àÌ6,åŽj^m„Þz4¹jÕ}ò1Ö'"÷Àj¬…áišY¯»çtWà+̧N1tÒ;Zê`wa‰WÈì…Î…\qêuXg>¤¢mA¼@¿g³éqµÖ‡àíV~tƒƒ�ù ¶ì w›d¥ãñšr›ë3l4vÐvŽ;½ƒ&%ÐÆ;$ñÀ<v„B!1b„óàI= ãÇØnXÐͱ+…b[ö±? +_ì¼õóǰ†¼øf0½è%¼«tõf}ñ}´z;ŸS×ôÃôqt +ùÐ%ÏÀ +»3Y\ôLJópÓëïgçAþÔRzž;¹ðÓg˃ϳ½—óè¦ëC…-¼G>`•{äŽÅ3§ãùÙÞÑçîô¤e%øgt5œÝŒ½Çƒé¦ƒ½söFÓóh÷Q¾ +w?wFçFwéÏz`ÔÁ!‚ˆK¦Nd99þŒf§3ÿŸ¼X„O£sÇ9²»k¨Î¹,öLJ\œW·€-mì,ô2ÐEDa{‰ñÇqñÊo3Óþ`lXix +;Ôúá£9ŒññI¯¿v†Gm;¯@¯íå,¸™x›NoI{Ôô(Úݵ1¬p=õ†GÝÁó´ûP„ÙÍF³³©·ÁÑÃ4,g/‚z7›s£½è˜0£¼¾³î÷ûX´–Bx_v‘6=üÿŠÿº˜o , ê« l48¬×=ô‚«dõÄO7‹èüôá×^ü„òÚiop⸶s莣à" +7v¯Ù‰±³ Jc||)5xiÔjOçþ‰iýA6BÃŽƒÁ>™>¡Ä¹1Vo˜ºÏèd=Ú Ëhõl¸¸\$O¢ÝçcïbâAvíÏÂóý³Ï÷/¾š×à¹wruó›ñâÒ>œœáÈ{ñãYø`8?-ÈÖÛ[¿9Ý|Ó¶!‚ÆçAú|•î½Lö>íO®û£ Tm׉v9|’/y4 6à–†×ýñ‘3:t§cïÆËÞù›xùv=Îήý6È_Õ¨ç‡Ù›0ýÅ<|Òs×^VéRn|�m;pWËõ›ƒ³¯òý×Ëõ§sÿ¤J½º“sÇ=lQc(R#0ß�¶EðwBÅVÚsöÜái¿/®“£ñüÔO &†¹ÓS|2þLƒGX¨ÝõgÉò¥—ÝtG;0ÞÍd0<Í.§Á þI8=’'“½›xõ*Ù{S +÷ÃÝ£·ñò1¸Ë¯V‡ÏÏ¿ˆ—OEd_&Ûïõ†ëÙüÜêBŽ¡øDEÀádñ�Ú„Jò„¸t°¶çXLüpoî?<¹øöèòÛþø¢Æî¯a¡SÈÞXØÝl\íqpõõõóŸß~÷?ì_|ëŒOS`¡£J@èh0:óƒG§ç߮޾ħç áèt"ÇÝ:r(ƒ÷8Ù}¶<ü4^>[øgT°cƒ®zý#ƒRÔÑM¸ût´€~¹¤’gÕs÷'ÁÕØ8‡ùóý³wÇ›¯çÑÙ,<‰WÃå“`ù$Y¿œÇ›tÿÅ4z0\œ»³H’þhíN&Þ%~µZñìõ¿{öö/ËÃ7^rãÎ/±^´ñ“‡Ë£/ãý_]ýkb÷`}@zĽÁj^C»¯³ëþôruò=šùÃûÄÏ^Í¢gÿñxñhwùü雿,’ÇÕ–‡K—oƒìÕxñ`¼Ø€Éñp|<o;l´'à^/º²ëlŸ¾%Ù{ ÄØu×Sÿºi†¹¤²!ÀcZƒÑq“*bvíÞÒè€f«·ë³¯W§_.>Ã,>'Èì÷§Ç³èá,z´òÕîÁgجYx]oÍ-; Lrw|áGÏpBwÞžn~øô›9¸úË›îd/°õׯþpýúû_zÉÃt÷áãW¿yòéïÎo¾«@NüÍpqWøñƒÑôøàà5D(Xkê]ãÏhFªäâæÇ£«o£üéùæ]º÷¸Õ -g¹.Þî_|½wMÏÚV¦ìA^÷{ƒ<Ê!²îŸ¾»ùôß}úý¿¬Î~µ>yûî»ÿàG›íÕ,|¹ˆ_xñó½ƒ/¯Ÿý9^}^-W]Ó{Ýtæå¯ÃåËlýÙõó?]}ÌVO®|5Ÿ¶ `3`ìýáx柮N¿;}ðûEôäàøstŽ{䯗Gß\ÞüñÝÿíwýß>ÿꟾüîŸâ½§‹x³¾ør}ùU¼÷|}þå³·{ûý¿&ëWÎhÝ.Ýñ~˜Ý@@>üÍ哳ýW_ýð_®_üèÌñAlÒÕ“õ寢õ—ÙÉ×óÝçóôñúâW–5Ú#w¼Î÷ßœÞüþôéÿîøæwùúó'¯ÿ°<|ê%çË“ÏÃÝWTÑòõÁÙ»ë¿Åg>xõQ³ãÛƒ]»ì_ûñM¼|yxùýÙÃß&‡Ãé]XNàNvçÁùòèóãßo¾»~üó³×„›ú›‰÷�òŸŸ,_/>;½þáâæ÷«£o i¡+;Ýl2¿HW¯V§_„»ÏÉŸ?Ý=ütmz“ãIøp?òóç{'_a…¯Ÿÿ~ê]ÚݨßÏ-†€çNâôÕ£×¼|öÃÙ£6¯þrxñÕ7?þ'¬´çÄ»:yôÝëoÿ㻟ÿó׿ý—7_ü9Ù}è…—g_Æ'ÃÙEr¾Hž>~óﯞþöøúÛçoÿ†ƒßî„Ãù1¤h´|yrýÝãOÿüèÓ?]?ýáÇ¿ü×›W?ùéƒî`9¢ª–×ùÑÏwpùëÝõÛëg¿·KË^d»&³ÃzÃMN®¿ýô7ÿúéwÿüßÿëÿòýßaúÔ‹^=ýâ?¯Ï¿s†çƒñÕ"yîN¯;”¶@RµMª0]=Êþ’ÞûÝŽ²ÞþÞ‡$»¬Þ×ôÞÖ¬5³zï½íµ{ï-mgï$¤@HB¡‚4QAEņŠêÁÞ+* +¢x<ÇîñœçyÏó>×s½ß‰×5?@ ³fîûûý”™ûþL?š|X D><‘ÉÏ<÷ñ×B‰q“• +ëí±½€óÀ¸JÌð®¬ßŽÐ)‹gAYEÇsÕíBýX}°_hnì¿vò¶w3r%šœîÍœ™X:7¾x¦>8:X¹8³}güÔ#O½˜©üÆÃ±v¶º^jöŽufÆWo¯ö6gN®îÝ ÄÚlN¯_L×¶¤È 1qjvçF¾w hÕh¶Åó>L£ÅªÓ³ózf&ר(´·ÔX«Ú_JTæÄ`]ÑÛŸ „[¡X/íu§.&«¦¥L89F‹ ¬Šk½@xI/GKíÝ`¤ŠÔy¥¬F{‰Â|,;›«.×:ëǯ̬œ´d„|ª¼Tëîôfö«|m3Q\ã忨ØÞøüY_%˜8”D±µ›®Å‹csç¦o»xõñF×F¡æÕ蔽ž˜‘ó¡ÄF¥{†ãK>Ÿ†‘)‚IųJ¤ÍN©Ñn89(Ô×x¥,¦FÆ8©Kê+‰ÜŒ(TذÞ?)[±Ì\-#–âÙélmYKM LI‰tËíÕTqš3éÊB@¯'²ƒÆ`7]^Ôâ½bsùúƒ€SqR±7}jjíR}r?S[¦§¡‚¶X^Û<vo*?íEY-”Kcó§Æ—Ú3g&×®ˆj;§¸‚É‚ƒ<Æçºs—Z“çâ…õxy#fˆŠ~¾4S®Ï¹¼¢Ã€Òæ‚Ù ÷A$9m «”6Wbé °çB°¯g—ÔÄL²¼NÛÜ‚ÍÁ‚úˆ —U},–ÏÔÖŠíã¹Ö1ð}AN ´D=S™Jg#ÙI-ÞôÖžûØ«¥öªQµh{0{y0{¥?{q|ùb8;]->öÈûýðçA¥t§÷¦Ö¯tfÏ—û{c‹K·ÂcçÎÞû®§?¦¥[&Êu-6•©®õæVŽÝUíïLLî¾ï¹Oæ›+P•ÖF¶º%·¸uõôíoŸy*’\ëmLÏíCyðrIÑ¡¨Æù¥æäéÅc÷m}OmìÔÊê™é¹£”Q#íP| ›r¨ÏN-½±¼÷�ðB(Ü…Â#˜$œ•Ê`?=hÚ¤¢ÉùÆà8JI6¦hu˜b’´ÕhoÝxàÙþÔ1ŒIÕÇÏ;{éòê`éB¡w Eæ%}‚ ÒáÈ$J&|h(í$rÓÓ«ç¶ïhÏìÓ ^è\³¹u×}d„T,ÕmŽkö…P®-ž‹çæA”†ãcZ¬ëðp†›Šf¦o=}é1�óÕ•3«g91Mv3•…\m½?{úäùûïzè}€!Ë‹'î{ä}ýùSà‰üDÌøåtñxuì|mìLPאַ#« 0Ñj] ±™hzajõºžœó"ºnŸBˆ`üZ(9#›©üÌå{žÚ8~›Û�Ñ…™l}'YY—õ>Jäx¡º¿÷}>5¾�+¤*[ýùÛ6ëöP<ìö)^Ÿ$)ÕPZl¦)×:©§—0,Ñí hE—ŸfÄx2?[nn4zëµöâØÔ+g-J +ä•|u;UXµZ±:¿öÞ¥c—ü¸ž«-gêëÑü|}â UßPcã0˧®ß~ýÑ@¤2jei „ÛP´ñã0h3³'>ÿÊ×;GE¹0¿|îèLn^Ûº²spÿÄêUAnÞº×mw<†QI%Ô†ÍW×ÓÅåBc½=}Pé‚õ½SWVöI.•./äšzr:’š)5·—ŽÞÓž½ŠNLΜ&¸Ì° ̰u5œ€×àäNº0—J·+µ9”‹@è±1àDN©ESÍñ“J¤E°©úÄi1Ô 9P5œ/Ž:U‹G§…z<³âô@OFã½€Vo¶{³{ÑübÏ‹KWn<#kÅtqr|ñl<˜˜ä•’(£tcspzlàÃT^É*ZC…®Ñ;ÁH3S˜á4=µ;;”Oµ½>6Ð9èNŸìÏmvW4þÈÃOåÛ?ZÙ¹Íî D‚bP6Éâv¢c>ñ«WÞõüÇ^ÊÆ@•;' 5ʽýÎìc‹WAh¯ÓÙÊ¢ÕØS,‘\>WßJÛã'ï~ôcK»—ôX«PwyœÍqj“`ó@7¹òêæÑ;—×/òB¾ÒXH—§q6éÇ“[ †éÒz¦¸âC4-XG»¡D wÆ)ŠÉizË‹È6'As‘X¦ßß]Þ½’©¯€¿0ÛX‹B#ƒJ¨Ï̧ʕþöÄâ¹µ½! ,.]¨-ˆÁ¯æ×N>0½vG¾±‘«,—[€'nL½,i”Šad$’ž„2hŽvgN´&·¥p%Z´–ÈOf«•þñ|{GõP"5#ñ.xA®„ôˤü~UUkÕÞN¡½ŒwKíte™âSÑÔ#X¹Â*”Š8<²×<µw—±»gñ#h7Cç0 4²~<’±H¼Uª/äËs›×êc·†b‹ý‰såþqQo–jËç®=E‰Ùîì@ð4#4BÉåÒØmáÔ¼Õ)àT4Wš•.-6'÷z³ç—7îZ\½œ¯n&r’”=¾wg£»êðˆ~*q’ìVcÓ�ÁØ€b£Û;çs¹ |¢XMdgC±)`®`t2[ÝŒD:“³û©â,”.@.É$$e¹\ªÌ×ZK—ô£a@y´N06)¨íd~!šœˆ'Æ£‘6˦:ýÝ|sSÔ»¬\»ùXI÷"qNlL-Þ&k —/ü([õÞ‰ZÿXw´Ù?ÎËõLvâÌ…(*ÌJÕtmš¢Ò;1ìî©•s)ŠDââå‡&gw†!Ã34ŸAHÍáÁ[‰r•åó Hi!Ç;‰ÂR®± k,ÔDt–ËèáªÕN¸<‚±ŸZ¨ j§ª4’¦fµÓ*©ZAK4Bñv¢8¶HµÙ™P¤+ÉÙJiz~ã|4?I‹yZ(ðJ5êIÁ¾–˜KU6H>tœ-ۛ̕¥öF©»Cª^"|³\ǽ˜œL¶v÷ïßܨØ>&ª +£¡ƒ77vý8åÑQÄa§i& ÔŠw•h[K üTP¥;y +f“â2±ôT¿¨X¨-*¡ÉFnÁb¥NÁlE,62¤·ëÝÝbs·:v6”™/ìAd)PΗׂáq”̃h'ù4B†«•ZoÓ…(pš>Àˆ˜ Qb k€ÆóŠ@UVë.¯R¨nL-ß‘È.抳þv89 +”Nž¼3–¨Y]¬žžÉT·›ç³·#“WFÈ„$N¼–Jõ|~-S˜›œ?[ko'²‰ì2Éb±~oì8‚†Ã‘îâÆ]És‘ø´h‚mŠ+¦3œ˜‚™"Èh81Eûþ±É¥_²Û耘|ð]σ5·7H0^*óR5šœkL-\�ÅžIw§–Ï2RÑí½>ÅBOÐåRý¾â7žmÎ-œMäç^ðÔ’Ûtyƒ·N±UNn™,Ì¡Ã.ðÚr 72ê3Ö¶¹Pžœ\¡¹œÀfÖV.Dã.Tòš@UËÁ®¬¶2l1c8 è=>ØŽ¤ q¦üX(Øé’" IŠÖ©žn ¡¦–š.w¶µH;mmm^˜ZÜ#¹0Fê‰ÌxwüÄØôéŒa7Æø@ÝODa<3¹ t†¾Øœ^¾ÜÜ_ß½{yû'§‹¹ÎîÉ+™ò4ÐÓxuh<XǦâ)ðìi‡+@Ñi/p8(†KšëËÛãÇÁ^mp0s.‘è¯,ßÚ?ÉJ’KÀÀy<ˆ¦È]šÊ9Œš,IG$µŠ:Ÿô‘YŒÉa‡`Ä‚QlºÒØ¥fxCEØìŒÏ¯ +BÁbòŒ8 ”÷²¥•b}=ò›ˆ!x¤ÒØìŒŸ‚FÀ¨(È€ti-–™5âS˜˜Ûc'ûŒ˜#˜ôMñŸ×b“¥úFoü€á +nŒ¢º¦7¡—¡ß>ZÌr@ÐtÞë Tœ—+Åè¼¢õê½ãS‹·Ïß–«¬Xl„ËÍ:ݴׯtJö“¹YYÊÔ’ÉLÂBû�ªsb'’™¢é¬×%ŽµÏœÀ‹ÊCCv‡ Ç‘ 2Ikù|!«…âÙä+ÿòÝÙ™-³Ùï÷IZÎ0«GçRÙÕTnÙ‹0ãápt”ÉŒÁÀz@hAßqINΩÁÒòÊ~¦1áB9œÕƒ±†©q˜‘Ü ×-E#=Uo—!„cîòʦãd‚—JŒ1hÑÍí‹ùÚœ®‘be¢©IlìžZôûEEÊ–j…òŒ,yÑ€ÙNü‚¹‹g—ÂñtЍÖ2•õ±Ù}*Ùò´¢—½˜ØéÎî\éaJÐ%.ÐUB}Q.Ãø8<*HÖT~™SR.!JÉRkµ3urvõ|ö ÖÝEÑhíôéËÇOße²Q(‘䤆 ·ôè8Ëä½^Õ“ˆ…0\ƒY€Úæ‚MFnój/]ÚÎ׎¡TÒæ¤5MôX!÷º”f24¡É´×0xìâ—)&¡àÔ@]¸<^,+Á– ”í..™ŸL”BÉq’O‚iòúµ\il€=4[p‹… ˜,4o,9Y¬¬…£ƒ›[`dòs&3Js‰P¤UjmðÁ&ΤnÑáä€ý¸æABJ¸ßô¦Ï´ÆN¤ò‹]pz4¸§‹òxy’Žë‰ÁäêíÍÁ›¢ùœÜ‡)!EIVÈ*f<9•LÍ + ÈÇ%GÍÈèˆ×iý.†Àt‡5Z)IÈ퟼œŠTM#>(Z›æò,[ ÉŠE,ÚëQÓ©iŠÊÐ\Ææ Ü^èY]–¿9µœmŽgcõÁìüÖ‰•“ýåm9^¤å”ë5]ïTÜê =^Ž TQJõŠ«I¡œ¬çSÅÎ…ËÎnî§*=BˆRR2œ¬Vûóz©ïòóðÿç²==R±Úšäå#d +¥Îq51…ÐQAŽ¥Ê=5QU%J‰{È�)†ƒ©Lsn.ÓÂÄ0ÆèÆãq&îôð#£‡‹†ÂŽg¦ê½]N‰áÏŠz Z"yMPJ¤À(I=QíO-N¯ïÓ©*Z3îßܧ »F†Ý.'—ÊLÆ’ r }ÐȉâB :�—„2I/®£´IWx5îDX7&ÒRªØ\ÃÉ”ÕJ»ýnž!tšŒ"ˆêrvïETQ)«ñÆf€8P<¸}âÂâöéP²bv"v//kíPt#ã##ÞÑQŸÅJø‘ Š…6# ÁîY(µMM‡Â}AÊ¸´¹—©ŽálØâ$@!È‘*ȹâôLe–óŸƒ’ŽÆÈ\£³?˜¾ jM«‡Ò¢Ùx$ÙYN.rIRŠr¨XhÎÚZ¼Ow™™t~1·˜ˆC·XŽq‘TB5\jèˆmdØã° ¢P*•—3يΙͤiAÐ�+eŽŒ¸‡FÝ#&?Å–R¹Íxb&³» ¨eQJäóÍ…Åͽ³¯>ðè{öÙ~ö“_ýÖ×ßzë7ûÿ|çßþüÍïÿä®ûoŽmÀµ™o®#°H´n¶U+š¹ÁøÜÊúÎé[/>øè{î~ø±K<xêŽ+®Ý¸ë]ï¹çÞG¿ðÒ?óê««['6¶N« P<$‹BóÑ@ Y®t§fWÖ6O=}ùžëïzâ=OäùK>|îÚý7yêCŸüø+_ùòkßþÞ¿ö÷=ÿÉ¥Sb …`ŠËMã¨ÖÊñDMRôxªÐŸ[\?>½¼ÕŸšXX™YÛÝÞ;ûÔ3øÉë?ýõoóòW¿zé®ûÆ&ÖɦËÅ»ì¢Ç¥à¨žˆ÷Êå‚Ðm6’çbÝÁJ£¿«N$‹½\}bëäí—o¼ëGŸøÌË/ßÿØ“w=ôž=¥F* ¥�îœv†gÒ_”äš æqBÇ*Él½Xi5:33G÷Î^}ü½Ï>õÌ3_ûöw~ñæ[_üÚ×/ÞycfþX¹2Å Wu{$€ š‰ƒš…:<Іc‰Aµ½šÈu¹Öþù;Þ÷Ñ>ù¡Þý®‡|ÏÓ×ï{øê=<ôÄ{¿øoð…î¹ÿÁS¯±bÆíæ]N†¢tEF¢c’XJ$»Á`!o6šs›GÏLNO:}ë·_¹|×ÝŸýü~ÿÇ¿üÛŸþòÇ?ýùÍ·ß~湋c#£èè( MOd³Ë6+oµà>/ði’J{}!ŸO!©0ÍDÓéæîîé‹WîÞ¿põú<ùþgOœº?½Wïn bÖXËú?\¥uëkKÛgöÎ\½tûûž~Ï+/¿ô‹7~ù›ßýög¿üù›o¾ù_ÿøÇoÿ¯_ü—מýðG6ŽÝZj®{|ºÏŒ€+—ÉpºbçàÜ·]¾zç“O>ùê—_ûÒ×¾ñ‰Ï¿ôÜ}íë_ýW¿~é•/}ûßüÇ?þñòkß|߇?uêüµDº—/Nwkùꄪe³™òüìÌmyèž}è}ŸøôǾöí¯½õÎ;ß~ý'_üæ7¿óãŸþùÏù?ÿ÷ÿþå?àJ~ÿíýè¡'Ÿi¯éÑ&�&‹Q-U+·WVVáØÞÙ½z×]ïÿà³/¾ô©ç?ýñg?ññ_~釯ÿø—¿úÅþýwÿý¿ÿûß¾ó܇?zñÒݹü˜Èh<Öû¹â²Ñ¯¨))�îÝc×ï¾ñèO>úÌûyú™—¿üÕüôõýìõ¿üý/ýÿüÕ¯ûÛßýîå/~eçØ¥LnšãŠAµÃry=ÞÓ"õVsfqqóÄɃßõÀϼ÷C/|⳯¼òßýü¿~ëõ7ßüÕoÞþó_ÿô¿þßÿ†nýÁO~ù™Ï½–-NÚp¢ÓÉÙ’ +AÆ•@1—íll{à‘‡xü‘ç?ýÂÞøùÏÞüÕW¾ûW¾úå·Þyûíßýæ§o¼þÇ?ÿñÿû?ÿû·ïüæŸ}ñÂíw¦2-š½Úí¸Ï'òl¬\œœ_=yüì=÷>ôèO|áK/ÿø?ÿÖ¿÷Ú·¾þ»?þáïÿõ_o¿óö[o¿ñÿùŸþêïzìñN%_^T‚M§ÓXül6a,æ™HX+U*S Iº½é£{§x÷#ŸzñS¯¿ñ‹ßüþ÷_þÆ×~þæ¯þ×ÿ÷Ÿÿþ÷O½ô¹Çž|ü®»ï×´Ë–<0hM®/nÞzrÿÚçï¿çާ¿ÿ«_þÜ¿ÿÛo¡¢ßzû—?ÿù÷?÷ùÞyçÅ•••L¾¡ÇÚ¢{=My* É¡Z®tlkçÞ÷>üÈ»}ì‘>ÿÜ~øýïýàû¯~ù•o~óëþë_ü‹Ÿ}ö¥Ï|ãÚ½+{Í΢,gbáj¾ØËdëÉdivriceíèÆò}W.üË«Ÿ{íµ—¿ñ×ÞzûWüÛß_ÿÕ›¯ÿòï¼óëÿøÏ¿½óïï|õ;_yð±ûV·"‰º(g)!z¥PŸ^:}pîÔÞ©½cGï½~õå—?óÆ?yó7¿þþë¯õ[_ùÅ›?ù×ß¿ýöoÞøío Y~öù—_ºzíFµ9ƒcŽjAµKLDŒ¥´ˆš®j;ëËO½û¡/¿ú…o~ç[/~á endstream endobj 26 0 obj <</Length 65536>>stream +3?~ýGúËŸÿþŸÿxãŸüé¿ûÙ?þìg?úâg?qüà‚ª—AXÉ’mD¢ÕÁØìÌäì©“{ï{æ‰â#Ÿþì'?÷…üÓþÇÿü¯ýÓ_ÿåëßùî—ÿü§ßÿö÷ï¼ü¥WŸzòéf{Éç‚q³[)—ƒ÷y<—®–gŠùÎÑíݧÞûäÇ>ý±O~þ³?úÙOþô·?ÿéïûáÏ~ôæÛoüéÏÿþoøÝë?ÿÁ¯ýúO_ÿî3ï{âÊ×Ré/D]nJ+ æ´P>./ϯ?üÐÃ_üÒ—~ôú¿ý½o¼ó¯oÿé¯zûßüò×oþíïó|ïû_ýá¿ùÓŸ}ÿ™gž>}áΕ£·órats;%·“E}œÓ†’¨ÔëLßzöÜ»~è3_øÜç^ÙüôôÿüŸÿù»?üþGÐv?ý!LÔ'^üÈ¥K·¯îêáf©¼ãÍr§VªÓÙñ‰ÞâòüôTk}úÆõÓ>zåú]§o¿p²TLEÐ>…øx»·[1§#üBTŽ—â¥N¥=Öiïl®mo,ÌöΞ^{ðþ³=|ÇWo»výÚ™‹çSÓz8%JY= +Ú»èq1>7ƒ#‰2 \N;·¹y4›H¶r©ck3w\8ñЗŸzêÆ7¾òùŸÜ¼ù³·ûó>õìùÛöǧ'BZ\ æH°®~A$‘ÓO={îÜÕzs¼\nLu;sç÷7_øÐ»¿õÍWß|ëwþõo}çÕ/½ò‰/|æƒùÀO<téÄöf«5 +—].ÇCŸl¶‚¯Am6Âí$F)Æ£G—ç»ûŽW?ûÂ+_úÌË/=û“þË_þòûOêý×.;¹9×m4‹Å*†±;J‘!8Tƒ$†à£¡D£ÔZ›Y¸zæø3OÜÿ±?þ/¯¼ðÆ?ø·?üæ¯ûÃÏ~òå<÷È•Ë{õjEÄ ðˆÝ’ÆX¢lõã>9ªæãjzjlbi~öààä·Ÿ¿~õöî¾üÒ§žûÆ×_ùüg?öâïÿø‡ÿ‹Ï?~ßgv·³© +IÜ^Æëå1T¥™H:ݪÜÏÆµäÎêÖ½wßóÂóüÀÓï¹÷ÚÏ=ýÄ÷¿ûÍo~ã•÷Üáƒ\îñûo;··½ºØoö2™N»¿£é-“ µ˜I {ܼӆ!:+Ý{ç¥Ï¿ô‰—_ùÌsxü™'|ñ…g¿ÿÝï}üùçï»zeci¥Rª²”‚"²Ë-9l”ÃêóºIÄK(§ªÙd²ÙnMÏÌ®Rœèóƒ¶dÜÆå¢ý>ǃ9tÄb3û„£¿‡'™2ž¡Ä¨žÕ‚I¿õyü~/ÆPMËœœqù‹ s:hÔØ§ ÚœØÈ(¸Zó>7úxI“¢³¬Ò$•‰FйôÄXïØ‰½Å•åx<óh³£¦¤²ÓÉÛì´ÝA B"*0ŒŽaǨ5v4¢3ñh*ž(+ƒ‰=¤'Ñ^½^ËfB¬„zpÍ(¤é˜íLòð;¨€T”Ø´&ÆÙR)žJÕ„ÜXXì×såtd¬UOÄ +,£°ŒF’I¿OµYp«Ùo1yÌ£.Ó¨÷ŸIV4•ù\9;HGŠ¥xîÆÕ;ŽnUS±ARÏf:ÍÙv%Ÿ(ø=øðytØe5£ÃGìÃCN‹ìòyd +Ó1›Í$ã9 øÝ~‘QZ!$ÅóÉÒXsr¢5¡p|JO„„‰;5bÆḠӈbQ–4û¼¬ßŽ„«ÐÔ—®7Öç–/ŽOîÉbq¹uQNë •b~�LªHŠî^ صXÈ[þŸQ¢v9YQX\Ž(‘t8™Ð£™Xä;ëÇyŒ ðIUÊijQ×N'tФGZ‚\9|‹ JetÔc·á>7K1ŽËóã»{×\>Éém™dØÇÀWâxÄí‘aŸñ¬lhÈÇȨÇlB¯DQ5P„<G'H*jIÙ «õ"A¯/cÎIÔ4[|Néòð lpDò¸i‡ƒÂ©8-fÅ@A–³áõ$.¢O’ª ¥}¨ÞÃcÐJ‡Í}nк^o�EC®’”æpÒv;åñV+êtŽ£*xdQÈQTœaÓH1^ІG¬#C.¯K¦ÈÐ:IçT}'Ò&ØëáÌ&ŸyÄí´xíf·Ýìò»© œå™ +t:%pß+õÏåv"ºÇ%XM¨ÃØ©Ä[í‚˲;%à8‚Ðò¹îîö~:^°™ì<&D˜'4n0jÈiõcþ°iÔwè–Ñц„l6hy·Wëa òÿ?�WPËé쬪Öô@ô+^ãuRã5†Ô�îàT‘ÅÙ +ÃW%¹‚â§GrCGß¿•€>žÈ®eŠ+ͱ5<f±�Çñ…t×˜DIUƒñýFû8N¤†Ž¸Í#ž|jEBG†Ü0›v;ƒø‚²TI¥gbÑq‡•rb^ MÞf%=.Éë "h\3üœê ûFF]£&§Éì2›Ü^ðDœ1\D<-4ÁòšÉøý‚FcY{À‡„]ÞÀáÖ¡!;ü¨ÕBáˆÎR)–Í@ùssåÚúðˆwdÄ“N2))Ðä:œÖç•yZoÔgi.5:ê5™<‹Ïë•â©ù`t\Ôh:žHTBzÎíaáïÚl�˜A/‹L~Çaò{\`¤›p*›´XQ¨:¯?È‹/[Œ`4 AT@H¿?#æt +8Sƒu‚‰š<n·"Ë %P#ȤۧãTÞæLfÊÏn';ìV“×bòÚ(ކ Ýü¾�€¤Ã!º÷árÉîr™‘ôú4›¤‚êñ$=i²r0VZ¸O÷ý¨ +wjõ’ˆ8tØ>dìUÇÀ¼{Üppàuk&‡Å‚ ¹,VFØX`€Å‚Ú ™v¹š«Z §PÛv39b¬o÷a¾`µ°ÌPÓˆ‡"Â[tºƒv§â0Ò¢2JhL´<Þ †…À¤TZÇ¢©9KbDÊîFG}Šé÷N ¾Ð‘ÃŒˆ‘dŠg2ª\ôû‚ Þ²9Øìä1šÌ$NÄ}h'Ó²ÒIeWx¾j1‘V3á÷)У#n¯›'‰8+ÔX¡!«=–+”>Y£´5û¬6ÆHåKb°®GÇêÝdn’b㬘§ÙœjÉ¡.Áä]¾°ýæþVhv—ûæÿ!?ŽFQ4êó‡>/jÃ#>£|"JFeƒs9›K€MDË‹Ë{¼R6Áz$…R'‚©q:YàÇ£ÛÓ;PZ>€5<AQ9’Ìr|EZPí, K;<삹ðû‚ŠsRMO+ê�Cc©äxP«Á½ìâ$ÀÂqèD¯W¥ÐP¥8KÒI˜AÓ(b6QnîtkN—ªEú ºŽ9Á¡@ý6Âé }^É“nDDI2 àtÁUÅÔí Ž˜|V;ãÃRP7•bø¬Ý!ùfÍå ‚¼'©8tǨ g™E$ßb:úCU”ÇU<<J€›`™8\×-ÙœãæB·'`Dš 02áÉé“ÕÖ‚Á•ÓT–Ä$ž$ð¤ÛÂßVõº9‡`ÓXŒíñÇâé•ùµûJ]§G…A`ù4‚i>oÜØ`¥ÖBÁ²$”¾„c‡ÝXƒj5 +Û>2ì1ø‡‡&r»xU-ûj•å2Vv ÞØzvþOÄë ú¼Á[þÇ(\�æ—1T3™ÙQ3?bbù£ #·7ÎO¯ž±âGrUIŸŠæWÓ•õ`|œòc•ý‹÷û©ˆÕÅZ¼Ûõ£I–k´Y«SL𺕛†B¦¨M¥0$êÇb€$©R|gS§„‚ –1*Nr9YëGSK¼Tèf¸„36‚É u”J„¼¨ +Ì‹ãF ;‡†Ý6;åGÓ)‘Ï“$°-œ <Øîô½hŠ «¬PIJ(Wá6ÃáªËÍZ,œ +0Ù҂Õó,—õ™Íˆß§D†¦4SÄÈ$ØÞ½“—“é®QºfÄë@Sq| ÚÐí’�TE¥Œ“ááQϨÉoµ.ˆ‘ 9Øð¡!šMÍ,Ÿ‘BµCGœ‡9œAèõhlÌéÌ#>Q)&qdÈ{óðÁáõFTµ w8>#ˆ—G5c6ãt‹ž„Ÿ.Ö6'–.ÐÔ˜Øê¬•jë>_Èl¡FGq‹™ò¸EcŽ»q"OÍFS³~,nl¿rX¥–«ïv¦¹`EPsŠI;´ËÉØ,äÍ~*ðû¨>+il0q +ˆ?äó(N;ÈÒl¡ÝÞàâÒEÊ:dEE©…£iMº\@—^‡…±Ú¬hh +—GeåH”d²WLàüªŸŒcl&˜˜$…Jŵº¾vÛé+úÉ0‚ë’Z×ÑðD"1#i½a3AÑÉþ1Q*90BB%ch"ê¦Ï—ê±XíäþUZ*|&–LWV²µµBs;ß>.;KDêO>ñÁÁüqhI¯Wôxe¯_£Ùb$6Ë‹u‡‘¯hxðœŠgüX† j°§ê]§[u#ÆŠ cw†Ç¯¡XšÎ +b1WX„¬®UBáŽÑ8¡$k]N©ùɤӫ:ݸZPM77áh6¯…{4™¡¨†ò>Döûd’C]Ùm¬Ï¯áDäJD &Í9 `èb«•�õn1c™ ™T@kÕ&&=j1R2�$ýˆ +ÚÊÏé–q(P›´6zè°khØåáv©Qàùè^¬rB™d2£¸,ˆ[·<f¸¯TœŽ§#W.?$Ji�ÑQ¿Ç£�SdÇuÐZË2)†ID.&žžH•½JN0B#¢ÁPEã#ˆÅL{=†¥8¶.ðm—K3[XÑ#‘.(ÐÒp_#ÃÞá!/\Žç‚z?™ž‹aÛbì&ã|ž ±)Ì*¸½/UÂñhZ‘OÔ¸ÕæµÚ1»ƒ5düÆ‹W -‡Gd¤Æ&Ýh(”˜ô^$1ÕêíµÆÏÄs,›L&ûz¢GЉªU�·G,8œ³V]å%#'Çï‘ÆèÅD±P¨,G’cÙìøÁ¹{i9Ç(Ùb{½>8ј8‘k¬§Ê«$—'™X¿½øòç¿zê¶{\^ETž/b-ž\ʶ®¢(5£I‘°±M³b[ѧãÙíZ÷V=9뿉(¡P͇è6§`ŠGx©šd²½[©Ì_½ó±É…[.ð>-1©Æ¦8µÐ'õè(—G&ÙìÍÝØãà +:¬Ft€Ç-'ã}QÌCm[,4‰GÔ@™ærœT•‚ÍR}=]\òcºÓ¨ˆY-è:)P‰åæ2]R¬°rUR; ßl6ÜxW¨5á/†c“ñÄ4”Êçî‡_°ÙÀªäY®ÄpEŠ5mh¡ÌZŒT…F¶ÞÃGñÜ‘(ëZm|l Ee¨g�+©‚5!ÃÃnžËrl~ÑjAhRO¤º‘Tä³j¸Oó%šÉC-ŠNIVFjnÂçßLPmFˆ\\ËéÔ$ð‚Ç-ù|;ðøB)O‘t`0 hÅåo¹Å4l$퀸Jq\^”Kpï@¸‘p|ùð°Õj¦aR€ùh¼’›ªtN#==9àƒuIoË‘n$3-Û .Õ¥ïyflþ$ès0/>0)Þ€ •¡–¢¶¬vÊe§0,êpŠ&áöð ÔÉAª°˜ÈÏ´®¨ÙjoÝXl,匽Ñ~¦¸ØììLÌlŸ¼Á1/‡B #7U(ÃUù lð°íGs3<jÂÂÑ™ÆØ™æäA$;G²/wù�‹ +Ùœ¨V 6MqiV�ùZSôðx Úˆf:õîR4;À0¥ÑZXº½Òßg¤'7á°9¥~gýÎïÍäf+ úAK(ZL$³…£±äœ¡â¸Œ¬‚Œ1ƒµSZ|bjîÜÁ…ÇJÍm¬¬LMŸ€çøT¶ºXìî–z'Æ.-í<œ¯JRº ä1: +*x£r6#øB´Ùic{¸ õx€úC.·±…ÓO¤Ø@+VÞ¥—üDÚ©ŠZæ¤"àÅfx© kLyQ ·@Ã�¶€5³Zi—±Âöze7`2cV+¸cÅfñ»ÀSa`ùPtNÎ\‰` +r°_nHç×mvaxØëGb4[ˆ4/”C*ÇHJ¥HH’1«Åx›i$öxÀÜ¥&ÒÚ``o¹eÔbBÌ£~Óˆ œÃ‚OÓLžÀcp´`3ð™G2iN,¥ +óÉüÂÄøÉ»n¼_µi>“«mFÓ0qvïDop*SY³y$“ %© ¼‰è_$é´QNf(éL¦0‘Q¸_žÏô–$Š‹jdLQJãc[Wïÿ€Ë+Á%óK£ñ +|}#œœò!ª$%µ¬6°ö$†G¡Àb©ùù;[Sû^T·Û(œŒ¸|ªÕÁ™¬€¯4SÅÍùµkáXOvSÅ”ÒMVÁµP´=³vë•ûŸ>{å±îÌ)VÎ¥c•í£—”pcÔJ!d<‘›Næ8¥Ê/ö'·”`Þé +dJÛZtš r¢ÔàåšË«�á˵Ö:\pè’Z“ƒuV*X]¢Û«ô¦Že+³nTÒ¢Íîô‰ñ•3͉íR{3š™aåÃD?üÑ—/\¾!T‡Zt¶ØÙÏ5KžÅÊÂu[ËÛWÓÔnª¾Õ˜;מ¿Î/»ÐH0T~öùÏmí\0[Hpµ¡È ÒÝÛÞ¸5vÆŽvl”¢#&Ôl¥ bi®ÊI-pg`\ŠÀC$óøTèâBk·>q0·sÏÒñÛ§6䈯ÛÛ é]›µŠÂOÀ�M´'ÏÅÓó.#ýC�½Ê±à}p Çl. 5R¸A½þE1¿æó<2Ûï‹�Wz= çC�ž8€©´Cqz$”ÔÁãD’ÅÆ2J…Y±Plífª[‘ôB³wROq¸V +CQÊxý0ò’Ãð-ÎíÀr +�LÍh᪕<~ñæ2°t¾ºÚŸ»u°|‘eÝîz©±ì'5P_ÑÌt(>N•|eÞ;®ÇÇ@¥°\!™™ ÇÆ"ñA(Þg¤š‰²,tn|hÄ{dÄçñª©Ìl"»Ï¯è‰)œŒXeËs‚ZòøUA®�U›KÇ®½ý¡¹µ[)!ÕjÌ]»ñD2k${çÊÇϼûú#Ÿ˜Ø¸GÔ'2SC“éLnÁjä¼a~#'Ps¸$©zßÈ0¹Y¿?ìt ^DGȤjêñÉty) ×íùãûW¡:NEü˜Œ³iŒË²r>_]8vöT~Üx<‚„êý Q9Ô²9$›ƒóù”Lr¬ÓÝZD0Åçi!GñEEW¢cÉÒlöÔÅïíNŸ%üX4Hj› Óà¡FF(€Y,BæÐa»ÍÉK¡A$¹*‡Jhäxm’2 Ò†Ö_9ýñÕw.h‰i€úxúÊÝÌçAjúýQUëúü1ŠÎ§róàm¡<n.—ˆ| +lã!ð€&’äkáìZ,·–È®`hÚë )JÃïÕ†8FG°›!¨xIE‡±¨;X5×fÜ,„ÚD§DÍX¥%juÜX¢–]V+ãh˜¥"$¡C a�¡HŠ$Jpø‘ŒMÌÚíl¥¸ÊŒT=3^˜«ÅÆV}p2[›×ÔÜÅÍ.¸9žž[¿:¹t¹Ü:>˜976^ÒZ&6Áêúpý)NE¹õÀÉÅa�aãÛ7á Ö$ÙJ%)®€’i^6vGR|–æsZ¤G³IOÔ;«‰ã‰cùúüÜòÙñÙSJ°¦EÚµÎN½»ÕžØVãc.$fÄ>;…ˆÖÎææGÍÄÈ(Æò%E“Õè%N¨ »œ"AļF%Fs…Hrº;s¶Ò9ÏL+J~g÷ì»ßûàMCÕÄ@·ÔØ9ºÿù»žiÏœ†Òu¸¹hªŒõÝ>õæÇ†p³õ#a0&>¿îrñ,Ÿõ¹Ä¸Ó²b#žßÞ¿~Ïc;w÷³±â²Å!2|†ÂíÂL‹ahJj_ƒ34ìh +E§I#^sd-ƒhÇÀ�c“;ÝÁF"3®'¦i±Ep%Š/•t¦."DÊjÔð¸¨ÖŒt+ër«F¾ý0âó«ùâ‚Ï+94zø“FÀØ=ÁJu¡n \•iÔxf· ‡ìpÊà¡$bÄhc‘ty‘™ô†ë ·Ëª±9)ÔW¡€mEã9U§³pw ù*vÎaçÝN l»Ë!€.…R¿KÈ…BM‡W剰ØY¸šÏ‹Æ'3*‘h½ÞZ†ê,›Ÿ=˜\>Wím"5Š¢dØ‹hO@Q*8r:P†R`<?ZiŒÏ]öáÏ4M%‚z¤‘ÝÉ‚=÷‚etUê—ríÞz£¹B!Ì/å +S›w;÷ÐÉs\}àƒÕî® ”o?}ãþ‡ÞËËYòáq,Cf©=v0=;‚¦y‡Cð¤S ‘‘(t·ÕLØ/æ2¾y$ÊÁV@kË î¨$†Ç>›+ÎVÏ‘|Áå +KëÖ~:;?5w0³rŽ'T÷>ú\ Ò!Ý@“÷I¦èt+ õ>´HœÍAs|!šœNäæº“Ç÷o{`iû#WB¡Öé3×Á÷¹<J ÔŽ§¦ÓÙ…df‰å›Æ÷°l$EF@h¯ €~¦ +KÕþn²°� + AÕX¼íp²6¥M°¶÷À`ùrm|Ÿ`ó‡ø1äÔ“| + +Þé {| )0–-nçJ»ÃÆ3.»ÓAddxÄwóãn‚Ü:]TÃSœØ€_´YP¿_›l³2>$BÐàgë3«ç®<î‚;b’>_Ðç3V¯)ZK ÷CÉy-½„1‹ò³4Ö[æ�繜 –x*åvIàý‡†lÃî¡!—ÉH;'nF– ng�G£t:(žÏÉ¡z,3ËM—ÚÛ¡ØxáH¬§E+8 •¤5žOsB6 6ÂáqÈZ'G:‚í +*ˤ Òˆøóz5†Ê‚³OÍîöH�ž@XfÔÌrÅdz:ª¡h€ÀA=çbÅ~cr{ln¿XYÌçgW×Îç+S ÇúÙʯ¶"©™ti]Ѧ¼Þ„Ï‘¤Çg@\ÙÁZ™›â!H)ðU@Ôõð¨ãðÕã‘BZ7›-Tvæ·ï P +ë[·k‰À—ÃÉynnî ¨L8Ò+5VGÌ”i”à˜ ¢ÕÎxà°;9–Ïõ.¥îå¡õH2êtò ä\~Åc¬Í¶:ǦæöÁs b¶ÑÙ¡è´Û%Ú,´åf¸·ÍJRTÄá P<äöI* +÷E¸½Íˆ%V.·ú;œcØx³³ZëmŸ TÆåº}Q®ê1pÜ«FÐ@µ©ÇfµÈl"·(*M«-�µg³ÒíÆÂÔä¦gB]ž�§Ô¥•rû˜ì ûµ`5›í˜F=GÙ @„£]QÎC#Ø´ÛÂÁñ9VÌSL|Yª´–ȯ6gSÅ55Òñ ’¬4Ú»²Zó£‡3¦Õa|,´Xp³3™Ñ~—áŸix8šD¼aŽ˳s'p&Ê©æä±“ß³wÇ“í¹sJtœd!%³8³=7wFR*.àpñ>ãm£Ž"Á°VEÅé$rF3`XP,áõ'möÀÍÆìÆ;;bd°wÃuŽ«‚ð"–KÔ:“s[‹›gW_^Û½´sê®É…3éÚJEË¥©Íó,w{y^ÊKJ“bª’ÒC„Û�.síu+>¯† qÄqƒÄòH0È,æ¥"ÍFe%ëGÁ©F¥8¥¢jµZ}qÿÌ=b $ˆ9p4›•åhl2hStÄp$\/çlF¶Ûjã<^M«,_d¹<Ž…C¡ + .üWÐQ`É™…Ö`¯;}j}÷:ü3ô~»½¼²qáŸár~_�5–âP>È01 +Ó¼˜ƒÂƒvµXa±1sneûîX¼¿º¼÷¥¯ý í[¬ÅÔÀSäË+®<qöާÄ`ïÈ]Ãóøh«Q#c¶ÙTYéõ¬T|^„“ÓÁ:œÍÁZܨ•7òPÔP‹—²v'&Úf#,Ôb¬=cc9ð~§²¼Î¨†+[^ˆdÇc¹™|sKOÏ +Zr«½½¶uw@kXn#ü„¡2(õ¸@ˆÀ’F2¹ñq4ʸw—êqʘO kÅv)©Ws[²µÙlm!šŸg”J&õ`ycåìâòäæG4œ.– _¦˜´( 2. +™\nÇCàµ=€t…ak$³Ý6fÁJBÜ|.x¼!ŠMðJæ·V_øÀ?óâ«ßž˜? °MOµÇËõÕ±îÎÜÌqUͪ‚¨HrEQ[8‘³Y¥á!ãK£#>(-‡5ï°<ÃCN³ ±š1Ñ‚Áf··3·tÚê AÕøŒói‚ZIå—2ÅU%ØÀpÛ]+UæÝFJ?‡a HW``̳é~1?1:ì5 ç÷©f3ép@O)“ +é (ãñ ‘åb45P´'X¾ÐÝí¬Æw¬V.ƒ"£À¤.ç÷J$®û}r4ÖdÀ#¸h²ÖT@¤"†²©Ú¹sw<2\-WØÍ—vB¡N29ˆÆ{8•.qÙBvÚjhØuó›I^›[¼gvõº¨4FGq°Àìn'sè°õ°ñ ÎîáxJE|˜êróGŽØÿ n4—‰ççÀô׎å–ÂÉ9ŠÍ'3“Z¼é!d%R/u¶Úã{Çnœ½ôäí×?°sê†O³\ +d†Ï®3h¶àÃÃnÓ¨ÏåD¥I*é0rr ·“#Ð�Š)‚šjv—O»1X8ærÌ-–ÇuµªGÚ‚Rs¸%‚IbdÄë�¤SLª•úv£V½m±r(0 ¨^&Ȝ˴؋C¹ù?ÃÃЪN'ýâöpz´±°zfuûb©±°°rjçÔp‰áâz¼§†›‹kg;ƒc(ñùÅ@ µ¼¼ŸÉôàoƒv»ƒÆ³D_Œ¦R>OÀë–L£~³”g„=Â=šM~‘h?‘šŒ'‚˜Z߸½ÙÙB¨0¬–º'›gùE5Ôœ[<S©-LÁ€Ä±Ø„À€mvjtÔ{è«ÓÆ >“‡†m££ˆ×ðù —lÆžÀbvëz½~àÓè„|i)4Þ^Áõx4 Œ·aÀ©ÛÉcHGwܳßaÃHL³ÛØÑQ3rBä…Ã$"±ÎמØ>vÕí `X‚çËÀééü"(X*t3ùÃñ˜ñ8”)rLAÓA‡'lBä£áP Î-‡¬n¯As |LÆ—°P‹•pºàÑÕŠP”Gãö(”á¶â£ù´^®²¬jù“—fWnÔVºƒÝ™Õ[ûsñÜ,Ã¥3Ù,Ü\™£À+ŽpÄHSU°-Ùj}Çê&“Ïãæ)&™.Ímº~êÒ£í±ÝË—¾zï3z¢‘ ‚ÊàdŠ—ªáøt¥}º;wYKN²\²ÞØÌÕVƒ‘¶¤ÖAH[mF¾q Ð÷qxÈyøˆsØ„l•Uz•¿Ó'2t&Ÿ'éèÉdºwüä¥ÇßûüÞ¹ë©Ê|0>`…âêÖ•ÅÍÛ¥PÑBánwp´TYдz&ÓÅ8L8_’Jž±ÙoŒ_Ïq«Fz +Æ00tÄ@-§–Ä‚ìRL ÃSápeie/‘j‘l8œêO®^X;qWgæt©»'†:N—”KŽŸ¹ø J…ÌVÔe,N›oèÙÌŒßÊ\vzbgmãâ‘#Î#‡p~ Á`d�‚áqÀ®rifeýxaŸ?DÒÐÎ1ŠŠa~5TŒ³¤.ˆ‡²Û•3¿âq‹>4:âðûx–‚JËÇç×ö§bÙ¹jsŠåÒs+ç)*ípˆFþ¿•±[9¯Oçå:E'¡§L£^@B¨[¯[$0G@ÿ`ð£¦È`–‰>d9|ÈtèÓÐT5p´ÌgB«Vfâ`l¸"eÜ^™á³B°¡Å@i/6µöæü`õK¯}ogï2xF)PMæ§#É ¸qUŸ Ø´Û+²TtiñV?ªÛÍ&‡ÃŽÚm$ !¨JP³‚˜äÅ4ŠEX¾Œuj•îÄv©<uíÎûî¸þ°o\.‘YŽ'ªÍc‹[7&ç/ŒMíõN"Ú9zü’L¸°–a’žRÔ® ·ÝÞÍÁƒ)‡b¶KfãC`X$ðY‘ø¬³vl÷öÞØº¤´x/S^«u÷¦/íîÝîúªýzkéÔwéÉÉP¸©¨5šIƒ/Ux¨È-·W²ÚŒŽóú4Iì¨ê|¿?l³™Ì,µX�d¼ 2}¾„‘Ÿé ¯‡ø\0Ü`ÄÅÆ`¬¼HTRsKçG¡6ÊÕ ‚Ñy1¡…ªNce—+è°Kn‡J¢ÑZi¡ÛÙºù AdУÅ2-– õúc[“»¼å8 ʲªˆRž¦cJÐHF"ðH9?óh³aV +…#КÇ%ZM8`ZX+%Æ~Ž +wÇ×w÷¯ìž¾WKÎLчė—Ï|á‹_ϧû mVЦ’"_Å/Ö]n d†"ç{“'ц݆C9YG1§ò{DÔ+«Rš$C�ì,1›Œ”Ý¡!p,âU]6Áï õÇ¢ë÷>ápÒ8¦…ŒjèéÉTi1S˜\˜Ù~üéu@ôõö6Ðb45¥E@^ !؈Zz×Ã/ˆZåС‘á!ËȰËwdc€Y8:Ú«MÜzMÑÊ^Pbž•³z¼•ÌšãkÅÖ<ÉÅ£é±B}CTêZ¸¯EŒk‚Xë½J}Q +&ãÙº¨ÖnHÁ5›SçKQYQj€ÃE‰¤Ù.öèò a%Ô¡¹Ïe6ÖÎwûkJ¨IM”Û»ÝéÓ‹wì½w|é šŸž=öü‹_D: Ž�Êx©Ž÷Um\”zr ‹`š¬kÍMA*OiÊ?Aá ˆÃ–LÆëlbdÔ5ærËpœT‹gæ½ræ%5Û*”h6Ýé¯Mnóà’¼2FDÁ‰BÞfå@ ÂiÝîÇôØy`y€‹Ñ\U«²’³‹Yh)ØîÌœÍÕ7ÔpLJE¼þP½¹ŽÕP<Œ“Épt,ŸÓ#Q�~Ô¡¢vš"u§ƒv/Út¯G±Ë!dêæÎ5àJIÌÁÉÉÎôÊù•Ý«ë»w¾sòÚ ?G`Kƒ7Övºo6áxÒXGu•/Ì롊ÃJ ÷kN+…ù¸_u;(‹ ¡Èl8<åÊ£‚Æ¤Žø\vÁn}’á*Åh¤Žb*IE0"Ä‹ÙXvb|~ëä•“×ÇWÏ£”¹ã³§yµŠC§ÐŒHRL–eS Ïëà2;,¤×¥:íp›ŒËÉú<l9Wß:qž–n$ÍÎÂ-8s}òXº¹ÉÈ%QLŸ9¸º¶u”‚�nä#±ÉÉéý…Å[c‰IA.7Êcï{ÿGšcGo¹Åf±â.@$«7wU}ÌãU6¶.éñö‘ÙJz€e0#³NTc©A©4µºº7½xÊ‹õÿ'齿#»ÎkÁ`Dv@*TºU7çœCåœ +…œ3h ÑÝ@çÜM6›M6ƒÈfE‰IQʲžmë)ZÒX–lŸ=N³ÆófYïÍšßæT{-,,¤BÝ{Îþö·÷=ç|Ò–áTE=Wª/í>wáÎ[´’þ|¶ºN°¹(b¡D,µB‘þºv*;ŸÎÏCQñä@”¢–Ù÷ŒHÔ…ŒAzpˆ„"ÒÉ¡P D¡˜i8=/·œ«mçëÛÀ5gÝÇo|tîÊ£`HÔ¬ª›î™‰žfw�oGa ‚DY*µ:g¶04DöŸW÷Ÿ ²'NDP$¦ëí‰ñÍ{÷3\(IÅhZ#‚%ÎL×WvŸ3ÜÆìÜéÛϼÑÛ†”þöȈÝ/¼:Ñ_ï‹„9 +7û%²‰Ñ€ÁŽnO+›±x«7±µzúö™k/Ÿ¹öÒöùg¯Šª,Ÿ*VWš½Ó��ŠV�n'â(Ö'êÑ60Ê|4 ©|jZSÊÇžˆ„C\¨¿^̆B@J“ÙØ¹ÉŸø„p�:YRZ†ÝóuìqQD1…d\É,Û[3›7›Óy£Ëëe7=Uhnb„gšXjÞMÍÆ3KŠÝBHkx´_5èç¡ 0:BV<q2�#Z5‚Ùæd£¨¸eœ³c¹‰É•+ùúz¾ºRÛ)7€™Êý÷°ä8ྠ=†KRºÕ\¸zýyÓiœ8Àq[3ê‚TŒ"ö“ª}Fº‰ô-$øF€‰É•"@/…lksóLgbF•lyy~óîι—¶öž\8ÛÙw’ݸÛxï£o?xã‹ýæb¨Smí.¬Þ+”ö¥=Ýê†#ÊðÕ1æèø‰~‘çá)¶12ON^¿óèÞÃ7iõ¸`T…‰˜ VªÍõzk¿Ô:‡±Y€ºdqp5Jº•ˆxÜk´zç$½6âgÌ~ü‰ŠÓ�†ÉJF:7dU0( j9_[oެº9³thNYJܽõðÛßÿa³³èå¦�X”ãÊê‚i žË„3\v˜çŸŒ+– +åÝç²…ùõåý>üêÒÚáÂÖµµsÏ·®6g/.îÜß8}k{ïf¡¶R*ÏýàG¿~õ0TW¥‚,×�ƒ1dÜ2šT‰„õãÇàX8Ù÷ËÇžò<õ$—õލT³¹9Y-2BN2š¼V—ÌŽæNâ d“¹Éfw[6J¹ÚêØüÑÜÖ͹í»k·2ÅéÆ½Þ…ÃvÎ<CY†/檩⚨ÏpÂ8Ù##$°Q~?ˆzèÉ66ÌáÇ—ÈMÇó¥úìæ™Û[w¯¿°¸u%ߨ`ä +Jx@¨p|†Õ`†":Ç—ëí½îäQ<=Gó@¢óQw¢ +0V À–bC·æã©eQ-ƒ™õY‚rAÖ h6¦µdvªP™Ÿ5³JÓv¡ºÔèîÔ;±Ôtº¸˜)-¨F%æÖΜ½¾¸q€`º—˜ÌV¼ô¸jµX±É 4ШtöàV¡0ò—Ï'@&£p2±Ò™É›·_êMn c“2ÓñÂJgúèÚ½O=ÿúÇó[÷12ݬÎ;¼Ã‹ €±L~elúúôÒ3¥ÆÃéF`Ž*W.=(W×ú{˜G(à¦aÔ=ž[,wöUi5–&§¶Ÿdœ•мRÉæç&.TÚ»±DÐf6ÛS´ÒP¿{/:2BtVÖÚ†Ù ‡ÕÑQZRKÅÆ/€§Ø#¦aTÓ´b¡4+)™ñÙ³W_vwS…YAɃ+¤)ϲëg/>ÿÆg¾¶°r+Mï2L.’ íB†úíhÓñÔSÃ'£#ÃdÀ,ƒI±EpýѨ¡«Ž12VÛÝ<|töæÛã‹Wõ(7Ö×wî^½óæôì™ë÷^Ÿ]¿(O/Åä×ì8H17¯Üx<µx$jUÓ(Ô×3ÅeÅžBðäv[8Á1ÃŒP'-+æx¹à¦'c™ÞÎþ«Ï¼æåº¹ú|kD÷©TiÚ>×›½‘-G1Á4A)S|V5[º;)º7ÇÉMOBýu7† b› Á6Bdú¥héT ßÚÀÓ +Ò²J>9x>Þš8?¹x)WÛ¤ù‚(e:Û©| íXvvvýúÑÇÛç_ˆæ5§ŠÓÇ9K‡Š‘AIS +ŸïÓ&› p§›pœ:С~Uü~s@˜PÄôâ½byåú§p(öª¤•dP¬/Î_N•–ÜÞ^>óêkŸ±íAØÍ±sîùByÃr§ýýç38°x7¯½Ðl ö›Ìök¨*F'™[©uÏ›;íÝ»óâ•ë÷|£8ˆµLi}zõÖ•gÞ=wë/· +EMÓ¾ðÑ×¶·/úCÒvÑÌI7±L3…ÁA$‘ÚÍ|umx„„ Fúû x¹äħM¯'©[÷^}øÊg]·…uQ.Û±‰\iyíÔõë÷?Õ>bø2E¥%¹ì7?ýô¸Mߨ• sÁ qüX0 +‰©Ä°“ÃÀ>°QØi1T* t=Ŭ—›µÎ>Å—5ßìžnO€”qþð¿×èmXÉîáµOÞ}ôÑæÙ—Vï¼üøëóë·U£YÈÌîžyÎI¶Gƒ\Ò€ZãY/áýnDJÜ®vǶx> +q0ªJ1S]+uwg×®N,énuyóhlî S_K×ÖÍäŒ ×h)/ZõLeÅLö"„‰sIÜÙM”·®€l”ÊpZÍMÏlšÓJ¬V'Ø'–)6O1}{ +‹ ôHÚÁi�~qûÙÅg»s—*ÝtiL½klÜq2½XvjþÔ3™Æ)Å“ +p¬+«‡(®‚L*·¤Yc,›Ñ:[Á OQŽiÕY.ìXx ¿6'qB2_^ÓÌ&éQÖ±( +^‹…Ãt¥±tûþwž}¼¸q9™Ò2±"|¸¡~/`†¢cÅÊR±8wý~êĉp=0ܯaBǧʦ½\ìfzhÚ~výÊÖ჉ÅóñìAç#“c½O¾ñ©¹ù=H¡û…eúí!úO`€œÃ1£\™ÓôÒÓOù%‰¤¬Ö$)éíþªº]}áÑëÏ<÷˜çAöLLÎ^oŒŸÏÚÞ8‚x¾þ�®ÙÚ! wpÅ—ã*&qŽšÇCA?9Þ^~ÿÃ?BOÔù (åz31·ÃQÆÄÔº$§A΢Ø*¯w \*Õã»íÉÝúØF";©›•j}euïÖòÎ…öäF*?ë¥�“4çµZ·wJÑÊý,\†e’4ihõ+DDð5ÇÆý~"à'2´ÜöìÊÕó7ßZß{¦;³·4¿ý“ýìÞó¯k^ËJN[{‰üJ¾¶½´u÷â7æ7®Õ;›^}Ou»!ØrÒ³Åöéj÷©Ã7N]|mjíF«µùÍ?ýÙ{_ú~sFƒÊ“y +B&ek<ž^¬Ö–nßy~cÿFkö`båB{öL²<7>0»|áü•o¿ø©tq¾Ú\»yÿç_û`ïâñÙ#75ÅŠ–/‰J+n¤A˜G`à’‚XÑÍÃeY©‚L^(ˆì¢H_ÔÕe£)Jeó@zRÔÜäìÕ,%RõZ}:S˜Ó)š¯PTŽ"“Àyýgi�‰hTÅp/•fI"ŽÀ&H÷åQ´G31I-¨z¨²a†xØ7˜wIVÓŽ×ìNíÏ\ÑŒ*AYQ´¦ãÉŽ;êo¬²&¥Ûm1CA>0ʦ øyÿ(¾ÖKÍõ¹Õ‹íÉ='1Ó)€Óä¼ë´0Ì0ð°{ºV£©xà“ôþó”V$¤œ<=q,tâx|‹!öWÐHÒ=þ´?èg|#D¿=â@äÉ%y>Aˆ”xf&‘[83“›(Ö›½BcÛòº’”Î1]œâe›TÕÌŠJ.™[ÊV6×ö7¸Š\‘ä“3¶xÿ`X p7àÀÍ F€&‹ mQÍ{™éJcczþìêêÞõÛÏͯì7º[»G/®ì<wîÊkÛû÷ÊõEÃ.ÙN½Rž=ºô¬~azbáâÊöͱÙÃ\uÑIv»˜Mwž¹ÿÚµg^†qÛò¦³K/ž:ÿêÖù—óåÅ™ñõï~ï/n?|ÕŠ·s•ÅÖôÎÄâþÍçßøàöõ?ûÅg>þîÅËÏüåï|òSyÙY/3kĦ³åÍÙå[G7>½²óˆJ"ŸîMíƒ +Aj(,á”Ì£îÍtg®ºÉ) êÆÆ—$)§M;9®Øu &EµÖìø +/'M;g¹5N©4ÇÏŽÏ]·ËšÅɬîôd£¼›ª¤�@n ‡t@î¯)øXšI+k¼˜ƒ¢*ÐÓK×§U§%“¨æaT YÁ•H”¥hƒ¼””œj–91 +³¼œ^=uµX™ÚOËpTé#i¢X‰FŸ�$� Á +Í'5·—¯îŠj“aÓ¸¾µTµr0 ‘4ÓÍ'¿ ‹q"êå€ÎA�bC2Š£> +èêþÎÀ€@.øÖ7B‚Ø¡ƒP5ͧI6nºõBm Áܤ[H¦Û¼”pbMÓ×Ì®i¥Ò3‰Ì$'X²lkVޤmÝj™ñiÙl4Ä0Y×îÅãã£>2äPXD€&á '5… $j�߇¢'¤X1ÛhožÚ»³x¯Ü^â師Î.&³Ý|±›ÌŒ±B +€PU+šVµ&áLaºÜX–µ<-äPÂÆiGÕ³¶UÌæ'ÜD³_²ð6¢`jî\kl=é{ÞÇf–·3?5³{åÞËw_zóùÇŸ½ÿÚ§ï¾òøàê½ùåíû^8ºúpzö쥛¯OÜœY½³º}wfñ˜V’öbNíÅ×?œ];ÂF|$Ã¥$½‘*ï4'Y!) ñO¾þ®i–@Š`¶Œsc{íôƒÓOÝÄäÑù›¯¿ù~«·3)Qo|‰êc“Î\~³Ö;@qóöíµÑ�ßo‰a4F2ùfèš^èm/¬]mï—Ûë‚^Bp“ +ŠU+µ7X9Žpà¾>Æ‹i’±€!™„î4&/>ûø+Ý™3ŠR4ݱhÿÝ_Ò öŸwËPm¬óBV’’‰Ô˜¤7«cçtoŠd€uô[¥*Hg¡J’qÛkÅÓ=A.¢¸Ûo“7)&Ã]À±ýDCýÍlCým„ýw@ÌŸ8E»ßj� ææ´íä”ëjVSÖÁ¦Ë бýA +#uNLÇÓ³éâz²�`Y’“‰d]³ËPD°œv¹µ—¯ª´N?)JÙ¯¿7:‚YjÁ¤Ãƒa@bÀSHÐI–JÕ›kãˆRÊHn®j^›WsºÝ(Éʹ¡P#×RÙ•TaC³º(j#°jØ FÈù¨HÔd˜$ˆ&7Ñ•”"ŠÙÁçóá4eUöw’¸¦ vÚÉgSMQŒj²^››\ªM¥sÍ.‰F²8UiÍM¯ìå«‹““›WŸ}<³qŒ¤¦åÊF Ði·tjçj¡6ô³it±iÛ“Õ:‚ƒŒ«¢º»{'l†«Øñ¹rcgõô³ÛçîÏo^w“2ï½ðय़ýæo¶nQB!UÞÈ·ÏNn>¼ýâvîUs¶yûÓŸß={'ÉÀÜ©ödºrª=yáðú;éü\Âm¼ôÒ§o>ÿŽ/ �{Žê¼X^Ùº{ù™w/>xÏÍÌ×k¯¿ûÕJc%– ¨$iåjkëÜ·~~rþ*0V×n~2_œ?ÑïÎõùX‰TdsósË—%!sóúý¿õg‚˜¥øªîÍ‚w7ã;‡¯Ýýl¹¹DÍgî¿yï…·bÉΰÆÀçpXÆÐÇ×ú½VɃÓWoÝxäØ1ß±§}O}bôرhrMgÙ…ýÎø°¥²x/‡âŒ%üa0w)`²\7ÍKQð5ÓœNª°Üîí.Ÿºa%Ç1LÍf§x¯ßóR€nñ1ýí‘”ˆ bB~„¥äP� H”Œat +Ø‚Lad"ñšV�®>¹¿uþÁâÎöü•XnÍd¨ i¥(Üô÷ÄésPHæØL:?OsYñظ$(*‚ÑñóÀ-öË÷Á†"äýý$B:7ä®"æ2 Ë¢òI&Û4kEY€pT«Ø9½qúÆÜÊ¡å4‰¦kã„Åsž¢¤YÚÅ…%tš/a††1à*BÇTÖBAAâ,iS¸ ,9pŽMÁŒ&ͺãÉJ6áVÛùj}dpñã3ç+íÍxª%«)Iòͳ5O‘’ýµûŠc’¸`&†az4"DÃ,HO^|LК KÍ&ó‹†Õš˜9³°y¹ÔZ#³˜®ŸÞ»’ÍM˜—HMÅR†ÓÔ¬fä+NV”r8á=iN´¢eOxñ9E±Œ§‰N¥ÔíöÖú§‹«±üjµwXí¤ò3nj’fâ$¯¬Ÿº"JY u£I@}y²˜÷ûHÿn)ù¾õÊkï�/Óï¯:Âû!‡àŠ©ÂZ2»`ªé÷?úÊ£Wßöû¨Ç!ÿ(Ï•Ly·»z;B~ŠgÀ<ÖpL¤R| ýÚ½m „(0zœ»8º\™ Cr4¢K³)08p„ Ž"£ÃF%VŒBÂX.VhîèÑ|ž¥ÍéñµÝë±ô¸¬—Ü$0Ë(‘ ‡×$>ÒPÅQ‹Ä\ŽNYVø2ñ(<® +9…O7+ss‡¢ƒ´‚b&–€öý¤@›Ù츔Dû-˜‡IÖÁ˜°lœa]�׫‹rÁDÛ«kk±Ôœn5;{^|A´Vc©\ž ‡ú•I¢0°ê^ è HNªà’‚~Øc¦^¾)$ýç + ý“øÝïç4£¡$•2íŽmÕ)Ò … ƒiÚC- i¢¿#‘À4�ZQÃ2<B‚ˆ 1Å?÷Ogûép€f “¡âœPÀˆx(Ĥs½x¶‹jÊj–ã㊔¶õŒÄ»á�)r^*Õ€£ ¬S�¼\pÜŽßOA¸HECM0J$ÈœÅQ0ш\noÈZ™¢bGè%žMhJšDÕ €@l˜qòDxðd$àCiŒh%n•ŠÙi§'OF†‰h4F0yœŒc˜EQ2LK¹íØ…“'£ýsaÎD{âÜÌÚ͉ÅÀbà�N¸"Žýì€Èà¾)å¸5Ûä«¢§+qšÔÁDÐð¤ ×qLóû0QˆÁ£”ÌI$ŠóŒDS𛬳rÁL– )¾µ²wxt[ÓH‹Å“Óõæ—XÀq‰°P€ŽâpXÀŽHD$q“¢¢Tãè4QL)unûÂýGŸ‚1-áQT‹âŠj$ +>”€FÃ@Xú’"QíI‘‚$މÛN¢-WòÅélq.–š²c=Ãã�%šmVl»þÌ‚O¦Vq¢†ÀÙPPò EÂD,‘w÷ËÈ„€q<E‘y‹Aæï²\q@ïÿu€0ÄØ/�2‰ixça¤_aG1@qI5pTò GL%ŸŠ¡°†@ÑH(-±¹|×Uü~Œ& Aˆ1´ÍщÉp˜€(Kjéd1ìÁ¡(‚\cS”ÞÎ?J D|þ'ŽF†$¢„üLÌ¢ aÀ�fbg|S•Ó‘CS.†:8f‚ˆ�ó82 #(‰¨Ãý +0°‡8l8fÞÒAt§°¨qüx¤Â'úZúÉ1XÜ?Š‹¼)pމ¾¸E–M+jŲj^¢¨%ÿ(|=q|8D1LÏ1F¹8žJµt=¡ +&FG#¡�Mâi5qTNÇ[Õ±ÍÁÀÐÈPÈ7"†'%KOô+¹^Ž…úTï¶*S9 ‚x…ùd¬fy‰ÌÆÃA&æe`^ä†Ê pB"¢àˆ8mt„B#še«Åñb±K“²©'iʼŠpX<~<(+îßÚÀIÿh@ˆD–+ªjÓ´:ºQF¢ Ÿ™Ù]IfÄ*N’Ëž7V(ÌYvÿÉa0@ӴŲ6€z]¬ß€G€÷‡…pˆð ‡ƒ¾ó.•õûŒ±¥,ð}¢€ ñ‰ÉªÎaتã.ö¹ z°¿Ðx•B!ØšŽkj†c½'¥x~jsÿ&‰~ö“p“XÜBrx Œ!"K¶C +‹rÂ1¸@b"E‚>?AÀ· y.Å2‰þ:õ(…X0GÇŸñaþtÀà˜èxht‡!‰%,EH�Ý’Žåö¯�‘ ’]ØÏV‰„„hˆ§QÀÏ7;fݵÇH!@Žñ#ƒÈ±§F}Ã`^dðŽ'ŽP¸Ê³^ÐOGÁaÀ¾Fðˆ$P1Ö#A–%]I¨†÷;6n™ÀMò[qTçìÙ–õ“áb:E'.Oq¿6DûðôÕw¾ø½PTzê'Oø£!ZbM‰9vJæôó×¶ÏG`~x(òdQ¾¿.OÇj² Çl 0§.K‘6ÐxQˆ?Ça’#Uˆ#Q†p8DP˜ìÚe†6¢€ÄÐŽ 0É!"F@Fù´"6¡ +2ÑàPäÄñ8*ñ|œa¸oZ56pDU„…)QˆRÕtº8£à(Ôߟùä· CËŽú±pÓPP¤q†Dÿ(ŠÀlÂK%-W¤Äö""YN-Wšˆ +YpEÕú’ëô»BF�œà÷3 'µ’n-¯GÃ8 tVID$Q‰F…H ù!ðÿÏ(7|2䌜<6:x<¥úeióÉB°CF4ˆGßxÀ"ެ”N%3dXn‹²;2<Tp¨?Å0 +IP€<<þôðñ§†ƒ>Z`3<“ˆYŽÐ<#·²š’ ø08ÌcQk –c#Çý¾A(<Šó”‡EEÿp |t Ÿ!ƒÝŸ88>*ó �ÈÁ“A€CviÂ4åè!;|‰@d‘C'þa4äÉ|0G±<E(<QŒ›íváx$#^Ì×<7ɰR4Å£Q˜ÆB3–¨œ8G‚Œ.x®âIm +L=[Zšó’™`ó¢äPUàÕ˜cf’N6aÏw<{·Ùœ‡ý,!È@©²Æ(µe!ã™5 úy"šrÅrÆ<jæàÌòÌZ·XÿLÔT 6$ `ž˜b\‰*¨–.kŠhéKšª˜¥ ÈÿP„#„|ºX©©j,“ª3Œ!óP<>vl´ÿ,ï—‹CE€ú—:3Ó3š(#aÜïC0DªÀ±sï’”Y,ŽëzFU3<ø‰h˜˜¡pAfUŽ2Ð(R6Ǥ8Ú–I¡È¬«9ª.s‚)I<Žò�dÜÇçZX‘D ÒxD$`$2�À!P˜ à ?¼ÐLYsewg2wm¯uywüµ—®înN'"$8ÂÜÇ¢�ØÓŸ<y<.;ȇ£D˜ä1Ú•K”u^Â@ða™åyš¢�?R,‹í˜J6fOú?=xâ˜À$ÇAà:ÉãÇ"ÇŽ…Nž€üÃ�x†CHÒË0CD(Cp‘Ðü$¹ãF‘“'|þ„&„Eý~¹2\K±Ó {qºP«8¹´Ü)[G«Õ»æ·×šÍ¢ÙÈ;qÛÕdCù“džF‡h6Îå¤x¥«•,Sg·LCâè„ÅWsòRÛxùöÆËÏíÞ¿:÷ÜÍår!1<£ X],žt8Äåá^A[鯯‹RÆ€»9ñÔdâå;«/ß]ûÎg~ûã7~ñ«?øàöÆB6éвÀR”‡À.±DÊȺF«hL6b½j“ٌc‰Œ@Ñ`Ø„F1Ýí–×–ç^~íµj³#h0€€8øŠQÔ&E¥úæŽ`$ešµl&Ÿ´±h ÃÑ,²R³¹|x0Öi[¦µ¶6›N'P„„ B]–ur£/E0à#c¹¥d$œÅç5tg.{~«7U‹7“Òv/ñüõåO>»õù×Ï=~nçîåù^9e›ÃAòbH|šÅEÁU+{ìxAí´¹¦ynÎ~v'û©;3_|¼ýå×Nýñ—_ùíÏ¿ôösÛgÖ{JNçD<B a +Ñåð¤E„a`ªóšØˆiE“*Ëc‰Ùfj{®yçÒúåƒéû×–Þ|~ÿ“÷/_Þ;Ý)–Ò® 4õhß +à䣞<æFýìk‘5åN)åɼÁÕ”WN'º›4’D”9qÜòc@l©XØ&FëVäÌ„úüAåÖ^åþQûÃ7¾þÞ•Ï¿ºúþƒÎï¿wëóîŸíÙw_9ØYìd]؇ /ù†Yh4ÃG'ãÈT2¸TŒ^˜Ó®žÊn¤ÖÓ7öj÷Ï×_»Õ{ã^÷ƒ‡Só/ÿýo>óíϹ»“ÈhxÔï÷EBf ‘Œ 2ê˜Ñý}4É?:“úðÅùO?Ó}ûNãƒG“¿øÎÍüíg~ñÍË¿úÖÑûÙKÿã¿ÿü/¾~÷Í{ó—¶+¹˜CDA´²Ž¨g-©‘ä–êêþ„1“AæŠx'I,µ¬Õ®·Þu®n—Þ{´ù‡ß}ëW¿þÚGï?óèîúÞÆ¸*ß(Àà¨88<ql êñ¸HJˆæØcG=.Ð͈s5s±mìMo?ØxûÑþËw7¿üÎ…ŸüàÝ×_ºZ+XsSÝٹ廪^À‚~‹†ã<Ò²°3ãÊÃsÕg÷òãÂËJ¿øÞßÿàåÏ=7ÿ…½ßýðÅûû/ýË>ÿ“/üó¯^ü˯_<·àØ4„ú5 )X$£˜�âlp.‹ßÛŒ}÷sû?ÿþƒo}îügžmí“S?üâÁþòÑ_~|ôãwþù7/ýí¯~þÙâ³û™Ý™tÖQsÈ•qSMI›¢^)07W¼7oL¼t®ðè|æOÞ?ÿ›?þ—øöïñ{û?þöíÿïÿý›?þúýG‡åo¾½õË<÷îô)G`dåH …ò!ŸNL|x6K^^Œ_ZNïMèGóÖ‹[úå{¾ºóáãKo¾p5ã¸p„,cDQ¥§Øv•¼³¨¼»ñÝwö¿óÎÞO¿ró~òøüû_üþçŸúñþæ¿Üû—ß}ökŸ>:5•NI‹Žæ‰aRpÃÀ³ðù.ysNyu/öí×—~úµ›ßÿüÙ¯¿¹ö£/üÃ^ø¿~ï_ûöo¾ówß»ü›?¹öÚµé²ÓO‚@„„ü,Œz¢VÒä…õò–úÎÅØç®g¿óúÌo¿qîÿüÃ÷ó—þü{¿ùöÑ?þìþßýðößßüé‡ë¿úÆþùÜÖõt=íF¦è¾2VXo»+Uéú’þ¥‡Ýáô7_Ÿýúã…ßÿäå_}ï™?ýìî>½þßÿîýÿùßøõø÷ß½öüñÍï}x°=°à +`ÀíÃNgøŽnk£—Ç©[Ö3[Ö+r>šþþç¶¾ñæÂO¿~åßÿþK¿ûóÿðã—þío¿ð—߸u°Xœéu³¹6Š(iËØR7Fn—°KãÔwë¿üêáo¿}å»ï®ûSk?ýêåýÝ;¿üöµï½»þ_?>÷¿ÿúµß|íÂ7?¸™:ã«Hçž|zõÆ™àT:×f¯/™Îçß{vêgߺýOõúÿöÓ‡üáƒ?þøùŸ|øóvÿüSSŸ½ž½4-ň„„õˉ²:Cž‘ëVê+ÄTšžK"{Ôçî5þôÝ~tðç_ØùÅw.þá§ÏÿíÏýò[—ùÑæßþàÒ?ÿê¹ßÿàÊ7?ÙùôEïŃB-¡ÁaFà2,íh¼ÒH5‡ó°³=åÞšòâŽñÖÅ4¿þ³Û¿úÎÅŸíðÿú§¯üßÿú'ß~ký;Ÿ9÷èÖ‡ÑX„‰R‚'Ò|¤ã K9üh\zùLá¯~ÿ3û?ùàÜ¿ÿæÓÿó?~òw?~øã÷O¿ÿ`ñÔl6¡ÒFˆ ËISN:’çrLN‚ç³üáTòîVö…Ó±|jõýî½?üø/¾´üуÎ÷ÞZøé—Î}íÍûgKgæòlÁ�1%¤HÌ�^Œ%ÔŒ™,ÛNVÄÇ]â̸unÒº:o}æZõ‡Ÿßûõwî}ÿsg¿ýÖæž_~|¡õÚ~éÎZbÔS¼)Ò‘0-2YG¯H¤P°ÔœJ|>/Ü?•ÿú«ó?zÿÔ_}çòo¿÷ñÂ?ýêíŸ}õâÏ¿¸ûÏ?{þß~ùò¯¿´ùíGÙ÷sCá�b©…Œ×Ö9Ë¢ñºA´Ôè¼¼1Í}ò0ýæåâWÍÿûïßùçß½ùû>óß~õÊ¿ýñs?ýÆõ¯=^yïùÙ¥±˜¥è,eÛ©dÇ%Dr½áôbÈ\ÚoPÏ®Ç_j¿x¶vo#ýù[_óÚO?¾þÍ×V¿øÜÄ[—:§cóyS‘à)TJfø$ÄÀ´‡<28fã k2³;–¸²˜}áLéÍ+coߘyóÆÌÙŽ~®tÌù‚ãE…d‚š_âb×Ä´.¸åx¢hÊ•]);ç&R‡ãÖ›—jßxmö¯¾qæŸ~ñâ_~ñð+'¿r¿ýê¶õ`A}´™^+Šb¢¨,$M£Mâ°D„ä"a—„j¶Väζ©çÖW÷ÝïüáGÏý?ÿþñ?þú•ß~ïþǯž¹8_œÈ¹*¯F¢*e±P˜îïë³*[³˜‰¤°RÑg“——ÒÏí¿üâòWß8ýöÝ©ÛÛ¥©’ÎÓ0ðûGÂP˜Oxíjy9î´FײágºWwgzIühB}é\ãK¯_º}zìÊrîÖfa§çt3jRcÁa«_®0jdyà “^ÕUl A-ŠÌërÁ*6·\³gr×Vë—–Š{“éé|l*Ó˜TyŽÀà +Ñ�G Q"~ö(bQôx:¹ÑÉN»wVÝŸë}ÿ³§>~iþ‡^øáç¿ûÆÚw^Yüø¹™÷®Ö.Ïê¦]dÔ~écÜ%1+D•ìX;P׎žnÉ&Öw¯ýë_¿÷O¿ûôýúõï¾{îµkSW7‹-xcEJZV“"š2Ñ('3z+]NKLA#k6W©ªÎO¦^\M0¦ãw·ÇÎOe;SVŤ i$GÁLÐÏŽQ'€ÄT>Æ#AŒ¤Tµè9Ï«9VVfR<•“¹Š%¸ThÁ8'Ö³-‘q€+A’‡ÅtªM`F8�Ä6†I…’‹nnq|e¾Ñ«›ÒRN½±”Û*‹—f3gzÉõ‚¼QT2ê\Ú¨¨dÁC +Kç‘(°aà4}<ØØŒÄ×-1/“ f%Ï_ž¶Þº6þé[³÷ÛgºÅ$Ã0e*/5Óè1¤§Šq–ˆªªÂˆ† Ô³ÙRÌÈÛBÞæ=™6%N—†Q\V}x‰FQJQŒ3 "(ж!Zi7“O)ŠqtͳJqÀi¦LòÉC QÀIA!fÔGŒŒ‹§’Ù…þ29ÍR:p†èQ¦)5Ç+3ÓùN©Sm•æuÞµú†89àó¨(£ÙŠ(–5¹ÄúðÀ¨oÐ|½.8¶ì9²™5µzÊXhx‡ÙíŽun&}´P_%'RZ7a•-FOž ûgÛ‡GÐ'ƒÀo’T&•œ-çò‰–LÑUL&/a9>ÕJ¾|eû•Ûg.¬M/VŠIY œ@†uÄ‚Ó4«SmTjû™Ø„L‹WŽnÒæ‹ÃdWNæÜb9YI›i™TàQ É>`KOD�¨ ˆêÁ€‚À¶È%"£0¹÷ #ýÇ_A*æÑ¨Jã6C8̇|a4DEl$Äqý+ƒ&brÿ0ËX($ÛôÓ¬3¸ij%EªÀ¡¢¬BIÍL õ‡=ÑMYE‹·˜MÃ…*þ~¥ñ[‘¡žú_†Ž=5ü&Ë–d;JŒ‚i2‚«¤à +Jÿ,.5)Ô¤i‡Óm.ÆFûaZùú®ãæX«{ÊŽ•QL )[Ó«ÙÂJ";GÑ&މšè޵g|d`0ìó³œTÓ Íçú•µ’"ŸîöNIFÅRP¢(#âaHÃ`ƒÆ´à(:p2e ÔøEe�MEa‚4KY2êçGýVGîizÙ²kššy5¾¿å£¿Ð†¢ø'E©$«%ÃnêVUb’œCðX8ªGaŠ( +‰(¢Ò´¥(QL(J1sܺ¡åi”hQ+$FF¡�†Àº,·¬Ä +J¥FýÔÀ@äÄÉ0�ŠgdÕ?8Jú|$†9áâ‡pÕòiÀK:ŒÈn³OjåÁH¿à9xí0ˆD—¤B&¿Â +¥PØ +‡å(¬9n׋Oø†©P�¯#J9E¯G7R#CàË<_ø…‘a†$s¹â†nu%¥àñá€Vf<EˆÆð;9/,ûi'Ÿt—(Òn´¶¸~õrÝ´º±Ä|*»ê¦–Fê‰Aâä ë£#ôÓO "’ÒŒ6R…5Ýêôž<AAÑïãŸ~:48ˆâdR5ƽĪnöB9P‡úËR,å�0ôŸ’ž„‚£ŽšT¹˜o +ú`"*ˆ‚ƒé‰ý#K!9‚ºá¨ýô'FÌø,Á¥9!¾¾zÔšØFé-æp:)(yY+›V«5±B¤pT¢¹”kaL*‚zQ,.jíZsïðú¹ÚòÀŒ�ž˜uR›‚Ö#èl$ªB†[¼XxƒQÁ“¢:¦;S€e¥"Ù`X…¢f5)6¯Z79!iUŒˆÙN'W\ÄœªUh>'èTåT¬°î¤æt§Ã‹ÙÎÔA®F`UÒr4ŸUí+WP:‹3YÃé6»ûË[70*6ä#ƒa™æòý ~T’äúGx,½Üîl+FC6jŒ\G©ÁT¹ÚqÑþž@ŠF%IÊ‹J—¤ +¡�ò²TâžœhÕz²°œ*®S|â«Q,Á&ÃçH:j<— Gô@@ÁÈ8-0:?Ô)’òÂ72Ò/$£.'Th6ÏrŒHRLŽJšÙõ‹‘¨c)œÊÃX‚b™Â‡qUsB.bCDòy‚/lA1Û‚Üß–‰`6J¦}A51a2c§Wd{ÊJ.š±…“äÈ˰9AÊCQF@ìÇÂÈÃdS¶œžeGa»ß{4¤ÑB•—ÛºV#€å±c¡‘!<8J‡C"‚z¡þù_‚�¢¬Ñ!Љ[†=¦9²5.šã8;yc¤#–c‰ÞÁ¹•ö +„é(GHÏŠ[ñ©~Å0½Áö7ÛL8‰±"„¸�dÐ|µÒ>_é]ÊÖwI!A4Nª¨ö”êÌàl&Ó`ü »KÍjÎ —¤IZÛKo›±eNnáT +F=p‚Ò€1Š(œT¨HVó•LqÍKÎ&’Ó»wxBI¥lsobåÖüö½éµ[¹ÆNu쬢ÔRñ±¥íkaÔ@©€–êÎ&‹[Õîa¹s>Y\EIs’Vg… +Ád>y£-¨µÉɃ½¢ZÁC°é¦óõ³©ÂÅ5#hB\˜ˆ=Ù'E¢Òp¿³Ò¯ý‹¹•‰ žéôœÄ4FÛ0aƒIdä¶dõ;,±)€±pXëîVÜ”Hr%Н‹z‹0¢E A×ʪÑT‰td}ÌM.Æ3ˉôâ¨_冤vy©Þ+Œ¸£ac`„ƒ`׉ϑL¶_ßw±$Aï2b%©�ت=Ž€¬Ñ¯„VŘœ›å”¦êL2J+»’>æ¥|�K@‹ ‚ÔÒíqpGQØÂŽjŽD8<BCURëñÌÍ×ú5[F(pUÁ° ˜íÄ1ß±cþãDŽKj[·{¬PöûØ`@„BqÀG¿x&S´6'µò¥\yUwÚ8c¥‚ï!´ÇIyAm� +j=–šª´·T»ˆÈ‚^è4‚'H.Â’Q²ùÿÜÊQÌ“Ì1#6Sí-žzÔž½%bg¼îââasü;ñ0²¨˜“©ÊNª¾+™õ~cµÌ#—$£Î+^©ŠF+–]tSS”6cíSG/.Ÿ¹Síí&Këª;0 n¤Q_[Þ¾FLPJùÚN±uXŸºThïIö8LeÄäìêÍ\e=Òc‰ÙÅ›ÛSÖöhÞ 1€^.3BÆMœNM/Ý™\x¦Ú»+lcx +%\IËFm`„õ$À]ª>£;ónj%UXAMÒË^vÅŒ/~¨ŽŽ/\K×tg-ÙhEPKPŠ¢ÞÖÝÈ¢1ˆô»YvgzÁ0˜e[·ÆÒ0“¼1A°•@H/×\¯7¢X*qQ"cx‹nvS4¦Âp<™šÜ?{/ܯìGù@\ ÐÒæò™W9¡zñÒÃ/~õùÒâàï‚Þ©Ì\œØ|¦>}E÷¦ƒžÊ/€ÐðJƒB&#àÕZ¶|ÚŽ/ùG(¬ +bÄÔˆÜ50ÂûB* [ÊÖž>B`DG0dLÂh<¶!$®»3ñÜ*HУ!Ü×'qŒL{™5OâÀa±9@&²Ù«´ÎO¬Þfä¬K——‹õõJ{3‘›U:LQ¯Tº{`Öúms¥Š›/ÔÏšgMoܦ?¢ ”h +dXŠ/òˆ¬)’«ködkâ|}üÒß{ÜÓœ®dt±&ÛFbZ6ªsç6÷ïéníW•O%\?èß5’ó¶×š™Ùyã/×zëaܦ¥F®¶×˜¸Ü»š¯¯a¤3âgH6M0i˜´ !Æ]^ktç®-l>(µöy Rgmì,+WQ:-™¥ÎY;µ(é]ÀWNrrpFH7Պ纆׉à)Œ.+z/‘]\?ukóôÁÊ9¾Öî^™ÝxÞJŸ¢„:Ãfï¿ðA¡¼Ž˜€gV®ßåýû¯}¸¸w_q'ZÐôæ›o}lºcC>>ЦT{.U>Óž¹±ºób¹u@³©îän¶03 ÈEK-/·;·þ°3}a|æHìÊËeËëýIŒ˜’ÞVœI^£øF¾rzbîŒÆ€T-]Ñhö7µRy ÙÖ¶¯]}öMN.¢DÒ‰Ï; `€{´X#™P#¬PޏɅ!.ÔuwÜÍÌ¥JkÅÖà%ÿpéSã3‡@�‘ ×ëÞŠhte«GpŒ* s‰Xçúõ— £òÔ'†‡‡0ŒLX±¥ÖôµÝ‹¯j[ råÆc'6Šè! î¥N'$îÅN¬ÔƮº÷PÓ+§·¯4»ë@qif݉O–›õîéÆÄ™DyIó…òb©½‹ÓiN-ñzgK ±òZÛˆMçjÛŸjW™ò~eüZsîZ¾{À©eÏi¯ï<ËMÞdª´1·zãüÅ—Îßx³;{äÆÆÇºÛíñÍl¦ +ËÉó©ÒV±¾5¿z}çèa²Øku6fæ¯êî-”!Ñq Ä¡nÆæ9¹¦êåîìžhT#˜k¸“ )HÖot›S—f7Ÿ˜4½)/¿:·y}ùÌó¹Î9à“‚°Á–f7òÍõ Ì*v™+œÒI—6…UÙꀻ! *)ë Q/rF“7f´Ø‚“ZŠ¥ç¼ßÍ*WœW*'¥œT¯6}6Y^J—²åLaÁ@NrÞI‚YîÚéY ¤UoQw¦óµSf¬„¤Js£5u¨¹“¦7)h5ÙlR\!žœ¨f…Ťç–/\{îÝí&V¯—;gM·Ë²‰Ó§oÞ}ðù`ÄDˆ˜›˜lM5§Žê“gk“‡@¤]½öòÜÜYµ)&Q8;µz··p³6~©3w—•ZÃ>‘fsØ´ÓvjÞHÌpzˆŸdq=™ßd£°Ï,Ò\ypÁ†(I‚qF@×ÚÁ xüDÈWN¬P}ÔåI¦€Ê6wŸO¤¦^Ep $G‚Ê‚4 —˜ÍVÖA,ó|zaz'Sœ@qSÕªy@¹›wWwžu÷DWTrc½íÖôù�u¤ØÍlùT³w5רËT·ãùEYæJ‹šÕ4¼^ª²¯lÈî8-–r…õ™µ{Vj¥ÜJût¦¸2>½æðÙ¹ëNrBQJ³Ógz3û¼”ÏäçÎ^|´wôÊÒ©gg7ï–:§5#}tþÎÁùç`0 ¯²l¶’ÅmÍ›§¸r:=uõ™Ç^¦‡^*¿bÄçôjyüüé˯ÏmÜñb3;û÷'W.³ZÉÍ/)Þ£vøR²¸[;´¦$g®Þú$à„0b#D‚àʤPe•ÍåòÅõjc{}ópráÉ×8¥9Œz0ÓÝÎÄÒÕ>mÒn27“¯' +‹¥ÖŽ—]‚ñJ¦2Õx~)‚:œRJ”Ör3¹æ¹æÔÍ|ãŒf÷x±pñÚ£½ÃçµÄÉäA(·NdzK–7,Ã¥f/̯\ˆ§{º×hwãùòüÞÙçV7®¿ êÍÞìáÜÖ'·Ä›c¼1äë¹ÃûùüD’$¥Xjmåkk^b„«Žù!gØ'IrFÎÌù‹Ÿœ:u?ÕØÍÔ·S•-Né û cÇ'Îp|!æÝC4:ÆòÕHÄÀ ˆ.ˆ5@JCL0dqB‹Û¦»ä$—€/ + ,\ÍdúäÜÉ(fÇKÍõ£Cî+OAH‹rÅMN‚`”´Ç¼XJäVd§;�’/fhU;gªó²=†³i?¤plºÙÞU´2Ë%ÑM®Þ�㿸õìÂÖó™‹‚YG§=y@2@Ò8ýWªŠÞHgg3…E^)¤í8µX¢š/OÅsÓF¬Ç¦¤ÓÙIÓm‚$Âò…'}+¬(i*NÇN.x}™uÓc0¦«Záèêk›çÙ™E/³Ð?4mÕe¹°°pnnù"`Z óÍ£xa;Û:B-’’±Îþ¹{ùê‰A£2€^Òµ'½�B;ž˜hÔ–ßyëÃ_y/u 4Fq53¾4±rwûÒ§:Kwy©zúôµÏ|ðÍbux4FéÑ2еޥÅ3¯€Y‹"¦ lQlœdÞ’Æ©4/VOØic÷Z"39=s`9]N®�¯Ac~H¿)UKµ]Õh¨fSs»´X茟™Z¸K/t¿qR®°KŒS`Ö¼¹$ЮÕm/·*j-0ÅÀ&$²ó8™zbúD@†’5/žŽå7(.“±Zgmnó¢ —Á„Š/e*;à%±Ä”¦ÕúõÁ-‘šB±„Ï'± 'Žú5K¦³›¥ê9Aªå +ó™Ü2µBAHýáQ MTÚnrÅR’Ñ´ +ˆ;—•j¢1†PYu1Ê•B(¢ðr!Y\òÒóvl¶Ü<_;¢ÕjVÝÌ´ï£Ng€Mc›+ohÆø3V,"¨Qnl–;§âùyÕé²Za⛉gÒ¥5@À¡‹jURjÉôT¶8g'Æýa‰acN¼Ñ:Ï{Š^Õín® +¬å4pF$—ƒ¢–¤uxµŒð¢–‰åg«c»“K7:³—õ·âçÛ“§ >¬S¿08_)·¶jÝÍjg›å²“•5à¿Ü! ¢ÀKÍ,oÞÃò&à~qBrx”>šdâ>? xÃp[¹üd6¿}êJ*3ÁŽfMμfõ,à7ËèMŸ_¹ãnÛ©õ\û¢—ßÒœqÝ›"¸~Áÿ¥Õ«ÅÊ0ËâL>_9µ°ñÌØÔ¹r¤Î™Juá·>êöÎDðŒ›[M×wSÕ|k8ŠÇ¦Æ·¿ú'?½õü;@¬ï)êã^z-_ßKVgLÓk[›×÷Q|)ÊäX©®Û¼ÒÆé‚%c±ÎøÌÉe`"Å3°é(œËW–¦–ŽPÂfÙŒ$Wlo¢7{aræ,ÉäFòð£*Õ™Ù4“=y’æ8¡V;ŸÎoðrF3ŽÝyýÏuâDø‚`4‰Såxb1™\Ðõ6KÇÁíS|Æl1T³N±yVi¡LÈìDvÃK®¸©90æ@yZñq¡_¿‚Ñ”ÊÐb%‘]ê-^ÓܱáQ +\'W)!Ÿ(,€»�Ù%¼~©·Ò*'�M™ÞD¬°RhéÌÝØ<ûbu|!cœ”íÃ)(F£p[DÉ,�¢0aÚNø¬�¤ +$ÑÁ[èî´hŒ“|žáSk[W$D±)§À�„3l:›_šÛ¼é·ØKHJ•as@¼Å³Sv²AÌ'…Ë0f‚<+æ¯Ùh-›Nch˜fý! ¥Ò†ÝÅq“¦tÕ(¥K³sg»ó‡‰Â,k@¥(zûIuÄÊÝé‹ó›${6yÃ#‚ëŽ9‰‰0¢ˆ/8UÔœ#1¢& +ëñÓ@"Âý§Á±(â�ÎæWÊõ½LáT8êE¸›^¢ëÉS=ëP¸_n{ï^³·CPŽj4s•ÚØž“šâq k¶¶sùù(bHzՈςHŸ¿š(l#îè¨h[ÍÖø)œŠ“TNP›Š5Aó57>]kïy‰)µægÏtZ+4å@!\Ýívç/L.]È41ƒ!•À8÷û%ÒýAð7ýŽWšQIÄ›$áù|¼¬w¹íðÿÏÞ{5I’dëaïäéJZk##µ¬Ì¬¬,««Õô´Ñ#vÄÎ.îîU{…á‚‚� ÉÒøÄ¿ÂŸD~^ Ÿø@3–ÁÊ'§ºDfd¸û9Ÿðˆô#WãÓmKÓÀxÑÖ ÷ g=˜^ç³Å櫈²¹<¼üv¬è_r.˹Ì1#eÿ"ÌO²êfšáéïo~ŠÊ#Šqƒhm8Í™„Õ±áÍ$ðl°œ,žï|pÃyZl¶gßôçÏ«Émwv3Þ{"ChEù.†s?Ü¢¦ä“‡š5ƒàA´oßÀœ*ÖÈ÷dmA˜0ªgèš®q†Ï'iÝ \\n¿„Ì(ª‹ñìÅîöz”¬ÒlÀ®éø8I{@Â…jöL·o:ý^ï¤Û?æ‡åmšóZmWѧð\Ýé×›võôâíÓgß)F©ç&+\‡é6ÍO‚hÃqš-ÇóëNÿx0>ϺgйËòpåƒõæ}5ºd_ÓÃñBéz{.ƒ^L|öÅÇ¿ÖÍA£¡ B¦Ã¼szu÷‡‹»¿ÈºÏë-Ÿá3LÃ…÷[ФºÑüE‘¦/ÒÎiœ,'ó+×èV‰41œEZœÆOËÞ줢‹å³åöf3îœ{Ù #t4}ÇGxš¦õ¢`÷èòãöò;Ã^@™ö¶NÒ×/8?}øƒ$[Œ¦«ƒÏΟý�…Æòy³å0lâÙ»»[¯™4yÑXº=û¶ìžËrIQ¾nŒÆó—e÷¢VWZM²C N¸(ŽÊÞíòà‡îô‹jò™Í5£ð£‰Ì’A~è„@¥¨OÑ_©$Åãù³ÉîÛÑô ä P±Æ‚Ú‡cµìªwÀn›Óï.*ûOãì¤^é^˜,öÞž£Ù}Õê©vnñÃ÷ÿô‡?üëËÏþ·.)L(0MµÆ,ŸJêØÕÜ~ññoÏo¾îŽ..î~°½¥ w0Ð!~|PöqÚßßý…é,¼ÙÞœØÄ¢ºëEûyyUVŽ7kQ¶²N¸¼ê,ÏJ©fôWëÏA%ͦÔl +çÁ€+ÆTswk‚iµÍÞ¨–å{4DùiÖ½…YèÏ^©æå„ÖÁÁ«ÉâBVc&/W†½ì!êî04QŒ×í¸Þ¼Õö8¡Ð¬eœÏ—_ì~7_½}˜æp{ø¶êŸÀÅTJË_'å•î[þ’çý‹ó¯Ö{¯dµÃ¥hÄ�Í„A¸ê.²£f½€æºìL$Oó¤ÐÏhr;š<•äòüéO_þò_O÷ßa o…(¥(Û6;Ýî1/йåì†ÉÉ`ò"Œ×ä3qbèû£ÛgßÌf§ž[…鮤 ½è`0yF–9k“ýC¼ÙüéþÑ[ 1ÇÅå5–®{ûª«(ÏÈeÏ_èjeB¤vRì{D™ôAë¶»€òWÔžªödzu‘VD‘Úá± õ¥–€ ÝB¶YÖÔöóìY÷JÒsVptže/Фr\z‡Ø›<‡<ºþ—rbD@ÙúðýËwxýå_ŒW/œx½öåÅ«_ªÙ³6ç;îr4}gÇE÷*.“bÓœŸ^ÿ h=–;ƒëÙþw«£o“òÂ4k®è=‡ÔiškZªëÝ8;L^]<ýÝáÙ÷°HmŠñ]æË WÛóoŽnþ è)-Ï�nª>æøTÑ*I-1íïö/~Ü\|wpõÛñÞת½„µW_|_ o�aqæÅ‡iyy_Ó‰ßMÏüåŸâ{ŠKLwåø þøÕpö!ÎÏ Wtc’~xàGE÷Oh3^½NŠvímßzÑBA²(]MDñÆrç"‚„‹%»¹û8_ÝŠJ–uNæ›/ú“çYqéx[ЉêuµÕ6£p·ÙÔlg4š?;ºúé·÷¿Ü½ÿÛÎมIáÁÑÛî�büE6Aï$¹ð¡dŒ!E;dC²ßxIÑQ½aÐlˆ¿Úö0ŽÆŽ•Äñ0Œç >Ž'{zïìˆOžpíÛ&©‡%ˆ>ËÙ¦=äøBz0#q +ç8l·Çê9v—¡õvCo·\LJ’Ï«êú NϪþ/>–´(W^¸1ݹ¬�YQz2š¾ž¬>dýNÊMK–+Ý„_žZ>Ùɧ?½‹òˈ‚)ñ†adqº‚¯Ü#×hþúäîwŠ5ošVVdÓ¢�’C›aº.~øê—µ}úƒ[A<¤ù6JªVøñvÿä»ßüòo¿ýùß]ÿ%Ù(LJ«îIRžšÎ±¦§~r¾»ù¦7|¡CIò`uÄK<Tcܦ#Ñüxïø»îèΗ{GoûÓ[YïÙ4sšu®æ›ÃÅT–-^½ÿ«ãÛŸtoæ$Û°ºr’£ ;<½ùÍjÿíŽ{½ã½“/£ü,¯î¢âÊ6iq°\¿:»üÆ!Ÿì›ç¯¦Ë×ÃÙFC·çPÂmʵY–ì󼿦ÍY5xêz›4; ¢-'”ƒÑÓ8Ù²l¤¨}Ë[çý»ÑòÝbó¥íÍ€¥8±£‹oB(O²óášá+ôH”rÃxî¨ÝÒâh1æåf0¾…ù%);æe¾…˜”¤ÐÆ®·T5X€.x¿Ý¶²üÀó÷ÚmÉùa{¤î˜fŒXÖ¡)¹ª6£É 'äFöúsxˆçKbG@¤1A«/–·—·ßƒîwj:ž�e™sS \„ƒ×j"ÏÅ¢Pö¸ÙTï/›¦ _ÓÝØÁÝ +¶qyßÇ‘mzƒ›Ããï¯ÿPLî8¥Có¹i/‰lîj9ƒõþû7ßþóÃë?„ùÖÚVḈÉIÚ9ꌟ&=0ã©®·²Ä4bÇÄù~œoÇóç0Œùø6ê_%ÕE^[0³€Y-ž¾zóÇ—ïþTŽ_‹R×¶†ž?S´¸7|–w®Óòf0e¢ÿç)©çE3º¬¤~¸/I=ËžwF·ÙóÙ&«ý¶7FÖDéñúè»ùÁ·qçóž$óÝÍgi瀗³¸sqtóó³w|íŸ}Ä{ð8{+xؼÔñ£“åöÛWïþê‹ïþéÍë?/9ö^}þûÝÕQNIY:>ÑŒqVûî®môYÆìvO?úñ¾å.0n×ß7¬%z9…hY¯ßn޾ދ3ø;Þ3¤Eày‹ÍÁ[ÝÂH.oQy©;¨!òÉnùmÓsú×wÝÞlñ,«Îtkô|0`Öh‚XÊJE<õAmmwßïF˜e[UÑâ‡*E‚ÜÅ›ZîÔõǃÑuøCúÉaSŒ|«íÓL*(=Q…kXÂ(uªS°ªÈçš6’Ä +_iRÎÃ!, ö²âD–»´X<©+e!H\Ÿî¾}÷ñŸ¿ûöß\¾üûrpÇò±íMH¦xd§~qwn§ëï/þHê )I^®²Î~orgÅ'miТÓ*?Ûn>Œ¦O-³œ®í/’âì,³xÉK>Íéàͤ„ '%ŠÒQ´X¾=¸ù1¬Îuw!©}tzI5ʪگçÕä%ÆœÈñ˜µÀq àXîR”2Û÷ƯûÓ÷Ari9ŠÖë ^Vó :dX²Ûã.0Ť^IuT–[ÃÊJ‰ ÇìØþ2HO³7‹ÍÇ(¿!P#@ûW¯ÿˆ0óâ…fOu$i#ÛÛÏ!ïÇp¾s²ƒßw§o×ÛÏÃü@ÐzÐÎÉb~—劶!Õ Ü4cnû+¤zÃlµí²Øîí&É)ÙÓ@ʃx{výóÅí x(:°íñçïÿ�œšÎ®ãm:ýÛjx›’ªM»Eu<š?UÌ^½msbG³v¡�ƒðÀÔ+׬òdqóìû¼{ÆIU½åéöBTG²>íŽ^QÔÒËl³»x}¿=NX«©†.«ÓžÉj·Õ²‘YÕàr¶~7ßûÒ V†9E°â³¶»Ïr…ëìæƒgÃõÛ¤sFî#s†H¾½œŒ®(J'—wTSŸ™æX‚éSr(1Onné�ó½`:Ý}±ü~ÿôÃÁù×½é Øß´¦Ñ¯ŸÄf»›W/þæèê÷»‡ßA±@' =‘jVq~ÚBØ?Ë»o×›ß}ßé]òRˆ'„)Ìã@'Öl®ý´8|öÙß¼ûö_ShR«1ôÉ ¯ïgƒ§º»š¿Þœþäû°êÛí‹ÁèLT+¶WìÀ›;Îzµù¸»ýÞr×P’œøÁ€‹x41—” +¢w4{qùâ²:Òµ¬ õMw +úÁvwý€l�H³6’vãàôëþdùûMÊ£Yßv‡ê1p?Æ‚öÅû|úúo\R[dž’Ü]¿Ø]?‡ôí ŸfÝ»Þì=Ԧ鬰͖Aꧤ[ŠrZ-KRzª9O;OGó¯½Ñˆ¦-IŠÂp +Å¢¨©ªw!à}oãû[¤�¹SE©|Øaµ«j=ä"„áKÛôG§A¼€¸ +¼ùpøt²ø¯¨YJ 5£i’Œ5-ü "|<½,>’#ÍZÔ6C[¦–[F�¢¨•aNÒì8+ÏUm�~ÜÙ‘}oº\=³í^³e‚ã¾ã$çýÕoV§ßåå¡À9£ÞÁþÑ;¸ÅO>•šmârÍÞ‹»ª÷‚g¡ý¤$^^]ýX¯©Ÿ>á[-ÏtÖåàVV:ÈbÍèZÎ8É7y±Æ#”ÆH4ªªóÑìyRXÎ0É÷»£3'˜¢ïIM'é¤û†; +“mѽŽò˨¸Ú„r@< Ëââ¸>A-Wë &ÅjÓ[?;¤„ŒbCÃUýó(Ù†wËÃï\¼'›cF�W¦¿«;3Š)FÙ%TnÌ08°]RˆmD,ÔÃ8¢’‹r'Í.‚è$LŽt{—å2ËžÊÚ€âRÝYè“ò1FªÌPBÈõ&�^ÃÙá¡EÅEwú‚æ£:©ÂÔ(:œþ8HêA´^oßf/£lkèì<|+”-:Äðg—ðû–ÁÐ6ÂÔqümZÞRLÊ‹¹¢u ²ž0aK|Ø"¨D?Ú‡!‚¸¤(ÚŽöºT·I~±Øûãíq_ÆË¿>ÿz6¹P•”ç"À£¦–úýƒ¡T[N·Oÿ»ÿöŠ£ ÆsbåÇ¡‘"“m(8Î*:‡A°`ÙgKÓfD”m“¢Ø,cÃâ™Ö®¸Ñ‘j,Ûm›ìŸÆØ¡?r½é“šBÑaѽIº×ƒÙ«¸¸jQɧOh6Ï%+$,t{gYyÔåb»M¶3ÂÝnÿÂ¥5Aù¯;'èZ'N6Eç¬7¼Ú„ñ2LgŠž3¤|žgÛsR>&^ÛÞŠË'%z÷¢âLÕÆdžh[öoNï~ùò¯«ñL½Î1‰2BN«D¥/éSÇß/»W½ñu’m;ÕYZžóJGw2 8ØvF¯“îSp”‰í.Ý€ÜÔGîä2XI&äÖ¯Y£.ÑmÝ œÛÙS´Åà͘ EuŒ—øÉ©zñ +•;M£ÖÒÎwÝ™ªä†–#7£â<ë^{é‰bMi>ä¥LƒTöwÁ_à¼s5˜½í^\ßýa0¾ƒÞ‹¼1ÒÐGª¬‚\œuwðìäâ·az)ˆÝvÛ„„ããöýmÉn°µ¼½¬suð×´Ù48.Ô;fh.’´>¬.fœWý;XÑF›ì!¯écÓž$9Ìò5EJšF¾5/«‹éæìÞÌúTۦڞȇE<›Î6ë†&a‘úÆ–ÃÕj8IJz£;Ìf«i˜ÆÈ�kZQìÔëJm‡³ŒÊõÖ¼X2LÌANp óHjº•ÅfÓqùzó9€ˆã#üØhú²2´ì%æ¢ÙtÇ£Ó¿ûgÿã`p¾³£Öj¾nMe¥àŸìB£“OCzQÍrðŒ•iö ³ç“$[ÑÒ²G)XyIF–\ÈU¯D9ÄHÓJÃ"÷ˆRi˜ý4?-^Í÷^vŸéžacü‡œ3l�;lY3Ýܵ}Èé#„‡n IÍ2‘¬"Î÷¾©Æï;ÃwY÷•íã…#Mëšö$ŽozƒÏòêEŸâ/ωI³¡ÉB‡ÇIœœæÅí�ßòê:+o¹ç{c䔬öemlù¶¹n¯Êê¦ì\ˆF½¼ºú ævpdú¤r}^ùÑRRàò¬0ZW½k…T?G0LX>È�¯éFÉr®aV ;ÝDwfˆáf; èD7æEy…¼ƒÊbÙXՆݚ«:.hQa/Gó7½ÑSÓ|óÃ?<{ý熳Rõ©á.y¥×f‰·ÕÍ1Kp/BÆÙÞJ@sªíìÔäzÝôÜ]`BˆÜ¢n.Êì¬ÈŽ-kÚ&;õ©¸4›R»©U§7¶¸þšã‹z]ßßÿy +º„Åk¶<ž-½›§+áÓ'Ò“E’:@ÅvËoÔÍ6žÀw<w/‰÷ÁÚ¦FQ6ÔT´®¢ô9.Ål48><|£(½V+rübôä.'–¢Úgå²NÙMŒyîªê_† 1GL,©ã˜fä5š¿¯Ÿ™ÎÒv†5¡Ù¨ÖP-‹ +UÂ&c4-%;™Ë[6ìíÂñ¬”áà0>šÚ“e$µ«é‡TÄ^wz¤<=Á©v·iç‰ìïåÕioxg¸ó6)ÂÂ4‘]’´.RÉ4`|vûä:Ú1‚œ¦=tЂKÒ@”Û™9ΜX–Ƕ3%õÈøb´øwŸ‡Éiѹ0¬9è)tÇÃᡊÞïôïòîS¼zÁKyƒ2 D k¡ë#àÄËU,ßEªRtÜlYô'¦3®7uš‰ýø4« nŠî-ìXû~{FIéâ[ŒI쇇ÅðvuHC c‘Îbýû?ÿ—7wßÀ÷©À.c¸+ÅE3AÈ-«×^´)¿M¹È!Õ\ÆÅ]ÙÕlš¾5>9øB‘ÃC`dŒPu'Ÿ]ü§›F]4”R•K¤3†ÚâªÖpDyœvnƒÍ¦-‰]ô£Š¡0.¹§T®ÊÞõxñ†¢|–IðP$Œó1‚Y +È-Š àé £ž<)*•^ìÝg.¸…Îw-*ppº½ÆC³—ŒX0\L–£t‘¢w/ÍagðšÞ…?âÃéâ]§ÿLR'¼8`ù¾$ÛtÌpä„9aM¼`Enض†8>Ô5¹ÕtGϼhq+â]°¡i ¡]½ãF‹´:Yì½L?ÓÉŵ +é:ÃÉôj½ÿ¦7}©ZSü>Š÷,s�uQ¸cËì¸NIJÆhD)¹Ødd9£)Ì^䇿0ÍëïªæTÒÆ`aÍã$y1qÜ Î3-O o…�p¼y’J,C ÜŸ¾.·ˆÓÙÜ—€Œ¡0‘A€D/<ÁÑTsf4Ÿ|ú)�,;—Ž·Ø¦`gsôqÿø[(g½Á ÎHhØCŠñ!*ºƒËƒ³WŸýÌ2z7Û}•(ÈVÈ'�·f˵¬QZl˜{_yŸ}KÀ¯¤@Ýù–)#òa«©AÝqRG1 96YuiÜ×Ô†pá¸ÅãùPˇº¾Á€w²èÔnY—×ê2‡”ôW½ÉËjüêÕ—ÿì§¿üŸGÓÏwvt ͆a|£iˆ±ùtþz¾~ë’ªýã¯ãäP:m&ióIæÕÉíóßþÿø_ɇÊ@”!V—e÷¹ëo„H’ªÐ×…|=E.ð"× v-RNe »Gs…nƒø*Œ/i6'7]ð™(çÐEa|ÌVØþ®¨T‚LÐÓg^Œãc‚@¦¥a _ðM¢ª™Î’ÎÑáÅY€Z:ÁR×»¶QúnÏqAdäÚÍ`ò¬Ó½’äŽ(&¾7w/¸uÊ&e±÷PÀ ÒÍ&Æñœ5¢ëý09¬F/³Þ ÀfL4BKSÓ*Ƙ蜀s–Çx¹û"ÞëO_”ý[0’RÊŽàÝDãáþpúÖòvu{ìÆû-6yR“D>öý9˺4ePmïëù«ñüuÙ½¼/Ç\ŽfW~¥ZØÀ%}®‡`¸xþËÝÛ¿êuËÓóï;ò(?±¼5ÒY×§°ó¼Â{þ"Œ6Pqˆ¨8I®T}¢c¨ ¾ÙÔA-ʧ˜PTJ’>R #P î4m�¹ž$熹TÈäfãÕk\½.òl¢)cÀ¯fMóÏoÞüýæâçÅöKhKšNŸ<-’Àú |êz‹¼<Ÿ-ÞÂ`‚ýá8 Êί~,Ê3šIx¹ïwî¶W?ÿæÿú÷o¾úæ¯Y1“•.ä|ëïdT÷ÕE·n¸§Û໤EÇ)7€Fráœaßc�ä”ï×í9B…ĤiM!9WÔ8« %6>79+ä†5fø@”SÃ\›ör_5f’Œ�ØäŠvȦY»ÓÕûéÞ;dú}¿2¨8AJ€3¢\ð"�jî‡Ç~°zÀǵۚiôTRñ#9·ázÏFó¯cLƒÜªFx³+«¹n on‡û~|ìø{¼”ÐŒEêF'»Û/'›¦·–õYèRÝêi&¹« v>b¶÷í|ï[Yë7š*E¹ªÖ—Õ‚å|(I9!rl˜˜å¬V©¶Á“,Xäƒl6`dŽ:Á<JW²V¸Át0y“Wϲê"H–p@ŠÙT†Ñª7¼ä„H”Š´¼Ò-@O:TÛo¶t–õL£WX{Âôý`å¸+Nì5)(7¯Õ¶ �k VWE¹ÔiAVí[ÎJÓ÷UY;Q£¡1´ÏóÃ’MaŽ}Eg˜/Ú„é¡é€†²ZÓª7CY»þ¢(ÁËûí6†±ãysEëRm_³Fn´öÂmVœ�_ÐrYy“'d_z½bh——š±0ÌEBÈǃåÓ Üƒß6%Y/¢Yh$¯Ù†ÜÊ-wßKÎðÐò6˜bOî" ©¤Ùði“=~e%ç…@R"é>‰ÈçÅÌB~VÊv±üâéÛÿbuñ[ÈW`DŽªáµCÝî»Ñj¼þ²½òÒCÕš�fÈ&Ä€€ø †Uuæar—u¥˜Öx<ý¼7|åEǼԓõ \p·sêySh<ØÒÉüåpñNÖg¬PJj2»?z–dû~økmN.~|úê/œhÍÉ+Å^[ºnBïtsZô^T£7ArŽlm4𱡾�2ȼFÒö5k ±x3àŒ¦õŠÎÑöôýhùÚpDyÔ¦Ø:ÇÞÎ1ˆâíbóÕòàãrûµ¤ �uN�"ªp\éG+Y-i\C#[>j=…lÓ'5›V›Š<3^¾f¥¢Ñ2[”Ð%x%Ï'ËV5]¸O|$;è•'ëçCÛ]Üû‘‚bNè*ú´ìÝ¢§õ† ÛØ¾è^G¤ìE +}Ûlë©Ó1àhgGbÙ´?º½}ýóxõT±‚ÜçÅB«$;!U}•®wßo˜—¹j,}BøöZƤ?¿Øžüx|óãÕGŠM-—œ˜P +€5¯˜3/:O;7Yuåøk`#máàGat©v¿»>QmÚ½/©“�ñà¬Us¦Èña’l«)vªÓ‹þèeÀŠräx“¼w¦ûKÃ_Ãg'w]_“«rm‹×ãÀ[çÅ5¬„zÑ‘ëoÂh_‘Éã4ãSt�îô¯Ãôàþ‚ûTÑ&A¸…Mà¤JP†Ž·?ßû8]} à ‡-HµEYL–/½ô`´|³wúÝÞéNpˆ¤ÆÔt{7ãÅ[ÝÞˆÊÔrv-½è‹ +)ë#ɘýƒùæëë×v®XžÈ E…ص½±íŠþ±ŸžkYAZ!¹Zmø8²>@¶@OWQv&'@¶³²]Š +Mƒe#I¬ÈW¹@bü½pcÙ+–Ë€N;OX×ë„K$8”Æ`ú|¾|@cXSýNuЩΟìH�YíÒB.©°¨²´Û¼ßÓZÑIœžá}-,ЧéÌ÷à²X³º‚gb¬eúcØ¢ÕòêuU2Ç‹úÐŽŽw~<{ú‡>@�®õ ï×G_æÕH¿ (úŽfç�š‹ ªÚëõÎÆãëñì%ƶE¥4[�»€-¶É±lŒãâ¦;yW熷ÒÐ_±{/ã‹{‹Ñ×M�òVÑw©ß¤H#€’åÎòÞUÖ{Zôïo©é}èQ&³àÆ€#€°ëÍL{ÀI1 ùx|óÓÓ/þ1ÈϽ¦I“¼±e x²Žáƒk’â +PF‡Œ¶KΉftlo*È0-"ë¨0‰+ŽÏ�›¦»g¹ë(=’õ1Ü–žxá>\ƒå@ðóîÙxõêúå._þy5y)ªSVè@»†áþýJÔ®vwqqªXxÞ6Á®"I÷HµòT±w%}b:«4Ç›H\ÒdyðÚ 6,—3lNs¹a¯aN P‹y«¥ÊJZõNŠÎy”\Æ,C—KR7NŽ’ä˜!†º›d§~|¤ÙsAè5š~£éˆBæY3ž‹I¹xºþõxþ2+Ï!ž>HÒílþ2Žö>ù„†óÃrø<Ìn-wÉqi¦ÒL˜®·„”ç(I~Oüà�pGµ]Y® :Z@6•t¤çTKU,xsìLJÝÉ«Éú}^[Ö\'TÒét7Ÿ|D…”¾î®±Ó¢CV,9±c™SYÉ-S[öVÓ÷EqÌpšK›”¥Cõþn=^-5gÑ|~pó§þêKHĨY™å—³ÝAvsý¥š!q€ê÷%æWNx„醖#Ȭ6¤Ùa©[Ój@>|Í 9²{wïÍlïÎO§š=hgg #U+-«Ïp>ͺ¾?ÅkAôYXNÈj¶\u»šÝó‚áÁÅ×q†««òIs*`¸$Hö-*¥à¥ÞKŽÒÎ5‘^"ò"A¯ýpgS?+F¤¿òKÑ{‰I¿/u¸áZ³†¼œJ™õÎ.î~>ºüM^8vj$7Óõ;Í& ÅòlŽÌ÷Þ—=à@ÀB`‹‚ÓuwÍp(%Ë´†Y¾…ý±Ü PÑO·'¿M²s`U´)¨¬‰ã¬v»'J}ÃÜÖÖŽ8.Û©IíZöœb"Ø(YŸ—ŸUó÷Ãù–³®ÕõZMÃÈÃ|öŒ“{8Ò*Î.„1)¨7uY‚U sÆñ…Ÿœ» @fù˜ISþ½Ÿ¶ÛA«é2,ô¹î!¡=^Hë þѶWž¿&—? mÒë^Êy\ÀÈ-¼ÜCëæ^–_óBf˜#‘`M)&«7š¥öãì4ë]©ÖHÔ:äãÞÞt÷ýÑÍïÊñè r‹T’YS: +d•<´ýs/ºq‚#ÆÀÈï×`Çyysr LxQ Ö†À ÃaÉc1”|§ÿùdñ1.Er˜'J©jŒtgÆËE›¶81ÓS'ØÓŒþN]!wѤ†ÔÀ£kr…ËÍ]Ô[Ž$÷‘w4“)ê�§Y‹²ÿV½A¹�á$?Í:O¡7âlDsIICZ–Gd]"X·Ù´ÞòÛL¨1+†mÖË:Gg_\¿üíýýÛ~‹‚MÂ`¯7¸‘” +Ž&ÍÎÊê¶èÞ†é1âçÉšeÓ†Í9¹rã‹ÎðÃtý7Ü’ëV|Ro¨aÊt¢‚â´tCÌúáÖÖœáûÃ[ø»ZÃnÑ)+öj-Se'ǹ;å™—KV6™¢Aeª¾Íßu—𢘂§N®~zñîúãçðbõ¦]oº¢Ôº³F…–»z÷›»wñ;ÃÛk´üfñå`ø*÷Ïþóö§O$E=ÿûãÛßGÉÎŒƒq°Ü ›bRHÕ<ìM¾úò§ÿ>+ŸÙÁ†‘p2°…W`U »Öº½ìH²Ç±¼ƒ§èLF¾w¼»÷¥ïQ|X”‡Oµ¡jN{DCÃÈcÈ6ä©aOHUh¹„¦Ï¿[ìýœwŸBîBÉRáÃÃæ‡aŠƒ”u + +y†7½þ~tÑlA|Fè`ú6ï½”Íq›Û÷÷„Ñni¦.IeV>F¯qæ4Ö›1ÚB +]jú›jüÙéí߬N~ö³soÑptmÜn‡õ:¹z‚!•Aœ_½xÿ_în¿cá’ÜYwt×é¿ô£#ØÃ㷘в )ÄœÁ>Õ0cÚé=íô1#²#Б¬w?ödm¢h#Ý+Dy¼?µ„Èç„?R´'I…mÏ=—ÜxìÎÃì¢7}[öïÀ’ ²$õAùó<Ù + r½Ù0$¹ +CXõC¸¿ù”äÅÄy£aÙÎv{õû¤ºqÜCÃØÅ˜¤Ñr:9•$§&(ÆÒ .‹þÛÅúG7<l3^¦ùÁ͋ߚ.¬„÷iMiR¡@-+`Ò!«Rò¹ª³ ÞoÑ.òQP¦†µ^¬>ž\ýA”{O>%«£ð2º»€,ÙÙÑ`6†ƒÑ»†A£!璘1ª«Ãß$Û&•ÿïÿ‰´—ÿŸÀÿWí±#=v䡵ǎ<´öØ‘‡Ö;òÐÚcGZ{ìÈCkyhí±#=v䡵ǎ<´öØ‘‡Ö;òÐÚcGZ{ìÈCkyhí±#=v䡵ǎ<´öØ‘‡Ö;òÐÚcGZ{ìÈCkyhí±#=v䡵ǎ<´öØ‘‡Ö;òÐÚcGZ{ìÈCkyhí±#=v䡵ǎ<´öØ‘‡Ö;òÐÚcGZ{ìÈCkyhí±#=v䡵ǎ<´öØ‘‡Ö;òÐÚcGZ{ìÈCkyhí±#=v䡵ǎ<´öòûO¤Êÿ‰´?3ŒÝŸ/^ýðê“ëõ'Æt¯xŸO_ýæ‡7ßrø‰ñ"š~ÿÃâÃë>|óñÕ÷¿È=ü*Ó\ŽNß¼úJ¶}¦Œ'ÉGßx÷á#~yöúÕWoÙÇSûøÿ“rÜŠwöý¿yüê¼ä㯿œ½Ákþo¿¶/>~|õõ›ÏåûßÊøµœ¦…óI,OñÿõÏä›7Ÿüˆ9¾ÿïúü°Á7_àW?ËI,ÈOŸÅòçäù§ŸU’'òý—¯ñCÜMÃNùëÏÛÿèçÿïö?<ÿÿùó¯Ïÿø½=þùîÿ<‹„œÅýð-?|õ¦÷ë·÷û÷ci;äLWŸD‹7?}xýæt5“¯?y*÷£yßòÍt~i7Ì:¤”ŸÉiœ [%9Âûÿ·¯!þ¯ûÿVr†3M:÷'Ë÷ÇøÄ0îÏ“Ä@O.³nš|r½÷ŸÉ*)Z"H©fôus¨“ª,}^(úÂp–Š6–$²7¿¢õü`Ïr†=ä’¼JTJIí’*Êbbš=Ç›ÅÙÆ‹I….¯5ç–·e…´Méí¶Ê±.)-åͽøÀ‰Mo£:3AíÐ\%K7˜Šråx›0:N‹+ÍÞ¥î¬emÄÃF’:PÍ™nÍ¢üXÔ¶Ã +¹¨v9!¦™@K×[fÅ…mtgÊ +‰¨vD5Óí.-øªÕ‹Ë³´û¬3~ë¥gx9+åŒ&Ùi5y™ön’ÎeÑᄇŠ5aÄD3ÇŠŽAÈ)ÆoS¶ †’’êFW3ûmÚÆ{IrŸæR†ÏX±II·™¢k¢hQv:wIv)ªcšO[´ßfNHüpÏñv.`Xß´f¶³$eôXRÔˆRÛšv»×¼”‹¤¨Ô¤Myõ†Ž¿r\Æñxš±Ð¬]Y›ÉÚ¤IÊEø¥ V¢XéÆTÕFŸËÊ€áR²#µXðBÉr)Ë'–5w%)¹Ã—-:¬5t<š-»ÝFGRUéh�6¢iWâfS«Õ¥eÑlÈò)Ãf’<”¤ŽFÑ8óH5Fœ5[Ä8ÉfÓâùBQ'’<Ö´¹i/mg¾X</º,çRe9«0;´ý]š hÊá¹TÍ…¨)6¥èP×GQ´ ü•(äq¼¯[cNÊ‚TöÒtVšV…Á”¢m<œ~xlº[Å@tœ¤ ·Z1Œ')¥o‹ÁÓ #å7esÆÊ…¤tïžýa4&*… ®X >$åsEŸsbÉ’Bå1ËG¤"=¡¿¤ö¯1ãÄŠ;mÚo¶œ6ž@j™C^îHÚÀ ¶eïådþæèò[ÉÈ9)²ýU\ÝôÒÞ3ÕY«Ö3ruù»½£¼VQlè†GãÅÇÎðsÕZ)Ö’—*† 1Œ‚X2Œ´Wo4“ÜlÔhbvLNÈe¼1’1àr——zœØ”¡¤÷IOuŒ1Dâix!ÃÅÔVÛ$VIýÌ„aŠòX:âØ†@…N¯¼*‹óFCoÔµvÛi4Z]Á$¢³¢2ÖŒ•(Oyqd™û¶½iS>)‹!–Š:Ä”xø°DG‚\ì4ä'5Á LqÝ=Ç^#YÈÑÚÃÍwjB³¡ˆ|ªªMŸÊR§ÞÐp‚·ÚE;ˆ%†ÍfR–#e¦4g�í MBÓ„2N.Óì&I®sÞ)Ïúù¿9½ùúÓ'”ãoH•ÅÉÝYÄ‘D<©›Ñf<²76ƒá-¼híú» +"\éž}ïÇkŠ”¥(ý²û"íÜ)jWVRвïë#0¼Üc¥žb,üð(ï\Ùî®ÀG¾¿è®ýl£ÚÕšbäMw¥Çû_EéV”„e˜œÙ…jír|%©C^"ñv¿¿¸ÞFø ()Ⱦ¢Î€lŠ2å’f=RóÄì!æµ¥ç‹ÍOëã§›7‚ž«fÏ‹×n²±“}ÅÞ‹›É⋪ÿt¹zÛ\E±ð£mÒ¹°ƒ}Q›Êº0¥.à…ÔPmÛ€‚VÛåÁ}u_Ôj;¢D6Ëo³a‹KXL«4•”…Ÿ\IÆ E[g'8¤˜¸Ùvwê&p†r–‚Å€)Ž'_Y&j·ìfÃh51•ËÄž»kšSDT£a4毅ÐMf#QØînîëæžïŸ¹î!Ã"*†)dTñ¦`&*SÇ;ÌË;Yì4¤fKDRLQ¢Øà´ïëĦ;;"B‹¢,Ody"H€Ð‚esUÛÖ\Óº–ÙG"Ô[^³�¥ER¼Ç+s -å8l½¡¬;†1Åd”7 ££ñümïú„¶üYZ’")£4R·}OH+Œ€¬â€ŽLqÇwÛƒº5døXR*Ô-Y +FÒ€ÈråyË Þðba8Ù*ÆDD^ë“ûÊ·~–ޝÂl?)ö½tOµ&–¿rã-¾*úHRúUuéÅ«&mµhW*ËÞ“•&Bj&p€/¤¿ß¦Cš-5}CmX¤ÆÆVQûªÞ7í‰å-t›l¢•×^z,郤8ó#Ó_øñJ÷§åàùÁÉ/ãÝäÀÄw@ÔzSG¹Þ¶;xƒÙqýeÏe¥Ø![ï³!°«Ùv<_‚€$0U€õX̬<å¹fìÇùK¤'æizf-:h´ÜFË[á �=^LÁb²:D¾3tt¢)cMƒ¯É½ûJAv³åQT€HxR“HMZRrN±I›Â™D -us†Ñ!’"`�F.ä¾j¬0À4Mð‚üA`3à(BJ Q¡¨Õ´vËkµ¬™e;†¹”€·òˆarM¥É~.ëM 'ߢ÷Ñb{d8ÇQvá‡û�·Z]mµL`W.ÖëŠ"WƒÞíí ê¨Í„ÈN°ï‹«O0G¶((#^"U¦!LsÀqŽ(&²6ÔíµžD ¦r$JÈq²xÏ‹Ì5XƒÄ0I‘4Éåùûy÷j§Þ¶�z�[ÓÚElûÑÆ ×âìOü·×Ÿý"h¯dš I¶geuÛ>Óí)éŽÌe¢42¬^ºÁ…íãi¢Ô1õ¾n(.YÓlŽ‘t¼}ÛÛî&ÏÏ/¯~ž.^Ò<©R¦gÝÑg½É›îäs?Ù¦Éáï~øqÛd<Ž”ec¬ gys¯R|‹z_ Gƃ!D�ýÓän!´Iõ°Œ#i;h¶š)8¾ëºkÛÖšÀ—f»†}ìgnp¬[«û¢.l˜·Ý6Hé§–A1žfÑÆ˜A/i:¦i‹Ñn[ "`ZN½aµÚp¡d5 MõÉ Öj¹±l + À f@‹õ–Þ¤NÌ´¶»Õ$ÅÃŽŒ–eDÎ΀ò «Ñ°i:ù.…^´}Ï ¶SSA[x>ϧ5‚–&±Ç|IÁ°tE¥oØ+šªM¡ÁØ%ã…,‹W•Mʪµ¬ZÓFïæÓ·-J‡.…f …PäJ‡–{XT/ŠÎó XYFÑíæÕ¹jN`ÍŠÑóýe·ºîŽ^Ðlâ8ÓC.Õ¡/4såxÇÝáçYÛ, â}Eª”†A|Tô®«7ßÿø_mÎ>ˆZi¸s;ÜÚÁ–á×beŠ1Cè†5÷Â78ÔÍ¥ínÀ•^p°¿÷ÕêàŠ+h®Õ±e/w…×Zî:ËÎÆ£g^¸æeR0YÕÇÐIq] _9á~’Ÿ|üö;ãK<çÀ:Ó]C±Q¡‡�,_à{P†À§¤‚±³.*‘‡²:¡hŸ"ÓmâÑnÏ3Àf§"‡-qÂ+tIõ©¯h3MŸIÒeKüµÖ[mZ”eCà’m-}¢kcËÜe¹ÅU¹´ÑtÚ)×n»ˆ±VËÁÌJr—b°[½.±lÒlºµÓâxr"9qˆ -©‡HS”!ñ_ò�aF¦FîiښDŽ~Ã1qþ-ˆ®ô<p©eõÞ2ëuáDè¸iþŠTˆE€ž¼`©yÃa1¡¢TRmš $å²…¤ŽA»²6ÐMÄaÖj¤x,@Rî’¹°÷«þ›áüK?<Ôõ¾cö6ë×ÓÝ—’ZiæD·&N°›dýá›mÏõ¶;‡ÆËò‹(¹Šâ䬟\(â-6´A|CsÔ¸¢ŽúÃÏçë/WG—Ç_YÉÒp¦³å»¸¼ …Î}E”qœ_äÝçEï…ånpJ¶» ÅE¹Œ�&Ã8;Ë;O端Òî Í÷Eh-¥§Ž�rg^¸uý q”RkÚ3È~Qé&ùÅîæcTœûéQw|#(ÉÁTœ˜<I¯ës¼ˆ£Ñ´tµŸfG0¿ ̤ëëÆ‚¥Ý÷ÈC˜qT7šhæ¾BËbãPk– Ú¹áG†6ë6[¤”P£…)ÓX.‚Ç\C©:ֲ̯LsI1ðÑÁ½# <¨6ÌTLÑ^B30kðÈ͵O +·!‰CœHPþâ½Z�<jÆ“¿€HpÜ5¾B áG¼‘ëí>@â`@ªíq\Þl:õº +#¢®i 9––!¨Ø†»MXÛÁ |±Q' ¥eÌš"JA4Ök*CJÇ JA»¶…AãŸÑ>ý”‚‚U ¹ÙDÓ€Ÿs’þÞRÒz!嵦ãÉó0;Àa]Ú[Ò;šÕõña³²V_@ñvª§¦³k̉ݓñb:6Žœ`Ùf]YCdŽÜ`mºsÓ_ŠÆXÐúqq¾Ü~—gÀÁZÈâv?HÏÝèÄò`·ñ|âD* ¬Zîž_šÞ±d,ex%m +%°½/ÖÚcùÉK13}?8#uYx²F¡¸DR'v¨èã <,:7Œ2|ÙÏ‘Š¾ØàÒ3hÓ$9à†uÚÇ¿7Ý)ñÓ¤'pv�|••±ížšÖ¬·,Z$‹IAWärƒ&RtÂs(d2é,©Ç?‹p"!0îÇ|*Jý6@;!Ht}e.‹¹y>Ú©qˆFÄÏWžª@Ð<WØ0׌÷d‡i’jº@¼X" ]Š0ógÏq7˜p(43Ñù÷… ñ›FCÃiã-H—Ix��Y&ç¸ñ†ƒÀõêlY¤¦hÛƒlCF€vÕùÍùµ¦ö釒„ʃZöG‚“iÓƒzCxòi³Y�k,#8!#¡01cÃéCT;öÒs׎·‹i…}¶½µlÚŒ)*‰¦wlg¼JÊK7ÜÐ|dzkNî4I•§,É.ÒâÜtæmÖ‡]”üȱ vààLwS ßFùµåïñJg'3Ì5©m-óî«ÁâK'9‘RBq%¨Å‡x•ŸÞºñÈÑÇŒ€Xгü<Là;ˆ£=$&X '1SÈV#Ü¥i/ÒêÖKNReÔ ƒ³s¼¥îS|RkønL}+•Ô^&ìe±Â[ÔȰ˜D("Žd±@>bÆ‘Ú@fšõ1¤ˆÌ» %KÄL®á Ôâ"0lèüBTS˲UÁ€’\1Ä3f„yI!YĬ(„–‰¸bX¯ÕÔ,æh~ÏÔè£W«›4aNáÎvv(QHT¥Ë*aQJ@ÆÓµ™“ Sö¯ÕwI]P>ƒ·L!TžìÐõ†ˆÀƒá•DP›<‚!|´Q«�fYî߯~ÈOH…m}‘”Œ©Ž($†Ñ¥h£Þàêu¦QçÚ7ô±ï-E1äh3ô'P˜€\† ˆÞS«6Â@5½ÂdßÉàÀ\SY|svUk̰®Ìd½ÂoÈB *K £ì½²ý TAR1B€§î«ÈÒPJ™äÇarèú‹¼®ÚYéö.<)H«ªÿ²;þLPÀÈÃjô*îÜÞlMêsŽÓâ:ëß�ô Ó¬hâcRù³Mª® “ôH‹.8Þa�BÔ/q\G'êV³Æô†WNºh1F“v[èO¸r¶x7Û|§ºKA*’üHTÁ;P#&/¦´U¤ç¶½h´Tš6%)«7$d:¦@êšJ+€RU^Là"6…´[5›^£‰ùÀ ÑŒK‘Y£ˆz!qX«ëx²a,!à881¡9“¸³CEžYÎÚUå¼È÷X@×ÜÃÚ˜eRšrº†¬*•ÀE�.pËf)c[’•dEãSâÝ›m£EY¤ôz'f¡ Ÿš-ôÂàøð^b);;puïüÀ_óý¿$‹c5¾ÕÒ óðKÄ-¨°…ƒ³Épx5Ÿ"¨è¶¤É¡&g°Ÿ÷Ñ©d©MžÂ‹Á"nï/n‘"À¡ïÍï—VÌv+àØ”'E•Ý‘¥'µ»X¦;úڄ÷$’8ÖÌioøÒ°¾·ºyõOš´NÖ¸øèŽ¢tMkŒÐrýå°w~ùâ+ÜmÞ ZQFQ|¾wøKöVT†9‰ÊSVÎi>siñÑQwô:é^éÁ›w™öŸÔÅ{|&µÁ‘ŒŽ{ è3ØùÑôôs£á@3àGüÕó7°É¤œ»Ô]o?hng§F+Hyµ£[£ÕöËÕñw¦¿ +ÜÅÁñ{ŠwwjL&ÈJEŠmj£(<�a!MdµÄäžžŠ@ +ñňvIÉ9ÞSàvüëBw¯‡;° Á$¡ÌóªÞ²#ììððéà‘{Òé˜ÖF!ú!cŸÙÖîñÄæÀm!‘é[7ËÊM“¶î—Å`4 ðRBRM—¡|U®oÉ#„äÂ0ưu�RR³Dâ²ÑèVÑ*`2¡(ð]ú>é ÎQš’¹b¡¥[Mˆ.òBÐ:åÉÅwmÖn5™O`@€]µ9ù6r©ŠÎY¯š A<M‰xÎ>ÅUÔžãîîtk™Ô™¶FþÅã1jeÙc@:(˜j‡"DÉIb’h¬Òøx²ûJ3�y¬þ!Á“{Á\rd½t÷êÅï(ÞS”ŽeMUµ“Õž(—¢œúg¯>üMí·‰-;¶µ¢ÃÎð©îÌ©{6×½i“uU£WVg¢Úça„å®fÍVËWù§ÿawóï«) ˜Æ†QU[{á…ã¦Ýg¼6…sm(4 -ø¤0t¬©OÃ䀿}Œ°E„Ó€åN½’Þ•ÔÎ|põ§¿ýwœÖj¼$Æi¾ÒbŽê 䎩%{°<ÀAŒy>Ĥ€#£ãI¸ùðý?r2ܺvM*ÁWA(A€š4ÛñêÏëÏÁ)µ×j)ˆK½i{1Gš18@×O6ÐÆÍ†R¯ËPt®µ…{º5hP68¹SWÀ eSë›ÚÀµgQ´'KE–lÖìììp4:Ntr‰<ÍËÝìþ +ƒí¶qoMâAßBâ¹ß›Ü×â†D$‘ƒ�ƒ Ä„¬Õ8ßY?ý¤U¯áà0ƒc€-\,d£¡ÐDJxk|Ïs9°ëþ"‚ËкþN]F%©áÄ…n¥Þ Ü$ÀeŠR*Š™eN:å¥n òIM>fÉ1Os•nŽ iØSAîDÉAR):Ì{_7G²ÖÕŒ~œìiÖ¨AƒÎ|"¹iŸCÑ6¸Ø0GgŸW*E�›^ÑAò¢œ¼ò²SQRlà%fœ¶›´£èC¸QYèö>/£ø2JN!®(ÖÅ|á1nm +n+#R™‰ÚF¬Õ9|•pžéYѽ,:Ûnÿ" +ÇÆT¶„zƒÇ +×Ý×Í¥jÀo¦Ê¼·i“dü¯5B fÙUwú²I.9YH¨FƒŒì–›M…¦Ó™zñF·fdõ‰ó©¶Þj©˜Ì>OV̺“Aä«ê"ŒoEe@,! Å…ép ì)š¬Ý©ÆnÖy7A˜ú¾Â|Ñ4xÆc(Oò<=@0ÐtLxð£ÃÐ!üÍ’ëb–5Çsv ³ëÞ—eImä:‘Žq»ÀIrÕFòØæ˜xòÐð ™@VF@–ÀÃúH=xäzà •!'c}»i»Æl§&ò t)¯MÄIÔ¯%&è˜CO• `àI=šœpfH1¨–p·6Í)Å"¦¶;‘µÃ§œT±B_§iþ¬7~Ÿöî`XTŒ †Ñ AšËY¾kãM%¡° ͆ٷ¬±i/Óò6LÏE®ÀA+A.ÝøiÒ}ëe—Ü"_ò@"ë%ÅÙ,Ä¡6î ߸ᑠi.CjKJØ‚ôG¿x*n©’Jï½6Y ²ˆ§ fEôJ”áȺDW³$1•œáŸ)œ«¨ÁÂ䪢ÔYCj¢G÷Ö~¬[+QÈRŸ”»¯ 4…aTk5ìIs ô$'V2Ñ] +‚h64BCð‰,8”UÄ^Es•¬L }Æñ ûÅRÌ/u%¼;”§Ü÷Ü- ÁÓP. [&Ý%Íx¡ËóÃ@m"` ˜KÄ(CÀOë9K@C…í)˜üÉ'Mˆ¨&Ñ<ÚN ‰F–RÛÄüæ°ñÖ“šmµüV§¦É>&Q-q)Ï’©�Ct¯µÉ¨ˆ®`6k56ÖøÓ'<�œ¦²@¶…yd€¥=ØR@ý¦‹*JŸ"KZ›àL¦©Ó 8Àã}PvN%#ïbW·öƒø¦ÓûÜ aÄ0Y~jÞW-ÆtëúÀqvw_Ó' ‹fË6”a§8§8@´.öããñî—içñC³‰èöšä#Æå?»µ&KR~|7¦%Üq‚…¬Ã‰9),Àé÷ k.ˆ(z†b +Š-ÛLÚ¦Áh]]‡þ#N¢Vj&”ÕŠƒ¿ãâfS§Z®E0¯5% åí&k\×?¢S† §Ç‘«9¤Ü½ Tv�,"ƒ§Vçá¿Hùtô¬¡cI�)”ív°óD@úC~C4Ȫ8(1¬MÝøÁ)Y)2f’œ×›2qy´T—‰ ¸Þ†e<ó µÛ¨‹5x·º¡+K¼ŒIrê—‰ 68>ƒv7±L.‹}|¹.íÓOÛ`·fƒ\|ò„ÿä¶A\' #˜4-| ¾~²£ˆbŸç1z=AÄñiBÓ–³â¹ôWéØnZˆ:+àY$¡S«)mâ4UÀÕö‚ð£t¿|a#‘f-r¡¼ì·É4å¥ZÔq’ L„Yn·Éň1 +zÏØõ¢Cró í*ÚHÑÆœTÀ’Ôš*ð¹“ä' 9šÜX’s8Á ^pe¹2ô©c¯lª^áÅ�³¬;cÅ"—ŠLxcùûY,‚¶€x8l³m‚!hUk)–ëÎß}ÕñQ"æ{À§I“ôÈívNÛäB^$ÊSÓ^ÉäBêHQg¬PbüŸÝýþöù/ðhUõ&œx H…¦ôŠè@–2Žùøz§)Ö[†ªO‚è(-n\ÿ�*K7ººÙ¯7ÕB9Á ¡$.!·âð©¦á¯¹Êφðø|†6…E%ÈYKÿ’ÞÃK®êÌýž‘Ô¡r:9çPu*眫«º«sŽR+g!$’D΃IÆ68ã„168Œ#Îll0glp{澹﮻ÞwzÖ:KKˆ®S{ïïû~a§vŒã`ÍÀ”A«övس[#ãàu˘¢©ˆÃø)9\Ð0rl¨~˜ +ød + sT +èÉ‚<¤è8P-hÄÖÀÀ<�XN¯[A Ï!¤ËÉíÛçÞg'6™�eÀ€ˆò€‡1ôêYZq8EøÓ 08.›Éï-@¤¾´~z½ÀjÀn H8è»ÝH~JoÔ&\>dÿjw Fü#ŠïÛsþ€-ðZ0ËÐw—# bd¾“ß›²€rFG ;ý+å!cö´3ä€>%¸ùÁ"qŒÌÎùýÐ� qÃ_··šSÓ:›Ú?†�PLž¢³'N·åìr«n¨±€OÀPìpK€0Ufùz,µ*Y}]?Så`ÏÃ@9"Ѐ@0Bâ§äD}þð($<DÇÁx<j Vôn±¶‘.,€#øíi }È(¿OùŠM<¡©ÀŽ=%RÍi'6ÃæY&KP)Èá=LïMïëù@ + ¥`ˆ a�©@ +|ü¦ºcO¤Ë#öoS‡¸Hn·¸G4Œó¾k¼û®ñŒâ· +ÄÝ{%·“% j[� W'ÊÙå`!¬{´NŒø÷]ã„,…t;Ä&Éôž$c ,ÒØ¼-˜Sø +H§Pø +{ÕÀ&Aø^Ç}ðr ªH@óz ·×ry¡¥cÄ~àn'xy’ÇÓ¼PeøŠÇg¯hØ“Ì#¡k®ªõº‹ô†®%„qðïÍŽ†ýAÃë•lHô€0#¨eïòÛ¾r<¯×žËUí0»�|…±1*Ú‰ê¾1îæa�!ßà#,ø;¨JI®‘¾¤v¼öô£�² ì§ÛK{ýàtÈ4ª‚?áðÀÇi3<ÀI{:ÈÞÇj¯CÈd°„´Ù›Ÿé/EíùO4fï¸s‰Hñx%o'’ ",Aæ¹ Ž v P`Z")¨MN¬‚IÏÃgAŒBòà q¯W…ô€1$qyà ‰!Ž>/”F’I{;Ã°Š»íU�h<t³·ÖL‚ýÕêôÈ0’V¤“//ïds‚î ïí•"€§FÇ@ù{«K2etʃ?í½èþýÈ8p™K„<Žpð‚ÖuR å  |n{¤ÐHôÀ~÷ýœxùQ»§RXŸD1íškF÷]3î·s °�Œ9¾·žÚ þ˜ø¼¾%`o8)T¤Àø¾<²mö¼´ÖíZ·‚h@¿ßôºùýûÀ£¶D„,r+ œpÒÞ…‚ :þ D“{+ÅöâÉfY¹J‹åqÛŠ‚dUm%‰Æà±Ã䀼Uüð)ÛˆI.Ÿd+ù€s({eŒ?A$y>Ë‹yš-ÑF¤1{&*DTY(Zr0†0¹¸1ú¼R=D1Ipèþ :êdöÛ]œ ìý¬½“OímÊþQúÀ(íØJ)€Ä�½Iƒh‚d +AÌÚ?âï<6NfM‡Ð¨å`( Éìtƒ €Áƒh<“ßÎæw(ºŽ ö"޽Åi/ìmõ¤ööÚEüÁ8%0ì�}PYN=$7B%Æžë0 ñìi‡½Í6öötlÔÞí ]ãø"#–!F{3™¢íÓG07CwØå‡bo5qÚ³ âè(½XlOCjÑP>^{ +40(<éqSãc�kð)88à×ÞPŠ ÇzÍ{ …œ£# 0ä?h?É‚ÿ² ňÚÛ€¼ÆÇ¨½Ã²Ë^‡>"Ðå½Å)´ŠÇ6¡†×†X@QÔ8ìy~â=ïqí{Çn•MaF Ù»×,ø)T!-Gìòáþ'µ¼>‹æ*jxBT›‚RQÂmŒŸ'¹ +ÍWd£§YÓfbÁ¦}öÆ0€`„3\{í5�U„�ÍDŽ0ä'ÍOOC¬!¾4„U!¨/D¹S‚Ê£ö¢yŠåÊÅâV2µÈ %0ò� –ðNÐB ’Á áD +l»Óƒ†Ú‡Ìñ‡¢$[¤…ÅWÁ¬ß[óå÷vºfBX +9”®›E({–¨Ó¹‡{#ãØIšoP\ö€=i Ȧ0B‰æ‹ÐÚ11ݰ÷¯RlXÜ% 9d€°×ÞÞ¤}÷…,H6P;4ÂðL0”„¤—ç @’€0ödµ 6!qKø¡ÁÝíל{èL8e7”ªåpkA,ÅpPN—bÏ1º¸½½8¨&µ`<†&p4yíqÙkè6ïØKKAˆoœø¸m{sF@®à.¸3P ¼�¿G>çp�¼Wô6à'¤%Ff@îzlsfÙ”½·Ù%@ !‚žbi½Ö±’Ç^vB±aįPˆjWÕ»šÑpƒƒö¸ítµ—b½:Ä‘``„ˉü¬buÀ ÉF›äˤ„\ ǧSå-=>K²%{‘7 háÁ�P{f Ñá¤2ÁfDŽ V(©VâííyWV±ô|$1)êm”Ê…IrKYEeq2·÷3V,&²óŸ÷†LèÎTi¡ÍÊ’¯!vx‚áKzt€H OiÑyœ)ùÑN1HT2€°·.öõnÁÃAi(æ@Òz$SÂñ,‚¦€:Ýö”E"`o\AW{A["YàePº½Œ‚Äà…ðà|ÄÞïñÎð™€ö‡Â]�Š“Ek‰`ÆÙ<F¤p:ëC¬qà5È@$&¨mN®±˜#l¯¢Q^KÔD…ÑY”LA;"*"€F¡ÈËu(=hFOÀ½B{<¢ß'`£dOD†€AÃ`Ø„Ð#HW(Rÿ„ÿ+‰u €z‡[¶7ظU`pp+•‘Õªï*Ấ— +ÍUÙèÚû|aŒÌãTÁ3“ÑÕ²®Õ"á Y·½ Œ…÷CwlR€^b¼>^TòJšÍ€„†ã»öÆ9F/ +š¸ÏŒ`v€*z|‚–*’ÙÕ£}V.s2`WRÐJÉâ|²¼Ì«5ÈQÎWÛÛ¬T >äŠPò²Ñ´-Éöz‰Ôt¡¾F0@[RÃ=È«pbÒLÌ\`ê@µ(n„0ˆ² ø šmÙlñj²Å0©F°YœÉP|™•ÛrdZµ¦Ø¬¨÷x¡XmV)—_Ǩœ™Ö,ø÷¨u1*Ä"*¨½7^¶%©x,5..[Éa,5#*-@—W£¸Ne¼öFmok„ö ÄöÞâ/gî…1<AÑͰR•䲬XPÌÉ¥ýˆNñè2<¼Ú‚ЦæÌؤi£LzÌ{À$é,#Txµ Ú䋪Ù-7·ì,£Öø”™˜6ì-ÜÍhvÖˆu »(6Ïô3¥#ÖÛ[ÙÿŸÍö ŒN b)„²@|{'2œÔ�6± ÅìÚYJ¦ð>˜•f¾¼ž¬l !RàÐí%{¿„ Q&Jéêj¿;»y)Y^ÇÙɃʎ»@eI¦¨¨Bi=ž]„Ò|ɽ7!ê8•u„Û;xsft"–™1b’R´ì UŒÈúí-jiIokÑ#¿Tì#9x£’œZe•¦ u4«Ÿ,.åê«¢^´¼ïh±®ëš©IѨ‡“^oÐR‰ò€$“¢ø,'WàSñÔÂÄðÌÄì©XfZ6Û”XXÈz]1›±ì¢‘\ÉV˜ ¸@#ã’V:V£S¤P#øJ<¿&ë-A)Ó$v^‰L ú§tX©õ{Ó§$³ãðʸplVL±Rƒ•êäðÛµ¶ÑÜ>²WÖËj¤IÚ}1CPŒ(•╚' mȵ)�rP‹drûDLÁbþ ü‹‰Ï¦Š«ñÂb,;t*!“Ÿô¦ ·’ùåhz‚%h5—W!&I˜X[Vô ¨Ðhz¶Pß™Y»1]]ƒá 'gÔÈ�B_›:VK–e³Ž6;SÛÝ™#¥ö:¤ + !§Ôi©_¡ †Ï¥ÓC€PH-^®ÁÃ6•”Û³ÕuÝê•êKáDÇÔBxLÒš±ôl²¼š‚ì⋾PD·Òr¸Œ´t «™,,µgÎÌlÝ/®¤ò³K›×*zÇã‹Ú¤dd£ŸH/Ö&Nñ9ÈÕ1h䢕j±ÉHj®Ö?žmA#ñn±L²Ÿ´hì$ÍÖ5k&^Ø,4ŽJz7›‡C‡SiÕÆ²k•öñ¥Ûœ~ßüò¹ÅÍsF¢'õTy1UY6ýTiqböììÖMfj +gR£Ø¤i@šÛ•îÁHrjyçæÚà .æp6šõp¼›ª¬è©ÅH~UŒöÅp'U^ áºÛÇPlÊJNÚG½ã¹Î‘\ûˆ•šïÅ2=Ù,ÅòóZt +J ÓÅ¥Úà0|PP W[ž ‚Q +¢¬Ô£mÄ&3•bó0Éeh>èå®R\TTK±ì|®±™«oÖ:»ÃÓ áx¥ÎÉ À[è¾ÆÒs…ÚN¹}4ž]¤®¢N,‡ãSñ‚íKf[±zÑ̯×1.ÇiMÁh)V?‘_†®õòrAu‚°B02NæðTkx¼2±SlíÔ§NeÊËk¯ƒ‘öääj¾µ9\¿¸´{Ãêá§NšÑ¦¬UÒÅE’ÍÓB™àJ’ÙëLŸ¯öçjëýÙ³Pø¾ F‹9@Q=6™¯mvfN¶fNÔz;OÝÚž:¤„(cìS-C+»PîIW6¢©ÙÚÄÑ!R$Úà„ŒËM1|:_[ŸÙ¾ifóòÎÉ[ïÿÀ´pOÖ§z7¤J›8]"Ùªdö)¾´·-©€T¾€TŽ·¬ôd¢�ø°ić(•Ηžùô7"éi‡›5ÂÞÔ)Âx0ޤ—�x7¶oÀ¹¬Ë+ ¬ÓÅÆn¹u¬5<Sîì>~ëÉëßÇkõDf~°p~fíâôêùÖðèpãòÂî-“Ó§zâ¹|à7Kö +íjïhcplbáìôæ ÁÁ…•“›§nbíÎo_Î5©ña{æôâá;Kƒ³ºÕHºR¸„’§4´ØT´°Í/Û;åÞ!3ÙmL®¥ëKJ¸¥G{´”7bÝHrIús—3åMœqj>–™âPV‡Æs+•öÑjïH8ÞˆÄ[’^3ƒty9YX,6Ö›Û;ǯ,l\´äåR¶¶Öì,œiL.5¦+[’Ö™š:5½|!„™4Ÿ‚”¨t[©òêÔÒÅùÕë/_}´=y$H$ çÍĤ}4½ Å#ézÿ¼(UQÔ"™,ÍgS…=ÞKæÌD?––[[’Þ3ãS¢ZNæ¦ËtqA5*4›6lMžTÃÝd~ZË+ÕTa¾Ð\·²3_ÕãýZo3[™”|®¾bD[é°=<’«Z©A¥³~ûý†W‰je0znëÆÖì™|s3‘›ãåÚJmëà±»³¥y—5³\k¯M-Ÿž^?Û[8?»uE1{FdšËò œZê/ÝØ½˜*o§j;I[TL–ªµÖR�Q|A”¶žÐlrÆ3ó6ºª…Fg#™›{.‡'£…53½©Å²Óž ìñ ¾H:"k53:•,,ç›[•Þñb÷ø¾°5ˆe‡Vº•¯Ïe*‹ñ¬•ê [Ï|ê+ÕÞf7Do¸xópñÊäâåéõ˱Â|£¹úÈCzøc_•ÒŸ?5·}ebñºÚä©©ÕËõëØÔÅw¿÷ÉOY¹®ÃÃJËJÎå[ƒ¥³ÇnkLž™=òÁg>[êl@Ô»;…Æ:¤Üê¡«çnxt÷üñÌÚÔ`g~餇¤Uõ($ÕTº´Ö™=·zìžCÞßœ:½±y~~é(+çÍx/’*áŽé¦ +skGï\?uðB$ևģù¼APk`?CD.ˆg™åöð8A‡!©[-1HÕ Úm÷ÝyßÓ“sÇH>Ûš¾X™8•«m×.•gÕø²¡Ù\,>K0i”ˆÄéâüüæÅ•Ý›zg8P/\±Ó9tÛ=áål2ÛïLëÏÈ‘´-UXJ—A”ÆRSV²ïÉ8p†N%ò+s«×ž»ñ�óÍó›;D¥Èôóõ•bs{rñÜÉëî½í†¬¯ž¸ç¡N.ŸO„Ñi0à—s•ã©ëšSçÃщÍÍSgÏÝ”HÖ ´Ù’#C#¹ÈÌmÞÍ,!xÔŒõ€O¡¿É,¨áN¶´pó]Oì¿>ˆ º:_hÎÔ·µè$A%¹qæÌ÷Üÿt8Òá¥2dT²º‘š\¾ž +AÔ ¨XÕTUõF$%¶ a*vOFsk$™îO5¬J�ãx%•)-Ö:;íÁv³·:5wXÐ +.«¥r}§ÔØÍ–7€Å«Yi,Ÿ¹p÷Ú±1*Zl®ç[Û‰Òrkæl¶µc&§!ÊçÎÞ~Ãíñú¸›—u@¤¡ëAÒ¶§Ã -,žøÒKß™˜9ªhååõ‹G¯}höàÕ¥CWŸ½wfóª¬u®=sÛõ7=B²=Òƒ/-5¶s•õr{»7¶>yL·N¾º²q†³¹ÚJ±³ÍÌdzÕÎîÚÑ»z‹—#‰™Ù…s´˜u€ù²¶®I uð¢6‘+/es½zs‰`b +zr +8QÔ›ñô\gú¤ïÒB¶5sN‰´TD“’*ã~ÓŠrr+•ßð#èÉDj`XÎpw°x*QZ¢@LRùJeíÊOiV%W™^½Ðœ<NÏJzU6j—#…"ô"š¢¤)éÝj›P5щp¼“//‚pšŸ;²¸|”O£·=µ|¶¿p¶?rráh§¿aY‡|ò›ßÿÙÆáë½Aƒ Ó¬P†´ÉTvÓóŠN]½òÞê…Ry +$\mâ”Fmpfbñ¦©Õ« i´×¹B}ÕmŸ)V±TlÊ”W{Ó'ïxøSkGnŒ&»åÆr ¤SBQ4;´Pº)Ö6½e}û²$—êí•\mž2•a…z86ÌU·ó• ·¬p3–èãt†ÎHØîLÔ'X¾hE»®yü4'Æ“ùɉé#ëG®ä[à/œÁåeqÚ$™°i¤òËÙÚN}rwfõâÖ©;#@Xb®Ü\QÂeÉ,m¼o~ë¦R{§X_¯uw�O‚8˜zMµ&6I2ñxnÒ =<Ú_8ÑÝUc ‚6¬D3]š-´7ë“ÇK½Ãrd@ÐÉD²OõÁÈZ=ø,†™¦Ùl—{é~µw(W_g¥l";ÉÀ«eA«z`㾆 áÓ§n³O÷Œá‡r³uJ£€Qi‚IÆSÝjk( T[Y:xkkêÚHruræbmò¸íT›ëo}‚U +ÿs²§r¼ÜŽdÖ«S×DzËn¿L±‰bu<T®ºÚ™=5X¼n}ç¶ÕÍ›KƒéâŠªŽŸº¥Ýßô…ŒMãtŠ{çÍä<�B89d…ÄîáëŠÅ|¢ÒH#É9`®pb¶Ð8OÌ.žÉV!ur> ©iµj}¹Ù]cÅFÄ*émXáä¬lö2¥•Df&•žNÄ{‚˜<RêT¢}AkîM+E<%*í¹Õë5«@ÃÀJ¸ÛœhNkŽv&KZ+_˜9é>– j#×<EQœX>vÇÜÆÅ,E:}ùæfûlCÇ8)3–QÀ[)ZCJ H9¹(…'Òåµbû¬½Q +b>k¸½t $Ûç©å¦l(¶Á‰ išn/‡ªi•t;’ê¥+Ë`‹”H7]XˆÄûªV¨Wç—w®K”f9¥ÄÉeIo‘ž´ÒKÙú#åŽå¥Zï`µ·SíæŒBÇöÒu!µL¦{ä̽Ï<PéSÌ6JÀhDÁ›Û§~üÚø8îórŸjޤúz¢ge‡TéÏž†h²b>™›kNžT,7WõH•â¾ ìrs>¿ìtã.‰öZý#•ΑÆÔ…H~¼p×T£Vªm…cÓSÑÎH9œ‰5ºÍÁÁ�®C¬è¤“a•*¥4íù +£¡™�¢—;së7¥«ÅÊbwr7–™ƒÀEŒêÉ“·$ÓMw@ˆæòÝÎÌÅáâ áø,-Öp&jåÓ'oÍf(fåËK³Ëš½Ýta%]Xg„r299˜:ޱX¼¿ºsÛÄìÅxj^7ºF¸ÇŠèi®¼ *YˆÍ$béa$1Ù<6»v‰—ª^g(™ûßûT8Ü"ašÏKjMR‰ÌRoúìÜÊ%Pìù\ný¯V‚¨‚ 2AFB¡p `bhÇì¹Í¥•éÒ²O±p� û‚QVhˆZ×áâ÷í€×ÖŒÁØ8jïmÊ <EΉEYÈom\J”§„ŠÒFÅ!«µp_3»4s9IŠLÑîųP8s™ +öTšŽ‹r†å¬tv Ǻr¤ceçk»V¼—Lt¼4·zŠc$Mç§ûÓ'¦æÏåm»1%-ŒNÀxæ‹@è¼|qp~ýæþì™í#w¬ïÞ*j¹JqâÈÉ+ùÚ<Ðß^:´'ÖbɹT<{Î0X.‡à†ÏÇòbºÜÙžY¿Ü›>öêàñû‡ÓéÉõk'¦O +j™s0 ðžnéZŸc‹>{AS`¸¸jV@Q©Y”)|;”�¯”Q2 +¹zûH2kã0/Ù*ÂãåQÌ”å²ËŽùm”ˆ +ÕJk; ò›NâT¼Þ>81} +d rÕd~Ѿ>…OQód,3É+EšÏí‰ÿ’•œ¶vÓgy±iµ¢¨e¨w^*V³lD‡WBBašMIZä +$WÒAkp|nõ†éåë‹õ-à—‡C0æ²fb2S\„qÐÔ’aVNþÊP]T*¡™,Ç€2Õ[=Ý}¡Œx}ŠÂÃ:È$«‹¢·‹•„ÌKÿòÃÅ…CN'†¡ª•€7,FKÙÂf¶¸n_á¤b± ÐQ' ¡u'fDh†«ëgòí™�!RB4œlëñ¦h@D²ÐA$¨&â3Ú.Ãé(Œy�Ñp2J1iIòö %î^.5—ôX“Q +Ÿ K5 +y°{fÃ]-T›+åÚ‚®"„áôr�¿`îR…µXj•¢˜Í|}{jñ•Bm^ÖR™è/9{³läFÍUE£¯G&ãã™ Y³¥uQÏ´¢fªÝ͉¹“‹›×M.žmöw"ñv"Ñ<wîæãçnsxX‚Έj[ÖºÑÄ´À—ÄAÉIYÈm1ÜᵞdrÕÝRóÁf<~N7‰ô@ÓÐ_Ð¥Ÿç¸<Çä áy](Ži,ŸÖÃmpj .!CRjz¸+ë5o@Ì”fÓÕ•Hfš‘2`šÔ0ÌZ½½öÐé¢\.šåP¼ÉÌl¥¾K÷ŽÀÐ$Ï—–N‚Ó‘x·ÚݑŠÏùƒŠÏ/b”Â#zl²=<;˜?ß:‘-Ò\Ù²`d =þ�B$†KEÓÃÙÍ:óÑä'áå(få,'g¹ Tf.“]”AA1qQÌŒ;ññ1Äï¡�O“QŸW°7ºYU.ž9ys6ÞpŒ¡×'–¡Ì0i‚Œ»\2sÙy–ÍsbÞ㣃Ôl4š²-gn½Ð™Î·§ZÃÅåC'6Nž\ßÕRNËF“†ÑŒF'6åö1!D¤iSQ³áhÝJ6ÕHQ‹–²•‰K7ß¿xðL¶> å«fb™Fcr9Z`ü|±0ˆÆënÎñ€< |ä|y¥:qÜLÏá\BÖ’ÙÚÀL7Ìt•ÕS!Æ`”X8›ï,-åûs¤#ù¨==Χü!ilÜçpØ©ü\kpDÔ“- JÔHTÉ’Í´/óz&šnLÎÎoçê(cêV'›Ü;§ ŽÆFƒ¿˜ÍÏ&3 r |(äteÅHÁ%|¡¢gÅsuÉLùq!H*œšt¶(&ëvsã£A,(ñt”c8n‚²7 !¸©è535$…<A…wO\ZÝ=ÉÔ~Ü‹HšÕ‹$¦H&56†Œ£.7áa‚Œ¹=öM^Ÿ"H@©‰ì|$6)«¥Ã'/¯<•oLQBÌå§A!hño¸ÌŠÑ|}‘WJ¬T„”Ž&™b{âÌpþ’iuÜ^ +R‹RñÌ@6 +¢V–µªªW´H¥ÜY.÷V¬T#•ë§ó¹Òj<9írÐû®q8`Ø´i|ìÈÏØhÈ瑹Zç+,Wt:Ç8ކ æŒGƃcŒªÙâÁTz…c +>¯¬›5EM—J•ÕC;O]¸|õ¾‡ßÿèÓOòùÏ~ë{ßyã·þöÿ|ûßÞ}ùÇ¿¸ížG;S;Ð6çÞ0šŒ@ëºÍÚ°3±4œ^ÚØ>|îÚË÷?üþ;|äÆûî?}Ó•K·ÞyÛ{ß×Ýù…¯~á+_Ù<tbçйJc”�AE´pŰ꜔0ŒLÞŸ[XÝØ:xú¹›ïºý½½ÿÉO|üÆû¼xë½w>ôÄG?ûé—¾ùõo|ÿG_ýö÷>øñÏ®:YœÔAŽ"´˜UK¥›ªMeË“ÓK«ÛÇç×u§çfV6¶ŽìžºðÄSþÅ+¿üÝïßzñ[ߺñ¶{¦f¶Ò™N ¼J( SD4Ôj+4õxILö‡íÉ•bc&S[3‡NÞpóï½ïáǾðâ‹÷>òøm¼ÿÎGž0ãuR�w~//ñ9Yª¨ZSVJmÅ’õL¡U©wÛ+GO]¸úèž~â©§¾ýýüúõ7¾úíï\¾åÎ…åcµúœ(çCˆ©�AŸ5/ôù$‚ˆ%ÓÃFo3]ì§‹Ý3×ÝôÁO~òñ~äŽ÷>pÿûŸ¼ýž¯Þuß}à«ßýþGž}ö®{ï?}ùVAɃRÀϳlT7ñÄ”ªTÓ™~8\N¥:íÎÒÁ£çgççNŸ»öÚ®Ü|ÛÏéËüó_þí¿üùw_óͧžùD¥256NŒ3Pt±ØL¡°îqKn…†$YÊ1lA#(ª3lŒã¹\çÈ‘s—¯ÜqæÒÕÛï{èñ=}âôõ“ó§ZýC²R°÷²¾' ²V¿5³µ¶{þÔù«7ÞðÁ'ßÿÒ‹/üúµß¼õ‡ß¿ú›_½þúëÿùüþÿúÕùÆÓûÄαk«íECá8¸r5‰å&ÀB>{ñÚëo¾zËã?þ•¯ãkßþîg¾ôÂ3Ï~òßùÎ+¿ýÝ/}íûß}ùÿøÇ‹ßxùƒûÜéënMç¥ÊüÄp«Ô˜1B!_[^\¸þÒÙ‡¸ë£ýàg>ÿ©oÿÛo¼ýö÷_ùÅW_~ù?ÿå»ïþåÿüßÿû—ÿ€–üñû?ûÙ?Õ›ÞŠ&:�˜4¥$¬l³ÖÛØØ„g÷ð‘«·Ýö¡<ýÜŸûøç?ýôg>ýÜ‹/üô•Ÿÿæ·¿þÓ¿ÿá¿ÿ÷¿ñû·ŸùØ'/ßxG±4¥eŽÊÇ¢“ÅÊ:†[8¢Xz€ûÈác·ßqçÃ=þðSzèɧ^üú·~òËW~öê+ùû_þúÿüíï~ÿû?üáů~óð±óÅyQ¬„Í A,ES+ÞêvVWž8yöþ÷Þ÷ØSøè³Ÿyþ¥—~úê¯~ý»7^yýõß¾õæ»}çý¿ÿ Õú“_üæ_üF¡2ëññÀ‰~¿èµwHê4“ÒJ±0±sðØ}=xߣ}üóÏþìµ_½úúo¿ùÃï½ô¯¿ñö›oþá_¾öÊŸßýóÿ÷þ÷ïß~ë3Ï?wé†[²ù.ÇÞ&¼^ +EIHÖ*³³Ó›'_¸ëî~ì±/íÅŸÿúWßûé¾ñ½ïüáÏúûþç›o¿ùÆ›¯ýã¿þñËßþú½<:1¹QªêáŽßoo~v:H‰I|<fUëõ9Ð$ýÁüÑSçî{ßCŸ{îs¯¼öë·þøÇ¯÷Û¿zý·ÿë¿ÿûÝ¿ÿýs/|ñ‘ǽíŽ{-«-5ž2†ÝÙíՃמ<sëM×Ý{×MO>zï·¾þÅÿ·ßCF¿ñæo~õ«ñKŸ¼å–ËùR;šìáx ©–XÃÒ"ÍbõØ¡Ãwßy÷ƒ½÷áGúäÇŸùÉOü£Ÿüø+_éå—¿óî_ÿúó_¿úü_øâ—¿xÓw¯lœêL¬jZ>k”*ƒ|¡•ÉTg×v6¶Žî¬ßsåÒ¿|å‹ßøÆ‹ßýÞ7Þxó·þÛß_ùíë¯üæ×o¿ý»ÿøçßÞþ÷·¿õƒoÞÿÈ=+›‡âé–¢åe5ÉÑz¹µ8¿vîìÅÓ§NŸ:vôîÛ¯¾øâ^{í¯¿õ»¿òÊ·¾÷Í_¿þ‹ýã›o¾õÚïß‚byõK/¾põÖ;Š´( +›dz†¡“kÅÍ\«Ü<¼½þÄûøúW¾üò¾÷Ü—¿ðóW~öÎ_Þýû?ÿñÚ¿xçÏxõµŸ?ÿü'Ÿ{þ3ÇÏ^2£5C�VšQ&ÚñDc8µ¸0»xúä©>õا?ó‰Ï?ÿÙ/~ù¹Ÿÿò§ÿñ_ÿù¯ïüù•ß¼òƒ~ýÝwþøû?¾ýâ×¾òÄãOvzk(ãæu³Ÿ„"†$æµ…Jiâèî‘'>ðø§>ÿ©Ï~éùŸ½ú‹wþöî;ÿÛO_ýÙëo¾öλÿþoúÃ+¿úÉï~÷Ê/_ùáS|ìÊ-·fsmIN‚¤–aH)«/o?øÀƒ_ýÚ×~öÊÏ¿ÿ£ï¾ý¯o¾ó×wÞ|ûßüîõ¿ýý/ðžýø[?ýùË¿|õÇO=õä¹K·l½AÒÊããdЯýŠ~Áê`bþÚßûà_øò¿øDóó?ýÙþù_ÿüßþø3(»_þõ™ç>qã×oo‰Æ:ÕÚVDIujÍj«’+LÏV×—çç&mÏßyû¹‡¾rûmçn¸t²ZÉ„ ™¥9eqTòº)¯›ô{I“ZªšªNÔ{S½Ã·vm¬,.œÛºÿÞ<xÓ-W¯¿õö[Ï_¾n87eµM€ö®„<ä)\d„Ëéc<ZHgºÅì±…›.xྛŸxâÎï~óK¿¸yýÕ7ÿ«g?÷ôuן™žŸ‰X)3\dÀºb +Ž«Š=yôÂÅ‹W[éZ=ןØYš¹îÌÁg?ú¾ï½ü•×ßxíí}ã{?øÊ×^úÌ—¿ð‘O|ø¾Ç¸ñÄîÁnw&«EEB¨ætƒ¯!<:ègt^¯¤G×—¹ã¦¯<ÿìK_û‹/<ý‹ŸþË_þòÇÏîC·^>vòàR¿Ý©T$)ø¼ËDàÁ †ÖyZJDÒíjwkaåêùãO=vï§>ö迼ôìk¯ýäßþôÖ_ÿö§WñõO<óЕ›OµeçqÌ ©¸×’ÆÞ¢ìÇ(TK˜¥”™››šY[^<{öäM7\wûÕî»ãæ>÷Ìw¿óÒ—žÿÔsÏ~èÓ}ôËÏ}üÑ{n9d·3¬Dx‘HÂäøx.7›y +RVæðæ¡»ï¸ëÙäÃO¾ÿî[oyæÉÇ~ü×_þîKï¿÷ÒGºý™Gï½þâ©ÝÍÕÉÎ ŸŸèM¶¢]‡ƒp9…‚’ßCâ!®¬Ùغû–¿ôÂg^|éÏ|øÑ§¿ÿ¹gŸþñôéüž«WvÖ6êÕ†ÀꮂªÏÃúÜ(dp„£ Ñ4™L§×_XÜdEÅ@[òÁpªPTØçcF¸<N©a`!‰Á5Ö~$žUÑ‚Î`! aBò¬Ìqš¨å¨îò~GØçLŸW‹“˜Œ9•TLJTtCÖ—6ŸˆWй™©Á±§V7ÖS©ÄÑã%\LHe¿_òx9¯•åt$Ræù(Iª"oÆÍØÑ¸Î§ÙTº\©g¢‘h&´ZÍB>"¨Dˆ×LaŽKZ‰ †Ïì?àµc¨UÈYJ²]¨VSÙlØL›á•ÕÉV±–‹Ou[édYàu·&ƒ¡¦ÇE¹˜ËrŽãÈÿÜdűiM*Ö +Ã\¼RMï¼zÓÙ£‡Ùä°YoËÅ^½”.c!jtÄ9>p;‰ÑÞÑ¿ËI�v¡!%£º’ÍJä3©¢,XSx=m•#jª”©Nufgº3º(e£éˆgpÙçeǜԘ“öuE©hZ™ã¢("`!¨ÜX<Ö€¢–Å\«½½´~yzö”¦$ð@0ªh¹hÚ”Â$€IBÉj¥Ý?e„û.sÍÿ3B”$b¿Ààº@iq=ž‹eÒÑD>Yù.`”D +†”1Õ¢eV¢VÛï‡JQ£ñ®¬Õ÷_ãTy=h:)ŠùJiúÈ©[¨ê€¶ÌðBQ”Êà+)*i08jÏ•Œxà9ލ,0†,—D.Ͱ û")/íöFÐŒ9Ïd,ìt¡þ�I l(\ 9Ÿ¥Ø§£¬i…PˆFB4C).1Œ)«9”ÐÁû“TJi¿}¸/ZA‚ˆ”ɰ–ÏÏy½l($»Ý„ßOû|E˜à‘¹È²)^Èá¸a¨II¶FÇÜc#$ ±LháŠft†¢s ‰Nêú]ˆ×ô:X k‰Ð„La¿_÷ír³ÿs´Üë‘< +Èná³O*In¯@"^¿ +GÓV©Ø?²{&—*{^‰Ôd:&ÑÝŒñ;Æ1‹9ÆÑ}׌…H<âñpð@ÉÚÃCæÇ&0Ì€Vf-WX4ÍfÔ(3˜ŽxÄÏNOlñŒp¯Âé%Ôy©¡ju‚ŠûCj*zïò[ÍèÑéta+_ÙèL5cS.pœTÎõ1DÝ¿Ïå´o´PM½=œ>Óî§èìÈ s,TÊNxäÀH¢éõò8ÖÔz6·LLûÜìøˆŸD€4%› T$Ɖ$¸fø:32EÇÆã¿Ãp:‚øV:ÅÛ×Ó4J'@ÍRžãófáDœ¶·µ( Æþý®‘/|©ÛÅRxT`³‚‡ô«—jÍíÑ1dl,�Agø¬jLÈZ^‹"šÄEÛENÌŽ#GÈåBDMe—ÉiÅhr\*®G¢Å`H€Ïz<�˜á—”v¾tƒ@8°P�Œt^åñ2.7Y‡`aI)ËRÍe_ŒF”Ḡ‰aa1¿_¦È¤nÑ|rÜ +uMkëF“f2A4J±%Ou8)H?¯—ÞoŸ\ðºˆËxÝED Ü0Ô�ôù”}{×}Z( ì;h:ƒ –Ç RÁ¡aû&=ãp‹0VV¬—ÊMb„ =uŽ#nAŽì÷ŽØgÕI0ï¡ ‘ åpàð¸\äèHÀåf`„í d2l #ñù@P縘i5). ¹íu2cöþv”DÃò:ÏÆc!–ޱBÅ{ýºÏ¾-*¯G¦£BÂ$“RïKd—2CÒY¯OGu9?98£‘û}$d˜¬ÄçM‚¡aPïöyünrqöE%N†¢S(§˜œ¦Od’Ôp9·“ÆPJc|,ˆ%†N rSÛš9ÄŠ}%ªÉJ‚S’ãNÔíáí[@¥ªnESþáLq–R‚Râ„¢éj‘>Í—hÌ»w¾Š=Ü;ã?‚QD‚ (‘¥’j4GÇP; P…`š5A‰EO@†ÿL'j«ë§$½æ€1©8©O¡ñûàÇ£»gçWCj¡�kTše‹S¥º¬v!Û. WC!at4�±À0fS¢ÚŒ¦æusHÉlf:l5¡/6D�°ˆb*AL–ˆÔ+‹—:Æq§ƒ †¢þ å˜V|D×?8¨ßCû}ЍNº}Ed˜ar�þ�´*…c‰`(<æ@Ý^%³F¤Ÿ-ÌñRÁë“íûÍBV yϰ)¨Žq%ðe–Îì¿Æ5²ô‡©ëQ¬‡‚ûîåqÜ„À§ =HPõúDßÞF”`Ȱ¯4Áadb³ó'ÝŒŒ@Ë9¶ÀPi†ÊÐT&4áSÀªHPôù�6íÍØ!,™Êm,oÝSmñ‡LAÊá„}aФìVf3®©rU–ª÷yí=¨n;±½c£!Ç6:b3Q0 ™f ã«‚˜wƒüðÅHöѳýð“8‚„Q$|Í{Æ¡$¦‘„åp +ãNiÌ!ìÁŒ #ww®›ß¼0æ¦\>‘jt.QÚÌշéiA.Mu7Î\¾cãî€àöKA4AlÖ¢Û¯& A}ÏPh,›åØ,I€$02 HB2&+%(!‹³)V.ËfdSŒXÔ¬ÉDvMR�ݼ˜FIû ˜RG/t!L`^в1jdÔ?2ôxyH?ŽË*R‰a€mIà€hàqÀv(ŒYškrCVjŠÖ€nÆb@Pp¹px`I¥i&k…‡v®ÄÌØ8êtâ¥é<Ç•9¾B2:°½§NÞœÉõíÔuâH@M%JU(Ã`@PUôÅÄFÇCãÌí¡!…dÒZ¸NÈ.¬ŸW#Í}üûöùü>'b$™4ÌV"9å÷ÉÎ1”ÆM–OAö‰›f7›¥¼¬”!uÜIz|¼?¨T¾ºÒ<8³v‰!Ç”îÄVµ¹¢§‹§\N6T*Œ96¤èD*»˜È.bdÊ>~4½Yl™˜;+kU�+š-س|Îçã~Þãböú™Àïc úÜŒ}ÀÄ/ãX é~/ÈÆéâ‚Hxuí’®öís€¢ºÚ¥ˆId KÄçà…#Ü7 ZŠ"2 %“±ºüfbLŠòáô,#— 6¥›íëÏ]ycb8UÍV46ͤӪ5uÒ˜<¦¨Õ�FÈd’H‡#ýáüuÕÖN2Ù<yæ*§–)Ÿ,Ìæê…æV¹³[ê—Ã$›LÇ[?ö‘áòq(IQBˆ†`'TâÉEIiùìÛàM� ľ<'KPyŒÌÓLÙÌhß”Çǃ¸½#È>Â,‚LÁÃqY©Ë+²\ˆZõHlÅ-Q®jV_Ô›“ñ#¦?h@kA5íÂ58¡dÅ“¡hFJ(®a¨ÆÐ1È+¯G@1‹¢“ Ÿ:Aó9^.C»Ý4¨w—“d™4Çg «Ûœ9‹ó¹q—}K€$†› Í ýüA ‡µ‰CiûöFFQH`À¤é²$5AŸHJC”kŸÇé$+@Üí‹§b¼X”ôºß'J\üÊÍ(j@c|…t c–IQT´–Ï'|–çÓ4ƒÆ¤r3ÙÚªíF23¼\&éD8Ò&ˆØøîrrHÈ"ɬ(´d©XN—@âÑx¼Ê´4ôklA yUG'3¹E°.°-öi2 …íCan9ˆX’Z¥† i)c˜)·q{I¯O°/Áì…W -_HáÕ2)d‚D$’žQ£ƒxz®;8Õ>Ÿ*/ B&“™Œ¦4•hb„¸=æ¢àÍÆ¦¤Ú÷ä`h„±G/©(år}=ž™*¦Ï^¼›Óм^¨ô¶[Ãí™Åöv¶¶Éˆ%†ONöV_üÒ·N_W�‘ Ü”¤²¬4S™µBù/Öu½i)³9AééÑùTa·Ù¿6šYßÄõH¤‰âQ_vƒ¥â’ZÍÆð#گח¯ÞòÈìʵ¾�xŸ²•ž5“s¢Ù7¢³ÑÄ(“@Hc„ÂÞ-:QûŒC ìsÛW„‚Z&5©(%Èm—‹c¨¸iÔ8±(ª 5Ü©¶¶s•5ŒŒú€Š¤ÛEƒ®Sz²¸”oa”º 5Tsô›ÇCÙk…V>KΦÒó*#öuî| €ÇV¥$ˆU^¬°‚}¡ '×$£Ë« (d÷Þeø•†iF-j5§§¶Bƒ|°’% +YH°q>:”Ä‚(dàÝ.œc¢él?ž0RÁŒMrR•ã‹áH—å²öMVö¹i‹íÝ`zìKäRšRËegBAE /ðøÎÐY’Ê2\`0 h%T®¹Æ1jß´â*+Š%E«Bßpã±.øòÑQ·Û L¡@P|€ùD¼R49WŸ8Ž¢™¡n©ÑžïÇóóJ¸êbØX»ÿ®§¦–O‚>ó‚‚IAY‘®nvÝ^6àeI2áó+I Ôcéa¶¼š.-Ñ\T7Á¶½ÙX-Úg “ùÊjgâðÌÂÙÝ“wòrÁ¥H¤mß›*× U(¤ ³“‰â‚/¤;ÈXb¡=u¾3{6^Xb„2B¦(`Q¹P^RÌ-äX1'È _›z´ <n$Ú‰üD«¿–(IRow7gÖn¨OžáÕ¶¨uàñøÕɉí[îü@¾4tºÐŸ8Q%ˆJ:½Z(Mf–l'æõpdŒ„¨—µR3sKÏ^z¤ÚÙÅ©øÆÆÙ¹ùP㢔-4V+ý#ÕÁ‰é•×?XjʰQY/‘\Tð&É=öÅŠÇËÙÇÃD(Ô í#œŒn²¶Éat#Mݬ‰jpŒò’ZÖ¬v¾¶jƺ a�[Àš¹Ý\ÀÞáÀ!ˆB‡“t»Áë�OMÇ€å#‰a,³ÀˆUš/káÉZ÷D®´íñÊ££†'9¡JÒ9I®â¶TN2¤J a’n—½šiߨs—ãùRÄê½æšq—wŽcŽ1 œ/€Ïq|‰¦’>p´ì±ñ™Çð9Q©fËË™ÒÊÌôÉÛîüP4Ùã¤|±y0‘ƒÀu{ƒƒáé|}ËR‚aÓð&•¥ +ÃåìtrBJçóåy’I@%)oD»Vj˜®¬šñ)]¯NOºz +C”)•íÂ_)·wJXfÅMUJêº=`í’J@‚%³ËˇnéÎAˆ¨×ÃRL<€šnŸèpÓ�2’ÞÉV.oÝK¢‰~¶²@°Q‡Ç)+’è-l]{åÞ'/\y¤¿pZЊ¹d}÷èz¬=îfq&•.ÎgÊK¢ÞË–V'géá’?`ä«»Vbžf‹ŠÚ–´f�Ñp+µ•fwZ$ºj6µpKPËî€DôÁܱB}1H¨V¢ÓŸ?1½q¾3³[íLäÌó‰}òÅK7ß‹Ó&ˆC+±X™8SìWË-@ŒúÝõÝ+ûöƒi Ëf?Û:Ô^ºØ[¾+ˆx8R{úã_<tø’ÓÅ€«Ä‡õþ©Ý3v§ÎÛÇúd!Á²é1át³±œØÕ.¸3° KS†M†Pª¸Ü=Òš9»tø®µã÷÷fÎñBéÀ´?8‰ö=öU«|Œ�ÐDoöb*·°oÿA¯Šxœè1OÀA‹ö-Ü ÞG@ÿŒ$f¡ˆAS)Ù®DB ç#�že@(½œ!•`¢àqâ™™J{`c‚R®tä‡â¹•Îàd45g_‡ëfI\WÔ<‚ÁÈ«>ûOÅåƒÁ˜–S.`ÊBÞŠ5PB aÊÞ6°\©±9¹típý²À§ûýíj{c,P_‰ü|$5ÍÉõR}«58MMJÄr&¿KNÅSÃHj’W›ž¨ÜÔÈr` !f6¿˜.¬¦JÑôÅ$¬ +µ%Ù¬†0SÖê@@ÎÚñ³·^¸á¥kY9Ûm/Ýzçc™‚}³w±¶süüûnè33;w)ÑœIBh8&—/®¸í{ÞH̾'ÐòT‚JšÑIû~�ûFnÃbþ€ŒàQœÉ¨‘N45›«ÑV»·|üÌU#Ò¢Ø8Fj”#Å‚ •J•cîË–¦íé<Òš<4ªEºŸêñ‰(ªç3Sý] E±R‰“‹¬TÑ£Ózb*S]œ\<}ùÎôçOŽŽÓ™Ç‡ªÙ£¹x¨±1 ESʲœß·ßëñKjdÏlj‘¡™9^›am¨ÄˆÈöñ+×Ýþèæ‰[†+—¬ô<@ý˜¼wåŽ*Ë 51,aZ}K²\)[\ou +ŠÅâP‘²`÷t0ŒÔŒ¶’Åtaƒ$rH(¢ëm±FøÆÇȽKPið’ Š|>ûP¸ jÚfw–Cn‰9Ų7Cj)V‹²·¨åd£/h€c5Šˆ lœ¡£B$@(žeè*<žÇˆ,À¬×+Ô++ÙÒоUωƒ•F¥}¨5<Yh.[fñò¥×Îq-U˜_Ú¾:»vs{|¸pqjù:Õê:\´î€ÕÅ€p1†”b+ŠÖ‡|µÊ(€°ý»oba«Ãy‚Ͱb™`r’fŸŽd¥'ø€2²”nMlvgŽ·gŽ•ZËKë¦Oëá¦ï5'·ú‡z3»fj*€'íkŸýrÜêŠËãNzlœ¤ªnMiæè%Qn ü +M'û +J’ËñÌ|áB}âD*?¯ë¥ÃG.¼ïŸ�Þ„1Ä K1úÕöá£gî½î¶§zç u}A1‘''ƒ¨¹÷ˆ(§GÀð‹’ Pû^bÊ4¥*,ïž¹ý®G>uñާ“•u—Oá¥"E C¤€ÅH"+ËMQj‚Á 4EóŒ}3¼ +&bdh§b€�S³‡ûÃt~:šžç”.-VY©T21w§³nlƦ³iß®àAÓ¾ß~G1³TYAõÀ¾ñý×8ü0ö!èAm¡D|dŒó-pUŽq{Ìë‘}>Íç×ÀCáxܾF›Œçj«,Ëç¦H*êò0Ð…dqÓL.©‘ÉTeêØV±ç©ÚW€Þæ¨ôyEŸW +úU°-0쟺R}ïZB1éøìëªB—W€–pRI±eF=žhµº[áHK²Ó‹gg×/6x“Cp+2t½N¿e¨Ó¹ÒÑzçìôÒ͘}ù3DZép´ÒÈëÀž#`Œ¾iM‚úäbo°Ýîl0t„ÄÔbynåàMÇ.>pòâ}WïûH£D–k7œ»óÞ> i”ˆ TŠË_ëM_¾'rûGQÀ*cƦt(d<Õív² ¶Á‹ìßy¤há®aõ4Pwl†¤’²T(V†›©•êv»{&WXž[:»°q‘WÊ>¿6Ëw?üŒŒ1Á%È É'¾âê õ>¬xœÇljR9‘™O—ú³ÇÏ\ßÚî¼VDºçÎß¾/ÒH/•ÏV2ù5AêØ¿ËðL„ðÚèèçp¶¼Ö˜<’)¯€Bà 3™êùü‚ÇÇCjAlºo¸~ssú-”öÀH,~úÚ)Œ� ïÅBhZ5¦ +•ÝbõȨ=Çåõûhš‰Ž¡{¿ÜM‚[ç*flNTÚða*Ød›Gñ8ÍŸm-l^wöÊ£èŸAÑ0ŠÚ»×t««Ç&#™e+·FòyŠŒ—K‹œ�Ö[çÅ¢¬T% *¨àýGF<££‘‘€Ã¾íœÞ»²Lú ŠHxØïc%©¨EZÉüL²8_ííF’Sà…ãÉ•¨SœÁð&ÃY’”å‚a¶c±éÈZ¿ÈÑQœ{},TÏÑŒ}Å‚X<[�g žŠ=R<°œ.¨Y+™Ü¼i„A“F8Z2bÅde²=»;µt¦R_-•7·®+Õçh.KNê;’ÙgrÕmÝšC4ŠÆUõÿ'齟äºî{Á`E;÷Í9çÔ9çîéžééÉ9`f0ƒ0� " ‚ AŠbE‰EQ²dK¶‚ƒ‚õ-i-ËaýìuÚZ¯·jë½ýmÏ…ªºP0Ý÷žóý~Â=ç|¿UAÌqÞ0È=&Ce¿`˜2Ž9@]FŽ !H±ìI/¹T®ï¯œ|h0]+ŸØ{ÆN�|E¢ôäpÃä]oªÚÞgÆF)«T†¹¡¼ÂQK¦3‰P‡Ez4ˆFE äb¨ù»@½ÓóË€ç’äB»·Ï°¹xLØÀ“âÞ¡ Í0^$ÂइMš)Xn_ãt9¹Ê«µ‰þ¾ 9>Õém5§vÁO0&CÍ8¢ËjÃIǽåÐè8É%Û[J×dé öBA¶Û^ŸÛõËÄá1H´fººYëžVÍÞÐ0j›B¡76 +:Ð�71)«%á à%ˆE^.1\ø²lu;]Úê.g+ۆ׃0Å0ëíîj4QÜ‹DM`Z#~³<: Çlj±qü÷}~_ Ä3ìR¨›0kKËgI.ÁIÙÎÜéÃož»ýNwùª–˜¡¹´¥å×O./_R´z’"1ñW3]»cZ4Jéj^•óÀ°àDF3¡°þ$€‰°¿fGŒ�lÄŠw#J-Ah�c:/¤›½Õ¹å½µÝË[gîlÜÚ?ÿÜÜê¥\sgµêüîÎ5^LÅaQTJŠÖa¸†¢MaX:×s Ç5¶1,…!^H,HƒÌ³9Q©°|BÕ +(®”G2Y‚É +Zݰ›ÍÖÚ…K/ÈzU’‹ÀY°|AÑk‰äœ®w¶�İç¶j•å_; lKrƒ+¼P" ײê�uÁoŽ–<_œ›\8âàøä~·»±¹sý÷ÅåPDÇý8É—$0½R_å<�1x Ý$½™,¯µ¯nž|>™êomœûÓþÒMôA…ášÀS”j›×ï¾}ùö'esêø²FËàS@Zú5ÙPÈPµ)Ó¨ZU œ¢>B>Fƒâ˜ßÈC3¬ Q)„£0Ñ¡àïùÛ9�ï'I¦ jÀÕá*ÔV½ÂL²¸Xêì9¹%Éî…<Ñ=¹½÷¼n·ƒ~ n¿ø Çäq<Åu@ˆ€%ýÊä~s4Æ¿÷˜EU1\»Òí¯[^«Ñ^]Þ»^h.š«‰Ò +§MàtÆ1k;›—×6îbOšhDc<E¥±Æp9Y®PtJ–òÅâIZÀkC�=Ø:Ç7i¶zRüÙŸ… rÐÊ“Õp ‚-†O‹Z Ìo³µúþßøúw2»r~`3‘›ïÎÔZ[Ó“ûË‹g£`èeM¯+j]3&Hª +*ÃC~‹¥Ñ„V$ÌûkXÐðPt|Žf›fgrjyýb0ÂUƒøùlɨgKëùÊ–f¶ ÒžœÜ®ÖWâ~•~ €"õ—À€1/äú•Òìè0<6‚¸üŠããt$rJ㸬å´A`ø©Œ¬VÙf·©Ì‹5�Ý“½ÁÌ~0ÈË`è`ÒXD@a…&QÉ<òHC€æq¹¬Ú�ˆR!p½m^½ú€GNhË¥ê¾eõ2™A"5E2y ¡P.Ì‚´Ž=éY¥éåµ–¶ÈZ{t”–0{<Ê=},xÌo¢!„#I€áÂ!ŒX\<~<ü{pc…|ª´LðÚÉ⺛YføR&?g§:¥j^«ÚÛëΜÛ9ýðòwžyðþþùÇœ˜ã…,\§9 ‡‡ãc£H, +•¥™Lį“Ã*‰G +×qB“ŒlgrãüÕ‡ƒÕÓøcqÚ>PW3Ž×•´f$®P\† =Ѥ3\Y”õÖÉvXõn (à€YX€ê5Š.Æâf ¬"Ú“2Aº U£QäKœD{uëÒÖÉÕöêêæùýó·u·Ê )'5e¸µí˽ÁiœôTÖõìÆÆ…|~ +üpÐñ¸é?KD’,“E Ž+c£è¸_(Ï/öîq|’ÀKôÓÙ¹Tf ÉÙ;Ïtz{ã +f£:yØ™½œ.VgyíR½¹` +H2=›LÎJbc(ÌŒŽÂO?Œ†8ñ1yh84:ŠÁŽ :ÐK!ÅD¤ˆdØ÷ª0Œ>ÍPª®›¦¿z®‡&ºZök¸ C�NãQ‘À,÷׸ãh$DЄ`ÇGÇ 'd!-ñ®,¥9.í%{·Ÿ}ûäé{qH'ˆ´(Ö�§çJk@Á’˜Ì1Ö“ÊÏI&ýÇ¡\Eàʶtx: d1áZU pžz:‡}šÊgÌï„…‚T4.Þ‚A€rÀÑÄ!ñÝVŠ “¬X©W¬oviÿðÖÒæ•zssrp°¸u¥¿|”*.qB._hfùÉÎ ŒÀð¿ãˆÄüÊ`†lK¡ÑÚApglâ"ÃerÕå½óÎßz½;}pçΫ÷½ç¤û¦˜<IgE¥á¦êÝ‹“ËwìÌ/dZíÝbsËôºŠÑB:òëëz¸cCÑcÇ£Ãc$Å7xmŠ`JOÊôɛϕVhÖz2“›:sxëO}áÜÕÙúŠ™ðRekïîÚî3ŠUAIÝr''§ªõUÛnå󓲜Ӝ/Ídž …ý£~÷œ¸áWoÀ1Ô‡Žû¨ ³Š\6ÌI†«dÖuëë›çÒÙ šwÝlnëúöÙçz‹«“çd«)ÅÌÌ¥/ãŒ5Äcþæd`óýz¡qªPX˜ÝßÞ¹qüxôø± x@‚¦7�B)€]µêâæ‰ëÀ#¨E³ ““$PÃ4ª'Œó´#ÉùH˜ ‡ý31| +—H‰ ˆÈóIà†@¤•*3+ÛÖŽ’…åFg /ä–7¯1L.‘ýúÿA.`ÄÕÃf@NÂ� AÜÂq™"ú‡�:6‚�ÌsÉcOŽ==öôScCÇC ªG«bž£ìF}1ŒCˆÔ”|V9± ™m; ”öZgpÔìî®¶þô/~¾îðŒŠÞÈ”¼Ì,¸qÙ¥ø\–y&±¾vÅ‘áðøX$ÆÃ! !P•@ÍJrF”s8áñbÙLöš½ÍÉÙ“ÕÚü³÷_¼ýàU;Õ¦…b:¿‘ʬ6:§×öÎ\Ÿž¿`:½t¢wêÌ-ÙLÇ0`-]ËžÒŒIIíÆa+)e<¬ŒûÀ`‘€ÏòRKvb˜µÓÏLMŸPŒ²šÊ×¶›“çæ×nœ{éêƒ÷ýýÖÄúù+Ï9™9ËíhF“årÀUðPS'â°ù#¶"÷c|uCA¿&3Ï�20™’öëgº¿<$M·ÍÉY†O‚±‚±„b´—ׯfOب5f)Îå´m5¢þ$ª±˜ +ñˆAã‰fuu²·;ôä!†©@`d’•k¬\©×ŸÞ›;¥‚ �¢¬V]VJ,›ÔL¿2EzµÒ˜ÇPˆpQ$Á†brpŒ˜æÚÕLÚ?#0îä̉ƒw.>²3KWA°ÔÆÆ¥?ùÞJ¹>¡ Ã2YlÈò„(·bqÈM-Mͺ^;"A8G‰hˆA!‡UCÉÑ´€góãc~•Ý¡!à&x6b! …L@ýÉDïÁ£·#Q–¤]VÊËVÛÉÍe«kùòÜêâÉ·ÞýÒä`}«{Ðb";B‹•�y Á{Fõã¯þlן~zdx(02wâ�³lbª9wtåYÍ®Á@È%^-8©‰LiЙٮL¬ÐB*‘›.·vde»};1ढn6%¹æ:SõÖšbfR…–l´¢qFÚ¡¨œ/Ãd¥ .NeÆÃÒñaˆ.s5«Ç +EQÈïl_›ìokVÍËÎÖº“×vnŸ»ühfý(‘ŸYX:ý…¯ÿ™îõ€:P&*57Õ7ìY™RõIŒ°UÒììJJÅJÑ~_¼(*ÏñÕ19›…AŒÅâ*¸Ai¦ò+í©³ª æ%;˜Þ+WWY>×럘ž;)—«•�H–J¡ �Ô xÛxÜ‚b&˸! £¡jÅ`±�«˜ÝÞâåbkÇp{áÁ¨Õêl¸É&Nº$qÓ¹Ò²ã d ð£"*fÚ‰F؈¿ÐæÀô·C¨Ì““k€+¹ÞÜM÷6¯mÜ;qpÿìƒýÃgýe–¶Ôd蔿·3î÷l"ÉŒ¿[ƒL8öD©¼âXõH •Díh!Dx„ Œa]pÝyPcú ¤Ž#±°}’ÂU’* ¯…Íxe‰r!Y˜Y¹°wxwïðÁÌÖ5œñ!wfé¢h4H)lž 2Wàù,ÐçƒÙÀ9{z< ᘠƒÛäbQøZ±µwö«¦ã˜™(,éîxçÖÜé\g—S«²œ»tto{ïPVp£ä%çæ.¬®]I¦ç$µÖ®Mú3u¦O=õT($c�IPÏKL·:†3 ÁÚÎÞ-'Õ=>i°á׬“õF2;¨Vç·¶Î-¬‡ ]2Àv-¯)›¥Z{íÌÑó—î¾ÍÊ€ô—‹ÍmŠ/!˜ƒS©8âÄ`];W\Η—!DA&ãØ¾gÄd,fŒ²£c4+Ãc±HŒÁ ÛòÉÒz©µWnï×\Èôßxó£ó×Gc²á4ùî$Àm5 HV•Zwò,ÇWÆÆhÿyµÿl‚q,eš½™éûÞà„2P’šÕ‘ŒLdÎÌW·7ž·Å¥Swž}sbj/Óüí‘°ëÞÇ=Šò×ûà¸À6Ò‘¨_"{d” +EõLw®ÚØI¥»ƒ™ÝÍSwÎÞxåì—÷.<k%'cˆÎ‹¹jscbp +€fT€Û%©4Nø@ +ð‘ ²�¦Ê¹yC«{*0:ÇcBÌ_/æc1 Ž+œØ¿©ûXxt”:YѺ–;�óuì ¦¡„Fs Å®U{»;·&æ/‹V_4ë‰ü\eb‡ ’¶=™Ê-'r‹éšæv1ÚùQ£aŠJ¡� Pqh8"Å·¢°ŽªUÕuRpS¥™Ùkåöv¹¹ÑžÚ¯w€™*ýŒúXJpßT’¢“œ‘”|wbåúÍl¯3t<B’®aµ%¥Š`}I‚Ndò3¬”� ˆÉ•µ*ˆ^ +ÅîÎÎÙÉ™M׊õõå{ûç_Þ=ýÜìʹþÂ/ÛO':ïô͇o~Ño.†{ÍîÁÊæýJíL¥vÚtúqX`éT[’`ŽŽùEžÇJ4ît1½y÷ñýGoÓŒQDG©”¤7šÛíî™Z÷<ÁAÔe«K�«q:A19‚JÃ(À^«;8¯˜@˜Ãøñ'*Î�1�HVвò¥i «¢QEÒëåÖöÄôáÖÉ[k—€æT•̽۾ùÝïOL®C"ÇU�Š +BÃ`Z#QI +å—Å'cÅ˵Jgýàùbey{ýÌç?üõ£•Ý[ç_è®\ŸX¼¼ºÿàÄ©Û{§oUZµúÒ÷~ðËWßü<›ºRQÕ@0ŽN;VÇPpÜ<~Ž¡‘aß/{*8|ò$šVÍIYkKKª^夒bMˆF[±'Äl4.KZ1[šèï©VÔÚœZ¾¸´{kiïÞÌÖíBg_óúéäàÒÑ‹ûgŸe¥"'VK͹ê–l.Ò4¹� lT8ò…{² ³F%€ãË”æÓå™Z{qçìÝûG7_\ݽVîœàÔN%PÄŠêÑ(Á¦ ÖÛ½ÓýÙ‹éü+‰."€w +Œ@K¹c:Ëéܺ¬×Á̆£<Åx‘(Ž0,ŸÒ¬V¶8Wi, »É²n¥¹Öéï·'O¤róùêj¡¶¢[T¢uöÜÍÕ‡a&3³ÅÆJ2?;]^nDb*H QÎÞ®T�ƒ%$‹ Ù8ìä³·î¼<˜Ý'.ggæÓ•Éù‹7îò…׿²¼û€ óÍ¥óGwE9b¬PÞ˜š¿9¿ölsÉòú0ª¡ˆvíÊÃzsËßÃ`€›Fñ$pèéÒj}ò°*ÝÎÚìÜÀsŠNóJUÔÅòÒìÊ¥Fï •éØ,šQó»÷â�K±EÕèYv?×C!VÑkÕή¨T€gø'çQÜ0Œj¥¶¨h…éÅs‡×_mör•EI+ƒ+d™¤ã¶Ï]~áÍOueã20V†Ùç¸R<¦@168†øíGGXÛñÔSã#ÃH`œŽe°¾ +®A,So�:&èT}ê`çèñ¹[ïL¯^Ö£ÞÙÞÞ¿wýî[ó‹goÞ}qûR¦>?½v(¦duËMйuí™7æV/ÊFÓNÌTÚÛ…êºæÎadö÷ÝF†a’p Šù;iY‚òx¹$ª•D~6U쟹}ýÙ×’¥~©½ÜÙ}2WÛjöΟ)Ö¶ÂÄCÒêŒXÔí®™˜U¬3¹$¨$™…üu7ŽbR_Œ¡.FüR´l.â·6HšVóŸ¬ÒOžOwg.Ì®^)µvX±"+…É™½\y@±nª¸¸¸}óâ endstream endobj 27 0 obj <</Length 65536>>stream +3oì]x1]Y6¼&É‚à¬iV§ A«0bÙ‡M>Ã^¥4ãym c~U|¿9�L¶“éAµ¾Âþ©’н©5Õ¨TÛ«KÛWsµ5Œt÷ÖϾúÚ§]·BQîÄÔùNÿB¥~Âİýç3$°x·n¼8ÑÝõ›Ìú5T5k2[ÚhõÏU'ö96yÿîK×nÞ†Hk…ÚöüæíkϾwþö»ÉÒ&„Ø$a|ᣯîí]Ç”ßw1ìÙDfå*££+½Érsk<@CŽbþ~Qyéy;9¤Üíû¯>úøg‰‚š²ZwS3¥ÚúÖÉ›7|²?‘ë“WÔvÔoúé�¸Í`€èJÑ¥hÔ:~,Š@r.3ìäø(°<‚&�-F¢:Ç䮣§ÙíZg§5y†ëš^žèŸêÍʸptï¥×ßïN8ÙþÑOÜ{üÑιWV6ï¾òÆ×–·ïèÖD¥°xpöy/ÛE…d�µ&òI#~7"-í6ûS»¢˜Å7%ZhnÕú‹[×gÖ/š‰æúÎÅ©¥ÃB{+ßÚ¶³’Ùb•²ì´ ;;€)›²(¸;»Ÿ©ïaB=¹8SŒV"¿HñyÁ¨ñF›âk‚\gø2Ãùö6—AêѬG²øÕ½çV÷Ÿë/]iLäkë`ꓩΉû^a*Î-Ÿ|¶Ð9©%¦T«ëÆæNj‘(—+ÎÏL«¢N4*2Œg;m^(;ñ׿AÊ–ë[†=Af$Ä{nÇÁßñ8Ûè¬ÝyðæÝçÞX=q5_˜3:ñ¦Jb¸1¿0ǰ©jcZ]N§ûá034®Eý&íbŽb\†2ëÕeçÇÆ í·¯í=œY½..Ql†mO~âÍO.-ŸÇÔñ�ë–ñÛCøO`€œ# «ÞX2ÌÚÓO…¥©¬ª·cB1{þªºÛ|ññëÏ>ÿ†(öÌÌ.ÞìL_(TWºÉiKý#�ÂDwŸ¦££8%¡Á±yšôPÄ>~ІééÞúþq`Q䀢Ќn"¹JL +Œ53·¨yÀYßÍ>E*µÖjgú 7{О:‘)Κv£ÙÞØ<}{}ÿRoöD®¼˜Ì$™�ž×uZýÁIͨû[Y„ÏeYÚ¡åW€eðµÀ§Ãa*¦2t½Åën½½}úÙþÂéµå½ýà'÷_xÝHvì\µ{:SÞ(·öÖvï]¾ýæò‰íɇ¯¾¯'ú1Ôñò‹ÕÞ©fÿÒÉ£7O^~mnë™nwçò“÷¿ô]˜ðBQíI< £³ª3ί6[kwî¾pâÌ3ÝÅÙK½Å³ÙúÒôòáâú¥×^ºóÒ'óÕåæÄÖï¾ðÚçO_~4µx1‘›ãå +/Öd…�6² Íaø£¬$7L»Ã E^iÄ [”ª(¦†£8拺¶jMÈJ ’€ž4½4»xV·k™\»Õž/T–LoŽSbè,p^¿ï" BAt‚LF£òè(°Ò<M¥1ÔtÏ0I†M²\JÑ+ºÙªl<HÆ!‘ö æ]Qõ¼—œèÏYÚ¸fXMŠqÜ?ÓñdÇ ù«ŽË™nÅìXTŒ„€´‘°±0ð}¨Y›Ø^ڼܛ=íeæI6ކZNx]‚pA˜D +Ø=Óh±L:â“Nþþ”Ó†#CÇbCÇ£à[3(Ü_A£éÄñ§ÃÑ0P~{ÄøÉ Ñ¢˜¡hdJº°)I‚](ÍT[«ƒýJgÏIö¥œc¾:'ª./éº]”µR¶´Vlì�¯õ7¸ZšÚPÔÊ“3¶¤0.Qd"ÀÍŽÂÀS”CÑ®¬—“…ùFçÄüò¹ÍÍÓ7ï<¿¼q¦Óß=¸øÒÆþó篽¶wæ~½½j¹5×k7ꋯ<g§€_˜ŸY¹¼±wkjñ¨Ô\õ²“š[-æ'Ÿ}ðÚg_AI×IÎiv?•_=yáÕݯ”ë«ÓÛßþÎ_Üyôª“î•«Ýùý™Õ3·^xóó_ÿ³¯ýÙÏ>ý•o_¾úÂWþà[ŸøäGÉâb²°h¥æ‹õÅõÛŸùÔÆþcNªÉb~0w$QÒcq…dÀ<šÉ…þÂõDvˆº©é5E)Ö„›ÖÜ6“²ÞšèŸ9{ù㢚µÝ’“h ZcbúÜôÒM7³ŽáE’.šÞ@µºÀ»éZÄàÖxÌGTM!ȳ\¾ÚØå„è@̯Ýì̜ҽ®L¢^Fq‰æŒÔ`„gXK3¢R’´’n×¹‹ó¢šß<y½ÚXÚORë(b�ú€!C–¬ƒ�Zª±bÖHÊÍYŸàø¼Ä§$Á·–ºQFäñ1šeS¦Ý¤*À7 #!`1†pH�:SqÌ + «ý‰¡àÛ`€¹3`£P5+æi>m'Ú•ÖF$²‰J6ß•Œ—š°Ó†Ý·Ý©\~!S˜$GU]Ã)Ѭk:];=¯Ú]@CWL¸ƒtz:¤ãQGušDžÔ‚0ľÇ-AÊñr±ÓÛ9yúûõÞš¨¦½Tsqý([ì—«ýlaŠ—r u½aM×›�)\¨Ì×;ëªQf¥N¹$ëéfÑuªÅòL"3ᬃx›Y0·t¾;µMVÁ£GÖw-»<·ppíþ+÷^~ë…7>óàµOÝûø‡×ï/¯ï=xøâÅëæÏ]¹õúÜÆ…Í»›{÷V/ÓJ³É”×zéõ·.ŽŒ Í 9Åìäêû3G¼”U¤ô'^϶ë@ Á„ëãÜÙÛ:õðÔå7æ¶îHröâ…[¯¿õAw°Gr9Ùœ Ä#µ§f/½úVkpˆ“ö;/u&·BÑo‰QQ<Eså‰I C.fsf°·²u½;}¦ÞÛ–ÌF&¥¢9Zﯖã°�î‹S¢œ§9šË˜^gfõòso|¹¿pVÓªvb +ñ‰°þ’nÔÞ,C³³-JEEÉfrSŠ9Ñœ:o&çhX'�¿uYi:‹ÅtšN»Én:?Ô*N&ü6yã�‘`0Ñ™�ë ó7³ùÛýw@Ì !æúý§Fð8j^ÏÍÎY©¾áL¨f'3L5Ãpn8Ê´)Èùt~1_ÝÎV€¬+j6“mn‚%ÇëÕ»§Ë“î©'E)ýú{¡�áèx”ŽÄˆ/ÌP€ ³<“kOlQœ'+9DòĦ‘ì‰zÉt;u Y…D,æoâÄZ®¸‘«œ0œ>Ž»ª[n‡“ŠcAFlŽË‚lJdúŠVÅ 7‚A’e\ +"Q' M†äæ½r17!Ë)K϶[sS³kí©¹|iÒpkV¦“Î5ºKó§ËÍÕÙÙëϽ±pâIÃ(sŒ‹c +³ùDíäþõJkèg̤ۚæ]oJÕÛ ŸÔeýààI¹œÐpÓKõÎþæ©çöÎ?XÞ¹™ÈΨbòŇ/ÿäW³wx›‘*¹ú‰rïÜìΣ;/}aÿð~£³äº…w>õ¹ƒswc +ÌîÎæ'{³—Žn¾›//e—_þÔÞ F$`Oâˆ)ÊõÝ{WŸ}ïòÃ÷…åvkåõ÷þ°ÑÙˆÇQ£ÞìžÙ=ÿâíGŸ›]¾ŒÕ[Ÿ(W—‡üî<H0ÈcX +DE±´¼´~U‘ +·n>øÊý™$±i&Á§Ûé•ý£×.ÞûL}â†ØÏ>xëþ‹o§²“ãAztœ�ÿÆã*§±=â÷Z¥O]¿ýÌ#� ÇŽ=|êc¡cÇ8”°½eµWÎLNŸ�¶T5î•p2‰™pÌ]˜,Š4m»‚¢ +¾fS†7™«¬÷ë'Ÿq²Ó¡‹ó^zà÷<…4 AÎßɸšœA!.ÆxFEðH„ÆéÁ怡èAgbh áÚ³gv/<\Ý¿Û[¾–*m…£†H†QCPÿÑß§/@1Uàùò2+AF¤SSà’ D£‹À-úåûPK“J?‰”/-¹«É%ŽNÁq•Â�>ÙlåíHc�ŽîTû§NœzfiãÈñ:™Ì„—ê‘”# +IMËól‚Ä4ž2Yü 76N�oÅ19ò$¡c¨‹JŠái—!m`ÉA‚|f’²Y>ÁqIU+fÍ^g¹Ù^Œ�.~záB£·“ÎuU=§(IËHºFRS²þÚ}€¸¬.˜K„‰Àç=%ÓS’1‰j©Üb¶¼j9Ý™…³+;WkÝ-в«ùö©Ó׊¥YŠHfrs©ÜŒåu½hXeàÊ“••I%Æž4§�ZÑqg’é%Moñ\Ò½Fßlù§«›©òfspÔìæÊ‰Ü,Ë¥iLÜÚ<Ü>yMVŠ@ +šÖEõ•Tår8H‡¤£•_zôöÇ_{x¿¿j@C%Ts•lqÅÖó|ôåǯ¾2CÇ¡pH¥F¡~Ðß¼J±0#r`[$aÐ�”h¿Þ`!ŒžX]>Uo,Æ!M bY>…¹hChWx`"x!U™Ø7³ª9ÅŠežµç§·ön¦òÓªYKdY^Á©B<.±¤¡ˆ©x”…¢<‰;4‘Øœãô€/C±$C¦u©¤‰ù‰ÆÒÒÊ„™€Vp†âjÀ~˜–X»Xœ‡¸ñQÜoÁ<Nc¨ Æ„çÓŸ�‘H¶e5‹²›lW[[©Ü’éLMLžN¦g0ÌèvÖêõÅx̯L‚ Àª'#QÃJ²Ô— £–š²ÍZø¦˜òû@²ü“ø°†åg(ÍälwÒuÚíÅbÁ,›Ä1#¡YÊß‘HZÓã6 AFЄ þéì0°<esLZ*•ŽÅ¸|i.öXT[Õ‹‚˜Ö”¼k1вÌå:(ÒŠ" „·¦ÎƒÛ ‡ÙhD ¨é8f¸ F ƒ$UpƆÕzï„jÔ&Űi³^ùŒ¡åi\†É±ä&EXÃCñÑa8ÄY‚—X-íÔªÅy§ÃÃðØ(… )Š+“tš †Q9`Zê=Ï#þ¹0o¦7s~aëÖÌê%`1HN¤…c‰I>;`*¸/IÉy‰–›hƒÈ×天¥YÚÁRÀ“fÒ$ #$HTÆ!ŽDUPhœ9…eŒD¶Í«Œ°QTµ”ôîÆé£‹wˆ´T:;ßž8LfVHÒÁ`ŠPщÆ%ÓQXÂ`™&m†ÉÈJK`ó8¬ÙJîüÞ¥?‰FqÜ@�p!ƒ— “¡q<„e¸!FŒ'EDR.íz-†u(R+Wç‹Õ¥TnÎM ,gJ�ˆ®ÝpÝøÏ`’©éln“¤ZZŒE•à`šäÈbâ¸_F&˜$s]Ɖ™(j'Ó}^È¡‚bàqÿ‡¸„1�F¿�ÈGYxçq̯Š0F‸,…[$®Ça[+çRS8j`‚ÁM%`À_*÷©F8L°´%I)ŽuÖ£ SPçi#ŸÆÃ14†P8à—aàãÂ!ftŽ@úÆ0Öbaó…ix 3yrzGWópŒc™{$aƒŒ�ó…ÆG¢‘�Ncú¸_¡öD-Ï.;&ÈîXÇG ùZúÉ1X2"eÑ–‹$ä`�n‘çóšÞpœV2ÓÓôZ8DÅc€O‘¡ããp'p0A¢ÀYõêt.×5Í2kPœ +…àX„¥É<‰Û$®æÓÝæÔÎh�`‹Çb4Ɖ´â˜¿Q¢ ª©˜õ‰nc®T˜ÀQ1›jÙV0FXããd<ÊÁqQæE-¸ +'¡àƒÂ2À´P€ÁaÃ5ŠÍêtµÚgiÕ6³,ã� +þGd4.?…Äý[‡"Œx¼PÕõ Û™4:†�|˜‘$PqŠZO&§*•%ÇõŸF#,Ë:<ï‚P÷×Åü”$¼?*ÅcTp< Â*b¸T>2ÆÕ´º$ú@Aò“Õ˜ÃñM/±êrĄ́¿Ðp•B1Ø–MzAà“OJ+D"tynçÌ™[4i…ƒx<L£QAá“à¦0XŠEèñ‘8É<ÐFŽELàH‰&dÁ¢Á0 cà[‰¢ã¹Œ¿N¢ æèøÓðàã Ž…ÇŽÇBã$ +)<åhRè–|ªtx晀ìâa +“˜Èâ¿àêÙí„;…A8"&F±cO…‚ã`^Tð‰CÇ©‹|2f¢!0D°oQ˜„‰IQ¨ GyžN(Rcd4~üxðرqpˡߚ§{çÎ]rÜr(LÇc"N˜›á„2E§ÃAÔ’Ý£S×ßýâwbˆòÔÇF†‡ÂHŒUxÏÐRž›SóÂáå½0*ŽÁOåýuyš2ÞP%3å…9' E†vÆC üœDi–t)!< +‘hŒb5áÖ9ÖB 0…c=Ä$…¨XŒ ŠyMž€b:`¢Ñ1xèx�EQLsœ‡ú¦Õ@Q‹ÄtMJ1„†@Œ®çóÕeŸ(A1æ“ßf,£ +##1ড¨Ì’ ’Ã!CùL2—u2#ÇÂh8„a˜âxRmDT,ʃ+j¶×’©I¿+ô( …EÒgÀ¤*U(Ü”M´ +é6'¤K¬Nc2+,.Á1<†Àû_8:¢pa|8…‡…FGc!Æ/óÈÚO‚e²( GààXx|$E`OÕj¯QHYªQ÷d5*:æO1ŠC +F‡¢ÇŸ?þÔx4ÈJ|Aä2H”(#iåÓNÑÐ +‘ ÆE\#°ŒG¡xˆ™$ÈáqDx(�"Ÿ£0—@±°829RÅÈÑá(ˆC@»,eÛjÅÌXÆàÈ,zl8Çá(�O!D†J©jÚîõZœ ¢À Yéj¹•Ld9^A`„D˜ÆÊD*ÓŠŒÄá(gJÉ„–TÖ–¸v!µ¶¶”Ì¢q"Âap¨.‰zʳY¯˜q¶—ûŸ»711?>‹Ž†yJR<ÒUC”pqU©´DT�‰†E +É%äzÁ¾práðìúÂV¿Úo&: +0OL1®D—tÇT MvL§m].²”dOx(©œ¯6ÚSºž*äÚg˜@¢"¥G‡ãÇŽ…ügY¤_.],„õÛ®M.Ì/²ŠÅÉp#0 ¨Ï- b‚fìjuÚ4º^ÅT$L!qÄCJ*¯Œ…#" lË ¬«rŠÆÐÅ„áé¦*H¶¢ˆ$.‚ cÐ~;½ºÔ•x€Š4 h”%a™Bu@d <�†0@aB<‰ Ñ0‰X¢4‘s–ê‰ýÙÒÓݫӯ½|ý`g>c™¥ °�¸Ç-`Oltøx$ +\v”Ž#Tœ 6¡hެš¢B€ä¢*/Š,Ã�|dxž”Ö³µ"çF‡ÃÇŸ:áÈq¸ÎQúø1øØ±Øð§@ðÇC(òɅrÌXR‹ÍO³DBâ’‘6<0h˜„Ã"K¨h+ÇÏwÜÕùJ«á•òêdݹ¸Ù¼wiyokb¢jwÊ^ÚMªKàâð±±ÐX¡'$J'#y ݘLµjŽmr–!:¶¥lÆ›%ug½rçÄ+Ï<¸¾ôüõz%3>ã0¬ C‘ö,!¢ƒŠ±ÑOMW•‚…öKòÉÙÌ+w7_¹·õÏ\üõßüÙ/>üüçïœX)f=V•x†Ibhƒ™±Š «[µf;©A3“Tù‚çÈœ@H4îHR§šï÷ë[ëK¯¼öZsbÅðh02ðŠÓô †ÉùæŽ q–³íV±PκÇã(Ce^™¨®NMöÛÙÚZÌç38FC%Ë žO�åÆ\B�pàUpµlaÉ˾¿T¼°;˜k¥'²ÊÞ óÂÍõO<·û¹×Ï¿ñüþ½«'–õœkSŠF (L1˜¥ˆyž”yŒÔY¢žä§+z¿b,MØç—Üçö‹Ÿ¼»ðÅ7öþ൓ûó/ÿú§_zçù½³ÛƒÉFÉd¦°8 ÅXŽñDÚ¡â(0ÕeCªÍÏÕ¬õ©ÌâDnoiâî•í«‡ón¬½õ™O<¸zõô©Éj-Ÿp ‰Åãq ¾ ÃA8ÇH€¨ÃÇ‚Ñ(ÆÐpÜ`¨¢NÖrIU´8ª™KÖóÙŒ™ÈZY +ᆎAÂBaˆ-ˆ»T¨íÀggô·O7\ì}øæá×Þ¿ö¹W7?x8ùÛïÜþ§_½÷ç_}î½î¯N `¢Á(ç¡PADfÓØ\6ºVE.-×ONä/nçŸ9Ýzp¡ýÚíÁ›÷ûŸ4÷7ñÊ?üêÓßüìÙ{û™²…ÇCápæ(•§dÆT,6i#gºìÅYññÙ܇/-êÙþ;w;Ÿ<û³oÝú§_úg߸ú‹?ºøßòòÿø¯ŸþÅ×î½uùÊ^£”ò(d+ïÉfÑQ:YaŸ™± +ØR•œÌRk]g³ŸÜî{×÷jï?ÞùÝoþè¿üêG<ûøÞöéÓºDE‚!(B ˆ<::6‚IÎIHIC“|()Dúy©e¯ö¬Ó³Ö;O¼óøÌ+÷vþàÝK?úÞ{¯¿|½Uq–æú‹Kûë»÷t³BD˦E¬ëg§µGç›Ï.NK¯\ªýì;~ú½W>ûüò~óý—þý¾ô¯¿ûܾxø/¿xé/¿vùüŠç²ñk2¨L#„„FÒ|t©HÞßI}û³g~ú݇ôÙŸ~®÷ÕOÌ}ÿ‹‡¿ûËÇù•‹?üpÿ_~õòß}ÿúçž«>w¦p°/zz) ¸2më9…á32™@7*Üä[Ï̼|¾òøBá?¸ð«¾ñ¯ÿøÍßþì½_|ûÎþÝ;ÿßÿû7ûËÕ¿ñÎîÏ¿÷ü{Näm5@É+ЋQ€ò¡ IElr|±H_]M_YÏŸž1/.;/]îþÉÜÿðÕý߸òÖ‹×^…y€À*AUuv.Cì5黫Úw:ß~÷Ì·Þ=ýã/ßúǽñ?þã/~ûÓOþð‹‡ó§÷ÿõ7Ÿùê§.žœËçƒdeÏHÊe3hÇ"V‹è…>}kI{õtꛯ¯ýø«·¾û¹s_{kë_8üǼøŸýþ¿ýú_}÷Öo¾sõW|ãµóuÏ'A Bba˜ˆãIÙ¨êJ†yeW÷rê³7‹ßz}á×_?ÿþîÍ¿ÿéËþ…Ó¿úæÅúɃ¿ÿþ~°óã·ñõ3úÙÝ›»ùv>G0,ΰ0¹1UÙî%6šÊÍ5óKú?ü©o¼¾øµ7V~û£W~ñgÿä3ßûÔöýýÿó¿¾ÿOõÆo¿}ãÿøÛ·¾óááÞ4ˆ…ðøèX<‚lw8~¾ NÚñžº:Í<ÜužÝu>~©ôáãùï~v÷ëoüøk×þã¾ô›?éw?|ùßÿîùõÛ‡«Õ…A¿Xêᘖw Wé§è½qešùü½öÏÿðè×ß¼öí÷¶¿ùÉÿáÕûÍ»?ÿæï¼·ýß¾rþÿåk¿úꥯ?¬~þVîpJ¨¢0Bp4:üô¥¹è\ +:ßão®Ù/”ßnî'tçŸÿêõÿíÇþöûÿö‡/üô+G?ýèàÏ?9÷™›Å+óêTŠÊ(„_N”79ÊJZ¥~£½1™™Ë³KYìò€ùìýΟ¼·ûýÿüû?ûÖåßýø…¿ûÉãŸÿÑÕŸ´ówß»ò/¿xþ·ß»öOL~êrò¥ÃJ+c qN +<ë¢ÖÉ[-šJçÚý-í¥}ëíËy0ýgw~ñË?ýêÑÿõÏ_þ¿ÿí¿ùöö·>}þñí-` ˜OÉJF¤ò"<éák%òâ´òÊÙÊ×_Ûüî§ÏüèóçÿãWŸúŸÿù£¿ÿá£~pꃇ«'‹ŠÂ$SÍÚjÖS’ +)èrQ<šËÞÛ-¾x*õ½Onþ¯ß¾ÿ»¾ûÅ—×?z8ù·W~ü¥ó_}ëăsµ³KåN±bœ’r4a/ÆSzÁÎÖ]¯(“Ó êì´s~Ö¹¾ì|úFóûŸ;ýËoÝÿîgÏ}óí/¼°þÆ¥îkgjw·2[=m™…ã¬Ì=³¡ÐRÅÑK:SÕÈå²ôàdùk¯.ÿàƒ“õ«¿þî½ßýÅ‹ÿü‹w~ò‡—úŃùÉÿþóW~ù¥o>.¾t&³T‘84`Ž^)${¦à8,Ù¶¨®Ž,{Ñgæ…OåߺZýòãåÿøí»ÿò›·~ûýgÿû/>þïûÙýæWߨxÿ…ŵ©”£™<ã€Ûi:– ddz»ã RØR:ÓažÛN¿q¥÷Ò¹ÖýùÏÝžüå7nüø+7¿ñÚæŸŸyûÊäåùÔrp*&S"ƒë@ÉŒCÊÊh,IG§\òDÇ93[8˜Ê\[-¾x¶öÖµ©wžYxë™…s“æùž~8i/WÜ”(k4/QÐüŠ’¸´!çM)QOgª¶ZÑùºw~&w4í¼u¥õõ×ÿêëgÿùg/ýå¾ühöËz¯î9WôÇ;ùªì1ÁU)k[=šô€ ¤`Z€ã jÄVU8×cžß¶^=“ùèÁäï~ðüÿó_ù§_~ü×ßyð•WÏ^^®Î”º¨ÃˆŽ#<‹³þ¾.²¨ó-‡›ÉJ ãh1{u-ÿüAõ^ZÿÃ7O½soîÎ^m®fŠ, +EÂá@Š‹™d¯Y_O{=3 Šî$s+ýëƒ,yqFù|çK¯_¹sjêÚzéöNeàõzÖàÁá(Ç/Wˆ8F8èl²™Ð\Æ.›jÅ–®°ÞrJ76ÛWÖª§góóåÔ\.¦1«‹E 0‹±‘ˆÀRÓà0„†£;;Ïž˜,Í'în&>|~ðÝÏœüÊËËßÿðÒ÷?wôí7·¾õñÕ¯<¿ðþõÖÕE3)ÂÀ´Ëœî—>&4áÄ€!‚˜š›ê¥½ë»È©®ziÖzfÅùÖ[ÿö×ïÿóo>õß¾vóÛïíÆÜõÊj×ÞXS²Ž3ÁÐËØ8"¨œÙÍ×ó +W1è–+TT¦iгygÖ3Ü¥ùô½½©sÅI‡«ërVRZ`P.æcÌÈP€„.¦DŒâ!HA±œ®W“^#™lyNQår"SR…†#%hÁ´ ·‹]™ó€+Á’Gå|®GV<Ä6…ÇiQ«‰ÒêôÆrgж•µ’þÌZi·._Y,œd·+ꉪ¶RЗòVC Æ Òx¶Œ!ÀÆÓŽDȨ?°El;rYFg3ÜFY¼:ï¼}cúS·éíW³'¡Œ’¹…Îà"G'u9ÍS*G€ÑMI×8Ù’´v±XKYeW*»bRemE0ceœ”UÇD“•Ãy¡C²Äº–ìä…r¦Ê@PJ`[I§–˜f«´¨Ð0HŒN +Šq¡ PžJçV²Å™šç“ÅKNR iÆäíéÆÂ|wy²6Hé®ÎЦ˜p|C ÃÁS,ß庡Ö8Ê GÃÀ×›’çªIOµ‹¶ÑÎY+äÑJqoÒ9¿¿¸ÒÞlegrF?ãÔ"ÃÃXÔ?Û>À‡†£ÀoÒL!—]¬—WÊ™®Ê°žH4l®¬%=Ù;rmïãwÎ^Úš_mT³ª,S$…Qïa˜ƒbv8*Îd³wØh)¤fTÖZY¹vñ‹‰`¾BM¨ÙR¢ZÏ6òv^¥54Dc15lé‚ +‚ÝhÔŒF4ue!‡P2¸žŽcþã¯(ÇEÑYÒå(BÅX0ŽÇ8ÂÃ1AðW¬,–J©þa–©XL¶7f)ÔäHÛ6jšÒ‰Ã ¼Æ(…Ž'åDΩ:¢ÃÁ,‹*®…ýJã1u* +0Oý/cÇž~“BUGq=-Å , “:-%$Í?‹K 6ƒÛ,ë ¦+d¢ãDÈ/Ó-·¼ä´eOuû'ÝT'$šq ³Y¬ldŠKk“„lȉ©ÞB0‚ŒÆƒa^PZ¦7cØÓ‚_Y++‹ùþà¤b5‚1 §üC•ŽCZ,aDCøÈp$â)<!‰5†)�˜BP‚IÈY +‹¡ˆßêˆ “†YwÜ–¡—SÉ–èoùðÚpÜ¿¤ª¬ÔT½f¹¦Ó”¥”¢–02GLµ ØÂÉ$Ž{±˜Œc:Ë:šV匦US©)/ѶŒ2‹‹+›`b¥L E5Uµëd6p& +3##ðÐpNT£ëHÑÁ MG%H˜%!Òàrà’‰b*Aºü“Zy(æ<;23¥R(oðR-wâqA /ÑO¦g‚ãL,†×“•’f¶,é0lIb]«‘°çhºTªž0¾¢u02=�‘ë\R“RÀ£qbÅÍ.¤+«U¿#íì“nã +C»î®àW/7m§ŸÊ,犛‰ÜZ ¢RãD<n†ìÓObŠ6‘®œÈU¶Lg�¢wø8EåpP|úéØè(NÒYÝšNf6M{ƒìPDó—¥xÆÁ<â?%ŒCÑCâ–¡TT!ƒ¢A”Bd +ÓH0Ý1Ù?²Sa<Gܧ?°Ó‹”¤ôöæÅîÌΦX¹D²YI+«FÝvºÝ™Ó1L‰# ++ä¬T—àr0žDˆ´lôZ§n¾Yj˜(pbÑËíHÆ€b‹0bDbA:¢\ñ†âFfe}Êôæ�"ªZC’ŠÑ¸!6‚Û_ÖÉDvF1š•r½ÉRu]’KºÑ`Å’dvs“©Ê¶—[2½IQ.NÎ]’Ô&ŒêŠQbÅ¢îNòjg‹$W´¼þDÿÌúî3“ÒÑ¸Ê +eƒ“¥ÿcÖ{“{šÕQ§¶q¦BqMIDã�vqØßŽ2¢(JYÖú4S‰EÄxTT•šðäDƒ¬·³•õ\u›[ŒØDˆ„ÚœX¢Ù‚¢PˆÃf$¢tš•*[D‘Q†f’qHüB²(ž¤Ë—y¡BPY†+ RͰ'CaF<”È‘L%2_!èìè96Jêz[J‘ƒZ,Sb•â+šÝ“T[&F¸8Fõl£tÁÍo¨îœ“]µS+Ã#t Às|IRÊb¡ÈýTJp&ÈYããÅæoà¸Óêú½Gc+5Eµg V@X;Œ‘ÑÉžŒùç-儯�k4éXî”áͨδlO“lixˆà”'×S™Ááù‡ÞD˜8›Æè¤“švÒs~Å0³Ãû›mf¼ÌTS1!Y¬Ølô.4WŠíZ*˜!( ÝÓ½’¯£tŒ¿åöS¹EÛðƒÅè%ó{vj]P»$“Cñ$¸�Ië „ Áš Ô@Tä*›åÆn¡º•Ì.f²ó'îŠFƒQjʼnÓ3·—÷îÏoÝ.uö›Sç4•KOí݈ãΤ@hé‰Ålu·Ù?ªO^ÈV7q:ÉË%ÅhóRƒâŠ >E«'éÙÙçÊzc$@ÆP;‘[-·Ïå*‡Œ0ãYK TêÉ^8F”q¿³æ×þ%S€±¤í ¼Ì<Áº(å‚IäÔžâø–Ôˆ±x\ŸêXNÜo ÌH¤…#¶esÀÉU3`H2ºnM�(†�€žjN%²«éÂz&¿ ++²ÚQô¾¨tÁgűD(nMxé%š+úõíÉ'×dkR2ûœÜˆB:lÝÆ�kø•КW²R‹‚6¡{³œÖ£ ÅœJæV‚–-Š®HJ×t§Á!hA=ÝžD"p<ÀB°®èíta[~Í–�®*·² ;>>BÅд¢÷LwÀKõpF$Iªð …1¼üâ™DJ3z‚Ò-×vKõMÓë‘\ŠW*vz€±IA)Kz¡¤·S¹¹FoWw;X•ÌÁä12CÅ‘EèJ•¿‡?†X‘Tì)+µÐì_\=ù¸·x¡2æ’ýÕÕ£8á…a7' ºªÙ³¹Æ~®} Øm¿±ZaŽSkŠÕµ†¨5e«›*®&rsŒ”·S½“_Z?{·98ÈÖ¶õĈIp#öÖúÞ3`Ä$VníW»Gí¹+•ÞiÅF™¢—™]ܼUjlGcf*³¸zâÖÌÊåÞÜ¥Óä�1?¢Zç¤JÚ$››_»;»òlsðLª²G9œJ(FY²Z#>Q�véæ‚é-'r¹ÊFÿ?{ïñ$Izå‰ÝÉé®ÊíZkÝÃCk™‘‘ZVŠÒºººª»Ñ4À�ì`ôpÇH® wk4î^xæ…ù<ÁÙË\ö@3¦å‡èDe•G„¿ï{ï'<<¾ç„Ózÿ:n^�>Ì÷>î=ø®3~¦‡ ´ÜhIó‰åíp;¬í/ØÑ!Fg_vKª«ã³/µ…“°ÊÕ0ÙéÎ`Íè@ÒgŽÆjõý2æ0B‡¤k¼Ô‹êµþS;:"Ùf»søöý/Èlg?µX±�¸€ÐÉÓ«wiXó¯~òÛÿôŸÿáä¢P6Q2²ÂÕì䫃§¶qüMX?Æ©°3|�¥QAœ|Aâä6-�®.úÓ×Õæ%Šxé[öjª\�»òe³Bø:¤P㲿ñÙ½5ºXäX.$™„¤ª“,ßÄÉ*Å5ÃÚIsðÁ,2Ó'MAîÖ{x±-‚ÃÒ�&n¼?[~8xø§šÛO›;ÝéÕxãñlûikpê'0™v8›í¾UËÚæ:³¤q>Úx?Úz×O L”ö8¥0«˜c3€Ê:’ z¸<ø°±÷‚Ëî=ÞÒ]'ZiöÂDc7šŸ=øüéÛ_„µm>ÛU¾Jx±÷Ùþã£öyµ¾<9yùwÿø¿,ö“bUu6‹7›_ïž};Üx$ÈiÕd½+i]V®JVkf°¹{ö݃§>Y¾5ƒ- ÎÅÎ{Ýój׉&«÷ÕÎ…î^¥íÃB™Åi¹ÖY6»Q}E‹Azá~«ñøÅÏž¾þy¡¬ ¸m˜‹íÝoNŸü&é¾P¬ Mïÿêßü‡Ñôš¤c@Å“ëïõ‡ÿéWý/ÞüÊ«‚Z¿ÿ‡ÿ5®í+&ÃwüêYgúnû䇇/7]~¦êÝÃWýÑISI.Qe}ðêìñoWÇ_î|agå úÓÇÙ"Ò±n{é¡ì(ææpöúàìK–o€Tˆv¢];ÚÊnjU† Ù=ÿîÛ_þ½áŽy©6ÏÓà}Õ^ÈÚÔˆnÍç;ŸÕÚòEÃð¶Wëu&ÆË—€Kh\úÑÞÉGÀù¢\Ö¯íh×Mö%c&(“BÉh5VßÿQ4ûô“R©(r+i\.¿{õÕߌÏ0Üû懿M{ î‰k@,ÕÖõbçÛWÿ»‡o~„³×Ï¿ÙÚ}Š+ˆ7ÒæátëÉÆîë̓wé¥åGÓ‹Éö+QíþÄç¢>b5ƒí¨q<X<WÌ>¨5ÓÛìMßÎö¾Û:ûn¸û™áOëéöã—ÖBDõÃÎäÉÙÃ>|õo?üð÷»§_Ô{;»Ï·÷^ñVgtµyø¡3y6Þxvþðû—_ü¶=Þ_®žœœÖTk"YCAm‚Ó¬¸qn¸?œîž¾±£9-Ô¢Ú!‚“˜ÑîÖÑONŸþr2®Õ‡Ïž~õî7ƒÕçà“p6¥Ø$¨n·ã¬îU§Š=3¼Uwò¤5zè&+ˆ¢X–%¥í†›v86¢-3: ÒÎe£{ƉY7«ÁøÜOæ†ÓI;û‹ã÷íéeg|ÙŸ>é®81xLÛçiVy·Ú=!í×/Âôx¸x7öqÊ™m=Y}j‡qýÐ +n¼¥£fû²Z·ŠÖ=»úò»_ÿ÷Ï¿üýÁÃï§«÷qmW×[¯_ÿôÇ?ÿ'œŽ9©Qk.¾Ø:úbãðýâð#ˆ´o¿û‹³³÷<_U´ÖüàýÑÃ÷üt±÷“ÕÙº³,UlUÐl\mW;çQëÄ7Aü´ÇÛÃçù‚ΰõfïB5¦…W,‹ù¢Ârm˜g0a°ãöÚ:òÕ°gJ–uCYcdPöôÕoZcЫœX‡L�r””>Ð4(®jë´?{µlšÝÇ/{ã^Œý`>È}úã׿\ì¾MZ»¶7ØÙ¾<þ€¨“«^u«?}±µÿí`óMoþ¼9¼pýù`r$[Q}¿3{Þœ=qk{ª=ŒŸ<úEÒ9à•Úlûuo|½wüöÝÇ_ž=ù>mxÞäôøÝþÉ[Óö†gï¿úý›/þpùâ—§Oœ¬^Q÷‹?ÿìïY@àkêÆÛíñó ~®Ón÷èÛ?ûÛzoŸ“êáuÔ<Oº§{^ý7gO~^oœ¼|û«Ãë¯õ`R^zõš¿5/ÛãW³V°å¸½oöW€ $W外dLek®{ÕÇç›Ï?ýxøàsÙ\Þ�™äë¬Ük«ƒËo3ØTkíÁIãqkt1Y¾¬÷/Y±ÇËÞüIsxIó©áMZ“GƒÍwƒÏ·Ž~:Ü|T÷M{ôÕw¿óñ×–?q%kC0Óåëfÿ2©ï€‚ÕŒÎéÅ—ç×_6»ûa}²½Ö<NÏß¼ÿõÃ'߃_ðÃýÓgÏ~ž.ÍxÇŒv@¾~þñWÃáM9Ž7ž,Ÿ ê(7ÝßA©´TqwÊòÉêäó¯þêèů:›¯zÏ;³g†·_ªx c÷ÞæˆaÀ¼Ç$•H yüÝœÓtšÏZö@)_Ôp"1¬¥aoǵ˴} ¾Á-((Nh‚kPµ^¶<éÀˆZÏ‹WõÎYVn¦<-«k»³ZûŠÑ M{Ò\»énÈWˆ!µæ«wóÕ·º#ê]”ò½»µýʦºÑ ;|øÌÿų_>xö›Í“¯¬xƒ“ÒíÃÏd $Mš•¼7÷ÂÍnÿ´7º0½±$WÓtÑh͇ӣæà8jìë ün·×¶€DtstÓ·"aäØKWÕöƒz#§µî+„~0úâÛ¿~úá÷ÕÞE½÷ ûÒt²áº£>?»ú +tþhë‹æèyù`ˆZ”pÚÕÛÏ1œ?X/p‚Òxé.^¦ÝPÚÍÖÁæâêÿá?þîÿgRŠo(Æ"n^\ÿøü'ÿnuù£éÌ_¿þîøÿÛx~MóöU$ôÁbÿ'ïþ�«ÆpqlQcOÖ!ßÚ‚Ú•®iÏ[7èôäÕwÞáñÉgIºk¸3ð4ß@©€�¿éÌ'‹W~´éÇ[AmWµG«½wG¾nt/$5kœ4=h´öXµúY´ëüy}ðЖ°Ä`ZýsQîܘ>ÀÐINšã×áÅŠrc±ztöô++œà�ÒSÌIoöžÒhÁ"ÛL +Z#^hU*v¾¨'"hÀínÿédþ¹å,£óÞàŠewAê—2Íö¶kí+^è8Ñ–Ì î £]wv´Ã)}Н JÝöFí™î¨=¾¬wÏ«ÓéÖ‡ÉΪ?'X¿Ö;›û8ˆjlšnnú$ˆvà0Ýs|4Ý|:]½hÏýtWfœÖô^³ÿ ;yà�Ýö玷hwúã³jk%Mo¤ÍmA M³î…ó°º;˜ƒµ<g$ŠIœ`eú8mÚA¯1<ï¼:¼üauú5FÙTv+þpûðµdöÁ:eƒ›³éòÙb÷é|õ\7úšÖwð_µbE†*¨wN®žþ)hŒ¤~Àf›Ê%D-kÍ +*nDµå`x¸Xœ?ñM§·G±iGéyì[Á&XÀ·¤v°üþüú'¬X£ùfµóx°ýU}ø,H÷Âú‘ddþ_>üv<{�f™âê’6Î^<xòg;GŸO7€:Ofóÿðÿóîþ;ZìÕ»¯:ógÃå+˜p^lí=ÿÏÿûÿù³ßü#ˆUðžv¸Wï>n¼i®£t'Ïž~ÿöãïs@ÊkÝÙ«¦·-ªNh7«½“7²Ñc¥>#ö02F1ϰÃÙåÑå¼TÕõžãΪõƒýÓ/OÞËÚ�ÁÜRYó½ùÉé—ªÖÏå¤RÉ0¬ÅÆÎ‡îð‰é.Y¾—VWówÿôöÝÏÖ×ið8Ó•i³uÑn?Ãm]mBøŠÙc…*ËE~¼¡èCÝ[òÚdv«ÿ¤Þ¾®uÎ`ÎAy&Í=+Û&¨=^é©ö¬Õ¿Ü¿ø.¨í”ÎÇpçŠ5l@À¶¼T϶z›<4ÜÀT\?hŒ®GËw«³ž¾ÿÝ|ï-'7§Ÿ¥n3LÎBÑǼÜÙ )ÊJq5ÏÂ(T(LN‡ðaíØŽöds¨™GϾq‚‰¢w NÁ@†kz·?¼<{ú3:k±×r¼¹¦@¼5ûGÕö>ÍÅ7;OY!ÁpS·i}ksy§›Å’–/é(ðJ7ªîŠb¬*¡Mº“Óƒ³÷»ç[£SŠ @¥xáöÍî*ÔHåÝã¯ÎŸþ¹S=Å©z©lÕj;ië€äBHQðò‰Ê8HO¢Ö9T Ã†Ë½× ÙìjpƒáR@àþðzºñ¦7zA2uškÖº— ºn®*„4Rd¶Üó7¿ØÚ))©m fO;oÒÎ)#6A+‚ÛZ>Ï.rÂyÔ<…JÜ;ÿ¶5z‚Ó5±«ÉÖrï…¨4ee`ù[^r š‹Zóx±ý¦Þ:âùäüôÝjy*)E»œTk»»ç_^~'H]ŠŽq—„–È7QÔ¡¨ÅᘬãUÍZÍ-YªW*¦®Zƒç$¡\iÂÑåT5§Š1áå@tÚÚóÂewüÌÌÙìÌw>‚ó«{8åQ”§éX‘ º2¼M7ÚŸ€f8ürcÿ½,JE7‡¼Üdå¦mðj›žÕûÍîIoöX1:Ž?ž._V;'Qó nï7FÇ@dZ¦7ƒžfLÁ¢:Ù75æ¬ØÁÙ>_9¥ÅºdŒ(¶‚ÐñÁ¨.!4Ù®N¾ ÙX7º‹íýéS~´j´O{Ó‡àÐM{à¸�v–«Yþ¦“�v!”ª W“d3®n ¸Œ`RUE…æZà¹âÖ©¢¶u):\]¿¦ùJO±Ç¢14œ©ãmêæÃ-Çí7:{au#ml»ñ’z®<ŽEõ×XÎçù:†Š:‚éâ³Æ‹¶¦µŸ¼øÒ\ŽÅq—ák^¸µ{ôõêè[7>Y/hÌ…å¨ ÆÍ4ÇWuë{õÖ©nYv¿ÙÙU´”(^î:þVÚ8’]°“4ãwûÇýéCXM+ÜVÝÍ +²\Ó²pË&¦Þ[ì¼˜î¼æ¥.h!Aê€#qçâìÝöÖ…®¥¶Û·VƒÙƒíãw ÐÌËä +b«ROWzëkB¹lªæ°tº|ÄÛ”JÇ׳ ^Ó…|¶C œ°ï/‚ä ?{·žDͪÙay_3›ªÞ†’Ô½¹l�zô ®ñ”’¤Õè7{×õÖÈ`@ZlàL«(¥»·ÞÌvÞÕCËÝŒj{º32ìîdv5ß~ÉJUFL© +nññ›_¾ûú/w|n¤}0¡€iŒØ@0‡d€]qzðäÅŸnï?ë«ÕÑ;IíãT :D³fANûåÆÑ·‚ÜÕµÆxr’¤›’ +â ²:V͉ìÑJVÛ…’$YÛ3\^´–GH‡å«ƒá%PI>OæóxUÁ€Ó|‹Uz´Ø„e•„¤^]ºÞ¨Œê¦·åÆ`ªísF¨!¨ ©5›7»+б€41*â¥~µ¢î–µŒš¥Š'›ŠÚ)U÷Y±¯ÛÛþ“Éüugpô!µéü:ªnf;N¢6´ƒ]ɘˆZôÕö³áèœbB0\4›B”+†nªéª’mÀÈòÙ^@B–›$[-cY£Ÿzó Þ<$©`ûðýÓÿ¶5y%«ÈÒRI’„0ާóá‰rϰ7Óæ©a ³ïĆ¦ÕŽ_¶Û[ªNdkª9K›'†9…v1Û?Dmw'‹k@cµJ%5—9¶‘ÔŽ¢êMGªC-«Z—c¤b@iÛþDÍ”Ih]Rº üi&a˜ª •œ(S¤’±!€úb€ N¨lÅ–ªO¼ì7Þ%9ÁeNÏ22nÖ9ÎY€CLš'`{T{޶nvʆóGg¿¾xúmcp*[ÃÉòéêücÔ>.¢š¬ôëkËÝðã]+˜Ûþ¸šnoí½£ÙA0ÝkO^¯ì`¥˜3VìÐ\"g}š:,ëp\l¹[ió|uøÅ|ù¬”v©¢)ÚÌ—b¦Û/û_=9ÁÀá(æÐlD2>N8qíh²úl¼z=ÛýÐ=g¤>XàÊÕ›¨¶aøKÕš;ÁÎMO(ü¸ÝÚþìã/áÏ%Ô”¬ÁUçµöcË[‚\áø¦ç¯4c¦™3?>€Šu}=kÚ5š^«f—†b¡c–MMk,*’µhÚÝ?zѴ놛ñ“jóÄõwduZª˜ëëL¡(˜F/Ÿg%¹^ï/vßøù?=úÓ0ÝÜ`Ic¶¸ŽSóÀ_Ùf#Iù(¾V*ËÙ†<Ù~ãA©l®çø2bÀ¿JRÍ2²h[VͰ:@|(–íé}ÿ>qïZ)k’õàA%Aª¡˜Oà ˜ËçX+dYLd)®”¹bŽ+Y;¯Êq©å,£ê©jmlJP‘jŒ¥Cq)@–élÖ[ÍÁc·ºBI/—)*âðË-QËvò©¶ŽLo&*)$Æó¼k9ð•£ì3š6¾ Å𦠺¾Ûò}@rÐfC0݋ջgÿbzøNñ ojÚ]†õ5k:Ù|ýöãß¾úüï{ße…‘NoÚÁ– ·!÷gK³·{ã—Ií”åk$¡{€Õ†nõáÁðbÙD O÷6F¯ãú‘fõG‹ëjë€âª€l¬ÐrÃÝÎøE{åºÝóGßo¼çÔ¶lOhW¶º;ßÚ;˜\IJ#I6F›OMoéEG¦¿«˜cÇŸõ‡çË—rö;v£sÞê_ÔÚG0œÔ%\,)’Øví †)à×@E¡¥‡Š:vÜ-Ýœ¢xÖ-{Š &ÍTEuèUêý‡ÝñSIm–‰-V/ PžÙ·à +ADéñ|ª*õbµÌn¾åã´q�æ7kHQ‘³xS“$�tÖLQû Þ/E×›©Ú¨XÔ ¸@~HjÖwŒåë"—KTëÍ}÷þ$ÛëOÆ0@<$B2¢Š\·°sðèþþ€Ö…ŽÀÕqÔ„_[#0Ô"ð€—ù<só±©ä+(cIŸ‚Dõ©ì‚ï«à¦fŽ“t¾ñfcïk¿y„Òaó©“Ùæ®¢œ'®^ýv¾÷µá-*/²†$ú²9ÙtÂEØ8´`Æ-ÕÈJ$‰¶À[²šZÞÄò¦Î F¯q`VwíhåE¢˜éƒY®wϯ¾9{ø³ qA±$ÖTM³hà¤vì…{N°Ÿv®MwEPà-ÏÉúy•+E;š1!ÉD”:aý L³=Ÿ5½9˜œJj¼0Tél¯;³WV¸ënÛÞøÎ0ʵÂÕbÿóã‡?øš,ßèÖ<Îh�ö#CÍÜìO_?üþÉë_î_|SëžÑ”W«.Î/¿ì N ÊÉÚÒa6Ë7\CSz_E*BÏç[/4k"*�0o¡¢Mx±QÀš‚h¯Ç‹ç–¿ÇKJÖBWÕîxv͉0“}È73Øáä¨Aäg»åU®êjUQ’v÷Ø–œØ�T5`@7—çq" è¨àÉ¥¦9•”!w³¡ëN¶^®@>ÃKE8ÛŠJKÑi}¯Z;„)ýä^A˜ùBQ+WœN\CŒRm«˜Ç²u’ˆàg9kç!g,À$®¿IQq™ðïÓ¥’I¢h€ñVïúá‹ß>|õW;g?é‚Y’Ú²A2YCÝÝÒü+<h _ÏWßdý†hÛn8IšG¢µY$ÓBÙ‰¼åtü¸Þ:¤YW”cIëÚþrX¦{†‘Zå€7í�yÖ¢RÚ4»Ãùõlÿ3#Úæ”.ÉT!LÐKDÑ$J·£æÌ9p"ŠÁªé²’ލô Ò•”NÒ¸¨¶éöŽ(7Ken=‡QŒ§›ó +’ív++]Xâ¬_I´‚)/Ö(:€$‡Õ‘´¾îl¦í«îø…éígPƒë€öçß@š©V—•š8S'Ùº¤ö÷ p¾l¿×³ëáôÒðf8›€–ÃÍnçÈõÆ¥²R ”Ëw$m�i='ŠRàOG“$åd{žnM—{Ÿ¯¾ÁS*ë’Ô¸|ô � À© ÷duV¢Ú“]¡JÊeÅ6êCZHÖ‹J„¬Ø¨3‹!òìîþñ/^¢d´^P9©K0uŠkÅõÓL¸À÷º7ÛãkkL.ÇQL*HmЉ *+JwÚÇÑSEðB’ (`VR&ê+rÏKkÃk;\f÷^¥¬C"iR¿Yß-•¸ìcëûŒÀµ¡A‚é£=Pb@XvsK˜¯êVït²ñh²õx¶ý<iíûbËüã7ñõvoüx÷ô§‹Ý/{ó× X@'dzuFˆ,o+¬°?öâëáøílñ&Lv0Ò€ÌcÊeÖ¬ÃðUÇŸ?øéÃWœRÎz5šÑÀ«Z7=ä”A{ø|¼õ^Ö'`Õ§ÓÓ´¾$˜ÛK„àÍey8¿èM߈ʔ�IÙš>àÊ<á‘t¢·Þ>Ý9ý†bê›jú�¤¾ ôÀC~”ž¦g�– ŠìÆlëùé㟉Ú$_Rˈ&)µ0Ú„¸¹cI{úèW‡?U²Þ:(ÉÞð´7<é›ÔÝø(i?µ)È(Ø|Ïú§8ÓRI.D’N¡ã„‡õÎó?ÞhT.‹$iFÍ8ƒ€×Ô±¦M¡²;UèH;ÌÄ›@}A†T°@’Òj}K·º ®tµS«6»—@ñ4“R¤Ã3že¶l»Á²–®5!Ãf÷n/X±»ž“*eQ`=‘@h&â…¦ãn¸Á6æÀ÷ïSšÚêŽ%)Éภ+Êövuðv°õÚæ8*דÙdñÜâ'Ÿ’ù¢ZB=VþQ”œbh?Ò¶ú»»Ÿ¯1ŸÞà +U‡Az@Ñ!T1ËǢܰ½±çÀVËZcØ,EÑv½}bû3Q®ÙÞ$®/e½±ÃL²\Vκ3ᕺaOýxÏôvLÔ&(Ȩ2Ë߈j'�A –£Ú®neÍjÓÖæÎK¸[B^¨GÕmÓ§µ£þül(¡QÁ#Aëqr»„�)ÏMwTÇ·arÀv”‚܆ŒuQ©ÈíTè¸+ÝÜ4ì'õԥŦ%Ôáä½ìƒƒËºÌ”XH!EmðòR]2抵0ýUÜ:-cæzÖÑ�SCsàôº=‡T×Íápú¨Þ>3Ý)ÏE`Ç@Àƒ/Cð PÖqÂx´Üðû…_)KTÇÉPÖ¦NpPª8áÑlÌgךHE$p l¨DÍœ€!qB³5p`@—rb×öVÝÑ+˜Ð7m¼´½íçíæŠ¡5Y&àn•#±úÖôðoþú´Ìf1*ˆ…‘fA +Õi*Û†EE?œëzA8Ûr„™ "J’²¦ØHE‹'ˆ=Ř)æ‚áûÅ¢”íŸV‘®¨{kt©løñ¾ï¥ísËß-”ìOïÑ ÙT%»B‚ zœ,Ý`PÃ3ÛÕ$É©nôâêJK+�uzÜ9cCËûá2©íÚVßpÚ4çU²öyª$u²ö1ÖPRk ¸´¬EïÈô—ÛÈöá1§Auëè˳¢Æ),½jt`)H96"è*ɵdmÄ»IcÏv§a´t‚mŒ9¹KëÓ°~aLJÀY L$¥¯èÙM}Ù=¨Ö†¤jvvëW;·N–‹œ¦ƒr¶%yD³íRÎÐgù&$$Á4à)š½%ésÕÚDÈà~ž_+pTS”6C{<ëAmšþ¶ï©Î&-¶Ê˜‘.RYëA{ánÚ¾®ÖO÷޾NG ÷LµeЗuYr‘‡qz¼¹ú`8;8‹2ŽÛ(fonKVô©¨ŽÜpÏ á_|žGQƒª¬–Q“d«`uÁ`ZîvT=+š+f{ȳ\Cš¶fy¯”µ455±Õ¬íÈbËVÔl÷fD+¥RQ%0÷Úúr<ܯ”³°²þ|,3LW¡�è„’¤Ô`5y^àë€``±Iáú:½vùHQ‡T* +rµQ0YO·�R1Ÿ—¹3_¡˜ ¿æòE×D©k‘Ï+úÖÏýïÒtûþ}fmMãÄEû®e»ÐpÙ·!x.¬FPðŒ‘ Ty!Qõ¦íu³/Ju?kXy�’,»ä’íà2\DPN˜,ðbv/A¼Pu¼E½{Þ]Ô{Ǻ3â%˜ÿŠ[D;,ŠmNèIÈé¤'Ö²žeDv±3z5…µ‡n|.iðÄ:ËÆ‚T‡?$é/:5¬-x€—G ;Ÿc)ܶǶeoyþ‘¤Ì�ß¼hÏ p*ÑÔÔÅT)¶!jlNÑ~îá\°»ûDÑ; ?$}!hYçz/ZhfŸ¤Á剆9Œ’=:ë~ÉÐD0ðA<ðǪðBdÇ Nr8_ÔKe›ã;~°u*A,†Á´pb‡á€àôBIç¥~½s•Ô1}ùîÇ?áåõx¥ÑIɼ-'4÷L¨8I‚ ¯T”ï¯Që낪ô�‹ …²[Ô…nà.}wC[Ål§>¾’uÜÓóy²˜ç�UhN¯Ø¢hCó××¹Éäêè,^¾ bˆ%r±çà>½GÞ»O“d¨X,h¹u¡`¡ªŒlk¬Ë³¥’j +Th]𮢍Gn=ݘϯh:)LYÛÌŒ£D@0U„ +ÖKRf5UeUw;3G ™¬Œ,!W½ó(Jr_’»¼Ø,#æZŽÉD÷®6fƒflg!!Õ>/½íÊZ!]xq0>,“PµÂr¡œuĆÉ*kO#5áTÃôÀ ·A eûŸ[#/ÚJjG¼Ò)fM¸0MÙ.Il¥$ð`|zÕìs´ HòrY…�EpI,e*ÉmYî'Á†$·²~d˜_ï>öâÃÞòÃ/v€ž¥Q«-Ì ¹jX=òâCx/ˆ#½\‰!Ê‹]Ž«Î€x@ÐÁb(ÕRÙÊDÓ“tSëy®\±4kË@<ìûñرâÍöŒ$Ã[* +Hb͘ûµƒÁ<»:Ê9ô‡_þä÷ûG/Á÷1€]Ú˜W4_7A`„K÷D1‰k«bI+–¨BŒÐ·ü£ zžÏšØØœ=¡)©‚Àp+x7,VŸYÎ8·NðtÀP”3L;hoWk9™ Nx�0˜ÏK$Ct0«0g÷”RQì5ºW¥’†TlxÐ$Ìó$3û ·J<è¨{÷ˆRI§èD×GÀn²ÜÁ³¼iÈÊ ÁÁÍ8iVêW¿‚ZÙåh¹ºˆæj²2r<0Èmð,ƒ?5y«û0¬“L#R«’T£X¶*¨r‚9!6U}ݰ-ÖàõA]g7 òi\?VÍ)ˆ[Þ¥ ̳¬Ñ.*f׉6»£‡ië—}¸B*rÙÚN®’Ö#¶àïMk$ +)¨#¥ºÒ…P‘ƒ¬eëƒ(Í>lRŠrË%˜Ý÷æºÖ„TÑzŒÐ"Ù°0+6à$1–•&œ§l‚\”Õ$€¬vloN²`ÐÀÕÖ…Ÿ@¶òø¦$ÀH &T@¢jl«1BÍpgeÌþôS�0wdµ°X4vÆ‹“W´å&é>œ! !/ÕJ DEœîÌ–/v|f¢k÷JÄ©Á]È�·|Aźã+7¾ò¦úú�¿$ êN+ +2Ÿ¯ò,¨;”i$ÇØvø›žÚ`+pÜ„£j –ç×Á�.ËÙE§bAÄQomB¡$µAÒ<‹ççOýþ»_o]Þ¿ÏšÁ#ŸA˜¾•Ë Æ:ÎEgxd7TkóÅsËžãxX¬ØE,$¹šmœ|øÅïþS¶Ã!ˆÕ~Ÿ(Ú’Š‰áRˆBQ@¾nA-`L~OÑ{bÖN¥v¯Œúœ8Ô]ÃÚ)#^vÓæ”ºÈ°€9€’Ö#è§²hiëXµàõa€Lž‡z?Øã*FÛóÕgn�Õ—õ>ÇÅhJ"+@dÙg7ió8ŒwI*$[S;Š\Çp¥P@Ab¸ ‹Ò=(@qÊMʾŒSÇPÔÇU {ÕÏÜdÀ¡Œè°ÐZ8åJ‹æ™Î �p–¶¿dw_X£jë4¨�sAÑ”Rõx7¢‘ucRk]‹j“Š5) ö½5’À,Më ˆR.ñ¥"ï«jƒFç"ˆwnÚ1õö®f€Rõ%À%® \‚auòñèúû¤Y×ßÚ~ µInz›¢:„ræ¸Øy7À«Z×0Ç â O@Å‘TÄpM–o€ +ºËç9 ŽBI+U‚²ò!0QzIJ)ÈuÛÞæ…>-®[©¨ëkèú:!6K7�~Y±™v.÷¯~¯>ïNŸ‚¶,—{÷€³¯€õÃ1GQ»^°Ýî^ƒÁöǪl{÷3?X–+6FUµðhºûùÛoþò›ŸÿÕ³—? „KÑ1È9ð5Š6¤ºé.:UŒ'ßÙ…²Uʚǥ`‡¡¸àœÁ¾Ñ| +ÈIÝ\·G3*L!'±Ò§<šI€³ü¬ÅÆ¥ wÜãÅF3ˆ²ÅCAAí3|›¤ ÁR)ûD;dcÅ^kð¨5z•~—*'mÀ‚ò1�ª£š>ô�W,²Ÿ0YÇ[˜É޾ 9®wžñ|£äžcØŒ7cŠñ8©Æ«É˜hÖ†¬0Ò.WĬo”¿Ù›>mŽêâêÙ…ÒáÄ„²»ÚÀN‚h^uF¯(¶šË3¥’°UŠñTå@2uÙ€„l𬲻¶F”Š<–}aA̾È&Œtà‰²Þ1ÅúŠÞJ›W^tìF+Ý…*@¥a’ÚŠ›é;ÁŽîLô<,µ|CUà«à +×î¡@úš>•J$ù(7µPA®åصu† ŽOdÕD”,—ÞteØ1s9¶RÖ0Ì Ù&‡`Žx®cšKXÕÎ\†Üµ¼¸ž7(¦£h]?�^ž‹0¡ªvh6JÍ5V¬+æP5¦®¿ øðZÎ ö]3Û—ž‹*e£R–ïòB·”¥stc~°Q²ëEe4’š/‚ÜòDe¢ÚÛ²1Õ1,bŠ!!q2(#<€ï)Ûã—¢=×IÚ$oŠ(û¾˜P‡T?V”m·ÿäðúÏ« _A�Cæ0,<·ÆIUÅ4†Oýú¹ê̱ 0[™Q1`B€ø@3L[ÕW†}ä†G4—®@b£ÑºLj窹‘ Å5ÁÇá–ª¶@ã-mvÎj݇×Fð€dª ³«õcÛ€ðƒÕÍñæê³ÃóoesˆR.BZª ¶tÜÑqBËON£ú•noCµæòt¹"ú·ƒ™”´9+öAìéjp†e?\L·Õû¼2#¨z±¬ƒ“•ÖMãl'tÓšvÇÏú³ýés’AT*: .¤�Q©¨£h ™Š Ê@p96Ûò‘Mèl›>2Ÿ‹%SÕÆþBú¹‚P(‰�Ú ^I…ã³ËVk~SøPì@¯Xvý¼&)Ý?â—*6ŠÇ4× +’ˆt='€m¬ÖN“ú…™µ½p@ßæ‹\)ëÓ‘¢eíþ}AœjýààâóÆà»8UÅ'"ÛÝ̺úÒ±j-½Gãùç æ¥Ãð}škfü^V%˜“j£q:ÝülcÿÛÆàE qr%;1<ÀÖØ*-´UsÛ ÷ÝhWÖ†€™0(ª<cÝ0W Õnv×ÏÔc±¬Ü´Ô±ñÀY3B›á¡Æk¶=’¬Ù=P嬪õ3Óš!%(SV›^²ä´>¯ üÚñæÑQã"ûT®(f͵ KW‡ž¿VB1窹P´±aNh*Ûc¼\ÑJe8¬îÎìæ÷Í6uc +6%#œ®Éê¤3zÑ<$ÀÉ6AªuƒhÖ쟩ά޿m½m}&ës(jXš8Ùot¯9iLÐ-Qî‰2DQ%è¬IÁêÏ:ãç{?á.‚er‚f@ô$µ!i©_ÝМm–Ï.Œ@YAqŠàã²ëÙèÎÀt熽 H’’Ø+•Œ\žG“$¢ì'åCaø«ÆX”ê:Ý¿‡(bƒË1€¥‘¶N:ý+�´ +"à„F³0Ú¾wŸð§˜¸Œ{$µ™]ÚÍßì)vusÓr–ð¾¢,P-—]M[€Ë®€5[§áH˜+œn�ýU¿PP××we)Í>Ôàj’¹Ñ[|¶<üº + �Î& §^´Ò/UYÛ0Üm�Ÿ2jB&0L’$ËFc¯Ñ>ƒ¹-”œ2âv¶äŠB·(¾aùûqóÌŠ¶yuÀB¼D|#ãý‹Qå�ä)Íõp²š/e}Ž�”D¥í%»nrèWdµÏrUÐ •‚¢ƒ0ž+j[R”´�r¡7öß>ù•î-!{sy¡œ]ÁkˆbŠe×14àÛß(6Ìy¡�F›KŽá6ˇ’ÚÂ)0ÍÌ®£‚I ˜°)(#QšÎ‚âà¶cS5&àDË—ÁùÞÙ×;g?‰šgÓBð´«aLn®DõTs+N,‹›ày‹vù¶3ñAª[´Ô#¹¦ ÞtF²à’šýÙ…¬Ô« ^õxiæ4jÂ+Šv¢dÓ·MÈ¥ `è<’Œ-{aÛ•ÌPǶ»¥YVêàx’Ëk¹¼Là®*¶1ÔÊÚý€§«î5:gn° ⹂é¶3mwÎ,sôÉ'e¢–7j'†{ *}uÖÖ˜rÅðü•¢pÜÁ0”¤ +ühljúà®TT(*ÕQ�Ä@’ƒòl‘DÀ> ÞAhhÖ<nž7‡¼`C;\F%aoŒg—8f¢‚Áé*§*DX( D( +-ŠviÖ¦¥)ËM¢QAÃ2êäK"Íט›»õ0&`ånܼœíÿ¬:x +Rò +¨ªÒõvÚ½º»óùKh…¨~Ób~ XnÐr2si1ʈiɉ(;|âTwotÕiN‹•ê�Únxdİ(V+¨VFMkÁsèKÙ…e;»šMEq¼b¥DÕk³Õs+Ã3|3û¦yI¯ ¶nODTŠ‘>xÕ^8á^&½¨¢ÖŒŽå¶4£AóU ýÉæG?9ƒE¿iu¤+Ækåátà&ËÕÑç‹·^0“¥*¨Ý·†Y)+(‹Àæ(Ƭ3z$€:›ˆ 9%}Î)à +JIÄšëMÁþˆÊPQ5¶¦›lw0äŨ¬¦,hìvBU^óâTÓ(êÞ_#KeE”:¥Š 6ŠâZµþƒ¨ó¨Öy"Êõunm…™óÅKm”Jà ¬,wG‚à›` +ÖóÅÔ€Uy¡b¾fo+6€L h”À<ÀÌrI»QãbQ/ä• +z&ûÜ„Ë'î¬çXð’4Pµaöñ Hk'ñ2Õ+”_Æ}ŒJ Š9aäz{îòB]‚L[¥Š»ž×Ëe Ôªån¹É.#Ö 6̾> ŽZ½G‹ý/‚Æ)èì>2ÈViUTMÒ¶Us_ּû¹Ûð‚ýÍ=À„SÕ ÃŠ ðpÐá`É!Ç,Pòaõ²Ù}aDv˜JÃ×9¹Q~±,¢„g8[²>bùêýu:»ã¨œõPÆjÀ 4*‚·‚«t×2IU¡îÊ—fR0€@p¬Ø ª§`Õs%@Øö¶Üðô†åNu³CÒŽ¡µ‚`‘]—ЇEÄY/hÅŠP#Èm„0Šˆê†‹ÙòÉÞÙ‡›û·µB „¨mè£$Ý'éã.ƒèÀgòçÞ½2‚è‚ÖC©H±VaíqkøV1¦ÙçV˜½žcPÌ„%ã2då@Kç8€Y͘ªúÅ@øjí�üÝZN*”„HÖ +*, ([ËÞ0³»SöÀ cT€µ|ÅÏ•\†Ö;ãtüA8ÀS›»ïOþ¢Ú8/¶ž—Öó +AÆ€®™Y+¢2xøöoG«/xu”+hùœ,Éý´v*÷OþÛâ§÷Hši,N~Ü8øÒ´gpžÀ80¢Ò„Ä.U +Œ0OšÏž¾ÿ78–ôq…„“‰�[0¬ +è®!'M :lw&ku“aÅKe—Ä뚺Ñ=•¬Q 3ü`¾:üH°5FhÒR½†j€lƒ:å¥fÖš +@Ó6:¯»£Ï½øä.H Šô5ð°ÞÜpàE‚õ(ä†aì'Õ'š¹Ê@|š`µuí%g”Ð(bVñæžl¶l.Ï‘dà‡QýμŒëy>3Ú¸t© £ÆƒƒŸ6?×Üí2¼ENæØF±h¬¯gŸžÀ”tjy»§~Ó›¾FÀ%)í¸~VÏ4sö°PÑ +C”ºvÖˆÙû] ã[arVaEšÙu*ÃN¬S\ŒÓðkB±Mšs|-³B%#ÀOõA䣸¿–Ê*Iú’ÔQµ^vã±Ò1ÜUÒºªGÀ’¹ì’8¨w”?†e[!\Ïçx’ЬúÜ_¡òÉöüˆó\N”äét÷K;Ú—•9Ï÷`N³ßjn‘¤v §ù¾¬ïøÕëîð3Ř+êÚí{³ýÓ‚VBýtΗÍܵX&d•“}¯j©[“BYzÄé/»ƒ›»_TrïÓìê(xNé‚,¹Ÿ�iÃË0{{`ÐÊ ï[0«ƒù[;<È—¼ÿû_É8ûÿûþ¿wܶqÈmwܶqÈmwܶqÈmwܶqÈmwܶqÈmwܶqÈmwܶqÈmwܶqÈmwܶqÈmwܶqÈmwܶqÈmwܶqÈmwܶqÈmwܶqÈmwܶqÈmwܶqÈmwܶqÈmwܶqÈmwܶqÈmwܶqÈmwܶqÈmwܶqÈmwܶqÈmwܶqÈmwܶqÈmwܶqöý+sê_Éøžï½¸ìž¿;ÿdoø ßù§ðûÖùÛwWo>™ÂŸš7ïº/Þ=~ùâüÍG*¿²Ç£Ì«óg”ôÇ#)8ˆZ¼yüðñøËåÅù³+™ÒàÐ*ü÷‰EÙ”u󿽟葻†íÛ^`[V{Td[žáXqQ¹õ²ØpÃÐ Ûö½è_ô,;èÃëøåPÿü,Û íȳ½›ƒþåÛýWô/ÞîÑ'»Ÿ¼ød󓘒djo¢j]}òú¿ggÁÝÌ_ÿñ³«äl_ÁŒü¿“ Ï‚ |bv¯Þ?¾¸Ú´©½ù'‡Ù“³ùüãê¿![±c„uL9–MÙV=ÿÑÝ3²3úçgýóÿG”gi‡7'ìQÙsOxþæ³H¨Àû“½ÑC1YÇœtX¾Ê 5.kÉRň”溼ܧÙIfóÓl¢é#QîòR§‚ +nó: ™8k¡LØ‚ÈjÛrǪ•µçâà¹BGT§îK\±È ˆ’õ•R;ª5“͹ ޹3a5L»¯è-‚Šdul˜Ž¿ËJ=‚L9yH±u÷+ˆI2)#´9±mz—æŠ2‚{£¸U®è(jßõW²9æä‚ÛŒËIq×1±‚¥‡kÕYÂÓÒ«àŽínEÍ3'ٷÿz*sZlV›4“à•*Z±$á„AÒÇǬP-–%x/’ª–Q§‚¹áSY?·6Í¥¼Ø¤Ù” kaxd»;Ó(cN¡¬+:ŠÛš1’Õ^Õ+ˆ&ˆmIîg=ô¬£†;’ØŠã=Œôˆ¬£T³XR×sü+Šº(Ÿå»¬Ø£Ø6Å6óY/ þ'"‚ˆ8¾Å°uó(: N¶5ácx€ ‚Ù¢ØQä~Öo +ec-ÇÁ#_ŠEÄaè…@ÌrY!p+Ÿg×ÖÉBI,#‚9Ä%©I&ðj¥2œ¹Éðuwó¶R1à$óyÃ|ši’Tƒe;‚Ô—äN·{âÇ3•q2åáÎ%WFôrIÆP^ºS+!N©lp\Ý4§º6 pϲ&œØ@IR'^êò€e#Co•Ê< 95cCP¦4Ù5€ä̺y3Q¥¢’t YS?=Ôݬ÷&%´Ê'éøèøëzç˜ }œôm¥íà„æ:( Y—rÁ̬=jB¼Yã_¾J„Ų–/ÈpÚp@Ö˜H¨aTH²©¢Oƒä¬Ù¹Zì¼"y%MIXÑ~µûØIŽyȈ]X‘Ý/F‹•C1î‹°vɈZìcdTA˜Fœð³Œeu=Ï—+뿘¹<¬Ž€â Ï×)˜p*ÆÈ%œ®‘\5ëáÉ4`!á0xbµ QE!k¯š5Ï´+ˆ^*©HÙD‰ÀÃ$Ø üí\ŽË³Å¢œËókë4,"KÐ –T#ê¢0‘¤q±¤e=1ˆ€fj°d�øÐÓÍNù÷sÔ½5’0EQF²4„bÉ^¨V*Ùvæ÷×ð|Ž&0‡aš,×¢Èp=ÇÂià¸W(Š¥²¹TA¼\Á(WÍzL±ò(–²Qäaò<Ž–½ã¸û¶½Ë0Ø~ÿù¶öŸz¯$kã¬Åbó”“»Ù>âPDXÖ4£XQ³±+0½¾jGC†ÓñrùF³†%ÔÈ•Dš®ñ©ÑLLÑN©$Ý4GÂ`T‚ Íw5cá…»’ÒÃ1SÓºaº§¹cFJ±3/(Ó̞٘™Î” |HKÃ^êîŠ{(‘L #³|»Ù\œ+BD˜ HÒP;Uši²Ñt“ ‚2¢f O„rgbÓÙîŽß7>k¯pÎc„Dµ†Š=–ì -õ,¿Ù}Uûƒë0Ý&_3§v¸’ô Á¶(Bhdð’5P-J�…¢FPéMk_ ¨P” 2Û)¿ˆÔF`YÉIw5{—äÓBY„y–õy©bå‹ÊýupÃ=³�¦P,û‰TÌbAÊçøB–RG*–ªô¡•ËñùœðÇ.è¹<[FL‚N%eÆ NiÚRQæ²¢†f]Œ"‡%htKVç^pDqéý™/p8‘u£™” B€8í›&±Îýû¤V©$â˜MQMœõÄc˜Ž$vX6…*ÂzAÍm@i"k?ž`tÐ&=xÙõaò| h ¼¦a.kÝ›|z¯,jm'È: Y¥ NÆÅ"€²‚ xÁÍ–8Ôäîtö˜kÌ"éˆËš–qfR�¡¨HUûº5ÆŸ—›_£ù&uÍ5oÚÞj®;otÏ wbûÕ1bSÔŠ5…Ÿ4W'éjí¨Ö _eÇ#QQt0$k˜€|AùkŲQF–ëÁTóbÖàæ–fªW¤¦¨v9)ÛAßöTgƒäRÛß¶¼… u5kÀi =™m~lôÃüC�˜hJu=ÏA +)ê4N¯`um*JŠN�v²}÷°+_”!0,�")€)X•¥Õaù‰åAÉ „ç8KIŸÊz® ä +*°¼€F8ÀbSƒz¯” @§rIƒG–cy^£’›6AR¾ –J:d½52kH›õ„ì”»X‚31Ke€Ð€Ú0Û@ˆY0�FÔ©*Ã`ÓX6Åp 𻂹€$Ð(łZ(ˆ÷ïSòBŸ¼¥ê•ŠÇ2uÇž˜F=ÏÂÉJ÷•+Ûu^Þ0Ý•fL�ÜÖÖ™BA�ìZ['Ö×išŠÒd_RG8S/V¨—n:«7a$mŽÓuŒÌZLƒ„Ee‚°)¶ÆICÍØ4mXÊ:Aº@ŽÍî#Œa5²nBÖ! ^ŠKÕ&^¼ jg½(èØ +br[3ÇŠ1ýåϾùÛ½qÖÇh—•@’M,wDI혓ZYðʨKu^œ*ÆŽ¢¯$u#ÈPપ1.¡uñ`&eu"©S^{ÞöÎîçîYËZ”Î2®?HšWqóR³§Ž=ÿâÝï¬ê4_QѬ'[æ +ä,@Þܨ È…¹i¿¯JF œŠ×rx1kæ¢YÙ¦ù¢^®ø(+ÊPRZkyÀ¥ŒÄ¼´¡èKEßàÄÁMGl°4J±Èg}Ÿ +|©¢RÀ,lVÇ‚rÙ*—\øbQÊLA^ω…¢8 ©•�É3÷î# Á +¥T2Ä €%€œZ\/pù²Œ.$¤LYŠ¢ÓMQ9-xqÀ ¼\NÌå¤rÙ&°¸Q5ss9@ìþ´Çc˜³–¡¥€ØC4’†i‰ ºÊK˜4†mÃ1À. +žˆ ð¬ _× +âZ^‚è:ëB‰] +š!ë‚BE8U•¹úቮDÞùm3Bd3Í'šÖ£½¸~ZFlYn +Räb¦:¸.+du#®]ºèØd‰nMh®Æd TÓ…ŸìuWo>û7ãåc‚ x¥#SIŸ‚eøc§2šoC’ÐA]ðbG5fŠ>焾¤Œ+U}6=Ì^–P¿ŒúÓ¥®¬à¹¢2tÝe£~¬CŒÊº%3\t íïEµsÙ˜ØÞæ‹W¿ +;ð̬”!(v@TÐÀ�æÃŸ2pÌÉÚË}À¥ŒJ¨Å4Ke”-·�bð°¢ °FY·á\A€<ÁðÁã¬u Y¥Ù6˵I²† üëZŽ*9Тb�.Ib—çšÛ…‚ú€Q(°*êäòr±”õÍ+ȱBA†•%©¸TÑÝÖ×I±óyem SD1 #¨YÉ&´E&i4]Ëü•BšeKC%,[ͯ ú ^ÎRDWô<àRAÊÔ{AX_ç!2:ÎD*ÈšNžT} +R ä=ä¼,,(A¥¢š ^0ë•Ûë0 TL±)'@º…"Ÿuޤâl-¤IT½ªužjƜ㪲Œ‡ÞÉD¬ÐäĦ¬÷lwV(æ0_Tµ+)Ðx®·2í]ÓÚ‡šÕìÍC¾Y<›VûeT5N3õjí²3|:X¼èo<í>/·Úý‡V°*ãáM;”†å¼øÄONEe§$)ݬ³(ê"8€IÍr—^xØ<sâý2V%@kÑ ÛV©¢3GIÆ0±‚ÔÙOбíz㦿9‹¸±Óa!«ÁT8`^àô×7âÈåEŽ©:îÌ/¤¬H;EÛàø.R‚ê¾Až’+Žgš¬0‚Ÿ Œ)"yXËñ¹‚´ç¿V* Íâ|!ë#”+À’±j‚‡µ¥*‹ýÀÛ„~©>Z¿qd)¤G©fÊ*•UxJ¹f <²[®dj?ë\Il”K:(âF-�<²|üd‚¬á'$øÞHQG@@âÀ€¥¢Š¢^>/¯¯3€c™¨ËK€„(’u•ÉP±v¸XÉC‚ex#ûHz/IŠ;]ôx0mÊW¥÷®ÒVfyïmW{獵{fzü0¼VbA-Ò‚´2È!„2+‹¼ B«] dV»{ßÞwÏ=ïsêÌ™ééÊʈø~Ÿ‰ˆ¬ð�K`ê̸²/ˆ¢�c£tŸS +²; Ób¸1>Ž]ye,–;b2ðg•¿R'˜t‰rBJ…âjÜîÁeeµÞ›`=FH©ñ'€f™h®À™Çë%—x©Ñ8Чüa;†§ÁÇÆ@ÒêˆL2€Ì¼¬5y¹Â«uœ+`LÆHL×»'w* +ä TIpÛѬiY +Jâ6ü~Ì á"˜%È-Õ˜å• ‚«“•˜8 Û½“ZÓ‘˜ љɨÚ:„0¢�Ÿ€XC{ÁqáèØÅ´x?á-„1+ÓÁöGÑq¾`°AS$°0‚<W2Í^ÊpŒï ×ßÝVÌÝ„d’TA”'y¡Ñ›Ä³~TÅè4W¨åÑ1hx0dÆ¢YpÈhÐ#è0vȳ�W`$�Æ^Ÿ—p"™à�$,[gNâŽÈæb1}d4 +h\ÅbÉht* ‹&D×aeßH؇ŽÒÆ3TPàKfŠ$µ$¹ £ +žùü½S á'ããÜ6|jÒ2^@€‘°º€7¸10Ø ýH:ý:P4 €mƒŠ�ÙÍ&§¦¯õ1Wî‹Â¥,©€[Vó®¡›ñƒ¦kcãØ¾+}¾1h-5�œ`#ÁaÂpÃ"$}0Õ’XW䦤Ô`X!>‹J“ä³0S&Ãz¢”¾2ÝY9ÞÅt^iFIχŽxò�`¦=c%¦y©ˆ¨—0Ê}cF{àx¹Ìmëμ ¶b”kØC€Œ5:&Z¨;©luW2‡‡Î\at2‹Ã»TkQ6E@[c€%Ãv¦ãÖ�rÊq! +T nþ #Õ +âé’«VrQ1')tÄ::€’¤ÔÅx'3Gýü„åŠP}ÐW4:x_OâIøˆQ4DpDшNâ ¨Gq(m`æPD….´À¸c”¤˜cñÖŠê °cÈ·ˆ /È5ù%`6PUP@‚L†Qf´‘ò¢SdoEÁhñ€«pDñûƒpTÙSjh£2:Ƈ‚:Œ)¤³‘‘ Ž™4• +£#ÂôqPD2 +Ë”m8©pPüûÑ»èPИ Ùh + ²o$46Žð ð8H›uè± Ô ,“™½Ùr:^›‡¶”A ˆ™— +†¸±ñèØXx|,©[P•:ŽÇ£!>®Áaå†Ãò{t2�0À㛄Á}Gá:(¡É7©F…pD–µ2É&á'h¢jQ‡›ÞÕ6¸Ó„1 :<¸w„l\+åšÎDÜìËjÕÉLÓb‘dó¬XƒL$Édf=UØÄ(Pä\2¿axœÒ‚ØB‡s¬Ä¼Y�ÒŸ&è`Ì@Ç~Бk †¦5 LM” +À�¼ +r¿!=µ }è%¡héÜœdUýaÎ’ýдÒÊru§Ü>IËuŒH˜Î�§AwÀðàxa(A¶Ö´(VÇýt(Ä„=6N@¥Ãp�С¦D"‚¤Ò1Ü„ŽX`A|>eÜã•…€ +ËAôBÓbAä^GÇXøeŽ«ƒI€ÄÅÍPT…AA†'yâHÒ ‡dštN+‚ÑAj0÷h [¡ 0§<>NÒT‹ê@\ Y‘ˆEgغè€J4£ýã§ûœ?( s×ýpc(Ø'ŸZÁEcñ=‹EŒ`ÀÃÀQ{AÕÔæñS ɱјßπ̓nA +ýpñˆ™ËÍå“�ªP€`È8CÚ?÷ТS‘„›/.Aƒ4 +¸Ýc<ÃN�Ž«Jeoj…øµhÄŠ¡•,—GSOtªÚÜd¥ÜÈíƒì‰,±Áð¥tn«ªÒXظÆbÑ9Ú£¨/�Z²ZÏ¥§g×.ñšo@Ñ•×éVÿB¦¼ÓYŽ/êîd„tB1”‹¯Rùýfj>aõì\¶Òý}cø?£ƒÁ¡%¹G±eˆóùÒøçñq <üþWQÛ“ÑYîDªÙ=ÄÈÞÈh¸O{¬otw'yµ¡ÉÕÞÄÁ`L Žb$•D'm2y=ÞÁ‚2!醛{òD¥ \h'('Sâð¶ñ÷‰îÑ1Èzp³x0Œ¨UšÍìÁFFbÓAGöDÇã…6…üƒÁ _€Ùã8Ò0$T:Ø-M)ÛnÛö¦Å h€Á³HùäpP¥É¤¦Ôc�!2Áqˆu@¤èÀj2nÌÎç)& ÜPÄb©Ð^Ñ9D1”-K€1€ „ì÷éBoY‡D9œ9ˆˆþqŠŒ™@€»FGÑÍ‚ .É„77¾qŒÄ†ÒcHSdŠNKr èŽ*`“ü ¦i|ò‹ƒ “‚X�J â „rPa"4&-c¢XÛ`ø,<†fÿ ÀÍ=ÃìFÑ|imníb0¦P”'%šÎ�‘t']œ´ó™©C7iv'€ìhjGêšÞ÷rK¬T î©9«”|™æÒnr +§31ÂdŠÊúÆå›Ÿ¨µ×ás*K�§Eâ�Qši*ñIí[©•S‚8&‹àЀiAßQ ƒåÙRÜì…b*ô°€ŒS6Ó¢x¸—`SíU²s7ßòþ(¸a9]`Z£±q¨¬šn¶ ò�ç`¸‹inƒ(À•¡áf¼}èÔ]QÒ:³·&eŸæ‚üÕXvgmãÚjs4et4ê÷S€—1ÜcÄpy ðu §À6à}ãÔØ ŽNjz¼Å +Ùñ Š <92F‚€(óL†g²²XÖõI$l³Ž¨@;##Ñ4ùdêÔq‡,Ÿú; Ü^<äQNùÆLEΪJqï n°ˆ9�00„ð‚‚à ѨRèñÊ+üc£pqƒ [H !ÇÇ©²R|4ü=u€»ö¤^W#£@ ÂÅ!‰c H+cãÀ>D\<NX8n|ÑsgÅxL>:`3fDЊ˜‚‘€Šå’Z‡É‰%Œôt³g&§(Â{†åó$“b¸Œa¶!?9S‘å©è„aP¨ZÌñyèg¸~ŒJRlÈЄ‹'5½—)®¹Å ÅžÄÙ\0âEa<$úBÅæ ’t‘;1² ³º9 æ*‘a¼à¡ßAH[6²Êa=Àà£cQø“€û´¦©Ù„×Me`rÀáˆ0”~ll<ÿ„®åË×iò¦V9†ª ò¯ Úö\ª´îCKNÔø8t2T7éóQ¡ÄK%Åh³BÍ>EÕ`€õûiýš1KÃ6˜|š®ÆEœÊ¢HÇÃ!±†ÐÜÍÕloÒRê½ãåÇ€"|\,¬„ƒ +9ŽÕ0„Bp2}”¡8ä‘P‹ B~glöŸ‰ ƒ‘ÇudPÚžD«640ÈPA/^¡°FRy� Pƒ4ªBéAFçPD £›¸*}À'Ê\yd”¼â +ð]èlmdN ý¢P4¡ÁƒG¡¥ThÈMzø�Z:½9@2@j‘Ö(Mž/EÁ±à–(IÆÇ¬(‘Œ`Œ,YÎJºpÐJ/C`¡™È(Ð`(D0u"1T>”À¢PÅ4ŽÏBë–»·¦q& ¼: šò0Ò•%3µØ³¤ÅX#³šgpƒQ1æ)¤säø�#r¡¨ ¥MP)à(hW,.®N£cÞÓ4A$ ”€i1‡3 ‚Mâ$$²òÕTŒnᔎ>-HXq**ŒV Ĭ&´h/ÚX¡Y’È ³îG±Pº‘ ƒz†¢&øÉ(ž$‘ïÒ€R`@A |ã’!ȉ¸`ޤ{ÉP4IR%Ž-Gc‚ÇÞd)ŒQŒHðéà<ÉŒ"wC`xÆi,j``ý|(�’TŽa©X,ƒÛÀ€av·8 ¾¤©]EªE„ƒñ€–|Å>0Q>äy˜‘Q(44•@á׸FYCØ7J‹úýªß··Ì šˆZ±ZH2„†À»@ÚH,ŸÐç lŽŽ‚aã _¹/ +ih‚ÔÂc¸4Íq ~¿O†7RT&ˆ¦2˜�⛡KšÖƒ†àجë 1ÊFïxŠ:š±à¥·¤x‚ô†íLò{GÃp³lV’j’ÜaØ"ˆ…Ï/rTÎKL£@Ñh±jLj»–·ø ELE²bÕc8n¸kª=3y,‚ʪƤžXàpž¤UI:+©í(î ó1HúN¨`8t~ŒM0œFÜ@Ø +„@ÑR,þ§�8¢À—áÁY5¢ï¢†ÏÇý²€˜Ðõ ‚‚RãäJr4šãÊÊj_Ó'È9•(Z tÀZ@ºÇ°¤? OÆ¡‚ÂÒèXò:;Z +ª]6 DÁ ´‘}”?Øop#ãhÖ4Èä„¶®/¨Ú$š)âÊéŒùH”òB2°:‰UVVÚ‘°‚EUŽNá£ÝÆ8–ªÃ[@1Qíƒû ë`6¢1¼hS$ìxþÄ£)(´+¯€ºùÆÑêä¾}±+®ˆŒ£Ô Ôa�™ø€[b.èõ¾ +Ç3±ô^ò†Ñãyð´®&5bQëïÖ1à�uX4™…À¼ÑQ*€’& ô(Z| +zioúB„B˜ùÑBè²@ÃäD£àTcp“ã<(Œr €#ÀŒÁïq5Eï£Í'!™bòSˆ ˆ$£>øjÇt† s!´±Ä‰b ¡�NЙ$“[’ƨ€«§b¸£ÌJJ@KE<xµ-¨(š,o¢Àe}--Ô ®‰¦ú•ÁÔ‘�_P$ƒ„Ih/è©éC-’SÞd�-äé8YâʼnRó]Ž`.ôÿÊòÕ‹« £óA×("ÁPé„Þ# ;Š‚|ôzćù9š-júÀJ,Èj\Ë¥X>3æ£G8ˆ70½¢&ÚŠ³þ—C«ü‘8d|°|SÁ±l0hBÍbQ+àg!šA(ƒ»ÚÛ€f·ÆüTb^’�ð§Áñ>?H-ü²€Çö¡�ò�Ù ê©ÏC!ŒCVX rFÃ&ç V¶BáùPPÙ·/¼›$À_üã„0QˆóЇQ‡ã› +`þ úµQÄLuo¢ ©=-È›Ð"x¡}8@V#8º°pÐvt?�~Jo ®J¢sÝAJdè È4ºæü[ಖ¡í!4F Ä”~PÝ›²€rÓÆÇ9»:O‹£igÀ@Þ¥¹a@©,ÃWÀçø|$†Á €ˆ'bðq{ñà9m{ÈÉ…* HUA,N‚aÊ9¶Âˆ¨<¦1tn8Öa8¡)«ÝLaKOÍ€éüRœš‡r§àpÂ#©l ¨cx:†yã�x€‰X8é™Îd½³S¬A"À14í¢ˆÂb6ØWšpY2) +è 4%V-ˆ€-ÉUY*sB0¼gƒÅ½é}¢�V +º�LžPSë§ 3#Ð4‘nŒ¡£Ôa\ôp8¾'"ôó¾+£û®ŒøÆÙHØá`Aî£z8(ó"�ÈkºKç +È0¬{².Œaû®Já‡á FaÏ÷,™Ì1°Ž Îm!œÂG�œFGiø´j€D>70º.ÎЄEáv4šGS¡(´±1êãF@»ƒå�~–-ªZ[R[‘ZÑ@“Ìcä•WúAj£a-RÆÆ�ÞÐ4ˆ„ÐØÞ쨇‰hTG”càQt +íÂPîŒA梹\Í€¡ñÕ|>*቙ð‡Uè@À¼þ®R7º‰äŒn £húQÛñ3£ä#ð/‚G5Áðçx»èz³,¦ƒÐ> P´ +Cf@$TäÞü<X0xEœL£ùO:ƒvÜ…â8™¦‚ñz'€„H#ËñUP.Gp;0 PZ).¯Y}%ÞÆ‰<ÃVá½à@Æü@8t6µ�Ð'À$¡¨–Æ1…޲y>V±ñÃTh2F«�pó,ÈÍÞZ3ñ\k0b@O¦’Ãjss0[|¯··WŠ÷ó×öV—”ñ1(þD+z£ôÈå-Å' q@QðºA¼2H_m�hu¡GG£#�N²ü8j©î9s4c_yåø¾+ý!?ÂÜÐ(¦o=¼ü„ø\>GNœP«4¾oŒ…ŒŒâÏ^v�±ƒ» GAÖSž¯ìGbn4¬ŽìƒL#‹( +›`œXíB¡¹XŒp :¿·RŒïx¹,m1Þô£( +–ÕBN’ÎÀ S�pkbð.ÄôPLGNG>G@[(sü9.¯ªe5^å:A®È ™¨ +AY†Õ2í ÈáÁ0ùBŠ/$ƒ?oµ +R:FXãAi5M‚[@úe´““-hÛ†92.ŽŽ‹19%œÊ�{ƒ’tŽ—j“à ;ûü<p&È4IÀ-dÀA‚à@Á :[ª.Ww±KÑh +mA ¢¥“½žÂÞ^»$Fd!(A`êƒÊ +"öÐ#Ñ$Ï5$4ב�à¡i‡½Í6h{”ö£ÝžÐ4EKñ&ŒÑÞLfåô1&Á0ì…ÂPÐV“ š‹##$¨Øžh‰p>Q4Jà ÍG‚ߴfƒžB‚‰DцRŠJ|ô•W�„‚ãc00à¼E•!¡@1c´½ÄËïöv!´m¤ É{‹Sx• +¡‰(æÁX@QÕÐ<?wÅ¡}WDÐ]! KàDšD»×Rð AX�Ë1T>Êß¡¥D¥eyÓq«¯™-Ó›`HñU^i‰jËHLÙ©E7·†ÑÅÚX‚p ½âPõYœ6‹#:¢<À§¨@N/ÂXÃøŠ +V‹rªV‹=V¨qB•F‹æYiÖë‡ò…uEk@XÂ5ÁI†4ÄrˆíÁjƒ‘i^®‹ZGPÛÖÀïùª{;]K$“C&3š9éf–)Írƒt÷xoÌ/AœÕž L€ÂŽ¢IK`6SÒ¢Z‡»õ ˆ91í_ä¨*¤K`r@pmï�Ò…¶ÇÈ€ ÜŽ(¶Dy�-¤¼ ÉjÄ HA¸ñÅä0¸áˆÆì`m`�Ÿƒ¤†RMÂ6Á$¥®52ÑcHÙÛ{À‚k[ÁÇ“cé,à +î'„ÖÐ‘î ¥%Æ7 IÜb/h.ÐØ6‚tf+R$Ðè{RS+ ÄËñYÓ™€B�þX2| ìn…#O–hosHƒ†¤Ø +Á#hmb1€-;‚ Ál Џ5i9“vbà :FpEK±QÆ‘“ ‡›¹ê²™B2¼Úd�FÛË.š‡œì2/7Ð"/nÚÞ“jÀ4šÈÂè(z““Kq»Ëp9YkX©)AEÛó¥izÓ™âj27w&h¡¦l•PfùÊÞïÔäx=W^Ôj”t¡!¬Ôµ Ùòj—€±cs’ÚpÒÓ@D–7o§WY©ÑV¬3�T¾„°·.éE ‡dSð’´šföLwV·§x©Á²eŠ.€t†Ñ”EGãà«£à-)YÐepZF¡2pAx±¼í`À3*Çç�Àéqb r(Ë—L{‡0.W®ÀŠå•òƒ®©ŒfM(F—`2hŒ"Z¥Ó\V� èÄí#–i¾�÷IqIp8”´ºjt¡ôà6H6ò +�ŽDâXL'pˆQÇ8®ÄA§1Ðí@Â9hÀ5Ž4bÀ[àŸð¿z¼bThƒM؇´"%Ãj»ÙIÓëêN£Öß2“hÿOÌcø*+4)¶$H%Çj:v—âr"#FÛÀd¸>4‰~IŠÆÔ¸YÅI‹ã“¢\ 9»¢N¢s2ô^< hF$4@-';-ê-ÝtÒ3²ÑT஼f7òõÕ|sSµ:€¸QmO–õ þP©Cɉ¡f÷Äx]ÒQÖËkÝœTŠÉ Ë›\y¹97·Ä)Nê‚ÔÒl‚d`”]àË0Üju-a<!éN.³RIP›²1a$Ôb"³w¦TÞ·Ró!Ìa„Š\´SðóÙ¸=É‚ITh´7Þµå…l¦°X¬o¦ò™ÂRÜ�«„¢¶ 4X¡E;í½:Ä70Û{‹¿ +z¸ƒô6'ˆ5;1+ëm^)Ëñšéx¥ˆQŽ Ö ÉðRtTº°âfæŒä-Ç ¼ã./–%¥Zð'j Z·ÜÉfÿpª¼,YÝDvÞÍ-&Ðî~º¼œÈ]‚œÍ–fJµDfjoeÿï›ísŒXÐâ ’5”Aøöž()zÔ Š;‰PÊ(ø:Þ˜‹›ýjs»ÜÚæä:P Å ¡£%{L§èdÜjçkÅöVgæØòÁëóÍmV®ñ*x¡²?F¨ÌKuÓÔÛÙò:4PTá½ ‚pX!îˆE;x+nz:SZJd¦u³ŽØ¡� m†+ch‹ZQw&ìô”¤ƒ¾´Ð#9l–òŠÕ–;fíÔL¾¾QénźfWÙ¡™´2“na.žèzùYÕé‰zCЪÀ$œTÔ²b´à]ÙÂÚôÂùéå³™Ò¢áNñŒ…átM·Ÿ)¯'òûËí“Ð'éØ#ÁðYÝî€[éy^ëpj+[=`8ÍlŠ�»j&ç5gZ1‡²>Hgf¦Ïêî05`à¼Ì²•œ—õž¬wäðËœ\‰Ûe‡c + ×pšV²“Ì£¶¸¹pŒ´PPÍN· D¹H²�cÀZ¼T‰ 'bÒ“Áø‰Ì.ê[ÙÚz¦¼/è.h&TÅç9µ¢9}Íä«›éâ +–fwBÑ8I¹<d’ä¦éLC…¦‹ËµîîÒ›Šíн^~ÉJÎÂÐwæOuNå›ë†Û÷ÒýáüáÉ¥‰m€ +0¡bvE½ a&z’Z)€BZªÑ—¤!)iN)··ÔT£»áå†QÂ&ÙŒn÷3Åå|s«�èRë12i{ŠOBçœPV?_Û˜X:¿tè¦l}¡º¼qðZÓFbYÍžÓ³Fb&W\ïLŸIdW�«¾€€ã6C{šQOìÌ\²°Ò™9]î‚qLf';½M^®Å0ðfà±ó¢ÜµSKÙÚÁZï¤îL+«P èX¡h¥2å‰Ó»w8÷«›×^Lä¦ôD·Ð\/´6¹™Bc}zùÂò¡›ÝÂ<+1#Èy;9UënMIæç7woéÌaãV.Zn×ËNZûÂz²ºOÏĽa¡¹ŸdpLäB*¿X›8Y›:]ž¨LœHV'NeJS†ÛÈTWíô<0•“Y(Ö7:³Çáš XD“âÓŒ²Ù1‰Ì\©u¨Þ?Î+%Q-šN“d-AIÇF¦¼Zé¬tv†Ç¦Î…SÍ®bô€o¡ùnf!S\©uv›'³åÀ´ •TâM/;ŸÙéÝ0SSéÒ’êt¥¢Ø}-10S3¹ê&ôpgæ¤j´(ÚḉC0X¾šðæ§[Ó»õÁnwþl©¹yàÈuÐ3 žŠÑ®.l_Ú8vãÖñ›×θé¾a·Šõu^®ŠZ“Sº;5\¼º=u¼ÒÙžY¾�…#l1^u2sÕÎÁáÒ™ÁÒU©Ý#g?jz=šÏHè©–…Ty9s¢ØÚI–;Ó'I>CRz2ÝS´R(,Hj±ÚÙ^:|óÒÁË»gîxð?g{S†3?µvc¡q¼ÜÖÝAíhÛ’Là B/;Hçr5à‡ƒ‰ì-«µg>ùµdq1–Þ`jþl"ãÄx<YÜ�âÝ9|#«”CQ]g•[¬÷Ž5§ç›ÃÝã§ï8sÃ?¨v7WZ]»zéÀ¥Å«'v.¯»}nñÜÃO>Wíý2ù©Zïp{êdoöÔôڅŃ7öf¬í?sðìí ¬“GV_®ôZÙ…‰¥sëÇïiÌ^pR½\mR÷4ŸRÌž™O×6ÓÕµúÄnsꨛŸìÍ(v7LoधD½šÈL&ó³ÉÜìÌÊåRó +g«š)Í+&8«âáÔl"³ìoMœlOð²½dv ;77[lnækëõÞvúðîé[×v.[ªF£Ü9П9>»v¾7}¼Ñ?RlÒíáüüÙÅÍkHÆÕ@¢5y¢Ö;ThnÍo\ZݺáòmMÌ ¸`ÞÍ�ìÓÅ5;³ž,îvg®ŽëmšNñRYTË…Ú’“ÊÕVÜÜL¦´ÐÒ¨˜›[Í|e±9Ø)Ö׬DK”ó †ƒ¹3–7™¯®Àݪf»P[õ·Så%Nm;Ù™ÎÔÁrkU3«•îþDzP¬-L,œ¨t¶R…ÙÖpû®ÿ .·Z³«çVÝ4X>_íÌUVTc�†¶Õ9täÔ½åÆ*ŶÛìL˜ß<·¸}ajíêåC·šîT"¹(Ç›�öÀ+lÌlÜ4¹|©Ð<\èìæ‘©˜k´×:ƒ œ2c„N;îMÛHܲ¥UÄ®V7ÜÉW– žÞ\ºvÀ-®•:2åÅaDb¸/^LvÇMÏçk›Õþ¡ÖÔéúä)È}^j6S^HÕîJ©µž-§ +S³‡žùÄ—ÚSIÖMå¦ÖoYX¿unýòâöåLmµ×ßzôá=òÏ_�—2³zvåðÓë×uæÎÎo]^8pC"3éš{ßûO¤*“ˆª™ƒT~¥Ú;4»qaçÔ½¹ãKË'>øÌ§ÃÀ@wr·ÖÛÈm½íâ»úÉléÀüìîêÆy€‡n·4€j¾Ø80\¾¸uê¾£×¼¿?nçàÕ«'e£êf§’…ÓÚÉÉBmåÀÉ{¶Ï>�ºÌÌ�ðDµWЬÄO’«l9WÚœX8͉ž¤åÔ�†¬…•:91uôžžž[9Å«åÁâ¥ÖôÙJçàÂ뛳¬ì¦•^åJ&»ÌIEšKfrÓÅúêêÁKûÝ<µv^÷¢Ô‡Ã£wÞ÷aÕ(çË3ÃùSÃ…óFr +îPÛ(Ô7Á”f +ó©üLŒ4X! äÊU÷¯l]{ñ¦GÌî\}p÷š¸YË•fªÝýõþá¹õ‹g®»ÿ·>²½uÕ}pnód"F,BX€¼\iîÍ_ן¿ÚKO<xöÂÅ›sù.íŒäB"¿–«ì_9xWº´A±i73z +%`&@ñûÉÒšå ˵[Þóäîé&¦‹«µÁñR÷°žãĺnôΟ¿û¾Ÿö’CUo¢òír÷èÜæ ¢V#è'dÚ¡hËrzÉ”Øa¦úä™tå�Ïg¦O&R-œQT³Pj¬w†»³‡ûS[ó+Ç5»ŠÉV¢Ñìî6zÇÊÍP13Õoõ6Ï_sïS71BºÞ߮盃¥åÁ®›_„Q¾xá®ïz$‘íúêá�#-8™)�íÄâiè´µõ«¾ðÒ·¦—NšvssûÒÉk^>rÛÆÑ[_¸éàm†=¼öü7Üü(/—œä|h£w¸ÒÚnNžZ½Ð;exƒ³çnÛ¿s^Š—+ýõánº´š-¯µ‡Çœ|ÏÔúådniyí¢¯Žxà|ÃX×´.d¸=]in”+SÝþ'eLôü<hbÜég‹+ÃÅ3NvRÔʃ¥‹frBŠƒ‹èz˹!2ƒBu£à's…ÙDj0\86»~6רÀL +ÕVëÀ÷<e§Z•ÖòâÖ5ý¹Ó^qYwÚF¢Ã)^«C+Òùšwu§æ¤&\¨šô´—V›ë`œVWN¬ožçÓ›:<¿yafíÂÌꙹµ“ÙTjððû>ðõïþdçø Q"Á‰EYklJcÅôù’ n»õ½ýÄæ<X¸ÎôUPÙóÓë7ÏoÝ&P”Á{]¬u·Âè™bKŠ7ꃣ¥æÖÔâ™»ùÄ7¥ó“ÍÞ&N:‚V»CQk€ÜÔ;œ¼}ûðeÝht'öW:«‚Vb„’¬u½ÌB¥}¸ÚÚ¡ÙTÊëgr3¬˜…®KäP:‹;Ó²ZO¥')ÖŽ`¢Ïæ«sÓ‹'¶OÜZì@¾F´PTfE——<'Ù+T7ËÝîܱ¥K‡ÎÞ“ÁŠWšýý¦×ÔÝÆ¡3¬º¹1±[ïnw&wOB½m¥¦99ÏKÙle`0±prfíªÉåcV¦Ç‰‰T®_l,×&vçN7¦ŽÉYNÌçòÃla²€aw“éiM-3ŒëºýÞìñæÔ¯0Óž:ZénËz9Wž0¨VS³»šÓåälŒ´)Ú;wöNôteØ,”ò9*8#9)Ÿ-L¶[ Îþ#wæ¯Mæ·æ–.uæN›éa»¿}éŽ'e³ö÷';X¡¢ÉÒv{þ†Ly3Œ‚œ«·7!CUÚ[Ãå³³ë×mïÞ¹uð–FïH±¾ß²j§ÏÞ>1s0FšŒ\dÅ‚î]uó«@^~AÖrÇŽ_W¯/qÍ^±¶žÌ¯€ry¹åZïH6;½¼~¾ÜZèåJj HÒ¶;íîfò€/1\†²�ïDjÚË/îT©±?WZ*sÙ)M+OÏh˜éÍîïM+¥)¶7'V¶n°S8í>šÞä`öªþÜ©þìÉáÜiÝTkKW_ÿ€,g4«Wé¢èÎ^µyêî•Ke0Šbñò--¯¡@šõ2kŠ^e¥TŒ2![™vOÓàH£®{ÓÅæúÄQ(X´Q“Mkñj:ÓGEœ4ÐóÔFßpg¹§ÄÁÒôÃQ…å,7ÕL'’…©bkb‘™œ,ÖÖ’ÙË®uÛ«›»×åËŠÙPŒ¦îôÉYË›K7ÊÝ]I¯‚ך©#í©ÝöÌq%Ñ£ÄÌ\)Þ.•&Oœ¿ÿÈù‡ZS§Lw‚æ 7ÒÍÑS?˜í÷³±¨¢¨%ædaÆÉM¥ÊŒœV™Y>£)Ç«ùÊJî,°b³¿å$Û’–F(¬Ä0#fC)™žÌœh Oôæ¯IV×!“¬m%:Î!/³ÈI 0í’^a¥Lor§?{g¸Tzó—”Ͷ`öÑ|E¢g»œrš½Ý•훋µzk}rîX¦´—L´Ïœ¹=_ì‡q-]Y«öŽ —.-¬ßèe—Åx‡•Š–Ý<wæŽry–fRÕæÆòæ5ý©cÅÚþbm[ÒšùüÜìüi–Ëd²3[»wN/_ÊVÄd›’ã-hi¥¹7Ë0R¢”Ë’¹¹É¹SË®Wõv4¢$ÌÒƒï}Êóúå‰jU·:ºÕË•6¦/¬ì¿{µ2³²}jµÚ¤hƒã“$éá¸ËÐY–As›û¯)661 +2µE0Ny1"-k½¸=©ûFpÈÚvbÖç§ÑÞ6Â�ç·»J¼nhÕC;×çš‹8gÑbв€jÛ›±ÝIQÊ„‚¼ÀçéYݛʖ¡pV¾Œá–(fãFIVRÅò¬“™4’ÃTyµ3},•Êç&¹~eë¬ÏðRºX]œY¼j~õbÅy=1`Äôgµ¾‚®ê GV·o™Y>øÄÝÛÇîˆÛ•V}úÄ™[«U-¢‰µL~¥P†Ì^‰á Y©Pl"“Õx±9<¼´}yjñ4Ä«#§\X»T,Îíl_;½xF³šR¼×!Ù”cÏ(r=†45IÉZnu¢°LK5^C`‡PÍ&Í'eÒ8‘/#Vuä""Q•f\Ãh†´Ï‡!–ÈÌÖÚ;Áá<Øo1Ï +ÙîÄ‘éÅsP¼œPiÊW×Ñ×§¨y‚†>ÏgJsªYÕÊžùo¤òËíÁîìâ5Þ$H›ãÒ©ôjê]ÕàU ,'ÒŠÒ HO”ºÝ啯4œÔì`öôÊÖ‹›7Ô»‡@B'4ŒP(Æ•²››+Õסl«‘pÛ ?„òV›-A,‰RYQjnÎOm]}ÝgEcA`=lRj’¦“á¬k¥—þåûëkGƒA†¡T®°žÎm”kËõmôeA!“™òб$-¨»x)n×]¯½½s¾:±„sqAK{ù 'Û'`DÊÐ@аrÙY7= ZÆŠièsœ²Y>-HEÝj«¨ÓrGŽ]nô7œL_2kœšã¥”•¨U!î¹-†1«ÖîïovÖl¯Mq‰`Tú…pW¨È RL·_íž_?F¥ÖYuÒŠ7§gÖO\¸ÅHTÆœ¨´ã‰'9gÚèŸé‚e-7¶ãNÇEÓ*µ'N¯œY?xÝÜú…þÌn2;‘Ëõ/^¼åôÅ;™Kqk°'Ó¹EMmP”K òI^HÁ(�¶ãÞPµ§tw¶Ò>ÖèŸâäRS·–+ÎjFÚ¾TQ«ŠRU¤ +E$‚>2¢YÆ–Õ¢ãM@Rw“ Ýì8Þ¤át¢x¼ÔX.¶÷'K‹’^‚ÐDщ„ÛéNìB<†„PH”Õo¾´ÜêÊäöy![ml‚œ/&³“íÉ]Ý +j#Ìd„É&ÌÜÄÂ…ÙÕ«'ç¯*7¶D¥‰‘)踗IJ—”Bº¸°|ðÆáÂ…t~EÑëpqš÷d£¬%ͨ9‰a¡´R*¯à ¤l<^òY¿Â"…«"ŸŽE5´™0,[Fýü™[ÊÙ^ÀGKBÖIM)ñ†¦5%©ÈñÙPH¡H·R^•媯Fb"AAͦÓù‡+Ûµábub~°°¾yôª3æ¶Ù…–b—ÓùéD¢ŸNOKr!“H*.Š®i•½t7•ï[ɺn”[Ó×ßòàú‘óåî¬häd«”)õzs›éöÎèðûõÚl:Û GXEæçcT›ûÛÓ§Ýâ +«ä;_î̺Ş[lËN”’™ñÊÕáÆFuf…73¼šFÓãj#uŸ?Ã�v¡º2˜=wò‚¨kf:‘kKzÊp‹N¶©:¥t±7·²µzø¸WéҒ뤆^fnï9c|÷8/W—ó%09P> (äbk"·�)‰SK”æ”T¶ÒÕÝÆjo*V¹5<$HåpXñ¡«bZ‘r,ëâ„ÅuŠuM§ãx +ÂÁ Þ±«®ß:v1Yê16Jévj*™›ç¥‚ÏGùýt(,2¬Çñ™p}B4fj:Hêt®¼šÌÌVãø™ËŽœöæ-ÂDpv¶§&ê8kÈñtµ»®š Y¯¤A£y©>1}~aõz75G€–¢²¥Y#Q‹ÛMÃn[NËN¶šÃÍæÔþT¡W¨Ì«k•ÆV6¿ +ˆû®Žâ’\L%'ð˜<6ñ“±ˆaívg»ZÛ/+õ`P +øY–KhVuÔGŒù _€‘µv¹~¤PܯHµXÔpÜŽiáþ£»GÎ^sù¶yÿcO?ýñç?ýï|ë7ÞúËüçÛÿöîË?üÙ÷=6œß…{îíùl ¼nm²ßYNo,,nì>~ñÚË>òþ»ß÷èM<xîæ[¯¿ãž;ßûþ÷ÜûÈ_øòç¾ô¥ƒG¯Ú=z±Õ['À IÛk%R]EÏ%¥NwfemkçБs×\¼å=w½÷ñ÷àc½éÁ÷]ºãþ{~ò#ŸþäK_ÿê×¾ûƒ/ó;üè§=g&Ê,ïà„"pv&Õ)û–“.”›s‹[‡O¯n\\YÚ¿³vèı³×<ùÔ?ý앟ÿæ·o½øoÜtç}óK‡Š¥!ŽëxÔ$qGàÒÅÂl§³_Ó‘ˆ¤Çó3;sûë½¥Rk¶>X:zæÆ[îyï<þ¹_¼ÿÑ'î|èý÷<ú¤›í‚•ºÃ¢ª®V½eÙ}Ãlb*“ï–jƒVwrbzmmÿɳ×ÜöØ?>ýäSO}ó»ßûåëo|ù›ßº|û=k›§:Ý•¸Q%)— - E-€›…Æb:ÇeòÅ…ÞÔÁb}¦XŸ<ÝÍüøÇŸøÈ‡ï~ïC¾ÿwÝ÷¾ÛÞóÀCÿã—¿ýÝ?ûì{îðÜå;4³J:Ž©²œvÜ^67o™íbiÆóš…Âpb¸qääÕË«+ç.^{í·ÞrçÝÏá‹¿ÿãŸþí?ýñw_óͧžùX«5ïós~¿E—É,ÕjÛ‘° 4©zE’+¤iG’3Šš«T†'N\¼|ëÝ篿í®~âCO_uճƒ™£†YC{Y¯Àãrjf°tèÀ±«Ï^}ÛM7~ðïéÅ~ùÚ¯ÞúÝo_ýÕ/^ýõÿúÛß~ûûýò¿|íéþØî©kÛÃÃ$¦I/©Ü*–2•iˆÇ/\ºö†[n»ý‰'žøÒW¿ö•o~ûS_xá™g?þµo}ë•_ÿæ…—¾òÝo¿ü·¿ýíů½üÁþ̹ëî(VfÕé…CÞ’›ªÕªÍõµ®¿ððCïùÈG>ø©Ï~â›ßýæo¿ýÝW~öå—_þÞOþî»ú?ÿ÷ÿþé?àN~ÿÝŸüä¡'žšZ<”Î 0EÁÌ¥ÊýÎÔÎÎAx;~â¶;ïüЇŸ~î…Ï|ô³Ÿ|úSŸ|îÅ~üÊOõë_þáß÷?ÿûÞøíÛÏüóÇ/ßtw½1ojME¨fÒsõÖ6æXÊL9e îÇOÝu÷=<þÄ#O}èá<õâW¿ñ£Ÿ¿ò“W_ùÓ_ÿôçÿøÏ_ÿæ·¿ýÝï^üòןº©Z_Ç[ž;ÅéÂl*;˜®mm¹êÌ…ßûÀãOýãGžýÔó/½ôãWñËß¼ñÊë¯ÿú7ßýó;ÿëÿý¨ÖýìWŸûü×jåHLMİxítD©à$ZõÚôî‘S<ü¾{ø£Ÿ}ö'¯ýâÕ×ýõïç¥o|õ·ß|ówoýüµWþøîÿ¿ÿó¿ûö[Ÿzþ¹ëo¼½\TðÛ\4*д©kùNkyyñà™Ó×¼çÞ‡yüñ/~åÅŸþòßùñ¾öoýîøëý×›o¿ùÆ›¯ýí¿ÿöó_ÿò½>6=·Óèl9ÞÃÐæç`€×¤Œ®f3©v·»ždfvõäÙ‹üÃßyî3¯¼öË·~ÿû¯~û›¿xý×ÿëþçÝ¿þõ3/|þÑ'»óîûS© Më¨BbarùðÖ‘kÏœ¿ãæëîÏÍxìþo|õóÿþo¿D¿ñæ¯~ñ‹~þ¿ýöË;;;ÕÆD:?ŲiŠ´ÑÓåDÊNöëíSGß{Ͻï{ø½<úðÇ?úÌ~üÃüè‡_úêK/¿üwÿüçŸþòÕç_øÜç¿øù›ï¸wÿÎÙáô–mWó™^£5[ J¥öúòÝC'w·ï»õúùÒç¿öµ¿ý¯½ñæ¯ÿø—¿¾òë×_ùÕ/ß~û7ÿñŸyûßßþÆ÷¾þà£÷í?x4[˜vհж‘î6ë«.^¸tîì¹³§NÞ{×m/¾ø¹×^ûÙëoý懯¼òï|ý—¯ÿì_ÿæ›o½öÛ· X^ý‹/ÜvÇ=½ášÀ§.å¹½|qIóšœÊº•A³üðö“ÿðÐW¿ôÅ—¿÷ç¾ø¹Ÿ¾ò“wþôî_ÿóo¯½ñ³wþø»W_ûéóÏü¹ç?uúÂõnºvÈÊN´Ó¹‰l®·0¿¾¶¼~îÌÙ>õø'?õ±Ï>ÿéÏñ¹ŸþüÇÿñßÿõ¯ïüñ•_½ò½ïõÝw~ÿÛß¿ýâW¾ôäN ‚[4,ã1¦z¼Ò묵Ó'xòŸøÄg?ñé/<ÿ“WöÎ_Þ}ç¯ùñ«?yýÍ×Þy÷ßÿí¿{å?úÍo^ùù+ßêƒßzûåÊ„näpB�h%Üz*ÙÈg:Û›‡ß÷Ðû¾ü•¯ü䕟~÷ß~û_ß|çÏï¼ùö[¿úÍëùëŸà:?øá7~üÓ—þêŸz꯿}çäºÝôûy³Lãè8á$Κ^½öšKï}ßCŸûâç?ÿŒægü“ïýçÿçïþðûŸ@ÙýüÇ0PŸzîc7ÝtÃáƒ'Ò™a»s(i†é~{Ъԗf·¶7WWæŽ^½ç®‹<rë]w^¼ñú3íVÉK²¨Ð´ÌÒz4,DÃ<åEÆÈÙ…v¡=ÝšŸž:~äб£;û×g¯¹xèÁû¯yô}7ß~Û wÜuÇÕ—¯[XYMgʦUKçÀ{·H\¥ U`ã§‚q9wêÒ‘#'kÅÒd½|êÐÚÍ×_õз<ùä=ßþú~tóú«oþöÏ~æéën8¿¸º”L\¯.AteL–µÌxúÌÉk.]ºm0\ìt&Vf¦w7–®;äÙüÃw^þÒëo¼öö¿¾ñï}é+/}ꋟûðÇþéǺéªcG&'—’™Žk‚$i;†\ÃE""IŽê´ +¹“Û›Þ}ó—žö¥¯|îÅžþÙÿåOúýg?ó¡;.Ÿ:sdcfbØjõx^‹E9YJ‹åxI¢£Šz.YœhOZÛÛÕ§ŸzüþOüócÿòÒ³¯½ö£ûÃ[þË^ýÙW?öÌ÷ÞrvÐkr¬Ê2 QÈF#`iÐå Ÿh;ç6 +nee~éÀæú…gn¾ñº»n»ñ»oyá3Ï|û[/}áùO<÷ì‡>ù‘ǾøÜG»ïö«O«•»’œ (•¢tžs5[©ÌznU`´BªtüàÑ{ï~ϳýð?}àý÷Þqû3xü‡ßùåo¿ôþû¯ÿðÃw=óØý7\:{ìàÖÜp¶Zžš;žJO\((ql†$t,³¤RË·Nìº÷ö›¾ð§^|ésÏüÓcO=ñàsÏ>ýÃïÿà“ýè}·Ýº{`§Ûîi²Ã±6NX±ˆÓ!±”"rqוJéÉÕµõƒrܤð–*Aª8®0´)^,&†"A†%-K0¤.±¶Œ^º*›¹t-å•’£I†¡xU6ÅŽÛUœvB‹)zNÁ`¼Ï©–åƒ&ŽÖ-BJZÓœ„áHkHr5—mÕ+Kó³§®:»µ³](`#Q.a!t€UÆ0=U¢1Ù0ŠÉdSUÓ<oÅU7ëf Žf]¯ZÈ•Åf«»°´–N¦K™ìì`ЯU“šÅ‘*¤fŽó%ŸÊMKjid4 +n'aµ,’2óµv»P.{nÑõv÷oÍ êJv~rPÌ75ÕÑÔ”$•Ú„„p È ø©¿“•"m½Þ©-T²v¡~Ïm7_8y´WÎ/ô»ƒzsmz¸>Õm›)Œýãx8ÈFÇǰPî¢I[æÓŽYÍ@ÌÊUK…º¡%‚1U§˜j&B£Ôž./M.9q½œ.&¬Ä±¨ì +¾ ˆŽi¶l»©(išÒ*7“Íô ¨xe0qxcûòâòYÛ̱8‘6íJºèêÏ�aò€"ÃjMÌœMx3¡tåÿã#ÊsÓ$ÖÑ;ëd+™R1«æ`ß5FÐy-¡—\«žr[éÔ†A¥Xéì¤awG®Œ�Tü~2hBÅ|<^m5Oœ½§-oYRµz\oB®„,AÚÐ,æÊÆÆ"ðòùÉ`€c)Ksn¢g¸R”äú"©¨ŽrëQtú\•JãC4†K8©ƒ±X‹$”XLä‚bÖÌDÓ¶k$)R¤( &Çê’äV…æÈþ¼‡RA÷àu)*ÁqI^p%9ÔhT&I#æ0LŒÅs!#›F]–ªVaÙDÂÊëFjÜöánËRd]RênzI+�˜"ãÁ�ôXˆŠ‰hgÙ³kºš9Cä<³ }‡Âòß-FtŽM“¸p1ô¤’Ž8•Œbhœ(¦õ™ÇÎW +ÍH ªó¶!ft1%As€£Æ°€Ÿá™LÀOï»Òï÷‘<›ŒDxAÉ”÷£ò3Ó“€»J¸JmÝuûéDSb +W)L^œ>¤J) ;¸+Ö«ê=ËîrB#-*zïËoíÄd"½X¬ª¶v†óÜÌ|(§7+3eìÑ7ZX®3±°x~bê´ –ÇF‰ l”ç969:FÀhF£*K{¶Õ-WÖò¹ÅXXöa<¢©G‰[é±\R3|œ›œ§}~ÜÀA< (ÈbAE׋¢X(æÀ-izUQ«“b¹¬ˆ¶µ'h6ƒS‰‘‘ÐØX>4’6ÉeM«üZõNÿð¸òùptI-[‰iÃÀeiÊÖ•ôÄ`]‰—ý~* C!š¢¬ByÓË-š‰¾¢ŠÅn2]'H Þ‰�az$Õ͉jã8`H‚ô.‰J¡0¨£O7›†Þ ¡/FÊXÖ†dzÃÏ»Þ@Tóþ�IŽmO8‰¾(•:-ÈHÌ +€_4*Ž '¢á� +PÑ0'pI(7†N�IÆbæ¾½¯ûÀq›$Ó8޾s@KŠ„Á*¸$í¡oÒHpú*•™*TæÎ…–ý”Ħ�c#Ñ1ô¬:á$o"R�¯PˆÃCa zm0àó^j!™]Å GQ2nª/(EÀv4(ùÐþvš§½^s[•³)‹Yka„Åœú¶¨ª“œ7“$åñ|BJwòT®¼Áñ%^,Gc–ßO;Funö*–NŽŽÄx1/Ie]ºv‹¡=pï£û"X˜__>%¹@PÄÍe©b;ÓåÚŽ®÷B)ÚÒðûŠÐ%± }͘°ÝY-ÞB_AIÛ†™S̼?H‡#*úP½mzƒtn~0s¼T_–µ‚f6î$'í䌨6p:Ý{¾Š'öžñc.Çq9šIzÃJôÇ}4‚mrRÎNMñz7àŸÅ\gkû¬îtЇ¤År�õ$d"Ó@O»°ºÿ8@‹Zв\—¤Z\ïÖ$ ]SrI¯M’Úø8cÁ0Ž(âV?]Xuܞ˗K‹^ªmAŒÇY6 Ä7¡)Ê•¹d·µ.)%Á€Ÿ d‚LcD +ÃÝTvL×è EéˆXL¢)+ƒŽ¾"Ò“¤ +�†Ã]X&Gž/@‡£*Í—É™rmEÕkј¾ßŒLá¤ö^’Pþ€ ©MY,\ÿá:Îl<Þ%‰$úîe¿iBSp?aEcñØÞF‚L ¯4a¡g2Ë«gz“û> w®È5I(JBIJá»@U)"‹m¢ÍØ$“/Tv6Ýמ8‘.t‚¦WX}aMÐVn?éu,£mèmÏÆ¢hj;ê'>f|)ë®ÛaØ4`U‹WÃ`?¢ 1:zôl~“¥(¦¼+¯ðà ðŒÍs©@Póu_@cFÇ9°‘Çv¯[=x/,„bq)Þ³Ò+¹ÆÁJ÷°WXÔŒÆüäÎùË÷3r6ŒkaL'èÕ´øD"µÆàŠpö…-ËeE.ó<tHŽáóÀ$¼äÊzNÐʬ\¦ávx¹ Åëvj.W> [= n5^¤yô ˜ VÇirb’â\P^A@56Ž‘¨ +ðS”²©7$ Ô–MŠnÇHâÊ¢ÒÓŒžavL»ÍÌdz8¡…B,\ +8„Š¢TNy½£»×iñ’ÏOƒ,C§E±ª(MEmñR ºbïÙ3·”*3ºA– ðTq½ eHàªét)3î'ý&qÒ䥢íMÐ\RÑÊkÛW[Éþ¾Qlß¾3Y.Ãóù„;Èå籘ôÑ"ëÊjqtŒÚ{Ñ𢨬ëNf3Óq½j˜Mœ´üA>S1Âä…|t«déÀõJ0fNNj÷Ót2’ý~!”I”„$(¦oœÄ\¡¼ž+¯3|=~E$4§_œ˜^¹`Øm +QnBŸËj%SpL„¤½ý\Ðw¸¾°„0Á–IÒ¤ƒEÁHÁBPÞÖë«¶o_Øïç€EkRà*<WÂqK*Õà‚c£áH˜¯E“®f÷Á¢”J³‰L7�ùˆq©ÀkU¯¸,MN.8nïð¡.Þú#eX!m¹ƒtf)›Y*׬ÔìxPTÄÜòÜ)ÓjŽH€dž+zÉ™…ÕëÚƒÝ|¾æümŠÕ”ôj¾¶\éîÔú‡šÃc©Ó†7ÍËùbvðÄã^Ø< %IQ&IÙ“R´V6¿®›ƒú6xHƒB_žSæ„*ÃWE©éz³nz#¿Ÿ`ÑŽ ôtɤ8¾�/E©f«ÞÜoµtª›ÌLÓl*n´íÔLÜé3R £\ŒHÀÝ‚kÚ{7¡hTfV‘J`Ýdƒfm†¶%1¸ŠF4šI bì'æDµ¢u`¨âÿŸ¤÷þ’ãºïÿ˜Ü9T骫º:ç§§§'çˆÁ0�€HD$A$HQÌI¢DQ”lY‰²dÉZÅ'iŸ-‡õúíç=ëõþòÞžým¿ÓgÎÌ�Ó]uï÷û uïý~Ýn +Ô»k‚`èËet«Ó˜=Ƹì˜Ë©’ ‰bh3?PÆa@mbÚø‰“áÂ#0(ª$Š Ð'¢\¤*Íå0*Áy·A§ð”Í Q«ù}‚ÈÆîÞyEV²�cch(¤3t’$£ µ|>žç2—¢(.&™ÍTפhÇLÏrR‰ â³…ãöØ(æš`Ã!‹ 2ß”Än `M¸x‹Æb=P> ¥á¾FGÂ#Ãa¸<’,D¢ýtv ,†l‹sšL@BçP˜[ +†-Q©ÙÉhZYLëFÒí »½„×Ç;dPgáhË’9¥Dðé nš©Y%:KÍw¦Îwf.'KË<ŸN§ûÑÔEC&(®nºHxÏF}KTœ:9(bÒÎè%d¹TªmÄÒÓùüÌñÕG¬Zà´|¹»ÓœkÍž+´v2Õ-Z(Ò\¢ß]ûîŸüÕ…›/ÂŽ¢X’äF2½ž/íqBMÓN’b¶sÏòrW‹.$ó§½§£é¥øML3Í‚E=~É ”Œ‰J4Íåõh¯V[¹wÿ¹Õ§}ð>%+5g$棧Gç¢ñeP&Jóù'Ut¢Î‡@ÄçvJ„‚j:Ù—å"ĶËÅÒdÌЫ¬P”ºiWš;Ùò:JDý@EÂí¢@×)z-QXεh¹Æ«uŘýæñÎZ¡Õ†?´sÉԄʰSÎ…OðxÀªy¡Â e†w +Ú°RUÔ;œR‡Dv?)†“)¸#U¯FÆÌô6Ž«Ï�V’R!66ŽŒE!/ðiøD·céh*Ó‹e¦h1oØ}V¬°\!bv6ãT²rªæ¦Ô~R Àð8Eä’ª\Ífæ€BAAt/ðø(FS‚ÌÐl`0 h%”Ÿzj|Ä©´â*#EYÀ½áÆìøò‘·Û L!äø�óñ8x¥hb¾6y‰MEÓ1ÒT¢]5Ö‹åäHÔÅ ¾þòL¯>ó‚€I ë’RÕÍŽftÜ^&àe"îóËããT0$‚P·SƒLi-U\¦Ø¨fäëS;Îfc¥àœ5ˆ÷såµöäþìâñ飇œ”c¢i¶œº©R® +°!m+Þ}!ulœ°ã‹éËí¹ãX~™æKa"@�‹JùÒ²lÔ)>ËY^ùÚТ-àq=ÞŠç&›½õx~@Z«³5»þL‘SZ‚Ú†—ǯô'wî?|?WL¸iП^Áñr*µ–/I¤—'ä´HdÌQ/c%gç—¯_£Ò>‘±ÍÍãù…s゘É××ʽƒÊÔ¹™Õ[ëû¯ë‡ Bi&*iE‚ƒŠÞ$˜‚Ç)|!{¼¬s<|…€úÍ@Ð9‰R^ï$ª»fv¥²(ahFUPÊ€cŸ•’jµrÕ5Ãlkæv³g‡«¡°>>A¸ÝàŽ5 €§¦l`y3>°Ó‹´P¡¸’éW;ç²ÅW £X‚å+•¥ +æHåÍB¨T i:áv9«™NÅž˜»,ÇM«ö©§Æ\ãØÄ:>Š�”³àxpâY–+RdÂ玖<žc óh.+È•Li%]\9zîá磉.+æ +Sñ,L\§;unjp!WÛö„”ñqœfR4ð&•Ä2Ífpš€ÎåJ‡ûÅœíXÉAª¼fĦ523½wï¥a†(]\/9‰¿Zjí›»vzÁEJê¸=`íi‚ŒC€%2++{÷;óÃxÔëaH:@·OwS�2¢ÖΔOl?k'¦¢ñ^¦¼ˆ3Ñq7†‘–ï.n?}÷¥÷®Ü}£·xWÙDíô™[šÝs3LÒ¥eAëfŠký¹=-Rôô\å´_ ˜‚¬´Dµk@¸åêj£³W$ºb4ÔH“WJî€kSógóµ¥ ®XñvoáÜÌæåöìéJ÷T<·È«%Ž‹ü•ï^¿óF øRyòb¡}¨èS.7sÔëlìž¾{â$˜Öˆdô2ͽÖòÕîÊ »¸Àc³ú…/º·}ÂEƒ«5cƒZïü鋯v¦/;…ãF|g˜Ôè8>áf bY¡.(pg`>†"MšI„²¸Ô9hÎ/ï¿°~ørwöLJ†ÞÔíyœR«8|Œ�ÐDwîj2»pªH W¼Îô˜'` Ep§ +7¨÷aÐ?c8ZHX§È$Èl‰W†C çM�O’Ôa*½œ!§£àqbéÙrkgl^.•;¹ú^,»Úž:Š&çr¸n†À4YÉ…QyÅçð”].!´u°œR �Sâs–]Gp%„ÊO¶e‹õþòÓƒ<—êõv* ”¶@}Åsfr†•jÅÚvsê0šœ•Â¥tnÉNLÇ’3Ùç”F‹ó<dnrx4<4Š„ÂF&·”ʯ%‹›ÑÔ<I'�¬òÕeɨ„PCRk@@õöúáñ³WžyeyûiFÊtZËÏ>|;w*{ª»‡—_{ðÙ¯Íî¾ Gg1:SÃÒÙ\aÕíÔy#P§N å(8™0¢}§>€S‘›GQÛÂX£ÓŠÙŽ&ç²Õu=ÚluW/ÞÓÍ&ÉÄPB%ù,!äyµX¬¯ž½ò8Sœq`f³4ªšOñøÑrééÉÞi E³±ÈJF,kÑ->®,õ—.Üxø~oáhdŒB‰x$6PŒ.ÅfÁCŽ2�)ª\’¤Ü‰“^_TÌA,½¥šÍœ9^›f¨Dqsçðîµom»?X½n¥�êGÇÁû°wŸÿ(_^©‰¢qÃê!h‚a‹™Â +x[È£PP(²˜Ûx<à8M‹ ;¿(l§ò›ž ‡LMk¡akdÈ76J<)‚J—Qäó9'€zƒP³pmÎÍ∠=>/[ÎÆ`-Ùj’嬤÷xp¬Jâ6ÏÄh* +!D�„bšªÀÅr(ž˜õzùZy5S8Uõ&0ð‚\/·öšƒ£|cÅ2 +7®¿²´~ÄÔd~ayçÞÜújçp°xuzåšbuÆ]”iƒÕEpQ†”dʲڃxÔò€°ÓûÆŽXmšÏáLšJ8Uçt$#æY±`ŦX>-‰©æäVgö°5{¶Ø\YÞ¸2³tA‹4¬X·1¹ßìíugOÉé�–pÊ>û¥˜ÕÍVÆ&¨Ñ1‚+š5“ —©€ðË•;%( V(ÅÒ½Å+µÉsÉÜ‚¦÷®¼öþ'À›0†nÉz¯ÒÚ?sñ¥kÏ}Ð]¼¡ë +ñÌd$Ñ"Æ“fC䄇G1Œ ‚F‘óˆS—˜ô ^n%ó+§/>xá¯^}þ‰ò†Ë'sb†"ˆD`¦€Å<#I Al€Á 4™ñÚ©¯€ ‚¹²VA´“6 ÀôÜ~o°›ÊÍDS¬Ü¡„ +#VJ&ço`TÆí‘{F6Nu7N}ûAby +C'ÆN>5î‡pAÏòJÁcã¬/h«sž€y=’ϧúü*x(‹9e´‰X¶ºÆv.;MQ—‡†[H¶ŒÄ²bö“å-È#`[ÙyNÕ"Ù<Üh~€JŸWðyÅ _ÛÃðI K!ÔŸ”%L³ísÊU…`"\^®„‹²Ó2£‹7›íˆÙäùÌÌÒñÜÆÕúÔ)=Ö`ø8NÛaÌ +…tM«‘¸é÷q }&[<SkÏ,ßAâÏ,ˤ"ÑH#¯Ÿ{Ë ÷«ê—— +Ý©V{“¦LU +¥ùÕS·Ï^}åèêã{?ª÷$©úÌ¥‡/½ò¾¨æÜDÈ$–!·Þ>^Xyó'‡Ã#€!dÚ°§5Hd,Ùíž`@lƒ8=d5ÒÑ® +êŽIdBó…òâ`ë*-–½\Ùiu.fó+óËÇ‹›W9¹äó‹£ôèõ/걩ÑQ:²x 4yŸæÊþ RèÊõÀÁy|¬ –âé…Ta¹7wxñæãõÓ·8µfšK—€ï„4Ýì&3Ùüj:·Î‹m§–‡fè-൑QÐÏ‘Li½Þ?H—VA¡a¸‘Hv}~Þãã ´ ¶Ï?lÜiÌ\¤øâÉ!”@cž~•3ÀðþBRŠ>/Ÿ.TFœg\^¿¢èØÈ(ò¤¹›·Î– {^[ð‰Ž¢ +Ød›C°Å‚Ÿm.n];¾ûV�îˆK#HAœÝkšÕÑì¾™^±²ë—#‰X©¸Äò`½Up^(HrE©2Á€ÞxØ32Œ;ÕΩ'%ˤ _'ñ8Eü>FªÙLäf……J÷´™˜/KLYñÉê4gЬ%ŠYAÊëF˶gB kýKE1<âõ1 Py.KÑN‰¿pØâ˜<8kðDìÁà „5á‚y¡œÎ.èfÇuŠÐ#Ñ¢nå~kîôôòÅrmX\ÚÚ¾V¬ÍSlÜNôóµ]ÑèÄ2‹ÙÊŽf͇Ã)‰)JEs ®¼à ÝÜña¨ø†)áXÔõȘïä°;RL«K,•jû+§Ÿ ¦k¥½g¬Ô�àËçBOw0LÎŽMUZ[£Ìø%p@E·— ÁËëx±‰ö0õ°©GÓq¿_!@µ³4ß™<;¿|<—$ç[“û› d‹u=)îíqÓóùœ4ƒáÍäM»/ÃÅD»œ\áÕj§¿/HŽO¶'·S§à7“ ‘ ¢Ëj=š�ǽåh´£‰%+¶”*¬ÉZÛíÑ!ö<n¶ÛZŸ;唉Ç!]ЩÊfµ{VL V¤žÏOŽ…†Nx @Øñž¬!¼n64à%ˆ^.2\ +|Y¦²*nµW2åm#6Â#RkuT£â1Ÿ?¦Õç4Ë£].rb‚ŸÀß—á÷ÕðH<…m +µã‘êÒò9’‹sR¦=wöèÆ›ço¿Ó]¾ªÅgh.ej¹µÅÓËË—I¾€ˆ8«Q‹ØVÇ4¿ŸÒÕœ*çÀ°àD*Œ¦=^ýI�^gÍŽlÄEÁ݈RSêà#˜ΩÆäêÜòÞÚ©+[‡w¶ní_xnnõr¶±3ñjeþÔî5^Lâ¨ÍpuE›Â°T0¨ƒ¹5$laXCbAX!™g³¢Rfù¸ªåQ\'¨Éd&#h5Ãj4šk/¿ ëI.€³`ù¼¢Wã‰9]ï2lÄpÌnVË˧vÐíBaK’ë¼Xæ…"IئYÔ…–<•[íÎ÷.ì<€ï!÷»ÝÍÝë¿/.‡":îlÅaÌq Ó˵QΈAàAºIz#QZk-^Ý<ý|"ÙßÚ8ÿg?ú•ï»Ü +Ã5ÀS«›×ï¾}åö»rdjhƒ¬Å| +¤Õ˜ScõxU›ŠDªVCÂ*'¿÷ûwû…1·8î4òг#*y¯ŸíñP.îröžñ˜³x?A2yQgTÕ¯®Æò3‰Âb±½Í.IVr§{z{ïyÝj¹ÜNñŽÉáx<Ô%ÊäNs4ƹ÷€ò«bØV¹Û_7cÍzkuyïz¾±”o¬Æ‹+œÖÁét4RÝݼ²¶q{ÒDÃà)*%ˆU†ËÊr™¢“²”+fHÒ¯ô`kß Ù‚çIñggÜ4ä8ÐÊ“Õp)6>%jE˜ßFsõþõÍïÿtvå~°ÏÎw‡ÕæÖtoyñÐ0ò†^Òôš¢Ö4£CR[vZ,"Z>/?á¬a…F†ýã˜{‚ 0+i÷¦ö—×/¹},¨ÄiÌgIF-S\Ï•·´H‹ ^o»R[ :Uú‚�Eê,1ÏgûåâìØHx|#ðø;1&&hŸrJ㸌mA`8©´¬–ã™fµ©Ä‹U€îÞäÖ`fßíæà2:Lð hX¡É(ЍñD›<ÄÐ<QA.©VÛ��QÊ®ç3«WŸxä„F¡tP¬ì›æd:=ˆ'§H&"\ò¥ü,¤ÕðHàIÏ‚´(M/¯½°´õ@ÖZcc$X`ö Ÿ;qÒ}Òi¢!x}&IæÁpáL!Œ@PòþÜX!—,.ƒé¯(¬Ûée†/¦ssV²¢T-Ö¬LîugÎïž}xåÖ;Ï<øpÿÂcNÌòBd‚€ëŒL¸È‘‘àøð¢²4“ö9ur8 ’ _ p'4ÉÈ´{®>¬ž Á@Ž…µJëPW3êÑXWÒ¾ Bqi‚Ž… áJ¢T¯5O·&Áªw]nfaÕ«]#.¯æòiOüÉiCªúýäK0$DãÕË[§oTZ««›ö/ÜÖí +'$£É)Ãn¯m_™œÅɂʺžÙظ˜ËMÁ_ƒ#γD$Á2$¤‡ƒÊø:áÊsŠ=Â=NŒ£ bñ~*3—L$9³³ûL{rcl!R¯ôŽÚ³WRÅ5Ãl/¯]®5Ö�¦`@©ÙDbVK@Ž/36>ñ”Ûïá0ÄÁäáÏØé¢ƒ^ò8+&"E$¼ŽW ‡QàÓè„be=qV¯àzh2®«%§†ÛHà4è Ì$qgÛ5ú<MX^/�;>6A€œ…”ÄÛ²”â¸T,1yûÙ·OŸ½é‘Å*pz¶¸ +–ÄdŽ1ŸT~&H2á<åÊW²¢ ÃS%‹qÛ¬€Âyê„;vh”Ï¸Ó w¹)PÞ ¹Ý@9p4ÁÆ8n+IÐ V,Aêj†UÜ?ºµ´ùt±Ù,n=Ý_>N–8!›Ë´HéÉÎ F`dØÙqDbNe0Ã�Û’¯7w<:>Ž„‚"Ã¥³•å½.Üz½;}pçΫ÷}Mõ :E19’ΈJÝN.Ôº—zËw¬ô/¤›S…ÆV$ÖUŒ&i·Ç©o¬ë}p'‡ý'‡ü#ã$Å×ymŠ`ŠOÊôÉ›ËWh6z2:<ºõÖû_>õA¦¶Ix©¼µwwíÔ3ŠYFIÝ´{½Á™JmÕ²š¹\O–“0à|i&zÆãuzŒ:Ýs‚†S½c¨9¨å÷²Š\2"=†«dƶkë›çS™ÍÛv¦?·u}ûÜs“‹—*½ó²9é(…ôÌå/ãŒ9áÆÎæd°ùN=χ UÈ/ÌîoïÞòtÃû Fb‚LvU+‹›;×Á#¨I³Î †I¨‰�ª'�Æy:*É9Ÿ—ñz3®q>%”‘26êC‘çà† ÒŠå™•í‹kljür½} +Š²Ë›×&ëóÉNý7çua$*ªM†MCN… !nÃA™"¢$ú‡€E@ó\âä ×Éã'žò@TG«bŽ£¬zm1 ÆÁCjJ.V91/EZV”öZ{pÜèžZlýÙ_þbÿüðŒŠ^ObéY¸q#:KñÙ`Xæ™øúÚÓ(ñNŒû|^Üë¡ AU‚š•ä´(gq"Æ‹¥Hb²1¹Ù›=]©Î?{ÿÅÛ^µ’-Z(¤rÉôj½}vmïáÜÊõéù‹‘èd*>yæð–I0°–6‚e€§4£'©Ý`ØôøD0eàP&¼Ê„ÓŒ�‹>+–\²âs`ÖÎ<35½£%+9•«n7zçç×nœéêƒëýýfgýÂÓÏEÓs¦ÝÖŒËeÁƒ*<ÔÔN0¬¸=NÆ…K‘' c>ŠÚ·S“™gó.€LD&‚¤œú™aÝY»ÅɆOÀX…±¸b´–ׯfÏ@lTë³å”eÖýÎ$ª@ÄçU‚>ƒÆãÊjoòÔð“‡H¦‚ÀÈ+WY¹©×ŸÞ›;¥¼ �QV ³&+E–Mh§2EƪŘG‡p»pˆ(ƒD°BÙ=N¦ÙV%rÎãŒÝ›Ù9¸x÷àÒ#+½DqeKnl\þÓü¸˜íƒ€ô¸–IËb]–;¢ÜšZœš;²c-¯‡„pr~ƒ†d<¬J–¦M�vžÍMŒ;Uv‡‡ÁMðXØx$4êOÄ'<zÛçgIÚf¥œl¶¢Ù¹Le-Wš[]<ýÖ{_í vè›ÝÓ@‹ñÌ<„+y„àcFå3¯þ¡lÕNœvŽ&àŽ<0‹ÀƧsÇO?«YÕ0¨¹È«ùh²“.Ú3ÛåÎ +-$ãÙéRsWÖš–Ý·âN*葆$WíèT¹¦DÒÉ|S6šþ ¤€‘–ǯ€óe˜¼¬´ÀáâTzÂ+ ºB˜™“¬P…Üîöµ^[3«±Ìlµ{Ð[¸´¶{ûü•G3ëÇñÜÌÂÒÙ/óÏõØ$¨#€2Q©ÚɾaÍÈÊ”ª÷0ÂRµr£}JRÊÎSŸöûŠ ð¢¨ÇWÆåljt,1ªp‚ÒHæVZSçÔÌKf0½Wª¬²|v²¿3=wZ—V *H–Š·�jÞ64CHÈ+Ë\Œ’†QWµ‚XÌÅ*‘îäâ•Bs×°'"FÍf{ÃN4pÒ&鴟Η£±,?F!¢|^–¡£~ësÚ¢áæv¶C¨Ì““kÀ•Š\€7·S“›×6îíÜß?÷`ÿèÙA™¥À–F:éìí:=›H2íìÖ ãQ«S,DÍšÏMa!•D-¿›!D qc·íùPqH !¯äõ€>É€p•¤r<ÖÄ ƒfbeŠr>‘ŸY¹¸wtwïèÁÌÖ5œq wfé’hÔIÈ6GPi†Ëó|ôù`vœãÉ>~/Ü&ðóHˆ¯š{ç®±j*ˆEâù%ÝîÀ;7çÎfÛ§8µ"ËÙËÇ÷¶÷®²Â0Àb,17·pquíéDjNR«êôç>ÿI{úÌSOy\n2�H‚ÆbñéfûÀˆN‡ÂÚîÞh²;4špÓ!`©Y'ëõDfP©Ìom_X»&tÉ€!íš±†)V[k‡ÇÏ_¾û6+é/Û_D°(N%ƒH4vÖµ³…å\i9„È#£Ã¤£–ã1$˜£cìØ8 ++#ã_€Á ËŒ Åõbs¯ÔÚלO÷ßxó“×û²mÄs+=0ìà6‚¡¬*ÕnïÇ—ÇÇiçyµólãX2™œ™Þ½ÿà N(’Ô̶d´ÃDtf®²½qð¼o/.¹ó웩=@s¶G†m§ð>£(g½/Ò!íó;%²GÇ(O ¡±ˆ=W©ï&SÝÁÌ©Í3wÎÝxåÜ—÷.>k&zDçÅl¥±Ñœ�ÐŒ2¸]’Já„Ôïóˆ>70UÊÎZíäS®±Ñp0 œõb>�e¨p\~gÿ–? þÁxÇÆ(ÐÉŠÖ5íÌ×É“!@@0 %4š‹+Vµ2yja÷VgþŠhöÅH-ž›+wv *aY½dv9ž]Lå×4»‹ÑÑ SÕïC~É㢇G‚ (f ¸é«Þ š-^#;Yœ™Ý¸Vjm—©ýZÌTô3ê`) +ྩE'8!-)¹ngåúͬX{xÈG’¶a¶$¥‚`ö“ª} ‚ާs3¬”�q{@@1Ù²VèX.twwÏõf6Q\+ÔÖ—wïí_xùÔÙçfWÎ÷c™~*Þþð“O¾ù§¹ktV6ï—«‡åêÙH´k.,•lIræhhØ)ò<áRüA› ©ÌìÍ»ï?zL«Û'ø¥’’^ot¶[ÝÃj÷Á ê2•%ÀjœŽSL– Ra°×ì.(‘¦ËËa„ ~ü‰Š3 †�A²R”™+Nƒ¬òûI¯•šÛé£Ó·Ö.ƒæT•ô½Û>ýþ;½U·Gä¸2 ¨ Ô0<ÓêóK¢§¨Ø¸ì (>+^®–ÛûëÏÊËÛë‡_úø×¶ŽWNÝØºðBwåzgñÊêþƒ3·÷ÎÞ*77ªµ¥üÕ¯^}óKÑ•²ª6Á8:5Û†R#CC8VB£#Ž_>ù”{d(äI4¥Fz²Ö(—T½ÂIEÅìˆFK±zF|Ö”%)Îvú{ªY-67§–/-ºµ´wofëv¾½¯Åú©Äàòñ‹ûçže¥'VŠleKŽ,Òt(d»\4Ø(¯ò…²-³FÅÁñ¥‹ó©ÒLµµ¸{îΩ£»Ç7_\=uÔÞáÔ:N%@¨bEu¿Ÿ …#‚XkMžíÏ^Jå–X$ºˆ�ï +HF +ÐRnG¢Ë©ìº¬×`f½~žbb>?ïõ1,ŸÔÌf¦0W®/ÁWÃj°¬]n¬µûûÞN2;Ÿ«¬æ«+ºYOÆ›çÎß\Ý9ˆH"=[¨¯$rÓz´ËËu_@…ÔÀåüÑíryøËí–B¡‚d4GsùÙ[w^Ìžš˜ .k¥çSåÞü¥÷ß}áõ¯-Ÿz@йNcéÂñ]QNCŒåKSó7çמ¶/›±~ÕPD»öôÃZcËÙÃìbÀM£xzª¸Zë‚Ué¶×fçö�Ï):Å+Q«JK³+—ë“Ét`³PhFuÜéÞ‹»\,ÅTcÒ´úÁ îñ°Š^´O‰JÔ8ç99‡â†aTÊÕEEËO/ž?ºþj£-/JZ ®eQ»uþÊo~îë+WÀX‘>ǃ%`ÝãØø¨SÐ~l”µìi˜ˆ§žšA\´Ï –Ábø +\?‚˜½tLÐÉÚÔÁîñãó·Þ™^½Ö£ÖÞÞÞ¿wýî[ó‹çnÞ}qûrº6?½v S¢²e§€bn]{æ¹ÕK²Ñ°â3åÖv¾²®Ùs™ù}·…Ñ‘0IØaœ´,AÅx¹(ªåxn6™ìÞ¾þìk‰b¿ØZîÎCvŸÎV·“‹ÏªÛÁCÒjŒXÐn$>«˜3‘Ä’ vH2rÖÝ8ŠIR|!€Ú•wJѲYŸÓÚ 1ë˜ód•~rð|º;sqvõébs—˲’ïÍìeKе“…ÅÅí›—žycïâ‹©ò²k¬!±•µcÍÌã´!heF,9°É§2V.ÎÄb-Ч*¾Óœ�3¶©A¥¶ÂΩ’ÅÞPŒªj”+Õ¥í«ÙêFÚ{ëç^}ís¶]¦(»3u¡Ý¿X®íDãó^çù ïÖ;Ý1§É¬SCU3{™âF³¾ÒÙçØÄý»/]»yßí!!×òÕíùÍÛמýàÂí÷ÅÍb‘„ñåO¾¾·wÅP~ßaİfãéu–+aHX™ìí–[.:ÒQÌÙo ªÕXjÞJ$){ûþ«>óùx|A#²Z³“3ÅêúÖé›7¼ÛŸ¿Ä‰5†É)jËï4ž8á‚Ût»8@WŠ.úýæÐI?’³é°“c`x-úü:Çä@×ÁèiV«ÚÞmö±¦é¥NÿÌäÜPÆÅã{/½þa{°Íôo|öÞãOvÏ¿²²y÷•7¾±¼}G7;åüâÁ¹çc™I_„Pk"Ÿ@¢ÏéF¤¥ìFê”(fÅ#’VÉ7¶ªýƒÅë3ë—"ñÆú¥£|k+×ܶ2R¤É*%9ÚÊ×7¬Ì LY¤Aáî¬~º¶‡ 5_ÈÆ™¼`4ã¹EŠÏ F•7Z_ä×α· ©G³1’5!àW÷ž[Ý®¿ôt½w«®ÃÔ'’í£»±ü Y˜[>ýl¾}Z‹O©fëÆæ1Nj>?—-®Ñ)žÏGÌŠFý~‘abV´Å¥“'ƒ£ÎÚœ"H™Rm˰:¡PÄçácvÇáo‰`·×î<xóîso¬î\Íåç"f-â L•ĸq§0ǰÉJ}RYN¥ú^/3<�׃¢N ŠŽ +b–bl†ŠÔ*Óʇ@Û/n_;uüpfõbª°D±¥pØøÄgß|wiù¬7 N¸X§°ŒÓÂyrŽ$ÌZ}ɈTO<åJSUo*FG‰L:«êvãÅǯ?ûü¢ì™ž]¼Ùž¾˜¯¬Ú‰iK¸#�B§»OSñ±1œÀâ‚PçØMÆPÄ +ù½ôôäúGÿ‰k¨ss (4£O,$ã=1gæ¶5œÅð 1Ò§H¥Ú\mOLδ¦vÒ…ÙˆUo´66ÏÞ^ß¿<9»“--&²€$ð¼v´ÙœÖŒš³•EÈó\†¥£ZNe€°ß|Êë¥|^”a4>¹¸qýâ··Ï>Û_8»¶¼÷ã¿úéý^7Ýhf®Ò=›.m”š{k§î]¹ýæòÎVo÷á«êñ~�Ær‹•É3þåÓÇož¾òÚÜÖ3Ýîî·þô§~õûa"æñkOzäiQ£Ó©Üj£¹vçî;‡Ïtf6.O.žËÔ–¦—×/_¼öÒ—ÞÍU–[Þ{áµ/½òhjñR<;ÇËe^¬ÊZ×ld!ÍÃ(ø£Œ$×#V› +¼R„,Qª ˜êõã˜#êZªÙ‘•A$€ž4½8»xN·ªél«ÙšÏ——"±9V¬3L‘¡3à¼~ßEBAt‚LøýòØXiž¦RjÝ3L‚a,—Tô²i*›p“ÁH‚}CÁ¼+ªž‹%:ý¹Ã¥k†Ù ˜(‚;g:žì¸#CÎÆª(Çe#ö$ŠY¿èó€´>¯èõ°að}h¤ÚÙ^Ú¼29{6–ž'Ù¬×'j)ë„ aFI°{£É2© Ä'øý)p@B†O†‡üð#î¬ Ñt|è„×ïåÜ.Êi8~²Ãù<´(¦)Ú„LIåÒÅ5I°òÅ™Jsµ3Ø/·÷¢‰¾¢À9æ*s¢jó’®[Y+fŠk…ú.x=¿³ÁÕÔÔº¢–Ÿœ±%3€A‰"ãŸ�7;>#LQQжe½”ÈÏ×Û;óËç77ÏÞ¼óüòÆa»êàÒKûÏ_¸öÚÞáýZkÕ´«v¬U¯-^zú9+ ~a~fåÊÆÞ©Åãbc5–éiv¥ë=ûàµÏ¾‚’v41§YýdnõôÅWO]|¥T[]˜Þþî÷þòΣW£©Éb}µ;¿?³zxë…7¿ôÍ?ÿÆŸÿüs_ûî•«/|í¿óÙw?IùE39_¨í.®ß¾ôÌûû9©*‹¹ÁÜ!$Q ¤‚ +ÉÄÁ<Fý…ëñ̈º©é5E)fÇÎLkvĤ¬7;ýÃsW>#ªË.FãMA«w¦ÏO/Ý´Óë^ éB$6PÍ.x7]ËB<�·¯OuÖÜ<Ëå*õ-Q.†ôÀüÚÍöÌ=ÖUÀ$ê%—h>Š‘ZáÖä´¨%¨[5A΂¼¨æ6O_¯Ô—@ûIj E pÈå:ÖÜn +@�B+„j¬˜1âƒRã@Ö;Ÿ“ø¤$8ÖR7j~Ÿ<1N³l2b5©ø22cñzÐ9Dl@Å1Óãf@W;;}CÅáG·‹†Üw±þ¨š+æh>eÅ[åæFÄ3ñr&7)*éX²cŧ «oÙSÙÜB:?+HQUµh‘fíH´k¥æU«4Äq…¸=H¥¦=n:èpT‡A“c£¡'5…Bb‚ïÃqS²¼\hOîž>{÷ðø~mrMTS±dcqý8Sè—*ýL~Š—²„º^7Œ†ë@ +çËóµöºj”X©ˆS6ÉÆôHÁŽV +¥™xºã¬A¼Í@Ì-]èNmg•A{ðèÑã…õS¦Uš[8¸vÿ•{/¿õŸðÚû÷>óÆÑõûËë{¾xéú£ùÅóOßz}nãÖÂæÝͽ{«—À´Òl"k¾ôúÇ‹[—FÇ —›æ„¬igkû™c^Ê(R곯`Y5HaÂŽqnïmyxæÊs[w$9séâ×ßú¨;Ø#¹¬éPb•‘ZS³—Ï]}«98ÂIëΗڽ-OtZ¢ûTOÒ\©ÓrÙˆ4f{+[×»Ó‡µÉm)RÅÈ„ ”µh³:¹Ã«¥`X€ûâĤ(çh. +„æÒ‘X{fõÊsoüQᜦU¬øâa%]¿ó¼,C£½-JEɤ³SJ¤Ó˜ºIÌÑX'€ßš¬4€Î¦Sv¢›Ê $µ‚“q§MÞ R&š 〱΢qg3Û¸³Ðépb~xÁ0Ûé?5ŠQˈMÚ™93Ù7¢5ÒöŒˆšf8Ûëg:"ȹTn1WÙΔÁ�Ö5“δ» +KÑØd{¶Ô<]ïžyR”Ò©¿çqQ½ƒ÷³ccÁ±Ñ €xa†‚ÎðL¶ÕÙ¢¸˜¬d£ÉM#1)êňݮd″ˆ«ÙÂF¶¼cDû8nc¨nÚmN*Œ»™0bq\²)žî+Z'l@p»I–±AøüÎNš4ÉÎÅJ…lG–“¦ži5ç¦f×ZSs¹bϰ«fº©ÌÕ»KógKÕÙÙÝëϽ±°s FÒ0Jc㘂‡Ù\¼zzÿz¹¹úÙ2{éä¼›RõF㓺¬œ')›êvj©ÖÞß<óÜÞ…Ë»7ã™UL¼øðåŸþúo÷Žn3R9[Û)MžŸÝ}tç¥/ïݯ·—l;ÿÎû_<87RÁÜéöl®~zröòñÍ÷r¥¥t¼ýòËïßzá=·O{D"¢\Û8uïê³\yøa<¿Üj®¼þÁ×ÛÁ BŨ5º‡§.¼xûÑg—¯ƒ±ºqë³¥Êò°Óq»yKBTŠËKëW)ëæƒ¯}ûÏ%¹ÀˆHb>ÝJì¿véÞçkC±ž}ðÖýßNfznzl‚€¯Á JàIAl:½Vé£3×o?ó�ääI÷Éî§þÀsò$ÅØ2†š‹+‡½é°¥jp¯ˆ“ ”H{ƒ0wY0Y±¬2Š*|Ï&X/[^Ÿ¬Ÿ~&š™&½P˜¥NÏÓºÑåæœí‘ŒÉi4ļϨîóÑ8$Ø,ØŠÎt: £®5{xêâÃÕý»“Ë×’Å-¯ŸÃÉ0ªê<ú{âô…P@ø|®´Ì +ȈTr +.)„È0Ú.¯nÑ)߇ššTô9ûI¤\qä®&9:ªf�ød2“,où|ÃDpôh¥¿pfçÌ3KÇÑX;îÄ’“$…„¦åx6NbOEXþ„Ÿ À[qLRž$t5~IÒ<m3¤–\às ˜IÊbù8Ç%TŽ7&ÛËÖ +0\üôÂÅúän*ÛUõ¬¢$L#a MÉ8k÷.Fà2 +\0—$ˆ– ô”HMIFÇç×’ÙÅLiÕŒvgÎì^v·(ʪäZgÎ^+g)"‘ÎÎ%³3f¬èÃ,+'++E’Š?iNZ1jÏ$RKšÞ乄!ÇêÕ~°åœR¬l&K›Áq£”--ij³,—¢1qkóhûô5Y)€Œ˜Šõ•På’×M{]dT+½ôèíϼöx§¿ªKô†b”PÉ–·2…KÏ}ôÉ=~õ¯› +y=¢(Õóµƒþæ¿_ +x‘ƒyl’D@( ´ßä`„£'ÄW—ÏÔê‹ÁŠ„# bY>ƒƒ†9¿óL„Ð ®ð2 +£!‚’åÎ~$>«F¦X±Ä³ÖüôÖþÁÍdnZTã0Ë+8•%–41ô³!?OâQšˆl6_†b †LéRQsúÒÒÊq‹�à„ +ª>€}/-±V¡0íõpc¸Ó‚y‚ÆÐŒ ϧ8>O´d5ƒ²hUš[ÉìR$:ÕéM¤f0Ìè¶×jµÅ`À©L‚ `Õ>ʲԀKò{QSMZ‘ª|S@ùý +`(d:'ñïW0L'Ci&kÙ=;ÚbèX fÙŽ~ÍRÎŽDŠ0 hqL†´ Aš×…:§³½lÐÇò”Å1)A*T*àrÅAªÐG°¨–ª1¥)9;’WÄxÐGËB"›m£¤E„·¦Áçàv¼^Öï(*é8!pF Iª˜( +$¬Ö&wT£Æ0I†Má˜zIäÓ†–£qÝï%ÇGC›aŽÇFÂ>7μÄj©hµR˜‡< Q’¤¸I§"Ê0*¦¥6³Ë##ˆs.,639saaëÖÌêe°$„iâ˜Db’Ø +÷%)ÙX¼iÇ[ùºœˆh)–ŽÀD°xÒ4AFHÂ𺠕ñG"Œ*(4NŠœÂ2F<ÓâÕ<FX(ªšJêÔÆÙãKwŒˆ´d*3ßê%Ò+$ÅÂ|ÈGù=$”LGÖiÒb˜´¬46‡‡5KÉ^Ø»üàñ»(aÃ"Ž�bÐ8¼4Ÿ—ôLàA–^pCJ1žyC!EàRv¬É°QŠÔJ•ùBe)™³“3:%�$¢†mÕm» ÿf!‘œÎd7Iª‰¡…€_q‡ƒ>L“¢²rÊÈ!€I2ËÐ%œH†Bµ©>/ä@¨ XxÜù%aÀè� ‡ý,Þysª"Œ“8—¡p“Ä÷DØÒJÙäŽXHÁÂM‚0Â!¾XêÇ“u¯—`iS’’klŒ&T4H…|8O¹L%è „Âkl†‰ÃÇy=ÌØhØ=A€ôò¹Æ1,¬¼ó…ixÐÂLîMïêj.àX&Nà1’° #`]c¡‰Q¿Ï…Ó˜>áT¨@Á’¨³JÑdw–@Ì¡!?Páð°£¥Ÿƒ%½R-I0IBv»Pp‹<ŸÓôz4ÚL¤'5½êõPÁ�ð)2<4öã$ +œY«Lg³ÝH¤DàZ(Hy<ဥɉ[$®æRÝÆÔ"ä¸Ç4Ɖ´¤JDñ¼¨&ÔÇ»õ¹"¨ 1Ž£b&Ù´Ì0F˜dÐÏ…ƒ¢ +æE-¸ +‰ðQá�ƒ†eÀ4‹ÁÆm•éJ¥ÏҪɰL4*ü!ŽÈhP +d!AçÖFG¼ŸFb¼PÑõŽíĔ�>‹Šf$*NQk‰ÄT¹¼µ'‡~˲Qž·!Ôu1§%‰÷G¥`€rOýî0…ŠX.•÷zAÆØšV“D(B!ù‰Éjæp|#_u¹`¿³Ð¸JMŒùCl˦=/ð‰'¥|>º<·{xx‹&M¯ziÔ/(|n +K=1$0™gmä€!ÁŽ”hBÆÌïö’a~„L…,Ï¥uj +ð0GC'\ÞqÂëÂ' NzLJž )<Õ¤4è–\²xtx D&]Ð˪„YÜ„ðs£1«·§°FGD×vò){æE…O>ébH]ä~/ã÷À`ß\ca2¬HL’B#a?ÏÓqEªŽ‡†Ü'ONÀ-S„fh ¿µ˜;þrÔ.y¼t0 âD„aÓœP¢è”ך²}|æú{_ù^�QžúƒÑ‘a/`>fhɘU…ÈÅ£+[{è81~²(ï¬ËÓ”!ð†*E’6(Ì9I(0´ ñð{¥ZÒ¥†ðhˆDC¨q»Æ±&‚ð)³!&yˆ +1`UÌir'Ð‰ÆÆÃÃC.QD1Åq1Ô1Šš$¦kR’!4$Äèz.WYFqøD)pög>ù×´i<^bt4�n:ä—Y2ކd¯ÇP>Èf¢q™‘^ÔëÁ0L‰ÆšÅê2DTÀÏÃ5Zk‰dÏé +=†pBÃ"é0`B•ÊnC eâÍ|ª…I€t‰ÕiL¦q…Å¥p�xCðþ)\˜ ¸ÇÂ#'=cCþ€‡qÊ<²Ö“…` ™ˆŸûÂîqïĨ7äÇTšŽÕóIS5*µIY»&ÀCùÇ)Fñò cÃþ¡COMøÝ¬ÄçE.øy2f.-ZÞç&Ð H À5’€å¤ktÈë=¤È$DöN„!Â=.ˆ|ŽÂl¼âè°tÈ£Šiȱ?Ä!Ð.KY–šg±HÀÍOŒ`ad=>tOàa?€§às£Ã‹¥‰T%eMN69ADÁ ™©J©™ˆg8^A‰ 10åN2]öÃ~."%âZBaXKâZùäÚÚR"“÷ ·‡€CuIÔ“1+Ÿ‰ÒÑíåþÃçîu:óÁ‰qÿø˜—§$ä‘®¢„‡[•ò Ká!¢\ˆß+RH6.×òÖÅÓGçÖ¶ú•¼™lè 60OL1W¢Kz4¢šÄxÚÒåKÙ {¼ãa’J¹J½5¥ëÉ|¶Åq& $*†üôØHðäIó,‹tÊÅÀÐ<¨ßVµ·0¿`È*$½nŒÀ4P1»(ˆqš±*•éH$¯ëyQLú¼ä fRRy]`L².+°¶Ê)CâFL¨‚d)ŠHâ"ƒö[©Õ¥®Ä*ÒXH@ý,–)T"ƒð�a@a†ø°Ï‡ú½ˆÏgŠR']ªÅ÷g‹7Îv¯L¿öòõƒÝù´a( À}<nB€øƒ±‘!Ÿ\¶Ÿ÷O T 6®hQYˆ +ÉëGU^Y†|dxž”6fi…pñ>é†ð�r×9FŸ<y'(þ EX&‘§PŽ +3¦Ç ùi–ˆK\ÂçÁF†Ý^Fƒ† ˆ×+’¸Š6³ü|Û^/7ë±bNíÕ¢—6÷./ïmu:«]Š¥ì¸¡Ú.Žœ÷Œûð�jrB\ tÒ—ÓÐ^²YZÎ4Ĩe*›ŽŠ¢º6i¾rgç•ç\_zþÖzœž÷MŒñ0Ö¸!HQ‘Ž X\Dec£Ÿœ®(yíåÓ³éWîn¾roë;Ÿ¿ô›½ùó_~ü¥/ÝÙY)db¬*ñ“ÀÐ8ŽÊŒYˆ›ÝŠ9ÛNé„ÊçcQ™“‚¾âF%©]Éõûµõ¥W^{Ñé¡î÷ap£Ã€Wœ¦w&ë<š;9ÌaXÖ²š…|)cH¢H�•y¥SÎ_=>šêMFèÖÖb.—Æ1:¢d9ÎóqPn,à@ÀÁ+W3 ÂbT,øþRáâ©Á\3ÕÉ({ƒô7×?ûÜ©/¾~áç÷ï]ÝYÔ²¶E…PÔO„¼ƒ™Š˜ãI™ÇH%j ~º¬÷ËÆRǺ°d?·_x÷îÂWÞØûÃ×NÿÝ/þè7?ûê;ÏïÛôêň “a +Ò¡�Ë11‘ŽRALuÉÛI£bñsUs}*½ØÉî-uî>½}õhþÁµ·^8ü샫WÏžéUª¹¸mH,‚ú +ùX÷8áä'QGNº]c~Ä‹¡Þ ÁPKíU³ U49ª‘MÔr™t$ž13 ¹!aC^Ä–NmÊÓŠ†ÏÍè/ÕoŸ?¸4ùñ›GßøðÚ_Ýüèaïo¾wûŸýÁ_|ý¹>s´¿Ú+Äã`ünÈ=Á‡<y™MasÿZ¹¼d\?]8ÞÉ]ÚÎ=s¶ùàbëµÛƒ7ï÷¿ôhîoÿò•üõç>ý¹{ûé’‰=^¯;ÌQ*OÉtS±@ÏB»ì¥Yññ¹ìÇ/-¿ÿlÿ»í/=žýùwnýóo>÷óo]ýå·/ýï?}ùüçÏþò÷Þº¿üô^½˜ŒQd+“#…¨ÒÎk-ýpÆ\ÈcK²—¡ÖºÑÍ~b»»¾Wýðñîï~ûí_þêëŸ|ôìã{Ûgw¦u‰ò¹=!"òؘøä(âv%„pVBŠšà= Á×ÏËKMkuÒ<;k¾ópçLJ¯ÜÛýÃ÷.ÿø¼þòõf9º4×_\Ú_?uO” ¿7Ê¢)ëF‰sÓÚ£çÎ–Ž¦¥W.Wþ½G?ûÁ+_x~ùË¿ýáKÿý¿ú¯¿ûâ¿rô/¿|鯿qåÂJÌfC˜Ï©IÈ 2êKñþ¥y7ùÝ/þìû¿ý…‹Ÿ{nòëŸûáWŽ~÷×ÿúk—~ôñþ¿üúå¿ÿáõ/>Wyî0°+Äôb¸2eéY…áÓÒ‹£eîÖFâgf^¾P~|1ÿ']üõÞø×úôo~þÁ/¿{ç?þþÿïÿýÛ¿ûÕGkßzçÔ/~ðüvr–êw¡@²`cZà +(?äŽP>‹œX,ÐWWSO¯çÎÎD.-G_ºÒýÓ?¼ÿñ«û¿ñô[/^ÏÇâh˜V ª¢³sib¯Aß]Õ>ºÓþî{‡ßyïìOþèÖ?ýøÿñïù7?{÷G_9úÛ?»ÿ¯¿ýü×ß¿tz.—ÉÊ1#!S”Å m“X- ûô%íÕ³ÉO__ûÉ×o}ÿ‹ç¿ñÖÖ_}ùèŸþêÅÿø¯þÛoÞùõ÷oýö{Wý'7^»1_‹9$"$à A<!UC]I3¯œÒß»’üÂÍÂw^_øÍ7/ü_¿{ó~öò_|ùì¯?½ôÏ?}ð?¼ó£vòñö/¿yøg_8uóT®•‹‡}dØ0¹1UÞžŒo4”›k‘¯>êÿèËg¾õúâ7ÞXù›¿òËï=û§Ÿ?øÁûÛÿùýÏÿüá?ÿ—7þæ»7þÏ¿{ë{íMC,x'ÆÆƒ>°=Êñóy±g' ÏÕiæá©è³§¢Ÿ¹\üøñü÷¿pê›oüä×þý¿úÛ¿xéw?zù¿ÿý—ÿú›·V+ƒ~¡8‰cZ.¯ÛJ?IïU‰§§™/Ýkýâóéµï~°ýé»[?ùã«ÿöÛ÷~ñéï}°ý¿|íÂÿñ«×~ýõËß|XùÒìÑ”¨¢0‚{Ì?rbw{Rœ.º0Éß\³_,}øÜÜO¿}ç¿ý—×ÿ·Ÿ<ú»>ü»½ð³¯ÿ쓃¿xwîó7OÏ«SI*N9Q>ÂQfÂ,öë^z.Ç.e°+æ÷ÛúÁ©~rô_Þÿùw®üî'/üýOÿâÛWñÉîßÿàéùåóóƒkßúlïý+‰—ŽÊÍ´9IÈól̵vÎlƨ©q~ ÝßÒ^Ú7ß¾’ƒÑø¯~ç—ß¹ò³¯ÿßÿíþŸû“OßÞþÎç.<¾½%,擲’©œîÅðµ"yiZyå\ù›¯m~ÿs‡?þÒ…ÿõûÿó?~ü?zô£Î|ôpõôb!³AQ˜Q3–š‰)‰¸Àt¹ Ïeî*¼x&ùƒw7ÿ×ïÞÿÝÞûÊËëŸ<ì}ï핟|õÂ×ßÚyp¾zn©Ô.”MÈ))K&x1žÒóV¦fÇ +29§ÎMG/ÌF¯/G?w£ñÃ/žýÕwîÿç?}{÷ÿgï=›$Y³ó° ì™îò.½÷>+3+³¼wÝUÕÕÕÞM÷xﯿwïîÝÝ»»Ø],Ö€ E$DXˆ@ +Šú 0B%2Ä >I†ÈÏúÒÉÆ_P„:ýFÅÄÌtuUž÷=ç9Ïóæ›çü×ß¿ýó÷g?{>øæÚ¹9m(eMÀAÛ3Ò9µçY‹ï›ÌqWýêQ÷Ÿþôø_üƒGÿæÏ?ú·ÿüËÿð?þæ_ÿëßý—òÁÿòGOþã¿üþúW?þ«|ÿ¿ýQû‡ÏkG=U$JHô¬^+œ;²ç ÌÔeg~?ß—ûmó—õÿøGÇÿùßÿÞüw¿ü÷ñíÿã_ÿä?ýïÿÕ_þégÿÍÏÏÿû‡g[‘g:ï9£Ö†+Ë5»»¬"ò¨Š>ßà¿s·úóç?|5ùÖ½æ|±ø«?ûô/ýÙŸýìâ¾»ó«ìGÇ]È©¤Æ*<e“I¯£"!hD)äŠ[>soÃ{¾Ûz²Uûø´ý›/¿üxëw??øåç¯Îë¹õrQ>îù‘¢™œ¤²2p~]ŽT±jkMG«µ~ÙèYÒù0x½Óx»íýòÃÉŸþìðßüé‹¿þ_ø?ýÑÛ?þÁî5ÿéCï{'Öî7ïô5)‰8e¨õ²;ç˜�d ‹q2†T8tbÓwúò«9ÿÝ»îOŸ×þÑW‹ÿð/¾ûÿç_ÿŸõ“ûßõ럾øà¸¿Ó©XŠ…á…Kt âs]LÛ’&ž¸SWÏGöÛÃúGgÍï>éÿ“Þþ“_<ýÝ/÷¾ñp°7p@ù|A¥ÎÇÃÛÕ`nŠŽÍr¡ûêdùÉ“ƒUy·cýÖëü;~ãéÖÇ·;_Üï=^Ë–U·%8"ëÅå +qåj äAA×ÃqÅôu’òx®ë½²:òåÛÿíAçÓ‹é‡gýg»Íýn´×ˆ`ë–"³4±¥’P(È[ãHË£D¾(¢˜ÇÛÍú½Eçí~囕?üîêŸÿýG¿þã¿øÃ÷ÿâÞþ³_ÜùóŸœþú»¿ÿÉä£C'T0íšhÅ¥™ +G{%D(?ð£y5hˆ¥¥?ïﺟŸxþó;ÿ×ÿöûýïþîÿüO?ûgïõÏ>Ýûä~ït€66õºçmò\ ðe +— Ñ™5‡M]ìÙÜÄ—{?v”ݦ·ªZ‡5ñýýê—·Þ쵞8´´ºªÛœÌb1/eR|b m)‘B²ŠêÙ°¬~ŒÂpxmCl(|ÇGžZáqà‚UY›¶gš€*¡€ÉZ³1gi)�Ùf)„3y£_éœnŸo¬¦eý¬c}~Öy0Ô><l½XÕïöŒ{}ó¤e5Ý‘%£@R(š’Ð%q(Íl¢Àã‰méÊÔÓº±[Ï»ÊGûÞ¯>Ýþ»_þàùüŲ_E•àËf+ll¬Þ‰\hiU‰5D&ÄrTË5W5§íö r»¾Úõ•Ðʺìè¦(h£TO§I75½Á‹A®Àc¨¦ +¾«yÍJ«[ëó(ÉÂ$ôUÀ´²Á):'ƒ ÀK<()´$æ²l&Ã’TTmœÔÛ'ñ2£)ñŽ@Ê®²8¤iÞ‘ÊÛ£ƒýÙñb°Š,ßG©x±„a×Ù|Ç©HFš6´È:éD.›Ìƒ®wÔÀ7ÂÀ(·Ëö´ážl„oOÚÞëƒæ»“éŤ¾Ó°—5o蕉"¾¾ž)ãgÛÓjm½z“ã[úá°{ÒÍ^zT»:ÝшG³ú?~ø“o¼xÿÎþé¨_74eX’¥€$=‚,狪í-Æó—£ÉóV´cîéÎÉÇï¾. +¬—L£Þ©ô‡õQ³Ü48“ÈqdÉÈ‚,]ÃÀ©PÌ/bÁ$ _“kXŽ`Jë™lšŒ·¿Š<†(n Œ/²K(¥,B•x¬ a%YŽïX¹ñÃ,[¥’²·˜X™rÙ˜ú‡Ç%“×7[*„Z¥áõ=Å1A tž2óq¥ñIx<[Ëeø÷~#uó½èM–0<Ý̈'c,N¨fü,.—yª,ìør˜¦sqA˜Ywú$·ÝòÖlùȆr¼o;ãvï¼Ö>â…2Ck¶VÙšdd"‰dó’¬Oœ`Ç.oËqeº¦4—«Gº;Ê–LŠÊ Ù*‚Ú4á +´]ÌQ‰õB1'±TEU<ߘ‰2ŠÚªÜ�Z’Ë+¹BÜêˆfBÛzþĶºQ8Qâ#ñ6ŠòàG²Ú×ôa \ÓñÆšéF‡d"wpÂE1—bBŠ +J%"-AðL³¥i5ÓìGÑVP™ºvW UÐXXµ–É ¥MŽa̼Ú9Å7ry>‘ÀÖÖpŠiö,~ 1Çe³M"[a0A[²»MÀ%‡ šñ¥ËZy<‡ßMC¤Ž®÷ZÝsI”Aœ°ƒÊ2¬îdÓ|©�ÓhzÇt¦8Y)–,sUe¨(ýB^ͤEŽëtú÷o©›$SMgÀs$CM5&*=¿~Píö㎴»—ÝÆužó7fä¸z¹Sö–Qí¸Ñ¾¨4Î2k-É®'iqráÆ{éT’ÔÍÍjï^£wÇñVà½ë·P´¨å³Ê¥d’b¸ºån‡µ§¼*¡å\ÁL¦âÛR€3'â]²Lr-æx†rm½gÈQ6…³‹k,i2°Ü%-~d©d`TÁý_Ë”«‡¬Ü”ÕêÝ‹w³‡” Z‡êªÙ5ìaÙ›Ívž•HÁuAn¸ÑŒâtU³ç“Ígo?ûEgr;‘á‹àÄaи¯Ú+Vhc¸](É4ã)Zü ’©kÖ–ì"æHUÛEÄBñ2N•y©ky‹J}G·Ç4ùÁ¢Ó¿jË JGufÑ£¨w7h9ÁBÑÚ‹½÷UcŒ–nw¥mùÉQB›Ûn°Ü\>¿ýàsšRY®ˆ‚ÜøñuNŽáñœá|ñÐt7w"SŠï±âX5VE`§‚`ñ™À|‘Çq]×»š¹äø^© EÅÐòå š5÷n7úwyeÂ+cœŽP¢,*Nhà¸È-s +“檂ڣ…n¦h'’<LJ*g2q!Y‚ªÈêHº’Ü£Ù:/vdu`—¹¼†áA7¾KÐ5^êÑ\=™bRIƲ¦²Ú)”¤ªsJ—Uú¬Ô3ËsÕˆe’´OqÍlÑ*`e‚kùÍsÃßóê§åèd=Áe2’(uT½‹â.ABìG8ÓL EÝtšg…¦¬<'ü¸÷hÉÔ±bÌ{D`:¸åÍ›¥LŠ)椤‘TXŠŸÿuQ<ÊË¥h€5Žñ\Ëvo[+o3Bg}õ QFµÕË×ßÍÏQÚ¡„*É…^´íU÷âŠaΆ¶Ù j[%ÒÈ”äê +Êx43Z}Øž>áÔ6FÚ²>²ü=+8`¤!Á5aþ]5í`ॄں=›ËÑmÙ˜1|ƒ B¸�ÕÜ è2Š™²>�¯hô.º£þ°~X«ïß{òMÅñú ½ùlçü‹ã‡ßÚ¿óEgãñxë•iNÕ³‡Ÿ"”Kñ¸–U9¬÷Œ—o‡‹7õþÅ…’ÖÑí©¤ŽX± þ©¸sÕšìî¾¼÷ì{š5Jd˜Q®4N»ÓWÞK^ÞĨ:JV6º<§c¸žŽ»0›qí_ºÂò-ŒËÁ*¨íÓ‚O°>,¢hÌu/î°ìF{àcbm-Ÿ¸ÞìÍä%€DNðÊTsV¢Ö'HCUÇZî&@1†�†³U©ŸV[·kÍÓ\^׌ ÝZ*ú¾!+9ÄMdd”¨Õ#NlÇõ홊¨ 4w¡:KQQÛò·IÈq%´1-vÜèP67`W4gQѰq’-€[šàZ,×Sõ™ãoƒE8QÁ‰À*oA"Lg³tkZm Ê$®Ù’á᪊HmíföæÍü["ªº5wü•¤óY©XPUµ'A“¼ââ™tdÚsYŸu:Ã'˜3b$é½ruE +¡¬wUkœPµ¦Qco4`ùÌP Í7I¦ÆÉí]ǹÁvÿæ wq:ÔË[nt0^¾;}ô£ùá§8[#I¿.OOß"tÇüÒ\ß,ï6FÓ'zy7Vkí‰Æ@w§Š9ṞæÎ¢öi¥±Ç«Ír4ô_|s¼zRܵ*à“`ÈÆôÎ퇟Ì©æ ;yÜŸ½î}Ø›?Óým‚oµÝ˯wFw‹%'ªžÞûúÎÉó½÷ï<ûžîˆÿ(ÆPT[Sf„ÆþÙ7wO¾=^}õÒLƒb+ºÝUÝI"#å:`—å8Áq¥qÞ蓬;ð}^®ž>Œ·ßnŸ|Úèßq‚] Z†;Ã(O5ûš3w*+Èš»[Àâ‡Ý<±ôŽjEVÙw¼æf`WqwXiT(9½þJ¸Êtœn X…b[nxZiß×Ü=„¨Ö»Ï_}‰+û ©¬ +À%„îß~ñSYðáþèOþ‡îà4™Qòˆ«:‹ÑÁ;÷¿=ÝÿØ ÷‹¨Óèž@hdsz"É’\£W'íáS¿z–Ï™(b©Zb*“¥»%[²$p¡è¬=}yã–J‘é ¸‡ >ø$AU‹ˆ’U§rPí\@‚ÎT$æ'Ušk†;Sg@aI�£¼ÍÞì\|C4ÚAu«9¼ÝŸÞÍï×:‡–7…ÉÔœÑhùV-n›«¼è¸7}ÕÛ|UÀÌ<f’|0–WúŠ ‘µÇÉSÛßí¼™n?"ã³Ç+;XêîBÔ&†¿ãÖö w|tòúþóo9•9W•ožl¿\ÝýÒûáìààñ/~ïŸLVwÆôÎäÙÆÎGË£OºÓ;4dò"'5Y±Ip>«¶¦¢ØË£OOîo0{®Ø›:'[¯$cL M½¼3X¼ò§º³¼ +ê»ÉQĸJcVí,Ýp1 ZšÎªÖ>½ûè‹ûO¿™Ìðù¢&+“ùòãÃ{ß÷šxu*Jí¯~óö†çVT<8ÿ쫟üƒ¯~ö‡§Ï¾2+»Àlgó—¿úu¹²•Ê*8Õ°ü£ÆðÅüàó‹Ç?Î^ +Rc¹û¤Ý;È„ô}vžÝýÁbÿýíƒwZ\(¯ÓÞ+ëÎÜv{‹W6º£§;GïTT Zw—š»jå»ÀÙî<üô“ïüR6ú[ªÇA ðJÐ&œØ6"©ãñÖËJý$‘’EÇ©lWZGÁþì1àR>*}oûà-àDŠƒ\ï„çš»4¼+h~L˵hñÙg?vÝÑ{_K§S4ÍÕ¼èl¶ÿé“~§7yP(šþó Ú.aN ؽ¾À8‘Øâ×Î'[Ÿ<yû»Ï~`;£§?Þ\ÞÆe—§Auw¸yoº|º±ó¢6<Snox:˜?a„¦l gÌHH¬Š=w£ýÎä!¯´)æFkø|´ýéæÑ§ÝåKÙ†ÁüîãoG]p7Ümî] endstream endobj 28 0 obj <</Length 65536>>stream +|þæƒßzóù/—‡ï*ÑöÖòá|û±]Þlônoì¾iô§Ž/>{üîõþj¶¸wpü‰SÙÔ«vi¡ +LLT§åèX6&–3\>ÓÜ1FWÜÊ.$ÝÛQÜåæÞ‡‡÷¿>Y÷ÂîÅÑýÏn¿ø~gñtR‘P³ýîæÝ"!™þ×F²¹hîÕz†·�+RŽå놳¡9}ÙÝTÜ;: gQóˆdânVþ±åe½4V“ýWõáY£ÖÞkõn“L�ðÔƒ:¬òÒo‘¶ÂS'ØïN•£UÕG›÷f{oíÊn9ÜUí‰QÞäå^µ~�^-©^lÝ~ÿÓïþ½‡ïÿhçâ³áâU¹²”¤ÚÓ§_ÿò{PÄÊ$Uj»³½w›{僚¯&»o¤}òéŽ^Q”Ï‹µñΫ½‹/W'_Ÿl¸8úRÒgé¬&HŒ(ûµ}¿qìÖdgÈO½·Þ}˜HJ8V[§‚<L¦ÉT†I¤x‚¬Ã<ƒpìy±¨ÝZ+}•µ{]—ûÄ(»ÿäûµÆ>ðU’ Á 9²|Ò40.¿vØÝ…XV”æÉþãV‡bÊ–=îäÞÿòâñw&Ëç^m©™ÕÃÙþ›:Î7ýÍöðÑæê“ÎÆ³Öøaµ{jXãÎàÔö6ÝpÕ=¬Žî•mAtzwî|ËkìP|e4ÚêŸoï?ñö;G÷>ê;¦98ܱ:x®èÝV÷èÕ?zöî'g¾sxÿËÁâ©í6ß½ùæË7ß%�a€¯¡QžƒÔûíð˜—‡ÍæÞ'ßþyØZ‘lØèž»Õc¯y1Ü~óô£ß9º÷Í0:xüü«Ýó${Péž™á‰h-ÝêY½ÿd´õVµ7u£õÉ¿ ˜€>ÉÖXyÈ©cÉœr§Û¿;Þxx÷þÛݓל2‘Í�2B…9•ÅÎÙ'1l +•zç =½[ëfÃöÁ´(®Ñß«vÏ0*ÍAmp§³ñ¢³ùzsïëݶ¿R´ÞŸþèÙÛïªÖÈ'vA gO«í3/Ü+ÊÃÓ÷Ï߯6WN8o¯TwºÃãg¯¾{qï3Ж³¹:|{ôà›AçL)o)îÐ××o¿êvw0T×Íþ`ö ;¹Öv Ü$k+鬮C‚òo|ðÛ{¾jl<iM6Fds•ΚÀc·w^ÈJÇA¼—ÔcóX[’2ư ‘ QÌQµ €R"%Kž¬Îdm^®œõ3Ðe¹¢ +EÒUP ‚ØŠÈ#:Ì�#¶Ìò"lÅÑaÄÌSU›š1ªÔw!u{ôXѵι,|é2¸Öxñb¼xcø[ŒÔÌ£¦,57çOL{(Éu�ºÝ‹ÏaþO|çäÁ÷7>PËS’ æ»/9(M‡¼96fû°Õ;UÌ>ËùA0‰jãîp¯ÚÙw£•4Ìl6Û»åÊ&$Ié]öðp®l¿~Æ0rXin´cÙ½wŸüìþ›ùÓ°u?4íM £wròúèö€´Àó{›ïª½‡íÙ;À¸hI¯G‹ç¯¿ÕŸ¬%Išo¼4'ƒæ „vµ¶³1¹ý{¿úÃþä÷‹x€R/OÊÕ³ó/~øwg_*úøéÓOÿËøgýñmÐh¢¹ Ð;“Õ‡§/~«†“edQ´ÍIàouZh2|SÑÆµKtº÷äÓZkwÿà¥,ecZ£¢<j—@oêãÁä‰ånXåM»²´ÞbûÅÞÉGQó”âÆIÞITÛæaÕ£:p×ñðs¡Ù3Xb µö1Ã5.EŸ`¨{ÕþÓ¨{—»MwŽî :Ã$¼1yeÐ=†_‰j{¶=‰ëƒ±v±GѵlVK¤$ȉ¹¼MÑõfûþ`üZÕ'Þq«s›À½RÑ�ªŸÎéàiš9¯ÔoStCw7U{q!ÀËm è’>ÑÜ-’o£T…æCÍì•0S1zõþYØ<ö£Ãáæ›ÁÖ;Á—«ÒÚwª«"n3BdšjnxÏv·àm’Ö')w¸q¸xTí[ÁR²G¤X¥¥Vµ}ÒÜp�…®Ycݜԛ{íþ‘_ÛÎ#º(EAuNŽ¢„¦3vüegÒr”'wPÜÓí…bM‹˜¢Ù¨{8Þz²{öùâ𣪡ñQüî|÷)«´A:Å…Á•Ñpö`²¼?^<”ä¶(¶ ôW%•å +ÂÆÁíûß�Žá…;D\œKçÐÑœXÍæ9À ·2ëtw'“ã‡>n´¶Q"°½}78¶½•jo€d�|ó*;«ýWÇçL£ª~ãngþAØ}`ÛN¸ÇÊqÁÿ³‹Oú£Ë(²b·;ztrïÛ[{¯‡SH£ñɯ~õ–«Óªt.šÓ'ñƒîì L8ÅD{Ûÿä¿ûË/¾ÿ{@VA{jÎvؼÓ>«÷ÎÝ`Ëv&îöüíx¥@J‰IŸ:þŽbÎa@Òõ(Zl<ãäÁ¶q¦U@Êù‚)«îèlïìÅú’ÔÒ‘î¬ßß=xʼn\ÁHgD˾/ˆíõu6–eu2ÝzÓìÞSŒAµñ;¿øƒç/¾X[Ã@ñ:ëµÓzýÄqæ’Póy¥EÐ>AºVyÊK]ÉœQbhv}/¬ŸWG0çÀ<½ê¶äÑB‹â[‚6ªµÏV§ŸÚ•tއë‘1¯vk½°²-ņq©·Á…lô�¦ÊáNÔ;ïÍ^,Ž>¿ÿê‡ãíç$Éz;v§¢†ã(^êS\h'¸(Á–ý`:«€ZÀBaBŠ˜_áTö5w›Sº¢Ò¸óàcÝðRâDx¸(5Ûݳ£û_`q‹½šnŽE©äÚÞóë+Œ,_v´W(*’Ö ÂÍÙír°‘J‹‰´”/Ùßtý%ÔޱÜAsp¸sôjyü¶Ö;D XŠéÌ/«C@•—ûßÿžîÑ0Q+• ¶ƒ¸(hùBÉeø¾¸µcˆœpfÛO"ñnp„“ p»{>œ>kõ!xˆ‘ÕJóH×宂ƒŠÄUà>ûÖæê1Ë–»ÙÝ›l=‡8S®|lsö°Ó=ÆIWwÆnõ"qûø“Zï^«äršïmζ1|•ã;ªµiz;‚2©T÷'ógam¢¼ãËٹÀ(flÅ©,—Çïïž}J³M+KKתšÏë(êä‹ðž¸ã•íŽjÕMŽ ³YÅpµÎCuóY1“b°’.q yy@q-€è ¶m:³fÿ7²Ùo½9fùÛEÔDQS”°"¶¿Í Ã] €3ì¾?]½RìI:ËKJ—âªW•Ý)%ÔȳR»Ú<hîòrC·úÃÙc¿qàVwÊõUÔÛ‡D®¥˜CP1…’)ÊC¨zü¤Æ˜`ê@xÀÛ‡ãÛ N1&dåJD@u„êLãä.\áâàB”%¹9™?jïͰÜET?l /@¡+ZG7�ìYQ Ý$lâ´Gó>Íùž·Qö§ù"—+°™¼LñYÍU®òB]bÝÝÅùîþSŒr ôxÏÈ]Yêæ†¤ôEU7ÚQcÛñ§A47Ê3Œnå + ʃnÿŽnåŠ"AZŠ6/ô`º¨¸ñ¢&Šõ{>'é`}( œª˜Îærï£ÅÞ'Fù`-)f,G6/_– ÑIʗĦeNÃÚ¡îlªZ»ÚXòb@26„ Å5uk3ˆvmo rÃf{¿=¼€ÕT¹`ld‹AVUuo#O‘Z“GçÛ.D³ uHQ?=z1ß<•Ä@3šamÑÌ÷_�CËÌD’Ëæ4mI|kíÉ(‚Ò,ΞØå9ŠÚé´HRaÔ8²Ë‹[kX2W„¶¬‰íí´G/ʵ{nõDPe‰JUê’’9æd@v‰¬½0¥¢Fýjë<¬Ýzc¢"îƒbeØ�'ÈnýÍg£W¶¿«ne[Ò{²ÖŒnç ÖÇg}P‹wŸ}çÅG?Ý:ùÔ:‚Y BÓp&Êt�»ÊÁνGߘ¯–ÃÅbï+´‹¨<DTG¶—ýxº÷ Í5%1ê¼`ƒ€¼W—e`ÚKÛ]pB=™f9HÖÚH•çÎ Ëç üN÷RI"$Ål^�ŽQ5‚oaL–•¥½ÐŸf/“—sÓ(ï€XðëÇ8]Éå5pÑè¸Ú\ ¸ +I³€ºÛö# u{°¬™¼’Î +eoƒÉ”/ZÓ–´y£}o0~Úè܆ôAÓ•áøÜõ7âJà%½ˆØŒØÕì%+±](ˆ‹ùƒnïÅ\€d²²$wü`‘0T\¨Á€É\!üL!nôVwÂê.‚ÚóÝW÷ßþVmpÅ ðÒtšei§\‚Ï—J&õdm#¨Êj7~&®$‹b¸³ÿ¸^ßxWÖ[Q”QP=•C×Sqý¡ÞØLÎóy5Ö×’ˆ¼Êžëï`˜[ÈKË‚Ø$q/—•!´5k ÄÌć´ÎòM`þîḯA¤»Ý)+Oi`_¸ DÒ mS¤é€½g”—iæŠÉ€fé)j3î§O@!zÕƒ“í7‚6Η4Ii”uÇwŽ.>:½ÿIÔ9äÔî`vqüÖï§ò"Ç·ÃÚ¹jLòRµÇšÕ÷ƒùæöŒðryÙ ¶ëƒ§ÉÍ^ðʈ`éqqŸ¦Aè$YVÍ z¼Ø}7ž=i�¡ÎмØñÅËáüñdõ¤'Ýž¸ád”/èá"¸U,éåÊÞ`ñ²¿x:Z¾‰zq¶ Òråtñ̬�"dk&¨cÝÞºìi_®×æ/ß~þžÎk4ßá¤>è ?:®Ôïªæè +IUMk!Ê#QYåxC*+¬ÅM»zÃsAib,X™ Eí3|£N’W1ÌXí=jtvJ˜a8þ=¿z`X[œ0Lg•µ5<™¢¹•H,†ýÉòÕ›oþÁÞo8ÁàÈ£Éy9�2ù+.6Ö!¨%“¡*éä‰ëÛ録¶Ner2ü”e+ªqŒ¦ªYm@âËâšÞ7o–nÜÈg3"KÇý°Š%1—gi¶’/X¥¢bDÕA9VRIŽc<Ž-g3djL%yN€?¯J’ªÏ\ÿPP§”PWû4ß@É� KÑ7ÂÚiµs×ðyÄ\O0(ê’4èå#Æ•|üÚžbŽ>(i¤@Q”¡êЕ½øÍç{ï0¦y“f˨Y 9p³.ˆîÉâŃ·?î¾à Ý*Z',Q6ž>ûó'¯1Ùþ4.†ènyC³7i®¾'뛢6oõ{•C‚ª %É4¬¦’Ú†NE©Œ’/™’9íMŸ–Ã=Qm÷&ç~m%}@6‚®Î²ÑTiÞ†‰2ŒæñϦ;¯H¡ÎiCÙ]rÚD2Æ›«çÁm–<oÚÛ¸¯˜3ÓÝS¬%¯ôukÔî϶sñ“}õ¨q\kŸVê{0$Û�&œJó,S7´A¡Àƒ^ÃéºìòB_76%e˜/ÚA¸«jÃ\NÁpŸº¦¿¶/šýû¬P,…›,ËÀ<ãʇÝlÁ‹JˆIQÀ‡©$¡*ÍJ¸iÚý Úñ7¤È²ºÒ°Í!I±ºeuÄmœ� P†¼ŸJ1†9Ä^*%Bpý`…¸ïA…¹—I£®Û««|Ñü¸ÖW(�â‰HÉ)‚§e¥dŠl¶w¶vžAº¿y‹„7�×bèM†Å¼~ëV©WKE›b£D¿¼mªCò¥ù>+ ¢3ÒPµ— û²EETú^°OŸM·?²ª{yÌÉLšm‘¸¸+ÃÝÁÛO~0ÞþH6'ÙÅ2ËX>YÕ‰íjdÆMAîp¼Ë2M©œ¨æ@5‡Qã�£í(þRs¦;e8ÀLÄrØÜ=¾ýñÑÅvtZBÊ,SÄ:FØÀ½Ê¾élëö*hœ+Æ¢„‚þUM=îç•É’(¦‹ò�A<†m8áŽÄ5ŸE©Ú²B´0D¢O»“§ÑÕÙ‚u×´F«¢;£j¨Îb²z½ñÀ×`öLR{ qzа‡Ä•öðÉñÅg÷ž~guúq¥y„¡fÅŸŸ½ßê–P=nKWÐ*2¬©È·XÊÏeéry<Þ|$ª†¸€ysxq@1m°ÖHK·{ÞŸ<Tè;Šmdã’ 4û£s’™lƒ¿)öÉÅ@ $?®–Ÿ¢Î—Ÿç½zsßpg$ +"d@c=AK6й�O2P”!ËwÉËj„†1ĉ0“†²Á‹Šh¾”ák¼á¶_Ù…)ýÚb6§ÃÌ'Sb&«1¯„ƒjhƒPrÜMȪ¥‚I!RráÏLÜ΃‹³�îÖŠ–3%ëÆ–N3à$¼Ø�¯µÎ/ýàâÉoo}i{¹‚Ê +5 (“Ú•ŒMÑÚRZ÷éxñqÜoÓL»c8¯ºÇ¨)$Hftל ûwÃÚ.FWfŦfÍ6!Ë4 +ˆ˜É“75yÜ¢\ZQšÝñùhõRvç$ßDp̾„S¶ëÜ`îV`Î!'æ°jÇÇ€Ãðíb°|ËNýÚIÛb¸j:C®PÜ””q6W»åø&,qܝĨöb*(fƒ“Ãê°b[Ò7‚úífÿ‘b®b¨)J€öǧƒ› j“`«E<DˆZQè}Ê·Wð{:Ú<ïÏdsT$<àŽ³Ñlìf?aªs#¨+v€ ÓÉk[ÃÞàAõ¸¦bJêp¶ýz±óžtFbÙèìÎÇ�€�§4×ℾã︕=Þ¡ò2Þr§ac£½µ›/9Ó(É#štyÚ5µæjÿ™Yžåw-)l³„‡(Y+‡‡1)J’¶Ño5O/ËãÈ·náëë$Š4[Gñr2ÉBd¹ÁV½{ÑèÝç¥E×ÀÙ Å̲ü —·x®eû•î¹æÌâsD%3›‘À‘D¶] —é4ß¶¾‰Ód¦#DfƒÄQˆ·8€ù‚T«µÓ;ƒÍ»£ùC¯¶‚ìO35åožÄ—êþÝåá×'Ë÷[ã§ÀX€'Ä=ä§]ÕÜt*@ì÷Íòy·ÿ|4yæx[D†7È:ˆÇ€Œ¥Y§|ÝïŸ|ýâÉ!§dâ^²(WiЪêÀvI¾Sï>ìo¾â¤Hõáð0g%Ü-€ì-9 Í9®Ûé?j Ÿ1|˜�‚j¢ÔàŠ5ZÉD0HoX?Ü:üÅC’D©TŸæ[ ¡€?°|K”’Árc´ùððîŒ8H¤…LNdùŠãn€\žÇ˜€ÓÞùj÷ôë|Ü[‡&Ù궺@}½Ê®QÞóêw€mÒ\6‘¤âþ)ú0æ’IÁ<œnèÎnØxø72AY®cÁp'Ë@àE¡/ŠCø¤ +æŠ ‡ñ2Nx_à!قͲnJjÈ•$4*•ÝjóR<†(¢S¸©*5M‹B•Ä*xxTÛ©6O$mB0͵u6›ahÂd¨2�†»]Õ©aÏq"€üxó&* +µvgŸe½D’†—-8œ6÷;Ï;›OM{\Ìs¡7L.@-~í=$‘Òy“`{²µçz‡…p?DSÛËå˵[ø{7 +ɤ@s];ØA1¢˜ Êifß´z @e5$ãÖA¸®;ëš5b¸ŠfÊጓj`;Ì$AÆá,éŠemh•·sK±VÀ69€?@”©ÖÔ�[v+KI›ÕµÑ§‹F:'StèúsE땽öø§B.î¡t”-»´Ø"¹z:Iy¬[À +Hª“²¨ø6x,°‹l–+af utc!)²6!ÙV.o0l %‚t^'¹$zÍÞ>w™IàB¼Pà¥Ø•Ǽ:Q¬E¹v˜)(kqDD F‚Ò$m®.)ÝîðNX?RŒ!Eº Ç€Àƒ.ËídF*–,€GÕØ½ŸLRÙ›ÍKEÄáÄ¡n盧z¡dbD™Š÷ª¹,S*Š ‹€%ŠÊ�[€Œ¨€â�ù�¼”dšš¹höžÀü÷¸lã%nÏÖ«Óyà‘Àmòò•Mã,!mwçg_UªÙœœÍ©ù’+ªàB!†Æe(òyÆrÆ’ÔÌåd¸ÚLˆ™$Šeã¦Ø¹,fZ¼<â• NµS)6®Ÿ–ee1ä…Ú[X:#[å•VÞêǪµL¦µ÷n`ÀÙ>Þ!É夲73ì% n¡Ë.ˆ&–$¹UöHZR§ù7•HÂQµ¾å̼ÊÐFVÛ²^ÇH3·ÏX¶·Q»¬PÆ%Æ-z{Š5É(®Ã£mµ¹÷þÖÑçntK/È XD\ŽpK˜5NØå¥mkÆÐqgº=/`É5Q€biè„§Zyr0–oóR|¨/>™7@Ú hE‹~Õ××LŠ%`ÎËõ0¢žÎÂZU‡,áüЍm²ÒXP7rˆ}3AÝJ’Ù¼Èóu3)„ØT¬¹QÞô Œ©e +r1 Êbò8°é,ƒú¹nï}D{À÷!‚0è‹»¬Bráºå`cñFÖ·Š¥r*Å‹Z¾ ¦.%óÒz†³m8ðS=‘ òy™¤}‚2y!|º 0Ucîú{ E×Sq y‚Œh¶ª™ –·ÓqKSEdjÕÊÇ”a¹óY!®ÞœÓ)6JÙRëpÖ﮲™¸VÜ_ƒ +A2Ãt%“€NyѼpV3™ h*d�K3ÕRÉY[ÃnÝÌ3”ËÝBÉÎfÕ<Љ¼–ñ÷t³Á ŽçÝþ�Q¾ À?×"ŠU¶ k‘HðQ¸ùÍïþ ˜ß¼‰ßº%’L ŬBQŒ«ÐñÓéWçò ]šö)Ú¤ªft%¥Í°¡7¬ÜJo¹Ä<œtK¨Z,)aSL|– „Øíëæ$l7z§ak_Ò{ó_ÉÕlN9Ì0u’n±"Ðé ¸ÉTâže¥x±Ñ{ìFwœÊ…Q>fEøÅ Ê4B‡¿xÁ‰éÊê&¼@ËçKZb@‹š*=ÖTmÓ´öX~øfºÛ†½SD=Qˆ ¦PÜG‰ˆÁÙ$۱ݕílÁI{¹¼ÇK ¬4¡Å¸s½éND¥` òYéºÞ6w?g¨æ + ƒ(Èk$eçò<E»ìHÌ©ƒ'RR:£‘Tò—wÀ²r9'*0-$ÓÀIHpR2-Ql;lÜöÂ]š ¿øÖþé‡×ÁÉÅ·˜—ÊÅÚ–¤£\Œ{ +D+ `%3ânÞB×ÖhoÅGÔé¦mÌ,cÊ0µT\©ÊÆ÷¤DI%H@Œ‚Ëk�¶ðb7_°ÖÖÈÁàâÒ%H¼DR(äT†,›z>á½È›‚8€Š©¤¸¾F§à Gà{š:€¬½ž Òiذ2àºæçóf©d„Át<¾a^2©pâF,ôÐr¾d—p?‡Úki6³‘W¾ãú[²‹# L¹¸GÓ$¯°qÇ Nh®ÍrMŠ©frÊu|=ÉŠNV@&Ãl`„W¢FhS,ÈÛ&'6sˆÂ‡À=… æ ÒáâŽØ]Ç[ÄíiØ*\ªìèÎR\ÿ\í™î¦WÙ£øF*nÂ%ƒhŠ«$e%šáÓòãûhSpòLF�PI$Ê€åêׄœhÛS–«ÅýÈ +Vؼk–dmÓrÓ€ô$óQ¥2ËdŒôÏ,ïÂwÄ\OS@D)¦I’!à‡\ÞÍʪ錚H2ù‚ä4%ÈLVÕMÃò°²Ê; ÇR—å¬_Ìò@‰EylUv:ãx3x,„³cußÿðG«½Ç ûpÀ.±OñŒ + άX4Æ+W©´˜Jó;@„pºZ{¶œHÐ"mŒîa¨Ž”-�Á0²E·\=™,^ªz}Da6ŽÚÎ0íÀ½\ÝZçJh¤;;�ƒ‰‹”Ê`Ì*LM•ã3¥¨k{ÛQóv:-æ²¼0æy +Î\*Z@·ÒY 4ð¨7Jé´„bž$õ »q\£û-ðL™ã»%܈d»ð"Øv¶deój¼Í5ad…ã{º ¹ú‚ Ë Ou\k^8þ>‚W¥ Wð4JeÔlÞ�:`ª‚Ô‰l3ø|`×ñT*(‡û‚2r[‚oÉ‚S¡Åi—tx¥©»ÍÞEP;!ã›k. $ÏUªµewpÛ«áL þ_Q{�;R*ñC;<gÇ-cHi|³‰PÔȤ9Èì–9–Ä&M¼ØÂéBD… &‚‹,”4ޝÂuêöÐENè€pBC3Ç’Áì×N`¼…æú—- F*À0!‚�y> §+²1Ê´÷ÞË�ÚÎ'´@�¦2€ÀNòh0}N[B /XÁRl%T”ƒÑìÑòäË`]½uXburEüÀ-‘ä&Ô~öRW^F_àÁ€Ý‰É$‚çS•d‚�v—GŒÊÑ7Ü-ê²§6È +wÉ„D`Ëc’la�ç¸xÓ)•dŠyóÖš‡;^õÈŽï÷Õ§¿ÖÎnÞ$Íà•Xg€˜¾e2@ƵÆi£{ÎǪÅñ䡪‹E'•ÕR!+¦»±sðæ[?ü£¸Â!”P «m»|À‹CpBp$œÀ +žúº ±P(Áä·x©ÅÄíTÚ ÷2y‹dº’º”ÕLÎŒ]Œj/’Õ ``+¶J˜[Dã ´ ¶/¨ðù°@LmŠ‚x¿h8nðr]s&ãÅKÀjsR›$Ë,e‹¼ÇñÈâ{7Auß)/Ô)•4Qhð\X(òÉdØi¡¨À¢4{w +òE ÂÆ yØIú²6vÃ#Ã[8dr,4¸VÕi¾†QQÌsl�œ™fMá ñéµç×m2P)Aš€v+!Ñp’<¨ÔΡE²¯’9íÆ-¤TPE±‘Ëñ™4•N‘ð½‚Ø‰§vyë²³Ö—¢LÕb—È:äz ‹ƒ·{çŸyx]{sþbœ\17¡áL’5ó…¢ZX›²Ò~,A]œ¬T,èæÍB"ABâH¦ÅtV.av>ˆ BÀ ö"�º®isŠncñâÙ¬°v+¿¶V*ä4‹�~ ¦4ÎV·¿ì/^7‡÷[f2úãG@ú:/4M{^ožƒÀ„ìŠXÙ|ùÒ²g™¬V@}ÑÙ._?ÿø§ó·<þ<W2P¬tt /ö�dÀ©.»‹y¹G²ï´dFMÇÍãÃ\pÍ ß0*�äD/÷íóq*À'i¦Ô¨ˆšîAβâg4×ÈMЉ²9W„DY£è.Íö öqªŽ à`ßÑv�Ù¦UëÜ©õ. Ò/í2€Å p¦„Z…�TC”§¢4ô�—J4åáqÇ[˜ÉºÀÛ(*Ê@r_lj8o–QÜ$Ù +%4Xy ªSNì-“eâ¾QÖFkx¿Ú¿K]”ãD' ãSm 'AGÔ{O½'(á¯'ðtšÇ Å\^æ€à!'ƒCF «lܺUJ§¨BüÀ?ÈÆŒ4à9©¡è”°x©To›î¾á.$ +£}€JYéx•|Q)!–noIú@¯TtÒ)1‘$s9¦|P…·nä!é‹R‡ã;ù’—Hs’)àuâÖ^Bm’ +hhÕ€á:\veØQÖ׉lF,Œl..râˆ"Š2ƒÕ”¾¬iÒq+Á¬%doðbÓ²!/R)˜FGáAJ]O‰òJW‡†5üø.gØ+ÃÚˆëÒ“n6ÃЀ šÝLÇ.$Â+WÐ%¹z°Q²ãý¢L8’HÝ2~ hsN3B¢�d-ƒC;“SáùŽfã¿(fŠ‚)ÈeÅÏ‹Ñ!¸"èqrÀl›í{»çßë,Þ�}žƒð»’õy¥uï[á± q¦ +0›š‘•aB ñÆñº -dmÏpö02ÿõ$F3QT;ó*Ç‚2- JVA—MA¨ÇYZmUš(YÏm÷fûá¾f€øÁO%¥¿±x¹{ü §tó¨‘CTAY:€ÜÖ‘tÍòÝð¶¤Í!Z×X&Ëû¯ƒ™dÅ1Á´ìIBp† <Ë™7ï„íSŠ•Ð0•‘@Öq|í²q¶T,IŠ:lö´GÚÇQ7Èf%@]p'�¢tJÊçmQé ¸·NÄ% ‹Ëô!‰“J+‚ØÚ§9ÄZOÒÉ4 ]B@+ ðþxÛêY¼|vH¯…xÿ¼ÂòÍK=b¥³Z¾XÆÈší퀥kë4ÈF¿rè…§JÜöB~›H‘é¸OGψ7o"¹œî‡;;§¯£Î.Æ4‹¨_(YÅ’«qW_¬,¨“¨u§?~]Â@¼4pª‘Õ8¿g„dæÄ¢ÃáÆËéꓨó(Óד||aE»°Fø]”¹î¬wɉ]ÀƘ¤„l4c(+ j—Õõcö˜Êð—-u4@<PÖ8]Ç)ˆñЦ ]/nv©VÕ~x¤¨#¤%TᄪéÍH±M‰«²¿±÷¹ÆwåRLÜ\»¤JB×´¶AJðÊXP&¼Ø—•†Æ5Æ3Y1‘�[ÖG—7ÜkQ•ä!È„<â± +'½GµÎ=pB�œ¸à0Ti»£jûHÐGaûvoóioó%'!¨aiÊÞ*jž“l¿„Õ®Åp`…_Ââ¶> +«?jônŸ~);Ë\!¦| Å ++–?õ9AÅ#V\Éè¸x .®wc,k@X®Ã2tZ^OP¹œ‚”ÜøOÔ‚Àðä>ÃvryÐéæÏDdœmp`Aí Ѿ €–ÍÑÅ’è¸#Ç߸‰�ø£x9S4$j5ÞÚM\ÖÀd𒲡ê3ø^†ƒ,àg2†(N@egAšaðN˜«"AúËæ¬dRX[ñ¢Á±A|Sƒ¬°Ê´5y9ÛýÈ€Nx@ﻓû¦;ƒ¤Ÿ(@|NœÊÆÀ'“WÀpÜó¼YmGõ#˜ÛdZÏä,À.À–õ-ª(©Öª\=RÝ9%t°·T¾¤ñÖ¥ÄðI�yˆ‘"â'ÒqŸ#�%†¯›ÞÒðv-ÚéO(¡ñ*ðãÀ€0/Ôi6È#*@.Äãtõj÷ÞW’9ï]OЙx/b˜ ïcˆk4k P,+ãd„6’¼PÔÊa…Zµ�Ó”xDb'_0�6i¾Çð]EŸ dj‹—7y�ªá€ðGfyuŽ·>Ú:úЕðZ®è�w•åÁåNTKP6ËÁžjmbL4o*Æ.KÓP5{c[Y¥¹Žn—ŽTRµ=:å¤~.ofsf&oRlÄiÔ%3™ÄQLw½ Ë™+$—(—Ag"HYÕ&š6ÍÆ‚º¬›¢:!ØF±è'ÄõW*S/äÕ¸Ýh:;jöÈs¶ iú°Þ8R•Þ×¾–"ªšc»r ;ßÎçõ[·ðLV6/tŠE½P°€I +�¹å QÜ¥S<ŠºÀ:’€9!!<kHÉÆKÚŽDu\®W»wL{Ê0 2N%ŽSžöGgÅ‚ +ˆ +b¤ˆù$ßÉ–œdFΕì|ÉaèŠa@¦fØ!AJ¥(›w2y=‘f0ª‚_žÖ+à6Á5ËÕ³Ñê¿s¨ø¤ˆJÃܪ·IÆêòþ‹h¨~Ùb¾ÃÉXnàr12“A6'gr2¸%ÉÔÜ ~ø:_4!º[½ÛõÞž¨×6Ð6œ}HF8a3ŒŸÍ‹™/Š5ø]HôéxcY‹w³Q·\^¬'H•Ñâ¡ê€à*ãT5~Ò<-eóš¤ XŠU@, ð‚6Ñí˜z• .4°Z”ªQå£|Húƒ·–w‹~ÙêHâå.ÁT +¨YÄlÛ-ö^O¶ž›öˆc}`#’ܯu/6¨\Á™ÃË£FïŽíH9 Ø%œ“•Æ$ßÍaÂ)14S1Ì!Ȇï* +òæpãfÌ�ãxJ˪r\ÃAn{%ħè>ÅEi’Ï7o!éϰtV…’µJûÄmÜ©4î1\÷Öyë3â‹bëyÔƒO€°R- UQ°– Q¼Y•¢ëù‚%js^©@-LÀÌLZ¼dãµTJJ&øløL|߈Ay…¢¾¶N€~dÙŽ vãÛ æ•·P yy)‹Z™¢U@=ˆb’îæv¡hPtÈ‚'0µtÖXKH™¤T_56 o‰3a‰pâÇ„^ug²zgG‡À7âs,ˆ¯æ`@«Ð ++ÎeÅIŠ‚a^îÁF¦½ÚØL8R 4,¯<$9ø˜ +LÞñϪÍGª=-ÅÇÀ„¢ãTHrõj¥2L¾dÊú&'õÊ¿¹†Å'Ž2q5Èø +`êB€«ö‚à›kIA}ˆ»LÖÀð� $8‚iÚþ!Hõõ4 ¬™›†³|C5†’Ò@0]k¶=‰÷%¤n*§¯%ÅTV¨¡¹z®$§r‚áLF³{ÛGo.Ïo‹É4QM–z^°B0nÌlwÇ*ïÈúüçÆL.'Ñ,X3º¼ºp*wkÝç¼<Œï[´µu<_P`ÉȘ©ëÀ¥×I€YQ +R7_ÔáýÊè»[ël2£çJÞ¤�KÌVÕ¦J|:erµsH%‘µÖÓNvÃÆE9Ø}Q*é§6–¯/¾åG ÅÖìZ‚/!e@×X¬¥e†ï\<ÿyoñŽzëI1±Î±\;¨Ëýÿ"õÞ Ã£ÉÁ—Ó÷m× æá«àØé¬T§Ç^õÁýW¿2ì}Vêg¸°¥€TÞÕ%ÙD‡fŒ81Ì8XñtÆ@Š¡(L[½û¬ÚKdË/vß–ˆ +NW16Ì�‡A# m§[»B£6pÚ¨ñ´Ù{m–wîBK kŽe>Ä^KCŽdyåù÷De‘HùTÀ@¿vnzG(¥ +jêòLH<ÛIb=A"ˆmØ»nx +WžÉËk *ÚE((ðRZì»ÑÉæÎ×;¯Ecž¯XçH"J¥äµµøî Li TsyxçûáÓ¨$¾^÷ÿHT& “Y1™•¶©Å˜ ñnUs¼]LJ©Æû0hŒ$¢d¹ˆÁ?=”¨bDHR•X +¥…B ôTH~¾hÀ?ÓA,–mb+>xÌ7dcáÕÎm²äz¼%ì]æ_(Ä¥€®'Ö)ue¤úÔ_2 ôI3 óõu†å†Ãåûš»âø1Eµ`Nt¥]«n"ˆxóV£Úœ´eùçÍîK^§²Â[˜eŽV‡oh¤„ðÞ-,‘–EeØ2`ˆt Uzü\ÕLRÉñXÄjÓmvm,?*¡Þ÷âÝQÐ2$ßZró&�܆â`ö¶A e€Þ×NaV;ãçš³“H›ÿÏß’qôÿ÷ü5® ¹jãÚ«6® ¹jãÚ«6® ¹jãÚ«6® ¹jãÚ«6® ¹jãÚ«6® ¹jãÚ«6® ¹jãÚ«6® ¹jãÚ«6® ¹jãÚ«6® ¹jãÚ«6® ¹jãÚ«6® ¹jãÚ«6® ¹jãÚ«6® ¹jãÚ«6® ¹jãÚ«6® ¹jãÚ«6® ¹jãÚ«6® ¹jãÚ«6® ¹jãÚ«6® ¹jãÚ«6® ¹jãÚ«6® ¹jãÚ«6® ¹jãÚ«6® ¹jãÚ«6® ¹jãÚ«6® ¹jãè_ý-côoÉøÿ—±÷Ž’%+ïÿßs^¿ªJo"2¼Ï—‘Þ{[Þûz¯ªž÷ýl{ßtCcºä@B¾!F¦± ¤ÁHif5;gÎþnõhwfÎî9sH²«òeDÞ¸ß÷ýÌ›õ‰bûâ~kïî½c«½cb½ïíà÷ù½kw\=6}LÜ1ëWïn9y÷™K÷®Þf +xÉJ9iÆœ?Ø;Ï(¯¼“Á›˜™«gN¹ˆNî?Po-âÿÇ,Æf¬£ÿÞ>–ÌÙN>åf³NƱm/crvÚJ¥]ÏËfݼãå˜ÿŸo²Ò)ÇÊg³™\6çf˜óäM¯¼–·¬œ—±æßŽ²Ý¬KÛéÿŸ7ý/wþgLç>¶rìâ±¹cyFQ™Õ•cKÿÃO˜·™·ÆÕë×NÏîÝ)¹øÊ‹ÌÉÿô²²tñâÞ…ƒ}æèU/3Ž“Q1Kuüõ&ùáàØõÿyÖ,f€Î⥛Œm1cfcËböÉûçÉèÓ6sôDfÎÊ;©læ•ßGÿÃïÿý¿£{ÿÿúû+ï¿øÿ~<þsåÿ…MFq”3ç +¯üxtqÿ=W0M÷˜Ù:¸qæäÁ|·Á¬NÛÀ‹É£|yå¿Íµç½ ›ÙbËÆ5eÈá§ÿ· ãù·ƒþí¿9ÆÅíìÑpÓ9Ð:&ŠG#$Ù]`2¤}lµÿ0iÇB%^, +RY ýfŠqºÄ +-Qí°|5‘ ]X¾`$û²Ú•Åd"”£h6“àò¤?4mKRAÕ–;Ð-Ò{LÀ±RSÖGQÊ †„`‹E5Ò4KoêÖX5§%}À© ŠË†c)ÓîhÉ:ÍäT}2go…WÚt¢$¨=†¯Ä)/5\‰“‚Ü0Ó³´PòÕ(•¦¹|Œ²Â‘$Mg4½ãzKª9Ôz”²i.Ks® äÔÁÉ+³àä·²ÕCÝYÀáÑD:B9¶;Ÿ«í:…5;»ìwÔÔ4+×"´ÍKUVÀ$¤C#R(:•`AÌóR1VðY ¦Ž9‘¸¥=†4«k°BI”k,_¢Ùr6»i»Ë4W Ç@ØF’1Ê6R}UoGbÉHÔ䆢vHƒÀ(i×§E®çó«ñDš&í²jÁ>å𯱘‹ãáñb‹—Ûß`øšŸ4:2ñ"Eçh:'ˆuޝÄâi†-Ebù[Û´§2ј۲ÜÔÔi&Ï©IŸ€‡? ƒ¸‡c³< j†ÃMY~??9•„äp4;‘¨›`ʉDg…1r“+1ÊõøH$…Aúýr<î±\-ÁTy¾))Em¶ZÛ^~©T"'«Ý”;íp4©ñX'ä¤Í•CQ'N BÅ4GI£KSiË +r5–p‘T"#*Iíò|.•¬‡Â +HN#5+i#VDvu‘œ¤U9—‹Dô›1¬‘WÚHº¤±(#5¢Œ—`ó›[÷Wš[4ëQ O3¦s¥3vf›š1:%-ØhÜŒÄR‘˜‰ë%]ÅFŒÎÅèl0lø*†7®KR9Îd|IKŽ2…ÝZó`fùrBLǦbtÜZ±uÆ)lqj“[ˆÈÊòþÌÅ8ŸESZj¦Úº˜-ïsr—•;ñD.Ma)Ú# &Ãú”_G-Ò\<júüˆŽ£Ò^¬0˜p&ObtbË ¡H”rUÌ!2oј…D %Ò;–tµ#Ñd(¤GÃf,j!ÁH4•-dV2Þ¢Ï'ø¦ø`PõùÅÉ)AÄÅÒl•»4SÓY*Ê 2HÃ:Ãre„€§í¤9C1Þ„9>I!9)šÖW•Š…œ-¨G"äoµOLR~KÇŽ«ñBId§|<†AQé@P…UäR$šöRሑZ¼Ú'ÀVq~L‚_¤¨Œe/;îšm¯ˆR3›Y¼qóMókî:RéYÛÔù#é(¢8éŒèä¯~G0½žnö4£Í"ÃÙüÂÂUÃê…b)_HfÙb&¿ãd7Y.ϰN(¤u~êaâL!š(°bËHͤ³+ŠÖ¦â¦a´²¥UÃpJ‰“ë˜yIëšÎìp|ÞtF4ã!-SöBÒ]âäv,žKpåx‚äÛÑ_N‚¸¢¸‰L°¨"Ë5€l,[£™L8ª“n.R9OqyÓYl nôf¯×”椂nõ4{ ØCVi[ÞZu6WÜèt³¥e 0M{†9²³KJrHóuFÄ%ÔèDðBºÃ@A hÐLé¨o±�‚* m�‚ÑT fGÖD=Á¶{%!–aó¬&§CËÔ&¦$àLœJGc@00‹“çhÄ¿OøÊd4béZ[’êÈ(ŸOôû¤WZ¼ûü|8jÒlIÑÆ‚4¤¾a,hÚt$Ь(ÇH‹¦\œB4[Wõétf“J¾„? P4iuÆr%šÎ +0죸ÎÄÔ +…d*n3LJ�B½h4ÍqMEnò|^–Š(„©€îÚ@išôV/ÄÙf Hã´S>–`Å:ÞÀ° ¼ZÊœ©6“éá]ÇòÑp2¤}BŒ4ˆ* ¨D>xD(+Ì�Ãá„Ù qÖP[£ñA.GâV‚Í ¤#Kb1“:�„arºÞIZƒ8í‰jˬX£Q×Bí¨§¯áºÓÕÖ^ÊÚÞPwúœ\“®fðÌ +•[Ìå–u«ë˰FQ9Yé3l†n1ÀÊ߆Sáh†Ú˜jQ&Ý›0·,Wä„¢¤Ôd½%(¤=€™YÕÙ„P²½E+=#-Ãê +F=SÚÏÝ®¶Ï`þQ#�CkQ§üRHÓGùÒ¢£#Yi2l°Cš +DSÀ.PEÄãP‚Ly`½("ËTi¦É‹C+½‹’‰ÑiÇYP’ã@8éh¾€¶ÂI�zqÚ‹1\õ §€NáÉ1¿¯1…£HŠ? ‡BIdÂñÉé¶K^6CQ;ÂHÌPš¤f„HÚ›cÅ9±‹8Óx¾§à;¹@Èh”ò&'ù`@ä‰ &ÍŠR'¼e*‘Hšç*Ž=4S)?ÁB„ûÂävETgMwÉH n“S\ »&§è©)–er¥Âš¢÷)®Œ¤P1J9j_CŒcšb+ñéŸ 1 I¥XL¥i›áË‚Ò3Rs¦PVè„r¬µNÇé,b Ö >$Òþ çAqéÆ0_„Ú™ +Ê�=€$·‘Û†9ÐR½¬·ðØo]=q›â½8ëò +$ÙÐr—2¹õByKPêä*pæ˜K'*¢<ÒRËZrIÑgñ6:‘•„¢ž„biu8šÆLªúPÑG¢6H§—WnÖ[»á8鿞rò•…ÚA¾¶oØ#Çž¾s÷¬âÈÑc¤á\sy ª]È›#•b€\¸£Þr83BÐ?ŠÉOú¨ 鋿ÆHÙ–üÁd8âÅâyMë)Z}ÒlÑÂѼ¨ÌjÉ-9+ÈÝ£v5lФ©U@EtÌÂWA*ž ‡pä"ƒ2ˆ˜€:å“Á$p©dù ~îøD,ÐB!3u�r´8üa5F»HZEñ"Š¢ŒiGE32§Ž“g@y>Ÿìó)á°MÇó!\EÐ â®ÏÇÄ&&9ÐÞ;“-¥8Ä^|d$XLKžf‹¢ÒŤq|ŒŠ»â¨Œ?$OäI¿‚«kÖ!ºš´xarS–µi/·ãe·“É®,zùìt:·ÈI5$d3+£“Ïæ+;ᨪ5I©B.Õ!´x©«ê³ùò¾›ƒŽÍB–$!+”9Jå¤5ãV[݃«×_?X8CóQk*©‘’Á2¼Ò†Hr�êB”›zj¬%§©£hp¥žûç»ãK¡˜ŽyW••–ªuq¬¬õ\w¡ZÙÒS½8CZAsB:ÐöVså=55´Ós/¿:[]FÂGâ°NÒzPì@Tèa @4îágPwHofµ\"T”® +!n `x¬h�6³9ÒJÙ'q*¥ò¤/K¢Èò ^h$åh4ƒô1 �-¦€KŠÜ…šÀWe©yÀ¨X5æøüj0Dšƒr,PÙ“E’`·©©D4jûýÚä$SŽÅAF¨YˆdÄAƒ¶dË–‰ÿbJH3¦Àóhfœú çÄø‘Z]èyàR@!ê= MM‰H'BÇ~é¤Bþ°l ô¤'Gj÷È1œ¥™PPƒfà I#pÊžÂ$0y†/ òÐ EÒ ÉäI,”a®xPnž3RÓ‚PT¥Â w²ÞÞMp9^ª rMM¶mw\,¯kfÏÔ5½¥hMh<7½dÚ+¦µ†š5ì%VD¾Y"_*V×±$Ô8ËUŠåýfï\wæbgö¼lwDµÞ蜲2Ka*{Ôë¥j¥—Òùm¯°#kIÑZ¤mjÌR�“²å.¤³Íîy'¿Žih-¶À’ä6ôÔH3ÄQ&ò˜XIi@öÓlÞN/µMoÑpfòÕ5ŠÍH âàDÀ¼àHzAhâƒ@>¿,pEÇùEJ "vš1+ˆhÕ}„<¡$"N‘¾M5^ê㘡˜‡IŸè( -Œ ¿F"Ðfy€4Iò2>3áÁk(UUîdÒ+’Ô E࣓Gެ„ôa¦¬PXÇ!áÌ<²ŽµOZ!‰Sapb( åO©À#/6tød‚ªõð„_ñAšÞ}€ÄÁ€¡ ‹¥ý~ujŠŽQçW€„±(i™CP1;.ÖüH° Š¢âYäD]‚ÊÈbÃBF±ÈÆ©I.µ@Ç¥ ]_PƤÅiËç£îº+ËBrGmž~6Iùë_ˆRö4¹^m§Ü1N«Chï„å弑ªŠ28Ë&ké%(ÞlnCRû°Æ1:ˆ¸qº�kY3j²Œj̬hÉž¤5%£C‹UŠ/ZÞbgtÙÊ,Ä�r‹‘·Ã¤³¨™s²>†ÝÆû#'‰2!J9²Ö7¬eIŸMˆ^‰¯CÉ�lÚТqÅŠ@Ìäé°Õ' k\/M:à–Y¡šLM{ÙµåDâ&dŒô*†À§¨ˆ $Öm{CN±ÐÞ8ÿ‘évB?݆³€à™a«Š6/ÉcXo†.H“Vµ¨åÉ)4:¶ã±2 z”tš‡ŸEº‘Gs^§Å`؆vB’BÊœ¡ÓŠPŽÇ͉ɲyçb1ðTy +ÌuD?>ñ“>Á@<+A + +ºi¦«j_Õˆ8š™èü£–xÅçã1l|¹Âe <�€ÑH:Ë ß00lP?¡Î€Lº¥uÈ6Th·”[\[¼{ÒÏßu<†S%¨œµlT(:I�§'§|Ôñ»üþ) +°YHNÈH(L„#Qàô!ªU¥£k=Uo#¬°ÏŠÞc¤R0"ѬÍYE�¯ì̲–„㦤÷bLÖOúWe‘`¶»äx‹’ÚF Ø%ŠÍ€#”EqY88IäʇfzU6úq6c¹sH3ÄšôÀ–;éü^©uNµç"iŽ‹¼¢¸\(žÂQ†³®Yë +2G¨F(ä’å¦SÎ|ñqa… VÂàñ+"…j9Â]JJËÉëö<KúÇ“îzpvªÞQRÃPÜžˆxEk¨>ÌGºJç‘lÃGL’DD(¢XÔdhõˆˆ£´Ìá¨)E¶ î…’Ì g&§x"¼Z1;Et‹~!ª) ÙÀª`À“‹Ïèæ%-r‘o°¢Zò*Õ~^aŽšGLkÔ'§¤pÈDLáÎ&&B4esl>BúŸ™>(]àzr˜LX8¤¼ÒW˜t<»ð¶€)¤Êñ‰ð”FâÁð&hP›‚:‚!|´árI˜e¦x´úÁ'½Ã%\K‚ÍÂ(‘¾”-ŠùPXœòŦ¦"¾©X$lˆBÕÐ;4Š…¥”QƒÂäF"I¢÷¸\i@§x!‡`ßÉäÀ\‡T²ø¦¶9¹‰jZ²Á9¼Bj P£:2…=Å@Ø™™•Ä„‡ŽúㆡZÙŒžMÙÓšÑJ9¥ÆAiÓ†‘ L.WÜÍWOP,¹œ«ìYÙ5QïÃv…IçѪãºÅ5€tšlöCq‹ô4 ’~r`CÛ™ÒâT½‰4€V!ê7lÆb®eÎesë¼\E“…òŠê´ÑÖ¸´8áÊFëTcp…Ó:T³Ó34Þ‘ xJЖç,*JËàÂa)‘p§| T: [^”¥rqÚ†‹ŒDHk°•߯ûüˆW -ÑBäA–ÅBD½<œœðfQì@$ÀqÄh;3ĉ "xB!ГÈ0éHX㘴—îG)�\ƒ}kÕhÄ ‡€œšÏÇplŽŠ™�.pV4êÆHƒÞé¾IVt1?|º?(B2i*ÀÀd0ä“?€«cñÔ‘Äb'&(à00êÈ#I£wéê³dql2ðyxy*àäQ»\^©Tç‘Tá`‚gR<ãÂ~e‹ ¤b™Jm^ny{„xV€´7NzóhiE +’±¨'í¢=A¬¥'.ßêÔòÄç‡÷$’Øâ¥z¡¼+*-Cï®íÝëd‹‚βl^’«H-Í蔋Ë;·åTÛ”€h–˜Öbúv±qHs%Qª™™ù(“Çm0oÎä+'íüªçŒN=ä¦OÑGøLºž£UmÌ + ØùJ}úÙçS¡ð+þU7°É¤Q}"ßáµìÄdX¤„ +r¥;:×½"ݤÖϞŵ‰ÉÈä$Ű9ÒF”¯˜©1eÂpEÛGôƤ_ŒlO°éX\O9Àmë•…îÉ)x=8Ü’ –€ru£Å ÅãÔÄD><rD:YI°D?¸QÚòù#<‘€9p[@HT:äVRo¸™?,-‹Áh@à9„¤üZ$dpL.©wâH!ÆÅ*l€”t㑸)·RYgù°T¤âùðQÑAœ#£xÖÕTäR‹ ü]ä@Ð:åÜÒ•`T øX&nÀ�»&'Éàƒ!KÎË.¤¬®ßG1”γf< +gŸ¢±\AÕÚ€;AnB&@¦AÕçƒÑã—“•* +¦(d›&…I²1çX³µö/•�òYýCÛG‚9#ë¥í•;¡¸Î²YY®s\8ÆpšÉÐŒ[).ìy4éƒDŽz¨Eî$ÍélyCP›¡#6ôº?ªqb!“[ ¹bF˜Éór£ÛÙ{è±w¶»ø\ž-%€iÑR”ã{zjI5¦üVœ¯ÃŽi +üNJ:Vê){Ž˜a™§R4žŒÑ)`oBÈ'¸l³´òØão‹%R““ñm9é1šò¡vtH5ÓîÃò�s(ÚŠÇ“í‚pf\¸œ¹úê·ÎÝ“²ñLQÐ Æq‡;{÷µzûà”ÉÉX À"@.S~ Ø‹ñbà�]>Ú@û}ìÔE§Ém3Õä’/¤€1“S,¤,ñE‰/iJÃ4ûLÂsíA$j�v&&ba\8ÑÉÔi:3'HùW`0ì¡D|"蛲udèµ£.ãˆ$s`„x @˜ÀÉ) +ŽÆP»€Ç»Ž¦&qr˜Á*À®ÒçcÃDJ‰øhü¥]G7Ô8 kLL1À(0c"‘¡áÄ)neÊGØO€K¢M»²TËf–•Ô�"Ÿt[QrGL§˜4’JªªÑ…•:ÅdM{lçXæ½(H†ÏóbѲû¼\ñ…Ag‘Üaƒ´OC…p±(U0Ï8œÍ±B `èá乤9.Öv2µ=ݧ…r(šð3Vüa•Êp£W”aœ©šÖ²iÏC\…¢â…bÞ‚!¸-—H刌 aèÉ©ž§³àå—½ì(_œÈÂQÊ�5å‹ãWL…¦ ©Ã‰ð›¤rœ²‚a‰Tü¯\A¢ºîJ¾¾ë'·œd”χIFu3~?«’Z× 7ÈêSÌ…@€C ý8Y1ˇ".D>ǵRÖ:Í–ˆ%Cq!*„}(LÖî8±íf·à&SÇ;y +áã=ÒT:팑á°L¦âàG5NÁ„£ä¾˜,7ñž Èì)Ÿ’®ÏSD:òÄí'É]È£HUâAȃÇ#I2lIÈ¢âp£JyÊ'‹!ƒ‘ň>èW4±11É;ÝE‡qõ³BÉ‚†:ŽáJÙ`àI=üH4iME"Y ZÂ5zO’ê1(ÚQ´Ãg#q'–ÈE©"ÅÔôV¡zÚ)l°p|4 +A¢A‚áX:Ï€µñ¡ ÊSäZ8ž¥¢,W%¥ãdÖSÎ"Í`á¡ÕY8h6K1Íڰ󇺻LÁ-Æ=Š)%È:C&S¢‡|µP>ÐR3T¢Ž¹(í›¶ üq]ñ8T\‡#=ìA²@$R´¼R¦y/!ähŽ,Otu”#E;4›ŽÄŸœ+Í–ÁÂä®b"²†ÔÄYûª wéD‰Izði8„iä&'#`Ïp̆žŒÑ9†è®$ Aø}<¡!øÄ(NXf8ä^.Ë1l]±x’¤ÇÑb)bOäøt(O¦¨k£0£bÑÂAPR#Nåãq/ÚDÂ@0g·4_O#]í�""¡T0@ZA;懈òÍÃOL¢ÐÈRj˜ß4ìF„x ùø$ Œ@�ÃN9öBV'bN<Jn¤q!8 +ÔÆPÏ\Ùœœ„`aï:€‡ÃI²@¶…yŒ�K¢Ø¤€ú~ ²l1D–2ø Á—çêÉä3ŒˆB)“£X—,¼ÓyA&µla_MMÈa6Üô¼tÔá„’ª¶UmÈ5…? ˆl9ë-†b€h\lX³Õö9'»Žü GmÝœ”©ÇHÊÊìî*ÍW¬[2¬yÓ[“d(ᬚl1\I51:MšSpúEQnR4&J€Þƒ° E¼P4Œ8Á0-/Ð?Uä Š‚æ3¼eÕÁßÅ,¿_4™ azÒŸ� Êz[Ôšaøh²ÆUÒŒé¤9!È©ÇÈÝÀ4¤Ü=EåÁ$t2 +Ѝ“Sqø/ÒW +ÖÀÔEìRȃɉãÊòjÄGV½ÀA¶(LsÍHΓ•"±‘`ÒS~†¸¼°Tgˆ *iú Ñ©˜!ryß= ï6% +l‡€1IíCýFLˆXÜ…v7E#i†.♎åQhwÝ»ù}äîäñãñcÇ¢>â:ÀÄl‰gÀ×Ç'Xš.Æã˜½E•,k,I䙤ÚÇœW¤cÐ/#먘ϒ ²““l8Mð +êÉÔféhùBA!#ÍäFxÙ’0¥c1(Uo +ƒôI`"D9$7# ÆBÐ{b[7§Éæ“°Æò–¯Æ,ɤŸ¢vìôh.L6–¤c8É ^Ð&' +uUé*:T=§“ˆ² VY™Ü*’ àlcd±Ú�¢ã´þ B„ åäNBlEcùéæ©™…óA_HG&ƒÂT²|jûÉiùì|ÜÈ3i¦.)]†ÜH°\#Je0ÿ[›÷¬o߆Gƒ¬šòÉ'لdzÏ3 7FŒ||=á§§"'Ô’æŒãiÆ*Kó‚Tœòs„Ò7¨yÄl²'îð<þU$wù£)x|H>‘oÒT)²Q³TÌ X3˜2ŒêhW�YÝš +À¦óÞª"ç‚Aà§c`’?�ªÅ›e:nÉ\V—« § ?<R4�ª…æa‰¦1-�,g,bst™´ +M–®„Cúñã‘ã$±d~øT˜ˆ¨(ì<æ0–¥h%Já9$'ý°™ÆÑ ˆjÒƒ¶à7qEx}8�« šŒ×NƃäwPz>B¸CšÖƒJ4Ìü#ǃ÷Éš?°§…YƵ‡IŒ@Ĭ +?d-Y Ü’>Ÿ²‹Rî$ÙªA“egä@G™�7 +”-ñR:Çïg( +�‰{q|ÜÑxhN׵ꄟÈjKVÈ“PÄF9‡#N„�5OÇ“<çaÀÁˆ „åžfŒŠÕ}3¿Ñ…ü‘Õ”Y‡A9ûX€Nd¶™]ˆSYÑ ªÑ¨C3Y;=ßžªµwàhŠ,û€ô‘QTÜ…|åÉ)rØ!K²j!’تÖÒÔ†(W‘ÃG2X9ZÞO#óA +R˜"$ +š0ità§0™Q\YH·¦HŸxÄÅŒDRGd¡`žß;~WÔï¢Ä!€îcf$¤I"Á�z aºt(çpPCXh]žš¢ŽßB–âÅH(ÉRYIªI2M䋎`gx[˜S|Òir’ÃG»„ñ¹ÁÉã89Ï%–vc1/ˇc¸Æî¤_œ�w‡àå=$¿ ÔŒä@5úÑ8¹£A™§˜»î +€jc‘d4¬OM!½qi°„˜êhu4K%¼XÌ$…0Ȳ\žì¢ˆïCŽÁóÆÈZ®CVÀH‚|“~¿‚JÇø‘¨íÅ/10È7‚`ág¨JÓy¹%Ó™‹‘åÇ$dìg$¦Ä(ø£4ò_Fµ!øËÁ(W2ÙeA"ËAd ”ÜFÈ,XB]måŽÖç!] ðj4S ëŸ\‘츧h&¤B|Pò$‘h¤P°¢Ôs!ŽP;( +¦•+IgZO èD…Z8 +ćäàp¥XÌAz`N€$áX’qŒÇ0Q®$UÈ]lºÈóMŽ)EÈ]�^�ÝÝk–` ZCQ3™Ï͵z'ŽÙBн٣½R"xÊç‡òOÝ]²ßÊŸÇ3¹£7ÉML°pY8…<Çbк!Z… +Cø"dR4éÂMND&'œ<¼¼\©™M¯p¼{×]¾ãwÂ’K`Œ8ºŸí„‚éÀ8 >…&Nº¢Ü†TŒŸà‘‰ý9ò ;Œ6çtZèÇP™XĘ8̉ˆ,ŠØN‚Dv¡pbR‡Jd\åèN1¹y'i Í(©^€XQHV‡(I®ˆ SykS8Š137‰’§‰Î‘ÉÊ2Œ¿(V£a¤ZŠÖIpU^¬ñd%ª™`ËéÛî,r"‘E˜üaÝÖ Ïûƒ²ZC§Ž/¤NKK† È ýÙÉ)TdÛ†=áS&}Jœ&J‰f‹@o0i‚+Kj;Áç'¦(xg@f‚¦® +µœ`jHæPBƒ'¸R½u¶Ñ:'+#–#÷Q8dJˆÜ:9Úê)íµËQ‰Œ; •"èaFc9IìªdÃCâ‘e‡£Í6d{’óûÈnO\šntÔT1:ZÉLŸ>ÅG`#Ùp…l5 ‘UДϧLL0`±#=ŒÔR‚P>1²š =Y¨D#rÀXsÁ§ppàšhŒl(eÙ\ÐÏÝu)òM±@`ä?´Ë6࿈¡˜Šó ²½äðËG;‡0¹ŽkdqÉG7§xh•(1¡^ŒÊ"(j@M¬ó‹ÇŽ…‹’Q +óèD!»×òøGJ$¤å)ý•ÔŠÅóŠÞw²‹)g:i÷íì,/ÃÅ·$½¯}Ë[póë™òÅÕâdc ŒpÁ%÷^iT}‰f€f)Glù©èðé5ÄñUtV_”ËF²²Æ‚ÜåGnšW5½×霩TwõdF�‚´Ä9¡… ’ᆱ +ÛŠCx(¨}dÅ$£$‡²1€Yƒ?ºçkít3|9…Ì“ö|¦¸ÉÊd•Ô:½©€ +;©cYŸÃN’EK ›&»ŠÑÁhýA±tœ&ûWe V…»’#»�Â1²½d„k3y$ÔŽ¢Ty¡ž`*HZ¸¼($ð‚d±š`!D7í±|™Â€£é冢dtfN9‚RÍ#n‚¯ªzª5¶ÉcX?Ú{ @5AÖÂxÒtŽçÊWB^a<arð¹µ”@|pâb{Á¹€È!†;³Š,x¿ç’F3¼¢T²Ó³(à'Ò’—ê»Qb޲šV%{›ÃId…f‚¯EÉZoŠ ’‡Üv¡¡\�EÊ™wÒó®7‡pÃAG#$]ÉØXqUÌp¯ÜÚ´óspC–7+=)a ²¥õjïLº´)i]r“—¶Ý율¶Y(!:ºÙµzÊñbYKvü‚líy²Þ³³‹ÅÚv®¼’JÏrrfZ36d•ܤæÑ{ÚZªSnlËF+Ædp!‚:P’³š5'£b'”U£›.,ˆœìª[ØÔ.Å¥Ã#Q¥:�áè¾d6–H3B5ÙNÚc;³lº’Ú„ËUA²dQ¦ÉÆÅtuÚ’EdÁËPir…-â„x2!{ã£pÆ¥2˜b²¢Ò†¤ºíΤ`Ƶ/V¥góð2-&YÝ%ø"‰QÔ"÷@¹‹ÓÊ €aÊá•'U1NVÌAEÐ\NMvk„ÒÃ0¡Œ½"£Ñ74l”% +UQ¬‹˜4Ó.㊮a(Ò¨…Cð+þÕL@€ú`Ä"l"nE–ë–3È”æíìÈLwÛÓû–7Oöÿij¼Ôä+ÔeµžvziwÄŠåhÂCd#d˜†óãr©ÑÐKj,n¤ìÍ8¢”S´:$4|»nÌ“sf¯�Mî£9ž¨Ÿ.-*fßÌ̧KšÕÓ-`W%év+íJï„á‘)«5˜=«™}úPï ä-o.鎕TG5‰×+W×Û£QÇAZ×É. ¯²å•LyCÔ‡¢:Õr‚ÇðˆrøàdfÌŒáŒ-ÚSÍ¡¨5µ.=ÍšµrëN~Ý+n¦ÒF²3˜¹ääWÃTš—›nnÝÍãõå”;ÏËÕŸCªpdo¼¶•äR±º^ëœÈWÖŠÕ”=T Ç\Yï +r=Fv0ºG[#LØ7ˆí£›¿:ùr“å…²¬´]oY3’ÞÐRm;3#é5ŠMËF—Œ‡áÌ`¢ +ÕLqÅÊÍrjm +æÎHJCMö gÏ䎓™ïMŸÍ76Ugä•V3åuláž.46½â²KÖJ¥úR½»ãŽî쿲پÌ+ÕdªËp`C Äwô€ºnŽÁ&„P2ó$K¥*+Ï1™8°œ²§[½ÃFÿPÔ:€V¬Â¡“[ö”Ér¹”3(wwjƒýáÒÅÍÓVz‡‚Ö–h¡F !ÔÔŽíÌ´»‡¥Æ..P1º‘£D"-Ȩ#ìàmf +‹Åú†W\4íù‹Lðbƒ"[ÔjfzÖ-,¨&ø¥O¾’#”x¹¢;ÍžNºsn~©ÒÙkŽöSéNÒmy¥9·8ïç3Õ•”7ÊV–ôX1»r²$Õªl4t«£JÕŵ[‹›7Šõu+3+§úˆ…•Ù™ébc׫œl®`NXîèáñRÉt‡ c§°*%‡¢Ñ/µ¬ôLÒî)I$vËÎ&Ó‹º=§™3…âÒÂú 33ŒY\¶¸éäV5s¬™#$9Þ,jÍ”;K±n$®#{tÏÉ sr-™ò#'W {¥Ý\BÙ@�äPKR›Qò˜Ë©^qs¥Íjg¿ÔÞ-6¶ðÀtá2QA¬Tf2=LÏTZ' +µ-+éñÃf$ `’—µž^D…j›íѹƒGkƒLo¶²áä–úáêÕáÚÕJo×ÊLgÓs«gç7.wg‘*@BÝ)fa{cÕhÖjk€P¤–a ñP“„Jz³çƒÃt~¡;ÚË–çb —Ц;]¬mVzûUd—щ397;ÃJù`Xä¥|:Èš®´÷f7nmœy´Ô9Ymmî¾ÏNÏE㥤»bzË–·T®í¯{¥-äª?(Ó´ËsÙ¤ÕÉ×ÖÜâJ®º5\ºÖžAs¥ùáø„¤µã´4vEÑFn~£Ô>Ý_1Óóµæ6 +†NkN~Ø8èÏ^Û;÷êË7cûÄÝÓw¼ò‚骽Ýjÿ„W^ªvw7oožy,S]Ô*¯eâæfPíé³ýùó¹Êê‰s—Ï©¦ ÕœÌ([š¯öO¦«»¹Ö~ª°”ÊÎU{'!‰«²VÍWÖÛ³WÚךs—›³—óÕíùµ«Åú‚•é[ÛnaH•.®Õ:{ÃåK80i#Wg¢ ›• +2¢lmoÖ+®Ôûg:Ó—$½®5;ÝcGÖ)§[ll7ǧ›£Óù‹‹k7!á{¤[cà-.?S\+Ö¶ÚÃs½Ù+¥Æ\™àrzª—-–Ú;naÉÌÌÚù…B}ÃHx½©»ÓIoÆÎ/•['0ÃÃ¥+†Õg¹´(æFÀ¤–—]Y»Ö_<×™97Z½Qï88ÿ�fì©[ƒÖÌéµÃû÷.>²éÑõë™Â´åök]Ik)Éž¨wÍÌÂÜú=ƒ…KÍááÒæm~<á*©&P4]\i OÏm\ŸÙ¸{¸pîü§fW/ØÙ1'Uò–µ|c§·t¹Ö?U¨n¯0R‘aÍ\a¬'ëሬµÖðpãìc§:wý©ç~ó#nvÁJ¯.ì<Ríž”®¤ ÌÌ’ldÛ’¤ŠÓ¨0[šÉ×VÊmàÃi¯´ÆÉµVwçýø¹\m=ѼìÌÂê /x/åj{�ÞSgôF8f&¡¬ÊëñÅÞÌÕ™µ[½¹s—®=uýáß0ÜQ¹¾½¼sÏÆÁýëû÷̬]Y;õÐÎÅW¬ß|þ]nM~«ÅÊB{|v°pe¼|uqçöúéGÆËçwN^?}ãU ÖùµóÛgjN_pJk³7w/=Ó]¾ÎËíy3Û夼nÝâj¡}¢ÐÚéÌžë-\ÈTæÇ+µÑžI³åçs•å\yyië¡zï´ u§U¬¯ê6”UŸàp~Ù+®•š'û³W—³¥q®4c¦‡™òrw¢ÒÞ팧Ϟ»öÄΩû–†Õm¦—.-ïÜ/^êNŸ¯õϘîÜêêõ÷2|F1ªH‰þüåöøLµ·¿ºwÿöþÃ=ùöÙ•Ë ±ŒœÏ”·ö…ÚŽ[ÜÍÕΖîI™ŽËKjC1ÕöFº´PnoeÊKÅúZo挙ž‹eJ«)§Wi®÷fNÕ:;Ž×W´ +Øpf库¯´¶0ZÃTÛÛíéÃ|cC4éÒÒpát£¿´[ÍÑI¯0Sk¯Í®]n÷óÕåþÜ᫟ûw8UÊé/oßÜ:óèÌæÖôérs˰f hûÃ3篾®ÑÝfËÍô†³«'n®Þ^عgóÌvfÁËk©^0,Cd«{K{ÎoÞ_íÏUˆ¨Xév†3{4kÇi(íTvÑ%ä¾VªotuÚã¹S•æì¹•])´2µúð ØX&¬h< õ%)9Ëf +«•ö‰Öô™þµÎüUø¾l~¹ØXË×fZ£z·ÔÞÌW֖ϼÿƒŸ,œf„L¾¼°¶ûøÚî+»>Tlo§÷ßúüo½åw?•²´}cëì‹»Wn¬î?´vð°W\½ÿÞ×½éÝÌ7çƒQ#iÏä+[ñ™å½Û§®>=^¹´±yù½ïÿ£îÜ)äÀhþ\{|ˆ”Û¿ðäGÞ~ñžw•ê«Ëç¶÷n!=Lw. ©Vk݃¹Í;ûW_áÞ·M¯Þ<uúží½+šÕÊ”rÕ5;;çææ«íƒ+ÏÞx¼+.!ñ£Ž3$!ì'#6B£\?1»vMT²j²’ÎÏ ÄNt~váÂ3Ͼoeëªd4fÖïï/ÞhO¯<Ø[¾í”N8… EkK›¢ZãÄ\±¼XëloŸ¾ÿäÅÇvnéP/zgnîÂÓ¯ÿmÃjTKs«WçÖnY¹ŒÚÞ«vN@”««ùÊRœ±9pÆE•['·öï»óè[æ§OÝsúܽ)»]®/µF';ÓgWvï\à O¿ñ½ÀÃý»_ÿü{WNÜ„'â•Ìür³m¼úÀôê=ÙÂâéÓ7nßy¬\‰tfÆÊy•róäÖéWê{¬PÈÀ§(ÛãOçê;Nv®ÑÝyüµï:wíáïAt‰J«=s©>:ëVD¥cZã[·^óúçÞ—ÍÍfUœjŒ.¬œxXI¶œ'ÊÅ—f9ÇIse”ØY„©3½Ð<¤ÚÒâ/ß§yݰ«õîîpîÜìòÙé…ýÕKI·ŽkŽ×íÎuǽS`1;?ÝŸ¸uïë®>ÊË…Îôakæl¹{bfãvcæ\¦²Ž(ß¹ýêG^ý¯4 +D+ DZK´³ë×0i;»wâS_\ܸb»½‡÷_¹ïùÍóOî]xâÒí7lœ~Òrçî»õôýUÒêéÜ>´;>ÛìöfÏ.lß\µ²37n>yòÔ-5ÕhOvæÎêÛ¥ÆÎ`îâÁ•×.ì>”+olîÜQR-_Pæ[iغi99‚×H¹‹ÍÞ^£¹0šÞÕ¢ B¯¬‚SééRmknýzº4¯$3wìÜ¬š‚Š˜–Í~€Ê„™‚nÍT[§(Öƒž,W—½üÌÜÚÅåÝåîž1)·úýƒ'žy›ï7û›ëû÷N¯\ËÖ6ÍôÀò†¢Þ”’\E¡²ÆI3ÝNçg3¨šÂb¶4×êíB8mo]Þ=qÊg¼pvõÄí¥ÛKÛ×Wv®Ì-Êçgžó»ÿü+_=uéáX•š–ì!mêý‹µ>æ|CVªO>ñ¦ßûàÇ»½UH¸áâÝ(áòÅÝÇV÷Ÿ„T4h¯;íÑ~„|§ØQSÝÎÌ…zoaýúkÞòÁƒË*ó½ñ šIËÉN*3§$» ›Îðôù+¯:<ûiuG³'›Ãm9Yç庖e‹kÍÁÙVÿ'äóÙébyIPJ˜:¯LÜY*½¨|ažÜ(¥è©R¥µ²¸~ùðò™Sð¡h2Ó%#©Ùtn\mhÏV.nìßæÆ39VªÙ›>ig{f¦{æú³ÛgëΞ댇óç€' ¦Þuò‹¢V‘ÔR©¹‰4˜]»²´s÷üæE§8/_ž®u7Û³§G+׺—¬Ü²¨TÊ•¹Ru ^ÀrG¹ÂbÒhð|&“™/_ê-œÏV—š£CÍl”«HÃé%ÝQ2=µRœqY.{óÆÓäÛ=~J(7¢s(6/×DµRªÎföAÝáɽóOͬޗ«ì¯lÜ?\¹fæÓ‡÷?õ.Ín¿òÍAnÖl®~8X}¸Ø8¡,Y+w'࡚ƒý¹ÍË»ž{zÿôãÝñùZç¤ã´¯ÝxÕìÒé8cóZMPªj +Ø»©l²•5-Y¾xéNgC„O´Çµön®²æÊ–7Ûãó¥ÒâæîF©ÈU:@Òu‡ƒÑ‰éù-UçÅ¢(—Þ^~1[Ù´2õîÉr}£Z[/—’ÉÆâÊåîÜy»°”t§–• +¬PMÙ³[û»ùYšË‚íìüÌòÝÓ+W§—¯Ì\3Ý™V{㞟մbÒ7§Ï£(FËwŸ¸úšS÷7 •ÚC¿qs÷RœÒR¶¸£›-AÍÇYÞÊvÇI³Eª[3»Xëtf/ `ÉFM¡Lµ +Åq$¦ÐŒE¾OmM[™eYë)HšéHLD'“ïåk³¹êB¶ÈÎÍ×Ú;¹Ò’ã¶Gƒíç(w7u»«[=3=örËNv%_ÛkŒÎ©ftÜîí ÎÎ –.éÞ˜UŠGéºÎJn½>ùÖÎßzc᪙åDÌFÞœ|ë‡r!Óu£jÎU—Òå…|c×J@•¥Í›ˆ¦–jUš[Ó+7€Š½éýtn &Kñ„ŽèqÊ +E„pTÍf–.÷ç.Wï͵vá…Áu¼awx&[\Õ.D»j6µ8ž?5½|žÒ@¾°&)^Ìiö@¶§d½Â»™šM÷Æç¶«µ÷;ýÝù•‹Åú—óׯ¿ªR›ŽÐÉBs§5¾8·qÿÚî#ÙÒ¦’ +jÍq{7¯?Õh,s|¾ÕÛÛ<qïôÂÅZûd}¨&{•ÊÊòê5A,KKûçž^ܼ¿TÝN{ó^vAKõq¥ÍÞNÊn RŠZ.ÖÖrå•ù•«›æ Õ=»þܛޓÍN'جb´Lgh:ãr}oaýöÖÉ¡Ø[Í¥Ã{ §Ÿàl–³D)Ç0YšÎð\IàÉÚæÞÉ{kÝOí$ø,Íf㉂–§Üù`Ø8>AÃk»Þ²?À‘½m Ê3åŽôTÇJ¶Îœz°Ü[§E‡Sò¼\BV»Ù%73¯¨ÅpH’¥²WX6³¥ +g‹—š `Šv¥”²êšž¯5–ÓÅy+7—ol/æK•òü…óníßPSEI-ÔZëKëw¯nßi»±jz3¼RÆ|¶:; tÃ_œß>||ióÖÙ˯9¼øTÊmö;‹—¯?Ñnƒn(rë,¬+[Õ<{3N{šÞd/׌T7wvãð¡…õk°Wç¯=·¶s¶rêð¾ÅõëI§§¦š˜œ‡òiwI×:qrC3©ê%'Ó‡¢öª›œÚ–Œ;JÀ°{œ”Ó’ÍÑìåJƒà°aŸ±¬^8ÈùýA‰âr{pª?s¶ùT¹4š=¿¸~… ieÈ€æàL¥µKþ|ŠQIp˜óJ±¾bØÅh‰ÿn¾²9˜9·¼~ÛHõŒ+Š…|aµŒz7Ì.´ +̲WXÓõ.Ëdjº#IoKz7_žY¾¶µÿÈú‰‡;£3à‚pT¡I*¡³|ZÑ™òJ½³‹yp®—C*^Dù�ÕSv_VêŠÚÐõ6KÛ«û÷<ð,+ºSS±xT–…l2)?Ïq¹HX3“õOýÙ_íî\…xžsòeœa·PÞk´O7:‡äE„äbq:*’0±„ê.UO¹LvpxêVkvƒSr²Ì¦KÓ)iàÙ„S.-g +óà2A)`ÎiÖ¤‚¬ÖLg`I+Ÿ¿øPwz/]œVí¶h”%5ïxíì^¦ÏóvÚi¦Oö†;nvÀŠ^(¦~aîªíƒbu •bg¦[£³«»· TÚÃítaÈJöâÒîåÛ[^Ó}ò–Ò¹Ûb~âL’µÑ=L¥4ØN}0zqëúîéVvoO/Ë•fËåé;w¿vçé`T•zÊ™µÜùBy=itY6à ˆRN’óˆr;•3Ü3³Ü\ìN_µz”ÒÓ™v¹¶œ´j¸^èRÝhézKW›lÂù™X˜xW3jéì,œÔÍx¦=Lgçô0F§êÝÍÚàd®¾®šu˜&–ó¼Ìp4{ö0–ÃaE3Ú(ÞJ}³?:S,¯}F‘äR«»‰zª–+ÍæÏ™Ù9ÙhR ;N¥Àƒ¼œg„\º¸2»v{yûžùÕ»Ý}EïQL3ƒñP´Æ°¦ªWµµÍÓÌÝ.T¶t³ƒ“sRV³ºUOZí´7WoÕ»”ZJ¥êð³TTfiC‘ +ñX’l&ŒhŽÕ¹uýñFiôsª\JçôT7™ì©jM”Já°Î2™fc[ÓZzª+ 5[(T‰åŸÛ:lÏ·fWgÖvO\¸ûÔõÛ+‡Ýj_w…Ê¢çM +‹ªVÄU†M)JÆvÙÂ(_™vr·Ðmô|ü¹Ýó·£eÅ*kN½XWN+4oâýör¡4ŠDÝ�ò@ùXÞÉÁâµLmKÐË–[i—3µq¦6ÐÒUFõT»˜m´æööZK[’]”ŒY7ªcúñ8#±«™åË©tEV̤]ðÊÕÌ[™ZºÔ3ÒõBm¼²µ¿}öR¶9âÔL:?—-®}OÁòùh¿/AS©Fk³R‡ÈAùx(äZÿ¤W^ƒK:+D=_jŽÌL•’ ÉÖF6"=àKð ÓP +ºZ„°b´É +;=ÌTפdÄ!ÊÙ‹w?¸ñN®> +QBŒ5ÝüB®¼*©U¿Ÿ ¸pDá…¬(#Qò—bq;i‚RËí\qÅrº—®?tpþFk¼*'‹aJBpKcÃëЂ¥¥ +Ñ®aw5³ƒ”GKjgvñÖÚöƒ™ü\$&#µôdµT_¶¼vÊíYîÀI÷Ý\¿7w¢·p2_W›KµÖN³»_ª¬‡ƒÊñ»Â““´ªÕò¹Y:®MMFý>&µlk0¶Ú'5½ +©Á€ ˆ^ÒiMúS„?ÈkÉA£s¾Z;©«íxÌJg†¶SëvçNî_8wþƽ=ùì[Þöö÷½ïý£Ïù‹ßÿþÿñŸþùÇ÷‹/ýõן~ýÛçVÏal¡£=`ŠTjCë¶ç§‡ks‹{kë{§Î^ºsßCϽåm¯yó[}ö¹›=ñàSÏ<ý¦·½öuoùäÇ?ó‘Oúô…»Ï]¸Óo@ ˆrÎÍö½üH7ËžWŽ–¶vöO9óÞ;¿öÕozÇÛÞýû¿÷èso¾ÿ©7<óü»~çþðSþÙÏ}åßæ_~ïïýÑÁ…›¶×¤4ÐeÑ-æ‡ÕÚ´“.T½•õ½ý³×¶/̯omœ<µsæòÅ÷¾ë=ÿîë/~ã?úáŸÿü£O¿~uãL>GÓ&³:-‹…Zuy8<©(…hT5S•¥µS³+';ãz¹3³qáú#?ó¦gßò޼ðÂÞúÎ§ßø¶gÞú®Li)¸£b†i4-³ï¸Ó–Ý••|±2ª·gú£ùÙÅ“WnÜûäÛó}ïzÏ{¾ð•¿üöKßÿ̾øÐ«žÙ9qu8ÚJY-†Í$¤U¨Yœ07E±X©N×:KµÎü{ï>ðÎßùí×¼éϽíݯ~ý›Ÿ|í³o|Ço~æ/¾òÛð¯}Ãs7z*i· “¦M+¤3ãRyÕ±µúR6Û«VçfçöÎ_¹gs{ëæûî{ä‰ÇŸ~ÍG?ñÉŸþì—÷ó_þìç¿xéå—ßóþßï÷Wý1PQtÅâF»}˜‘°Ì1¦e6UÉr9ŽK«ZQ7ÊÍæÜåËwzâ5·|òÕÏ>ÿÎßzßÝ7^Ù¾1³tÁ²Ûd/ë1:¥å—f6Î\¼çÆ=O>úÈ{ßý¶O½ðñoç»?üɾùÝo½ôÒKÿòë_ÿè§ÿá3ö¹÷ýîzß`î,Ã8&[‚+wjõbsâÒíûï{øñ'_õÎw¾óÓŸýÜŸ~á/>ô‰¿ÿ>ð¹/~ñÅïýàãŸúÓ¯üÅ—~ýë_¿ð¹/½÷wÿøæOÕšËÝþöâÚ™îx#“o·[û;?xûù7¾öw~ç½ú“~á+_øþü•¿þ™/}é/¿ö_üâ—ÿõ¿ý·_þFòÓ¯|õ«o|ç{ÖÏÊs�LE¶ËùÆôpáÔ©Óx\¼tùɧŸþß~߇?þÇ¿÷'ø¾ýá‡_øøß¾øµï~ïÛÿñïò¯ÿå_¿ÿ£¿ÿw?ðУ¯étWídO—[ÅÂJ§Èyµóé€ûò¥«¯~Í3oyÇ;ßòžßzþÝïy᳟ÿ›o¼øÕo¾øË_ýòþ響÷ƒýè'?yá3~éê£Îv*ÕÏf“©n¡ºœ/ÍÌÏíìûúíçÞôì;Þó›¿óúè§>õ·ßüÖ·ðý_zé{?|ùÿðóÿüþ+ªõo¾þÝ|ìsíþf4n€)*#;$ÓŠZM{ýN{ñÜù«Ï>ÿægßþüïýÉ|õ;ßúæKßûó¿úò§>ÿÙïÿøå—òÃo|çÅŸýâgÿ×ý/?úñ?ôÑ?øÈ«y]‡Þc1™ãl3Yö77×O_¿vïk_÷Æ·¼ãŸüÓ¾öío}ùoÿýç¾üÅŸüì?þê_þåå¿üý—¿óëÿôëo|ïÛozëÛWNu‡ûéìE‘ÍÏ¡ ”T‹¦Q*æ£Ñ4ÉÒòö•wžýçÿøÃüâw¾ýßþô³ñ…o½ô½ÿü¯ÿú‹_ýê?þ±·¾óíO¿æ ùül294dom~óìþùû®ßzê±ÞðÚÇÞýö7|þ³ûû¿û2úû/÷[ßúë}â¯zÕC§Njug•A(°Œ£+YSóònnº3¸záÒëžyÝ›ŸÓ[Þúü~ïýó·ýïÿæ¯?ýÙO}éK_üÅ?üÃ×¾ýÍ~ü#ûäÇ{êu'Oݘ[ÜwÝV¥8îö—[í™z}°»ypîÔ™+ç_ÿăöé}îs/üÅ—?÷ý—¿÷³üÕ‹ß{éÅï~ûÇ?þÁ?ýó?þøïüù¿üóçÞúú“§/”j3¶Û²œškF½™Ýíƒ;·ï¿yãæ«W^÷ê'_xá#ßùÎ×_úáþúÅ?ÿå?ÿöK_ÿ?}ùå~çG?D±|ó/|üɧžÏíÈR^óÙ̸RÛP•JRË—2Í™Þô¥³‡ïú7~öÓŸüÒ_~ùßüÈ×^üêÏù‹_ýó¯¿óý¯ÿüg?ùæw¾öÑ~àÃýеÛf +CÈ!€•ë +åÙRy¼¶º»³¹{óú÷¾çø¡ßÿ“þÑÇ>ùá¯}ãoÿé?ýËøùÏ^üî‹ùWŸýÅÏú£Ÿþø…?ýô»Þùî¹…ŽÏ¸Å"79Ö3SÍñp§ß]¼rñò»~óü“þÑ'>úÕo~ýçÿø‹Ÿÿêÿö›_}éåïüüÿwÿñ'/~ëo~ðƒ¿ñâ_½ç½ïxâUO5š³¦U¦2RËËtò¹n¥8<<qöÍo|ógþôO¿úâÿMÒ{?ɱ¥×ÿÀòèîò.½÷™•YYYÞ{_]]í½Ex4€àáÁ?<?oæ™±œá9#GäÐEJâ’E+)¤àµÒj¥ …BÒF(öçý‘@7P•7ïý¾ó“÷ÞsÿÕ_üÕŸý§ÿüþÛÿøoÿá?ýÇÿãÿü‡ÿùÿþwøž¿úë?ùÛõçÿæßþõw¾ó;_ì]y[Ök‹h±ˆHbR$H²¤6?Z}óÞý_üô“ßúýßùŸÁhþæßþÝ¿ü_ÿßÿú¿ÿëù;H»ó·0P?ùé?~t¸–túæABÍö›£N£[/–—æ·w7WW&LJ«ï½ºóÙgÏ^½sçí‡7õ¼W8†Ç0ŽÀäP€¨Hˆbp%gÙÆ¨5\ O/œïmÏß»sð•î}þé“Ͻ|õòî[¦+«I§ jåd¸w‰ +XL ‰% .·®Þ¿|ùJ9—T +WÖž<¼þÉÇO¿ùÍ÷þìŸÿÞ¿¸ù‡ûþ¯÷ãßøån/®.%ì¬iUX®¸Jš*%o\¹wÿþón±ÙìŒGGKn_þñ¯|í_üùþÿÿûÿôŸÿý¿ø—øG?ûÉïÿÖ~ô½¿þÉãë'—ƒ¥„ÓŒFEšN ˜î€®!ƒA&a Á¨gÓWv7?÷ÉþööG¿õ¿ûËÿúoÿéÿïÿå7ã»/ߺzãòƸׯ×Û%†C$Ç&à"H.–1FN'r½Æà`mëùÝkßùúG¿ö«_þÓŸýøïÿþoþŸÿúÿÇÿü¯ÿö_ÿñ¾ÿÕgOovÛ5’<ÎЩP(»DÙçÁiLO›Õ¬Y\YXÚÙ\??¿ñäí¯ž¿ýñ»O÷7¾ÿgú³ßûí_ûé¿ûë¿òåïÿô‡_~øâîÙI¹Ðb¹xPT¦H“RÅâ¼e–h\ÌÚùÓýãÞ}ÿÇ?üÁ÷¾õÅ/_|ÿ[_ÿë¿üó?ÿ³Ÿ}ñÑÃ|õÕ÷¿üèÑý›'ûÛ“þ|©4NNíäÀë%ý>–$$&G‚ðåLýlïàƒïwò?ûïïËï|ã+?ýñ/ÿõ_þÕ¯ÿð‡>v´³×j´EÎ =ÓÂA.ÀÐK <CJ¦YÎçûÃÁêÚú>'©ÜRˆ!B4Êã˜JÓV8ÌÎ\ò}8h4Ç™%tνdSÓɲmåq„ÄG)Sx^—ôR3üA*æIwŸ‚ŒPsPµ…+XŒ'1Y3@¤$Eш+‹ +˕ҩz¥¸´0õúÍí½Ýl6ã‘þ ¢¨r$"C|(Ì)J.‘¨ B’¢4I0S¦r4eZ¥lºÍÕêéÒZ2‘Ì;©ùn·S.%DDPÍ$iñ|ÆNX!ñRØN\«kbÑV3½r£‘-,3gZG[Û“n¥YL-º¹LMQ°Y6cfÐO|¸ß‹ø<Q¯ý¹“Ïåt¹Ò,O‹©z#[yïù“ó+ÇíBfÚiu+µµQ}تæj8BÏÎø<³Ñ€œ½š‰ø}$`†è•4Ô’2+]Êg+ŠÇc¸*9»–вÕ|c¡¿¼4X2$¹Ì%”K(á7ç£ç|L$f¨j]×k<ŸÄPG s”Ó†¤V¤b·w¸±ûÖâòM]MÑXRÕ‹Éœ)[€IA)Z½7¾·Æ~?ûÆÿæ"J‘N4"²„!ÒzÊH|.™.eª@ßEœ–)1.çMb›õ¤Ý‹D S´dj è‹o!T<$¤±˜È0I*Õ«‹g7_F1-n™ÄŠ$×@WÒt*†èÐæ¾+›™ Â5çA|^’@5ŽI›ñ¶¢T%>Çri×H*ÄB$JX(æ@ŸlžÄ-Ÿ‹DÙ("±¡ ‰ñá0GsY^-«ñš®—„A†¥U’YÖT´"F ý):©tÑÝÜ®‹¢q’LP´Érv8‡B‚(�‰0á0M“&hdU©p\V‹kY±gçs3Q4ªslÊ:ËWÌäͽ^ +80ŠH>/曋EühÈù¢xŒ³ô²,$RaH+Ñ@}ûÜÏ·–‡‚2I$‘¨ð’aw§’)Q4ŠhPãÆ®VÆg'·‹ÙZÐ’)]a™±YxÀ¨™ˆ×ƒS¸ãõ`ÞðxæŠHƒ<\ò1Ô€öùÎÇãЪ¸Ù,–×M³“Œ×XÜ@£áGkÜÁWL™[‚ÜÖôI§"ˆƒŒ~m~«Çñäb®|PªïõÎMgÁï‡'׊cÕ.^ðû\GÍ4zÓÅÛ½á5š)Ì\Šùæja$—fb0š¡@`–®µ +ŵLz1à<3 +…¢),ÕPÄ"Ȩf¸™˜ŸÅæ<Q7âõE}Þ +º•É +î‹ëE†ÉæÒÀ…–D¹Ä%· 2ŸËÚãáDÑøÅ‹þ™™Ü4àçh")rQ,AøÕ+ÍÎáì:7…Ag…‚)z¾Cu™Oöºë¼TðxP¯ñû1Õ²…M+½¨Æ;<ŸÍåZ‰d%†ˆðÙ`�ÓB°”¬öJÕS‹#QÒ}øª`ˆõHˆ:·dµ¦ÈM¿kŒÆ�”„ ‰ãôX$¢ÐTÆ´ºŒñx‘XÌÐõžï0l>†%i®k^ á +1Ý¡€õ{ÑP€¤É¤ŽÅ$ÃaõÂk»hTGd4êz0LÅì`�¨‚‰`–ë¤çe½ úÊv†Ùâ'MxRŸe "pæbhÆÝ«NxGbqÇš¢1Ûë%àòû©Ù™¨?ÀB»¨ŒeO©ÕhÌàyÇ´;4ŸƒØùØ9w};FaV»¶+p)ïÂ1'Ö#1+1®[TÉH,¨ñ‚Z•�‘Ò\M6H*O1…PXóx0C)Mæ¯XâÒÅ0ÅdX¶ %S¯ã˜ìýÒ…`$@/_¥é´×ÇÒL#S4[ÔQ¡¼'Ëm¿— ø3 5<s14&³LVT:¢ÒÓÍyQª»”˜®¨i^Íx|X (¸. rCµºÉôBw|š¯,sbVT«¼X1=1f„jsB¯÷·B²Gc¯÷øÏà4™&É4†'¹ªÅ;³s˜˜J²iÝÑR%UàÇ\º¹½{S6š^èCD#Hõh"šHD„úxåä|uëBX£sWaÙ²$·m�Ñ.òé„Õ@qv6 +cãÃe%“Ì®æ”"3…ü¢ewàYÜ•"À"I5ÈD592Ѫ¯³|FÐë!|^.†$#1;5íÔH×¥™(J‰„YÕ|0è®E¤Å²E�HZ•%ðt±æ¼X $`T!žÊ+‚\…×ß±£ˆôžå²/- +5ŽÉ_|Ã?sø‡ió’ÔBb ×{ÙÀš…,´i¡°~½%†Ä]KzÆY^½ÑláTZÎse–αtž¡ó±˜ Ÿ‚ªŠÆ¤p`Ó]Œà™lqoóàÃFï,‚˜Ð ¢\$H×0 C³î+³“°ššÒPäM¥Â!w jÀ ìÐÜ,âÃggÜJ‹Ê¦Ùĉ$Ī(•@?BPbdwëÙEøŸŠZj½ñh�…ëi{}¢Ç'ÏyÅ‹3ø¥YhäÉуÕý{sÚ–X©%WÒÕýbëÐÊ.ŠJua°wûp.ˆŠˆÃÒ8™¥^Ü^DÀ4f¼:Çx®@QÐ!iœÊ�’P¬ÉÉiZ,\–SjŠÙ¤¸,+Ut{’.ìÈZ [rånÓê5’I ¤ •—¦]Œš™ÌÌÆ‚!Âçª\eY¨¶Ô€h¨ã€íÄBÉ÷E¥¨MUoÃc:N;ý~¾ +0„¢s[°öñÑQÊÏy0ŸÀ±$Ôx¾ÆuŠÍC×ì½yãi¾8vC×G Q8•$7 cQ @U5š4ëÌz™(¢RlN·z™àÅÂÚî]-ѹp)ráB8V Ò¡¨LÜì¦3‘°â›ÃÂä„Ü¥ôõ…Á…¢)Ó¤œ‘$—µE4 +†…HL¥è<ܺ޹¼´ó— ÆÔÁè Ñ9İ„ÏÏy<´ßÇ!1•¥P1çfc4“ÎÖÓ…uœÊºÛ¯bqÑèTºg£•sEo�X1\ úœŠá0A?ûz£Ÿ õ}X_€u7˜DO`ˆ =`}~>†ZÛ; |áBÀã!E m@“EŠÌG£P.ÑpH„/œ¹(à*QÄõP”|~>î´¼ pg³”X²rˬR#¹¬a¶ÝyöÎ:ÔÌnÒYJ9K¹ÜšfÏÏúžI/O®ªZãÒ%€"™"sVb<]}Ðèe2·ŸóZ•K™òr±µWîÔú'Õá5ÅQ\&—ê~ãë?˜n^ƒ”DQAu·y±žÊ¬Ëj7ìºÁ›�¨kžS éN•¶fZófr‰)OŒpW¹»3Ü&©,\<_VÔz¥¶¥(å¤ÝJ8#Œ°%¥¡ÛcÉèàl>‚š‘XZ¬éõ&Ü8/Vmgžgó@ÍD#tÓYƸ +E·i&ô‰dÒŒP” +”`Èâ@€öî÷Q›ã…BÜt–Î ¡èñ».�’8a7ƒð‹Ät¨8°MR›¼p1:3‹AxÄ¢&ÃÔd¹üDVÛ’Òd…Ád8©ä6æO9‚T‘V$,É|êÙÓOT áñàb@9æØ,M'k…â(!Ç04&[\*4·•ä ‘_”ŤD$Ïá÷ñ(bSTA»Š<ŒFmŸ_¤ˆd*5æ\žknA¡y4]±’“|q$†d‹»›LÂËÝPb¨-k-';N«Êù¸™ Ñ@ˆ +…E×@w'^¡l…UÐj”˜‘‰DnIKΧr+ƒù›ƒÅ»ÙÚ†(æóùI27ϰ‰&N€Ûs~¾³ÓÞ—5×'ǬÛ{UÕZ»©üB¹¼x~ÿ^¯F¹><ìN¯÷–®Wz‡…æ>+UY!3nÿÁïýÉGïGQ…$LY®)j'›ß)׎©e7I ÇÝLEuh$W³å“ÎøÍd~½I‰D#’Áˆ�J§dœÊñä¸ÕÚ|þâóå7ÃQÐ>5;·lfV$sO.'ÓÀL¢ˆÎŠå×.:IwCÔ +\ë�$¦ç³UBlûý<K§Ìx“—*’ÖÖ¬~£{X¬ïàT2T¤~xoe*¥Þ«¶D½™#àoÁ íÎÚ}ø “YÎæV!Tf\;wî‚T©ŠRCêœèÚðJSŽ ‰xm†OÒ9x"=ÞLÚÅ…’Ô!ž¬¨BÌã%fgc²T–Ä<Ü1à'x6™+ŒS…yV.›Î„—¼P±Ž/¸NV®knÃ×n�fÐ5‘Ëêj³XX†º€Ä4‹‡ ŽÏ,S èË—�öÓ ¬Dcêoxg]§ WIªªzž +nÊ€.Ÿ P)T”0`>™”̬´F7¬Ô|2?•®–ê©qª´ªZC`ÓöÎWÞÿÎÂæ àç ^0)h\ÑšñÄÀ0 q•GT¯—‰!2u'7-Ô¶sÕ †Of¹=è.6Ö*î^ƒô¤TßîN—ÖÎOn¼'(”‰žë›ª4¡U„ íØéIº²Ft—rÒk½…»ýåóTyƒk(•b€EµrmC5ÛŒX䤢¨�}íÉÔñxº—.ºãtyJQFo°¿´óvkr[Ðz’Þ‡+Ñ&£Ãï}»Tú,ðO‚ld=—Û.×®dò.‹“J†Õã"âììÒÊÆýó‡Ÿ7ú'ÚÛ;_Y½9.É…r{»>>kÌ__Üz¼súiµ} X(Ë%£Jñi`qP7)®t/Ô`ˆw·‡{IÒŸˆÆÜ-œ8SãƒLó(QÜÁ™"N™†Ù”´:à'–d¦Û½RsÛtÀa�[@š|Ô]áÀ£¨Ž q¯ +@A?MÍ8Påé©“_c¥#ÔtkÒ\/Vƒ!evʼn/6(¦(+ ¥ʖ‡Pi²l&àwg3]ÇÄ]Qª {ö7<~/áóàÞ9 ”… ‚/òB•¡3á Ôh%èâ94Š’Ú(Ô6óÕ¥Åï¼÷ÝdfÈË¥Jçrº7Î_ŸŸÞ*µ‚ˆæõ’,—c¡nIE®³|Ñ '„t©T[¥Ø4<¯,—âÉæêÛfjÁ0‹ÇÏ?ú^Õ ‹òÕš›ø[µÞQµ{ääW0ÂÔ4(Iƒ@¤=KÑi°LasóøÅ`å6J&CAŽfSQÌ„%o€‘~¡~yó॓™O¦Ç…úÉ%½‚ íDz¸vðæ³¾uïÙçãµ[¢^)fZ'WNÏà6›«¬æk’1,T·'ËdžUDã¥Æ‰^e¸Šªõd½E (¸õæVgp]3;ºÕµZ ªÆPc~åj¹µ#5;ݯ^_Ü»Û_:i/§Kk¢^„ô¯þ£?xøô#‚1Úéõúèv¥M‹Ïû"ŒÑx°{tòìÂE–bŽÝãÞÆýáæ[Nu7J¦¬Dó—ø;ǧ}~Tm"5možÜþt°p×5Ž› +bšãrs^Òà by©-iPg ¢aŽ¡,—A0²¸68ë.oœ¾¿sí+Ã¥;‚X½t ÏŸ%’ã kµJÂ- L—ïg‹›Q×ýC¾*‰ }PÀÇ‚Q-Fº.ÜÀÞg€ÿxH +·14ÎÐY Ù8–‚Z‰"Àç�ž4‡¡Ap"É&Aã¤òKõÞ.É9¢Z«ÎJíãTq«?#™]qípEªVBqèy-ìxª~¿‹9qœJ �SK¶ÓÆH ÁÕ×ËÀŠÕöþdãÍéî[¢½]œµ}¥K«‰ì"¯´ªƒîüµdvXŠ(Õò¥u'³ÊNÙ‰ uP"-Š¹Ù™9ôÒ† f¡´ž+og«{ÉÜ +Íf�¬ÊÍ Ål ¸©è-(@íþεó—÷ÞþdãàMN)z/ßûz¾ì:{WšG×î~íÕW²tô¾š\"Ø ÏK•€ëóFá®O Žj$1“×Àuäq܉D”Hl^Kô“Ùåbs'žìö†›×n?'º4—Â)‹”Tõjµ½uõÞÇ…ê¢ûz„Ht'çPFõÄ Ö‚a ÃŒR~a4>²H'Wy¥ÂÉu#¹h¤òõÉú·ÞûöxõƬ‡Á©´•šjæá‹ ¡ææ8€])JéÂÅP0"k‰i*¿¯'¦Fbèhm–s¡'‡×ž=xõåþõÓ‡vn ~ÎÚ‡öîÊõM š8ž6í1†g8¾Z¨l‚¶…<BbR¥2UåÈÆ ½,+wœòA¦r+ïQdE†ÑÃQ{öRØ3G½6Ae@K) +‡Ý@ãé!°Yh›û°¤±O¯¨¶»0BKµ»´»D¨ÄÇ¢8Ö¤IGäR,“„¢�B‰Ë4à‰N�fC!±Uß*T§®«ž�-,©ízï¸;½QîlÚf凟¬ïœÇ=[^Ý8|¾¼ó´9¸6]»¿°ù@³^?·ú uq(¸¸]JsuUC<Hz}@Ø=ûƱì>+–H.ÏI5’-ʺ»;’“˼\±Só¼˜Wä\w´?XºÖ[ºZínnìÞ[\¿eX;5ìŒN»ããáÒ‰™]ˆ×ö9¢¤ìa¹²éñ1sJ”†½ ›#àK’Ò@ŽFT†É ®%ÅKµT~u¼v¯5ºž-FõôìÞ×¾ý#¨›Ð‡i«ñq£wzåöGÞùÎpí„n8&¥#+3‰aæëÆh_PÄ „ †'£QY”˘ëKLGb¦¨ö²å͓ۯÞÿü×î¿ûË™ú®?¬ +rº"†Y0RPÅ(² (Iî€À™™E�šéUÖu†×@ÁØA±Ö´Ó ÀÂòéxz”+-&s«¼:`¤'7¡”ŒVÞ"˜B ¨˜Î¢jv\w…€™®¿ý,áfµ¾…¡Ú¥ž‹ox#Ðî&è%QëbdjfŽÇlPU^û,TÂa=ÑACDʵѦRÅæ6G9¥âE'ýA!SÙ73Zb’ïCAµUÝ÷T=š/ÃÓ稇¤pHŽE4-ÐíѰ¼Býµ-¡”Hôî]á‰Ð^®ªî‘TºÛX‰®(×Ï—wï·ç/ÇSNL“¬ƒ6‚Ä £E“‰HX�f¨Å‹Õ+þùâÆSÜ5æy.g%@Bä9 +’!>6í °_Q©ç{ý=–IP¸V©l]~rõþ'7îüüã´ÇgŠÒ|ûÎ{}òmY/cd£³<H†ÒÎpá|uóm‚,^œAgCè¼é,ÈD²;àã€lƒ‹ºg©º5ˆÛCØ—§èŒ"—+õµéþ}V®E£ñzã°7¸],o®lœ¯íÝÔZ8"[fíƒÏ¾OÍÏͱ1ÄàäV¨GbP}(vj +.æ%¹–ίæ*ãåk·}¼sòXÐ[‰ÄàÎÝW û¢ˆO³…Õby+_Úå¾{VåØ-¨k³sÀŸBm§=9Ë×¶€¡¤™ÉÃ1 ´ n~<Ý}ÚY¼ÍˆÕ‹—p +OÝzóSV.@E€€ ‚å´øB¹~RiœÍºï¸B‘0ð©Ù9ìõánJÔ:_7IíÁƒ~Ç5ÉÁ€€)†=Û]ÛpþìË(<‘Ç0ÃÜÕk†=0œI"¿iw(¡DS©ZuAzëà¼TQÔ†,RbQ ´ÿÌLpv6:3õºnçÌkË2%‰Ódš"¬H˜“办èfJK™Êjcx’È,€Neæít‹æã¬`²¼-ËEI)ÇÍžã,"@k#Ï$ Ò +…9 ¨¢PdX×âEm+ƒ²MÉC4�O(X>¿�¥Y”êùâj<Ñ!É8CÅd5îT2õIoùdaãv½µ]®ï<¨¶V>íd&åÖ‘lR…µbãаWP4‡a)MkHr ÈU´a@xM,Ž)€¾à¸I$]ÏzÂg¢%ìq*³^knž¼,nÔß¶sS€¯pDB^oîฒ“šoôöç|œ×ÃHBP1fæ¸BI”«VrL@¨£2¤Ë¦#ˆ\7why0ºº²q4—¢–{£SŽ/Æ¢jÐÏû_›{,Ç¥Âaޤ1Ôb¹r™¨Ð˜äPP¢ÞLN%¥"ˆÙþh¿3~Cp¥(n۸ª·“PÜû®Ñ@³ŸÌ¬Û©õ\e[5ú`b/à‡½•åË®Mœ—Œ"qÉèä{ÍáUÝÍÌâ¶Õ.—G^réBÐ�ˆ“«z!àc1.I®ˆj•r Ë +ƒ\u¿?½W¨˜©Bh¦Õê Ït³ƒ“©pÄÑvËcý~Ú磼>òçç2üÜ &óê0¸“¶šë×i!-(…þòÕo}qóÉ7†÷ô"+äFi{ídcã®f´¢ˆŽÊ˜;Û˜$ ˱Û$aD"L\/éj IåP<Å_0rç옹9ÀFPÔ¬t%© :%⢔댶–7Ž·/ßÛ¿öôàìñéw–·î;$—n6V.=ål•eª}NhkÆ<Aäb±8Ôb×hÌÀP› ²–ŠÅB4èd‘/ÊZÓºQÆÉ8Ťh®@qÉh™v§Óݾ}÷}5ÞPÔ +(^,kñf:³9¾d8åt›õ ëƒ%µµ-ÊuQªÒ”“H´�uá_G$Ï•¶Ó›ãÕ[‡g¯àïûÃáîÞÑß›ËáXœt—âp¢ +B†"âõÖª¬–�Ä ð Ý”x'SÛîÝß;y7“ìïÞü£ÿýoœôÄÐ8¡š¢ÚÜ{øìë÷ž|Sµæ/Í5²\ƒ»@Zy\A>4ucÞJNu£…¡:§HXŒD¤`XD$O@öºyfb kåP„2~?éwמ‰„»œê~†æÊ²Ê¨‚«ÜÜJ•3•µjÿ8Y\Wì!0äÁðäàøÝ¸Ý¸Ü®ù‰À•H2ÄâP¡JºÎäîáhœûìQ‰èf:v}8ÙI¤ºíÞÖÆñÃrg½ÜÙJW7c@²ù¤Õ<Ú»·½ûŒx}ˆF$*2LN’›œPTÕ:ÃfU¥T©,Òt´6èÁ·±Ãò•àkógw,ä8”•׳á +‚&81'UßNwë{?øŸþá_,mÞ€ß�l¦‹+Ãéµfwa|º±vÍ4Ëf¼fÄ[šÞ2ÌÍT‚mvÆ=bÉ3‡Ah…C¢ÏÃBfg">/ðQa[V<º±s'æÕ`îÁ|¶b¶ +ÕR}ß°zmÇÖfÌué—( +©;¼\œÔ«KžYÔ;GPd +ôŽ™>CN‚PH${îëA&¯êõtajØ=I©‰r {<ÚŸ.ž4ƒcÓPI£a G5–N☞ÎôÐÈs1Γ”Ôšn÷M�N‘ñr¡sÿþ;�‚Ô©ÔΪÓDb”ÏOÓÙyš+ פr¼i53}}fA^V6¶ß_ߥ=‡É�•=.\\tÑBáM—Ap‘\ +£ÌhL¾t)ôspã¥R¶º¢´v¦²ãä78±š/-ÛÙ>ÂèFªÛo]}ïÞão¼ýê{§·>ä¢(€f`¨NËç§ggc^�¢ò,—»>9”’XDbÈ8IŠYèwoÝoºu¡8V¶½k€º†ÙN¦†ŠÑ Ç4FÈSl +Åâ�éœP“•v«{ÒTú •…To2l%³ü!Ã6^ð§R´©‰/1DJ¦{[ûw÷OÞjô¶¶önÞzw‚”MfçM§¿}po4½JÒ)WãñÂîîíRi> +:³Üw‰X†ç +Gcš×ƒû\£<×ìžÑçŤғ\a9›Ÿ*jáðèíþè˜àÉj7Æ7úK÷rÕm3Ñߨ¾ÛêlLA‡drK™Ì’"× 8CœÇƒ^x# +æbòÌlÐã!P$ŽaqàKAwÆDf¨LÈÕª(ŠC=-�O¨6v,˽‚ö°t:®×\·Yà4‘)"A“î·ß‡‡ƒKÙ¡�;éñQ@'T)§ˆŽªä!—ÊŒž¼üúÉÕç1$NQ9YnBM/V·ÁÒ„*p‰×ÎÏMgÜסB]jvxx.ègT9í$ÀpÞ¸ˆ¡n™æãuOÂ"ý&S îxæ@€¢(Š&†œ«¶²›áå¤^¥µkÚÕÓ×÷ÞluöÆÓ³µý7'çÙʺ Kå©aÕ^¯Ì1 fgÜG4á:ƒ™&È–r»{„‘I¯Cb2'ä‹ã[¯n=þl¸pöôé§Ï?øN27¡ØÃ•h¶ km'»ÚÞo<µóË¢”ïö.W:ûVj¨™] Ò ëoO@}\œ‰\¼™õÒŒØyŠ«¾¶éS¾T¬n²| +ød¾8íÆã/¿ýÛ÷_Z›Vv**õýãgÛ—ßÖuœŽ'œñxz¥ÑÚ²ín©4VÕ,(_–+�Ÿ †Ü3FÝÓsb¦ëÞ@‚0ŒÏ\rQ+â5µfZcNhPtÁqZ;{7s…+:Na²¼ÿðàú;£µ;ñM51ŠDµJ~ñî[_!¹„/@FÝÅÉ ó]½ OÀc¦.•W—NŽÞºt)réb�¾Š •šB‡Pt°«ÙXÛ;|ZÃ,éœá¸…›–¨žÙ¤¢–Â!.rWÎø½Ü‰©¢yæÂ8&‹bÔDZµ¾¸yp{uû<SÞh÷/R‰RqcïÇÃaÕõÿ¡€„bIYïr|rÊëA !nјÊPIš�þCÁM½sÐ`QÈ\¼à¿xÁ{á ïÌ¥ D5Ôh]. ŒÝneA8iC+ÅP]ËŠÕ³3À´·ûÓóÎðòætÿþÙ_Þ| +šQ‹·óÕÕT~ ÜL.1b1†ª"—ÞÙ~'“s³!Ÿ7‘¡ H¬Ø¬¢æeµHR)Q®Y™Qg´7^:i4W^¾øðÉ«Oíl•*¹Òn6¿Õî_Ý>~oyóáÂÊm+9Ê¥GW®=V\”�ié`Dê”aŽ}CÁ°¢Š/¤ù܃À(H ³RÙu;½bíêÙÛó‡šY³³ó¥æAg|seûñÙÍî¿ú^{rÚìÜzód~9áô ³ÃEÐÅÀŠ }Cµ@ÐÍ8³5udš ðqÜ \Of‘/ûý�2(L˹þ™hÜ’+–ÓÔ'f ¯P"™½ûÓ¥+Íö#$e5g'ÚwõhÔ +‡´XØdÉt§±5]žyý‰ tàáÕ&¯6 õ&ÇKËg²R–$(”M3ÑRµ*ÏgËuFbèT³ºãR? E6U^0ͱùœ»GâœñâáÙíggw>°óëŒPLjìîîÝßÿ'Z-N€@ÏåU¹ªYíFcÐC¯Î/ßpR½P†p +x¨HÕDuS+²l€]äK>¯ë²;3jB$P3TpĂҟI^}ðõp„§Y‡WJj¢—,.Û¥ÚòÖÚÉ—ßúµñô +}wxe1]XÐâ(^@!Ä”ÙøÅO¬Úæfgüs³Q<QP€Ê"ñéùÎòù›/ »‰+P«¢^Nfùê´¿xPl²R6]\¨uT£k;;=”JÜê(jÓIηºÛš•Ï–»ªÙÄL( +m#(_Ž+«Z.Éä}!åÒ,¤!#1⥊,•ŽŒ'F¢™*,5‡gãÕ;ÛGOnÞû`qç<]Z\]¿úßþq<5vP&kM';1íEU›×ãc‚²u£Þé_V´ºû–&lüÜ.†) bÃëNg3sb,Ó¡’ÖÉ–6{ó×uÆ¥0]8®5¶x±8š.,ŸÈ ’PbÒ €T¥HÀákc±µUàÂ3G›f[7*A¨b~^³†£µ{•î‘éŒ0*…â‰n×ÉtHÚ¡Ù¼“^(V7’©©ª@}LBD…C<Ç&#a>ìN´%QĸË!tîõÎ5¨•šZ/wr£Õ½{gÏÏ^œ^uzãåt²Á3 K-ŽÍºk;cî™M4wWkÐé¤=¨Ö6“‰V8ÀˆNãv$ÀQXœÆÍX˜ó{ Ž-;Î +%³Ü¤.aÑ +?)�qU”z:Õ%)“åR“Õr¦¼´¸yûøÆ³ã¯÷œ¹‹ëwd³MC¦ð%ŠÉsBYÀϧK‡ /^ð…ý,5#!xL!1DlVºÇ×ðz.FXéòzÜÀ7w—¯û—½¡ªÅ»çÏŽ�³"Àj*³¼¼z{kûÍLnYÑ›½æÂ/}÷Gý…+o¼ôè( žJ¥ºý33¹€ ÆÑñãdvxiñXªåzÖ©ñv¦0m4Vö÷o®nßB©¸bB—©ŽjU›½íkçïÞ}öu^…¢¿Qé0b#’$“aÉ(êÎk+¥Ú‚©³sÇå“¶« ,&æ<¼ÇË"¨6놣IÙ‰Ô4SÝ©vk½cPÍåüäó/~tëÁÇ‘¨j&;éÒÔÎOMg¸á&‚¨ºÖޝbÝëeÝ÷Õî»Aqf%‰¬eŽ^¼ú\jÀ$D_1û(U�žYjìž½›H÷×Ö¯<}ùÅ`þ85Ü周ãï“)†qçûИÄÑ6épĵȞó0Á°†à)ËYn´²¹átñòÞ•§×ßúäú[_9¾ý2‘G±¸(ÝÁô +€aÖAíÒLޤ\ úÅpPx€©ZqÅ4Zßð{æÐXTŠºóÅb4 +ÌP„òáéãHTÿ…_y<ðdÍ&œ)Œ×Å‹H$*a„S+¤5»Ù]^=z<X¹''&²ÕJ—–ëƒ#ŠÉØö8[ÜH×råmÃlÒt Q#!‰(A?¨83ƒHÀ #TÅ$=Ñ0Ò-Zr²ÕťݵÞA³Û›?mõALU?ãî–ªê›É0lFòŠV6>zßNõg.…iÚ1=Ek`„óÚµ/C±é|i‘W +� H(LŽj4 zÖ+ã£ëãÅ=œ4*£ç§·¾rùê;K›7'«×R…I.ÝÿÞ~ç½/þ‘{¸™êÏ6÷^Ô›×êÍ«VrC ŸŸÈe{ŠZ†1º4ãš<ûüZ$æPl%WXzôìã| ¢5–"Xg²J¼Ýô†×šÃ[”X¨+4Ö«I6ÍpEŠÉ¡8`ob8½¥Y]H (ôøkgB�ee˜D©º�´*Ñ”x«Ö=,ÜØ?y¼º}8§®åŸ?ùàwþðŸÆ[ ,u@QIjd†5Qd©Ì0)¨ì˜,¿î+QmÖû§;gïVê;×~åWÿñöþùæå·öo½?Ü|8X»·uúêðÊ“ã«ëÝÝfkýŸüÉß|úůP¤×êºÞØ\2Ñ7µ6³.]"@±š›uõòÅ7³—WHâ9Ý«F§R]×ã A©j‰lö4{l¦—"1U1*…êÒ`r¬'šÕîÞüÆõËן/î?)÷OÔ$—™Þ=ÿðôúK^©r£Ú9,6öUkURÄñûYQ¡äï}½Œ QcÒ øòÕ•\m±Ù[;ºþôògç>ܺü Ö?ô6Éd€¨HrÇã‘ –$·z£«“¥;¹Ò:/E—1¨;˜Â +’‘´TûVr#WÜQã-ÙPDd¸T8"†Â/fD·PY®·×áOÓîð¼Sïl÷'§½ña¶¸Rjl•››ñD;›î^¿ùhëðAY™üR¥½™)-Ä“CQm‡£:¤‰i7o<©×W¡~ +‚d0¬€á…š,•—?ýÊté²ÏGqBÑίäê»ã•;o½øæûŸýdãò+Š- :ë·ÎŸÉjb¬\Û_y´²ý²Ù¿›HMPÜÀ1ãÁ›ïµ:ûîf?j'3 ÐsÕÖøH•a{iùðœas¢Öv¥¶¾´y·=:Ëæ'�›•ÊÔ0›^÷ô^Òïç¾¢›£„=‰ÅâÁ ¯Å›þeY«çļ –pÒ4ÍF½¹¦å…µ›7~Ú™œëkŠQƒò\&éônÞ{ÿ‹_úÍÝ{ ¬Lk"ÕXTC¢|ÀKxç\C{Ïo;0o¼á››Åü>6�É`sbÚa +Þ†rL±ÙÖüÙÑùÇ7caë!HVÿààôùÃg_®¬]ôâ³µƒ»ùÖÊÂö`L™Æ¾“ƒóøÁÛŸ/oÝQÍŽ^¬÷ÊÃY&èÂÏO[˜›EiÊ¡¨DÔ]IËSLJT«²^O—–²åééµ'_~-ST{ÃÈî“bs¿3º5]{»Ò<À(‹ LÅhqr%nô’–X´2ë’> éâλ —eÄJw¦ìZÑòŰ{´AÆJ´ ÷Í*ûzãùÂpñöÒÖ›Õî/×U<^<.Ö¦ïd+kkî¼ýùñísõ 3Õ¡yS’R›ÛçF¢L²¦dÔ9¹æÂ¦˜çèT½º˜Jõ€7F]W|÷p�Lµ3¹i£µ)JÆÞÑ̦nÖ½õƒûÅæ6A;Ç;×?ýÚ/9NaœÁüþäv½u˜L¯„Ü÷34H¼Ço}8î{ÜCf]U#1.Tw»“›Á©Àg^<ûèÁ£ ¹Vn¬ì=yðò;·ž|+SÝC0›¦Ìþè7Žï…¢ÚÏO1í¥t~‡ê¡Úh|Tëìûü,‚ÄqÂ]o ëÍTnÅÎL¥øäŧüâwÓé†[ªÞr²‹ÕæÎþÉ£G¯¾9Y¹#È-Ž+iz/â»pÁð€®[D—.F0D-æANú< DOCYGâW^½gؽfÿ¨;¾ÆÉ-#^L®Œ–o@ɸ}þü£Ï¾×Ÿ&“ó·¾úüãÝüdsïÙ'ŸÿæÆÁÓxbP/¯]7U#R1ÉbCå°{‘‘s:“ù˲\ˆF%œ´£Qîì7'gkûwîXéÎÎÑùõåÞ~©{`V«Ëk55Ù+·wíÂelZ*àðtö$ß:&¤VqH®,™ÝtiK’ÙÍ#6%µÅ‰5Npåm4¦Bê±|Šæð[Çïl¾3Y³=>+5w`è3Ùþág©ò4[YÞ8yYîŸéy=Ñź»wNÒF8"«Ûfr^ËV¢‡ãÉHD渔ì‰RíâÅØœ;7§IJ¡ÖÚ7í‚Xá ˜rú$ Ÿ¥b1¾Ýß~úê‹gï|¾ux¿T^¶-)BWä¨-¯{°ÀñÙF{»ÑØÈå&¡73Ճ㮇 Ã&%¹ÈpÇXÆ4a—¼^¸ýÚÁƒËçï-nÝÎUÖ¾†¢¶$f¾úÅ7×7®†¢ºÏÏ»Æ2îñî s4•hµ×M«yáèP–)èñ®f4käΪ;?þì廟Ë2TÏüÒÚ£þÂírcÀÐÉ,D&ànÃS–I{<$E¤%©-ð%–Ná˜}é ±£üêïù½ä,D]@�Fa˜Ãtf5›K\bqù@ÓKP³8±#[†ÖšÝþÂÙhé¬7˜¯,Yv»ÓÛÝ»údçôîhé°X[ËI ydw2=1Ì–»”E*‹Bg“Z®3�ªÂß%1 +1áÌ0™í>¼ýøëW_NV¯noÿéŸüÅ‹÷?33Ãda¹1¼š¯íÖºÇÛ—Ÿß{òÅÆá[½ñÑ{Ÿ~/žžDñdª´Ö]éLîžœqrïkËûo‡G¿õûñ½_ûC”J#Æë3ò‚-èÉ…\i«ÓÝ~úìýÃko×n,îÞ]/´Ö6n¬íܽýࣧ}³ÔØèö¿úÖû_û•«÷>˜_»“..‹j]”›ª1Œ €<¤9Šƒ>*(jÛ²û‚Tµv±e¥z(B.©ë鉪µ(*åɈW—Ö®Çíf¾ØëöVÊõu+µÌËmŽ«rl”×ÏO‘†À°8Eg"Õã)-²LŽÀm(÷—áø/dµx=nõ€•ùt‘io8ˆwM—R™ÁdùÚúî3Ña¸$Fº{:^¯¸£waURŠ–3 ;‘ÃA 6’CA݇[ÍÁÁúÞ½ÑÒÕT~…æ‹¡°dêµtjHQ„EeAîYf—çr1ˆO6óó]ZhÔ˜½„Í\ŒÎ\ŠÀa2¤;ƒÆ²éKB‘ð3îñˆsèë)!de9ϰ È”\y5_ÝV$»\]lt·ÓÓzÿ8™™hZ”c©±,뎨ÄãvE5ª…êv¥}Z/â.pMz[Óë¯÷ØÒîÀ˜ÂÐéhX‚‡õzP“dXG×2å•vÿpeãæÞÞÕGOßÝØ½ÖŸ\>»óÑîé»·|íøÚ‹Vo+á4T¯ÝZ»óæ;vôÂÊâæ½ÝãÇókçÕÎVª06œF¥4~ùêko½ü§dfÙ°'ÙÒÖÉíO/ßþ¤ÖÚZ]8øƒŸý³§|šÌªíáÊéâÖµÇïñ+?ýãßüã¿ü¥ŸüÁ½ûïÿäÇ¿ûÕoþ(SYË”×Ù•JëhmçÉ·¿½{ú± 4U¹4]¾IEâјFsiVfu²ú0]XR7¿°iU31p +†Ó2©Æ»ƒÉµë÷~QÖ¶SM¦»’Ñ,Ü\Xääw²B³+5ÕCÐnq£ñ�µ5µBaÝSˆ¼Pj´÷eµŠ`qà+Ûú‹Wâ©¡"1^ÃI…“m ˜Èñ IÍËZU1ªq»%©åhL”õÒÞÉÃF{¸Ÿ¢·pÌ„ò"¦ª¶1Ô�-7x¹`¦§µÎ™bI³ŠäJ˸ي„UŸ—åù¬ew%¥ø4‰1ƒ…‚ð"6ª“D"à€W»+à +ǤáÇ€Ÿ…Üñúù¬&ÅË%VÌÙé^½»MPéBº^(d-ŸÊìô‚iOlg¾XZÍ——$%©ëŽ™¬²¼c%‡vnE·‡P†¡’v¦¹ÜB0ÀÆ"‰ÇQ8‰ä™C^{ +!–�ÝG’ I)Šj¥?::¹úìÚù‹Öh[Ös©lgmç¼P™Ô“By^TŠ„ñxÛ4;Nj�)\®¯´ú;ºYã•*É84ŸŠ['Ù¨ÔÓùkÙ‚x[„,X^¿5œ?(dÓþôƒ>^ݹœ°kË«g^|òü+_¾ÿùw_}íÛÏñó_lì¿zïÃ;?XY»ùæãÏ–w¯î=Û;~¾ºuD+Ëg²©îGŸýêÚþ9/å°‚TÔ¬~±u:X<•‚¦ä¾úÙwl» ¥œçþñþ•÷®Üû|yÿ©¢îÜ~üÙ—?Ni¡¨ZFnrJo~éîõû_v§7HÚ~úô£þx?–Ý#ÑÃ:NfY¡6¹kZÅéñæþÃáµÖè@±š‘´º‘ì6G‡¢^‹¡<— geµÄ +I ¬·RýÅ{ï|þë“Õë†Ñ°Óó˜»I„w§t#îû.þ¬T4/ÎkÖ 3ËÊ,³H'€ß–ªu œE£q–Í9™a®4UôI§Ýcò|€H(4E§cÝ D^w1›×]Fèžpd~f#Ç=jŽŒá¶™9…åDvb&ºÕDMKÏs‚ŠpkIj)WZ+5 +u€-M/ä=Ói!¨’LZëµîI{xåµ)¥ë¿ôSÉx=á=ž˜g. Z˜c @D®Øì3BJÕŠIˆäÁž™Éñªåô[@Y¥t4ê.äf±²[¬šÉ I:O8}A©xŠÙ‚P€lJç'šÑ )'•šç`ሻ’„¥MSqJ©Z¥8PÕl"^èu—ç—¶{óË¥êØtš‰|¿ÐXn×Wv¯Ö:[KKGßù|õðô¤iÖÎ! DùRºyrú°ÞÝ�þl'Æù슓š×ã=‚†ŠOÇÕøÙÙMšq©íäÖ[ýÓ½+ïßzµqô(]XÔå̇ï}å/þîßßxÂ)õbë°6º¹tôÁÓ~xzãE»¿î8åo|ûûg7ŸEÄ]ÜY*µOFKwÏ}«T[ϧû_ùÊ·¿ÿ@XyÃ,Ymí^~~ÿåwî½÷½ty£×Ýüì;ÿ¸ÝßÅ4Ó4³Õ^»|ëÃ'|iã!«·µÖؘqOçÁ‘ ²•êÆúÎ}M)?~ôê'¿ýÇŠZá䎕Yƒ»Û¹ÍÓó¯ÝyþÝÖàÙ/_}ùâïgc_€õø(ø3Ó)2+ɽ9÷¬UöÆ•‡OÞþ��äâÅÀÅ7~!xñ"CÒvjƒÀk›×Ƈ Kup¯JҜʇb0vEYmÙvÇ5þÎgÍÔ¸XßMÏvNÞN(*^©¬¤rS÷ÌSÄ�ÞèîòHÎ1Ô<ŽÑ!rz4L†Ã,Éf)¾r†a‹›"²iÖÂõ–®]¾ýÞÖé³Ñƃlu?L1Í&†»¯þ^+} ‰ê’X.Õ6x©‘ËÎC“L…Þö‡dP‹®}ž0”jØ]O¢”ªk@w µ*°Y4¦3„ àS(Œxч ŽKàÄ“Éê•Ã+o¯ïž'Sý|~ÊŽh&)KÃ(‰|š&‘±x>"x}h++BÊÓTœÀÍhDѤ¼È:mƒ$‡—Äfš±y1-ݨäÓQ£ÓÛ„Š�_X½ÝåŠC=^Ô´LÂÌ8fÆÐ +îܽŸ“„‚ ²ea¨‚ÅD(O™Ü¼bÂ#[\+Ô¶ÉáâêõÍ£ûÍá>ÃØRïÊÕ•êCeòÅålq1‘êkñŠ™¨*%«jUšI{_N\1é,frëF¼+ +SMµ›“ÉtßÝ¥ØØËÖö:ÓóÎäF±¶š..ñBŽ%äý½'TTÐJØWFWk¡�òÓI£öÑ_ÿů}´Œ{¾ª_!)Fjëû…ʦ/ýàG¿þñ§ß¸™KH((ËJ»Ü:›ì=D”hˆ“Ç.MY�P’ óû¦Ç@„8è=)½µq¥Õ^‹!:†Z@by±ƒ£B$H}#5QÅG(QÊÖ§VzI·æy¹&òöÊÂþéÙ£liA·šéˆåM’)Çb +O›šœEx$"Òd’¥Ò_L&G Ëp"Ãѹ¸R5äÒ ½¾¾yŽ”’²‘˜Ø± +oW*¡ àóîÌ>–À-èQÌ b#é©z T'Ókt÷³Åu+9?_Íä Âö·[µXÔu&Ápê™p$EUUé@“"!<¡gm«ÝÕ~>ˆ w'>j…B’™p3”劶3v’=ŽME£ +Ð`žÏ„ ³<ã®Hd(‚–$â1ÄðùYÈ–2B~ÜÝâca^dlËIJbrѨPªNs• †DµõxE’s†Vr¬²&§caV•2ÅbÇ š2 ¼ \‚Ç …øHXb˜4ŠÄI¢Hz‰@]JJ\†êÑ¡n¶8.Ëñ9’°/ÉbÞ4J,„hï¹ÉP‰Ù™˜g HžÞÈ%›Ê +äéì,êõ0–e„Íæ(*Éqº�¢¥5J9õÙYÌÝ–Z-ÞZݼ¸u$ áD'HB¡ ńϥhÅTºë¤{ùq5c9žµ` x4iž¢-š2CŠÆUhŒÓ%%iYÐxÎLz¢^&(Çõ„–»¼{õüÎSÓ’–ÍVzƒ™ü&M' TDÂL$Hã1…"â8ª¨ÊÒ6ÇåU+ñ%5lxëøî«¿‰Sf•IÒÄ�¸0“%á2Â!:è#c@,C †43_›<È¢IBÎIu9>ÉÐF±Ri¬g‹ËNvšHÎK�‰¸éØmÇé†QÈd +Å=šéx%Ñ^4&%©ÊéK®L˜¦‹[#©,‚X8ngrQ*QÁ‰Ôq÷—d +ˆ1�£k�2‡¢ž�íì#\W/MR�q†LФð¡¶Q+fçIÜ$@M–&`¢ˆXMÒÙv(DñlBQ²ïH|Š¥t<Æ aRdÍR¡Eñ(ÆPkŽKÃíBAÎ3‡|Pß™Ka¿— P#0/ c€fêxá(®—ШÀséÿŸ¤÷~’#»ÎÿÇ My“Þ{ŸYYYÞÛîªêjïÑÝ0 ïÁ�ã‡c9Ã!9½Ñ‹”hÞJ)>Z‘\Q”Y=iå6V«ØxocÛ“PD@WWå½÷;ßù¾Ì{Ï¡HŸ¦\ˆXÇØ<K§b$K˜Ñ°BöÆßmz6Dw…œ“'Ó +gfB-ýð,LЪì*’CSj<†ƒ[Ūaö<o”ƆÙI&˜lò)6s2ЦIŠ„’%Áé¶—+•‘m7)Ò@²L"fR<KWiÒ¥I½Zõ—ÎÎÇ€+X$dXBYͳKa%¢|MÖ™êó£ÞzTœ'q¹\¸N2A9Ñ(MhVÖÁ¼è ŠÔ!p2)Íp8ª§%b‰Z9«Þo/·ÛSžÕ]»ÌshTøESñ¬zòd(ˆC››M&R +Šù¢Ô6ÍE×›ØN—À$ ŸÍ‹š f$�§éÝ Xjµ¶½\xç0âyÞÅ@=|.6 ¤ ðþ¸’Í0ñh6G\&¸T1™“3Œ®"‡D êC“5ÎľŸß¹v:|мÊDçÓHF�›ÃóEˬIbð°´B*ÃwÖÏ^¹òK;É8™M²xZÒÄ�E J&ÅF粡Š<°šIq&q„$Ð +K©F¤ãI%àŸ‰²T…Røœ:Á Öè䣱d„JÆÈ(ÀàD2r2“ˆÒ8¢‰Œg(%Ð-ÕBãÚ•ÇAdB²Ë&E`4£`™'€_<‚ûî0Ÿ["ƒ‘‘cóĉGñ(¬‹ß8s"ÆÑ¦,é$—NÀQ`ßbó(j +W`pM‹"›×”ÞÜ|öäÉø‰Q2C–òÛðMÿúõ;^®™H²ÙŒLR6Ç—©É°ÅdwÔÜK÷?ö¥ïe0í‘wÍÍÎ$±¯‰¾eü\E—ì›×îßDq9A>”ŸË³Œ%‰–®Ø…(ÌuEªsl4†ˆðÿ4ÎJ¬b*Eq„Æ3Géù\WàHiïç�“ba2Y2‚.W uɘ‰æ#èÌÉŽi²\M«…ãM˜†Rà(C8Ó¬VÛ;8 ߨ ™pæÃŸ–«žHRsspÓHZåé<ލÉIàb)¨”½¼Ê©™$žL¡yþ ÑÙDeÒ"\Q¸&aWèyà„£2fÀ@WZ™ •óƒZqˆei t…7YBeI'4Cf’|þÍ[·RŠÎfâóèì‰ÄüÉt&Á…ey÷áƒ`G,M£)4IFç’H +õu£Sò{µ‚£[íîXÕó±(x¨t$\bœD4$%ÍϤO>=ùH4ç±&%,-JŒ8Õ¢W·ŒZ*NáY™Â ×(q –±¹“Éø<’MÐ2P˜šŒ¢€ðD/0DŽÂó™¤<7“ž;™Ðå�r~6 8„´Ë3®«×xÂÎÄÅè,¦ ²ØÈl6%Ñ4§”Šã'ÊcÈL»èŽÇA’q0HN±Ýù² jŠÑæƒil-J½™™Td.‹¦[ òF q¼«ÃZa;(×ÒY*ž Qr¨©ÈfÁwke¿^òNïL_~á¹ÅÅh4¤#óI‘QtG¦nÉ +‰`9]©®&¢bX:)3X%¯vkîÍó›×®žÚ<š¶ûðaªe‚ØÐ@À<4Å\‰©˜ž[†êپȺ¦Zç™Èžd•¥Ym÷†K¦Y¨U†‚àP„Dã2’fçg³'N$Â{YtX.¦.“ @ý;“ÍMKÕ‰,Œa€*ðs IγœÛn/ÛvÍ4k²\H%,+�f8ZÑESâ“!eKBEâsº [Ï[¾ië’âjšL“2€ŒÃ§ÃâÞöHY‘ð4O£*ƒ›È�À!(LDDS)<ÄR)GV+Þv7añàòèÞÅå7ß{ÿâÙ’csŒ†£ä>‘t�`¾k~öd* .;-¦£“eeŠÏk†§ê¶¬Q¼i\e™ç8àGNiEã}ר£Ya~6yòÑù™q€$ÇypóìÉ艙Ù$e�üÙŽgˆrPcpA9GÉÐü,Oå!H%ˆÙ™x2F° a2–LÊt&¯ãƒŠ¸±ÛÛh z~£ªOºÞíÃþswvŽÛîBÓ/æò–ž£HyöD$I‘ܤ¼Ä˜tªjà“ 㹶àX²ç:šÄ—<¹ßÐ÷ÇÎÏœy㥋/Þß~é©SÝV)IEç³$ +‚5oIŠ'³¾Däe|¥eLËmæàÓ†z~ôƳ‡o<wôOÝþÍ>ôó_¾óùÏ?sf·^öy]9. ð<z*çÔóΨí¬-Vú¥@k¾§ +J6…`鬧(íêtÚ=:µýÆ›oö'8A¦S\ÀÜð•`˜‹W o͘¢âºƒzYÎQX–ÌâXWEm±U»wëÚÒdì¹ÞÑÑVµZ" AUÍ‹b”¼„ðªyùN¹‰°áÉM‹¼°]¿yne}P\,kÇ+¥Wž8õÎ}öƒ7ÞzéÂs÷Îì¬t+9—Ap<M!I†#M®Š´*´ÉSÝ@\n™Ó–µ½èÞØÎ½p¡þÑg7¿ôÖñ¼yþ¯ñ•ßüìËyéøêé•I¯aK*2D–E2¼Àù2ë1YLuÓR +VÛ×;Ω¥ÒÖbåx{ñÙÇNß»¶ñâƒý·_¹òïÝ»|iÒîTó9KáÉlÔ’âãàÐÀ¨³'â±ù4–$ðdÖ☺«O:•@—éW‚nµ\²óe§Ì`ÂÌÉ8,’¤@l™T6Ç$†zuÕ|åZïé˽oßùеo|úñϾÿðs/O~÷½§ÿáןø“¯¿ð‰÷]»°7©çó`Òñ4ŠH¢&ckEb½œÞocw¶ûçë·ÎToŸ®>yyðâÍá›O¯|èùéç_]ÿ«?}ãï~ýÉoæêsJM‡Ì&’É8*0ºÈ¨,JèDfâbWFüí5ùõ«•w^Ûùø»§yváó¯¯ýü;OýÃo>ùóoÝûåÞþï?}ïÿøŸýé7ž{ûùÇŽ{‚Ï`¢¯ÚuO[(KûCóʪ³Y#¶Ûô¤Ìì¼Ãipzêß?î|úõ³¿ÿíþòW_ÿâçÞýús§/ŸY6&O ) +ÇÔùùổ9,$´¢` ÄD ¥¦5u{àîËkÎG^>ó‘ׯ¼ñÜÙ?øØÿà|ïýAËÛ^Ÿnm_8uî9ÓnQé¤ÇãE™yÔÕeãÕý.7¯-+oÜéüü{¯þìo|æ¥/¼¼òÛ¾ö¯÷åþýgü¥kÿôË×þüwoìú9!RaMBWYŒRðTQLo×éçϾû™+?ûþËø™›Ÿ|aüõ¬ÿðK×~ÿç¯ÿùWoÿèÿôë÷þÍïö…öWj7«ußl+‹®YÑ8±¤`“<~О:Þ~rõ½7Z¯ß¬ýÑçnþúGoýóßûw?ÿÄ/¿ûÌ¿ÿÍGþ¿ÿ÷¯þúWŸ{ýV÷[9÷‹¼ô‰WÏT]=Ã!É‚•XƒÌdHùHÜfR.ݪ³÷öŠª^^µoïx¯Ýýñ<ÿÎû/¼óÖco¿ç~ÍÏ㨬SLÛä×KÔqŸ}vÏøÜ3ßýØ•ï|ìòO¾òÔßÿøÿñoú»Ÿ}ôG_ºöWÿõùþí§¾þñÛç׫Up¼ê[Ê0.‡/8Ô^¿9eŸÚ6Þ¹ðíîÿäëO}ÿ³×¿ñöÑŸ}áÚßÿÙ{þý/?ý/¿ùȯ¿ÿÔo¿wï×ôàÍ]?L‚ B2I”Ê’ju,}·Ä½qÎüØÝÂgž¨çƒ›¿ùæÿó÷úÛŸ½÷O¾pù×ß¾ý?}ñoøÌ>wö'ïœþå7¯ü×Ïœ{â\uXÍ£)‚Èr<J,µNó}í‰}û˯Nô…KßúàÖ7ÞÚýÝßøå÷ÞýÇŸºøƒŸþ¿ýÜÿüþÃ_¼õ»ï>ø?þúíï½síx°ŒÎG²)¸ÝÄš<q³c+qo™{ùœ÷îsÞûî4Þy}ãûŸ9÷Í·wòÇÿíï¾üÛ?yí÷?zï¿þÍþü›O_Ûko®Lë1IU/ßËiÓ{Ü¡[æ>ÿÜð_»õ›o?þÝOœþöG~òµ{ÿòÛýâÛ¾÷‰Óÿí«7þ÷_½ùë¯ßùæËíÏ?U¹¶$«hœŸOÏ>!㉢^/ 7Æâûîë7›Ÿ~aý§øÌ?þÅÿ·Ÿ¼ú×?|ù¯ôÊϾzëg_¼ø']ÿÔõÇ6ô¥SÒ¨°œ¨hŒ8iox0)Wùí2qw…ûÌóü‰s?üâµ?ùÂ…ŸçîïòÊßüôõ_üá½_|ñìßüà±úåK¿ûÁãßúÀäãwƒ×®µ%Ï +ŠTyß’…ª3𙥀º¾b<d¼vÁùðÝ*ÌÆ_þ/Ïüò;wöõ[ÿ×?~åÿþ—?úö‡Oç“7^úH¢x +ªV’™ªŒN|r¿Aß^ÖÞ¸Úú曇ßÿä•þÆ¿ýúãÿóßü·?zõGŸ»ô¹—÷ÎoÕK&/QC(¶^võ²¯yIhhøN]¾µ^~î\ý=— +?øèáÿúÝçÿ£}é½§¾øòä{ÞýÉ—o|ýí3/^ï\Ýn.Ô[Ä”Ra)¼˜È˜5·ÜÍùu•^Î3W—½kÞýï“ú?üìå_}çùïæú·?|ö¯œzëÎèÍ+gJGccX‘]•G³¼*Ô}»§±JË3&×6è¦òâùæ7Þ¿ógŸ;ÿß¹÷›ï?÷û?}Ï?þò#?ýÚÝŸ}éâ?ýô•ýÅ¿úòÙo¿^íJi»¥x&›"<³Uƶäy<=t˜‘‰íøé'7¤Üª¾}¯ý•×wþíwû§ß¾ý»¾û¿ÿò}ÿúןùÉ7Ÿøú[Ÿ~ek©à¶Èy0œ^mÁ‘¤’Êž^ðW +Äv¹²À½pºøÖcã×®ž?SýìÓ“_}ëÁO¾úÄ·Þ<üÒK«~lrw£°Ó„œJ¨ŒÌ‘&(™è,"༊g6½”£Ï,xWÖj—JïÕßsµóöãKyróí'7¯OìcóÚÄÝiå +²j°¢ÂH ù5© EKÚJ¾[,µ]½eŠ]ÿÆjåÖ²÷öcƒo¾¹õß¼ú?íÏ¿të+¯®}åÅñû½—wÍ×ÏVÚªGgŒÔ•²ëŒYÚÈ ¬„fó,2°¨£¶t}̽tÚyÿ•Ò_œüþÏ^úþí«ÿð«÷ýæ{/~õýWïî´WyS6QÌ$1‘Êdùp_]7Å'¬–•ƒžuk«|o¿úÒÅö¼vêkºô‘çÖŸ9î¬wl™Ç‘T2Ë"Y¹ŒûÝSEl¶Å°s}wzÿâæJ™¾½j¾÷ÆÂ—?øØ3—–?ÕxúlëŠ?™eKƒ#0^X®ó¶Ft9èçœFÇ6m½å*½œtj»µÙxp8|l¿}yºÑ,¬W +°ŒeS– +G™L†O¥$ž)±„&<™Ôãøåjṳ̀qk#ÿìaþ—V¾ÿ©ó_}ïÎß¹óÃÏÞú¾ó¾½¯¾´ùéûƒ{[v £`ÚUÁKÓy–ò2`ˆ®“+Œ‹~EÈLsØ¥‘~gÍyr×ûÎ[Gÿò—ŸþÇß~ü¿}ã‰ï~âÆ›ÖïŸmí|ðƆVö¼EŽõyÎ%1IìQµ[Õ„–ÅrRKçú¶¼VõVŠæVI¸³Q|îxéæz}â ]S-+šÅJ.¤“b,ÂÍÍ€¤L¹ Œˆ NTL³ø½ ø^]*2×Ð¥ž§ä9´`QR‡õ‘*øàJHPò¸ZŒÊɦ@l3d–58½oì-ì,¬]m¿a>¹ß8×UÛª]])ŸnégÚÆnÍÜ®:=SB@D1D¾I``³à4ãs):NlM“‡žÚTñµ’pДïmx~°üñ§·^½2¾:m—AÁ9ר•Í…•Û˜jQdt‚ 1mÅ4ÕQŒa½Þ)8ÍœÒÌÉλšdk†À«$‚UF 3T ~"Å¡ˆªð9GõªùZ³Ôæ¤ ñƒÀëÓ\•5VCe8pRHFHÄ™XŒ!ÈB±²[®ï†[ÈôªÈÙ<!9jÀ`¦9[t—{›£Ig¥`æL^¶å¼Zfv.žLqYàÅžªv-½#0vt.ŸO‚¯·?§¾îÖ]kXqv‚[»õã‰wc³z{wx8(¯V¬iÉëz.žÆfgc™tx¶=#gfÓà7Y®V)ou›»ÍÒHçx_¦z®ÐÔ¨†ŠŸ•ßxüø}Ï\½s´±×k—uUeh†`Ñ''ÜdZ±¼I|7¸R+¬ê¼³·ºûøí§xB†õ’(=¯—ùv·Ü«ºU5ðKdô8ØÒ@… ¹tÚN§Ï©R Màtr=áí¯4‡fe3y:'0>ƒË™x–ÌphJD3’>±rx¦ ‡‡Y–2 lo:É3¸-Юkum�Ãa¢Ái‹µ™Ìj¾âµ=ÙPžÇ5Ž4’a¥ñ{SJĸGþKäÄ#ð›®{ZÎ7 +γ(m²J^1³¸ær¤Ëó¾dç¤R:J%‚0£æð¢,;îÒhz>Wè’”Âr9Ëî×[¥ú6Ç»4¥Zj~i¼OsóÙxR”´í¯Zî²VÖ*«ruºr^szñŒA2ᡊ)f‹Âž²Ò rn6•Nˆ™WäÇÕ€¦0ÜEK‘* KI9‘ +[Qt`Ù]/7°Ìf!Èá–ðAIzð#Ii«ZG7;NnÑöúªRÐôA²˜á‚:$¤ŸÉ¨$aò¼g5U-F»PXòóCÇjò¤¬ðª «”b±l&E¸ë#¯t@r•D’››Cgf³�’®éÖ(<˜`ãq–¢|ÉÓ(O#´%ZÍ*ð’:Eçćµòp",x¿…H!lMkÕš¢ÒÉd½lVÇpËÏOƒâj<ÊeR0½¾ª5{ˆùtÆDQG‘»²ÜN%•XT`ÙF£}Æö¦š±@ÐÅh#êB`(ðh‚ÜÊ•7‹½vØ‘vía·qcs£sRX½Üv½i¡´S©æ+û±”93ÏÌÎSÙ¬ˆñ>Ìš±Xl©´ŽloÐ;{AÒj2.?úhf~ž¤Ù²é,¥CÛ]É n"eÌGÂÇR"ç˜ç»d±ùY$àhÒ±´–.â$ÇLeƒ†åΨᑥŒŽ’ù,–{ô]1·¸ÅHUI)ž>¼=Z=&ù¯6h¾¬MÝêºÞh´z9ChYL㥊SQB%Œ*ªÖx°xùÖjNÍŸ4 +<±åWÎ*Ö +Ã×QÌJe$Šödµ xÃIŸ ˪¹dûëÀˆºÑS”z:k"˜‹‘.'6Mo’/¯jVŸb +9ÒhŸRÔ†iõx¹¡Ø£Jï|¡uÚ¯lÛþDVë“õ;ŠÞGqS³¼\7sQï‘|êŽ?]œ^9uîIŠ+Dâl:«óR3ÜàÇ•Y)<ÂãÙÝñäØptg èC’k1B_ÑWÒY | ÷&Ó†išÖT)˵2)9›–u#=<Ñ šÃrëT¥}š“œÜǨ‚»‚Ü`ù +†Y²TË¢v*ePl‘WZߌ¥¹yŽå‚,"Åba!YœÌKJ›¢Ô¢˜2'4$¥c¹“DRE1§*4×Ä©'¶(¶<¡#ó´i%¥‘ʈDcå&#·±e¸cE·eTŽd«ñ´™B]œåªznÝ+ï¹…ÝÙ96±¡hMspb¿E gŠ.!ˆr_õü/·Œá¹°÷hÆâ•¾¬m«‡£ÀòĉL,B§|6£d Ïÿ:ˆò +h¥='·dù«º·¬ºË4ߘ¡mAP»…Òʵ/÷Æe“|‘`¯°ì×Êaö‚n¶YõKKBe¤âðr¿7¾Ù[y¬>¼È*u”°$gæÖM“»8[…ùwrÓBeËò—€^2ˆ¥Yã zìNIúˆæ*8À(ÆN¹jHZPQi6{çjí£ ¼U*oœ¹ø¬lõ8S_¼¼zðôÎñóGO7.ô—®Æ R\Ú?~%’+�´ÌüV¹}®?½ÕÜ,·I6Õ†f E¥ÇuÀ§ìŒs°¶víÌå—U³7£3¸›¯ì5‡×+kœ´ˆ’e„ÈãLáá^8 Å´hØ…ÙkÿRy†«¡Dàú+~iƒâs8“ƒEô±æ…–Â:`,›5—¦oã%E DVêpòPµWµŠ(¶Õ5E bôu{)_Þ+ÖN•ª{‰¤¦êš9•µ|W–È'²Î\LBð¼_Üf…zXßžÎjGu&Š=Ô^1Øfn™€¬VBëSBÃ)lIÆ¢é¯ Æ(‹ç5{)¨ìÆS�K Ű-EÙ¹e†ç1Ü7Ý%HÄ€ÀhŒGPS3‡ÅÚ>/š-1®*uÙfNÄOœHžœc2xQ3ÇvnETºÉ¸˜N)ŠÒ!„ ^añLª`XcI5;çÝCÛÓBAÔZnq…àIk*æ€P1‡…Êzo|ÎÌ-¤P]±W%è+Õ3Tc{8ÓüÏ=üÌÁ¨@s—œÂfz{ïüëãS"ˆ\-˜îíÝÊR~ÍeЀbÛ†»Vé]¨/jî0l¬V[ôŽæe£'}Õê{ùÊ:§TÝÂøüí×N]}¶¿r±Ü9mæ7“0…áÑ©ã'aÆ£Ó\hn ×k/k¹eœ«û¥µÃ§½ÓéŒ](míyju÷îxýÎÑå—`Hð#ë]A©á´Kó•ýg×vßÝ_y²Ð:¦è +Éä5«©8ƒ¹˜˜LiÀ]¦½iû;ùÊA¥u@0–fwƒú[Ü~è/ßZÞ}PiÙþ-Ý¡¤§mÕÛùȪ³–BÃÃn^n²±}›ãKé,¬rÎö–ª=˜5ÙYeÄ^*c·ÚGù`%–Ò0ª’Eó$Ss‚½|ý¬ê¬gñb¹²våúóÙ°²‰+@\Phçì©«ï—”þÝÇ^ýÒ×~ÐììÍÇädÖQìIoóîêÙw7·ƒ4bWš»ñ„67Ïl¥€Wõî¥\q?™0¬©¨-ˆ©Xœîš‹ÉñŒ)„ +ûõáµGO¢‘vó²H0‰“Åt6‡E;¿YlB‚N¤”l¨OŠ[ jG$]¦Áa‰ Ý]én®>#èu¿¸TížjO÷ÆgK-ÓÂdªv¯7½«¶ÍÕz^a§5¼ÞZ¼î›0Ì$j\�4–“Û²‘µÎJC+·6Z½9\>O„{W,ª9Aè¹U§´¡;ýíÝg¯<oçÇdXU¾ +Jx°|måôsNy'Œ67/|èc0X9¥s¼¶Ð\^X½7ݾßQ¬K +¬Xe„*Îæ¥–¥ó²µ0Ý~°{öåÎèŠl-Bê,]õ>ÉW5wµ3¹ž«ìiöøÊ/¯ÍÇð4Êæ+£bcê”®P|×°WJõ½ÓçŸ>{éÙù—L«’<Oß:óŠW=Ï)CA¬¿øžÏ·ºYÔVÜ<xâÅ÷}îÅ7ßÙ»ü¢‘_µ`Ù‹oø«n~)—1²bæ¶+Ý«ãÍ'/¼Ö]ãÅÊtíb½µKñYÂãµQи¸}úÕÉÆåÍÛjX(¯Qïžu5{løk²µÄÉÍÞ¥Õí;8Y�©9SÕY7µrMÐlGÇî¿ð¶¤·I¦ìwüà^°BÔˆ¨ôûK×òåݹˆ”JÛv~9_Û®tŽÚ£ÀKɸôõåÍ[ €ç",äz;8P©î0Râ:óQ©T˜<ñÄŽÓ{ä]Ñh„¢Ø’WØm<¸x÷ƒÁ¹TÚxüÉ·üÂrµ3 îµ Â‰(ÀXr¥ƒÁÒý‹·>rxùUËî]:~|qz—åýâZwñÌpziaõj©»¯èÍVw¯3¾HóUÉìÈvŸ;Xekì6ƒcN®ƒZ“…Z÷JoùÁâöƒæôšdv|ú»5€¬U:g¶Ÿ¼y÷½7Ÿ|{ºu;_X^š—/Xîb¥ujaíf¥s®=<·søÄ…Û¯–Û+£É™Íûv~•W:ŒÒ¤ø"(1Aº…I˜vwºuYuú(•wòk4oUv¦‹ëm}0éëAópûì§®¾Ò˜Ü�Ÿ”Æ}÷¬ÜBsñt\—S{’1©vΔZ‡º7QDb,Õu{AµÛ’³(;›VaׯìªÛv³j´wL¯/i¿²2ظ^îîWÚûõî™ZëAû@~yÇ/Ã*OsÕ-Òf°gûÍÁy·°’F´Þâ™Ñú-+¿ækŠ5ÐÝENjË›€jQipBuûÔ/}âøÎ뫇Ot'×ÝüTK—.=õÜËŸM£.Áò¥µÑúíÅõÛõ냵[ Òî?xc{û:Iæ8¡Ô_½¾~øÜÊîSƒåÇ&ÛωÚ(Wy±ân®´‘«ì8¥MÉ^�ñSnŸ.7çæEе=^êÎG‰HŒž‹p8Q†y#`[ãtZ=9“ù*©=.D]“Ú©¬Tvöâ+¥ÊèU‚� ®iW®´Uï†X–åêîÆ…Z{•¤]Óê7rÏ>wxá…ÁôŠWšªFciåx´q3¢ŽÍ¹Åz÷üâÊýÆÂåZÿ¸ØÜÓÍ~£³gy‹N°Ré{gôü2¯vÓ›GÏ{•U’Ë÷Æ—jíƒå+Wo½°}æ ¿¼j«+›WdYkn_¿ûúåÛïÛ?ÿÂÖÙç:“K–S½}óÙk7_Âi a ¯®îŽåö±ìpR·Z]¿ÿî·‚Ú +Á•æSÜñª‡Ýå›—î}pû̳Aaó•×î‰V'ßÜ7‚]Áœ:Åýrûboé–b-jzíþÓ�NÈ9‚)1R—Uú¢1à¥F³}º¿p|úìµÝ¬<Œr–p¶`ç'«û÷CÚäóåÆf}xºÔÚëŒ.õ}œ®‘l¥Ö?Sl/R稱pµ±xcqý©æÂU+·"«»^¿|ë%Åì¸b…&„îèR±¾ïK `©²µwgçàN±ºbc@{¾¸Úìî\¾þÒá™'À/˜öâÊÖísÏú}Ù]’%¯7n½Øl®¢ˆ¦íÎè\sp”V!ÜDs)‰øÑ¸¦é]œô&›7ÏÝýÀúù+kÃãJïœd¬DãèØåÕ«’ÜÂ00ïnñÐ<æ’(÷QÔŸ›£ÔVÔÒ\DHg<IIêØÍïûå}ðe‰´EPEp ¼PÈg5˜Z¨î$¨l‡Ñ¡‡ÊSQªªÞË—× 5k�òXV;¥ÆîOç ùR.@«?¹ÚŸÜÔsK´XM"†$VÇ «+Je ºµÃ'aþ÷ν°{î•…Í»Š;$¼v@ÒøaÈ}Ã^¨Ö·j=Ùh3lÎ÷…R¿Ù]/66œÂŠ2̨Vëkn~’ˆ(·öð0Ö5üI®¼„4²•¯.á”mZÛ÷ß<{óõ\m/¨í†‡¦½¡®·vwolŸºL:¿µx»Ø:®n‡° E3Z¹0¹rãùfwfž ¸ÐKupÁ¯îBhK«ƒSûð;¯½ïÓiÌGÈ' ÜâþêÁsÇ}t²ÿœ¬õ/]zðÉÏ«Ý?M0Vx$ôê`å±½«ïƒUÃ7¶¨°ÌŠ€·2ÅWi®*«ýÒCv:sñA©¶¶±yÍó§’Þ¯’…$beÀojýÎà¢é,˜î¢•Ÿòjk²|u}÷^¡ºÇðaã¤Fk·PZæ`Õ‚í2h×þqÐ8T,1Ø„R}‡f+MŸ +d¨y›Åö¥Bó'5i¶0˜mŸ½«ØÝyxCÖàäNw~¥PZ·¬AXŒ±J•u’*Åãê\D„œ˜HZ$U®ÖÏvú7mÐhíÔ§pÌˤuúÑ„HSq¾|Ф*š³¨X=ˆ;NªƒDµê,\!ó¨F+ƒ²Þ*·÷ƒêN®°Õ]¼ÙYºÍ›ýnækvq%Y4_›&‚›ëž±œ%x›¨¶ Òé.œíNΛ;¦?!)±V¬ïV;G@àÐU³¯ƒru½ÞÞΕ–“YM~qLñ¶,†Ý·sÓF¬å8#Vj ˜§YÙ¦QYµj…æVéâÚþ““{)DEÂøÍñÚ%F®ƒu +ƒË½îèÜ`z¶?9¥º ÔuüW>g! +‚Êæ©³Ï€Æð‚U<,NÈF<øhV(Æ“,ð†“5škƒÁÎñùÇ+µe÷-oÃñw,oE±À2�¿yùÕ•ë;át%‹¹Ê鯸nÐ<gùËv°ÎHaÁÿýÃûíÞ.˜e„¡Ùìß=óî¥õÝ!¤ÎÍ^÷Ãþâtå*J×òÃêðb¥®9ºNÒ…õåã¯ýÑOž~åc VÁ{ªörP=j/—[Ž¿dÙƒsgŸ¸rëuNn‘’BCÔ†vnU6Æ4ß!¨r¡0YÞ¼ÌJ5œ©ct-•u“)CRÍÞþúþm’ɉbMÓ{¹`ueëÎÚæuVh$Rz4&˜Fsë/Ôgg™hT’”ÁpéfµyFÖG8Yós“~è³W®>=3ƒ‚/HcešëK{åò®mE¾ÃçäNåpÂ1Ý!'6EcD +mÙ¥ú™ |¯l܃òôŠËJX¿Gñ5’«ñj¯Tß_Ù{`å—¢ ®GÒûœÒ,µvamI&K½u%½4å«…ÖAktu²ýäÙë¯õ—¯lAÒê!œÒ*†yà,8±M²u�Qœqs~|V +1A…„¤Q¾ÂÎo¨Î2+7¹rtîqÍêpbâL \«õæþö٧ѰÅ^I3ú‚Ø�ñV¬¯çÊ+(á>,ìÜÅ)/•–Eµá‹£S®¿‰ +sQ1™±H®êä¦4íòœm:jgkuûútçV©µ…à¨Ã?¬ÁC\€TžnÜÝ9û²–ÛJ#A4¦äóK~i5KØ�Qðò©ŒCsmËßtJ;5n–/DÄûÁŒðë̓îðru>‹(QÌW÷At=¼«`£¸dÃ*pÇ—Ÿ_\¹Àp¾é,6zgK—ýÊFA+‚[7š;áhvß)nA$.ïÜ/µÎ¤Ñ|"¡æ¼ÅÑòyš+²\C1 o•—ùâÆ`|9(“¤·³uu2:à9Au‚ÉÛùétçÎÚþŠ©"¨›Î˜U¢Éb2©!ˆLÃ{ÂŽW–Ó+Y&ˆÇeÝž”ÇYÄIÆ…X„F3šÈú¼Üå¤ÉÖ€¢ýÒ²aªísrØÈf©¿t옙[N#‚‚X±rÉXЕh†µ;Õë²5ˆÆ9Qn’lg‹’3$ùrò¬X/V7k½ÓœTÑÌvwt!WÙtŠ«ny¥ÐÚ€DÐ’.¸˜TƤ.XT-<©ÑÇé2@{· +Ì)JŒÔBðBÍ£:‚¡±R®p²y;‹»¢TŒÏ×»gAf˜Î¤PÞªuÁ¡ËjCÓ;@ì8‘WÌÍ&¬b”Gq9ŠÍyÞ‚›&Ól"ÅÄ’ü|„C‰x.·´Åñe‘qÖ&k—PÒ†ÐãÔ6-5%«¢ÜN¥M¯*ËvnèÆº;B©Z"®Üo¶œ`)‘pÂ$É •¶8¾ÓE†UA(Ÿ9ÿ$Aù³³x:cdÞ°§ë÷&ë÷uwsf^ˆ§tXŽxRzX‚F#Èœ(TMc”¶4{QQëÅÊ”|‚¶ LH¶ª™‹~aÍò¦`'Q̬Ö7êÝCXMÅóúB<mãDQQð6÷d±6X:ß]ºD2UÐBS[—Mk{ÛWÇ‹{¢à«z5(M½ÝñÆUPh‰”17ÏÆ*ÏÔD®6s’ŠÅd^n—vG-wŒ V4*dP¨l[îää:?V„6ÍåÖ{WÝÒ§¸ËËœ4¹È‹eIÑè³°G=C”`¼0¥Ù¬R¨lkAéÈÈ€(]Hc9p¬4ãc„ Ù½x¹·tÝÊ)ú‚“_µ–¤V;½SýñœÉa´‡19p‹§/¿põÞû—v·žEM0¡Ài]H¤´,V�îrýÕ3矯»Ád²~•áëiÄÀ€”ž•ƒË¾0\¿O±UQ(´;›ž¿Àð Þ�Õ./wkj9–/ÏG’µÚSÁå9#Èò‰¬†“¹FsRÉÜ\vn.Oò`ÀQ²„s5”.²2”äFºÑŠ%EÙXÔÝU0¹òFåI Õëí«S i¦‡d깈ºuXÖXRŽÆy×[àøÊ|„O¦Mœ®‹ê¸R?Óé_ª4NAú ¨|·àäÂJà-µh¡©ZSFêÐB=•&ãsÍÖ‚Ù`¸PÜÄâ’(5rþ$`ÄɰP…†!³Å,ž‹¥ÂF?Aq5(®ek¼výì÷–:‡0Q,ß�”F£CÙ®ÛÌg2ÍÖ$uÁ/nIJ3<—‘!XݸP./òœ#iµ,žçåž_Ü”äM•#aý¾\Y뀓I%åggi/xùu'·Š¢N*)B,óB•À¼D\‚ÐVÍ*“¤u†«‚òG1Ãr*Dº3ÑœP‘2Òõ…Y@A•ÙFÓ%^ìØ3º;ÍF"Í4x––¬TÃÎqÚ�¢WÜ38X¾É«ýdFå*PY³´}xoïìýBc‹UšÑÙÉÎ-§¼I +,WJŠ>4Ý©bõU³óÇ‹ËWQÜK$%Û_.w.5UkÂÉ=œ® „dž}š*8®„«è‹~qg²v»?ºÖ�B;8¡æ‹“Ýñ…ÁÊ]HOš5rÈB2¥¡¸“ÅÌtFsóëɵöäRoz³Ð:Ƙ:XÈ•ÃÉe'¿!™#^ékÖÒÞ&øn¹4¾vëø{4©R\ƒÛàƒr…|ù´bŒ@®dÑ0'‚Ôäžé®Â"q~f&lÚÕêðr…`A]÷e¥Ms•€$© ¨¾²~¾ÒXÍ ºn/TÚgrÅMÝ\bùn4.ÏÌ`óJ–jss8ÃAec0½~óÙÏ®=cûKÀxVê \Ä<䯰،.‹˜(2±aAž°Þ¸É3³d,!ÁO&¯È–V%/)H|ÉTXÓûĉ̣&ã1¡Â~XéŒH2“O¦ÌLÚ3¢hàó‘y–¥=–qã1"2KDæ9–‡žW%_ÑFNn‹W†YÜÏ /µ)®‚>P–¬-¥½bã´ž›$³Æì A_.ÑBXÉ'WZ—Íù™4•M‘$©+Z|e+|FóäÂúm”®@Þ¤hÝÔK¦ LÚ¬ ¦{0¹zîÖݵ«œ9�ñ ]Yb¸)(ÝÎÂ¥+·ÞºxãCƒåa¡°¬æ¸ªµH±eÀž¤- +ê¸Ö¾àå·p2ŸÍˆ†d5•:¼0²‰ÉÉŒ!ÃÖð’¬J½58È•V"̆S%ÝžVÚçóÕS0Qº^Ý9zb¸zàˬڕœ)«D½¿¸r¥Ñ9Åp϶ÎÊÆÈpÖesÊÉmÍìÕ›;£¥lx²¯\¨ì”ê{ùò:ÌÁT@ G¢C—uµ“Jqà×0`EªìøkßÖôEQî&Ó–¬)j7‘Q,GóM#·Ô«í³_.…L.H <ÃʇÍxÊe²Iú<DæqE®æƒEÃjû…U0¿aCŠ8£ÉË肘Ìf- nIéq|ÃÁ¸÷#Z7z¼ÐŠD.öÃÉ ‘`cQÄqÚAq%™6þKXëM¥€ñ„lÆNÒââ|„¨ÖW—V/Cº?q’€7€Ö¢© +Eé¤~òd&•T2i‹d +ssØÃǦ$_Šk3b$:-vk +¾/ž–¹íù+ýáåáò=³¸žDíXÊ ˜z:w¥Y¿Ù9:uñÕþò=ÉÄ$Km²`²¨Ù»°¦zy©ÁrC«©°¼¯Åè*›`ªœ›ªÎÄp†4œi‚Yªk;§ß>|Ú*ìe².Cçy¡Œâh`/¿aØËšµâWd}’AÀÿ*†öóŠÅ Õ©“Íz4S±ƒUÛk>b±ÑÙbø"xaˆY6—*½‹Š½ë®ª•Z{W³{)DWìÉ`寯áÓ@_ÑeQiÇi5ÀÃn¥²¶ /Ô»wŸ8sé…•½ÇóÕm1ò¹ÁÎþZc+ƒha[º”Š“Ý +\!s‰8åºýþâyAéÐÐÌ›Í ’®Ã(`MA´4›íÁ±bŽÀß‘L%v y¾Úî4Ìdð&[K5ˆü°Z~„âÙœÈç8Î+W7tgDÐà@^€¨ÏΑ錅 NÈ“ðe¹ËpMâa5B]ïbx‹žá£,@QqáKi®Ä ?XÎå×`Jßõh:žÐ`æç#B,®¥Q/ƒk¨ƒQ²EȪ™”ãA6ãÀŸ±°fÌÓÍqcóÑ4¥$œP/ÕÏ¿zxñKÛÏYþz"¥0|Iɤ4E}Q0—{µÔ¼ÔŸ<öBUÃjèvÇ+®ÓÊB$ëÏÇ4ÇuÛ§ƒÒŠë4ë2BU5G‹eªÛ©¬K7UyØ¢ -ËÕfÿ ·rMrÆWÍb9&è%Œ´§ãøc§¸ s91™‚UY.$š«g²:ÃU¼Â^®t$ªK4[ŒÆˆ™Ù‚¢Ü'Âj·,W…%û•8Ëê’tA-�9¬#ÔEmÁ/Ÿª¶ÏËÆJH5iØ~gïq€¯Tq¦˜Æ‚,0|Py_�ç[ +ø]ê-4»û’ÑKãh Û^¨VÖu£1 Õ@¹ád… ff©ùc™ÝVg7‹haMƒ¬!*ÝÑòÉê=<јÈ0…ý£Ç�N)¶Æòm;·êäWµð•‹q¦3*k(åÍD˜dÆÆé(@QêQ„ÃQŽ¡VW6.î(™ufæy‚©f°�!Jn°Š¢yÂÒÛµêÞÃò8ÒÉ“Øì,`>Ŕ̟g ²©Ü<¬´Îrbƒ¤J�6Hñ@³×I$MŽþF¾y Ú£pQƈÇD�’ÀÔ‹Á4%ÂÇÖ'0Š(ST!¦5@‰AâH…›[là|^,•j[áQgñto|ì•V ûStIþÏ“øb¹Ö>=Ýzj0½Së_Å:!,è!å(Æ¢a¿a¸Íö•Þà²í-¥²¼AÒÀ<úDhÍ*™ÓÌþÆîS‡ß€œ{5J‚T¤À«*Ý_#¸F¹yÜ^¼ÎаêÝî–Œ2˜“Û›±Á›³l³Ñ>_ë^¦¹&(,¢ +bˆ+ôh#‹: zƒòÖÒÖã¸/ˆ úWúáj‚�Œ%.°½ÅãÓOÓBg.ÊÇÃåmg0ðp?Æ�@»uôâÚÞS\Ø[‡%YknÕš› }½üšî®{å#P›Û€€›'Ãþ)Z7eççé,êaTE³×‚Êñn4ŠÅèlV–¤(Ó0Â/ðmAèB„;UPG�;Œ¹îA|Bâ)‹aü\°(*UW"_Éç׊Õ}Hñ(æ#YÄE.©jÇQ(Â¥ÕbuWT8]™eâ1šÂ št@PÌ!©¢¦ukŒá>äÇ'/ÕãÍÍSãâ)›UǹƕÆâ%Ãê§“làõ:ƒCp‹ïz$;á£IgZ’¹îx[©h¿¬ªÔ§Ók3'±GMÍÏóÛ´üUµ!ŠqÒ¥Ù‚j´ ³TR"l¡â¸ã8ã ¼©š=šÍ«FÇ F¬X‚±ÃLâD΢Ö!¹@R»¦»,K²¹j”à¢L1‡N~(Ô²“ŸŠJجÖ/ +z?šÖ£ ‰¤'7–Õ¶Ÿ_¯÷/³ +äâBâi``‡j[Ž& )÷e} TA–arÀv”lbA]Äãl52ˆéQ^ÔÁÔIfJîG“Á6 Ñ«Ö288ÀXØe&Š„8¾ÄK2#õ9e ›·´KÉ3aD L J€Ó/ˆj .ÊÍf÷((oËz—$°c àÁ—%ÒÖ|LLgL GE_¿??OÆcL<)¦³6+t5k5×RÅ]2¼ŸPLÄéLZ�[*Q;`ˆ@Ü¥ xØÐ¥]UIµuæ´ÇÃ6^Âòø¸\œ`¨–JÊ@8f_ñ(Æàâbwíƒo~J‘‹ñ„O(ÉŒ#(�¡�EÂ2É$mÚ}Q¬&\m,ÂLÅ0aSìDœ‹GÑ5Nêqò�#ë‘ÖO‹3’p|éÑ“h4&™îŠê.ûåÅœÎGÕGEA³ñ\x‡$‘]o¤[S`ÝT:´]Më‹RÍÍMX°´¤Nã?+'¸¨mÓyù)°¤Ô%ŒF<lŸÇ3L%l£4>ŠK[ô¶ds„ᅰܵr+‹ëw–¶Ÿt +[°ô¼TED�r¸“AsY¢Ä +Ëz…eUïÚÎH³Æ)Ô&Ø*T,ví`Ou× g2a¸:'†›úÂ=I¬MÉ«áÖ¯òìL6!”³Ê°-/Gãp…&N¬�¿"¨‹ŒØç•…DÖ:1Gžœ'âIãÊj¸±)›cÝ]æµ”.ÅRR*«ã •…ä/�°aOýòA.ØZ^¿çÖAïÉ|¨/ì² +É…mºþÆÂ䦤-¥3n$¦Ój2¥DnKæÄ.Í·t{Y·á§ÚÜ™LJ•Ã)?–”³x¬.LE;¹u°¢³‘°†<N(¦¨`–—£aKSY KÅüK»°ÜÉ8VoNÑð™”d*åJ0j7Wâ±°VØ_ƒÀ2ÃtÍÏ;%³YÕÖa5ççHŠ€ÀÀRt1“±gfГ'’4ép|3•±âq% r"©&Á<†=Ý,€âÜ˱•f{ˆ(™’៳s‚æi¦k17Ç‚Åg_ú¨ïOœÀNžº„ f*-„Uhˆð4Ix€êD<£CQ9’òx±¨êMQ®ÓL`† +WA’…·\ +6F8DIgd·H:ÜKÉZ$•ÓŒAPÝ©´ö‚Ú†¨µHæ?ŸL+ñ„v˜¦ËUcÓ€AçÞe™ð.b¥uÁ)ÙùCÝÝaøÅ�Ç]Š ‰Ã_<×p¶$e^àå“unGÒª"<VuÑ0×®üf8˺µšF</@L!XÁ´�`«LÃrV,{9 h$¬éô'V@~0â€ÂÎõ†3äz—GKrÓñ–Ѱû9€¡˜H"!¯¤•Hr$å@²#(N0<£1• +¦5…¸••H(ž‡i!è +F@‚ç£"ÉÔƒÊ)/X£hÿÂÕç7ö#ÙF”H®žB½H"ô¶UH„¼'CÄ1|”�š1¢öÄIdf†â¹p@(Ü¢NU-}dêCš.EÂJ}d<ì¸'ÎÍe#s° +JÂåU€[8¡™L™33D§³q +é,ÞÜ<ŸJ(4áZ>á‘G³ž@³YX12/ÌÎPxCÊæ¹–ªt kÏÎáÑ(j +Th]Í%“F&£þ°ß?…¢Þü¼Ì +¡ÑCÜdÆÊ`¹bÍD™9˜¤Ìs '·$©¡9É”{Á°eCò +*GŽ¿K±u†’t1–OÎb³ót*mbDl2ÌŠkae!ʧù:É€½²B5‘ÕáÃÁøà˜‡ ÔNØlØ»i{“°= S„KµýU̓@ +ëŸ+-ÃYôòë$W‰„M¸$0Ma•$Ü…P¢H0>µ\øm Åx . ‡Dé3l™e«-kȰ¥°Yʪ§ wSRM{BÒHOWÈçG‰”„9;·n¸kð]0ŠTÖ˜’ DIºJðˆ‡DÒI¤\ÕhL™›§“)Ñó(¶03GÄ⊠,ꈇÓ];yXž1‹ºðÕóq$± õÍüj£Þál›Í;½¾²~|Ü%´I®’Ã¥ÓM{n~‰ +‘(±B£êйnåvææ(.,ôÎ ˆ @Ч@`èñ´ãw“kŠÖžÉ¨…!„3L;hoW'gÙRÐìU Á¹9&›qat0«0é†{JÇò–ÕSѨˆ«ðB³0ÏC�s&m‚ÜŠÆEðt £}4Šê‰b²ËVÒ!nAgJ,×Ì ààzÓ„ÎÔã3žTÂÛÑltJäY®¥`Ëà/pÂ*+ýRõÐÎmd±b*ã'R¹,RˆÄ”xR9€œ ‹¼Ø7lÓyø|P×áTÒwƒ ^ÍÀ·ÄÀ$Ž«aÚ%lN®jÎBµuè—v‰ðášÉ±ùbiÚìœòJÛ]‚ÿ—•Mù Ž@”Š\¦lŽµÂ–1¸ ¢4|ØDù¢Ç¢,dvÓè‹B•¢|N¨aT)‹ ãt.2•QY®×©Y Y¾�`ùŠjô³8X4p®´gú«€Šm?l 4’… ”ÈKði•—ô^,¥>òHв—X¾06 vÚƒóáE�mÑ=®˜dòѸ�¢Âõ—z£óÓÝû`–atåÚ¨Ä4b'Ò:àÈmnž£é@3Ûñ‡¾òaôÕ~³(¨;a~žB�ùd~~u—ÌÚ( ’£;KäÞÚ`+8p܆@-÷ ¢‚βáM§È<N'g$„¤ÐðŠÛNagçìK×|:(íŸ8A�›Ákn–aü‹«”*{•æn¨úƒcEí§Óv$®FRv–ÈÎÂêæÍç_ûRXáõ3ˆÕºånrB@Á@ÂFÁq _!R˜ü'Öè°Jì^,itST¦’²Kᦋ”žAÐE’2�ή`„ZuÒHxÍ/mð +|>,$S‹$!^à/*†éœTVíArMw€ ê¬X'—!-óXYøìÆ/nØî4‹Ø™Œ*ðŽ Rin~> ê4•–aQªÓ@É´ +áÆ„‡q‚T’5B9Ií;Á¶î�9Ä",4@+hWBÉB¨s, œ‘já á+mY¹UÈ\t ¥þöÞ«G’,K{'7+#\š›ÖÚÌMºÖZ‡Ö‘‘ZVVeiÑ]=Õbº{¦G¯˜ÝÙ%gÉ%w H€/$À|à"¿ëÍÝ‚ö�‹´öòΈp3·{Ï9Ÿ¸fîÇñöàÝ8Dcyþ²Ýn8cÕìÚÁ2O‡÷wž \wHÓ6UÔŠïë¸ÓîðI¥~ºmÇ\éÎ\J55Kê�\ÁpòðÛëç?ot‘u“Ãã÷¨$y990œÊYUû°ó,çÃ;îÈ// â'Pq‚X“Õž¢u¡‚vvØ\Nqä‹n±äóR…”P¨µ®¥¹†Çš>‘HpãRÉÉì2™ÏÒ¡"u¿ŠÑk Ÿ^<ûÍâäëÑê ´%EE÷ïƒÉG`ý86²QR9ŒžÃ`‚ýá8 ʎϾL+GT)dŦ[½^}ýùÏþÑÏ~ý×o?ùÍÇ¢T‡œƒ¯±Ý9@Iµí.º²ý¹j‚ïÂ<Ió¸ì0Šçû&i- §¸]·g¶“ºÑ‡4âÄD’ଔ´Øxª[CšK4£[b}šQö5}¦›sÔ¾¬ Ö2Éí*M1ÆýéËþü*};®*ŽBà/¦,€ºþ¾ë€ðq…‚¢k ™t¼ÅLMø‚ƃÎð¦u){VVoÖE9QͶæMéû–;g…*¤oTz0^½é-^éÎLT;d¡CˆT£¡èä®6ØIøˆÁüÓáüSQifsr±hËJS”Sšq¡¹cùHÈ®¦#Êñî._,h,ùÀ‚A>ÈfF†ØÑò†åh**©íõ[½gIíA\;ñ ¤7•~yÚhŸ2\™Ò¨rêE+€ÏU‹7—WiÚѵ&\áî}¤ïzSËž2|#W„rsò +p7«ìfd^¬¨ZK7 «–†5UÔÖ¶++`§œÍ*%ÊeÙ¸D“/9„9ÒÔa¹|„è8å…mt4ïæŒLÎå¡íŽÒ +xyY(`«Ž3””(5[p£c—gŽ¿ŠÓcààZ.®\Äéù^zµV¢lVl)ÚHÓGE’B.4yþ~ØèUÈzEC#9¹äVbØK'<¶üá,bO¬#!9¡BÑà;Ý$ßñ+J Ëy‚T¶ED>/¦wŠðã°rP¶£Éë«ç:=ùò™#+Ø·šM»<íÎÞ¤GN´‘`¶™Qò1! >ˆaY8Þ‰^ÇÕkI%àŸÍKºÑíöŸ6Úœò>+4Dµ\¯:N¶´7¼m^ˆê€æ*‚Ü„Ìnv„ñÂõÊ‹ƒ“/¯ýUž1bLS†-]‚›0:Uï§›Z癣Z³9‰*™P_�ÔÞ3iºÅ˜@ìyÎ�8£(´º·:|Ù™<Ñì5/v +”[gÙýmãlã½r°-ÞNÖï&«¥4(•< .Ò @T,xSqËSQ®P ¸¬B¾òQiHäkú„\Î(ËŽ»èNžÐBšÍëù¢Ðæx%¯'ËV»*·-|;è•%ëçmÓmýHZ,…W—Ô~¥q‰‘f²:lc³}Óè<)“¶ôm® IŸŽC¹;;MGÍÎå哯»Ó+Éqb“åSޝ…ñéê+Õ`¯;~¹Ø|ÍK0/CY›Hjð;å䋘“f·{³:ørÿâºÓwE:Êæmrb\…¬)MI8åã¨z×Î,wl$ à”xÆŽ_>TÛ~»>QÊÞ¶Ô xpÖ²>5Ôx;Wµivª ¢“f綬aHy±l9½¤q¤ºÍ¦í׿¨uŸ«rƒ4×æÏ™%é9¬„]Þ8å=Û]øå¥$’ï§Jn‘ò€ÀÕæ¹·Üû’Òóül#Ô8©m9Ëáü]úIÀ!_8l@ª*µuorëDëÎäÙüðýüðKËÛ ¨šzã¢;z®š^êÖØ°0Š&/‘¶>‚ˆè¯‡‹ÏŸüƯžÑ,‘’=06®é¶Òæ¾+YAY¡¸òø8²>@¾=š–ã@™ÖÔ4ÆÅ¢ŸÍi4]øyS&Àßñ†9¥™è´sŸ¶®J±‚‡Òhõ'Ï�h%Zçx·Z[WkÇ÷w€¿(×).dXÔYÚÍm¿Óyåƒ :ÂûX IQ±ëîÁe—`Í2^‰¹â¤.è¯D§ù¼“ÉÈ[f‹\ÔPÛfy¼÷åÑÕM€�\i@ÞÏöÞ$µ#~P 4-wß>SF&Èr£Ñ8êvÏ»ƒ[Ìm¾Qt +ì¶dz‰D¤õÞmP;Öœ©‚ñòõŒO·£©ê�䕤Ž9¡™+’>G�%Ã$³¸q•6¯-g¢¨Mè^$Q°=ã5à l;Ýl1B�ÈE=î_|uõúw^r„ìÍætЬàu £Å’u\¦g€b¿¼Éça´5Xr–j:}NLie²Ž +“8eذ©ÛsÞ•£=QíÂmÙþã/á‚¿›ÔºÓGç·?œÞþ´Ö»åå>ÍU¡]}¹]‰;åÃzë:H%£Ï[ Ø•†Ñ2…T«JæXP{º5¼éZPà’z“õË[ÐLR¢ŠI4ssJ€šOòyY”¢Zã —cK—f`èA¨á^î—ˆ¡®‡ñ¡ì)æãÙœ›ÍY<;Æ€eÒîž®yÞÞÆ•cˆçë…Ñj0¼ Êó{÷(Ñ ÙTÚýøÒ°'íîÊTÉOÒÛ™r\IJ)”¤È?ú®·Ü¶(Ö :ò@:T”g_à+2ŸJðz× 6õÞ£ÞìeRÙ7Œ¡J¨¤Zï/ÖO96�¢ÂŒpRSµ§%¾š§|š¯0|ÕÐû¢KJ¦6Ì•¢.y¾[bªåІ¤µåíÝz¬\Q¬Q½÷t}ñ«æô ¤ò +ÔƒªŒ“ÓÁø_l¯¿Ô€f( ú¶ÅüÔò÷nh9‚Ìj«Dûí#-U£_k‘_3\‚êÏŸ æ×nÔWÌ@;®>�ÉJÅ0š%Æ¥hÛuûØD_$Ë!YÍkõú‰b6¯½>ù8¨ÂpÕeG>i^ôJLè…KÃJIY!…€w½¨zN¤º1j×qßõ»’Öé/¾M·ú¶Õ‘gû3Åh³bÂI•¸qtrýõÞéçIem™M¨Ï_ôg/“ÍÖ`sl=œ¿¬4€ Íל¦·QíY‰Ã„C)ºÑŽ“ìa/€ŠŽ¸:ø&Œ!€e¹U(Beõ,k*É°Û ^hjúB3V®·Ç0ñήP¤lÃKeØ(Qí·'k×íákÚífÔÝ]3ó¥™Flà(« >õ@Z¦ “SE¹ VÕôænxl‡�™6h”g`&Ut·j¼_(xùœ]¢¡gÈu Ek°\”É*ð¦9uܹü!iÃFýT„Ìc¼’˜R\ÊŠ T±ªÏãäœåbMï˜È£_,Å™œGQ ÔfÆ3ÙèðJ•||À™÷Ç/÷.¾«to 7È},B…DMªJUbÛtò…åíi&F²]ƒí&•‹ƒs` D5dXƒ‡%GŽPòÕæÓÞè]PÙçÉm`/D²ÖQ+¦Ê`øÄ-o®hÍŒDî8¢H50>¨ÅÐÄ +<¨œ(ö(“·±‰º£J±$·`�ApŠ1ª4o`Õ³E &‡qõ +z#ˆW^y(H‘ïö+•=².áÍ +t”É»…R�¨ÑÍûÚ‰«{ë£×ç·ßlïßvóEÑÐ÷æÖ… Õàh¢ø¨R»Lë—~´ü¹Ÿ¢iO7a`F¬ÙÁIµýª?ûÜöWäºf²2Ö2•¨ -U³®¿r¼ÃE@øfûþn7k橈æ»y¡² Âý2¹;å™+´ÐΕÒl1–ÕYgø¢Þ:…¿àù<upöÕÍ‹ß6»áÅ293“³y¡t%fèöôÅç3?ùNsæÙ¼›ËZ¦5iµo¡rÿÞXøè¾ Éݽ‡¿Ù¿ü¾®qž`̃a÷ØÅR© ë›Fï훯þ£¸òÀô%'S¶°¬ +t×L5—¨Ž0^[n‡f-D¼HÅ×qýñüÌ‹¬ŸV6'WßòJ[Ö{’Ù¡ aÄ.dêT3{¤+´X¦íßæ_'õ+È]H QH]xØdãG8H%S„BîúþE£ùÚ-ŸäòŸe°Ùž4nE½[`ƒÂöž2Ûy%›S¡W®j'8sŠñ39m.….ÕÝEûøðò—Óƒ¯Ýø˜Â[d-Ué +~&C®ž`Jy©$g7/ÿl¼zOÃ%ÙƒzçºÚ¼uË{°‡ù’›/ù†9 +I#æö¬†iýjãªÚDDzdF$8 Qs~lˆJOR:ªÖ&V¨è°<üÔ"ŸábüX¤AHMsè¸crã±=ôã“Fÿy¥y –Ì’%q¨÷2”?Ë’¯B‚\Ïe5 endstream endobj 29 0 obj <</Length 65536>>stream +A¬ù>¬úî/_„| +“tâ<›5Lkµ:û>¬]XöFÓÆ˜“¨<é÷ÁÝÙå$mby§ióùhö¥ío +%gwWJ“õÅÍ7º +á|´+劾[>€ZVÀ¤CVEäsUG^°ÌS6ê‘“úš1MßœýÀ‹û‘ÕQxÕA–ìì(°�HÍÂìà Q÷ý'˜Õéæó°z™+&ÿÇ¿'Ûíÿß'ðÿÕöa wmû0»¶}È]Û>ä®mr×¶¹kۇܵíÃ@îÚöa wmû0»¶}È]Û>ä®mr×¶¹kۇܵíÃ@îÚöa wmû0»¶}È]Û>ä®mr×¶¹kۇܵíÃ@îÚöa wmû0»¶}È]Û>ä®mr×¶¹kۇܵíÃ@îÚöa wmû0»¶}È]Û>ä®mr×¶¹kۇܵíÃ@îÚöa wmû0»¶}È]Û>ä®mr×¶¹kۇܵíÃ@îÚöa wmû0»¶}È]Ûnÿ·O¶øïÉö÷4müîéèÑîÏîiýyzƒŸ}þųÏîmîi7åþg_Œ^=ùâÕ'ï}öØÀ¯?JÄòá³GoEó÷¯ñ"qï³W/^½Ã/ž<zûÌ]¼´‰ÿîb(Ûÿ{Ï«…Aâǵ¨Õ’$¨UÄZ˜~%¨UëQ^CñãÿÇEu?Mƒ8ƒ4ˆbñ-yù]R¯×jÕ¤RIijW½VëAµúÿò¢ÿÛÛ½ýw9§·÷^Þ;»÷îÞÁ½ºhZâùFÕvïý¿\H·¿É«·Ï¿ÿçàfäÿšLì… ˜Þ+ž}õêɳÃé@<ßÜ»·³IŽàmÿ…sIÂ;’Z">£ à Bvùï´ùã¿ÙéßüMŒqŽau{º‰¸=Â=MÛž! C¬Äõ(¼w>ÿD™ô+á„HÑšªÞVIC–&Ë·$u¤YIé +ùZ~Ii¸ÞܰFšÙãÄJ‰±/U¹N(ó¡®7,gÄ' ͹Tì« gEsQ¡¨ +2CÛ¤«”3t‚µUÞèÎB¶œ\¥¿Nl¯Ï‹5ËYøåý(=SÌ1/´Tk&*–KKtY[²>PA9ÙçÕV¶`Ñ\ÂËu†¨’ÇóÛ™Äé‰U^¨VŸæB^®òr¬šuŠse£TŽ¢úƒj÷¹awZHJ\ƇµÞmÔ¸«§ióÆò7’Ñ+ñ¡¢w%“Kn¡hr¼/H‘ªÕ½Y L¼— 6)&*±1ͧ"éæ6Ô–fô$¥ÅKíjõ:ŒOy¹K±Qžr%áBן[θÄx%ÚÕiMH=šô3b¹È4úõú9+$<é'Õ+LVÅ_&fX<RE)ÆXT¢ÒË‘N@eü’ãk<_Sµ¾¬t6¥V‰‰È—Qó)ËUh&¢ÙÐ0†¶5!ÝvØJžòw³*¹¼Y(` ‘,U$�]¦(›ç‚\NÙÍù¢AÑ>ÍF%:Ķ 4p´"…3/ËZ‡áâ\^)•|œd.g°l*É=Aì*ÊP7'¦5¦õ5ÍXœP3¬©oLwLÑU´X&Áe}ÄËí")_U;åòÊs§<—ÁR5ºŒ#%8¡¢™Ýš*JÍ÷úEÊÄÉéúûº½’4d×ÉIzy˵RɤЬÒÖ•“Λ¢> ÅTê×~èðRÊ ©ínjWa塤¾B“åÍ–I3z¦Œñ’¶¿Ú€ák_-Pn.oá´ñÒ–Ho³bUPZ¶·ª4n{Ãg{§Ÿ +ZÂeÓµ‹æèUÔx [3Ù!"g§ßÍ÷Þ±JHû¶¿×½«¶ŸÊÆT2&¬P+Ñ>¦‘ãSÒ‘r29¢Ò}›.gsˆŽÎp‰ˆ„×:"&\¬³BƒáœÔÔ&éà)w1‡È@¼;–˜�‰š/褹*i–h¯XthªÌЉÄsÕF嬒g³j6£ +V6§íf$ƒå¥®¢My±ÏòC_šæ¢PtIG¾"Ém„€ÀòÀ‡±WÞãÄt'+ÞßåœÀÛž[æÅBŽVpJ%òeæ;»\.+ñl$Ë=Eí‹B5“Up—äF‘²K%:Éæ}ªÑé0¥Xs,”…Qä0 9ã*AxÅax¦éÃjåø«¯ÿááÅÇÝ/Zî‚4Xìݨֈ|‹8Šˆ%-3 +%‡|-v Ó›:å™íŽ%d¸T?:úÌ fEÆÏ IjVê7QõZ’뢋æ¶5ÒÊ ZhHÚÈõ÷’ê™i9¶ìº£jëْܲ>f^·§åh¹~[ŽV¼˜"-ýðÈ‹Odc̰5An³É·íW‹«Œˆ-£� µÓ”äM’z¼X¡h‡´;ÑÈyN®—£ãÑâ«Ùþ—ýÅ3NMd½á3;\˜áR2ÇAzѽ®5¯&ÓçÕÖ)˜çS·¼ +«'¦·ä•¾¨a=^¨^HûÔ‚ (È\^lmûºP¾`ñùžüíç™FX…¾ ÜðLÐZyÊÀ<[Þ¦X +r{'£gX.¡ X�˜bXòL—Ê…¼™ËjùBéÑ¥À±ÇºÞGFe³Z.«ÿ¾z6§Pt™—Z¦½Võ¥ªÏ]÷ȶ7%YÑfH£Ë!^ê[Î&©\‹jk'+äò*Ç“^`’Üâù* �§½míìðHbÑàØP{œ�Mi:‘å¡i¥nèMB&ïä +!Pš'ÍǬ4dÚB‚Ãf²Á:¾ªi}¼@”@y=¿¼×>÷’åG÷)ÃDÒ_€!”Ú@N¨¶D€²Âˆ2XeHˆ«®5Z_©F»Ä‚TSIË’'a&�ˆ(Ögâ–O5«'jmIëñ¨kµ·mzëÆñ¦;zäÇË0]:Ñ\6z†;µƒž%µ#HÍZíÔ ¦9ÊÈS6ÇÕs.JBÚ%0€/”¿[ |Š®(êS¤½æV’›²ÚÔÍžáŒT“|~¹rîDû‚Ú +Óã ÙÓÝ‘LU·_i=\|Û¿Âü£F�&®=¢fr*RÈvVõÖ3DÇvW†9¥`‡|ë>í»r9À² ¦R°ÈŠ]^*Ú2HnQ2ŸDÑ‘éó”—ÍÛÙ¼¶ÂA�z,ÅD¹z/Q>Љ*ºxËi,xMll›™¹¼S,zÈ„û»iGK:B‹tX(âLÊE +ZQõf„Hú™€›²6EiŠÒb9øƒÄ.1€£)€F¹twW)ä|ÞØÙiºªéx+vJ¥D‘;Q¸,û“LNÁÉç‹„û¨r»£YûåøÄõ—�·ÝŒœÏëÀ®ÝŸÉH’Xk5.LgÎÉBÉGE0œ¹í«ÞCŒLwÃIV ¦!t½Å0χ¢ÒVÍ™ë”C„²Ã1ȱ7zÉòUĬAzaè¤?ŽƒârÜeR?†ÚÉ€ÀV7ÆÈm·¼°ýY5=úÕÏþæüñ·œ’²R¬˜dË >©Ô.íªÙ'£À‘™˜:š±²ýSÛ;1}¼ŒªºÚtüE‘I@Ö`&-gi:+Í^$ÉñéÙ×ýÑ-Å’å~tTï<nôžÕ{OÝp…›ï¾øË ¹Ê•†tdëb® ,k +y³U).ÈEÞ6_Ññ("€þipb}7ËHã°˜!eÛÊ<ª”2lݶg¦ÝßÍ[lŠ®kæ¾íÙÞ¾jL·ý\ Ø»PÐH×§¼V,9"˜Eé"‚[¡¨€¢@.Z¡`€€ˆ€É[™¬‘/xÀI¤•€ääû;44X>o‹ešŽ�r´˜É«9ÊbøIkÚ+ECQ´1í¨hQDæôqpà(/›5²Y“¢Bž1Š‚Ë±q6+ÄvveÐ^ϲÑ.AK…ØcÀG® aZê¼ÔÔÌ)&MVúÐ`ì±#Mc¯J®hìæÝœ‰Ñ ûÏóEºšô@kœØ6ìMZ»I«=ojhi½ºIjDzÞC‚A6KZÃu'õÚy½sCÑ¡eõt³¹HT‡:Rô©åì×ÛOãtl²Ä–’Ú– (µ½`/mœ¦Ï>ûò/G¯x¥¢ÙCÓ_™Þ +–á÷}Ê$m€$С.4cèøkÛÛ¨úÄ´àJÇ[/ço§ëOŠLJ1©(w sdÙSìkس8>êv8þŒI¯dYíB†éyýÈò—arðîÓßU»§Høët{ÅD…ÐlŠƒ286"Í‹ p‰P‰Øå^‘r‹$Ü:…ðX1�lVk¤×p6¯#OX®FsuÒ¸DhJÊ@Q‚Цé +þº›óZ”¦}à’iŒ4µ§*]CÓL +ŒbÀªL”ÍY…"éšW(ØÈ±|ÞBd±^,y`·LF é0—³wwÁ˜Ã‚ŒP³ÉeÚÈ4Ijÿ%¶f$4bCQ:ÐÌ8&ôމóGjAtå¡çKy“¨÷¼žÉhH'BÇ9ý÷H…ü‘¤èÉñVj÷È1å…J±`C³á€¤S6f0 b]TZªŽ<ŒóôHŠusYk>k߸þFU›–ÞXÌžôÇ·‚\Sôžjô,oÆëfûÒ.ÏrÇvF¦=„Æ‹““rxV.P³nx"iÈ·@SZÍîÅxPã’Üi¶Ÿgo¦{ï&ûop¢YýÁäEP9¡¸ê¶J7HN’úôqcØœ’iH_Q&¦9€I;ˆ’êÕpú6ª_Pl“‡Ö’ wàø+Û]G)Ô1±º9€ìç¥z˜œŒïÊé±íÕ»œTÍ“l@ÅÁ‰€yÁ#ôª:Ä8²9C•›Q¼ó‹”@D ílw_ÕFtÕ½Ež¢‡ˆs¤±QOÑçx†0ùæa7«eó&hç†K%h³z.Oºeó™B3expÄJÕ2&•äL×'Å|´·ud-¤G±�3)»P%˜5xä˜*µOz ‰} +œXô üùZ�<*Ú�A‡_@&XöÏHøod;sÐHX,8“ärV&#Lj¨Ë™@B†&=e*`ÇÀÅv V°ðF[E.AÔ \Åй"2JB6fvåéß(íf&åƒl–ûè£"¬ÉM‡Šü’òw&‚Ò(RNm£ßí=ôã5k»KhoA*FÝõ»šÎ +ÉZArÅ[]éÖÖ˜áëùRÌò èØ Ø³¼I¶E™Ù±½™nuwÂk]NiéñdõiP9b�ÆHÔ·K/:¶Ë†³†ÝÆëK'B™@s‘aÏÝàTwöm"Â+)}(€í¶Okƒfco±1Ót½#Ò‚v€' kŒŠ‹'-bÛ’ÚõüMZ½(qQ‰-Cö3¤™/68Å‚´@u†ke˜‘ ½qü鎊?y=„³€àY”º¦}¨kXo‘oåI“^®¨åÝ_¤B–iA!“ Ó¤;ü,Òˆ„ÄØÎyŸš*„vB’¨ê�Ê\äSm³lyg—A6"¯X¶Æ0ਗ਼eRæºäÜß)åH#] ^ ‚‚.Eš9–5·ì¢…f&:ÛÓ¿Éfœ6Þ‚p™€�.%SA¾áÄ °Aý„:ói'Zp ÛP ÝVíøâø‹ÝœòÑ}‡¸šµìv8Þ#'“§{™,wÿ£\.ÃÖh&@rBFBa"Å’ §Qm™ÇžYÎa…}6™¨· +%—BEšVxVNmA±eÝ™1b5G<U‘`a|¥Çº5,Ð.ì'UÀ%.àä*œn/jíçåäÜpç¬T â¤bMšD“¤þ¨5zc…‚FºÇ"¯8¹Vd}ìåF—vpi"sÔn‰C.qrìG{ðÄÇQ +¬„“Ljªäw©›£¨v鄇i°NÚÏÁÙYÎÄô—E6ÜÍkøªõP}˜+™´]&ÍëE¾†·Ø%! D("†.‹|ŠzDÄQÚ@fŠv1¥ÈÄãP’äÌnF!¨ŔÁ°¢[LðQMyÈV +bD<cL˜—ôE¾ÁŠBhéÈ«íäsŠ¡Á ·L1:»*–S¸³"Ï…²T/‘aå,”€Œ£*ÇÛ&.š¿o¼KZ‚²1¼-` +©r‡Êdy$¯ÀƒÚLÔ)à‹ \ó`–ÅævõC¼Oškë‹ Ua”HcD.Ô´z‘Ò2Y&“)e3L‰r5µë:ž÷J÷Ý& ·TòˆÞ“k¤ï+j Á¿“ɹ.ZdñÍËF·DÛ¶7Õ~Cj Pi•Æ#Ó]@„•½ça‹۲T«T “}?ÜØî(iËfOT;ª9†'¥ bÖ¼ws¹]ë< +ªš3‡í¢HkÎn”žÇÍ€tšQžÙ€4ý,†k`Ã0:Òb–3D@«õK•&ÊÕÚ¥btÚk´Ï¬h”/i9ÊÎch,áÊÁèÅ`ñ^¶'œ†É/ƒw Ft(^„´•FǦ9ÊæeŠÒ!ÎdT: -M…”æ@©2ˇp‘%:‚´[årN6‡xµ`Ш’]$²,V$ê…äánFÅ‹5m‘�ÇÁð!ŸâÎ<Å"èIŤDÙ²˜¤Éœæ�tp áÖºt)¢Š@N;›e©Æ1e�8‹¦c†t°ö”dEóSÁ»ç +Z¾h®ëyœ˜†‚|Êå1 +aýÄ’vv8à00jë\Ï}òÙ_‘ű]6ŸW óðKä-¨0ƒÓa»}Öé"©¨‚ ˆ¾"ưŸÛl)©D¡Òé]Á‹Á"o·ˆäIÿ_ßu†Û¥½÷:bI?åTÕ:déI®fU«½“‘sðžDŠÞo´o5sä:Ó‹G?ÉQ*Yãâ࣫’T×.RËv'íÆñéÍ·†?Îm-Irp<ß|Û<çå–¦÷Ê•CZL(6s)ñå½zçIX?O£õ³?FÍý¿ÅgÒÅhÙkIÀÎwú Ÿ³Yš?⯎»€M&Ü…úlõJ±«;»°‚ôŽ—«ªÑ™®ÞL÷ßëîÔ³Gëý—EÖÞÙ-íîr¢T#}6•NÙ_ƒ°P&¢œr|¸¥'©H …øbd» %ëøp;øýB÷n^·e@ƒ B±ãŽdµy‡ÛÙaáÓÁ#[Ò©êÆB"ú!¦ù WP¶x¢sà¶€¨tÈ-ÏÄ•EŽ2¶Ëb0x!©œ]*º²Xóœ ‹SMëÂÖHI»jˆ›‹;KI©»PHEŽSÛ¢ƒ8GF)Rl[È1¤–@Îç ºÈŽ u8ʃ“÷ÚÌg%‘ a@€]»»ääEK-ùÁ4—åDÎQ¤2KÃYÀ§Ø’ܰì1àN5†IyiÁÊfá_k†Ù¤ƒ‚‹ŸC†H )L’µ(Øï)z Ï‘Õ?x¸Ì†¬—ŽÏn¾+²Ž$U £/ËMà˜(7x±Â‹q§yôèÕ/½xY r4Eí˜ÆÄ+oªí+Õ·l®:ýmËZ£R;âå&#,Öc0<úñWÿñxq‹÷U¤–�L£}¤¨¬ÌÿÄr7Qý«ôaÇl + H~'%««}?\S¬‹6ˆpjѬÇð>°WPë‚\¶Î~õ‡ÿ”üÝ]Vàƒ(Yi£Lµã@ª•Ã9,0‡ã–õ8>)àÈxè/^}ö;F„[W¶×¤B<s\ô¨‰âåÍ£ŸŽfOÁ)»»L>/!@.™œìEŒp€®Ÿm sY)“¡èlc\öçªÑÊM0&pr'#A@ʺÒÔ•–mÊå¹(¤q¸(Ñ.`gg‡¡0p¢“+¨Ó¤r êõßÃ`¡ mí¡N|"è›»å:½mnHD’9H0B< Làn†ƒ£q)àñ£{ùÌ.3ØØÂ5ÀBf³E¤”†·Æ¿Y&vm/"X,ëîdD`˜Q*<œ8—Âd²$s¸t^ˆx>6ô^µrjúˆ|Ò^“ hrEÌáÄI¥ê]ËÀBjfŸ«åpÖŽ$潩êQ©+Z3çŠÑÉR 3—HnÊ%ý…ÁP” .ÖôæÇg¥š¤¶�†¹"^óÊëfï¦Ò{äć¼Ú.Ò>€—˜qÊÌQ–¤¶áFE¹§šKVì–ƒÓrxqU¤mÄgˆy+á¶b"•KåB Ãïf<8Ïè(Ÿ¦ÕU½¹‘…c"”y.“eñ#¦Â¶—ª>‘5øÍR™å‚¥“j‚ÿ5:HÔ8>«÷osä’“‚Êf1ɨn1—“(ÊÒ¾,Tc@VŸ·XPóy@ôY²bV/–bˆ|YùÁ%/µˆ%¤ ¸Â¾H‘µ;YÇÕp„©·Íå3€ˆœÆ–œRѸ$‰ÖHŠ +€É~´J”?BÑ亘añšÈ쌂÷¥iÒ9C¤£BÜ.p’\µ‘<¦Þ%„<<¨’'J$ ‹cáF]”<r&«‹Z"'ch#}!gÚÚ`gW¼wº‹tÖ&â¤�ê—„’ tÌ`¤R° ð$‹9¤VBz7ÓH¤�TK¸Æ™ézŸbá#Óî‰JµÄFŒP£¹&'ö£äA£û2j\ðÈJ4 +A¢A‚“Ðl¬7¸Ô4zëizÓ0ºº9‰*—~tÌ+ Xxhu ZªrbÅ®Âús'>åàÙ”[Yg¨“†8Tºö3Ûßã„6ÅÄ(mAª[PþËBÅMdÒä½Q DñàEH«˜m^IµÆ‹pdu¢«iRŒñRRbŸœ+/µÁÂ䪢PYCjbD[kßU)/´D¡I:ÝïrTÓ(ïî–ÀžBO2|M$ºË¤ ˆ\V!4ŸHã€mQFîÕ(¦&J}M0¬GÒc»XбB]À»CyŠMÇ^Q<Y™c¢1¯SPÒ€åê,›–JP›Hæ +ò–!àûž»r¬ ¢TôyÒ+ùÞ½DTŽheg…F–RÄü&°%â5Œû»"P4Ÿwóyœ¶…KY-0K“©�C{ÚD®“–Ï`6ww!Ø4Xãî³�pŠòÈØæ±,mhÚêÏçlì(IÍ"YÊP +gbEî{Þ3ŒÐÔV¥zÀI1Yxç몱ô‚‹jã©åo`Ä0qr¨o#ܪڲ¬±e/µ²ÈåMMjWÓã"ˆ6ÀÅn°ß¿‰ª—ÈŠòjÎH=–ü rãÆç¼ÒA°©å‡åôB7 „«–7å–å.>!Ý98ý¦f9¥BïAØKi‘®JQ£ÕUú§‹<AQðJEÑ¡¬¦üärj1o “Ýœ�4œ±f)øh²ÆÕ²ÝW>,ätr50´€»ç¸Z¾àA'ó¨ ’µ›aá¿HçtŒ¬©+…R¨ +ÞÎ}åù 5’%«^à P3åò…ë’•"m ˆI&'—GÙ@u‘ª–í,è’Ã1®&׳~Þ-£©Ò»€1IíCý–ÊC;›èR"òM<óL…öÑG°[.K®NÞ¿ÏÞ»Gg‰ët�“°…€¯ïïH<ßdYÌ^ƒãZA°ÖuhÚŠgMY&ú½t,ädǤð,WÝÝ• +ÄiÊ€¯bÁñü#ÌÒvùÂD!#ÍòäBxÙ-0%¥šfp’YL„( +äbÄXzO;å ¹ù„²%¥#)]FHaIvs2ðµ& 9ŠÜX’08É ^°E±¦©}ËœšT½Äò¢¬Z]É —Štxwa¸K†,AÛ�@6WÐAˆ´²1´ÍÔ7Ã{Go ¾¢ƒL…Yä^ ði˜##²ëÕùWæÅ¾nNEr!µ#Éš«`þ\ùð[x4ȪLNÜ“„T‘iy- +1CŒ||½“ã3yMV{^y/J/lw •¥juUofrò¡€„àW!&$·â°‘¢à¯¹ÊOûðø|š2ä¹V±¢f9&*äUX3˜2œÕö®�²º•ÉÃ&õôÜ4j…ð³\ pbz.ªÅ‹ ž ¹ê]ÐS‚ž)šÕBóHDó˜À€–“)…2ßV�êPâ;Tѹ¿tŸ$¶ŠLÀ?òY¦�"ІÇ2‰¦Ï@+…¢ç"`0ïíæ`3Ý툮ç®A[ð›ä>€ÕOÎc'çƒäPzYB¸®HººƒJlÌü£¬€÷Éš?°‡…YÆØ)#±”ƒÂ/ºÛ%”›—Íj ;št“GÆòdÙ9PÂ^e€*µ}“ˉ‡�‰§,Þn{!š3Ž4»»““À†52Ìò¤X +QÎT)* VxÖSä'\(•0š1³ÝU³û´\?èBþÖʬà œ³N€ª¢Ô*Ëß`¹j è,šŽx±&‡“å‹ÞøŽ€çȲHű1ä«,TT±f]L`‡,ÉBªIb[öȶšÑEoe°¹]ÞOù H)LHMè¹ø)L&á…ô C©#.åRÉß’…‰y¾ÿsÿ#:—UéRâPA÷L¹T´u ‰�½1]”3U°Ö-™wÿ£"²¿,=‰«êzo+ÉlMiB:‚ámaNñH§Ý]oA®ÄûvïãàŠ,D3LZbêƒ1NwsÚ¸»/Ÿ"ùUµçzËÓ,¹¢A™3âGåAµLÉ£)'“Azch°„˜n»:Zå„”aÊiƒª$×ÉýQñ}È1x^†¬åFdŒ È×ËåLT:ΉÊñ)+¦ù’‹ D¾aÿ†ª,«´vR޲üèA¶Á~–“áàä¿ Bð·4v7+ÕSU'ËAä>@(¹ +Œ°„ŽÚªm×ç!] ðz¼Ø ëŸr“ÜqGù¼XR!¾€G(y’H4|¬¦À\ˆ#ÔŠB€i•´ŽmÁEa_(,’€#·&Bz`N€$S…$FYëz‡\Åæ›Š2”ÅV‰\ÀÉ« ›íµföªµH˜Ézí`4{|ÈV„înï•ÒÀSÙ”¿·½º (ÙÊ_Á3¹¢·+ïìHypå#OÀq�Z·h@Ë¡Aa_‰Ü�†Ô AºÈ»;¥Ý$§/Ÿ%#-W“3Y‰?ú({ÿ£<•'¹„,€1óÛë‰ÐNøLþƒà]xrÃÉT3Æj€ñû™ØŸw�ÙálKh½.ðMh ŸÈU˜’»sX&YT +!œTÜ…"kmHN¨rg{¥˜\¼Óí,L–'V’5"JRnâAÂT@Þ†ö"F¬L±e¢äy¢sreÆ_Ó:®;pý‘iO¹«h=…¬D ) +¢yïà BaÊQN޲¡Ïç‹ «‡Î Q¶hí¡yE¨rA@îäT»¹m#ÜÉš»Y“å‰Râ¥&ÐL*ÈmÝJ}'ÃÁ;çò:04-Ê]¨eAì!™‹„äVôz0zc˜+I&×Q8ä”"¹t²½ÕÓØÞkWㄌ; •U$èQ¦™š®M-²Ö‘"ñȲÃöf²‚½+ç²änOÍq'–?CŒ¶+™>ñé¥cXªR%8r«I‘¬‚úÙ¬¹³#‚Ŷz©e |²*ð©¡vè’‘ÏÖbð)¸†fÈ ¥’T+ääî!…ŠÙŒFþCûIÒ�þ‹Š«äöW>glï(rc”0äíÅ)Z…&&4e¸*b¢ÔÈ:¿vïuÿMΊPXÊ ‘ܽVÇ?¤„!-3¤|œß§ÃÖMgUýhã…󰺯pñ#Ý™›î<Hâúe¥}ÃÉ=–ÜX#ÜGpɵWUßâE ™OàHª"?M>½‡X#¾¦ÂškFÛõÆ~°V±fŒdrѼk;³ÉäU§{ëxSy�ÒÇ„‚H†Rµ.l{‘…ð0QûÈNlèöÄô–†»€Yƒß^óu·wºöE¥MA!‹M/<¬4¯%ƒ¬rƒ:‹[ÜËä-ØIÓ]Î>v—,ZÙBË›šîg›+Àˆ%,Oî_5ì1XîHŽì3äöÆÎŠu$ÔŽivµ/ˆ$-\Í#IàÒY¬&˜@Äͧ’ÒæpÂtRââ"Mn`€Îdá”K(Õz¡J×ræPE*$kŒ”³½÷@…j‚¬…ñäùš"·U¹…¼ÂùPä:áriI@|pâyb{Á¹€È•¢àÎB ¢$^Àï5ÏŠ€WÓ[a²B�~"-½¹KsTµí.¹·™òhDPR‡‚Ò£É ´i† ’‡\v¡áb�…FÉaœ ÜpÐt‰¤+¹Ë$ˆ£fa†gíÑuX?€ +Ò}Ý)H‰`Qm]vg¯’ÖµnOÉE^>Œ«š5>Ède …è8å™f÷ýx¥hmÛ›Fõ#Ã%·çÎ,¬7{kí3?Ù—!(¬ì…UÆ@Õ‡Û׌mÒ<4Ü#V0ÕZ˜Þ¾èîJ@ìÔ¶åN“Æ1€(ªžÇ‡ª5åä¦jN$ªÞ l¯KV!Õ:–7öÂuX9-ÇGº5UÕ$wA%²dÑæÉ‹>t5m)!²àe¨‹„\F‘š8 ª]Ƚñ4œq5½æÄªfŽáCU½Æ{≯=R´®jX©ž¯!¥¦í;ÁJPš$Ft@®Ê ‡5@K?ÞS̬wqž’VƒŠàåšåMÜ`…ÒÃiˆjozEӴϱe‡ +4µ«i} “¦`ÚÂmŒéJA‘ÒvÁøkÙ_,�õ…R@n°)E`p¸ÃèÑ¢Ò:««r2ožé!¹ÿ‡*úH5f’Ú7¬~Í’x%imZHÙ¹ ÌÆñ1Bj<ô’Ű®Žx1Òôši÷!¡áã`Ø÷Ü8gcöÐ$à>N¨)$@ó¤ul–çåÊaÒ8±ƒ™�»:^<íLvfÝh‰ðƒÑbÿµ]ž‹Ð‡Î%¤^¼6ý‰U&^¯Ý½¯žiVŸÙÓ¨z„¼ª¶Ï*í+ÍYjÖ +T+«©¨ ÊàCTÙ*{n´B¶”øÔ*/5{ Z}ÃÙÁ~P»Œê—ióÚOŽ\o²Øû$ªŸS\¢Ã¸v×ñûS?>TŒ® Ô*2¹7>ÛêF«Ù½ìM×;Íî•îU(&6œ©jôrc¼½5¢û±½½øëwˆUEmæ8NOíòBw¶?+{ºÓã¤ÄpÇ2n´‡‰jtTšgAm_¶z˜w¾¢›Ë›»Ñ>žÉ�ÝIT9œm^××V´J[ç•öeJnáÞ4×ió�ÙeØVÿ¤?½I›GÛ+û¿¿Ù¾˜]ÏŸŠ2ØÐñm?ÐwÊk° !”Ê!ÉR½+éÀsL&vlûáf4{>˜?×ì FÒºpèä’=W–äš-ÚÓ›ÞâéòäÝõË?èÌž«öXw¡…y +Bh [“0ÚOŸ·· éNKÛAHT£u¤’;x‡•Æq³•6Ëá„|`GB&,mÀ‘[Ôzåd?nYeðËœ|$Gm)Fljv¸ñ⃸~Ò™<®žúÉÄ‹Gië nFÍÃJ÷ÌOWÕΩ›¬ÍòÔðF@ÍêîÀ æØ«Õ½9¾øæøú«fÿ2¨ìþ±’UXÙ4·içÉ`ñs")p@TÑ[åx :Žçº·ÔÜykô,Hö¼pfzHìQX;÷’c'<°Ë{æÉÑåWåÊA ¸jó:ªÛåµ]^!ÉñbÍúñ>'Å%ÖAöÉ,ª-k2–JûŠQ6ºn¸¤ùX K(€jéÖ&ŸˆiHJ“ð›¸ÖºîNž¶Æ·ÍÁ<0]&*HÒ;š;ô’—ìuF½–/)Æ¥Š®Lê†=“cTh£w=^½¹zöËÞ⦷ڹŠj§ýòü³åÅgÙmPÙT›ƒóׇWŸN÷Ÿ#U€„N¸2Ë3¼E˜®-wØë]�B‘Zn°ÄÃò•ÌößÏ“úÑtõ¨Ú>`„XT›åxÓì]wfO»È.wе¸º'éõ¥)z=©²6ñ£ý«o®^ý²5yÒ]?zùÓ09 Ù–Ÿ•ÓÓ =i÷n—Ç_¦ÈÕ\ÁàùX‘«^0©÷.âæYû`yòù`ù +q¬µ—ëǺ=f9h3hìŽi¯âúUkür¼~_N{Ç(:ÕèEõ‹æàÙ|ÿóGo~÷é×ÿøáãïn_~—¶Êéª;»íΧí“îôöøúÛëW¿ªtÏU««˜MÃîĵ}�Ôxóz~ø¶Ö9üæ—§oU¨Ú½¨²ª¶»ó'I÷¶6zê7NüêAwöDT“kv·Þ¹ï¿}><øt¸ÿi½ûððâ³fÿ(¨L›£‡qãH•4/z“GËÓO°£"W÷h!”ô†(‡Ë0ÝO›gýù«ÉæÝé›n/Lf¢NæÍÁÃáúåpõryðîøâkH87\9Áx‹áWšÍÞƒñòÍlÿ}kðH®äšãϪóÖø&nœ”+ûaý¨Ñ¿r“•âxã¥{aý¤=zŒ^ž¼wƒ¹$'šVy@ÕGiõ|ïâóùñ›ÉÞ›ÕùWýÙãgo†™{:Áb´÷òâùÞýâé'¿¼¼ù²ÒØñ¼7¹Õí‘éÍ4gZ®\~¿8úd¸|~rý- +ŸbÓE“æÙhùòàê˽«/–GoÞ~õGûç‡Õµ¬7-ò©–‹úàfvòioþ¢Ñ½^¿õ¦(•kµãõ©’a¹½ÑòùÕë_]½üñÍ—ô÷ÿ“ÿ.®ÉùÑÍ/ºÓ—ª9ÕíE¹rb¸Kܶ©X>�V[{õÞY{|x™¶.d£7šÞü«ÿúªõ.%;î•Ö/�ã'µÞ#�ï‹×¿PÅ”=(«öådýn¶÷ÙÞÅ7³ƒ7Ÿ|þG_þü»ñªÝxzóýÕ³.Ÿ~¿wñþâÅ7ï~{vùõ_ÿí;Ú�~»ÍÎÑxýzqô~}úÙñÍ·—/±>}{óäË—_ýÄzxñöá뇛£ÖÅþÕ×·ŸüéôôÛ¤¾nËÕ©¬×p7ÏãÇÑÍdÿÍìèãJçp}ö¬·zV÷’Æ‘Y¥ÍÃZç´Ö>=yðcöRµ›N4jöÏÊjNp¸~š6/ZÃ'óý÷‹£O«uµWN–•öioö¸3¾¬ŸoŽ_¿ùü×7/~�ZºÁt°|¶9ùäôæ›õñ'ÓÍÛÞüU9>8?ÿêòñOD¥bº]¤ÄüðÓñúUwöôüÑŸþüÇßü³ý³Oœ¯´ í½›¸y[ë½Y|ï—²\×éºã«¤uÔ?¨´Ošý‹ÙÞ«r²«´ÎýhÖ^Îö^ô&7Q:7íØpïì˨zØ=ÀÙºá¢;~8Þ<¯®4w‘´N–G/ó‡^8®ž¤½ÞøbÿâÓáòi½{:?xþ»¿ÿŸãP~4?}øõƒW¿Ü»þf´yÙ>pƒ=ÚùòÕÛÏþ|0}(©A\™-÷Ÿ?þúòù·G7ß_¿úuX9Jk—¶?+PäAµûèäÑ/¯èÎ^w—o:DTœM7˽G¼²B¥íWcBîþC‚®Ñx}ð¢3¼‚=ªgñ³J樂|Ö\ÒB@³Ô—nÖ‚xYiœwÆG›Wó£Ï'‡ŸÁ÷Uë§ÍÁE½·7Z=èÏo[ãëz÷èâôÕ¿ú»ÿqqôRT+õöÑÅí^ÜþúìöÇËç?6Ç×›§ó×ÿÙ?ù/ÿ5TÊÉï¼þõñíÏ–g_?ýñâÙÏÓæù?ùóøÏÿ®><,ЮîÕ;FëW§¾}ñÙ¯Ï>¹ºþô_ü«ÿfzð9°:|3^?GÊ=ýø7ßý⟽ûþo[ýgç§o>úéQŽIIuÞ›>;¸þîégññOþéæüë/¿øè½Œ*£Z÷"¬ÄµÃîøÁ³÷úü«¿/Ôš'H<Óíã^´„ýµ¡ ÚýÇûŸkfÕò:I}!†´ˆê ‡ûGÿé_ý˳Ÿéî`ïò‡ùñWÃåË‹g0;ý6j=ŽW¦=l¶®5«'kµfû¸7yøðåOÞýêèæêÅ™|üÇñ_¸Á 3898ÿìàâ› v„sëŽu'!J›Ýózç„Õ¨œ1¨öèɃ§?ýî—0ùâû—o~â‡ãvÿd´z2Ù¼>»ýîËŸýåÿƒyþô‹¿øëqöøkx"ÅìÁ,À/矯϶9ÿ¾Ú8~ùò«o¿ûU»³ÒèÊ^P»H;7íá“/×è?’ÔF¥y>E „)SëßDÕƒÁôæÿìoß|þsAI!º4s4Þû¤¿z7Î4sRÖß|ó'ñ÷ÿeµvà–gȨÎâÅ`õñÙ㟛ÞXSÍh +r"ÉQ”¬km”Øk„irøecøL×{'ÇïÓúœW7ìö§·Ëƒ7û§¯7GOÏ|âÅcе£t:[½™®ß f/Àba}3_?þæ'þì³_*Fc²y>Ú{Ýž>Þ»úv°÷¦Ò¹D”¿ûöw¿øÝ?I[«|É ÒEÒ<BÒî_~ŽI»¹ýâ_ÿÿËñÕû0ž=~þÃûŸþõõÛß<úø×Ÿ|û—W/Ä?ýæþ«¿Ñí~R;›Nׯ‡óç³ý×G¿]}T÷¾úú7O^|cùƒáòÉäàM£ÿ°5¸Y¼{öþÏŽn¬µ¯®o¾3ýQ¶ óƒ¶ncx+x ?>Î †G«Í#Íj† ôÎ98ÑO6ÞƒƒË/“Ö¡é ö®¾kû–±1Êó<W¡Ä†ìuG/8)…žlwOÓúÞÁÅ»ÓÛ¯ÚÓGĤ1šÏŸýúOÿÓ¸>ί/Ÿþdsöyµw]NAºÔœ¡îM0ŠFçBÖ+ådœÔ÷+¨šÆqµu0šÝB8=|ðéíã/¡|ÖG¯Ï{róíÉÃ/ÏnÞœ¼¨×÷þúýóÿùýß_|òsFH5³g{3¤Mþ®7Çœ_f÷7¿þ‡ÿÕßý÷ÓÙ9$Üòø”Æòô›ãÛ_?ý D iC{}7^=-‘ÏG–?ì}ÜŸ==ºüòOþÉß=ûô—Îálý˜Ã›ø•Ó›‚n&Ë—oßÿöùëËÁtµÿd¸|hx}ÅèÛÞªÚ¼.^æ/dµ^¯nšíÕlaêÒ6qg~rl»“zãPRcš3¿Õ_~úüÓ_ö^À_iblÕ¬èV5©»£Çƒå›ÕÙ»«§?¼úêOk ,8Û< «³reúêË¿zøêWÓý7“Õóåáà‰ ÂÔÇQýX³;ºÕj ¯‘ûïOn¾8¼~5ך™ÖÛ›Þôz¼ÿruöùôè“ vª™vç Õ=âUqì¹E©T*›õé'³£·ÕîÉâèãáê¹]´çH7šyñÊKVšÝbÅX’«_õÇäÓ=9UQ[(7¢s\(±bô4«Óê.öž‚¦Ë'ÞþÑÞùOk§gW?,Ï>‹ÍóþèoípüûOv¨ÆÐ ökýç‹óŸ7K\`ØíÉâ1<Ôpñôàú«ÓÛŸ=óÇO_þátý¶7yEãÏ¿úíþÉKV»§š]Ëö>¬tªÛk¿ûäg“É•Ÿ®{ãÛZ瘫ھ¯ß¶ZÇ×·ßæ·H]@®åö’q¼\¬oŸÙ~_ÑššÑBz§õãjç:¨õ§OÚý«nï²Ý:ò¼ÁñÙ§Óƒ·aãÄ‹7Ûe¥†¤výpÿÁÓŸÇõ}^®‚ÃêáÞ雳Ï6§ïÎ>/Ç{£ñÕ÷ðW¶Ýô¢õpóE±:ýâñgòàÅE³÷ãþƒëÛOXbH[ÕæS©V•Bx«0^{å)©LÊÕãÞìÙdÿc,¹QSmxþ¨Ñ\—“òyê`TN {íø4›ã¨ZT©Ïê½ýZ÷¨7[Ö{ã›Zë$ŠÇ«ÅÃÇo~Öž^;áÔ fådÖN£êY½÷h°zc•G ãñìÑòèíâèÍâä']Kfs›®—’÷û‡Ÿ~ó—o¿ùó£ÏÂʾ¬a6ðæäS?\œÏ«,ã8nÔ\ëž$í£úàB±[@•“ë¯MÛu†6g_g›§Imay-V¨’ÃrA±¤R´Ukí|:?øt}þ“Úè^XTã(]N—¯ªÍKÍšB´[å¡j5ׇ/6§oy5Á ÔºÙQ´š.Œp$ëé:®ìñR2[¿yðüW½ñÓÉüöðì]³ÿ�«¥‹/¿üm§·)ñ^cx3ZÿŸ$½‡·W™/ú¼±¤sNçXÕ•sUWWwuÎ9‡Ó§OÎ9)ëH²‚lY²±q“±Á06`˜ lf˜!30sßÜw×]ï+±V/–-¬îª½¿ïªöþííÖÄ™ÁìÁè$%T0:©ø‹Ç^K§GQŸž-ÎMΟ®w¶“¹…dn™æ‹ñxtì0†G"ÑÞâÆ]ÝÉ3ÑÄ´h‚F(ÁfŠ3‚œ†™¢èX$9Åúíþ¡É¥sœXvØÙ€œzà]Oƒu¤¸¬¨TD¥KÍuÆ÷¦ÎbÏfzS˧9¥äAe•p"äõÝn͇F1Ÿñlsnát²0ïBÀS+_О0Ã×Ûlåöíwƒ×öFGL¨±¶Í#òüUVÈK|vmå\¬8îÆ”Ò}dªÚìùµ6EG¬‚$bð¨ìDÓÐ8S>"ìr+¤ÃêÉô¨iK¡–žž®t·õh'komž›Z<F‚'³ã½ñ#cÓ'³†Ý ƒñÌæg€Ð9øbszùRoòÄúîÝËÛצ”ïLݸŒW‡ÆƒµH|*‘Ïžqº›A°€ÓÉpB²ØZŸX>ß?öjóðƒ™3ÉdeùöîøQ^)ÒB¾Ç‹éª¿Ç2y§ñB“§Ù¨¢•@Q“(#¸<vhN.¢Dˆá3Õæn<mà0'*ÂîàPŸ&IE«q(Í•WJõ8Èo*Ž‘Ñjs³;~`b 2åµxvÖˆOáâÆ<Iõ99Oq™[â¿ Ç'ËÑñ=N(z¼~ëáô2ô;'@«€Y„,[@¼AŠIˆþ*Áæ¶ ê£ÑÃS‹wŽÏß‘¯®Xí”Ûû<,âS)6Åú©ü,Œƒ_)´²ÙBÃBû�ªr‰¤RfÙâ–Ç:‹§ÎÞDpÿÐÃi'I,¨‚LÒÛ(²Y‘O½ò¯ß™Ù²X|>TÑcð ³áØ\:·šÎ/a2邎2[X/-è;!%øóZ°¼¼r"Ûœpãɇƒñ¦˜‘4Ü âQbÑQ-Ü.è0Œ¹ñcD˜¤“¢RæŒA‹mnŸ/ÔçÔH–s8#h] ä²`÷´’Ï'«J®\_(VfüÁ2‚,àÌ]"·I Sdž®Íž�¡’«L«á +BÈÝÞìîÞ%)6ã[=5Ô—ý§WÉš.,jÚí¦d%Un¯v§ŽÎ®žíÏîÕ{¡h3«Ÿ<yéðÉ»Ìv§R‚Ò”üíplœç +¢ya‰Aê0PÛB°Åù;¢6š)oê‡p&ew±ª–‹%Gy) ÷º”å²,›eéâ XF¼+Šùü—TƒMpj .ÜÞ€(WÔ`[R+·*L&Ë¡Ô8-¦À4!h UªÍ °‡+iµR—ƒæ§&KÕµHlpkEÑlaÎlÁY!жËí 1Ø"¹ŒË#;]ð Ô½XHô›ƒ½ÑéSí±#éÂ"Å]^F®Çåf¼ˆH³‰pr0¹zgk°ŽO±b¾%‚Œ”f¥/åÔ@+‘šJ¥g%PPtTR&fA\vqsv:xc1¡Q¤ü‰£—ÒÑšy¥É¨ªwX¡ÀóEšNâDÔje¯–IO3L–²v'åA gÃá„aù[S˹Öx¶9ÖÌÎoY9º×_Þö'J¬?Žwz8Ü¥™„ÍI{¢4YIÃU=^WBy¸.uÏ]z`vóDº:JI1FIERµZ>\î»}"ü÷ùÜh8ZµÙ1–äå#e‹åîa-9…±1ÉOWFµdMK–5ᥴ ¦³¹¹loŠ#6s —W19n +;‘jŒî +jœ¤D^beZÔ%-©F‹œš +'ký©Åéõ`¦ŠÒšª·‚‘þ} +Òð°{dØãv éìd<"Ú'�œ,-bpI8—BÈ0ÎêÑLUÔ.Œ÷2«¤K5’NÛl¬iØãóˆfé†inäp‹¦ÉjEK>Ä“Áí#ç·O†RU‹s ¢_ï„bcAL&Ôj£|X'"6»‘„àpʼ”Ú¥§C‘¾¤vŽž_Ú<–‘|Äê¢@!ø£5.wc#„³ÕYN.0bJ8š óÍî‰Áô9MoÙ$”Ë'¢©Q)üEÉ_VÔ’?T*¶æ‹=QKdzÉìL¦°[ÍÔ¾Û¬¸i&©‡šn'3tÀ>2ìuÚ%Y*—+ËÙÜÃæ-ÚlÂ0<À+Ù#ž!“gÄìcør:¿™H.°tÎéT"+ÉB¡µ°¸µ±yìôù+7yìñ~ðc/~òÕo~ý·~ý×ÿüÇ;ÿþ§×¾÷ã»î{¼5¶×f¹µŒ"¢9к¹v½2huçãs+ë;'o?ÿÀ#ÝýУn>püâås×nÜõ®Çî¹÷‘Ïö‹ŸùÂV·Žll,Õ&@ àdÈ,ô*+ÆT¥Ú›šY\YÛ<~úä¥{®¿ë‰ÇÞóì3xè̵ûo<üÔG>ù‰W¾úå¯|ë»_üÚ7ß÷Ì'—¶ŽË4F¨nKâþˆ^I$ëŠN¤‹ýñ¹ÅõÃÓË[íñ©‰…•™µÝíc§Ÿzú?~ý'¿úͯ_~õÕwÝ76±–LµÜnÑí½n•ÄÃÉÄh¥²@Qa»…xo°Òì/äk©Òh¾1±uôÎK7Þuó‘'>óòË÷?úä]>vãѧ´h¤ÀËÁ‰\FKŠ¿.É’Ò#ñj*×(UÛÍîÌÌÂÁc§¯<þÞ>õôÓ_ûÖ·þæ[_üÚ×Ï_½13¨R¤¬Ñ<^ ˆå fáNÇ#ñä ÖYMæ{É|ûÄÙ‹ïûØÇžüȇï~׃<öžë÷=tåž›>ñÞ/~ã[~î¹{îàøùk¼œõxD·‹c˜°ªÕ¢±1E.'S½`°˜H´š¹Íƒ§&§§ŽŸ¼ýö;/_ºëî?÷ùßýáÏÿþÇ?ÿázóí·Ÿþг¥Ò؈ 7™hhºHd"—[¶ÛD›•D½¢$fh&ƒ !Ui&Âr±L¦µ»{òüå»Oœ»rýæÃO¾ÿƒGŽßÑŸ>ÖèmIrÎXËú/nÑ{‰µ¥íSÇN]¹pçûÞóØ+/öçoüâ׿ýÍOñ³7ß|ó¿þþ÷ßüîß¾ø¯_ùàGŸÝ8t{¹µîEè7W®$S‘L,ÄÎÞ™Ûï¸tåê“O>ù…/åK_ûÆóŸû쇞ûØW¾þõ×ù«Ï¾ò¥o}㵿ÿýï/åµ÷}ôSÇÏ^KfF¥éî`P›Ðô\.[™Ÿ¹ãÜÞÃÞó‘¼ïùOükßúÚ[ï¼ó×üÅ×^ûö~ò§?ýùÿüßÿûçÿ„+ùÝ·~øÃŸ|º3¾Žµ�0)RŽééz¥³²² +ŸíÝ+wÝõþð…Ï~ê™OâƒÏâ…—?ûƒ×ô‹_þü÷ÿñÛÿùßÿóÖoÞùÐG?vþÂÝù˜ÌY2 ÷ó¥e¦cˆ¬«i�îÝC×ï¾ñÈO>òôû~ÏÓ/ùÕïÿäõþôõ?ÿíÏùÏüòW¿ùÍoûò¿ºsèB6?-¥ Öå…B81ªGíÖÌââæ‘£{¼ëæO¿÷#Ï=ÿâ+¯üà§?ûù¯ÞzýÍ7ùë·ÿô—?þ¯ÿ÷ [¿ÿã_|楯äJ“v'œèr c…¤JÑ 5PÊ纛‡n>üÐÍÇ~æÓÏýðŸýôÍ_~õ;ß|åÕ/¿õÎÛoÿö×?yãõ?üéÿßÿùß¿yç×Ï¿øÂ¹;¯¦³m–½;$ŠÊ"¯”&'ÇW>}Ͻ>òÄŸÿÒË?úùϾùƒï~å›_ÿí~ÿ·ÿú¯·ßyû·ßøûÿý'¿üù»}¼Û_)TÕ`Ëå2?[ÌOGD.ÑËÕêh’ÞèôÁc'o¾ûáO½ð©×ßøù¯÷»/ãk?{ó—ÿëþçOûÛ§>ûÒ£O>~×Ý÷ëz“ç+´'×7o?zâÚų÷ßsñ=ßÿê—_úÿ Tô[oÿâg?ûÞKŸûØÕ«çWVV²…f8ÞÁ°0âUX*(2ݪ硶vî½qïC¿ë‘GþØ3úþ¾÷Ýïï_~åµ×¾þ§¿üåG?ÿ鋟ýÌKŸéâµ{V޵º‹~6©J£Ù\#•*ÏN.m¬¬ÜX¾ïò¹ýÂK_ùÊËßøæWÞzû—øëß^ÿ囯ÿâçï¼ó«ÿüÇ_ßùw^ýöWxô¾…Õh²!û³’’ôKáj±1;½trïÌñcÇ:xïõ+/¿ü™7Þøñ›¿þÕ÷^ýÕo~õçoþøß~÷öÛ¿~ã7¿†fùéç^þì•k7j’ÐI\jµxr‚¦â<£GµL£XßY_~êÝ~ùŸíÛß|áóŸùÑë?üãŸÿô·üý·~üÇ?üö§oüèÅ?ö‹ÏÞ;§…+ ‡�¬ür8ÖŒÆjƒ±Ù™ÉÙãG½ïé'>ñü³Ÿ~ñ“/}þ…ýäÿùßÿõoüÃë¿xýÛßùòŸþø»ßüî—¿ô…§ž|O«³„ú‚`Ü6ÆíQ$ +™Ze¦TèÜÞ}ê½O~üÓÿäç^üáOüÇ¿þéûë~úÃ7ß~ãúÿýo_ÿÙ÷õ«×òúwž~ß—¯^Kgš¢s{H(€–×C…x¤²<¿þЃ}ñK_úáë?úÖw¿ñο½ýÇ¿üñíw~ý‹_½ù׿ý¾ç»ß{õ?zí'?ýÞÓO¿ç乫+ïýE“‰ð¸‹ÇQÁeÇi\íNß~úÌ»zð3Ÿé¥W`6?ýƒ~ûÿýßþþw?„¶ûÉ`¢žáÙîX_Ý GZåÊZHN´*Ýz¹QÊäÆ'F—ç§§ú[ëÓ7®Ÿ|ä‘Ë×ï:yç¹£åR*ŠEQCE‡tØ—ƒ |RÌŸ('ÊÝjg¬ÛÙÙ\ÛÞZY˜=}ríûO?úÐÅ«Wî¸výÚ©ógSÓáHZVráhï’×Í¡ŽÄç@¸?tfsó`.™jçÓ‡Öf.ž;òàÍKO=uã_ýÜÏ�nÞüéÛ¿ùÙsŸúàÙ;NŒOO„ô„ÌÓ`]}2†)²>zðô™3WñJ¥9ÕënÌMœ=±ùÜGÞýÍ×¾ðæ[o¼óoo}óÛ_øÒ+Ïþ3~ö7Ÿxð‘íÍv{"©¸Ý<I†¼¨ßb_ƒÛí”ÇE«œZJÄ.Ï?z÷Å/¼øÜ+_úÌËŸýàð¯þóï>ý©÷_;èèæ\¯Ù*•jÁ;8C‡àƒá*|hJå(1J6Ëíµ™…+§?ýÄýÿèãÿúÊso¼ñýÿý¯ÿò×ßÿôÇ_~öC_¾t¬Q+â‡ùuØAÒK”-&‰úcZ!¡e¦Æ&–æg÷öŽ^¼óìõ+wÞ¼ûÒg?õ¡o|ý•Ͻøñž{ÿ'>òøç_xæñû®žÚÝÎ¥«4𠂈®±\4“ jYÒÇ'ôÔÎêÖ½wßóÜ3þÀ{»÷ÚÕ½ç‰ï}çµ×¾ñÊc÷ŸûðÃ×?ôøýwœ9¶½ºØof³ÝNG·ÍfÜj¡q,âõˆ.;yÙ\¼´»²vïÕŸûìó/¿ò™}àñ§Ÿ|à…ç>ø½ï|÷Ï<sß•ËK+ÕrgTó»=ŠÓÎ8m(â¡1„¥pAÓr©T«Óžž™]eõ¶ä<^Îíf}¨L’A§“:`µ[|˜W!ñ€Ï+Ò˜Ÿ1>"ÇȱpN¦|^õú|Á1ËúÖªV;ár²¸±OA³»ˆ¸ZŒðI¨‡ÅQQQÁ¤„y^ H*íÃ$šÉÆ¢¥|fblôБc‹+ˉDæÑîÀvLHe—K´;X‡“‘¤d(Tä¸0A(§EµØÑ¨Ì&béD²Xª&f¡p*m4ê¹lˆWp/®Çƒ,×c]šKí?à�µPJ +ŸÑåx3W.'Òé –Ô‚‹ýF¾’‰ŽµÉx‘çTžÓi:åC5»•´Y|V³×br›MÈ?“¬X&éó•Ü -•ùW.îܪ¥ãƒzµ‘/Ît[³j!YôyÉá!‹iØm³àÃÃC.«ìB½~†«r66+–M%òðy|2§&õbHIRå±ÖäD{BÄt8’¢4&9̈…±P.*Ë%¿¿È²aá}^èÜH4Rƒ¦–„L£¹>·|~|ò˜_ŽanOXögÂIM>�LªHRJÍÞ±@°gµÒ·ý?&¢q»xSyÒU£™H*Žeãï¼ > ¦4%¯k¥°Þt¹ S”p´-ù«ûo³C©˜L^‡D=<EÅ![*Œï»æF—´eŠãó‚X_I’Q×#€¡Æ³²¡!;|FL^‹Ç…¡bZ &IMÒLÌ’rP6Ž`AÀ˜st +÷-VÔå¦Ý^„ ‰)^ët2$“`åœ(úý9¯—B¼MÊ8&Ò´&)WÁûdZi¿±¹ÏZA8"Hft§‹u8¯W²Ùp—‹r:I×À#ËRžaŸÁ°@@‰‹’><br#n?CÇÖi6¯…'H*c6 ¯`1£–ËŠ8,‡Åíó0ANäB.QxÐåRÀ}[mÌ?·–;ì"Ž…½nÉfÆÆN%ÑæÜHÈáR€ã(J/ä{»Û'2‰¢Ýì ¿DEDJ§áv�£†\f“ðEÌ&tßm&Óˆ—ÀBv;hy¢ÂõpPù‘®Ï€« +h•LnVÓêá@‘ö©ˆ›C\Ìxw£u€;ø*ŒÊ‘|•kŠ¿Š“Q—Wñ@Gß +¿õÚðx2·–-´Æö´È˜Õ +'3=¢ìßgµ‰Š¦6ã'šÃ$•:ౌxé1òÀl:†ýJ5™‰ÇÆ6Æ4ä" MÑn£½nñ1<®~N£#&·Éì2[ܳßJ%8ãÁõ8E%’1ÐB¼˜e¹¬Ï§cx”2–µP,âFû÷[‡†ð£6+CbažIó|ʯ”Ÿ«ÔׇG‘7L:Í¥•@Wò7àkQÄ/²áfc–Ò&b6{VA”Dz>—u–M$“ÕP8ïñòðwív�Ì Šr3[ØñÁD˜}^7é|•ÝA[m8TâŠrQ+V#(Ã0 Ò爹\Iĵ`ƒââ&³×ãQýþ¦¨Stʃ†I¦`w*f åçpPû›±š‡ 'ñ´› �H:ò¾[qn·ßë »ÝFæ�E¥T·Û@*h^4h$é™i³M€±Ò#D¦ïÃ5¸S‹ ¡1*ph¿cÈØ«N€y÷z‘à�ñèf3«•r[m4Œ°±À€ˆõA(:íö¨,Ñô:É&¡¶zÄXߎh°V\昨yÄËP†/¹<A‡KuiQY54&Ú^$H!0)Õö¡Xz'R•v8“ U¥lô††ìwTœ¦Ó"—Õü%õ~`ŸÝe#f'‘dÌl¡I*âQ’ÎøÕn:·"Š5«™¶Y(ªBk˜F<ˆG¤©/Õy©é×Fy¡dDP¢~IޱrÜdAmvÎHËr°Ž5z;©ü$Ã'x¹Àòy5Ôö‡zWp£ÇýÐìnÏ=þC>áxõ…$± êÃ#¨Q¨ŒÓ1¿Þ%…¼Ý-Á¿&c•Ååc¢Z1Ãz‡R'‚©q¹xàǃÛ{Ó;PZ(À™d˜<Mç±*)m¨vž…‚e¯—vÃ\ø|*Å$¥NL«Ú€ÀãéÔxP¯Ã½ì0,À"EèDÑ<T-ÍÒl +fÐlÂ,fÆã »<ºËéÑ>ˆ®C.p(P¿r9iQ,0éFDd¦3�.7\UóÅ<Þàˆµ98”HB½tnŠs§dä›yu·7òžfÐ&3ÉsE†Jí¿Í:´ô‡¦ª£‚PõzBFö²‰7Ás ¸Ä£8œ‚óÖB7`Dš`02‘É飵ö‚Á•³LŽ&“4™¢È”Ç£ÁßVE<‚Ó °i,Æöúâ‰ÌÊüÚ}åæ®Ë«Á ðbÃÀ4I¬´z(XQ¤²$–I"êtkPmFa;F†½æßðÁD·¨i†Zå…¬ ä‡(F4¶ží‡ÿC Šoû\�áó¸n¶ð&‹8bæ÷ùã #·7ÎN¯ž±‘V§@5%<+¬fªëÁÄ8/ÆÚ+'Îßïc¢67os‰4æÃS¼Ðè³6— +˜€xÔ[†ÂÏ0i–IHÌGÄIZcÄɧ1&ÁHEI«L‚ò~½K/‰J ›’(alóƒÔQ‹8Bp ˜—$ Œv {ìÊeÓ²X i`[8 x°Ýå "xšbk¼T“äŠì¯ÁmF"5·‡·Z1ø*À‚LRtZÖ¶6ÎòBjÄ„Z,˜ ST–e‹,W"èØÞcG/¥2=£t-â–@S bÚÐãV�TeµBÒ‘a“×döÙì”Û+tÒl¢xˆåÓ3˧”P}ß×¾}N—SÆðAÄZ#s9%ËJaÃ%!·>(|$ªiíh¤+ˆYI.º½ŠÉBØœË#d +~ºTßœX:Ç +Pcr»»V®¯£hÈbeL&Òja¼™&CÀ˜#Ã’Š%Ò³±ô¬HÛ¯<^ç»Ý©=É_°¢˜"Œ9ÃeœNÖíâìVúÖF? ø}TŸ66˜¸$ÌB½ªËò€¶XY\\:§*¹}ûl&(ª*mÏxÊíºDœ¾pè€Ín#@«@S¸½ï¯ƒDI¥F‘ªü‘OóÑ ‚Ï““´TÄ™„ªÕÖ×î8yùÁȰ¢5‘‰hd"™œQôÑaÅR±Éþ!Y)8�0BC%x2ê ¦Ï–ñxýè‰+¬R¤Ål<7™©®äêkÅÖv¡sX +v &žŒ6ž|âÃùÃÐ’"{?âÓY¾ÏŠrÃi¤Ák�ˆž“ÆÉ¬ÈRtQŽjážË#™LÌXdìÎðútœHÀ‡es’\Ê$)Ö«¡HÅtA*ûõž Ö}tÊ…h.O�®TÓM¸–/è‘Q–NPÔBóûP?ME ®võé$ù„S1ŠËpR(ºØf£@½[-C'Y.ÐÛõ‰=ŒË˜¬FJ€¤Ó@›Aù¹<~`Ô&ïÛïF¡<<n¢Š¢X}"Ê5AªÐ\£âŒqë1‚§"œÕªË)ˆlôò¥e% a2ù¼^蘡$åtò<—æ¸$EEàb™‰teQ +·C© N*T,jâxÄ4‚Y-,âÕ "-ð Iì¸ÝºÅÊX8íò- ÷52Œ!py$™†û©Ì,X+Øc7™€zƒÆ¦0›äAtQ©Fд²˜ +h ›±9‡“7d|Æ‹W -§Wæ”"Á§<x(”œP£ÑäT{ôX{üT¢8Çó©TªNŽR4t¢æÃUÀí+ ßY¯ŠŠ‘“ãCC´1zqY.«ËÑÔX.7¾wæ^ÖŸçÔ\©³ÞiNÉ7×Ó•UZ(Ð\¼ßY|ùs¯¿ã7"á˜&ŠEI®'RK¹â'TUµn4)16ã^î¨áéDn»Þ»=œšõ‚ßÄÔP¨Žba»K²%£¢RÍFs¹@¸WÎ_¹úèäÂíN7xŸ¢žœÔâS‚Ö„'ñ9P&n¯Ÿæs·RtÂÆwÐi3¢¼*Ñ—åÔ¶ÕÊÒdTTX!/(5%Ø*7Ö3¥%v¹ ›•]§ªñü\¶¹KËUÞ_S´.è7»4Þê-ø‹‘ød"9 ¥2dĹûàW�ìv°*^(sB‰á@Vªˆ6§Ô ‘m·Âðq2 wäTÂz}|l ÇýPÏ�V’R! f2cÃÃQÈ | +~ÑfÅX:œL÷¢éQZÌi‘>+–Y.µ6m$Y©¹IÔ¹• Ù¹„_®dÒ“À^‚¢ðøFSi‚LÓl`0 hÅí‘o»Í<l$퀸JBAö—áÞp£‘6øòáa›ÍL!ä8óñx¥p|ªÚ=ŒŽ†S1ØP´ÍNËÁ¨‹Amé{ž›? +úÌ +& HJ%j«ZÛæ`܆ bN—l6S¯B=’¤‹‹ÉÂņU-W]7+yc¯A¬Ÿ--¶º;3{ÛGopRÁÄP¨iä¦J¸*ʆŒè±~,?ãôúMf"›iŽjMîEss4_Dˆ„,*æŠs²V£ø#dx äk] 7DZf,Ûmô–b¹A¨ÍöêÄÒÕþ Ni +þ|ì.¥ß]¿zã½ÙÂÀb£AbxÇKÉäb®x0žš3TœUƒ51¢FOLLÍÙ;÷h¹µ‘Ñ••½©é#Ð゘ÎÕK½Ýòè‘ñ…K;j‡A…ÒLXR¼I0y»|!Û¬±=ÜŒ{½@ý!·ÇØÂé£Ò| ¯l„2K>*ã#4U«J pŒá³¢RôëÍleQ‹´AÃ�¶€5³ÙX·±ÂE¿ ˜-„ÍîXµ[}nðÔTX>DR3´P¦¸¢?د´d +ëv‡4<Œø°8Ë— *#JeÌÊqš…R©�ÒtÜf5Þf‰=^0wŽ+„ôØÛn3Y͘Åä3 �eà,8œx†å +wÚ£%»çÈ<šËr9]œO&ÆÞuãýáx‡³ùúf,×îŒÏV×ì^ÅlÆi&IobaI,ÑlÆ('”t6[œ&èܯ(fá¶ž$K‹ZtLUËãc[Wîÿ€Q`ˆR…¥¢ÑøÅæF¡±IM¡˜¦(@Im›¬=M1(°xz~~ëj{ꂇv†¤£nT³9³ÕVº´9¿v- ÇzéÒ΄Í6#õP¬3³vûåûßsúò£½™ã¼?Ÿ‰W·^P#M“ÁèD2?*Î j']XìOn©Á‚ËÈ–·õØ4Åäe¥)úënDÂ-Uêíu¸*0à Ñî6x¥hsËD:”«ÎzpEµzÓGÆWNµ&¶ËÍXv†÷9.öѽ|îÒý¥8Ôc³¥î‰|ë°µÚx˜£^{ycûò¾ý`Zƒ’ÖK7¶šsg:óç#…e7 †*|æ¥s+ ®6T{ǶO<Ô;eÇ ;%>Æ0É3n±1P±¬P”6¸3° n'C‘!š‰{Q º¸ØÞmLìÍíܳtøÎÄIŽ/8€öFwCážÝˆZÅá'`€&:“g™y·‘þ!^xð>*8Ðcv·‚ÅnPïC L8áÓQ$@‘ Ù>4 +\‰xAχ�<I2�Sé€âô*8MM”šË8áåb©½›mE3Ñ£áÄ”‡kcL••,⃑WœF€§lµ +O$�–S*`J|VÔP\ñúä[ËÀ2…ÚjîöÁòyžKözëåæ²ÖA}ŲӡÄ8+UÕµÆèápbT +/SÙÙH|,š„}N©#XŒç¡sC#ÈÔ‹héìl2·˜(¬„“S$°ÊUæ$ìõi’¿ +Tk-Þ»vúÎçÖng¤t»9wíÆ©œ‘ì¯l>õîë??±qžÀè8L Kg²ù›‘óFøŒœ@ÝéVp2®…ûF>€‘ÈÍû|—[B°0F§”P+œ˜ÌT–áF³3øÄ•@¨A2Qá'ù!äx¡P[8túfº0n<ÁBþШ?Ô¶;»S@Q5›ëö¶1,ˆVÊ3bI «±±Ty¶?{üü÷ö¦›(FŠÖ¡Øx¨‘ Å/%)»o¿Ãî•Ð šZõ‡jhäxmš1 Ò‡‡Ö_>{ýñÕ#Wçôä4@ýˆ¼{ùîçJó 5}¾˜¦÷P_œaéü<x[è#¯GÈ粘۸< ™¦Åz$·Ï¯%s+žA¼!Umú}ø€Ó4BÜ +A¥ÀK‚(r:@½Á:¨Y¸6ãfñ ÔF 6%ëÆÂ`(-YoƵŒèñ~À± +‰Gx&JSa(! KÓT>>,ëÃÓ�³_--¤#UÏ‚äZ©¹ÕÍÕçu-þ܃³K{ÌŸÈMÏ_™\ºTiÌœ›?«èm³• +[`u}@¸>†”dJ²¿õ øKÃ�ÂÆÙ7‘ Þ¢ù,Τ¡ˆÓÑoìŽdÄ+æõè(˧$1Ùè®¶'7'ós˧Çg«ÁºíÔ»;ÞVgb[KŒ¹±¸ûì’¢z'—Ÿ7Y¨Á‹eUók]ÐK‚T@v»dŠŠ#F%Á +Åhjº7sºÚ=’ÈN«jag÷ô»ßû,ð&Œ!†ër Wnî<qÿÙ»žîÌœ„Òuz„XºŒ÷=¨vë°!Òbç}XŒ ê»Ý"/æP#—˜ty4^n&róÛ'®ßóèÇÏÜýÁxiÙê”91CáAƒ0SÀbž–¤º ÖÁà {šB±iÚH†WÀÁÜYûA´“@€±ÉÞ`#™'§Y¹M eF¬�•t§ÎcTÚf—´È¸¬ÕtïöhF¾ý0†ú´BiE”ûLûo3»`ŒMмÒ@ñèÐëôèàªÌ&ã ˜Ã.9~§Ë +âFŒ6ÍT"’ÍŒdØj§áâùU->§„ú‰Ò*ô°l<§j’lî4?@¥Ó!8¢Ç¥€maw;%Ð¥Pê·b …P¨å4⪼0VWŠÙ82£5íµ`¨ÁóéñÙ½Éå3µÑÍ@´Îð1œŽ ˜îõTµJâ!—“e¨Æ3…ƒÕÖÞøÜ%Ÿþ̲L2nƒ4r¸x°çX†@OÓû ~y)ß]o¶Vh*Dø”|qjaóâ¡3=sóÊÍ×z»’T¹óäû|¯èÏ¡x%,X†ìRglozþNÏìB†CÈ”S¡‘±t·Í€Ø/æ6Î<’ýÁv@ïøAÝ1)‚ŒKb._š¬ž¡Å¢Û(•×›í™ÜüÔÜÞÌÊN.:]bP+ÞûȇÑÑ‘ÚãÕy 4yŸæJ. +RèCöÀÁÙ¬ c©éd~®7yøÄ7—¶/pþj(Ô>yê:ø>·W „:‰ôt&·Ê.ñbË8ËN3t„ðÚðèç`º¸Të力 Ð0\‹':NowrPZÐkÇn–/ÕÇOP|aÿá‹¿ý!ZL#@Á»¼/šTc¹Òv¾¼;l<ãr¸œEG‡GÐ[‡»IpëlI‹L r~ÑnÅ}>l²ÝÆ¡X”bÁÏ6fVÏî]~Ü wÄ¥P4ˆ¢Æê5Uo«‘~(5¯g–.KÑba–åÁzûÀy!/ÉeQ¤J{Ü +xÿ¡!ûð°{hÈm6ÒΩ[‘e’Ç ñ]NFóþP#žˆç§ËíP|¼p4>ªÇª$ 9fuQÌR. 5#‘q/ÈZ—ÀRa:œTžËP´ñ‡ :ÇäÀYƒ'‚f÷x�O ,‹•jæ…R*3Õq<@`¸ˆäã¥~sr{lîD©ºX(Ì®®-T§(6‰÷sÕ QkGÓ3™òºªO!HE£ŠRÄ,ˆ+xCwK<* þ‚aŠ8u=lrî²y½JHïEã³ÅêÎüö] Ájq}ëN=9�ørºïÍ“DGËÍÕc6QWT´9¸¡/|.ÁpƒRGDh=šŽ¹\"9·Oõ«@síî¡©¹à¹$9×ìî0lÆã–íVÖz+ÜÛn£&êt28ò AšÉ…"}.&Üáä2ﯴû;‚”çøD«»ZÝ„?Á˜¬Ûô Ù_ÇÁq¯AC`�µV8>«Gg“ùEYmÙì¨=»í4¦&7˜83îöµž,¯T:‡üÁîаOÖr¹®Ùä=°Ïh� ëÉþ4‚ÃÆz<|1ψK‚/K—×’…ÕÖàtº´¦E»^LÑ‚ÕfgׯÕ}xÔé +‚iu‡åÑV+i±fþÏsþ™†Gâ)‰P¾H,X™;Br1NJ·&=ÿر‹OvæÎ¨±qšK†ÔìâÌöÜÜ)Eº½’Ó-¢ÆÛÆ0Ž#z ÇT—‹ +ø³~9†'’ˆ/ewn0á0ÞÙQ##€8 (¸QjB |‚x!Yï.LÎm-nž^=|im÷ÂÎñ»&Neêk8«”§67Îòbƒˆ¢RPÔÃÕuÃ’O�¸Ì5âQQDǰ†F= ±¼ +2ÏfD¥Äò1¿šóႊ’Lš`Ò‚ZÕôz½±xâÔ=r ,Éyp,ŸS•X|2è0lÄp4Ò¨”æìF¶Çf¼ˆ.É5^,ñB$"¡PPþ_ÐQ`ɓمöàXoúøúîuøgèýNgyeãÜ?Ãå|h�7–â0¨Wæ¸8JÕiQΈAáA»Iz¼¸Øœ9³²}w<Ñ_]>ö¥¯}?ë[m +ÃÕÁS*+ç.?qúâSrpôÀ]#ŠEøh+“‘1ÈÚíš_ †~µŠ"~N.'ïr v'os &›h6òPµP[Tr&Ún§¬VÜj¬=ã1c9ð~œdr¢ +Ψ +†+WYˆæÆãù™Bk+œ™•ô(ävg{mëî€Þ´ÜFø Çdq<æõ€%drãp4Ƹw·æuù T‹è¥N)mÔšs[çrõÙ\}!V˜çÔ6N§ÂÁÊÆÊéÅåËØC4\nž¢’‚Xa¸Œ,—(:!KÙ|~œ$Cൽ€l•ãë4›·ß +6fÁFCÜz.y‘Ã'Eµ�ó[o,|àßyáßš˜? +°ËLu‡+Õ±ÞÎÜÌaMËi¢¨*þªªµI*o·)ÃCÆK¦JËéà-Æ;,ïðËbÆl‚Àô`°ÕÝ™[:is² jPã`>]ÒªéÂR¶´ª›©÷zkåê¼ÇHé©ñ +Œy.Ó/&LÈy#ð(ø;ªY,´Ó =¥r\:nBa©”ì/ÅÒUo +R‘+�ݽîê`|Çfãà2:Lêv +>D¡É°õÇâ-<òˆCAó„¹è×[�ˆR"ð@.]?sæ.€GN¨ç‹»…òN(ÔM¥±Ä(ÉdA„+B®˜›€¶vß:³ %Jcs‹÷Ì®^—Õ¦ÉD‚e�f÷¸¸}ûmûC4‡3D’90\8E ÍípüÜX!›(Ìé¯Ï/ERs_He'õDËKùÕh£ÜÝêŒÛ8tãô…'ï¼þã791Ãi( +®3h±’Ãó u»�QYšI9œ¨Äã(<€ª¤¥[½åãgnyá_ó‹åæa@]U«…£I;= +Å¥:Š €t†+ŠRÚØnvÁªw¬6faÕ+w{‚V‡juª·ø“ 2êrqÐ/¯Ž5VOnŸ/7VŽï¿ˆ”9!NŒj‘ÖâÚéîàNFQŸ¤——Od³£ð·ÀA{<AãY"g™4ê ÅlòYŒ <#ìîÑbö$ˆÆúÉôd"5äôúÆîÆD„`Ü;Úš8,,j¡ÖÜâ©j}` +$žœˆÇ'$±ähw0&²ï6›ËÎa¨ÉCÃv“ C¼ €^²oLDŠˆ;¯Š >àÓ4è„By)4Þ^ÁõÐd,à/nÃ^€SK$°‰ï¸ŸÓNЄîp�°ã&rB’‘¥$Ç%£ñîÅkOlºâñ")ŠàôLa,‰Éº•üLdÜxÊ•®¨‡A‡'íVJc‘PÎmûlÄ 9P>fã$,Üj£\ xÇ4âµÙ*€ràh<^•1ÜV‚ ã¬X„ÖËW—5½°sôÂìÊíÕúJo°;³z{n/‘Ÿå„L67PƒÅ[+sTá!cʼnÉ`š¶%Wkl xØlF½‘áR™òÜÖñëÇ/<ÒÛ½té¡+÷>Nö :I1Y’N‹J-’˜®vNöæ.é©I^H5š›ùúj0ÚQ´i›ÝÈ7úà>ö¹öp ›IНñê(ÁnÅôÉ›Íæi6 +z2•=|ôÂãï}æØ™ëéê|01à¥ÒêÖåÅÍ;•PÉGB‘^op°\]ÐõF6Û“åL8_šIƒž±;Œ3FÓs<š‘Þ€ƒ10PËå`¹¨{W&Èt$R]Z9–L·i>I÷'WϹ«;s²Ü;&‡º.·’OŸ:ÿ�΄,6Üm,N›oèÙ-œÏ£ù…ÜôÄÎÚÆù\öÛàûƒÑA&�»*噕õsà…Q_ˆf¡ã'|Z0¨çé°$gÆá0VÎXÍüŠ×#£^Å4âô¡"ÏÇÁ A¥Jãók'¦÷â¹¹ZkŠ2s+g&ãtÊFþ¿sØ ‹þæ §Ì&êñÈ&1Ð?ü¨yÌsñýû¬û÷™÷Ýf:`‡ªŽö‹YŽÒkÕ™;©*YâçÄœlêqPÚ‹Á^½³9?XýÒW¾»sìxF%PK¦£© ¸q-<Añ"óLliñvvXÌN§wØi@BP• f%9%Êœˆòb1ïÖ»+½‰íreêÚÕû.^HO4i!ŸÌ.'RµÖ¡Å“óçÆ¦NÃÝd¬{ðð9˜tc`-#(–žRµžäïxÝ)‚)‡bq(ã 0,ø¬hbVM‚Y;´{çèØº¢õÄh¶²Vï›Z¼°{ìþ3×?Pëï4ÚKÇo¿+œšEZªVg¹øbPÅ€‡ª¿íA›Ýè8Õ¹«ic`ð}¾ˆÝfd2ólÎjA@d¢hÒÈÏDÆë!1Œ499Íðq+‹)ZsnéÌ`â ÔF¥6AqaQNꡚ˘D¿Ût:S£ñX½¼ÐënÝzˆ„a~Ðgå ++—¡õúc[“»¢” ÊŠªÊJeãjÐHF¢Èh¥0óh·6+Ebк×-ÛÌ$`ZD/§’Æ~‰ôÆ×wO\Þ=y¯žš¥¸Š%–—O}þ‹_/dú í6†eR²X“å¶(7Üd†ê/ŒND›; åd3.;ãóÊ8â×”M‡�Øy6k1)»CCà&xÑÜvÉç õÇcÝë÷>át±$a¥¬j†3“éòb¶8¹0³ýø{>Þl�Ñ7:Û@‹±ô”+y„à£Zù]='ëÕ}ûF†‡¬#ÃnÜ‘fØØh}rïökª^A@ÈÞŸ'Ú©Â 5¾VjÏÓB"–+66dµ¡GúzlÀIù@°.É•Hx´ÚXT‚©D®!k —GRÀHÝîRÀù2LNVšàpq*eqH†Q]^,¢†º¬…ìÆÚÙ^M U¢é‰Jg·7}rqãâ±Ó÷Ž/íŲãÓ³‡žyáËhÔ@™¨T"‰¾¦Ëʨ?ÐÃݯ–êMI)Oiœê?AáCQYŽ/›×ÙÔˆ s{üp‚ROd監GüA˜—ô`l«X^`ùL·¿>6¹-‚KBü$K»M�5_ëñ„¼î ×!Ë\˜FHM«ùÕ¼XÌÊ*ÁNwæt¾±¡Eº(E|¡Fk9¯ãd„¤S‘ØX¦0Žd ø1åt°v9Y§ñ¢-ŒxU›±ÂÏÜÚ¹\©ÈyøòH²;½rve÷ÊúîÕ#×wŽ^ôçX +li¡ÆÚNqfI¦ŒÕd,¬·Åùp¨ê´Q˜×Oút—!Ð�éÓ<NÆjÆ:‰Lyò˜ q€ÔÔívÐ'i®’TŠE8¡ÑL” B¢œ‹ç&ÆçOl½¼uôúøêYœ1 w|ö¤¨ÕHè6KP)†Ëñ|ôù`bœãþ}§•Fܚ˷ɹ]<êå+ùÆÖ‘³¬?éÁ‚±Ül Ò†onLÊ´69Y–3§ö®¬me…a€…h|rrúÄÂâíñä¤ä¯4+cï{ÿ³±ƒ·Ýf·ÚH7 ‰/5Z»ZxÌ‹¨[‰ίÅF{e#³NÔâéA¹<µºzlzñ8B$ †´ŠÖå`¡Ò\<¼w÷©ËO°2þ\¾¾FñãTƒ†Ýˆñ^;“ŸË缨<<‚2L*¬žCãnwhÄĚ̴Q†Ín§›Á =ÄK…ÆV±¹®9—ê?úسÇÏÞt¹e-\ezj Ez€Û¨Oóze¿RéôŽp|Él¦çÕÆ³A~hÁ±D0ØÛ¸zýQN(‚’TC-Ik!Dtf¶¼¶¼{w(Öš™=xéÚcíÑ-—[5–G"#xR”ñ¾ñ©ƒvºŒˆìew*^_4™,×6ÉÎ`|såà¥#ç<rþ×Bñž ðb¦\_nB¨Z Ü.I%qÂ�j»•wÚE§˜*f¦4µºÿ6«iñ¸·ñ¾˜w»A*—[ß¹àrûÿå_&:YQ;¡È�ækÿ~¯Ë- ˜ê#Tš‹)z¥Üݜ޸О:-†úb°ËN–Ú×õ^"3ËÌ$s‹j¤ƒÑa‹ÝDu9D¯K²[i@Å¡aT‚ÓP<äBüà•ÕX•"‰ÂøÄòÙbsX_nŽîT[`¦ + Ÿ}Æ–‚�StœR’’í´çÏÝqm p’dD5%¥Œb‘[©}q‚Ž¥²ã¬”�±ÙA@1EdµÕ"°”ïll靸p5_]šÛ¸²süÍCwMÌëOަûÉXëϾt㱇‹áÑzgw~åj©r¸T9÷=ˆj±bÉDS’s0G†Œg‹Uqy"O¦'î¸|ó꽃iµ9ðQ )P«·×šÃ•Îq‚ÏCե˳€Õ8£˜A%`o¨38®V‡ðã·Tœ5�’•¢BÙÂÈ*—K‘Õbc=vtuûÂôâ)М~%uåâ½/}á«íÞ‚Í.r\ PTªƒiuº$QÈQTÔ.Û#Š·ÆŠ—+¥ÖÎÒîÝùÒÜÚÒá|ô“‹«{ó›çWßÓ™?מ9½°s}ýàÅCJåJuö‹¯~ÿ¡Ç>BàÁ€Ròû€`‡ZšRC<Á0p¬ „F† ¿¼ÿ6Ûð¯a$}I°'«õ|aÖ(sRA µE©è=-6áòÈ’šO&Úý-¨Rh¬ŒÎœÝ¼0»ue|õb®µ£FûÉøàÔÞ};G®±RžË…úz¦¼*§iÌëX4Ø(‡ú…5ßZÆæ…Y£bàøR…©dq¼ÒœÙ8rióèå½;î[Ø<[lsþNÅA¨bÁç¸\¬ +bµÙ=ÔŸ8™Ìβ"HtÞAU0VÐŒ ¥Ü +†ç’™%9P…™u¸xЉ:]¼Ãɰ|B 5ÒùÉRmþWÓë,)Õ[ýfo=‘™Ê–r•ù@¨–ˆ5Ž»caý(F㩉|m>ž„;¼\sºýÐ8ª;z±Tšþ²Ù$¯7Ž¢iÔ—ö álnâÂ¥›Áp=5•,-÷¦Nž¿úÔ=<?·y ³íúìñ½Ë¢œ‚Ë—G§î˜Z¼Vi +EûˆOõ¡êÙÛoTë«Æf+nÚ‡ÇÁ¡'ÕÞa°*ÖâÄäà9E'y¥,ªµ|qvbþT»›Hõ6óùªUÌÆé½¸ÕÊRlÞ¯uCzßã Øí¬¨”[›¢R5Îð)NÎúpMÓʥʌ¢æÆfŽ=÷P½¿›)ÍHj®eâáHóØé{{ß§æ—Oƒ±Ò‚}Ž+xÜŠ×ÍÚ̘yÄ´7°zd&â¶Û,#èÕB;m`t†/Ãõ£h(¨t¢:º»±wóØ…'ÇÎõ¨¶ÖÖv®œ»üøÔÌ‘;®>2³v*U[< Š)^^$b.œ½óÑÉ…“²V×cã¥æZ®¼¤F&12ýÏÓF†’ˆDÈm¬¤e *ÊËÑ_Še'¹ÁÎá‹ç®½;^èšs)èîíLeµÞ=>˜¹3_YC‰ Fh’ZeÄ|@ïcJh<Ÿüm’L{÷nÅ$(>ïöE0*gDѲ§q´A<ªaÆ“UúÖÆó±Îø‰‰…Û V,ÉJ®7¾•)(6’ÈÏ̬ÝqòÎG·NÜ—,ÍiÑ:Éj‚_ÜSC9œÖµÄˆE6ùCFK…ñh´ ºÑm¤â‡³�`z=ž”«ó¼`ìJ IPìuE«øµR¹¹0»v&SYÄÈÈÖÒ‘‡Þý¾H¤DQ‘öèñVÿD©ºŽM9Œç3$X¼çïkwVMÆ!³F†ªê¥Ëþ±r{‡cãW/ßöŽ«6; ½–«¬M\<{íéãß/¬xQ$´gžýÔÖÖi‡[ùç #š>K-±\ÉdÂPDéö6ŠõU‹•öz>ÌXo ú+Ñä”HRæâÕ‡î}×ûc±.êÊþj$1^¨,nßqÇõ§úS'9±Ê0YÅßt‡G{öí³ÂmÚ¬ +E\®Ðý.Ô+gRã`'-&°<ê‹-:]ŽÉ‚®ƒÑSõf¥µÑèfĪ(¶û»“G2Nì]¹ÿ‘´ëátïüÃWn>»qìÁù•Ë>úé¹µKP»”›Ù=rw4ݵ»·Wµ&òqÆiDj2RïnŠbÚí|xPR˹új¥¿;³zn|éd0V_Ú89:{4×\Í6Öôô´l°JQ7sµe==@(Ò>¸;½ŸªnaBÕéàLNбìÅgÂkMНr•á‹gØ[·G†Ö£Ù(Ɇ à¶îZع«?{{·›,ÁÔÇõ£—£¹A"?9·}-×ÚVc£þP ëòÊNªN—),jáQžÏCMŸ/ìr‰ÕÃM^(îßï1ÞÍ)‚”.VW5½íõv>iá8ü]ÂãakÅK×»|×£ëg²¹É`¨êõòæ—Ä,¸-³q0ǰ‰rm±\žK&û34ä×ãó&ÄÅD*X-BzÖlö‚¶ŸY;»¹wc|áD2?K±EÑ>þðcOÍÎr¸ý+kËÇCO`@ΑD¨Z›Õ‚•}·9À‡ÒTÚh(Z[ v·ê‘ú}7¹v÷£¢ì™š˜¹£5v"W^�0ŒÄÇ0,n3¶�íÎMÅL&œÀb‚PãØ,MF}¨~à€×å ǺKþèç¬f|ªÎÆ¢PµN,>ˆõ&4>¹¦ø³ÀY_ƒ}ŠT*…ÖØnwb·9ºžÊOõZ½¹¼rèâÒΩîÄz¦8Ï�’´ÁóFÂþ`[ÕªÆR!Çsi–CiÉ�ˆÿ,ðI‡ƒr:hP†áXwfù܉O¬ºÖŸ>´8·õõW¿uõžG´x'œž,w¥ŠËÅÆÖâæ•Ó›[?ßìmÜxèÿ?Iïý$Ùu^ þC¢M™ôù^>ï½7é½w••å½íꪮ¶ÕÝhFh�M4á ‚ hAO‰f$Q¤8´"9¢HI«‘VncµÚˆ™ýmo¶"**ÊdU¾{ïùÎwÎ{÷~Ÿæ bˆíæ+½3Á•ÓGoœ¾úêÜÖínw÷›üÓÏ|éû0ê£y*Je{:•[m4×î>ùüÎÙÛÝÅó3Wz‹ç2µ¥éåó‹ëW.]áîŸÈU–;÷ßyþÕÏ^}0µxÙËÎqR™ª’ÚB€æ0üQF”ê†Õfù'×c%ˆUÂQ‰º–bv$¹†ã>HOªVœ]<§YÕt¶ÕlÍçËK†;Çuš.ÒT8¯ÿì" ‘Hh8áG£Òø8°ÒE¦PÄ鞦}šñ6)keÍhU6$â@�û†�ó.+ZÎõ;ƒ¹³K×u³AÒvéx´ãŽ€F«l–ÍNAXTˆ„xÀ´‘°10ð}ˆQíl/m^íͺéy‚Ɇ#¼®”<·‹ã€Ž'Ý3ô&C§â�Ÿ”ÿŸ§´à˜zòxâı؉ãQð-Žê$6z‚FQÞñÇÂÑ0£öˆcð£G0l$D Bš¤L)©üBº¸&òV¾8Si®v†ûåöžíd¹�œc®2'('jšUÔb¦¸V¨ï¯mp5U¥.+åGgl‰ÑÀ¸H^,ƒÁNŒÃÀ“¤MRޤ•üü|½½3¿|asóðÖÝg—7ζ§.¿°±ÿìÅë¯î}ªÖZ5ªã¶êµÅË?c%_˜ŸY¹º±wgjñ¨ØXu3}Õ©rý§ï¿zóé—±ý9Õ$s«§/½rêÒK¥ÚêÂôöw¿÷gw¼b§zÅújw~fõìçßøÜ7þäëòóO}øÝ«×žÿðËßùø'¾àýü¢™œ/Ôvן¸|û“ûY±* ¹áÜYD1H‹Åe‚ö€y4ü…Á /3DÝÔôš,u³ãd¦U§Ä¤¤5;ƒ³ç®¾,(Ë)Ú^“WëéÓK·œô:Šª`¸CÅì囹Y€[ã1#QFÏ‚Ãæ*õ-A*B èùµ[í™3šÛ•IÔJ&Rœ*œàhÆä¥´ Eµ¨Y5^ÊÇ✠ä6Oߨԗ€ö•’ÐAú€!]’ê X I@�Z¢2BF÷†¥Æ¤uX.'rI‘YKM¯E#ÒäÅ0IÃjòbð‘°'át +S0Ôi «G;#"MzàÛ`€±3`¢P5.#ä(.eyrs ŽŒWÎäz‚œv“Ë›ÖåLeséü,/ÚŠâèv‘bÃîZ©yÅê‚4IJϦRÓ¡ ò¢Á0Ð$üøô¨¦„&Làû0ÌäÅ,'Ú½ÝÓ‡Ož=zªÖ[””›l,®e +ƒReÉOqb€PÓêºÞpÜá|y¾Ö^Wô#1Ò!W3 +Ž])”f¼tgT²ð6¢`nébwj;ãW†íáƒÖO™VináàúS/Ý{ñÍç_ÿôýW?yïå×Ïßxjy}ïþs»|ãÁüâ…Çï¼6·qgaóÉͽ{«—i¥?é6_xíƒÅËcx H±|V6ÚÙÚ~gæˆ3²˜úøkïZV $w\`œÛ{[gž;sõõ¹»¢”¹|éÎko¾ßîlV2:¤P¥ÅÖÔì•s×ÞlÏc„u÷îíþV("ŒZ¢GKRl©Ó:äŠn4f†{+[7ºÓgk½mѨ¢„ÏËeÕnV{;œRŠÃ<+$)G±60 ›6ÜöÌêÕg^ÿÊ`ᜪV,o*1:$ÂŒéFG÷»€eh´·± Ë™tvJ6:©‹†?G±À:úIr¤³XL£¨”ãwS¹¡¨T0µɛŒƒ…Æ pìè�ÑÄh3ÛÄhá¨Ãó'N$PÔõŸÃ∥»='3g&ºÝQŒv4¦Jšfp”Æ)ƒ—r©Üb®²)X“•L:ÓÒ‹¶Û«uKÍÓõî™GE)Gõ÷BÜÖÊ.˜ð(3>‹^˜&A‚Îpt¶ÕÙ"YW’³6@rgS÷{‚V4œv HVÞ‹ÅFX¡š-ldË;º=À0E4Ói³ba"Hà ‹e3 š¼ô@V+îDc|0H0´TA$:ÚIBº.:9·TÈv$)ij™Vsnjv55—+öu§j¦Û™Ê\½»4¿qXj¬ÎÎîÞxæõ…ë`&u½ÄÒ†ÊÌä¼êéýåæ2ÐÏ–ÙO'çwJÑZ(2>¡IÚÁÁ‚tX¾î¤–jíýÍ3Ïì]¼¿¼{ËËÌ(‚ÿ±ç^üé¯ÿzïü´XÎÖvJ½³»î¾ðùýóOÕÛKŽ“û“ï\x2)ÀÜiÎl®~º7{åèÖ;¹ÒRÚk¿øâ'ï<ÿN0"{O‚TÛ8uïÚÓï^}î3^~¹Õ\yíݯÖÛñ¸%dY¯5ºgO]üØÞ›]¾ŒÕÍ;/U–OŒºó$‚AE“�…âòÒú5YÌß¹uÿÃoý‰(h¡aø‹àÝÔÊþÑ«—ï}ºÖ9‹&¬§ï¿ùÔÇÞJfú“Aj|ŸãqÇ’¼ÐõZ¥ÎŸ¹ñÄí€@Ž{,øÑ„ŽKÄ!Ïr—QÄ\\9ÛŸÞ¶T1�ï1ÂGðt8Ö.LI–UF9¾f’ºÛÏ–×{ÃõÓ·íÌ4Žk…¼›ŽzžB*Ð ;ÚI;ª”F 6F9Z‰E°H„¨$Îd!©,N¥c ëe áZ³gO]znuÿÉÞòõdq+eÑ„¨ëÕ2ºõ÷ÈéóPLá¹|®´Ìð©ä¸$(!Ù„àGåûS‹‘Ñ~1W\rW•Š,•„ã +‰ê€|2™ÃY‘JÓ6 Í®Î윹½´qd»ítºã&{i¼¯ª9ŽñTåHƒ¡ÀŸ°“8ðV,!OàŠè±¨(óiŽrh–8Ïå€`&H‹á<–õµö½ör£µ2¸øé…KõÞn*ÛU´¬,û¦î;º¯Ê™Ñ³û�ͳ\0›Äq#‹‰8Ò“ŸšõN$ª&³‹™ÒªiwgÎì^«v·HÒªäZg¯Š³$î§³sÉìŒé¶e ›%àÊ“•ä"AzšS�h;3~jIÕšëë’[¯ÃÑ)ÅÊf²´Ù5ç³¥/;˰) +¶6ÏoŸ¾.É ³CR@}ùŠT +©p€°ÕÒÞzùÕw€—õW aÈ%ùJ¶¼•)¬XZîý/|åá+o‡ƒô‰ãP8$b=_;lÞFÅX˜X°ŽM7�i€”&h¿Þp!Ìï.Ÿ©Õã’€ b.&Ùh MBH“9)Á„s|²ÜÙ7¼YŘb„ÇXóÓ[û·’¹iŨz`–W02‹¡ËB2e (G`6…{<“µíðeêÓDJ‹ªëÔ—–VŽ Ô�iÃ-(®D�í‡)‘± +…épˆÇF-˜')1Àœp\Šå<�ÏoIJÅ%ÇoUš[Éì’aOuú‡~jEõn{V[ŒÇF•I°ê~$ê¢hQà’¢aÄT’–Q ß“ÿó ™£“ø°óº9ŠPŠÎZNß±[4åÆb"Áãc¨P9Ú‘Hâ:�-†jqHP "(\ Ñéì00i±tŠË8™ŠÅØ\q˜* `Q-E+ðBJ•sŽ‘—/¡$ÞÏfÛH„Ià*€·ª‚Îá„ÃL4“¤C†8fYB!Qámž¶¡HÀJ·£è5šNÒL +C- —.«9 +Ó¢abb±IâæÉññ“p$ˆ18'2jÊ®V +ó NOž„'ÆÉD"I²%‚Já¸MÓ +LKç:å“'£saîLoæâÂÖ™Õ+Àb�N„‰¡"Š£ì€*`\¢œu½¦ãµ�ò5É7ÔC`!xÒ4N®‡ƒ8HÄ Záe +#VfhÝË´8%â‚(¦œ:µqxtù®n�‘–Leæ[ó~z… læ H\ÄQ E–(¢é´$7y&‡Áª%g/î]¹ÿð®ÇaÃô ®„NaàC„‰Ð$Â2Ü'ôGE’y6å¸Mš±IB-Uæ•¥dvÎIM{Š”ˆèŽUwœ&x1X?9ÉndE +±¨œ€ãTmIðŽÊÈÄ€ "KS%OB –Ÿp|uAýs0Ä8*�2ÃQÞyUE˜ 0P\†ÄL“ƒ“°¥–²É)ÑQHFa"€Ðaˆ+–^²ãeŠb’ežq)\Aâ$Á8JÏe*ñp‰%H䇦=ðvá=>'q }O&PVca6ÖU±8`�3©?½«)98Æ2´‡c.[ "À:ơɱh$€Q¨69ªP�{H ¦k•lDwO˜ÇGA*<qb¤¥ƒ%Â!B,‘7 \ +à9.§juÛnú鞪UÃ!2ù4qâø$Åp,À³f2Ív £„c*'C!8a("G`)¹T·1µ;�\&bÁ‰…²%ÛFzT‰ÈËJ26¢z¯[Ÿ+$x"d’MË,L„âæä$²p\P€yQŠ8¦€À‰EH8F#°8- 1XwôB£2]©J±ŒCÛ@£‚?Ä—ŽÊJÄGC;ED8ár|EÓ:–Ý7Ìšàù,,È0#>Pq²Róý©ryÉvFw£†alŽs�ÔGÏÅF ( xDŒÇÈàd<„ID@!p©\8dŒ£ª5QILVpË5\outÈ5¢£m€WÉÉñ(cÍa˜”®åyÎTZ! Ës»gÏÞ¡3Äâa +‰ò2çƒA¡°‹P“cq•8°‹Ðx‚§Qž%D +—Ð † ß‚Hø,ǦGÏ©C$ãÀ,žÀÃlÀàXxâx,4I Ì‘¶*¦nÉ%‹çÏ^"$»x˜¬ÇÄDL`0À/8¸VËs¦PH%AŽˆ qôØGCÁI°. +xÇÇ4¡ œ Óј"Ø·À8LÀ²H'IÄ€£Gy²X?<vl™ÄU]ò[u5÷Â…+¶S +…©xLÀpƒfÒ,_"©T8ˆ˜’stæÆ;_ü^,!ô#c'O„1Fæ\]MºNVáKç¯ní]‚ar~ôP~ô\ž"užÓÑH:@aΉ|¦ ñ~N O‰š˜BHŒ¤qÅsj,c& 0™e\`’‹Bd,Ž‚Œ 9Uê@1 d¢ñ øÄñ�’!Ų.22:‚˜ª©b’ÆÕDkZ.WYF0ðŽ"íÏ|ôÛ´©Ba|l,Ü4•ÂC )ÂP„KûÙŒíI´#ኢ²í6‹Õe€¨X”WÔhùÉþ¨+ô8à„À1Ê€¾"–IÌ@ÊxÍ|ª•ˆ€ÒEF£P‰ÂdáCàÿ_::"1~òd,8Ÿ<?…èQ™GÆzô XB 3%àœOŽ…¡ì*j5íÖóISÑ+µž¤xIà¡¢£%F0H†"üø‰èñÇ&t2dD./°éD”ãIÝ7s)» «ùHGâž�¹Fb9;ŽCñ!Ð>žÂ“0@x(�Ï’¨ƒ#^,,ŒˆŽ)B�rüdà¤]†´,%Ï F,ÈMžDáˆ,jâd<8‰ÁQ@ž|$ˆð4'Ф*•”Õë5Y^@€A2S•RÓ÷2,''à‘H¸À4–;ÉtýĉÈÄX޲†è{ª/ÓŒ%²|rmmÉÏä£q<Â`äPM´¤kå3n!mo/ž{æ^§3?9ŸœˆNŒ‡9RT€<Ò]1(á(bÞ·d *ˆ†2‘õ¤ZÞºtzáü¹õ…A¥þ™¤k@lÈ@À<2Å8¸MÔlCÑUÉ6\޲4©À=á ˜'ÅR®RoMiZ2Ÿm±¬‰£<P”??v,4º—EŒÊÅ€©‹…P ~[ÕþÂü‚.)hœQU*p"/xmU*Ó†‘×´¼ $#a2gfhBT8§M,!€”ͳYžqVViªàé®f(¼hɲ@`�Z©Õ¥®ÈV¤PˆG¢K$¢Dà8„ +âàH‰†‘ˆ)ˆ¬½Tóög‹7»×¦_}ñÆÁî|Ú4hRF`ä>3ÀûÈøÉã‘(pÙQ.:™ 㔀3ž¬Ú’b2‚7Š(œ 04 ø‘æ8B”×Rpœ?>þØø‰cA�Çë§Žƒ‹<…'I�þxAbhÆÏ“K´)zhh~ŠÁ=‘õ#!ôä‰`8€R@ÃÄðD8,1OAšYn¾í¬Î—›u·˜Sú5ûòfãÞ•å½N§bµKnÊñtÅÁ1á䱉ÐD‹!&Ë{<©‘œŠlô“ͪm¬©¶eÊ<“¶…FQYë™/ÝÝyéÙƒû7–ž½³^+§''"“ãq‚ÕÓyÑ(—G=–õArº"çMdP”NϦ_zró¥{[ßùôåßüèŸÿòƒÏ}îîÎJ!ã2ŠÈÑ´" +Ûm<³[1gÛÉa#í+\Þµ%VŒG D4n‹b»’j[ëK/½új£ÓGP,AÁŒ�|ŪZ‡¦³£[sÇN°(šµ¬f!_Ê8x"ŽÅ‘D‘8¹SÎ_;:?ÕïÙ–½µµ˜Ë¥1”‚ R’<Žó€rc�/%�°à#o{ÕL$¢-”tl©péÔp®™êdä½aúù[ëæÔ{¯]|ýÙý{×v–‡µ¬c‘‚Dq(LÒ¨)9Ž8”мæsÓemPÖ—:ÖÅ%ç™ýÂ'ž\øâë{_~õô~ñ•ßüìKo?»wn{د ^"`SPŒaiW l2Ž�S]Ò¥vR¯XÜ\Õ\ŸJ/v²{K'ß¾v~þþ͵7Ÿ?ûñû×®žéWª9ÏÑE‹Çú‚"Lpp +N€QOÆ£‰0Š„ã:M,¥_ÍúŠ`²d#ë×r™´áeÌ™`O‚€…Â8[wÈPˆÏÍhÏŸ¯?qX¿¹÷Áç¿þ™ëï½²ùþsýß}ï‰øõ»úµgÞ}ùüþj¿àyÀ>DƒQ(8ÉA¡¼˜M¡s™èZ%qeI¿qºp´“»¼»}ؼ©õêÃ7ž|îÁÜ_ÿÙK÷ëO}û³çîí§K&…ÃA˜%Ž”(UÐXßJœí2—g…‡ç²¼°üɧo?ÙþÜÃÙŸçÎ?üæS?ÿæµ_~ëòÿøé‹ÿó?~ög_¿÷æSËïÕ‹I—L€hå\É(Ør;ïµ´³3æB]ªý¹Öµ7þöÀ½±WýÌÃÝßÿö[¿üÕ×¾ðþÓïmîLk" † Ž$¤ññè‰cc‰`Àçᬘ(ªˆÏ…|>2ÈKKMkµgΚo?·óöó/ÝÛýò;W~üƒw_{ñF³l/Í —ö×OÝÓŒ2 ےЮŸ›V\l<sX:?-¾t¥úóï=øÙ^úì³ËŸnøÛ¾ð¯÷¥þý{?þâùúåñõ«W\‡ÐȨ&!HT‘HŠ‹.ˆ§v“ßýìÙŸ}ÿ¹o}öÒ§žé}íãs?üâùßÿÅÿøðò>Øÿ§_¿ø7?¼ñÞ3•gÎærW+ú W¦,-+Ó\ZLô=d£ÌÞÙðß¼=óâÅòÃKù?zÿÒ¯ôú?ÿý·÷ówùÝ»ÿþ7oÿÿï_ÿáWï?<ª}óíS¿øÁ³ï>ØÉYJ4€€$l,O©X,F‚” 2b“‹êÚjêñõÜáŒqyÙ~áj÷¿üÔ¯ìðúão~ìFÞõ˜¬àdEcæÒø^ƒzrU}ÿnû»ïœýÎ;‡?ùÊ¿ÿñëÿóßþìw?ûľxþ¯ÿëSÿüÛOí“—OÏårÀA2’«ûIZ4Ò6ñÕri@ÝYR_9L~ûµµŸ|íÎ÷ß»ðõ7·þüóçÿþÏ?öïõ™ùÍÛ¿þþß~ïÚ¯ÿèæ«7çkî( Ãxó%½ª++iú¥SÚ;W“Ÿ½UøÎk¿ùÆÅÿó÷oüíÏ^üÓÏþúÛ—ÿá§÷ÿö‡wôþîO>Øþå7Îþ×Ïžºu*×ÊypEã4Såíž·Ño_z0øÑçÏ|óµÅ¯¿¾ò»¿ôËï=ýÇŸ>øÁ'·ÿãoßÿ_ÿñÃøË×÷Ý›ÿÇÞüÞç÷¦Â“ãñ¸Ýf¹ù¼Ð·â==tmš~î”ýô)ûå+ÅÎÿ³§¾ñæÊO¾~ýßþîK¿ýÓ~ÿ£ÿõo>ÿßxâüjea8({ªæl¯îȃ$µWÅŸ¦?w¯õ‹¯ýæÛ׿ûîö·?±õ“¯^û—ß¾ó‹oßüÞ»ÛÿíËÿû¯^ýõ×®|ã¹ÊçîdÏO €UdšŽGO>6C)6:—„.ö¸[kÖÃK¥Ï<3÷ÓoÝýÇ¿|íûɃ?üð¹?üèùŸ}xô³/üé'æ>}«ðø¼2•$Ó2>*'Ê,iúfqPomôÓs9f)ƒ^ÒŸ}ªýÇïžúáÎÿéç÷þ«¿ÿÉóóÓ‡¿øÖµ_|a÷o~ðø?ýòÙßýàú7?ÞÿäUÿ…óåfZGâ¬Èç9ÆÕµ3›.9åã†êS[êûæ[Ws`6þêOîþò;Wöµ£ÿë¿òÿË}ûíï|êâÃ'¶xœÁa.)ÉiÌ pßÅÖŠÄåiù¥såo¼ºùýOýñç.þÛ¯?ù¿þýÇû£?zÿÌûÏž^,¤5†ÇI %c)Wö=ž-ÊÈrA8šËÜ;UøØ™ä>±ùß¿ûÔïôÎ_\ÿÂsýï½µò“/]üÚ›;÷/TÏ-•Ú…² bJÌR¸ ¼Gjy+SsÜ‚DL{ä¹iûâ¬}cÙþÔÍÆß;üÕwžúþg/|ûÝÏ?¿þú•î«g«On¥·zj++Xlj-¸F]¦Ä²5º¢Ë%ñþéÒ×_Yþó÷Oÿåw®ýæû÷~ÿgûÇ_¾ýÓ¯^ýÙþé§Ïÿë/^úÕ—v¿ý°ðÂÙôRYd‘X<‚ÚZ9ï÷Þ¶¢e’]-±ìFoÏó?ʽyò•‡Ëÿö»wþé·oþî‡Oÿ_¾ü¯øìO¾qëk¯o|æùŵ©¤mƒáÔóm“çÓµÝv‡It)mÓÏl§^¼÷Â…æS;¹÷žèÿê›7òáo¾ºùÅggÞz¼u>¹\9•HÆ4 d&OB,ÂHḨ¢S±Ó¶ÏÎæ¦Ò×W;W}óúÔÛ·Þ¼½p¡o\ìiçûÖrÙI +’Jq"ÉÍ/óI‘MéRνZ*]±”²ÆmÔÜ‹3Ù£iûÍÇ›ßxuñ/¿qîþÂ_|ñè+f¿r¿÷ÊžýÜŠöp7·U‘l"Æ&0EÌXf"\`I˜âá¸GAMߪðzô³Ûæ+gÓ_¸ßÿýŸ?ûÿüÛ‡ÿð«—ó½û¾rîêre¦èi‚'4,Áá±83Ú×E4®i³3q£®-f®åž=¨|ù…õ¯¾qæí{sw÷ªsUC`(âP\Hû½Fm=åöTÖÐIªí›V7†âòŒöâÅö—^{üëëÅ'vËûCw×2:KÚ£r… ›¤ÒÀÈñžêÈ(fÓTÉPÊ–Xwøõ¦s´P¼¹Ùz|r8››/%ç²I°ŒMàIÉXŒ‰Dx†LS¨ +‡!$e!ئ™é\f§_<š÷žÜô>xvøýOŸþðÅå~på‡ï}÷ï¼¼ú᳟¹Ñ¼¶høL»Äj£ÒÇ„Gáv"ˆ®:É^ÊͲ±“8ÓU®Ìš·Wìï¼¾õ/õ™üí'ÿÛ×o}÷Ý‹¯Þœ»±[^íºÀ«rƶ;4å2´…%x…5º¹ZNfË:Õtø²B7a6gSÚbš½2Ÿº·7ui®Ð·Ùš&eDY§xa£a.0A� +ׄ¤€’ÉšÕ´ŠïÖ}¿éÚ…Í +tQáë¶èÑ S¼Ô*t%Ö®J‘rÙ‰›ñÛ$§TZ©xÅÕéåö°eÉkEíöZñTMz|1n˜Ù.+;u%¯-å̺ÆC@L@¤rL M�N38!¢£‰ÍËBË–J2›f7Jµyû›ÓŸ|bñÁÙÞ¹A%ò"B[jÞÏ.´‡—YÊפG*,&D3DMe%ST[…B5i–±ä¾ÂX2oÈ*ËH!«>9‰&ª$giÖ Eh’DÆ1%;çåKé + AIžiúv58ÍR(A¦x`(18)(Ɔ‚d @¢X2•]ÉVF[È”GÊ›’O&@š¦ Κ®/Ìw—ûÕaRs4F0ÏYòäX0¡X’áê’TÓ•*K“c¡àxøzCtÅw«`鬹ÒöV +{}ûâBîòJk³™™Éꃴ]³-$š8y2‹ŽÎ¶O°'£ÀoRt>›Y¬•VJé®B3®€×-¶$ãE 9Ýͼt}ïå»ç®lͯÖ+E’H‚DI–sQÔFP+u»ßè¯7Ïæ“3 +c®Î¬\¿|‡A°^<®xJ¦èUj™zÎÊ)”Š„(4¦-=PA°ÑˆŠ"ŽÄ§áBÄ@®'‚“èèöW”†ã–ÐÂaI—D„X0ŽÅh8ÂÁ1ž=±22©Œ³LÅb2°½Ñ0C"KX–^Uå&:Á©´ÜÉW±pÜ—¼¬]±›…‘iL *ÇPĦÉt(@ô¿Lûèð›$¢Ø²ãªIa(˜Ð(ÑÕÑY\<aјÅ0.o8|::‰‡Faº¥ÖëO›ÖTwpÚIÖ0\¤hG7…òFº°D3KºäMõ‚tl<s¼Ü4ÜÝšæG•µ2’OËf=S1rt('SqHÇ“Áõh;‰†8óD¡JÓy@S Ä‚ ]ä³@–„ÂB(2ju„¾nÔl§©k¥¤ßF[>FÚ0Ì¿âÅŠ$Wj:ÃnHbRVŠ(‘Œ'ŒbB°‰>†¹±˜„¡ÃØªš—¤´ªV’É)×k™z‰Á‘‘°°b:ˆÇ"8ŠŠÒµÓ …é±1øÄÉ8�Fä½;:¢‚A +Ç]–ô˜! BçôRð’ +N8Ü£Zy:*xþvD +jÈr9_ÚàÄj,nÇãJÑ]oà§f‚“t,¦×•ä¢j´¨i0lŠBM*‘°˜d)ªX¬ìö@VÛ(‘š�äp +ë«bx4V(;™…Tyµ2êH;û¨Û¸LSN»{ŠU/7,{L/g›^v-ÑNŒ“'ÇñxܘÇ>:91ŽÊj'UÞÉ–·{Ð{ò8E¥pPxì±Øø8FPÍœöÓ›†5ŒAV(¢ŽOŒKq´À<6ºK? EC4™º\VødpŠ2!‘¨J€åŽI£#K1ƼxÂyì#+µHò9^Lmo^îÎìaL’‘ГՒ¢×,»Û9Œ¡r<!3|ÖLvq6c~OIz¯Ù9<ºõF±¹> £0à‰E7»+êC’)À =ãq¤ +À‚¹(‘‘´)ÃŒ¨¨uQ,Dã”°˜Es%Íî{™YoàdÒqûÅʺ(5½ÎEÑèfë§“åm7»d¸}A*ô箈JF4Y/2BAsúœRǘÁLwМ]?u§“A*W¾4ÚàGg(~t„Ç6j½þžj¶³É*-Œ.“lCT†Ñ8 /ö†£t"!ËrIR]ŽE„xTPä*ÿèDƒ¤µ2åõle›š´ÐHàI±X¡H1ÙDBø|6"§RŒXÆ™R ªÓíÇ!>’E0ëWâø2Nfh¶È‹UÝê‡Âœp<KÐ%OÓ\§2ãÄÄ8¡i-^,Fb\’)¡D +’+«VOTFÛ2QÜÁ¨\0ªE`¡òNnCqæì̪•\99FËE¹%L±ŸŒC> gœHC99I“LÎv‡¶3@œQïјΈ Aéze�ËcÇb "bâ1 ÅüØèü¯ A�Qvh´F¶éLéîŒbOKÖ4ÁOžÀY¹ÍJµdzxþâsõÞ„“B)ßNNÛ©¹QÅ0£Í6Û̸驪b|2¡Qï]ª/´(±�£:/×5gNs®†P90ÿ¦3Hfuw +ÐKÒe½ççö¬ä:¯t :‹`>¸�Qm#¸Á*/W*²åÍRýT¾²ågÓ™ùƒ'½NËÕBçpfã‰å½§æ·ž(¶÷STµ™MMíÝŒc&F'´4o1S9ÕÕú—2•MŒò9©(ë-N¬“làS0{¢Öœ=¿søœ¤ÕÇD±¼ìj©u![>OóË@¨‡ÉG{ád8!OŽº0«£Ú¿¸GÒyõ-wè¦çqÆAH,"«ôd{ÔaÙLÎŒÅãÚÔàÀ´{`¼0(‘â«´Ð’Œ!+UT‡!ÑÐkšÙT'�ºŠ1åeVSùõtn5–%¥-kAî‚÷Š£^(nŽxñÜÔÅFõí •ª’Ù+Õ£€9Ó(È£Jh œ-šÉE^íhî,«vãˆ'S~v%°T´Hª,Ê]Ù#J ^q5k +$b€ÀÉ�Áš¬µRù5FhŽj¶hpUѸ˜íıà±cáãcdIÉZÏp†œX¹hDÅ2BuÁǨx&žTõ/wKÕSÅÚ¦áö6ÉÉe+5DŸ—K¢Ö µV2;WïÒœvVD£‰Ó9”HS|!†gT!Kÿ¹‡?–0¸/[Sfr¡1¸¼zúaoñf‚L£¨“÷««GqÜ ÃNöqª¢Z³Ùú~¶u [Qcµü«Te³%¨uAmHf7YXõ²s´˜³’½Ó—_X?÷dcx©nkÞÀ$H»µµ¾w̘¨VKÍýJ÷¨5÷x¹w(;Ó]pÓ³‹›wŠõíhÌH¦Wwî̬\íÍ]Ù:|N÷ç�‰üJóaLv~íÉÙ•§ÃÛÉòNd1Ò“õ’h6Ç\8"îÒŒÃ]ö²ÙòJê²QóVjðCcúhzåf¶²e¸³@h)fÆlQHFÏð† /Hælv³þüÒešIGã`•ÞÊÕÁÌ +æÉÕ#1£\Ùòüa "'ðlö02oú«^aW2çâH*“={á©ø¨²3qñ€B«»ëç^áÅÆÕÇ|ñ«?(UWÇB8nŠF¿¾puf÷éÖüußBF¶´B#’ÇÆI”ÊÀ8àÕf¡vÆI…C*×D©b*Äw„`Lã�„’k…ÖùÇŽÃ(‚ñ„‡€IKEㄦo!UÜ :ã#}’©œŸßˆWd¢XÃz÷ÒÌæ]V)¸©©\m½ÒÚ®÷vÓÅEÍnÉ”Œz}pVmÔ6W®ÛÉårëB¹sÁòÀ0ðŠÒ> )ai¡"è ²æ(¾¥;³Ý™KéÓèhïñPw²Ùg¥¦â̘éyÅl,\Ü=û”áõ°QUùPÂÍéóÃí{ffÙñ»ûo¼óåæp;N8ŒÜ.6Û3×K7J-œra–âr$›C(‡óqÂôö`éæÊîsÕîYAï€ÔÙœºÀ) ŒÉÉÖLµÁÉ®ÊÆ�ð•›™ Q˜ò²ÝTq`ú}˜ÈâLM5†éÂêöé'vÏ<9 ÃQ‰š½ÁõÅçíÜiZl±\áþÇ>W®mÄa°âÂÆû/¿ÿÕVï«Þ,PºÑyó-oj"($°¬æ,ekçz·7÷_¨uÏ3\v0{P(/"Lµ¹ë–¶ôç¯L/\–F…òŠ…ÚöhaK6zª;+èS´Ð.ÕÏÌ,]A°$Ê€¢es ™Ñ¦Vº4ÛÖÞÍϼÉ+ŒÌ¸©e7 ð‘š[j„©ó^fel‚D ÛöòKÙêV¥»x)�.}nzáà± +äzÃßÌbI¾ŽÓÕñI>ìߺõ’iÖ?ú‘ÉÉ §Òvr;óàêkåæ©HT½~ûu79ƒP÷r?„šcqÒÍ©Goo>Ðú™½ëÁ6P\ºÕrS³µÎNkp¦=s.][•R¹¶ZíLŽ×ª‚Ñ ¸*H¬‚Þ3“óÅæ-€ZÔv¾v¶>}³³t³48Ïk5ßímï?,Θþl¶º³´yûÒÕ/Ý~s°xÙKNO özÓûºÕÉ–×Û³—²ÕS•Ö©åÍ[û—d*Ãngaù†áÍ0b•K8“JŒ[Vr™WššQ,JfÆ=Ó›IA¶gsЙ{|q÷€IËŸóK›K»·ÖÏ=_ì_>)ЏbëN»ÔÙŽ"œêÔh©Î«ý\u']ÞTì>ÅD€"éŒb´%£Â›Á\Г+nv-™[B‰Q7«beY³¼œu³Ãæü…Lm-[Y+Ôvòåu”p=º™e7VyàäÖüUÃ/5O[Éa’ëîÜ‘îÍZþ¬¨7«CóåTf š‹4›[Z¿róÙw÷®<œÙ¼Uë_°¼Ç¥Ïœ¹sï¹÷¢°…’I/=ۻܙ»Üš½Ðœ="íÆÍ—––.`˜C³éÆÌ…¹Í{Õ;ÍéÇûK÷8¹;”®#–“žw²Ëfz7Ú@üd*Û™ÒÞØ8—@üT~•ákã“èD€› 4æCïE£Òñ1 _y©NPW¢ØJ$n*Û=x>z%|€Iº�Ò4P\Nz±Pß±,¹•ùý|e#,Mo”�åîÞÛܦ98k§’Zœîuç/E€¨£Õéj§;ÃÅöa¾±—**Z£X]ÕíŽé³õ½T}Gñ¦©Z,o/l=egg0Ú«÷Îä+ÓógÏ=³´sËĮ́juqþÜpᬠ—ò¥¥W^~yíô3‹»÷ªý3º™»|éÉó—žE@€¾jŠÕÈTöt™æk¹Üܧ_÷óC”ô³¥ 3µlç6kÓ—Î\{miçI?¹°öþìÆ5N¯z¥5Õ_aµ™ZËTêSG¢Þ‘•ü'>8!Ž:(™&ù%68µÉðÅRe»ÑÞÛÞ=š]¹H M^íBŽc>B% ¯?³vcD›Œ—).ZÛéòjµ»ïÖ"QÙ|c'UZƒ1—W«éêV±}®Ø¹Ø™»SjŸÓ¡ •¯Þ|xxô¬¨Õ¸¢Ø0µî™TaÍö§€‚eùìâê•å+©ÜÐð{�í^j¦T[>¼ðìæÎ-à4£3\<Z:õ¤[\¬)ÁœòõâÑýRi†dYT»§JÍ-?=ÂÓ¦Â;”e¥†`váÒ©«Ÿ;}?Û>È·ö²õS¼:œª@ÇNÏœã…r"Ì»‡lhmŠ0ìŽálˆRÒØÙ¼Øå¥žå¹™5àËBQЧ€k`Øü¨€|\3@°yÕêûÙ¥Qt(#å)Š9I©{™YŒ²ÞòXªéâ†âÆ@òÅ-�Fÿ\£Iq¦.†TžËuzª^ãø ºÙÍÛ`þWO=³rêùöÂUÑj¡¤Û›=O±@Ò¸£WªÑÎóåUA”ãºÍdºQªÍ¥ŠófrȦær…YËë€$ åG}+ìe©nßɬø#YôrSnhzùòWw/=tò«~~ethÚn)JyeåâÒúUÀ´@ç—;—Så½B÷2à +hјœIöÏ^|ªÔX91ŽâtÐK®¹ïæV@h§Ò3íæú;o}ðÂËŸ‰&\KÒ|ÓJÍlÜÛ{üýµ{‚Ü8sææ§>÷ÍJcx4V2 +Ð3Íáã«ç^«–@-Ø¢ä4żep&GÐ9Aj¤±ÓÎÁÍt~v~á¼íx¥¼Œ%Ã~SnT›šÙÖ¬Žî ©ÜŸ>7·r-™[%™Qã¤by%™ž¦ÁªùK ]{~qSÒ»`‰MH– *ûÈôI€e{!U9“,íÐ|‰ ’ÍþÖÒîUѨƒÄUZ¨æëûàO’é9]oŽêƒ‘z:;‡áé`P›à@N…uÏä +»ÕÆEQnËËùâ:’°cQHýÉ&©=/³ŽáYÙìˆzÄš/�‰ÎÉMÉœBé„y8íKj9«‚RÎTÖüܲ“\¬u.U§.3Z#†h^~ÞH £ `òÀ¦qÀÍÕvts +¼Œ“*(fÖÚ»µþéTiYsœ^GÙÎåS…•\upè’ÖÕf&7W¨,9éép\f¹¤›êáŒ!¾j4gPl�k9œÅ¡„-ë}AkEaAÒóÉÒbcê`vívñZ’ ÑVüRoö)€uêµî©æ`·ÑßãøËø/o"H(ð³ë»wưýdTœš1ÀGSl*¦�o˜^·Xšm6—÷N_Ïæ§!ÄÕíyÓ]Öí¡¨·e�üf{3ÃùË#„c)'»]ì]õK§twÚðçH~TðmóF¥¾Ì2„ú$[*ÕO¯ì<=5w±Ö©s¡ÞXyë/†ç`"ï7sƒlãT©{�&#’sÓ{_ý£Ÿ<ñü;@¬ï)Ó~n«Ô:Ì”7LwJ7š§vo=zH%@¤[ää–áÌj`ª(žI&ûÓ‡ŸGÈB‚ÈGâV8¢òb±T_›[»Œ‘Çåe¥îø3ÃÅ+³(¶Š(“VS‹W¶pò$99Éób³5u)WÚ”.‚å]§ÿÚï=÷ĉ0ðÑD† k©ôj&³b=ŽIáÓBÁ55«Es%NíblÈìtaÇÏlxÙ%0ç@yÚ©iqT¿Ž3yŒÎ3R=]X®ÞÔ½©É ®‡W´XJ—WÀ(@¶ÅHTêºÉ+e@S–?“,o”»çúK·w/¼Ð˜>‹RI^.Œà• 8š«`TÈN�Q„´·|VÒ€ +… ð†7/™Ó”Pb…ìÖ©ë²^¥¹,ˆS` +�ÂY.W(-í>Zì¥eµÁrE ÞR…9'3„QëQaç‚Û‘¨ÀIE×ï´»ë–Ûž˜dÇ&¹pLÇèœéÂbhC3«¹êâÌÒ…ÁòQº¼!:P)ªÑ{T‚q¤ò`þêòîs²³…üÉ€èySnz&Ž�¢ÀËGb&AWtwÁL/ƒ¨I FwúˆÈènp2º€¥Zë0_>Oø0šòrk@t=º«`ÀˆÅGUàöŸê÷IÚÕÌN±¾Óœ:t³‹ "´"Ðcî^±´œ@MÙh˜©E‰ÓË7Òå(ì…B’cwºÓ§ :EÑEQë¨ö#4½Ô|³wè§ç0Ì^^<×ïn0´Á +Jz†7,_™]»‰“9¶¢1ÄÓ– +‡e2ÂQðšQÇ+ݬ§SŠôƒAA1úéâ^2ÃA60AÀ1™£\F¨Ñ|£ò€¢Ýô´jts•S¨‘ÍTcêØ1Í™ŽB*©,—+¢;}^m+æ° +4Ãì•Öð‚ 7'ƒ4'”0*…P)ÞlaL&ò,WHåòõmšÏÊZ¥ÖÝw²fjÆÊ“åyÈ�´µ\L$¦²| XTytR£ x�Úku`NaÂ'ù2„$ ”5`T»`h_WØ_¸G,ŽÏ5{§µ] 34³ŸÌ,æk›À¡RQVª€ØÔµ¶l&Ì%p§œrl»m9p” +EÈ@˜Ÿ a4 <—•^¤™Gš³ýÙù30f€Ð£¥ +Á—x¹&«mN¨D¢¢¬’ÙiÃi¹Éžbua<Š�Wî–*[¦?вªa˜‰ê4SÓ…/J,›Ù9}ÅÝ“'‘hTI`žjts×ús7káÄ8Œ(`9‚aþQ ÅŽÍijËO/ÊFG” +©ì€f]”ÐA˜`TNÖ:nrV·ÀN -W˜/Ô6ÁjŠFQÚÁ¨ )Ql‚—!ˆ-pùæÔéÚÔŒÌ-„“Y`ëâQyué\¯³Ê±®¤äüt¿X_éÍŸ +-QÇÆ©`HbÈ<GçOÇ*€KkÝÝêA>9É¢˜ŸÌ.éVÿø x|lT!\°¦5u{¦P?g¥wÌÔ +#dLc…Ãe@Hrjƒâ{bhŒLi<.&³ó©ü†Ÿ^òd@˜HFp¬é&Pd·Jç°>uAwfE¥mzÓœ\æ¥\µ¾Þèí#¤“ ìé�·¸}øÌ¹k¯L\n=kÀ„NKÉPDŽ'’€»,wfçôÝÞpÏòûý¹s$SˆB�Ð!¬X×pÙû¹8•ãØd¥º`»m’â Úb„ªªt³O1™ñI’ÉZªKÀå™]åCqÁœbi ¤’±±øØX4f€‡±4Bça"–•Ämßé*j9æµ£X3À,8™åî…€V½¾œÊõ¡„’f21²à$¨›Ë“AƲÛ4“Ÿ`ÂQ ! +œÔËvª3Ùâ:H8îÕ¦ÓUÉѸN°%I|•`‘Ûï*•—¡„Œ¸� ÏñEÇíGlT(K€!S©8â"£F?~jÆOÍÆ!½7{a÷èÅtuLÅJ''I7,«0‹©•祶›ZäÅÒèL\ŒgYf~?“é0´ÉËù8â1BÝM-ðBÀ3£ú!L&;[mn�6‡ÅÉIæäIE’¶7g:30lFˆe†Í¡ ;äAhKZ•)¤u’Îå'ìD‘@¤›}Ù)R’oá@}%t@A(îÙFi†«ª60°;Š5ˆ£j(J¡ð,eAÌ:ÇÉMàíÔ0ƒÍéKŒÔÇ$NÈ*+5¶–6¯îÞH)±Tíîö—ÌÌüD˜¥è‚ŸÞ•–f D½!iÇíu¦ÏÁˆ +ó†;©ž)6$½Ou„ȨMú4eDFQKT:nj¹?{¹Ñ=Ö�„öd¥Ù20_4_¬õö›Ã« =Éz[M†#2Œ˜ñ„É–7WퟯôÏÔ—’å½Y�ÖäÊVÿÐô†€"xˈ YŸzÔÓ¾•I÷Î=¾žK8]¤¸ +ðANrÙËl‹jÈK©ZŸåë¬P×¬ð‚‰ sâĨiW¹¶Á9l!ˆ+ˆ‚ÎÆ�HÂ"+ùÓÙâLV£ì8©E›¢˜ÚdP8q"1>|~l!)ßÏÎ7.=ùÞÜÖ]üÄùzsÃr˜ùkTlŒ.i,P2˜7 FyFõÆõÉ€pâ$ñà·$é‰B’"$Qôx1_82ªé}ìXì±ÇÂÁ�Kâ£~XÑ +“8é…#Z,j3"ÊÀ9zãEØièÄItbœ¦CGçUQÔå®é,2b+ޏ1Èdø +Ng!Ô”%Èm?½š*n+N?WOŽd¢8ðËi‚UòqÒs‚Z'h7ÅãÃQ._Y=£¹Ýž»Y7qBÑ”´¦&Ú¬Lw³îÔÑKµÙs´ÖâAVk‚”K +Öªí3g^?¸øFsúæ¨PX\6¶¤wp*°ÇËVêå+û¶·ˆ`^<Æ©* «'ÀGKN„pLåÔV¹uÆòçX±Pnn8éu�³!xZ1ÙÊi/·&JQrË[·Z3P&CI5ÞPR“SáÙbu¤“¶Ý*·wµ«šs‚6 …ЬեåîÔ>5:Ù—If—Ó…U/3f%³@ OLÒ$‘Q¤j$B¿–�¬ˆgLw–f*²Òá„Z8ª»þ¬(ÕB!N8SR9¿°™«ì’Lp)¸°fŸÊsTù°Œ˜`D±¸Ša.Cûãˆ(ä<¿£ê79Ìï¨!E”…¬®Ö€˜ŒÇu@ݼX§™BÀyb‚PÔ:Ö'&X\@~̨ï‚ù¡˜„L³â§†á¨ú_Fµþ¨H0Q€´ 7>æ +3S3‡ Ý;Ž‚�EàYõ£aüóãÇc‘°‹ê™K<zl*ƒä‹Ó’«‰Np5Q�ߌ +¬P±Ýa£uØš¾¦¥æÂ°ˆ¨8YˆÆGÅ] Ê-U·Ö4¦¯ñj3„' ¢&S²Ñ4’³’ 2c‡á‹m’„„c"Ÿ¢ZÕZ2»�£šœœdöU³EP€35`–ýÜìòúõ¥Í'ôäj,n‘„ǰѶ½yÕ˜–õ¡›Ý”~þWTåQ?¯@…`™å«ñ¸MYß1ÜQÍg–K«‹$“^D ·JÍ3ÙúhLu—¤l¾²"õ¤ˆF¿9¼8¿ù ¯j÷ËÀ㔋ÀÃ.Fâ+´µƒåÍ[;gž®^÷rK0¤zNsyíJ¾¸ƒäQ[ºˆ„`IEk±tžÄœP·¬F£sš« èÌ›A³UŒ(€Q€5¢¥TÚ¨4÷DüFfƒ£Ãä*õ ”�3Y�xô)”5ù£jù8C9ãдÉÍ+f%’€d@åäél�y¢® ÔHº„>ªF¨(µâ‚�Ïà_é�EQÈoJÐišMºþ´ãÍ‚)ýÈcÑ`H3?>Á‚r¶c à +À(fdÕXDE?3ÁçÀ¨5Ê [ÑÚdbÚc'àÉI€„f³€ÆÓùÍÓ6>>õÿ³÷¦Ë$YºØè²«2¹ ö={�Ü@pÍÉÜ÷êL&ÈÌd—l&™UÕc3=Ò̵;×ì^ÉL2™63™þH¦ù£—˜Ð#Iç;à°;Á¼]I€èª.Òw?~ÎwÎùüø›±§_…#Z®X™´Õ²ñ d=ÑœõÕ?n<þ3ΊÓ^1œ»ÕùWYíþXlz4¤»æÃæÝÙúËxÒÈæ½\iQX•Y|‰•B“)²›Â&@Ž#ŠH¤+•ÅÕwëÏOT÷Qª°KÔ¨›„—iÛuïºÓÜù74æd'#4kå| +'[XŽÆŒ\¡QkÕêÊâI6??JÝŽ( ³\Ù˜£Úm¾°HSŒóJÜMÛn¦³3JÜ&!§ÙÉ•–Ëúýé…Å;ó9TÍT™´ýVëÏ$fEm1™›ŸJÌÆ’³¹âÒ\ƒàýy¾ Tðûãúƒw«ÍmÕ\ŸJV K8ÎýÅÆ+ü3ÊT#ä–L7r¥H·‡3£c9Ûj®Ý}StÔ4ˆ™eùðÙO_üžñP9—›ÛþðgR€¤N3ù¥|ñŽS{áμСª†B˽7ÛxÏToå&£N2»D°¬®gRn!ãšbñùG¦÷p2æÞ-¦r‹ÑĬ’ª{³¯ŠFS¶qgi±ÅåqÔ[·ÃÃ)%1É-( ot4G+Ë~²°ú¾±öc¡¼’ÎÔIØÈÄ“šÍî†'B~Éœþafõp‚G5'Be¤Rny~öéøx +iëï™ÔB&3#§/n#ùÅ!_,×ëK¯ïÞûp÷Áîú£ýjý9YÿL¶^‘;ñËKwvŸ¾þçͧ·´ñGB,„PÐCMd\Í|à̰ÿÁôÞÞù´¾yäTŸDb*] êä<N§àš5éšnmüðöŸßüɦ„pV£ZRç3ä«jwé—©ÂÊÂêþŸóå»äª7›¯§gFn„ÜÞ¨C¾y>¿ºrç`©y”-¬ˆ)¢T^#Å-jÆâ.ÞÙ…×O^ÿYI̦’Ó¥ò +AýLa‰|(¹ÂR©Œ€¡p޹ëö_ïþûléîÈx1.å +3Ž{Ÿd€ù›$´¯?ü§—.àl!É¥Õ×K«¿'è[yix¯ªmfò+´`GFÓ8?EoŽçGG³±x5‘ièÎËÙÆ¾$…BÙX¬¢ªuB,ñ„žHyàKÅ;¥R“–�˜*q·DîpÂK$«´¾HB&"v.7]›}PÖ \•‹™™—ó‹Ûdâã‰i%¦§¦V©1—LjåÒ<Iø\ýÅüâÛ²ØLfoç&BÙLÒ̦=R ñ„›ÎÌëÆ=Ã~”HN“}üþ{¥T¬/¯üËUGF3dã&"N^<ª|ZyðGÓÞ˜šÌÏV×ïn¾'oqèw±‘±âø¤™Ì©Ö+·ú:&ìÚòÓ§'·o%~÷]dt´˜É¯ÚÓ/”¸C«8™ö²ù9aÞ15ò@Um6…£1D2éºî£Ù…ßk=›Ÿæ]oöa¾\§¾ÓH&SXÎeýnº0«Š¦å=«˜O*ÖsB›„Hh•iÖ=wæ÷¤‚-»3OË«®¿(ãSÆxXMgfÝÚ£Š¸3=ójyã(¯‘-^S2sS¤ÝLi)•_“QÞ¨O¤Ò48äv”"Ù&‰%t11‘ÆÍ¨âèÆãrå¾*6S¹¥ð¤‘ÍÕ•äôø¤žÊ¯¡ö3òàHÆpÊÌx’D¨Pœ'Å›ÎÍæÔ‚¶Y±{õסHå6Î@TÉ©‰§ÈÓŸ+‹ õreuµùaváMÅh¦S.¹càÉ/OÙ£¡òTÔ"õ¨OÈßMO„r“婘“/5uûÅø„‰šñ¤—F<a><‘N•È-"”XªÜ%‡ˆÀ-©”xr†<r—¦²‹Â|¼¸ö‘ÆŸ°ãUzöhaþq"®G&+¤“ ;ÅÿLŒ'rÉòƒæËÿõù?µÊüDXk“Q·¤‘ÍÆ”¡˜œÌZÎF¹¼«ô¶¡³ +¨\‡b‡'räâe²Ku½PÙL¤—ÇÆr¨Ÿ6‘SK³…bý»[ññjyÏ…÷lzaK³žŽŽ‹ß}'ÌV, B—½êCÃ~JZ72·‹VS.?]V—¼Úã<¹´2¦¬œJ:š¸c9«3OIÛ¨Ú²ª/ÄSæŽÏ+ær £æŠ3„¸J8¢wb=L$çP‡§Ò´kϼú»'oþÉ{MS_T4‰ +‰\ÒÆk±T=_ºk{O«sÏ„Ñt܇ºý(wRùE…Tq¹é̶„÷’l!“\a¹P©ÈIƒ\›˜2#@ýZ¾¥JeBÎ"—_‹'Æ'è dzž2š˜£[JâA®¼QÔî‡cö÷#é[£©‰ÉR¡°ˆ›é¤Ik³b=2¼gEý~<[EÔHÌHT.-‘ý"6§Óïj³¯Ÿ½ú‡é¹W„÷*Å9Z†¤úpÊ*—üª7ýÃýÇ?«ú“©¨76–Ÿš“mŒiÉ…r3[\3œg†CÕGFÒ““j*SKf¦C“•X²F®.9˜šñȽ"Wtx5ä“©¹Ln^˜ä,?Ç‘¦•R¶>?ó$Ÿõhº''ЍÞ.åÆÇŠÑˆjiÙ‡wVŸO„Pçk¤gÉe¦á%í4‹‰êì+šÍÑ‘t&=KšØLv>unߎßú~2›vÅÕHÔž˜Ð& NLŠIrq¦›M¢82’/ä«w¶IMF*ôëðHI‰ÏdsË4##…¹Ùÿá?ÿÓÓ¾ÿ>qëV)•+q+2UBšvC¤SU’êð$ùŒn&SKgªÅò¼0VË•ålnÖ•/’!ä‚ +N"åFm*ZI&ít\‚hÌNgjº¹9»¸ÕXkÍ.ýPÖ×Ò9ÿ™É)m"\&w8›]He–r%‚Ó›$©ìÎ,‹"ŠØX;tç>83ï o+W¢g“I/“›%#N?T§ßšîkU{@ÿ/?#ÃIeJh*Ác¡‰¦õ*WX'ýfºÏûÅ”R-çhM)‰š’œË–Hة܊í>·gS$)ûéÓ?Ê ‚¹òf¦„“ëMw³TYŽÅÉË˪•U·ú,ŽÓÏIæÃòƒÒd×Ri;<YHg\2v©ugdxd¬<©tòŸÒº#”k‰ä K*ÛH¤ÈÀ•GÇËéÜòlc§:û2“><þ?´þ>_I¤êéÂr$^÷MeæÂÐ{Zq¹b“@<jŽå¿¿¥Ü¾)–H‘¢žY´‡–q/›¡R_z'î•GFbc#)Ò*ñ4½^ƒtK¡´:±nßNݽ»Më”Ì%¹x#£ÅHX˦<S_¡oøÝw±ï¾ÇbiűÑÒðíÌ]qŠ…5¡Ý%«=<’Ïš"TFX7¯MNšÑ¨1;}occ'¯ŽŽVò¥ûpôo2jGµ°bßÏÐhLVŠ…·öDpŽ2…qL>“qÈxÍ6>¸Óo3ùå\~1…+·†Ã£ÙÈ”•HÍ›L£Oê¨,”™Î—Ó9roó¥ÅpÌ /'Ç'™¨* +-êB2åäq"öªS}ŒãiróôªÎôÝyD� õϵ5Ó}Py•.4Æp—JNª$%=ZJ™49>K5äÑBEê`–¼¤$Êé\~!Ÿ_$›hÛ÷rù:Î#‹X³‹»¦÷{U<°œÇélƒÌ“Z˜›™yލñTÍ©½2½—ô,êE$f§ ˆ¦³‹©Ô,éáI7ñh©Ž‡´‘Ñìd¤\¾ŸÉÏÝI…&´’öÀp <<·¼äŽqyÆXÜ£GN—Ô kæÅÊ‚!„ci9;ÖêßýýÿðüÕ!ù} Ò]¥;éÂJ<=[!€á<œš2³Ùª7óxl¼46^ µC@(‘YÖ¬Wvmkd$SÊÎÝ_ÿC\±H&"0Œ‰)×›»ùøDÓïߎ¦ãvB±i9Ó°ö&puk8Uætç©Á‘‘\,êQïhTi(2iœRŵ«ÏæwÆÇKá AÿÄc4Î÷H˜£SÁñ‰2ùt„£¾û.:>^VâÕry¬[>ߘ‚ÜÎTó…Õhœ<¸õTn•þIæ–'¢ÖĤ†pt~‘pQ<5“/¬é&9Èä_$Sù§m£¾øÞ©ýKÌG¢ÓáH-¦Ì…´‰Iƒà„Bp";_,¯€°¡ï't jzÚ›ý¡Xi¸ÒS&H€Óɤ€ÙM9…Ê¢îÞ_\{?]›BrÍ% YÈÏÌן®ÞÝ©Öß$²uj¯hkÙÌ4¡#¥åÂ\6ãò6ŽŒIZJ‘lÊL+ŠÏ“e·Ìri1“™.”–™z,9GV8™£—ŒDE¾0Oï©Û÷ .æ‹+$�ùbC˜±$¹6aàZ½eM¿ iÉäïð¤FfaÒ +"•XTïÓ·%23ª±Šˆßý.L +Ðvžä‹Kä�Ž…HdIíÜÙ<¸{ï# mT1ªÓÏé I¦s3ã%Þô“õ‡Oßþ#9ËÔ»…¥„§'<eœr-d³³ºug‚ýJ^}ˤ~cqBw¥ÑÑŒB’ŸžIº›Œ9ñ4AŽ;†û$Ígj“[Q ;j‘†)–-o¤RKHÂóyÆF³S“æÛÊ$-ÉÒJuþ;·µõãþü_ÿ_³õíï¿O‘6£F†³ÌH¿…BÆõF«±ú®�Buics_SSÎØ„‹8±ÔŒéÞñûŸÿãÿÿ Âa|:ªX]¶½ßJMBZ,$H‰Ô4õ¢P øú€ÖB$Jƒ¿T(/eqœÊ2¹{¡I+•]-kOUíI(l‚t1¢ŠI¸HÕ6Iç®È•–¢qwJA�mºþCQ£ï§ "cj§Ó´^è‘HuA8›O—Ôr¾¼œJy¹´]*Tó2dÈÝLÏÿàxOcŠŠR±QÈÏF¦ +££“„N#Sš”ŵ]R“S‚–[›qf#“EB#©TMîì£úœ”C(\¦‰&ÑšRôL¡OÏçØ¤p +ë]�ö…¶V«¿¶k/ÈrÑ¢#(U,o’ï65E†&_VïÎÔße‹K©Ü\A»;ßÝŠE#Z©Ô‡¡ñôøXŠž[,Ì5Z¶÷„c¶gž–TBªVŽôRjl=†Ç¿ÿåÕ»ÿ¦:GR·üàÑiíWÌûÙâ*-çTªNî|dJ%_¸XZT+wÅ‘œŠ‹)n"5ŸLÏ +úþûÈÈHŠÇèxi|BÆm,Ÿ˜MŽ€;ý*™œ&¸.Ä£tf9ŽÉ5&&Š·oMÞ¾„E2>Gê7™Ÿnl?ßù—;ZlþHØ2Ò¿ûŽÌ"¶ë7ÑÅEÓ~´°øŽL²þäq*{ôôIJ†&DD©•œWͧ?}úóÿôçÿð?ïþS8j(qàù5…Ò)*>]´YP×R9²wb4¤ãð¸ir‡iqÑ;“ûOO“æT8n? S8M2™ÉÖ M)f<Q%›eáˆíL¾ž2ÓÙ¹‰ˆž"CYOgV3¹5Zû‰ôBL!›Î!£ífKf—ê+êkïi¥s¿BqS1Az&ªX‘()¨FI½W*7I{76–̤« œxK#ÙÈ‘_Pýa¶±—Nυȸ'’°›ž’0S¹™t±‘Sï–´{ùÒZ$&BYœeÝ_jþ8g7S\UR³tÄôT¶šÌ€ÕFî$ùkk•dmx$1>^H$kJ +O–9ijy•r.¡Y6nÝŠŽ¥#ذÅF¶©‘ݘ/7*úŠ’´ +åúôüŽéþ`¸Ëb™< x¦FªR¬TgžLNU¢1K·Ÿ”õ&)½è”3>VM…ÃÅLºF^áï&Éè—Ê+ùÂÊd´:2NÈ8:–%xk8yëv"ªØ©ôt&K°ên6¿’LM󩬤v*ÃÃɉP)1&Â(rHÎQ:Õ¨TÒì+wT}#“'3dÜÉÞQ•D£PZ´l²ËwÇÆhb±OVɤ•’ÙÙBeµ¨6 ëéR_„åû¹aÝG]ú”;*D”édz1Y‡•èŸpD/«käïn,Ûˆ…„‘Š#c·ÌlánQ<Ê«Ù⚈=Å#œŠÙ¡°Fÿ½ËäPãW‰›‘©r,^‰ñ"Â~±Ì,‰"ùãäʲ]\þÃËwÿíÊ㟠¾�&ÉI$éÞ™T®V¨¬ÌþhÍnõDvžÔìÁŒ •„áDb¡X~¬ŠW†ó*ž‚òg²ssõíêÌV±r/«*©yò‚=çA±X'ŒGné|ãÍÌâ{%µž²c‰ÁìÚì¸KÀþZ®Ü¹ÿøäåÖ?æ+«“ŠŽiÅ +¹¥wÉ6QïR™ºU}íÎî”Å#ZÃ#ñÐDŽÐ)Z#ô8É\i#™]&°W..žI&«–³Ù|ðav¹•.¬G•Ù±P™Üº|¡Îg—§¢åŠÖ\¼³·¼~°ÜÜ%gH&&ʤuIœH•''íReEIØ!2pÃI”|LVã(ÓÉŽWŠ¥;sËpÌÍŒŽgIiGcä+éz„n¥¦xáÓb'óAü|&WXdÄŸ“S^<U·«/¨§·‡3ä6Öf^Wg[{¡¾K㜎éÉPéûïcá°^›}ñ¢õÓÜÊËxvqJ©E¢ÖTÔÆ}œê÷ŠÚæÜÒ‡;?Eãä¼4éåxjö=T§1©ÍͽnÞ?¹÷üçVÆÃúðh/6eO‘ZKÖâ™…bå‘î<7ܧùÒ*éF�ƒ±âÄ$ùŒ³jå1A5®®ô8*ð‘:‚4yÖ‰ÌB"Mk|Fˆ¦[Åa÷dj5ýqmöME['‡4ªTòÅy³ú0UZN—V¬™î¿ú'w®…¬ÜX‡kGµrqÕ´ž‘+Q¨l+›…Òµr7® Æxh¢4*“vjÏT}îõxr¾¬6ÉM˜Œ¹Sñ™|ñncí ¾òBR8(8œ%¨¶h»ëóËoŠúúìòÎÚƒ?®=8É—7hQÓÔxÕçs‹ïR¹;Ñx=›_Êæ©µhÇúÄšýõÆýgQ§áàD<Ax`)WœË•¦Ú½’þ(™F`„–-®Ñ1òã@ t}¥bl¨â>A \~%—]W‡GÒáp%uñÿŠE“”Q½“Í„' ÒNß.dçR0ˆ6-pBÓõß7–wH¡M„3SÑ’ã®;î£ï¾‘òW^hÊŒ%ÈEGhw„k`fË•ûšþž›Í“¨…BF©´I^ö¹f·ãt%ÕT|ŽÌßDØ-Þ¾ˆOùÜ4’©™\åÞÒæÉ×ÿP#%@<Y%x¿ºù£é>$£?Fª VË—î©Æ#R>¡É +IB"QVÎÍ=›[xCc;:®‡Âé.Ò-Ãc™‰)MIÏiÖsoþæ>JW’ÔߨÇ0Þb£–ÊBnÆSKS±ÚÈ8Î9"¥”-,˜Õ§Fõ¥U{•/.'S5 Q³P(0^'uDJ¸P\Èä¦'c©\Z÷ž~ù‡ÿT6’ôdBˆàÍe³ÓÄ1Jdk„õ”T±ZÙ%G;M.ydJ$ÓN®XŸR,ÒiÄQÉI\™Œ¤63…µlaµ¢o*©9ò¶ +êý¢z—¼†lž�ÿœé=œ[Ùzöæž¼ù{wþM4QO9„]Uõ.G¢–Š•Þô+ÍzÏΓÏ;Ýe ý®EPÍ~Ï-ÅRó™üŠnÒC×cIò’æ—×[ùòð¤96C“f:·JÎ)uÔM(qÝÞ·œGƒŒË\x’:3ó4±)Ľ 8Ôž0”´Íd®15U) ä£SF1»™ÔpÜùtµgs7†ýˆÀóD¤,ôæBãVY +ÕÌ {æ÷ªñ"[XžœÔoÝJ„&TÓz\(®LM鑈EH²H*—ì£z¿T^'u7>VP—PÇ(iŒ°KÑò¬Ç¢v"jÅÉwÈÌ•´ o~k~õƒißËf)˜ÇñîÝYßžŠh¤QÉ™Š×R…•‰¨3RÃQ{2êd3u%nÄ“Yêl®™LÝFç&&Ф>2ž§gÌÖ‹$ìd~Ñ›ß^þïk+?Ô!¹"ÓC«Ò0Ÿ,,”çœqI›ÑÂ!ÎG̯äÕMšnÂrÐ̩鉰 +«$–©lÝÆæëÉ)“V÷ÒÚÎÂÚ«’^OæfIiÎdŒI;›ML–BáB©T§{ÉÐ#°,ÍV\Ï{œÌU‹å™õÇûšC——HÏc§ùxybR”ÅÝl‘PЉYà‹bSwžzEi]êuImhF½¤ÎÅÓ52úwïÿbUßФóQG傺šÌÎDs*nÕ‡_ý´ùä“i¯çs5B#eõN}õ}2‡Ž¸äæÔõÆÚ»Jz &€uI8såTaubŠœR6“1Ì&¹?ÙÂÒŠEõAóþÏÂxD�8‘˜'”5ŸÏ¯ÄänW£±Z:s'm–Ê›““Æ÷·bã¡B6ן¨¥¤ê3ËoÝÆ‡™Æ²ùÕ[·S·n%iäÉùJç&•*}-+ÍxR&‘ž'§àöHJIÌUMg&#VI<*R23dF£“tfh¼Äh¼>6V)L„ Ï ïO@"™®F¦ôÛÃIòs¹•bié8iZQõž(ó&ËŠš²"J•Vq*³f˜Ï"SF:3›#IÈÖÇ'ŒÛ#åPˆLjM3Õ§‰ìl4é`û@q¾ôaóùŸì¹×„7Àc‰Ù˜µ¸'X¥ÌäJŠ•çùòf:G�Ãäìœi?¿ÿŒtÂkÕÃÆàM'—œdL#$ïÔ¶ç4û^4°b4¦'Ò³©üBD±ÆBÙɨ©êòåµdºöýí8G!œ¡FŸLC„º¦¸´À5ûq²°x{4Sj´îBF<1M ¸dvÑ®½&W}x¼@JX˜ç%á Íh–+X\WKuÛÞD\¢¼:Öo–Æ&4R5™üB8ªŽ…‹†³¹þðÏÞüÌüíÒè8Q¡–תÓÏcq—<Ýxh»/,ï…ªß#ùùî»P8\ÎäÈ5'· =vfv뫟 +jy«ˆ¸=œ˜ŒThÊR@AÚ0aéá©Ù’Ú,–W'§tÒðµ™äßÝΆôp´zk´HSCÈV÷*`§<#9¢ØáØÌÈ„5<n$R«³÷Þôò/¢QìÔý§Ÿ_¿ÿµ¹ß“/v{$w{¤y¤]ᬫÙÂÊûOÿÛÚã?¥‹k㥑á|.¿<=ó†Pî¿û¯Æ~÷],ž˜Ûüý¿Ü{ñw±NïI‡Æ![˜'ÁŸÐ *$2Õù½?ÿï†ýC®|g"F/ã’n‰ÄÉU!ܵšÊÝ¥Õ!Œõ|i6ÉÓŒ‡ŒØÔl©xoiíÇœ¶6Q-{ãñË_¢É™Df>ž› †Qæ¶Ñ:Mçæq*´b¦küqqí'Ó{Ip— ³JäÚªN_bß'„<§ªÏ«µ?”*GF |V¨ƒµú;³úFÉÌE´1æ„`´G“Ã#©XÌ6ì—îl‹Þ<4©ÞIÃÑž2 ‚.Í”î¸so¼øç•û?•ŒG!zÄp>•œSoßFö„†4ŸÖ̧¯?üwKÍ?†ÉK*,x³¯œÚ›Re“ÜÃщÒ脚Í- +Älû€hXºîT_:5š‘yÄaèTvVIySqúµª$çãÉÙTz®Ðx1%j™@þä”A¿Ž‡Š±˜•Ë5Š¥% Õx\¿³k¯ÈJ#$Nè½BÈ?A)$‚ë#Ãé˜âª*¹êäýŽ|¦µIà|x8›Ë7›OÿN¸Ïó…tz‰ÆD¯,×çÄb¥ïoMÅÓËùò«önqõ¤ nŒMoÝŠ[æúó×?g +äJw+>2®–*÷ -“® '`•Ž}UËÚÝÑPÖãT¼žÎ®.®ÜúQ¥úÝï%_&UX$Xòý÷IrHlÒy½gä …Þ×[4ª+Ÿ„óbdÜüÿnÈçÍu¿Àßêt¤ß>AGúít¤ß>AGúít¤ß>AGúít¤ß>AGúít¤ß>AGúít¤ß>AGúít¤ß>AGúít¤ß>AGúít¤ß>AGúít¤ß>AGúít¤ß>AGúít¤ß>AGúít¤ß>AGúít¤ß>AGúít¤ß>AGúít¤ß>AGúít¤ß>AGúít¤ß>AGúít¤ß>AGúít¤ß>AGúít¤ß>AGúít¤ß>AGúít¤ß>AGúít¤ß>AGúít¤ß>AGúít¤ß>oþßòÙPnÈçߥÓKÛ‹[Ç[CÏV‡Òõ5ë5ýþ`ëÓñÎÑÐÆPúu¥~t¼¸Û:Þ=<Ø:úE©R“¦ê¦Ry°³µ§ää• +]¤lí¾ß= Ƈ½¼R¢Kkôï¦Eãÿ=ûe¨ìjž¡º)\W§ÿèŠ+tOµ,ͰÍÒtCÙ§‹„fª†«Ûºkšškw_´‡‹Ðfzžë:¦m›Jû.ÏŽ§9_Ôý¸ž.êz܇¡§CC÷‡<%—Wž=z|î'7ã¶ptòéýc’ƒÓÁ|½qxpïh÷àx÷à}¹,›vh¨Îÿahã#þ"4ù§‡OV–w÷0•Óiì+ÏÖ›‡Û;øñ¤üÅ?Ô”ÜÏû{ô§2½ÖÑîÛ“ãO˜š×£Ž+Zv÷¶vðw]©¬Ÿý ÿwüËGž×œÐ´t^©<>ØmQóCúÞƒ÷/ý¼µw"¯ýiwûøÃ_¿ø`kŸ¯¥Wñ¯.õs>ìì¾ÿpÜs—Ú—ó>õÞ£_zîÌ/}ÝŸ{îÇÏ×ÐúÚëúÞÇ[¯E¯ýÙݦ+¿Ð\óÍ»røö;ã…Óƒmz·…Ã/üYÞ±*£K?õ<Wî)õУ~Q“Ç'GoOövZ;½¼µÇqi?çzÕkŽv>ìõ®*Û—{£jV¯}z»õigùhç'4±½+ÎŽ»¾yõ^»wp²¿Ù:Þú¼Óû=Ë7ïØÁáÃãÝãÖ ÆYÿ>ñÕv÷®ÐÁ÷ô¢þBGÄ_éÈåŠþœæÜyÔ£:9{ñ¿2}¬4v¾ ¬ç®ýæ2·{Ðk_?îmõÜ¡³¾y¯žµvV޶>~Ømõ>YW˜«k\<Ãý‡Ÿv¯°v~÷`(Óë+TwÞ)µÀì¿.`¿öc@\@3p.໣-BÆ{‡»Ÿ'°ïÀž3ƒéö¬t0ð0ð0ðÿšÇ$nœhÞ<°|…>õ·X¶nޏpDAóßþõý¿ýßG={38ÐÎàöîÞÖ—ŒÏ`¡öœ_:ÚÚÞ=é}²Û—ó.mÝ4÷VB;?ýjÀ®_çˆgÙ¾F„º~xôñÃáÞáûž qÿ¸wv ívã‚w7F§õ" tÚ¯?=G„e\!×ßë¤Üs4{»w¯vû:ÜÚÞ…lP–üæ»wŸvz^ý³Üoj¶îmïøePÔXïk¦Ïõ˜Ö;¸Ì¬cÏÄÚ ëØÝÁެcßêA±Lƒœ?½Âlô}öôX¤~µH=OÍ'¹Ñ³WUÖÞÚ·¢ve%öÓF=§ñ¶vöîìí´®dë¾ñ›wòAÏ)¾¯íd÷×fŽw?}ÜÛjíìï¯o}<›´¿E_Õs¶o |¥žã +c™zW€}n™4¥ý?¥ëGqáÇ^{Ì?õÇÛ—÷±T +oî÷ >úQí½íÙ©%Ñ»€õ¹’è}núïõìQ|:Þ^Üù¼»…ºBháüMƒÄ£yw´³ó§ž´ïv÷ö®Â-Ú»†™ÞÚûië—/˜¡:åxëèJJE^ÿí vÏ}z‹²7½Ç4åÕý»"ßî÷.t|ñ7ïÌÞîÁÎÖܦ³‘÷ÞZ§–ž{uv÷9÷,vÛ'½û|í5D™zVu[ÖÉþÉ—i8ç:uþ–oÞ·ÞíÖ¹>¶¿Áèµ›ïúæ==Úa?¿çNnoïï~¾BÿNoèßüÎñaï¾ÿáµy&[»ûWX@¿Î‘•“OŸv·özWPýãµÚL¿zGe÷¦Ðfz²A ‰´™¿d®'ܺq´™+¬™>×c7¿b›è9ˆg.‹n]'q¦wÍ1(¶i‰3W˜¾'δnqææØ¤ž¡õ`gzµ~O¤Ä™€8Óg6éægZ7Ž8sØç–él™Lœé]*‰4q¦uãˆ3W°>W½ÏM¿ã½~#ÎBŠhpè?WÓ«®¸kšÊõ£÷;ÁÁSèW`Û“1¸E0g.~½÷¸Þw¸1U#ëk¯Q*ˆíçë«Å˜þF¸¼_†âæ–Lê=J= “ntaܯ)Ñ踞uœè¸›¨ãzžÖ@Ç:îF긥£ÃO¿y·stø%ÿd0õ[€áýè·ß<€»±ú-Ào~ûmë·å½Ã™FÚ9ø5Ž$%×sç{Ã`]a9¿åEÔsçƒE,¢ót ëÆ#v… Ì9bW8íÏÏ»BOúþ ±µý]™fX8Üí¹ìEpÞn`{ûEÛ3x<Êoã¼öñDõ;©2p‘þ"ºë½pÈðîG;ÛW:émP´Ä•TŸ+‡s€Íau+n žÛînÿ|:m`ËŠìn—[ØîR}»·Õú±¦È¦Ã[Ýã_ªšz›ôËUvÜÊ«¿ýôõ¦©ì+ujP6a-CoI}=@èÿÊ_2÷ƒ™¤¼ùîjú¡Ï1ݧ[Û‡?5n¢Êkî<ü´{•Òˆý¢ö¶wß½;é½6Ù ¬œ›ä]qŠú݉èyªßïÆáÁ§ãƒÞ…®ë¾oÞÅŸ>|QœusIú{¹m®—·}óNö¼»ñÓÉÑ»ÖÎëUö¹pSÿ +©ÔpWëÛ…{)¸Î2÷ëÕoûÖ$·ž+zììÑ/WŠÙž»ãÛË®ÑóÒÜúÓîþɒƧ×_gu#(õæUÿÒÎ×Eigš¾"<ì÷éãNëdoëhó¤çe€ÿ4 ‰_ M´Wä•1o÷ß¾“=›ÓöË.ýüñð`ç+zyvãÀ¡§�<à)�OïvúKypÑ“d噂ÈÜ` û]”mM¿¨zÿë…£Ýãû;ǽóI?ìíßÛÚý<åp#‰£=Ï{_T?^ÇšêÙ+üñWžïˆèëù)é|G̾îÈ +@œïˆ˜Ðol3˜ÑëïW¿[ÐÞ OŸ[ÐÞõu`AûM´~ƒtpBÕÿ%dØÁ.p)ë_Ý Î”üzï1xbqSšíõxÅÁÕ_•Aèoh={Ú¿àèÙîv={M†flÝ¿q‡ãÐ=œú9xêýꆫߵ»8=+ﲟN[zí.ÿÔ»òh_~¾à�/w“÷ÉÝ@ ”éûµyã÷Ÿ~“�з®pÖ³ƒÒïµEÊA9Ž×ýŸ²¼™Œ@„õ1_Àè7Mk_Ù¡”�ñ�³ÎË[Ï(Eà¾f1õ;Ljï;’~«êÙ»£åÝ£=ê-Þ/ó|¼õ¶÷q„˜§®ôœFà¾?¹Z¤ìÂ=×Wìä õ`ð”Ê6ÕQ4å·!n+¸]¿¸‰ßŠr[¸f¢ +ûCØýèhëàÓ»ÞO¼èéÿÊ*AÐ亂&rÂn"àþg"ˆœüêÓÂl¼úÞÞ¯.nƒã}Ý:YPè¯ñ7æ«úÚë{»?ïì½î™Ãƒ·ë8†ç[×dÒ«g(/_õÁ€ü¹;Iûíì~îYëR'¿`º.ŽÈÞ5̳PDM×aÑÿk +ý[£Ÿé¿5úCσ¯&s}ë-˜{?mýò…÷¼€&Ž·Ž®'äõß~YÏ}z»óþ +XÀ¿ú›÷çÓǽ݃ž—Ykk¯µ~Ìpî†k ÷<UÛ½geäµ×Àï}’¶Z“ý“½ÞÝ·|ó¾õhÒÎu°ýì îA¯}¼x×7ïæÑÎǽÞIÊ[Ûۻǻ_²€çûwzÃ5Äa¶wÞí\¡~& ÆÎÖñâÖݹ;®ÉgÚ:ØÝ¿Â¢êßþæÖx£(“7鍯à î¾× +AN`€rvdùÖVüU‹ˆ™€obYû]+ÜìŠPçµÃTéõð5ª¯ß¡^Pê¯u$( ”†ú—†ú*•>(è(È=ßàÜóÕ.ëÇàE{þkÝrÏÝÃÒ÷¹gžgdŸuv¥9òÍA¾ùo[Uñ`g«çpOoòÍó¾ùæK;䛃|soòÍÙWòÍA¾ùë§èЇu Šb¸IG _õ<µ>W +=ÇMý~_ù8à®û¾yÙÙÛ;ü©×~§V_ªÝäÔj©â®Ö·÷!¸ëÁÉ¥Z{´³sP#«±S#7f÷ýaíóîáÞÎqíhg»vx´uð¥ŒD›ëñ 6ÄæþºŽµ‚ØÜ@Äæ®‚P‚�] t_3=vÏé¿=úåJ±’sw|{5ïöܱ?íîŸá–ó‹©}ýµEwÙÉlBC^3ofQú½M_YÞøŠSoƒxÔuXÈ/D˜?´!nvl£g}Ü^‘WŽÁuߨÏsè¿ìÒϲ¢Ü•{yvc̹Î`Žº‘Á?²Ã1 ˜Ói5ƒ`NÌ ‚9A0'æÁœ ˜ó+²›’²"SAdê¿äUú~Òà†¦näöû›Y”ãG¿¢kƒ²ùt€Ks\•Ÿ×÷záf—åØÛ=¾·µû¥(ßà)‡¯¬Õß¹†Þ@ôyIŽÞ@%9ú#¿Á’ƒ�l3ÚfôÆU¶º*>èwTµ +L赋ÖoЄàʪ|P‚ +AE«YÑêáñÖñîOz¸%j]%G=½;Újoímîöd“7÷82í'}ëb‚=×dèÜúõ,È·†hjÏìÁ·[Ÿv–vH´~é€tñ®>怜ìoÒúû|Üù[®»óðx÷¸õ…TíùÚ¸úÑîÞ:xáž>VW&ŽU¸yìÕËáì]—¾;:Üï}šøâ€Âù7ëYÀàçG@àüBÿ®À©©=—Ç:>ìÝ—9¼†®\ÔKÞøWŠ%=:9z{²G+�Ó|‹n`Ò{Wð1$ü±ý û×"¦–îUF~ÚݾwÚ¿úÛÇD®Ð£;WáUŸ^þÍûTÖ{ïSïÑ«ëˆX]¥'_¤ŸëÉÏ×ГúÚëG‡Ë‡û×Å“…ÝO;['Ç[ïw^÷>í9£18 >ñ×™ÓoÜ¥/P‚š¾×¿’ß½û´süåw¼õt“ʨô¼¶{·ËÛ×a˜{ïHïfyûçk\ý›¼~oÝ_ÜÙ]ýéÃ2ŸŽ¹Jyõµl€ºûºn’Z»Ù•“zîÜ Nºry¨ßXᤲÐèsC¼jë +]éo·º¬_eZþÔs_þtPäÞán°…?H>üÆ’7æ]±[78±Ò/:áÊ3Òïúà·±çð¦)†¹u?Øwø×:ì;öþÖ÷^=O1(è+6öˤüêÛßgJ~½÷(Hs"ůAž¶ƒö¡Õx"ÿ{æ<‘ëÇ_G;ÛW¾AYW7)±ðEn<_dpŒð׫Žì/ôËä|›pâàÌKàÇõ¹w·’7p+‰°zîSŸ“^®Ð“þæ¼\ˆ€\,H " ýã©ÝÀˆD@ú)AZPîM‰€ôÞ‘ Ò¯F8ˆ€ô±^" Ad°" Ú‹€\¡Gƒ¹)¥4nR!ÓrX¯¿Àõ‡7#üqÜc´ÁªŽ^Ý4çSSµ^F»gO.¨¢}YëBík‚ÓAAÅ¿âæ{¯C¿Š'”T¼ÀÀ¼À~ò{œ8Ð^àM=êfú=s~Ó ì¹{¸¸Øn`º¾&´×KÛ§î š,´¼Þ8<¸G_Á5˲yaçýîÁù?m|äï0åŸþ²ÿöpo(·²sô–D,?¤)uú÷ÙOøagè„þ#ÿ÷ìúåýðjúI1•uå嚲˕u]õ\a*º¡jžp•ý!üäÚÞiKó´¥L?Ó5©éô¾ËÚÎî<8{ŸÍ!MÕ„¥»žex¦#túBMuÇÐ<DZK7—Zla8šny–nžp¨EÓ4Ç3LÛ†kšµxšçj†§Ëvmw†£[¦§ ÏÖzj9ÿ»!”g[Cea©Ž0¨#¶já©ÔÛ²®©ºEO.;ªM¥t¡ê¦¦Ë«„g)Ïù*Û°¥l©¦çhôƒðTÛqéSu4WÔ⪖¥¹hÑ\Çõ”=ÑV…n)eCõlË¥ï†jh¦ƒÛpð=B5-¡£ÁðËâ»h …/2hè…©š½ ï:†ÒÝ“ÆÐ»³yªplÇÆd$21M‚ÞÖp E8ªcáWdz<åɽ ý¦Quùaß"[M8µhª°M(³fô0zCÛo¢niô½5èBÁØa|è9ü_]Åò-4`ê¯F“§è¦ªë¦çh¶EóÚõúè„F#©qèRS³5L¶åé$4¦°S3uL¶%\ÝÔ…®9¦îx®’AË2…!¢æ>|—cÓKZ®«“øáóT¨šÈŒ£j¦ a «1§‚Æ”š,“¥×ö4zoúÝSÏ´Ðàü^®ç˜¶ Ž8<NxËó¨¥I-&Ý%° +è.WsùM-–ˆP\UxžŽ›Œ³¯qy”ñ¦®IÓmÒ#©Á±-ßbh†ƒ+,ê˜åñM]húãz‹‚ˆ—)“„Ðx4°´€<4ѤÑ:$‹„Ö=Ž$Ñ£¿hr=yBÇ�ÛšfóÒ0I +Z+š®ñZÑiV ¹.‡Ÿo3he‘D›–Á÷Ýæ©tÕµLÃFë€DÊ“×4´ô$Ï¡k©–t×ûCZ]›zLËÒÔÝ`i¡/Á’¥"É]sH`@„!UŽFkŸf ºGãëâË…ÇËódb)ÐàÐ4rõAÇP8®%5ŠnÑDÓ=:Nš_‡¾UÇ2BwŽ®tMKêG#z‚N’�YÜd,è'Ý¢")¿®NµåÇÔi¼éã e¢bj-*ËN"sHØI6HÒÄz,?Bx4?$W4–\¯{ž.AˆËϹßéëX™c +…ptVÅ´ô±4iÅ®=MwMÖ´„ä8‘˜žH‹‰ÔFkƒ{î*úZÝ„í"=Å«#áѨñÿk†pݲIµRHât×Ô1äôP}M3˯†Ì$M(Ä„–³¦³ê5}ÙC¿L¨FºÌuhYq)å’Î=ï‡EKHwÓä>Ï„€£Íâ.Ò˜[ãeFw±0Ú´¥ý¾@“½‘ºÚLÛecD£E¢�»I-.[R¬e´x$,†l± 6©°·¼Xè6"K-´P]9ì´¹EÀZðã’Hù¸ŽWï1¦WöxMRoãi³%ÜdY:ƒÍ†>„èüOÌ»¯ <–aRD4ÁP^Æs�É€Ä`oHÖ]iç1[†¿ÀS‚þ·Óêr°ÚâG²m`IwPwå,ë.¦»k[C—NE÷tuL*ÝG«Õ†rÄ0Ifi\M‡Ú$ÀK +ö’DŸaCgµ‡ŽÆÞFIóØÑBâ&2žuî:†¼?VõJ* +Ø1Ã�x£6ÀѶË}�(CÿÈ )$¤;4MâWRo<0Pôžnóé-,‰MmEÑ·¤p‘%4Y/jšÙF«›<ºÏÑ1 À¯BgËd@’É`‘ / otÙ“ ¹BXx�ÆÂH„¾¸$[Œi»ú×Ë:è:<Ž$_°Ó4ì'¼5µ¹„ˆM>Ô@Dvñ9{;4«-‹E•†Ýƺ£«×Õ<Œ}¹ÆÖckÍaœ¡Œ6ð/° ¨õ|‚.ǡ˵èô?Zü’üÕ°PüF: ¿áÈÛ¤�dI»D – 0²ôȯöÍ#Mºëʧ_·~�ëe†qü•¶mkÂ_DâQ›tU°¬H~ Y@à$ÔÔbšŽ.[Ø8ó<¹Â5ø>š.]ÎKÆÖ€ÖRûZRFMŒ˜É£×ù}·/š®×o²ïéê:©y,(¤ï 4�¤�š—Nþe"Ò%F¢ù4Úº˜V9PtY|÷ø.ÁrN74Dìj"ª ”<SLC0KH A3HðU.\0©¦Ëa/Ìò{¢ŸÞ¦“>UºÇBÌÈk®>|Œ}¿‰D‡šäctLϱ`œ<ë|ƒA2íú^<HrÕ}|dÒs<<éÄÛkóBöøî 9qÌ6¯VÛ$EN²(aºŽ¡ï‚Ù'GϿŅ"§Ñv1NŒ+1ü¦ÁCAãåâ +Ý„÷úW¸ªãC"›Q5X<ø >ÛpáaJuÍÝÁ»6ÏiÇ 5úE›_è‡Tæ}팎á‚P +)9‚=oŒ(Ô>©aö½ —¡ûIÚÑ6lXÚ!d{]¤èáf�gÁ¿—ó`Ó’çï!7“õª€UõÀX—MD_èöˆuñ’"1Üçånxþ &�Ó¼Þ2Ù£4X«ð(ZzۆᅹɄ-C<J4¬Pé8±‹l°½¤±fýÀœOò�tsu? +ŽBéžD–Ðø…Éþ´Q‹†¥ôoXþ³±¦ðHW“ ¼êØ¡¶]Ý"ki VÕ9ÏûBìÉcСt\_MÐü¸àà‘µLÇ㫊 .ïl×€t Yǰ¶xÅq˜ aË“PpH¡ÿ:8ê€'§1ã' V‰4ä'‘~#H ãÑŽ…¸½?ÅI3lvj,^jÐÙ˜utÚ_ØÈ4x›¤‡ÆŒ€¡œÇé^©þX_À;ü°k®%˜ªsøÉmZ:°¹ô;,¶½r̨+ÐÈì�ZkE¤ZP‘Œ8O CUŽ´²µ´ùK"„“¶±«¡1JB0_3$tt ’ ólÓ÷Ü=!bR”–-LJwÞ›C“ô„=Hi©È+&š–(: `ê%ž`³Üîsã’qØCT›:n謌ß"ÓeÑ0呇)XÑJwŽþÌN”-/$ÐÍ}“îASÁ¸B¬éw¦74M8ÀŸjW +Ÿã{ºP/ì>¡ï$46k;¨?ZEÞ)¹IBGÔ[Æúh2öl ©Å$xºÄøígG/ûœz/,95Dh…ŒHxõˆö&phMc n‡M9t¬_èw,€êŠÐùïôÖØ¤iö¤ù"ÊqLO·X¸€î0膆g’iÔ˜µmžášüvˆ¤+í8¨×zk—C?ýè@Žn"2ƒ×F*fñZ–G¨lZ늅ÈP‡8û„#º<x9CÂøj“§ÃÁZå¸k±vƒ™†FäX°ksÔX×yP-È|ç[ôƒ×•÷@½#7rIöäb‚¥…”‹!ø$%9-#4„ö5Ž€@[C'e…-×½ôî…yÏ~—Á3dz€Ûž;¢±V†›M>Ác¤WîÓùw6ÃdmÉ'÷d¾Bèú™ÖjÊý.ƒv€9:k!A¨#ƒö–Þ<¥ìMYR9À:n¦jº˜f\÷8®£ëT™¬Ñù6:/0�(DâhިŔy–ŽìÝç¡®ü^W°;Ièù‘nµ&›*‡M‰Æ¯JC~IŠëÝPW.fŸ›L““-®éøù¨4pˆæùÙ4!ÑdÒÚíø™æÇHh:öDq»/šø"Ið¬!¥€cÕhâ$*ΈB|m¸»’l„®D\Gª®«¯¡®ñè±®Qm ]’ŸíÎá^Èò¶†ÚBÐÀ@ˆ•¬.S§ŠÀϽÁä± Q“¦ñk¦ÿ¥2^Ÿ‡:Rb]³î¬«Íuɽ1¨G.\&£I+ŒzLkBðГZ0 Ê»4Kº&šf#åm{6¹œØ95V¬?XKù +V*àKô ©‚€l/äA߇5gs ·K’B¢ƒ;Àš8²@ ºã7pŽŽV“²œp“HÃb7éŽÅ˜bù(caiô¬.!mu‰rórq¿0Ÿ‡ºS˜]IÎÎD(Ë,P}:MÈPˆÄúíH'<0—Ã-äe¸D÷º³“¬:2˜9ή<(+O]r°‡³i8– ݆nvÍU?Ø'šx‡ÃGH x©�u½zó²DjWºµyiJöbÚö30“?%gØòËè=WØlðOcu¬èXÐ\n°¤óÊaîv�Z¸€íäéq0 ‰Ö˜MÀm™.5}1"Ë%Ÿùƒ£k@ú½êÈe¸r,Ôý!9Ø,p‡Yè…¥Š3ý�LWÿa:F© ̱"Ä&Ð% x¹ƒ‡ðóoæRæ¼¼…¨ùqš¨òšÃ5=°§ G±|$rÅÒBwô¡ä¿;ŽÄ» l¥sžŽA†Æ^–ÃêG*¨çxs²\rÅ{PëMjҥώ&@x$ÙhC¶@Y‡³‹€|cÒd¤^XÕ"Å݇úÇ™?KæGtÓ|Á9ø`Ž´O–¯±I›’§ÀN/õÎÄø“!r9pÐ~´;çK=ùÊ&ÇŠu?~¤#âÛÎZ[2åɧÏÍ�,5a<l¶ý~½”|2М!ï~ŠIÈ{ºè´ì;)…nCã’éjöîÎ:ûL‚ÎÜtgþº+ËÝâÀ‡\GN;OJƒ'Ó\0¸‡yý%Å?ÏE¢ê²äæ%¸RÖ8>¯KaôX‡Äb<;»y©øwŽúç¡Ë¸(|•K˜—ñCºH$Ÿ‡8 ‡m’7€ˆ �"gÕ —ÇÅæü¾œ‡¼SåeÚRw°5>]Êéèæ}tP,Zrž%S”›î8ç¯2�‚¬K>PsÔò9ŸlšY@ñ–ƒSIжX™3-u™ãòÕ¯Á Z†;ú#'Ðý¼q™ƒ ”nZH¡q9×á"!â3B«Ç˜˜£aÊL¾ŸïFT@çUãæ¹�Uüàª'AàÂ3Ú~d)m_ç Þ[çÜ*=Ø• +Úô!.—28a%ä(Z¶Rt˜FŒ/`¿ÁKá›éÈwMgëè¯&ü¶2‡è-æôR›nø4A]b0%™<÷Rpø +Α£…,3‹|“mªÒûbŠgôMŸë‰·âxé)‹…ßÝ|©OOt,!ùºB¦>»úÌd™Î‘é½®1na}™cÙ°|}éçé9ÌÀ¸CÀ'H1Äš”‰m˜0 dä€M™ÉI¡úslH¬Ã-”+³XÞ)£G@¸<IOa`µc׬ôƒçA·|^ÊiœD]jsôÓèp’ªÌ6–º÷œéI½Ђ–o2lÍÄ6F€ç[4˜R×%[‡ÔZÛÔÀ©’Ò-Iæ–O°ç`Ê™‚ø2k¤-›¼ü/’F¯{€[C—LC÷TuÎg‹óÔ¦î‹)mI Ë×ã>mÉÜbIÒ"<šð]¤°tr‘>]ÂXêf5uqƒXÈÝ6 +ôUÛΊÃÜð7uÍg?ÀãnÒÏ>³Œ2¥ÈЪH&„Ã*‘*N¹ÑÒ–y) INÑpòÊ7Á„w$*º\è.Í.é½(âKÖA×à²éð˜c EÅ8þ¾íHLmIÔEþj ]Bë"‘uÍZœcöGE“àë4WϾ±eIb›Ä…ÈêƒvÒà”?ÇV0ê¬þ»vK|ºdKEצ‹NVk¨›ªÕÍæº„óõn¨k‚Y&ÎK@·„t}QkèŠÙ%4´N²ZãRJ['‡çóÐ¥TŸ.:P'gHŽJ1ª›<uÅÊõµé.ØÔ¢6s‹#ñ‹‡°éiƒšL—¿Éwù$3L^èçŒ8¾åqðÿ”ÐâpÈ—¹Õ®É1—ámNå7\²û ”îxÇçuŽW°ô˜¼Ù„&”ñĹCЦ$¾àe9yÂ3…6“_ב)\n'J->×ñm”Lˆ™>°”_ꇷÑÂi60Låzwü”æélò}Òßø‹óÉJ¥cλŢKxZC—²ø:™~]/iî:X`ÝD±6™ÔE0 +2ÞRÀ'ƒ—./aÒFöœJÕÁ†¦'ÀăÅÅŽ‚í¦Öy“†ÓâÈáJ]‡gŒ8Xèø@S?õ[Ü÷8ÄÁ +Éy)St½(/}aÑ3¬1pt<W’T<vÎi¤"68«Ž¬äÌÄF{º?ïŒI æ8ç&×:Ç\©Éd +"Ùö_ÌÌá]‹øZ›)yË¡!ßb†ÍGºÍ¾½Ál¼vî^RЙ…ô¾oÖÙïg�[áŽé“ÚòâwÉ@§œH"¯F|;6i öÊß}:äRl«œÏ’ŒLBÜ"}‰N¾¡´‚)‰]œÅ^£|ÿvÂÑ’¶æBã –ÿ ‹3í@™iCo‡Y•&Øê+_:Ƀ4êŽO³ pÌû¾xÄy˜mWÚ[dç� ™ìê©õ:E¦K¨. +^ãáìè•Ķ.]lµ9‘0#‚9‘2[ÓI’”Úç<‹²‹dÙÁÿ“š§ƒ#ØÅ"ì`¶˜ihùôŸºå©œ Ø×Ÿ-îH¾"Älþùm@s9ª¨ƒ.Jc”'ÿhL[‘ä\×g°â=‘@XMÛYF–rX’âIpð*§dÚNÑè_ñ2Îc°ƒD÷y¨“f×EÃë$ ±Û¼ÎD.¹¹Ñöã1Ô <¶/®´ÑrP5ŽB½ø1m‹FŽ\ÿ@èœ0¶ÛqKx…Œ¨í^Ûß·Jk* + G-™ü—>Û]úrÁVßf®DÄ/½{¾Ùsë‰N¡é+¹*¸~ŒãÛBЏK™T2;§]”ÔŽ)ì+H0ƒXޝëöyÓ»^ÎYlÉe.x<‚—MæÅéî’‡N™aA³Ø=w}ÇŒ%¤SO£“Sɺ³ƒwÙÅÌì oÊ锺ŕ…�°rج€H-çJ“Îéá;Rêa¥xÿ�2™p-áó@‡qt‘p,€™`QÅH1!lnF]œ“„€º§ìqDÁIü$¾Dͬvã§Î9aƒeøúáRMâÄGLfÊëì+óï¤,·ûéäëxî>töSFø8�Ï›~M¹„8Ÿ¡ëªD¶d1¿ƒýãù¼Lp`µ°º¸žÂï ƒvF/å”úº¨ñH¬5îrç0õ…ÃDÒ9 Çí 2”�':ø¦ÒQ‡<ËßWF� ƒW›çS‚8ï",20øŸÈ=®{ò*ÆÜ—ÐX»˜®]\ØN¾lë,Û€%âI‡ÌEê>5_+¡%ýE¦n46?š\F“l©(@ªtAÔd4ÔvžW»AcWé«~P“]¤_’Lü¶:Ãî Iõ–˜!‡ºŽy ü'GÇAtO†,ÑQO¸®Ž·†.œÎá»8ÂÈDË(óÛQaÃÏó#Ug‡â±‘Õ㫦*yeÈôbÁw0–?u3š/ž/ç +_+\ê¦ +{¾*vY£0ŠdÆâreªU4Ç +ȶqT†f”éÚ–‘z1ý4¥}Ê%3ýÔ"™(~~ÄVGw.cawд;YÜ<ïõBoÏ„ÃEhÁ›c.Ü.:skè2Âs'!ú<eºÑEªîËÏ}°ÁXâ9!øýSêŠÕIýµ¹tÎe“Õ9ÓÝ)`GJ²¦àÀïØbâ£À.B!ºˆÞ¡N*x'Sü"“¼ú¢Ë‹Ûá-�’©1›Ê0d‰ ަ“¨L®"UÒE·f>äEBv'a»ƒÒÍâÂ>¹ëÛUøø/DÑwòXWØP.:Œ’+W¿]¡4J +£A°0ˆ¦O’htN\_lºî$ECš\]à~kð@žBlùW€‹6mÒôÉ¡s-ž'“cížwŽØ†çªc;G¹Å„F›ÛfUëþ.ñï«Æ¬9¶4úÐîˆ'Ù~<¦ƒ¶ýy¨‹×}‘õÝÁ +ot R_lZ€ždªˆåEöAª’Ü jòyK’ˆñ%¶Nš[®‹+×"ýásCû«ŠÕæwqæHÌw—älä´‡å‹TS\-ØÚ>W'áëN˜.‰<ì1³z£>3!9/Nu iÔB+œ e‘YY$Y‚V¹cz�.Ç4ÕØí;ÎXƒœn[À“`Zb«¯AvÐaOÅâÂÌ]ÞrºFM»þba+Ãe\€½Ø®§´w7hìÉ»n7[¾5ÔM©¿„ußAzÆ]Äè.êt½ºâô~�Üôchðé›LTÜÔÅVíâ³vp>™ôw‘ÚÅí’jHE§àwŒ¡À=6‡ì˜ñ|K ,…e_qtÑqÏE¦cò2¾äe¬ÊnæeÙ5t %®›6×IcFžŸöó›¸Á@Y¾â"MŠoédRu³:@Òo’’dù)pvs9Ým1;ݺ„´Ã~y'µ§›þÓE’Ä,ŽÉ¡ÄŠ' =Bó“é2jÓEé໺yÝÜŽd¾¤tt¤ü/£\LYrЦ+±yiúób’Ô”cì€.9æøb‡4C—îô ŸVìN"v'»Ó‘]9Ë®¬æÅL–|³î‡‹ù9ùÅyì®4¼¥3•ә빘â{¨#sÄ!º| {ïF»’@gv‚ç«#ƒqIŽãb°›o’úÑòYÞ‹cùP¹30Ë·tÄn;ƒ»CøŽ â%aÇ‹a0^]ÇêÇ/‡À ÞUguÇ|Êç…Qg©#Ì„ˆa÷îæ‹ÛŸ»¶·†:#/{C—Fg:"8]aèF]*N4A+zýç.Fàö_@t(:œt¨í®¿;‚/z«°BýÙN·ÓÉHºè†uxiÎ@‹½ˆ»ô<-¥Í–6ý4i'în u#óNä~¶2@¸°%²sËäe›*;·]vn˼ endstream endobj 6 0 obj [5 0 R] endobj 30 0 obj <</CreationDate(D:20180107183902+01'00')/Creator(Adobe Illustrator CC \(Macintosh\))/ModDate(D:20180107183902+01'00')/Producer(Adobe PDF library 11.00)/Title(lune)>> endobj xref 0 31 0000000000 65535 f +0000000016 00000 n +0000000144 00000 n +0000037525 00000 n +0000000000 00000 f +0000039317 00000 n +0000626326 00000 n +0000037576 00000 n +0000037936 00000 n +0000042300 00000 n +0000039617 00000 n +0000039504 00000 n +0000038563 00000 n +0000038756 00000 n +0000038804 00000 n +0000039388 00000 n +0000039419 00000 n +0000039652 00000 n +0000042373 00000 n +0000042725 00000 n +0000043931 00000 n +0000048227 00000 n +0000101622 00000 n +0000167210 00000 n +0000232798 00000 n +0000298386 00000 n +0000363974 00000 n +0000429562 00000 n +0000495150 00000 n +0000560738 00000 n +0000626349 00000 n +trailer <</Size 31/Root 1 0 R/Info 30 0 R/ID[<588B230C42634DB98F7132FDC3E07C84><160AF1886FD4494F9CFB3656C7935A7B>]>> startxref 626531 %%EOF \ No newline at end of file diff --git a/test/samples/aurorae/images/lune.jpg b/test/samples/aurorae/images/lune.jpg new file mode 100644 index 0000000000000000000000000000000000000000..76a7a021458d0a09d15c68da6e8a2951e5959214 Binary files /dev/null and b/test/samples/aurorae/images/lune.jpg differ diff --git a/test/samples/aurorae/images/plate1.jpg b/test/samples/aurorae/images/plate1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f3f5631893ec1ad033be43b4b208f32df605d9e1 Binary files /dev/null and b/test/samples/aurorae/images/plate1.jpg differ diff --git a/test/samples/aurorae/images/plate10.jpg b/test/samples/aurorae/images/plate10.jpg new file mode 100644 index 0000000000000000000000000000000000000000..03633be36dfeb8582b1cc3b851f5d29c5b818880 Binary files /dev/null and b/test/samples/aurorae/images/plate10.jpg differ diff --git a/test/samples/aurorae/images/plate11.jpg b/test/samples/aurorae/images/plate11.jpg new file mode 100644 index 0000000000000000000000000000000000000000..282654adf5a284eea42c41d6e25cacc93f7234af Binary files /dev/null and b/test/samples/aurorae/images/plate11.jpg differ diff --git a/test/samples/aurorae/images/plate12.jpg b/test/samples/aurorae/images/plate12.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a46f919dd64b99ecc1fe81405515ff309f12df7d Binary files /dev/null and b/test/samples/aurorae/images/plate12.jpg differ diff --git a/test/samples/aurorae/images/plate13.jpg b/test/samples/aurorae/images/plate13.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5ce0d2fdd0e2df48a339cc3c7b58f24557a25299 Binary files /dev/null and b/test/samples/aurorae/images/plate13.jpg differ diff --git a/test/samples/aurorae/images/plate14.jpg b/test/samples/aurorae/images/plate14.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5d4d2049174fa9d56cf8b6191bfc367c327f30e1 Binary files /dev/null and b/test/samples/aurorae/images/plate14.jpg differ diff --git a/test/samples/aurorae/images/plate15.jpg b/test/samples/aurorae/images/plate15.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8049147fbe15effc45b4561af0cdbec5f459d54f Binary files /dev/null and b/test/samples/aurorae/images/plate15.jpg differ diff --git a/test/samples/aurorae/images/plate16.jpg b/test/samples/aurorae/images/plate16.jpg new file mode 100644 index 0000000000000000000000000000000000000000..58cb7176da5d21566dc4e2b33cd94e3f2b44440a Binary files /dev/null and b/test/samples/aurorae/images/plate16.jpg differ diff --git a/test/samples/aurorae/images/plate17.jpg b/test/samples/aurorae/images/plate17.jpg new file mode 100644 index 0000000000000000000000000000000000000000..052694c696a3d5c3ca6f809889d65bc590b50d00 Binary files /dev/null and b/test/samples/aurorae/images/plate17.jpg differ diff --git a/test/samples/aurorae/images/plate18.jpg b/test/samples/aurorae/images/plate18.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7facf937ad5879e71e1366a35b2218bd2def8ef6 Binary files /dev/null and b/test/samples/aurorae/images/plate18.jpg differ diff --git a/test/samples/aurorae/images/plate2.jpg b/test/samples/aurorae/images/plate2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..91cd6fa7c1b6f47f827912422256dfad5b3bf486 Binary files /dev/null and b/test/samples/aurorae/images/plate2.jpg differ diff --git a/test/samples/aurorae/images/plate3.jpg b/test/samples/aurorae/images/plate3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bf8dfb42a5f09e00fc381ebdc16ff7361e41d687 Binary files /dev/null and b/test/samples/aurorae/images/plate3.jpg differ diff --git a/test/samples/aurorae/images/plate4.jpg b/test/samples/aurorae/images/plate4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..29d2207b2ed0a7ab5eff2c46c05c12026c85119b Binary files /dev/null and b/test/samples/aurorae/images/plate4.jpg differ diff --git a/test/samples/aurorae/images/plate5.jpg b/test/samples/aurorae/images/plate5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6856add96c57c09a1fdb81304bcf62a0510081b0 Binary files /dev/null and b/test/samples/aurorae/images/plate5.jpg differ diff --git a/test/samples/aurorae/images/plate6.jpg b/test/samples/aurorae/images/plate6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c8d912f1998b90e1ab611ed7fe361afe9e1b7bbd Binary files /dev/null and b/test/samples/aurorae/images/plate6.jpg differ diff --git a/test/samples/aurorae/images/plate7.jpg b/test/samples/aurorae/images/plate7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fe884f6d4278c9e29baa34f29575fadd95dedf5e Binary files /dev/null and b/test/samples/aurorae/images/plate7.jpg differ diff --git a/test/samples/aurorae/images/plate8.jpg b/test/samples/aurorae/images/plate8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..acd4b18a3944876fe0db477c5f936c03e1fcd0ad Binary files /dev/null and b/test/samples/aurorae/images/plate8.jpg differ diff --git a/test/samples/aurorae/images/plate9.jpg b/test/samples/aurorae/images/plate9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..52c2d09c0a36fee11586a750ae6fb91f04f70e4b Binary files /dev/null and b/test/samples/aurorae/images/plate9.jpg differ diff --git a/test/samples/aurorae/index.html b/test/samples/aurorae/index.html new file mode 100644 index 0000000000000000000000000000000000000000..b76c11e04329c301e0be69c531051caeab914688 --- /dev/null +++ b/test/samples/aurorae/index.html @@ -0,0 +1,14446 @@ +<!DOCTYPE html PUBLIC> +<html lang="en" lang="en"> + <head> + <meta http-equiv="Content-Type" content="text/html;charset=utf-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <title> + The Project Gutenberg eBook of Auroræ: Their Characters and Spectra, by J. Rand Capron. + </title> + + <link rel="coverpage" href="images/cover.jpg" /> + + <link href="book.css" rel="stylesheet" type='text/css'> + + + <!-- Paged js--> + <!-- <link href="paged-js/layout-pagedjs.css" rel="stylesheet"/> --> + + + <!-- PDFreactor--> + <!-- <link href="pdf-reactor/layout-pdfreactor.css" rel="stylesheet"/> --> + <!-- <script src="pdf-reactor/script.js"></script> --> + + + <!-- Prince XML--> + <!-- <link href="prince/layout-prince.css" rel="stylesheet"/> --> + + + + <!-- Typos --> + <link rel="stylesheet" href="fonts/spectral/stylesheet.css" /> + <link rel="stylesheet" href="fonts/Daubenton/stylesheet.css" /> + <link rel="stylesheet" href="fonts/amble/stylesheet.css" /> + <link rel="stylesheet" href="fonts/noto-serif/stylesheet.css" /> + <link rel="stylesheet" href="fonts/hk-grotesk/stylesheet.css" /> + + </head> +<body> + + <section id="cover"> + <h1>Auroræ : their characters and spectra</h1> + + + + + </section> + + + + <!-- page PRE --> + + <section class="frontmatter" id="pre"> + + <div id="absolute-bottom"> + + <p>Project Gutenberg's Auroræ: Their Characters and Spectra, by J. Rand Capron</p> + + + <p>This eBook is for the use of anyone anywhere in the United States and most + other parts of the world at no cost and with almost no restrictions + whatsoever. You may copy it, give it away or re-use it under the terms of + the Project Gutenberg License included with this eBook or online at + www.gutenberg.org. If you are not located in the United States, you'll have + to check the laws of the country where you are located before using this ebook.</p> + + <p>Title: Auroræ: Their Characters and Spectra<br/> + + Release Date: December 10, 2017 [EBook #56159]<br/> + + Language: English<br/> + Character set encoding: UTF-8</p> + + + + <p>Produced by Chris Curnow and the Online Distributed + Proofreading Team at http://www.pgdp.net (This file was + produced from images generously made available by The + Internet Archive)</p> + + </div> + + + </section> + + + + <!-- page half title _________________________________________________________ --> + <section class="frontmatter" data-type="half-title"> + <h1>Auroræ<br /> + <span class="smaller">Their characters and spectra</span></h1> + </section> + + <!-- page half title _________________________________________________________ --> + <section class="frontmatter" data-type="titlepage"> + + <h1>Auroræ<span class="smaller">Their characters and spectra</span></h1> + + <p id="author"><span>By</span> J. Rand Capron, F.R.A.S</p> + + + <div id="editor"> + <p class="editor">London<br/>E. & F. N. Spon, 46 Charing cross</p> + + <p class="editor">New York<br/>446 Broom Street</p> + + <p class="editor">1879</p> + </div> + + + </section> + + <!-- page copyright _________________________________________________________ --> + <section class="frontmatter" data-type="copyright"> + <div id="flexbox"> + <img src="images/alere.jpg" width="150" height="150" alt="ALERE FLAMMAM." /> + + <p> + Printed by Taylor and Francis<br/> + Red Lion Court, Fleet Street</p> + </div> + </section> + + + <!-- page dedication_________________________________________________________ --> + <section class="frontmatter" data-type="dedication"> + <p>To Prof. Charles Piazzi Smyth, F.R.S.E.,<br/> + astronomer royal for Scotland,<br/> + one of the earliest spectroscopic observers<br/> + of the aurora and zodiacal light,<br/> + this volume is respectfully dedicated <br/>by the author. + </p> + </section> + + + <section class="frontmatter" data-type="epigraph"> + <blockquote> + <p> + And now the Northern Lights begin to burn, faintly at first, like sunbeams playing in the waters of the blue sea. Then a soft crimson glow tinges the heavens. There is a blush on the cheek of night. The colours come and go; and change from crimson to gold, from gold to crimson. The snow is stained with rosy light. Twofold from the zenith, east and west, flames a fiery sword; and a broad band passes athwart the heavens, like a summer sunset. Soft purple clouds come sailing over the sky, and through their vapoury folds the winking stars shine white as silver. With such pomp as this is Merry Christmas ushered in, though only a single star heralded the first Christmas. + </p> + + <p class="caption">Longfellow</p> + + </blockquote> + </section> + + + + + + + + + <!-- Table of content (non auto)_________________________________________________________--> + <section class="frontmatter" id="toc"> + <h2>Table of contents</h2> + + <ul id="toc-part-1"> + <li class="toc-part"><a href="#part-1"></a></li> + <li class="toc-chap"><a href="#chap-1"></a></li> + <li class="toc-chap"><a href="#chap-2"></a></li> + <li class="toc-chap"><a href="#chap-3"></a></li> + <li class="toc-subchap"><a href="#chap-3-1"></a></li> + <li class="toc-subchap"><a href="#chap-3-2"></a></li> + <li class="toc-subchap"><a href="#chap-3-3"></a></li> + <li class="toc-subchap"><a href="#chap-3-4"></a></li> + <li class="toc-subchap"><a href="#chap-3-5"></a></li> + <li class="toc-subchap"><a href="#chap-3-6"></a></li> + <li class="toc-subchap"><a href="#chap-3-7"></a></li> + <li class="toc-subchap"><a href="#chap-3-8"></a></li> + <li class="toc-subchap"><a href="#chap-3-9"></a></li> + <li class="toc-subchap"><a href="#chap-3-10"></a></li> + <li class="toc-subchap"><a href="#chap-3-11"></a></li> + <li class="toc-subchap"><a href="#chap-3-12"></a></li> + <li class="toc-subchap"><a href="#chap-3-13"></a></li> + <li class="toc-subchap"><a href="#chap-3-14"></a></li> + <li class="toc-subchap"><a href="#chap-3-15"></a></li> + <li class="toc-subchap"><a href="#chap-3-16"></a></li> + <li class="toc-subchap"><a href="#chap-3-17"></a></li> + <li class="toc-chap"><a href="#chap-4"></a></li> + <li class="toc-subchap"><a href="#chap-4-1"></a></li> + <li class="toc-subchap"><a href="#chap-4-2"></a></li> + <li class="toc-chap"><a href="#chap-5"></a></li> + <li class="toc-subchap"><a href="#chap-5-1"></a></li> + <li class="toc-subchap"><a href="#chap-5-2"></a></li> + <li class="toc-subchap"><a href="#chap-5-3"></a></li> + <li class="toc-subchap"><a href="#chap-5-4"></a></li> + <li class="toc-subchap"><a href="#chap-5-5"></a></li> + <li class="toc-subchap"><a href="#chap-5-6"></a></li> + <li class="toc-subchap"><a href="#chap-5-7"></a></li> + <li class="toc-subchap"><a href="#chap-5-8"></a></li> + <li class="toc-subchap"><a href="#chap-5-9"></a></li> + <li class="toc-subchap"><a href="#chap-5-10"></a></li> + <li class="toc-subchap"><a href="#chap-5-11"></a></li> + <li class="toc-chap"><a href="#chap-6"></a></li> + <li class="toc-subchap"><a href="#chap-6-1"></a></li> + <li class="toc-subchap"><a href="#chap-6-2"></a></li> + <li class="toc-subchap"><a href="#chap-6-3"></a></li> + <li class="toc-subchap"><a href="#chap-6-4"></a></li> + <li class="toc-subchap"><a href="#chap-6-5"></a></li> + <li class="toc-subchap"><a href="#chap-6-6"></a></li> + <li class="toc-subchap"><a href="#chap-6-7"></a></li> + <li class="toc-subchap"><a href="#chap-6-8"></a></li> + <li class="toc-chap"><a href="#chap-7"></a></li> + <li class="toc-chap"><a href="#chap-8"></a></li> + <li class="toc-chap"><a href="#chap-9"></a></li> + <li class="toc-subchap"><a href="#chap-9-1"></a></li> + <li class="toc-subchap"><a href="#chap-9-2"></a></li> + <li class="toc-subchap"><a href="#chap-9-3"></a></li> + </ul> + <ul id="toc-part-2"> + <li class="toc-part"><a href="#part-2"></a></li> + <li class="toc-chap"><a href="#chap-10"></a></li> + <li class="toc-subchap"><a href="#chap-10-1"></a></li> + <li class="toc-subchap"><a href="#chap-10-2"></a></li> + <li class="toc-subchap"><a href="#chap-10-3"></a></li> + <li class="toc-subchap"><a href="#chap-10-4"></a></li> + <li class="toc-subchap"><a href="#chap-10-5"></a></li> + <li class="toc-subchap"><a href="#chap-10-6"></a></li> + <li class="toc-subchap"><a href="#chap-10-7"></a></li> + <li class="toc-subchap"><a href="#chap-10-8"></a></li> + <li class="toc-chap"><a href="#chap-11"></a></li> + <li class="toc-subchap"><a href="#chap-11-1"></a></li> + <li class="toc-subchap"><a href="#chap-11-2"></a></li> + <li class="toc-subchap"><a href="#chap-11-3"></a></li> + <li class="toc-subchap"><a href="#chap-11-4"></a></li> + <li class="toc-subchap"><a href="#chap-11-5"></a></li> + <li class="toc-subchap"><a href="#chap-11-6"></a></li> + <li class="toc-subchap"><a href="#chap-11-7"></a></li> + <li class="toc-subchap"><a href="#chap-11-8"></a></li> + <li class="toc-subchap"><a href="#chap-11-9"></a></li> + <li class="toc-subchap"><a href="#chap-11-10"></a></li> + <li class="toc-subchap"><a href="#chap-11-11"></a></li> + <li class="toc-chap"><a href="#chap-12"></a></li> + <li class="toc-chap"><a href="#chap-13"></a></li> + </ul> + <ul id="toc-part-3"> + <li class="toc-part"><a href="#part-3"></a></li> + <li class="toc-chap"><a href="#chap-14"></a></li> + <li class="toc-subchap"><a href="#chap-14-1"></a></li> + <li class="toc-subchap"><a href="#chap-14-2"></a></li> + <li class="toc-subchap"><a href="#chap-14-3"></a></li> + <li class="toc-subchap"><a href="#chap-14-4"></a></li> + <li class="toc-subchap"><a href="#chap-14-5"></a></li> + <li class="toc-subchap"><a href="#chap-14-6"></a></li> + <li class="toc-subchap"><a href="#chap-14-7"></a></li> + <li class="toc-subchap"><a href="#chap-14-8"></a></li> + <li class="toc-subchap"><a href="#chap-14-9"></a></li> + <li class="toc-subchap"><a href="#chap-14-10"></a></li> + <li class="toc-subchap"><a href="#chap-14-11"></a></li> + <li class="toc-subchap"><a href="#chap-14-12"></a></li> + <li class="toc-chap"><a href="#chap-15"></a></li> + <li class="toc-subchap"><a href="#chap-15-1"></a></li> + <li class="toc-chap"><a href="#chap-16"></a></li> + <li class="toc-subchap"><a href="#chap-16-1"></a></li> + <li class="toc-subchap"><a href="#chap-16-2"></a></li> + <li class="toc-subchap"><a href="#chap-16-3"></a></li> + <li class="toc-subchap"><a href="#chap-16-4"></a></li> + <li class="toc-chap"><a href="#chap-17"></a></li> + <li class="toc-subchap"><a href="#chap-17-1"></a></li> + <li class="toc-subchap"><a href="#chap-17-2"></a></li> + <li class="toc-chap"><a href="#chap-18"></a></li> + <li class="toc-chap"><a href="#chap-19"></a></li> + <li class="toc-subchap"><a href="#chap-19-1"></a></li> + <li class="toc-subchap"><a href="#chap-19-2"></a></li> + <li class="toc-chap"><a href="#chap-20"></a></li> + </ul> + <ul> + <li class="toc-part-app"><a href="#part-app"></a></li> + <li class="toc-app"><a href="#app-a"></a></li> + <li class="toc-app"><a href="#app-b"></a></li> + <li class="toc-app"><a href="#app-c"></a></li> + <li class="toc-app"><a href="#app-d"></a></li> + <li class="toc-app"><a href="#app-e"></a></li> + </ul> + </section> + + + + + + <!-- page preface_________________________________________________________ --> + <section class="frontmatter preface"> + <h2>Preface</h2> + <p class="shorter">Preface</p> + + <p> + Probably few of the phenomena of Nature so entirely charm and interest scientific and non-scientific observers alike as the Aurora Borealis, or “Northern Lights†as it is popularly called. Whether contemplated as the long low quiescent arc of silver light illuminating the landscape with a tender radiance, as broken clouds and columns of glowing ruddy light, or as sheaves of golden rays, aptly compared by old writers to aerial spears, such a spectacle cannot fail at all times to be a subject of admiration, in some cases even of awe. + </p> + <div id="test-bleed"></div> + <p> + Hence it is no wonder that the Aurora has always received a considerable amount of attention at the hands of scientific men. Early explorers of the Arctic Regions made constant and important observations of it and its character; and the list of references to works given in the Appendix will show how often it formed the subject of monographs and communications to learned Societies. The early contributions seem relatively more numerous than those of a later date; and the substance of them will be found well summed up in Dr. Brewster’s ‘Edinburgh Encyclopædia’ (1830), article “Aurora.†A most complete and able epitome of our more recent experience and knowledge of the Aurora and its spectrum has been contributed by my friend Mr. Henry R. Procter to the present (9th) edition of the ‘Encyclopædia Britannica,’ article “Aurora Polaris.†It is, however, a drawback to Encyclopædic articles that their matter is of necessity condensed, and that they rarely have the very desirable aid of drawings and engravings to illustrate their subjects. In spite, therefore, of the exhaustive way, both as to fact and theory, in which the contributor to the ‘Encyclopædia Britannica’ has realized his task, it seemed to me there was still room left for a popular treatise, having for its object the description of Auroræ, their characters and spectra. The question of the Aurora spectrum seems the more worthy of extended discussion in that it still remains an unsolved problem. In spite of the observations and researches of Ã…ngström, Lemström, and Vogel abroad, and of Piazzi Smyth, Herschel, Procter, Backhouse, and others at home, the goal is not yet reached; for while the faint and more refrangible lines are but doubtfully referred to air, the bright and sharp red and green lines, which mainly characterize the spectrum, are as yet unassociated with any known analogue. + </p> + <p> + With these views, and to incite to further and closer observations, I have been induced to publish the present volume as a sort of Auroral Guide. For much of the history of the Aurora I am indebted to, and quote from former articles and records, including the two excellent Encyclopædic ones before referred to. Mr. Procter, Mr. Backhouse, and my friend Mr. W. H. Olley have each kindly furnished me with much in the way of information and suggestion. Dr. Schuster has lent me tubes showing the true oxygen spectrum; while Herr Carl Bock, the Norwegian naturalist, has enabled me to reproduce a veritable curiosity, viz. a picture in oil painted by the light of a Lapland Aurora. The experiments detailed in Part III. were suggested by the earlier ones of De la Rive, Varley, and others, and demonstrate the effect of the magnet on electric discharges. For assistance in these I am indebted to my friend Mr. E. Dowlen. + </p> + <p> + The illustrations are mainly from original drawings of my own. Those from other sources are acknowledged. Messrs. Mintern have well reproduced in chromo-lithography the coloured drawings illustrating the Auroræ, moon-patches, &c. + </p> + </section> + + <!-- page introduction _________________________________________________________ --> + <section class="frontmatter introduction"> + + <h2>Introduction</h2> + <p class="shorter">Introduction</p> + <p> + Probably few of the phenomena of Nature so entirely charm and interest scientific and non-scientific observers alike as the Aurora Borealis, or “Northern Lights†as it is popularly called. Whether contemplated as the long low quiescent arc of silver light illuminating the landscape with a tender radiance, as broken clouds and columns of glowing ruddy light, or as sheaves of golden rays, aptly compared by old writers to aerial spears, such a spectacle cannot fail at all times to be a subject of admiration, in some cases even of awe. + </p> + <p> + Hence it is no wonder that the Aurora has always received a considerable amount of attention at the hands of scientific men. Early explorers of the Arctic Regions made constant and important observations of it and its character; and the list of references to works given in the Appendix will show how often it formed the subject of monographs and communications to learned Societies. The early contributions seem relatively more numerous than those of a later date; and the substance of them will be found well summed up in Dr. Brewster’s ‘Edinburgh Encyclopædia’ (1830), article “Aurora.†A most complete and able epitome of our more recent experience and knowledge of the Aurora and its spectrum has been contributed by my friend Mr. Henry R. Procter to the present (9th) edition of the ‘Encyclopædia Britannica,’ article “Aurora Polaris.†It is, however, a drawback to Encyclopædic articles that their matter is of necessity condensed, and that they rarely have the very desirable aid of drawings and engravings to illustrate their subjects. In spite, therefore, of the exhaustive way, both as to fact and theory, in which the contributor to the ‘Encyclopædia Britannica’ has realized his task, it seemed to me there was still room left for a popular treatise, having for its object the description of Auroræ, their characters and spectra. The question of the Aurora spectrum seems the more worthy of extended discussion in that it still remains an unsolved problem. In spite of the observations and researches of Ã…ngström, Lemström, and Vogel abroad, and of Piazzi Smyth, Herschel, Procter, Backhouse, and others at home, the goal is not yet reached; for while the faint and more refrangible lines are but doubtfully referred to air, the bright and sharp red and green lines, which mainly characterize the spectrum, are as yet unassociated with any known analogue. + </p> + <p> + With these views, and to incite to further and closer observations, I have been induced to publish the present volume as a sort of Auroral Guide. For much of the history of the Aurora I am indebted to, and quote from former articles and records, including the two excellent Encyclopædic ones before referred to. Mr. Procter, Mr. Backhouse, and my friend Mr. W. H. Olley have each kindly furnished me with much in the way of information and suggestion. Dr. Schuster has lent me tubes showing the true oxygen spectrum; while Herr Carl Bock, the Norwegian naturalist, has enabled me to reproduce a veritable curiosity, viz. a picture in oil painted by the light of a Lapland Aurora. The experiments detailed in Part III. were suggested by the earlier ones of De la Rive, Varley, and others, and demonstrate the effect of the magnet on electric discharges. For assistance in these I am indebted to my friend Mr. E. Dowlen. + </p> + <p> + The illustrations are mainly from original drawings of my own. Those from other sources are acknowledged. Messrs. Mintern have well reproduced in chromo-lithography the coloured drawings illustrating the Auroræ, moon-patches, &c. + </p> + </section> + + <!-- List of plates_________________________________________________________ + <section class="frontmatter list-plates"> + <h2>List of plates</h2> + + <table summary="List of plates" id="plates"> + <tr> + <th class="tdr smaller">Plate.</th> + <th></th> + <th></th> + <th></th> + </tr> + <tr> + <td class="tdr">I.</td> + <td>The Aurora during the Ice-pressure</td> + <td class="nw vb"><i>To face page</i></td> + <td class="tdr vb"><a href="#plate1">14</a></td> + </tr> + <tr> + <td class="tdr">II.</td> + <td>Aurora seen by Dr. Hayes, 6th January, 1861</td> + <td class="nw vb"><span class="ditto1">â€</span> <span class="ditto1">â€</span></td> + <td class="tdr vb"><a href="#plate2">16</a></td> + </tr> + <tr> + <td class="tdr">III.</td> + <td>Aurora, Guildford, Oct. 24, 1870</td> + <td class="nw vb"><span class="ditto1">â€</span> <span class="ditto1">â€</span></td> + <td class="tdr vb"><a href="#plate3">18</a></td> + </tr> + <tr> + <td class="tdr">IV.</td> + <td>Aurora, Guildford, Feb. 4, 1872; Eclipsed Moon, Aug. 23, 24, 1877</td> + <td class="nw vb"><span class="ditto1">â€</span> <span class="ditto1">â€</span></td> + <td class="tdr vb"><a href="#plate4">20</a></td> + </tr> + <tr> + <td class="tdr">V.</td> + <td>Corona, Graphical Auroræ, Zodiacal Light, &c.</td> + <td class="nw vb"><span class="ditto1">â€</span> <span class="ditto1">â€</span></td> + <td class="tdr vb"><a href="#plate5">21</a></td> + </tr> + <tr> + <td class="tdr">VI.</td> + <td>Aurora, Guildford, Feb. 4, 1874; Spectrum des Nordlichts (Vogel)</td> + <td class="nw vb"><span class="ditto1">â€</span> <span class="ditto1">â€</span></td> + <td class="tdr vb"><a href="#plate6">22</a></td> + </tr> + <tr> + <td class="tdr">VII.</td> + <td>Aurora, Kyle Akin, Isle of Skye, Sept. 11, 1874</td> + <td class="nw vb"><span class="ditto1">â€</span> <span class="ditto1">â€</span></td> + <td class="tdr vb"><a href="#plate7">24</a></td> + </tr> + <tr> + <td class="tdr">VIII.</td> + <td>Herr Carl Bock’s Lapland Aurora, Oct. 3, 1877</td> + <td class="nw vb"><span class="ditto1">â€</span> <span class="ditto1">â€</span></td> + <td class="tdr vb"><a href="#plate8">25</a></td> + </tr> + <tr> + <td class="tdr">IX.</td> + <td>Compared Aurora and other Spectra. Loomis’s curves of Auroras, Magnetic Declination, and Solar Spots</td> + <td class="nw vb"><span class="ditto1">â€</span> <span class="ditto1">â€</span></td> + <td class="tdr vb"><a href="#plate9">59</a></td> + </tr> + <tr> + <td class="tdr">X.</td> + <td>Spectroscope, Micrometer, Tubes</td> + <td class="nw vb"><span class="ditto1">â€</span> <span class="ditto1">â€</span></td> + <td class="tdr vb"><a href="#plate10">91</a></td> + </tr> + <tr> + <td class="tdr">XI.</td> + <td>Aurora-spectra, Candle-spectrum</td> + <td class="nw vb"><span class="ditto1">â€</span> <span class="ditto1">â€</span></td> + <td class="tdr vb"><a href="#plate11">102</a></td> + </tr> + <tr> + <td class="tdr">XII.</td> + <td>Aurora-spectrum, Solar spectrum, and Candle-spectrum</td> + <td class="nw vb"><span class="ditto1">â€</span> <span class="ditto1">â€</span></td> + <td class="tdr vb"><a href="#plate12">104</a></td> + </tr> + <tr> + <td class="tdr">XIII.</td> + <td>Vogel’s Aurora-lines, Aurora-lines near G, and in the red and green</td> + <td class="nw vb"><span class="ditto1">â€</span> <span class="ditto1">â€</span></td> + <td class="tdr vb"><a href="#plate13">108</a></td> + </tr> + <tr> + <td class="tdr">XIV.</td> + <td>Aurora, Hydrocarbons, Oxygen</td> + <td class="nw vb"><span class="ditto1">â€</span> <span class="ditto1">â€</span></td> + <td class="tdr vb"><a href="#plate14">110</a></td> + </tr> + <tr> + <td class="tdr">XV.</td> + <td>Aurora and Air-tubes, &c.</td> + <td class="nw vb"><span class="ditto1">â€</span> <span class="ditto1">â€</span></td> + <td class="tdr vb"><a href="#plate15">115</a></td> + </tr> + <tr> + <td class="tdr">XVI.</td> + <td>Aurora, Phosphoretted Hydrogen, Iron, &c.</td> + <td class="nw vb"><span class="ditto1">â€</span> <span class="ditto1">â€</span></td> + <td class="tdr vb"><a href="#plate16">117</a></td> + </tr> + <tr> + <td class="tdr">XVII.</td> + <td>Effect of Magnet on Tubes and Spark</td> + <td class="nw vb"><span class="ditto1">â€</span> <span class="ditto1">â€</span></td> + <td class="tdr vb"><a href="#plate17">134</a></td> + </tr> + <tr> + <td class="tdr">XVIII.</td> + <td>Same, and Oxygen-spectrum</td> + <td class="nw vb"><span class="ditto1">â€</span> <span class="ditto1">â€</span></td> + <td class="tdr vb"><a href="#plate18">154</a></td> + </tr> + </table> + </section> +--> + + + <!-- PART I_________________________________________________________ --> + <section class="part"> + <h2 class="title-part" id="part-1">The Aurora and its characters</h2> + </section> + + + <!-- Chapitre 1_________________________________________________________--> + <section class="chapter" id="chapter-1"> + + <h3 class="titlechapter" id="chap-1">The aurora as known <br/>to the ancients </h3> + <p class="shorter">The aurora as known to the ancients</p> + + + <p>In Seneca’s ‘Quæstiones Naturales,’ Lib. I. c. xiv., we find the following:<span class="sidenote">Seneca’s ‘Quæstiones Naturales,’ Lib. I. c. xiv. Description of Auroræ.</span>—“Tempus est, alios quoque ignes percurrere, + quorum diversæ figuræ sunt. Aliquando emicat stella, aliquando ardores sunt, aliquando fixi et hærentes, + nonnunquam volubiles. Horum plura genera conspiciantur. Sunt <i>Bothynoë</i> <span class="footnote"><span class="greek">βόθυνος</span>, a hollow.</span> Seneca’s ‘Quæstiones Naturales,’ Lib. I. c. xiv. Description of Auroræ.</span>, quum velut corona cingente + introrsus igneus cÅ“li recessus est similis effossæ in orbem speluncæ. Sunt <i>Pithitæ</i> <span class="footnote"><span class="greek">πίθος</span>, a cask.</span>, quum magnitudo + vasti rotundique ignis dolio similis, vel fertur vel in uno loco flagrat. Sunt <i>Chasmata</i> <span class="footnote"><span class="greek">χάσμς</span>, a chasm.</span>, quum aliquod + cÅ“li spatium desedit, et flammam dehiscens, velut in abdito, ostentat. Colores quoque omnium horum plurimi sunt. Quidam ruboris acerrimi, quidam evanidæ ac levis flammæ, quidam candidæ lucis, quidam micantes, quidam æqualiter et sine eruptionibus aut radiis fulvi. + </p> + + <p class="separator"></p> + + <p><span class="sidenote">Seneca,c. xv.</span>C. xv. “Inter hæc ponas licet et quod frequenter in historiis legimus, + cÅ“lum ardere visum: cujus nonnunquam tam sublimis ardor est ut inter + ipsa sidera videatur, nonnunquam tam humilis ut speciem longinqui incendii + præbeat.</p> + + <p>“Sub Tiberio Cæsare cohortes in auxilium Ostiensis coloniæ cucurrerunt, + tanquam conflagrantis, quum cÅ“li ardor fuisset per magnam partem noctis, + parum lucidus crassi fumidique ignis.â€</p> + + <p>We may translate this:<span class="sidenote">Seneca,c. xv.</span>—“It is time other fires also to describe, of which + there are diverse forms.</p> + + <p>“Sometimes a star shines forth; at times there are fire-glows, sometimes + fixed and persistent, sometimes flitting. Of these many sorts may be distinguished. + There are Bothynoë, when, as within a surrounding corona, the + fiery recess of the sky is like to a cave dug out of space. There are Pithitæ, + when the expanse of a vast and rounded fire similar to a tub (dolium) is either + carried about or glows in one spot.</p> + + <p>“There are Chasmata, when a certain portion of the sky opens, and gaping + displays the flame as in a porch. The colours also of all these are many. + Certain are of the brightest red, some of a flitting and light flame-colour, + some of a white light, others shining, some steadily and yellow without + eruptions or rays.</p> + + <p class="separator"></p> + + + <p>“Amongst these we may notice, what we frequently read of in history, the + sky is seen to burn, the glow of which is occasionally so high that it may be + seen amongst the stars themselves, sometimes so near the Earth (humilis) that + it assumes the form of a distant fire. Under Tiberius Cæsar the cohorts ran + together in aid of the colony of Ostia as if it were in flames, when the + glowing of the sky lasted through a great part of the night, shining dimly + like a vast and smoking fire.â€</p> + + + <p>From the above passages many striking particulars of the Aurora may be + gathered; and by the division of the forms of Aurora into classes it is + evident they were, at that period, the subject of frequent observation. + The expression <span class="sidenote"> Auroræ frequently read of in history.</span>“et quod frequenter in historiis legimus†shows, too, that the + phenomena of Auroral displays were a matter of record and discussion with + the writers of the day.</p> + + <p>Various forms of Aurora may be recognized in the passages from Chap. xiv.; + while in those from Chap. xv. a careful distinction is drawn between the + Auroræ seen in the zenith or the upper regions of the sky, and those seen on + the horizon or apparently (and no doubt in some cases actually) near the + Earth’s surface.</p> + + + <p>The description of the cohorts running to the fire only to find it an Aurora, + calls to mind the many similar events happening in our own days. Not, + however, but that a mistake may sometimes occur in an opposite direction. + <span class="sidenote">A spurious Aurora.</span>“In the memoirs of Baron Stockmar an amusing anecdote is related of one + Herr von Radowitz, who was given to making the most of easily picked up + information. A friend of the Baron’s went to an evening party near Frankfort, + where he expected to meet Herr von Radowitz. On his way he saw a + barn burning, stopped his carriage, assisted the people, and waited till the + flames were nearly extinguished. When he arrived at his friend’s house he + found Herr von Radowitz, who had previously taken the party to the top of + the building to see an Aurora, dilating on terrestrial magnetism, electricity, + and so forth. Radowitz asked Stockmar’s friend, “Have you seen the beautiful + Aurora Borealis?†He replied, “Certainly; I was there myself; it will soon + be over.†An explanation followed as to the barn on fire: Radowitz was + silent some ten minutes, then took up his hat and quietly disappeared.</p> + + + + <p>It is probable that many of the phantom combats which are recorded to + have appeared in forms of fire in the air on the evenings preceding great + battles might be traced to Auroræ, invested with distinct characteristics by + the imagination of the beholders. <span class="sidenote">Auroræ as portents.</span>Auroræ are said to have appeared in the + shape of armies of horse and foot engaged in battle in the sky before the + death of Julius Cæsar, which they were supposed to foretell. For more than + a year before the siege and destruction of Jerusalem by Titus Vespasian, the + Aurora was said to have been frequently visible in Palestine.</p> + + <p>Josephus, in his ‘Wars of the Jews’ (Whiston’s Translation, Book VI. + chap. v. sect. 3), in referring to the signs and wonders preceding the destruction + of Jerusalem, speaks of a star or comet, and that a great light shone + round about the altar and the holy house, which light lasted for half an hour, + and that a few days after the feast of unleavened bread a certain prodigious + and incredible phenomenon appeared—“for before sunsetting chariots and + troops of soldiers in their armour were seen running about among the clouds, + and surrounding of cities.†(This, if an Aurora, must have been an instance + of a daylight one.)</p> + + <p>We find in Book II. of Maccabees, chap. v. verses 1, 2, 3, 4 (<span class="smcapuc">B.C.</span> about + 176 years):</p> + + + <p>“1. About this same time Antiochus prepared his second voyage into Egypt:</p> + + <p>“2. And then it happened that through all the city, for the space almost of + forty days, there were seen horsemen running in the air, in cloth of gold, and + armed with lances like a band of soldiers.</p> + + <p>“3. And troops of horsemen in array, encountering and running one against + another, with shaking of shields and multitude of pikes, and drawing of + swords and casting of darts, and glittering of golden ornaments and harness + of all sorts.</p> + + <p>“4. Wherefore every man prayed that that apparition might turn to + good.â€</p> + + + + <p><span class="sidenote">Early descriptions of Auroræ.</span>In Aristotle’s ‘De Meteoris,’ Lib. I. c. iv. and v., the Aurora is described + as an appearance resembling flame mingled with smoke, and of a purple red + or blue colour. Pliny (Lib. II. c. xxvii.) speaks of a bloody appearance of + the heavens which seemed like a fire descending on the earth, seen in the + third year of the 107th Olympiad, and of a light seen in the nighttime + equal to the brightness of the day, in the Consulship of Cæcilius and Papirius + (Lib. II. c. xxxiii.), both of which may be referred to Auroræ.</p> + + <p>In the ‘Annals of Philosophy,’ vol. ix. p. 250, it is stated that the Aurora + among English writers is first described by Matthew of Westminster, who + relates that in <span class="smcapuc">A.D.</span> 555 lances were seen in the air (“quasi species lancearum + in aëre visæ sunt a septentrionali usque ad occidentemâ€).</p> + + <p>In the article in the ‘Edinb. Encyc.’ vol. iii. (1830), the Aurora (known to the + vulgar as “streamers†or “merry dancersâ€) is distinguished in two kinds—the + “tranquil†and the “varying.†Musschenbroek enumerates as forms:—<i>trabs</i>, + “the beam,†an oblong tract parallel to the horizon; <i>sagitta</i>, “the + arrow;†<i>faces</i>, “the torch;†<i>capra saltans</i>, “the dancing goat;†<i>bothynoë</i>, + “the cave,†a luminous cloud having the appearance of a recess or hollow in + the heavens, surrounded by a corona; <i>pithiæ</i>, “the tun,†an Aurora resembling + a large luminous <i>cask</i>. The two sorts of Auroræ distinguished as + the “bothynoë†and “pithiæ†are evidently taken from the passage in Seneca’s + ‘Quæstiones’ before quoted. In ‘Liberti Fromondi Meteorologicorum’ + (London, 1656), Lib. II. cap. v. “De Meteoris supremæ regionis aëris,†+ art. 1. De Capra, Trabe, Pyramide, &c., these and other fantastic forms + attributable to Auroræ are more fully described.</p> + + <p>In the article “Aurora Polaris,†Encyc. Brit. edit. ix., we find noted that + from a curious passage in Sirr’s ‘Ceylon and the Cingalese,’ vol. ii. p. 117, it + would seem that the Aurora, or something like it, is visible occasionally in + Ceylon, where the natives call it “Buddha Lights,†and that in many parts + of Ireland a scarlet Aurora is supposed to be a shower of blood. The earliest + mentioned Aurora (in Ireland) was in 688, in the ‘Annals of Cloon-mac-noise,’ + after a battle between Leinster and Munster, in which Foylcher O’Moyloyer + was slain.</p> + + <p>In the article in the Edinb. Encyc. before referred to it is stated that it was + not much more than a century ago that the phenomenon had been noticed to + occur with frequency in our latitudes.</p> + + <p>Dr. Halley had begun to despair of seeing one till the fine display of + 1716.</p> + + <p><span class="sidenote">Early notices of Auroræ not frequent in our latitudes.</span> The first account on record in an English work is said to be in a book + entitled ‘A Description of Meteors by W. F. D. D.’ (reprinted, London, 1654), + which speaks of “burning spears†being seen January 30, 1560. The next + is recorded by Stow as occurring on October 7, 1564; and, according to Stow + and Camden, an Aurora was seen on two nights, 14th and 15th November, + 1574.</p> + + <p>Twice, again, an Aurora was seen in Brabant, 13th February and 28th + September, 1575. Cornelius Gemma compared these to spears, fortified + cities, and armies fighting in the air. Auroræ were seen in 1580 and 1581 + in Wirtemberg, Germany.</p> + + <p>Then we have no record till 1621, when an Aurora, described by Gassendi + in his ‘Physics,’ was seen all over France, September 2nd of that year.</p> + + <p>In November 1623 another, described by Kepler, was seen all over + Germany.</p> + + <p>From 1666 to 1716 no appearance is recorded in the ‘Transactions of the + French Academy of Sciences;’ but in 1707 one was seen in Ireland and at + Copenhagen; while in 1707 and 1708 the Aurora was seen five times.</p> + + <p>The Aurora of 1716, occurring after an interval of eighty years, which + Dr. Halley describes, was very brilliant and extended over much country, + being seen from the west of Ireland to the confines of Russia and the east of + Poland, extending nearly 30° of longitude, and from about the 50th degree of + latitude, over almost all the north of Europe, and in all places exhibiting at + the same time appearances similar to those observed in London. An Aurora + observed in Bologna in 1723 was stated to be the first that had ever been + seen there; and one recorded in the ‘Berlin Miscellany’ for 1797 is called a + very unusual phenomenon. Nor did Auroræ appear more frequent in the + Polar Regions at that time, for Cælius states that the oldest inhabitants of + Upsala considered the phenomenon as quite rare before 1716. Anderson, of + Hamburg, writing about the same time, says that in Iceland the inhabitants + themselves were astonished at the frequent Auroræ then beginning to take + place; while Torfæus, the Icelander, who wrote in 1706, was old enough + to remember the time when the Aurora was an object of terror in his native + country.</p> + + <p>According to M. Mairan, 1441 Auroræ were observed between <span class="smcapuc">A.D.</span> 583 + and 1751, of which 972 were observed in the winter half-years and 469 + during the summer half-years. In our next Chapter we propose to give some + general descriptions of Auroræ from comparatively early sources.</p> + + </section> + + <!-- Chapitre 2_________________________________________________________--> + <section class="chapter" id="chapter-2"> + + <h3 class="titlechapter" id="chap-2">Some general descriptions of auroræ</h3> + <p class="shorter">Some general descriptions of auroræ</p> + + + <p><span class="sidenote">Sir John Franklin’s description.</span>Sir John Franklin (‘Narrative of a Journey to the Shores of the Polar Sea + in the years 1819, 1820, 1821, 1822’) describes an Aurora in these terms:—</p> + + <p><span class="sidenote">Parts of the Aurora: beams, flashes, and arches.</span>“For the sake of perspicuity I shall describe the several parts of the + Aurora, which I term beams, flashes, and arches.</p> + + <p>“The beams are little conical pencils of light, ranged in parallel lines, + with their pointed extremities towards the earth, generally in the direction + of the dipping-needle.</p> + + <p><span class="sidenote">Formation of the Aurora.</span>“The flashes seem to be scattered beams approaching nearer to the earth, + because they are similarly shaped and infinitely larger. I have called them + flashes, because their appearance is sudden and seldom continues long. + When the Aurora first becomes visible it is formed like a rainbow, the light + of which is faint, and the motion of the beams undistinguishable. It is + then in the horizon. As it approaches the zenith it resolves itself into + beams which, by a quick undulating motion, project themselves into wreaths, + afterwards fading away, and again and again brightening without any visible + expansion or contraction of matter. Numerous flashes attend in different + parts of the sky.â€</p> + + <p><span class="sidenote">Arches of the Aurora.</span>Sir John Franklin then points out that this mass would appear like an arch + to a person situated at the horizon by the rules of perspective, assuming its + parts to be equidistant from the earth; and mentions a case when an Aurora, + which filled the sky at Cumberland House from the northern horizon to the + zenith with wreaths and flashes, assumed the shape of arches at some distance + to the southward. He then continues:—“But the Aurora does not always + make its first appearance as an arch. It sometimes rises from a confused mass + of light in the east or west, and crosses the sky towards the opposite point, + exhibiting wreaths of beams or coronæ boreales on its way. An arch also, + which is pale and uniform at the horizon, passes the zenith without displaying + any irregularity or additional brilliancy.†Sir John Franklin then mentions + seeing three arches together, very near the northern horizon, one of which + exhibited beams and even colours, but the other two were faint and uniform. + (See example of a doubled arc Aurora observed at Kyle Akin, Skye, Plate + VII.)</p> + + + <p>He also mentions an arch visible to the southward exactly similar to one in + the north. It appeared in fifteen minutes, and he suggests it probably had + passed the zenith before sunset. The motion of the whole body of the + Aurora from the northward to the southward was at angles not more than + 20° from the magnetic meridian. The centres of the arches were as often in + the magnetic as in the true meridian. A delicate electrometer, suspended + 50 feet from the ground, was never perceptibly affected by the Aurora.</p> + + + <p><span class="sidenote">Aurora does not often appear until some hours after sunset.</span>Sir John Franklin further remarks that the Aurora did not often appear + immediately after sunset, and that the absence of that luminary for some + hours was in general required for the production of a state of atmosphere + favourable to the generation of the Aurora.</p> + + + <p><span class="sidenote">Aurora seen in daylight.</span>On one occasion, however (March 8th, 1821), he observed it distinctly + previous to the disappearance of daylight; and he subsequently states that + on four occasions the coruscations of the Aurora were seen very distinctly + before daylight had disappeared.</p> + + <p>[In the article “Aurora Polaris,†Encyc. Brit. edit. ix., the Transactions of + the Royal Irish Academy, 1788, are referred to, where Dr. Usher notices that + the Aurora makes the stars flutter in the telescope; and that, having remarked + this effect strongly one day at 11 <span class="smcapuc">A.M.</span>, he examined the sky, and saw + an Auroral corona with rays to the horizon.</p> + + <p>Instances are by no means rare of the principal Aurora-line having been + seen in waning sunlight, and in anticipation of an Aurora which afterwards + appeared.]</p> + + <span class="sidenote"> Auroral arch. Passage across the zenith.</span> + + <p><span class="sidenote">The Rev. James Farquharson’s observations.</span>The Rev. James Farquharson, from the observation of a number of Auroræ + in Aberdeenshire in 1823 (‘Philosophical Transactions,’ 1829), concluded:—that + the Aurora follows an invariable order in its appearance and progress; + that the streamers appear first in the north, forming an arch from east to + west, having its vertex at the line of the magnetic meridian <span class="sidenote">Auroral arch.</span>(when this + arch is of low elevation it is of considerable breadth from north to south, + having the streamers placed crosswise in relation to its own line, and all + directed towards a point a little south of the zenith); that the arch moves + forward towards the south, contracting laterally as it approaches the zenith, + and increasing its intensity of light by the shortening of the streamers and the + gradual shifting of the angles which the streamers near the east and west + extremities of the arch make with its own line, till at length these streamers + become parallel to that line, and then the arch is seen in a narrow belt 3° or + 4° only in breadth, stretching across the zenith at right angles to the magnetic + meridian; that it still makes progress southwards, and after it has reached + several degrees south of the zenith again enlarges its breadth by exhibiting + an order of appearances the reverse of that which attended its progress + towards the zenith from the north; <span class="sidenote">Passage across the zenith.</span>that the only conditions that can explain + and reconcile these appearances are that the streamers of the Aurora are + vertical, or nearly so, and form a deep fringe which stretches a great way from + east to west at right angles to the magnetic meridian, but which is of no great + thickness from north to south, and that the fringe moves southward, preserving + its direction at right angles to the magnetic meridian.</p> + + + <p><span class="sidenote">M. Lottin’s observations.</span>Dr. Lardner, in his ‘Museum of Science and Art,’ vol. x. p. 189 <i>et seq.</i>, + alludes to a description of “this meteor†(<i>sic</i>) supplied by M. Lottin, an officer + of the French Navy, and a Member of the Scientific Commission to the North + Seas. Between September 1838 and April 1839, being the interval when + the sun was constantly below the horizon, this savant observed nearly 150 + Auroræ. During this period sixty-four were visible, besides many concealed + by a clouded sky, but the presence of which was indicated by the disturbances + they produced upon the magnetic needle.</p> + + <p>The succession of appearances and changes presented by these “meteors†+ is thus graphically described by M. Lottin:—</p> + + <p><span class="sidenote">Formation of the auroral bow.</span>“Between four and eight o’clock <span class="smcapuc">P.M.</span> a light fog, rising to the altitude of + six degrees, became coloured on its upper edge, being fringed with the light + of the meteor rising behind it. This border, becoming gradually more + regular, took the form of an arch, of a pale yellow colour, the edges of which + were diffuse, the extremities resting on the horizon. This bow swelled slowly + upwards, its vertex being constantly on the magnetic meridian. Blackish + streaks divided regularly the luminous arc, and resolved it into a system of + rays. These rays were alternately extended and contracted, sometimes slowly, + sometimes instantaneously, sometimes they would dart out, increasing and + diminishing suddenly in splendour. The inferior parts, or the feet of the + rays, presented always the most vivid light, and formed an arc more or less + regular. The length of these rays was very various, but they all converged + to that point of the heavens indicated by the direction of the southern pole + of the dipping-needle. Sometimes they were prolonged to the point where + their directions intersected, and formed the summit of an enormous dome of + light.</p> + + + <p><span class="sidenote">It ascends to the zenith.</span>“The bow then would continue to ascend toward the zenith. It would + suffer an undulatory motion in its light—that is to say, that from one extremity + to the other the brightness of the rays would increase successively in + intensity. This luminous current would appear several times in quick succession, + and it would pass much more frequently from west to east than in + the opposite direction. Sometimes, but rarely, a retrograde motion would + take place immediately afterward; and as soon as this wave of light had run + successively over all the rays of the Aurora from west to east, it would return + in the contrary direction to the point of its departure, producing such an + effect that it was impossible to say whether the rays themselves were actually + affected by a motion of translation in a direction nearly horizontal, or if this + more vivid light was transferred from ray to ray, the system of rays themselves + suffering no change of position. The bow, thus presenting the appearance + of an alternate motion in a direction nearly horizontal, had usually + the appearance of the undulations or folds of a ribbon or flag agitated by the + wind. Sometimes one, and sometimes both of its extremities would desert + the horizon, and then its folds would become more numerous and marked, + the bow would change its character and assume the form of a long sheet of + rays returning into itself, and consisting of several parts forming graceful + curves. The brightness of the rays would vary suddenly, sometimes surpassing + in splendour stars of the first magnitude; these rays would rapidly + dart out, and curves would be formed and developed like the folds of a + serpent; then the rays would affect various colours, the base would be red, + the middle green, and the remainder would preserve its clear yellow hue. + Such was the arrangement which the colours always preserved. They were + of admirable transparency, the base exhibiting blood-red, and the green of + the middle being that of the pale emerald; the brightness would diminish, + the colours disappear and all be extinguished, sometimes suddenly and sometimes + by slow degrees. After this disappearance fragments of the bow + would be reproduced, would continue their upward movement and approach + the zenith; the rays, by the effect of perspective, would be gradually + shortened; the thickness of the arc, which presented then the appearance of + a large zone of parallel rays, would be extended; then the vertex of the + bow would reach the magnetic zenith, or the point to which the south pole + of the dipping-needle is directed. <span class="sidenote">Reaches the zenith.</span>At that moment the rays would be seen + in the direction of their feet. If they were coloured they would appear as + a large red band, through which the green tints of their superior parts could + be distinguished, and if the wave of light above mentioned passed along + them their feet would form a long sinuous undulating zone; while throughout + all these changes the rays would never suffer any oscillation in the direction + of their axis, and would constantly preserve their mutual parallelisms.</p> + + <p>“While these appearances are manifested new bows are formed, either + commencing in the same diffuse manner or with vivid and ready formed rays; + they succeed each other, passing through nearly the same phases, and arrange + themselves at certain distances from each other. <span class="sidenote">Multiple bows.</span>As many as nine have been + counted having their ends supported on the earth, and in their arrangement + resembling the short curtains suspended one behind the other over the scene + of a theatre, and intended to represent the sky. Sometimes the intervals + between these bows diminish, and two or more of them close upon each + other, forming one large zone traversing the heavens and disappearing towards + the south, becoming rapidly feeble after passing the zenith. But sometimes + also, when this zone extends over the summit of the firmament from east to + west, <span class="sidenote">Corona formed.</span>the mass of rays appear suddenly to come from the south, and to form, + with those from the north, the real boreal corona, all the rays of which + converge to the zenith. This appearance of a crown, therefore, is doubtless + the mere effect of perspective; and an observer placed at the same instant at + a certain distance to the north or to the south would perceive only an arc.</p> + + <p>“The total zone, measuring less in the direction north and south than in + the direction east and west, since it often leans upon the corona, would be + expected to have an elliptical form; but that does not always happen: it has + been seen circular, the unequal rays not extending to a greater distance than + from eight to twelve degrees from the zenith, while at other times they reach + the horizon.</p> + + <p>“Let it then be imagined that all these vivid rays of light issue forth + with splendour, subject to continual and sudden variations in their length + and brightness; that these beautiful red and green tints colour them at intervals; + that waves of light undulate over them; that currents of light + succeed each other; and in fine, that the vast firmament presents one immense + and magnificent dome of light, reposing on the snow-covered base supplied + by the ground, which itself serves as a dazzling frame for a sea calm and + black as a pitchy lake. And some idea, though an imperfect one, may be + obtained of the splendid spectacle which presents itself to him who witnesses + the Aurora from the Bay of Alten.</p> + + + <p><span class="sidenote">Duration of corona.</span>“The corona when it is formed only lasts for some minutes; it sometimes + forms suddenly, without any previous bow. There are rarely more than two + on the same night, and many of the Auroras are attended with no crown + at all.</p> + + + + <p>“The corona becomes gradually faint, the whole phenomenon being to the + south of the zenith, forming bows gradually paler and generally disappearing + before they reach the southern horizon. All this most commonly takes place + in the first half of the night, after which the Aurora appears to have lost its + intensity; the pencils of rays, the bands, and the fragments of bows appear + and disappear at intervals. Then the rays become more and more diffused, + and ultimately merge into the vague and feeble light which is spread over + the heavens, grouped like little clouds, and designated by the name of + auroral plates (plaques aurorales). Their milky light frequently undergoes + striking changes in the brightness, like motions of dilatation and contraction, + which are propagated reciprocally between the centre and the circumference, + like those which are observed in marine animals called Medusæ. <span class="sidenote">Disappearance of Aurora.</span>The phenomena + become gradually more faint, and generally disappear altogether on + the appearance of twilight. Sometimes, however, the Aurora continues + after the commencement of daybreak, when the light is so strong that a + printed book may be read. It then disappears, sometimes suddenly; but it + often happens that, as the daylight augments, the Aurora becomes gradually + vague and undefined, takes a whitish colour, and is ultimately so mingled + with the cirro-stratus clouds that it is impossible to distinguish it from them.â€</p> + + <p>Lieutenant Weyprecht has grandly described forms of Aurora in Payer’s + ‘New Lands within the Arctic Circle’ (vol. i. p. 328 <i>et seq.</i>) as follows:—</p> + + + <p><span class="sidenote">Lieut. Weyprecht’s description.</span>“There in the south, low on the horizon, stands a faint arch of light. It + looks as it were the upper limit of a dark segment of a circle; but the stars, + which shine through it in undiminished brilliancy, convince us that the + darkness of the segment is a delusion produced by contrast. Gradually the + arch of light grows in intensity and rises to the zenith. It is perfectly + regular; its two ends almost touch the horizon, and advance to the east and + west in proportion as the arch rises. No beams are to be discovered in it, + but the whole consists of an almost uniform light of a delicious tender colour. + It is transparent white with a shade of light green, not unlike the pale green + of a young plant which germinates in the dark. The light of the moon + appears yellow contrasted with this tender colour, so pleasing to the eye and + so indescribable in words, a colour which nature appears to have given only + to the Polar Regions by way of compensation. The arch is broad, thrice the + breadth, perhaps, of the rainbow, and its distinctly marked edges are strongly + defined on the profound darkness of the Arctic heavens. The stars shine + through it with undiminished brilliancy. The arch mounts higher and + higher. An air of repose seems spread over the whole phenomenon; here + and there only a wave of light rolls slowly from one side to the other. It + begins to grow clear over the ice; some of its groups are discernible. The + arch is still distant from the zenith, a second detaches itself from the dark + segment, and this is gradually succeeded by others. All now rise towards + the zenith; the first passes beyond it, then sinks slowly towards the northern + horizon, and as it sinks loses its intensity. <span class="sidenote">Formation of arches.</span>Arches of light are now stretched + over the whole heavens; seven are apparent at the same time on the sky, + though of inferior intensity. The lower they sink towards the north the + paler they grow, till at last they utterly fade away. Often they all return + over the zenith, and become extinct just as they came.</p> + + + <p>“It is seldom, however, that an Aurora runs a course so calm and so + regular. The typical dark segment, which we see in treatises on the subject, + in most cases does not exist. A thin bank of clouds lies on the horizon. + <span class="sidenote">Band of light appears.</span>The upper edge is illuminated; out of it is developed a band of light, which + expands, increases in intensity of colour, and rises to the zenith. The colour + is the same as in the arch, but the intensity of the colour is stronger. The + colours of the band change in a never-ceasing play, but place and form + remain unaltered. The band is broad, and its intense pale green stands out + with wonderful beauty on the dark background. Now the band is twisted + into many convolutions, but the innermost folds are still to be seen distinctly + through the others. Waves of light continually undulate rapidly through + its whole extent, sometimes from right to left, sometimes from left to right. + Then, again, it rolls itself up in graceful folds. It seems almost as if breezes + high in the air played and sported with the broad flaming streamers, the + ends of which are lost far off on the horizon. The light grows in intensity, + the waves of light follow each other more rapidly, prismatic colours appear + on the upper and lower edge of the band, the brilliant white of the centre + is enclosed between narrow stripes of red and green. Out of one band have + now grown two. <span class="sidenote"> Second band and rays.</span>The upper continually approaches the zenith, rays begin + to shoot forth from it towards a point near the zenith to which the south + pole of the magnetic needle, freely suspended, points.</p> + + <p>“The band has nearly reached it, and now begins a brilliant play of rays + lasting for a short time, the central point of which is the magnetic pole—a + sign of the intimate connexion of the whole phenomenon with the magnetic + forces of the earth. Round the magnetic pole short rays flash and flare + on all sides, prismatic colours are discernible on all their edges, longer and + shorter rays alternate with each other, waves of light roll round it as a centre. + <span class="sidenote">Corona formed.</span>What we see is the auroral corona, and it is almost always seen when a band + passes over the magnetic pole. This peculiar phenomenon lasts but a short + time. The band now lies on the northern side of the firmament, gradually + it sinks, and pales as it sinks; it returns again to the south to change and + play as before. So it goes on for hours, the Aurora incessantly changes + place, form, and intensity. It often entirely disappears for a short time, + only to appear again suddenly, without the observers clearly perceiving how + it came and where it went; simply, it is there.</p> + + <p><span class="sidenote">Single-rayed band.</span>“But the band is often seen in a perfectly different form. Frequently it + consists of single rays, which, standing close together, point in an almost + parallel direction towards the magnetic pole. These become more intensely + bright with each successive wave of light; hence each ray appears to flash + and dart continually, and their green and red edges dance up and down as + the waves of light run through them. Often, again, the rays extend through + the whole length of the band, and reach almost up to the magnetic pole. + These are sharply marked, but lighter in colour than the band itself, and in + this particular form they are at some distance from each other. Their colour + is yellow, and it seems as if thousands of slender threads of gold were + stretched across the firmament. A glorious veil of transparent light is spread + over the starry heavens; the threads of light with which this veil is woven + are distinctly marked on the dark background; its lower border is a broad + intensely white band, edged with green and red, which twists and turns in + constant motion. A violet-coloured auroral vapour is often seen simultaneously + on different parts of the sky.</p> + + + + <p><span class="sidenote">Aurora in stormy weather.</span>“Or, again, there has been tempestuous weather, and it is now, let us + suppose, passing away. Below, on the ice, the wind has fallen; but the + clouds are still driving rapidly across the sky, so that in the upper regions its + force is not yet laid. Over the ice it becomes somewhat clear; behind the + clouds appears an Aurora amid the darkness of the night. Stars twinkle + here and there; through the opening of the clouds we see the dark firmament, + and the rays of the Aurora chasing one another towards the zenith. The + heavy clouds disperse, mist-like masses drive on before the wind. <span class="sidenote">Fragments.</span>Fragments + of the northern lights are strewn on every side: it seems as if the storm had + torn the Aurora bands to tatters, and was driving them hither and thither + across the sky. These threads change form and place with incredible + rapidity. Here is one! lo, it is gone! Scarcely has it vanished before it + appears again in another place. Through these fragments drive the waves of + light: one moment they are scarcely visible, in the next they shine with + intense brilliancy. But their light is no longer that glorious pale green; it + is a dull yellow. It is often difficult to distinguish what is Aurora and what + is vapour; the illuminated mists as they fly past are scarcely distinguishable + from the auroral vapour which comes and goes on every side.</p> + + + + + <p><span class="sidenote">Bands.</span>“But, again, another form. Bands of every possible form and intensity + have been driving over the heavens. It is now eight o’clock at night, the + hour of the greatest intensity of the northern lights. For a moment some + bundles of rays only are to be seen in the sky. In the south a faint, scarcely + visible band lies close to the horizon. All at once it rises rapidly, and spreads + east and west. The waves of light begin to dart and shoot, some rays mount + towards the zenith. For a short time it remains stationary, then suddenly + springs to life. The waves of light drive violently from east to west, the + edges assume a deep red and green colour, and dance up and down. The + rays shoot up more rapidly, they become shorter; all rise together and + approach nearer and nearer to the magnetic pole. <span class="sidenote">Rays reach the pole.</span>It looks as if there were + a race among the rays, and that each aspired to reach the pole first. And + now the point is reached, and they shoot out on every side, to the north and + the south, to the east and the west. Do the rays shoot from above downwards, + or from below upwards? Who can distinguish? From the centre + issues a sea of flames: is that sea red, white, or green? Who can say? It is + all three colours at the same moment! The rays reach almost to the horizon: + the whole sky is in flames. Nature displays before us such an exhibition of + fireworks as transcends the powers of imagination to conceive. Involuntarily + we listen; such a spectacle must, we think, be accompanied with sound. + <span class="sidenote">No noise.</span>But unbroken stillness prevails; not the least sound strikes on the ear. + Once more it becomes clear over the ice, and the whole phenomenon has + disappeared with the same inconceivable rapidity with which it came, and + gloomy night has again stretched her dark veil over everything. This was the + Aurora of the coming storm—the Aurora in its fullest splendour. No pencil + can draw it, no colours can paint it, and no words can describe it in all its + magnificence.â€</p> + + <p>A reproduction of the woodcut in Payer’s ‘Austrian Arctic Voyages,’ + illustrating some of the features of the above description, will be found on + <span class="cross-ref">Plate I</span>.</p> + + <figure class="plate" id="plate1"> + <!-- <img src="images/plate1.jpg" /> --> + <figcaption>The aurora during the ice-pressure.</figcaption> + <p class="figsource"><i>[Payer's Austrian Artics Voyages.]</i></p> + </figure> + + <p>In the ‘Edinburgh Encyclopædia,’ article “Aurora,†we find:—</p> + + + + <p><span class="sidenote">Descriptions of Auroræ in high Northern latitudes.</span>“In high Northern latitudes the Auroræ Boreales are singularly resplendent, + and even terrific.</p> + + <p>“They frequently occupy the whole heavens, and, according to the testimony + of some, eclipse the splendour of stars, planets, and moon, and even of the + sun itself.</p> + + <p><span class="sidenote">In Siberia.</span>“In the south-eastern districts of Siberia, according to the description of + Gmelin, cited and translated by Dr. Blagden (Phil. Trans. vol. lxxiv. p. 228), + the Aurora is described to begin with single bright pillars, rising in the + north, and almost at the same time in the north-east, which, gradually + increasing, comprehend a large space of the heavens, rush about from place + to place with incredible velocity, and finally almost cover the whole sky up + to the zenith, and produce an appearance as if a vast tent were expanded in + the heavens, glittering with gold, rubies, and sapphires. A more beautiful + spectacle cannot be painted; but whoever should see such a northern light + for the first time could not behold it without terror.â€</p> + + + <p><span class="sidenote">Maupertius’s description at Oswer-Zornea.</span>Maupertius describes a remarkable Aurora he saw at Oswer-Zornea on the + 18th December, 1876. An extensive region of the heavens towards the + south appeared tinged of so lively a red that the whole constellation of Orion + seemed as if dyed in blood. The light was for some time fixed, but soon + became movable, and, after having successively assumed all the tints of violet + and blue, it formed a dome of which the summit nearly approached the + zenith in the south-west.</p> + + <p><span class="sidenote">Red Auroræ rare in Lapland.</span>Maupertius adds that he observed only two of the red northern lights in + Lapland, and that they are of very rare occurrence in that country.</p> + + <p>The observations of Carl Bock, the Norwegian naturalist, kindly communicated + by him to me, and detailed in Chapter III., quite confirm this + observation of Maupertius as to the rare occurrence of red Auroræ in + Lapland, he having only seen one.</p> + + </section> + + <!-- Chapitre 3_________________________________________________________--> + <section class="chapter" id="chapter-3"> + <h3 class="titlechapter" id="chap-3">Some specific descriptions of auroræ, including results of the english arctic expedition, 1875-76</h3> + <p class="shorter">Some specific descriptions of auroræ</p> + + <h4 id="chap-3-1">Captain Sabine’s Auroræ.</h4> + + <p>Captain Sabine describes Auroræ seen at Melville Island<span class="sidenote">Captain Sabine’s Auroræ.</span>(Parry’s first + voyage, January 15). Towards the southern horizon an ordinary Aurora + appeared. The luminous arch broke into masses streaming in different + directions, always to the east of the zenith.</p> + + + <p>The various masses seemed to arrange themselves in two arches, one + passing near the zenith and a second midway between the zenith and the + horizon<span class="sidenote">Curvature of arches towards each other.</span>, both north and south, but curving towards each other. At one + time a part of the arch near the zenith was bent into convolutions like a + snake in motion and undulating rapidly.</p> + + <h4 id="chap-3-2">Aurora seen at Sunderland, February 8th, 1817.</h4> + + <p>(‘Annals of Philosophy,’ vol. ix. p. 250.)</p> + + <p>It began about 7 <span class="smcapuc">P.M.</span> during a strong gale from the N.W., with single + bright streamers in the N. and N.W., which covered a large space and rushed + about from place to place with amazing velocity, and had a fine tremulous + motion, illuminating the hemisphere as much as the moon does eight or nine + days from change. About 11 o’clock part of the streamers appeared as if + projected south of the zenith and looked like the pillars of an immense + amphitheatre<span class="sidenote">Aurora seen at Sunderland, Feb. 8, 1817. Formation of corona.</span>, presenting a most brilliant spectacle and seeming to be in a + lower region of the atmosphere, and to descend and ascend in the air for + several minutes. (This appears to have been the formation of a corona.) + One streamer passed over Orion, but neither increased nor diminished its + splendour.</p> + + <h4 id="chap-3-3">Description of Aurora by Dr. Hayes, 6th January, 1861.</i></h4> + + + + <p><span class="sidenote">Dr. Hayes’s Aurora, 6th January, 1861.</span>‘Recent Polar Voyages’ contains a narrative of the voyage of Dr. Hayes, + who sailed from Boston on the 6th of July, 1860, and wintered at Port + Foulbe. He witnessed a remarkable display of the Aurora Borealis on the + morning of the 6th January, 1861.<span class="sidenote">Development of Aurora.</span></p> + + + + + <p>The darkness was so profound as to be oppressive. Suddenly, from the + rear of the black cloud which obscured the horizon, flashed a bright ray. + Presently an arch of many colours fixed itself across the sky, and the Aurora + gradually developed.</p> + + + <p>The space within the arch was filled by the black cloud; but its borders + brightened steadily, though the rays discharged from it were exceeding + capricious, now glaring like a vast conflagration, now beaming like the glow + of a summer morn. More and more intense grew the light, until, from + irregular bursts, it matured into an almost uniform sheet of radiance. + Towards the end of the display its character changed. Lurid fires flung + their awful portents across the sky, before which the stars seemed to recede + and grow pale.</p> + + + <p>The colour of the light was chiefly red; but every tint had its turn, and + sometimes two or three were mingled; blue and yellow streamers shot across + the terrible glare, or, starting side by side from the wide expanse of the + radiant arch, melted into each other, and flung a strange shade of emerald + over the illuminated landscape. Again this green subdues and overcomes + the red; then azure and orange blend in rapid flight, subtle rays of violet + pierce through a broad flash of yellow, and the combined streams issue in + innumerable tongues of white flame, which mount towards the zenith. <span class="sidenote">Mixed colours. Colours change. Tongues of white flame formed.</span> + </p> + + <p>The illustration which accompanies this description in the work is reproduced + on Plate II., and forcibly reminds one of the “curtains†of the + Aurora described in the preceding Chapter by Mons. Lottin.</p> + + + + <figure class="plate" id="plate2"> + <!-- <img src="images/plate2.jpg" /> --> + <figcaption></figcaption> + </figure> + + <h4 id="chap-3-4">Prof. Lemström’s Aurora of 1st September, 1868.</h4> + + + + <p><span class="sidenote">Prof. Lemström’s Aurora, 1st September, 1868.</span>In the first Swedish Expedition, 1868, some remarkable observations were + made on the appearance of luminous beams around the tops of mountains, + which M. Lemström showed by the spectroscope to be of the same nature as + Auroræ.</p> + + + + <p>On the 1st September, 1868, on the Isle of Amsterdam in the Bay of + Sweerenberg, there was a light fall of snow, and the snowflakes were observed + falling obliquely. <span class="sidenote">Aurora from earth’s surface.</span>All at once there appeared a luminous phenomenon + which, starting from the earth’s surface, shot up vertically, cutting the + direction of the falling snowflakes, and this appearance lasted for some + seconds. <span class="sidenote">Yellow-green line seen.</span>On examination with a spectroscope the yellow-green line was + found by Lemström (but of feeble intensity) when the slit of the instrument + was directed towards a roof or other object covered with snow, and even in + the snow all round the observer.</p> + + + + + <p><span class="sidenote">Lemström’s conclusions.</span>M. Lemström concluded that an electric discharge of an auroral nature, + which could only be detected by means of the spectroscope, was taking place + on the surface of the ground all around him, and that, from a distance, it + would appear as a faint display of Aurora.</p> + + <p>[It should, however, here be noted that the reflection of an Aurora from a + white or bright surface would give, in a fainter degree, the spectrum of the + Aurora itself; and, apart from the phenomena seen by the eye, the case + fails to be conclusive that an Aurora on the surface of the ground was + examined.]</p> + + <h4 id="chap-3-5">Mr. J. R. Capron’s Aurora of October 24th, 1870.</h4> + + + + + + + <p><span class="sidenote">Mr. J. R. Capron’s Aurora, Oct. 24, 1870.</span>The description, from my notes made at the time of this fine display, is as + follows:—“Last evening (October 24) the Aurora Borealis was again most + beautifully seen here (Guildford). At 6 <span class="smcapuc">P.M.</span> indications of the coming + display were visible in the shape of <span class="sidenote">Silver glow in north.</span>a bright silver glow in the north, which + contrasted strongly with the opposite dark horizon. For two hours this + continued, with the addition from time to time of a crimson glow in the + north-east, <span class="sidenote">Phosphorescent cloud-streamers.</span>and of streamers of opaque-white phosphorescent cloud, shaped + like horse-tails (very different from the more common transparent auroral + diverging streams of light), which floated upwards and across the sky from + east and west to the zenith. At about 8 o’clock the display culminated; and + few observers, I should think, ever saw a more lovely sky-picture. + <span class="sidenote">Crimson masses on horizon.</span>Two + patches of intense crimson light about this time massed themselves on the + north-east and north-west horizon, the sky between having a bright silver + glow. The crimson masses became more attenuated as they mounted upwards; + and from them there suddenly ran up bars or streamers of crimson + and gold light,<span class="sidenote">Coloured streamers.</span> which, as they rose, curved towards each other in the north, + and, ultimately meeting, formed a glorious arch of coloured light, having at + its apex an oval white luminous corona or cloud of similar character to the + phosphorescent clouds previously described, but brighter. <span class="sidenote">Corona formed.</span>At this time the + spectator appeared to be looking at the one side of a cage composed of + glowing red and gold bars, which extended from the distant parts of the + horizon to a point over his head. Shortly after this the Auroral display + gradually faded away, and at 9 o’clock the sky was of its usual appearance, + <span class="sidenote">Aurora fades away.</span>except that the ordinary tint seemed to have more of indigo, probably by + contrast with the marvellous colours which had so lately shone upon it.â€</p> + + + + + <span class="sidenote">T. F.’s description of same at Torquay.</span><p>T. F., describing the same Aurora from Torquay, says it showed itself at + sundown, attained its maximum at 8, and lasted until 11. At 8 o’clock more + than half the visible heavens was one sea of colour; the general ground + greenish yellow and pale rose, with extensive shoals of deep rose in the east + and west; while from the north, streaming upwards to and beyond the + zenith, were tongues and brushes of rosy red, so deep that the sky between + looked black. Mr. Gibbs reported that in London, at about 8 o’clock, <span class="sidenote">TMr. Gibbs’s report in London.</span>brilliant + crimson rays shot up to the zenith, and the sky seemed one mass of fire.</p> + + <p>A facsimile of my water-colour sketch of this fine discharge is given on + Plate III.</p> + + + + <figure class="plate" id="plate3"> + <!-- <img src="images/plate3.jpg" /> --> + <figcaption></figcaption> + </figure> + + <h4 id="chap-3-6">Mr. Barker’s (superposed) red and white Auroræ, 9th November (1870?).</h4> + + + + + + <p><span class="sidenote">Mr. Barker’s Auroræ, 9th November (1870?).</span>On the 9th November (1870?) Mr. Barker saw at New Haven (U. S.) a most + magnificent crimson Aurora. At about a quarter to 6 <span class="smcapuc">P.M.</span> it consisted of a + brilliant streamer shooting up from the north-western horizon. This was + continued in a brilliant red<span class="sidenote">Red Aurora.</span>, but rather nebulous, mass of light passing + upwards and to the north. Its highest points were from 30° to 40° in + altitude. <span class="sidenote">White Aurora.</span>A white Aurora, consisting of bright streamers, appeared simultaneously + and extended round to the north-east. Prof. Newton informed + Mr. Barker that he had observed an equally brilliant red patch of auroral + light in the north-east five or ten minutes earlier.</p> + + + + <p><span class="sidenote">Red seen through white.</span>Since the lower end of the red streamers was much lower than that of the + white, it would seem as if the red were seen through the white, the red being + most remote.</p> + + + + <p><span class="sidenote">Crimson line not seen in white Aurora.</span>Spectroscopic observations of this Aurora were made. The crimson Aurora + lasted less than half an hour, and then disappeared. In the white Aurora, + which remained, the crimson line could not be seen.</p> + + + + <span class="sidenote">Carl Bock’s vibrating rays.</span><p>It may be here noted that during the Aurora seen by Carl Bock in Lapland, + and painted by him by its own light (described, p. 25), he had the impression + of sets of vibrating rays behind each other, and in the drawing it looks as if + streamers were seen behind an arc.</p> + + <figure class="plate" id="plate4"> + <!-- <img src="images/plate4.jpg" /> --> + <figcaption></figcaption> + </figure> + + <h4 id="chap-3-7">Mr. J. R. Capron’s Aurora of February 4th, 1872.</h4> + + + <p><span class="sidenote">Mr. J. R. Capron’s Aurora, Feb. 4, 1872. Masses of phosphorescent vapour. Rose tints appeared. Aurora from behind clouds. Formation of corona. Duration of corona. Streamers from corona. Rain during Aurora. Wind during night. Phosphorescent clouds preceded the Aurora in daylight.</span> +My description of this Aurora as seen at Guildford, and as given at the time, + is as follows:—“Last evening, returning from church a little before 8 <span class="smcapuc">P.M.</span>, + the sky presented a weird and unusual aspect, which at once struck the eye. + A lurid tinge upon the clouds which hung around suggested the reflection of + a distant fire; while scattered among these, torn and broken masses of vapour, + having a white and phosphorescent appearance, and quickly changing their + forms, reminded me of a similar appearance preceding the great Aurora of + 24th October, 1870. Shortly some of these shining white clouds or vapours + partly arranged themselves in columns from east to west, and at the same + time appeared the characteristic patches of rose-coloured light which are + often seen in an auroral display. About 8 o’clock the clouds had to a certain + extent broken away, and the Aurora shone out from behind heavy banks of + vapour, which still rested on the eastern horizon, the north-west horizon + being free from cloud and glowing brightly with red light. And now, at + about 8.15, was presented a most beautiful phenomenon. While looking + upwards, I saw a corona or stellar-shaped mass of white light form in the + clear blue sky immediately above my head <span class="footnote">M. Lemström (Swedish Expedition, 1868) concludes that the corona of the Aurora Borealis +is not entirely a phenomenon of perspective, but that the rays have a true curvature, that they + are currents flowing in the same direction and attract each other. There is also an account + [<i>antè</i>, p. 16] of an Aurora at Melville Island (Parry’s first voyage), in which two arches were + seen curving towards each other.</span>, not by small clouds or rays + collecting, but more in the way that a cloud suddenly forms by condensation + in the clear sky on a mountain top, or a crystal shoots in a transparent + liquid, having too, as I thought, an almost traceable nucleus or centre, from + which spear-like rays projected. From this corona in a few seconds shot + forth diverging streamers of golden light, which descended to and mingled + with the rosy patches of the Aurora hanging about the horizon. The spaces + of sky between the streamers were of a deep purple (probably an effect of + contrast). The display of the corona, though lasting a few minutes only, + was equal to, if not excelling in beauty, the grand display of October 1870, + before described, in which case, however, a ring or disk of white light of considerable + size took the place of the stellar-shaped corona. What struck me + particularly was the corona developing itself as from a centre in the clear + sky, and the diverging streamers apparently shooting downwards, whereas in + general the streamers are seen to shoot up from the horizon and converge + overhead. The effect may have been an illusion; but, if so, it was a remarkable + one. The general Aurora lasted for some time, till it was lost in a + clouded sky; and, in fact, rain was descending at one time while the Aurora + was quite bright. Strong wind prevailed during the night <span class="footnote">A brilliant display in December 1870, on the east coast of Sicily, was followed by very + violent storms, with the overflow of the Tiber and the flooding of Rome.</span>. The Aurora + was probably very extensive, as the evening, notwithstanding the clouds, was + nearly as bright as moonlight. The peculiar clouds referred to must have + preceded the Aurora in daylight, as I recollect seeing them at 6.30 as we + went to church.â€</p> + + <span class="sidenote">Aurora + predicted.</span> + + <p>They had even then a peculiarly wild, ragged, and phosphorescent appearance, + and so much resembled some I had seen to accompany the Aurora + of October 1870, that I predicted (as came to pass) a display later in the + evening. A <i>facsimile</i> of my water-colour sketch of this Aurora is given on + Plate IV. fig. 1, while the corona and rays are represented (with rather too + hard an outline) on Plate V. fig. 2.</p> + + <figure class="plate" id="plate5"> + <!-- <img src="images/plate5.jpg" /> --> + <figcaption></figcaption> + </figure> + + <h4 id="chap-3-8"><i>Description of an Aurora seen at Cardiff.</i></h4> + + <span class="sidenote">Aurora seen + at Cardiff. Formation + of corona.</span> + + <p>An Aurora was seen at Cardiff. A dusky red aspect of the sky towards the + north, and extending itself across the zenith westward, made its appearance + about half-past 5 <span class="smcapuc">P.M.</span> The lights reached their greatest intensity at 6 o’clock, + when the sky was suffused with a rich crimson glow, a broad band of colour + reaching from N.E. to W. A corona of deep hue, having rugged sharply + defined edges, stood out prominently in the zenith, apparently on a parallel + plane to the earth, and having its centre almost immediately over the head of + the spectator.</p> + + <span class="sidenote">Radii + thrown out + from corona.</span> + + <p>From this corona, elliptic in form, and in its broadest diameter about four + times the size of the moon, there were thrown out brilliant silvery blue radii, + extending to the N.E. and W. horizon, and presenting the appearance of a + vast cupola of fire.</p> + + <span class="sidenote">Rain fell + when Aurora + died out.</span> + + <p>At half-past 6 the lights died completely out, leaving masses of cloud + drifting up from the south, and a shower of rain fell. The corona was + remarked upon as unusual. At Edinburgh the sky was brilliant for several + hours. (The date of this Aurora is uncertain, as the account is from an + undated newspaper cutting. It is supposed to be in February 1872, but + could hardly have been on the 4th, as the Aurora of that date did not reach + its maximum development at Edinburgh till 8 <span class="smcapuc">P.M.</span>)</p> + + <h4 id="chap-3-9"><i>Mr. J. R. Capron’s Aurora, seen at Guildown, Guildford, + February 4th, 1874.</i></h4> + + <span class="sidenote">Silvery + brightness + in N.E. Light-cloud, + which moved + from E. to + W. Formation + of arc in N. Streamers. Horizontal + clouds of + misty light.</span> + + <p>About 7 <span class="smcapuc">P.M.</span> my attention was drawn to a silvery brightness in the north-east. + Above, and still more to the east, was a bright cloud of light, which + looked dense and misty, and gave one the impression of an illuminated fog-cloud. + The edges were so bright that the adjacent sky, but for the stars + shining in it, might, by contrast, have been taken for a dark storm-cloud. + The light-cloud expanded upwards until its apex became conical, and then + moved rapidly from east, along the northern horizon, until it reached the + due west, where it rested, and formed for some time a luminous spot in + the sky. About the same time a long low arch of light formed along the + northern horizon, having a brighter patch at each extremity; and these being + higher in the sky, the arch and turned-up ends were in shape like a Tartar + bow. This bow was permanent; and later on a cloud of rose-coloured light + formed in the east, looking like the reflection of a distant fire. From the + bow also shot up curved streamers of silver light towards the zenith, which + at one time threatened to form a corona. This, however, did not happen, + and the Aurora gradually faded away, until, when the moon rose about 8, + a silver tinge in the east alone remained. I should also mention that fleecy + horizontal clouds of misty light floated in the north above the bow across the + streamers.</p> + + <p>Mr. H. Taylor informed me he saw a similar Aurora some three weeks + before, in which the bright horizontal light and short white streamers were + the main characters. I am not sure that the horizontal light-clouds were not + actual mist-clouds illuminated by reflection of the Aurora; not so, however, + I think, the first-mentioned cloud, which had more the appearance of the + <i>aura</i> in the large end of an illuminated Geissler tube.</p> + + <span class="sidenote">Spectrum of + the Aurora + described.</span> + + <p>I examined the Aurora with a Browning direct-vision spectroscope, and + found Ã…ngström’s line quite bright, and by the side of it three faint and misty + bands towards the blue end of the spectrum upon a faintly illuminated + ground. I could also see at times a bright line beyond the bands towards the + violet. There was not light enough to take any measurements of position of + the lines.</p> + + <p>I made a pencil sketch of this Aurora, at the time when the light-cloud + had moved W. and the arc formed, and of the spectrum. These drawings are + reproduced on Plate VI. figs. 1 and 1<i>a</i>.</p> + + <figure class="plate" id="plate6"> + <!-- <img src="images/plate6.jpg" /> --> + <figcaption></figcaption> + </figure> + + <h4 id="chap-3-10"><i>Mr. Herbert Ingall’s Aurora, July 18th, 1874.</i></h4> + + <span class="sidenote">Mr. Herbert + Ingall’s + Aurora, July + 18, 1874. Haze canopy + formed. Bright + bluish flames + appeared. Beams and + streamers + appeared. Oscillatory + motion of + rays.</span> + + <p>An Aurora of July 18th, 1874, seen by Mr. Herbert Ingall at Champion + Hill, S.E., was described by him as an extraordinary one. About 11 the + sky was clear; at midnight the sky was covered by a sort of haze canopy, + sometimes quite obscuring the stars, and then suddenly fading away. Mr. + Ingall was shortly after remarking the sky in the S.E. and S. horizon as being + more luminous than usual, when his attention was drawn to a growing + brightness in the S.W., and a moment afterwards bright bluish flames + “swept over the S.W. and W. horizon, as if before a high wind. They were + not streamers, but bright blue flames.†They lasted about a minute and + faded; but about two minutes afterwards a glowing luminosity appeared in + the W.S.W., and broke into brilliant beams and streamers. The extreme + rays made an angle of 90° with each other, the central ray reaching an + altitude of 50°. The extreme divergence of the streamers (indicating their + height above the earth’s surface), and their direction (from W.S.W. to E.N.E.) + at right angles to the magnetic meridian, suggested to Mr. Ingall a disturbance + of an abnormal character. The rays had an oscillatory motion for about + fifteen seconds, and then disappeared, “as if a shutter had suddenly obscured + the source of light.â€</p> + + + <span class="sidenote">Mr. Ingall’s + remarks corroborated.</span> + + <p>Mr. Ingall’s remarks were corroborated by an observer in lat. 54° 46´ 6″·2 N., + long. 6h 12m 19s·75 W. The display, however, was more brilliant, and the + intensity of light at midnight illuminated the whole district as with an electric + light. The rays, too, bore tints differing from one another; the largest + seemed to partake of the nature of the blue sky, while the smaller ones, + running parallel with the horizon, were ever changing from blue to orange-red.</p> + + <span class="sidenote">Rev. C. + Gape saw + flashes or + streaks of a + pale blue + colour.</span> + + <p>On June 25 (same year?), between 9 and 10 o’clock, the Rev. Chas. Gape + saw at Rushall Vicarage, Scole, Norfolk, in the E.S.E., very frequent flashes + or streaks of a pale blue colour darting from the earth towards the heavens + like an Aurora. The day had been dull and close, with distant thunder. + In the E.S.E. it was dark, but overhead and everywhere else it was clear + and starry.</p> + + <h4 id="chap-3-11"><i>Mr. J. R. Capron’s White Aurora of September 11th, 1874.</i></h4> + + <span class="sidenote">Mr. J. R. + Capron’s + white + Aurora of + Sept. 11, + 1874.</span> + + <p>On September 11, 1874, we were at Kyle Akin, in the Isle of Skye. The + day had been wet and stormy, but towards evening the wind fell and the + sky became clear. About 10 <span class="smcapuc">P.M.</span> my attention was called to a beautiful + Auroral display.</p> + + <span class="sidenote">Double arc + of pure + white light + in the N.</span> + + <p>No crimson or rose tint was to be seen, but a long low-lying arc of the + purest white light was formed in the north, and continued to shine with more + or less brilliancy for some time. The arc appeared to be a double one, by the + presence of a dark band running longitudinally through it.</p> + + <span class="sidenote">White + streamers. Auroral bow + believed to + be near the + earth.</span> + + <p>Occasional streamers of equally pure white light ran upwards from either + end of the bow. The moon was only a day old, but the landscape was lighted + up as if by the full moon; and the effect of Kyle Akin lighthouse, the + numerous surrounding islands, and the still sea between was a true thing of + beauty. The display itself formed a great contrast to the more brilliant + but restless forms of Auroræ generally seen. I particularly noticed a somewhat + misty and foggy look about the brilliant arc, giving it almost a solid + appearance. The space of sky between the horizon and the lower edge of + the arc was of a deep indigo colour, probably the effect of contrast. I had a + strong impression that the bow was near to the earth, and was almost convinced + that the eastern end and some fleecy clouds in which it was involved + were between myself and the peaks of some distant mountains.</p> + + <p>I have not seen any other account of this Aurora, of which I was able at + the time to obtain a sketch. This is reproduced on Plate VII. It was a + lovely sight, and wonderfully unlike the cloud-accompanied and crimson + Auroræ which I had seen in the South.</p> + + <p>It is noticed in Parry’s ‘Third Voyage’ that the lower edge of the auroral + arch is generally well defined and unbroken, and the sky beneath it so exactly + like a dark cloud (to him often of a brownish colour), that nothing could + convince to the contrary, if the stars, shining through with undiminished + lustre, did not discover the deception.</p> + + <span class="sidenote">No trace of + brown colour + in segment + of sky below + the arc.</span> + + <p>I saw no trace of brown colour. The segment below the arch resting on + the horizon was of a deep indigo colour.</p> + + <figure class="plate" id="plate7"> + <!-- <img src="images/plate7.jpg" /> --> + <figcaption></figcaption> + </figure> + + <h4 id="chap-3-12"><i>Dr. Allnatt’s Aurora, June 9th, 1876.</i></h4> + + <span class="sidenote">Dr. Allnatt’s + Aurora, + June 9, 1876. Band of + auroral light + appeared. Streaks of + cirro-stratus + divided the + Aurora. Want of + electric + manifestations + attributed + to + absence of + sun-spots.</span> + + <p>Dr. Allnatt, writing to the ‘Times’ from Abergele, North Wales, near the + coast of the Irish Channel, reported an Aurora on the night of the 9th + June, 1876. After a cool and gusty day, with a strong N.E. wind and a + disturbed sea, there appeared at 11 <span class="smcapuc">P.M.</span> in the N. horizon a broad band of + vivid auroral light, homogeneous, motionless, and without streamers. About + midnight a long attenuated streak of black cirro-stratus stretched parallel + with the horizon, and divided the Aurora into nearly symmetrical sections. + On the preceding day the sky was covered with dark masses of electric cloud + of weird and fantastic forms. The season had been singularly unproductive + of high electric manifestations, which Dr. Allnatt thought might be attributable + to the comparative absence of spots on the solar disk. [It may here + be noted how conspicuous the years 1877 and 1878 have been for absence of + Sun-spots and of Auroræ.]</p> + + <figure class="plate" id="plate8"> + <!-- <img src="images/plate8.jpg" /> --> + <figcaption></figcaption> + </figure> + + + <h4 id="chap-3-13"><i>Herr Carl Bock’s Lapland Aurora, 3rd October, 1877.</i></h4> + + <span class="sidenote">Herr Carl + Bock’s Lapland + Aurora, + 3rd Oct. + 1877. Lapland + Auroræ + generally of + the yellow + type.</span> + + <p>In January 1878 I had the pleasure to meet, at the Westminster Aquarium, + Herr Carl Bock, the Norwegian naturalist, who accompanied four Laplanders, + two men and two women, with sledges, tents, &c., on their visit to this + country. The Laplanders (as mentioned elsewhere) did not confirm the + accounts of noises said to have been observed by Greenlanders and others + during the Aurora. Carl Bock mentioned to me that the displays he saw in + Lapland were most brilliant, but generally of the yellow type (the Laplanders + called the Aurora “yellow lightsâ€). He saw only one red Aurora. + He kindly lent me a picture (probably in its way unique), an oil-painting of + an Aurora Borealis, entirely sketched by the light of the Aurora itself.</p> + + <span class="sidenote">A picture + painted by + light of the + Aurora. Movement + of the rays. Inner edge + of arc + fringed with + rays.</span> + + <p>The painting is remarkable for the tender green of the sky, an effect + probably due to a mixture of the ordinary sky colour with the yellow light of + the Aurora. This picture was taken at Porsanger Fjord, in lat. 71° 50´, on + 3rd October, 1877. It lasted from 9 <span class="smcapuc">P.M.</span> till about 11 <span class="smcapuc">P.M.</span> The rays kept + continually moving, and certain of them seemed in perspective and behind + the others. It will be noticed that the <i>inner</i> edge of the arc is fringed with + rays, contrary to the sharp and definite margin which is usually presented. + Probably two Auroræ or auroral forms were seen—a quiescent arc in front, + and a set of moving streamers beyond. Two larger and brighter patches of + light are seen at each extremity of the arc, as in the case of the Aurora seen + by me at Guildown, February 4th, 1874, which, indeed, the display much + resembles. A reduced facsimile of Herr Bock’s excellent picture is given on + Plate VIII.</p> + + <span class="sidenote">Aurora of + longitudinal + rays.</span> + + <p>Herr Bock also acquainted me that on the following day he saw an Aurora + in which the lines of light, instead of being vertical, were longitudinal, and + were continually swept along in several currents. They were not so strong + as in the former case.</p> + + <h4 id="chap-3-14"><i>Rev. T. W. Webb’s Aurora.</i></h4> + + <span class="sidenote">Rev. T. W. + Webb’s + Aurora. Arc resolved + into sets of + streamers + moving in + opposite + directions.</span> + + <p>The Rev. T. W. Webb has described to me in a letter an Aurora very like + that seen by Carl Bock in Lapland, and apparently the prevailing type in + those regions. An arc similar to that figured by Carl Bock appeared in the + N.W., and seemed to resolve itself into two sets of streamers moving in + opposite directions (or the one set might be fixed and the other moving), like + the edges of two great revolving toothed wheels. This lasted but for a few + seconds; but during that interval the tints were varied and brilliant, including + blue and green.</p> + + <h4 id="chap-3-15"><i>The English Arctic Expedition 1875-76, under Capt. Sir George Nares.</i></h4> + + <span class="sidenote">English + Arctic + Expedition, + 1875-76. Instructions + for use of + officers. Appendix B. Capt. Sir + G. Nares’s + report. True Auroræ + seldom observed, + and + displays + faint. Citron-line + observed on + only two + displays. Appendix C.</span> + + <p>In anticipation of the starting of this Expedition, some instructions for the + use of the officers in connexion with the hoped for display of brilliant Auroræ + were prepared:—as to general features of the Auroræ, by Professor Stokes; as + to Polarization, by Dr. William Spottiswoode; and as to Spectrum work, by + Mr. Norman Lockyer and myself. As these instructions were somewhat + elaborate, and will apply to all Auroral displays, I have supplied a copy + of them in Appendix B. They were unfortunately not brought into + requisition, for want of the Auroræ themselves. Capt. Sir George Nares + has reported to the Admiralty, under date 5th December, 1877, as follows:—“Although + the auroral glow was observed on several occasions between + 25 October, 1875, and 26 February, 1876, true Auroræ were seldom observed; + and the displays were so faint, and lasted so short a time, and the spectrum + observations led to such poor results, that no special report has been considered + necessary. Although the citron-line was observed occasionally, on + only two displays of the Aurora was it well defined, and then for so short a + time that no measure could be obtained.†(For Sir George Nares’s further + Report see Appendix C, containing extracts from blue-book, ‘Results derived + from the Arctic Expedition, 1875-6.’)</p> + + <h4 id="chap-3-16"><i>Aurora Australis.</i></h4> + + <span class="sidenote">Aurora + Australis. Mr. Forster’s + description. Long + columns of + white light + spreading + over the + whole sky.</span> + + <p>In an article on Auroræ in high Southern latitudes (Phil. Trans. No. 461, + and vol. liv. No. 53), we find that Mr. Forster, who as naturalist accompanied + Capt. Cook on his second voyage round the world, says:—“On + February 17th, 1773, in south latitude 58°, a beautiful phenomenon was + observed during the preceding night, which appeared again this, and several + following nights. It consisted of long columns of a clear white light + shooting up from the horizon to the eastward almost to the zenith, and + gradually spreading over the whole southern part of the sky. These columns + were sometimes bent sideways at their upper extremities; and though in most + respects similar to the northern lights of our hemisphere, yet differed from + them in being always of a whitish colour, whereas ours assume various tints, + especially those of a fiery and purple hue. The sky was generally clear when + they appeared, and the air sharp and cold, the thermometer standing at the + freezing point.†This account agrees very closely in particulars with Capt. + Maclear’s notice of Aurora Australis [after referred to], and especially in the + marked absence of red Auroræ.</p> + + <p>The height of the barometer does not appear to be mentioned, the temperature + being apparently much the same as in the more recent cases.</p> + + <span class="sidenote">Capt. + Maclear’s + Aurora + Australis, + 3rd March, + 1874. Light of + pale yellow + tint only.</span> + + <p>In a letter dated from H.M.S. ‘Challenger,’ North Atlantic, April 10th, + 1876, Capt. Maclear was good enough to communicate to me some particulars + of an Aurora Australis seen 3rd March 1874, in lat. 54° S., long. 108° E. + The letter is mainly descriptive of the spectrum (which will be described in + connexion with the general question of the spectrum of the Aurora). It + states that the red line was looked for in vain, and that the light appeared + of a <i>pale yellow</i>, and had none of the rosy tint seen in the northern + displays.</p> + + <span class="sidenote">Capt. + Maclear’s + Auroræ + described in + ‘Nature.’</span> + + <p>Capt. Maclear has since contributed to ‘Nature,’ of 1st November 1877, a + description of four Auroræ seen from the ‘Challenger’ in high southern + latitudes (including the one communicated to me). He speaks of the opportunity + of observing as not frequent, either from the rarity of the phenomena, + or because the dense masses of cloud prevalent in those regions prevented + their being seen except when exceptionally bright. There were four appearances + described:—</p> + + <span class="sidenote">Feb. 9, 1874.</span> + + <p>(1.) At 1.30 on the morning of February 9th, 1874, preceded by a watery + sunset, lat. 57° S. and long. 75° E., bar. 29·0 in., ther. 35°; brilliant streaks + to the westward. Day broke afterwards with high cirrus clouds and clear + horizon.</p> + + <span class="sidenote">Feb. 21, + 1874.</span> + + <p>(2.) At 9.30 <span class="smcapuc">P.M.</span>, February 21, 1874, lat. 64° S., long. 89° E., bar. 28·8 in., + ther. 31°; one bright curved streamer. The Aurora preceded a fine morning + with cumulo-stratus clouds, extending from Jupiter (which appeared to be + near the focus) through Orion and almost as far beyond. Under this a black + cloud, with stars visible through it. Real cumuli hid great part of the + remainder of the sky, but there were two vertical flashing rays which moved + slowly to the right (west). Generally the Aurora was still bright.</p> + + <span class="sidenote">March 3, + 1874. Auroral line + found in + light to + southward.</span> + + <p>(3.) At midnight, March 3rd, 1874, lat. 53° 30´ S., long. 109° E., bar. 29·1, + ther. 36°, after some days’ stormy weather, a brilliant sunset, followed by a + fine morning. Soon after 8 <span class="smcapuc">P.M.</span> the sky began to clear and the moon shone + out. Noticing the light to the southward to be particularly bright, Capt. + Maclear applied the spectroscope, and found the distinguishing auroral line.</p> + + <span class="sidenote">Brilliant + white clouds + seen.</span> + + <p>About midnight the sky was almost clear, but south were two or three + brilliant light clouds, colour very white-yellow, shape cumulo-stratus. From + about west to near south extended a long feathery light of the same colour, + parallel with the horizon, and between south and west there appeared occasionally + brilliant small clouds. The upper edges seemed hairy, and gave one + the idea of a bright light behind a cloud. The forms changed, but no particular + order was noticed.</p> + + <p>(Here follows a description of the spectrum, and the mode in which a + delineation by the lines was obtained.)</p> + + <span class="sidenote">March 6, + 1874. Capt. + Maclear + suggests + whether a + low barometer + has + to do with + the absence + of red.</span> + + <p>(4.) At 8 <span class="smcapuc">P.M.</span>, March 6th, 1874. This was a slight Aurora, seen to the + southward; after this the clouds changed to high cirrus. Capt. Maclear + suggests whether a low barometer has any thing to do with the absence of red + in the spectrum, the normal state of the barometer being an inch lower in + those regions than in more temperate latitudes.</p> + + <span class="sidenote">Barometer + falls after + the Aurora, + and strong + gale from + the S. or S.W. + follows.</span> + + <p>Edin. Encyc. vol. iii. article “Aurora.†Dr. Kirwan observed that the + barometer commonly falls after the Aurora. Mr. Winn, in the seventy-third + volume of the Phil. Trans., makes the same remark, and says that in twenty-three + instances, without fail, a strong gale from the south or south-west + followed the appearance of an Aurora. If the Aurora were bright, the gale + came on within twenty-four hours, but was of no long continuance; if the + light was faint and dull, the gale was less violent, longer in coming, and longer + in duration.</p> + + <span class="sidenote">Pale yellow + glow rare in + the Aurora + Borealis.</span> + + <p>The pale yellow-coloured glow referred to by Capt. Maclear is, in my experience, + rare in the Aurora Borealis. It is probably the “æqualiter et sine + eruptionibus aut radiis <i>fulvi</i>,†described by Seneca (<i>antè</i>, p. 1), and may probably + belong to more southern climes.</p> + + <span class="sidenote">Spectrum + of Auroræ + Australes + extends + more into + the violet.</span> + + <p>We shall see too, by-and-by, that these Auroræ Australes as to spectrum + extend more into the violet than the Aurora Borealis. The yellow, as complementary + to violet, is likely thus to make (in the absence of the red) its + appearance.</p> + + <p>It is, however, somewhat singular that Carl Bock found almost exclusively + yellow Auroræ in Lapland.</p> + + <p>In Proctor’s ‘Borderland of Science,’ article “The Antarctic Regions,†we + find quoted a passage from a letter by Capt. Howes, of the ‘Southern Cross,’ + in which a graphic description is given of a Southern Aurora:—</p> + + <span class="sidenote">Capt. + Howes’s description + of + a Southern + Aurora.</span> + + <p>“At about half-past one on the 2nd of last September the rare phenomenon + of the Aurora Australis manifested itself in a most magnificent manner. + Our ship was off Cape Horn, in a violent gale, plunging furiously into a + heavy sea, flooding her decks, and sometimes burying her whole bows beneath + the waves. The heavens were as black as death, not a star was to be seen, + when the brilliant spectacle first appeared.</p> + + + <span class="sidenote">Balls of + electric fire + resting on + mast-heads + &c.</span> + + <p>“I cannot describe the awful grandeur of the scene; the heavens gradually + changed from murky blackness till they became like vivid fire, reflecting a + lurid glowing brilliancy over every thing. The ocean appeared like a sea of + vermilion lashed into fury by the storm, the waves dashing furiously over our + side, ever and anon rushed to leeward in crimson torrents. Our whole ship—sails, + spars, and all—seemed to partake of the same ruddy hues. They were + as if lighted up by some terrible conflagration. Taking all together—the + howling, shrieking storm, the noble ship plunging fearlessly beneath the + crimson-crested ways, the furious squalls of hail, snow, and sleet, drifting + over the vessel, and falling to leeward in ruddy showers, the mysterious + balls of electric fire resting on our mast-heads, yard-arms, &c., and, above all, + the awful sublimity of the heavens, through which coruscations of auroral + light would shoot in spiral streaks, and with meteoric brilliancy,—there was + presented a scene of grandeur surpassing the wildest dreams of fancy.â€</p> + + <p>The foregoing picture presents a singular contrast to the yellow-white + Auroræ described as seen in high southern latitudes by Capt. Maclear, and is + interesting as a southern Aurora of a red or ruddy tint. Looking, however, + at the extreme rarity of red Auroræ in those latitudes, and the description of + “mysterious balls of electric fire resting on our mast-heads, yard-arms, &c.†(a + phenomenon not often noticed in connexion with the Aurora), it suggests + itself that the case in question may have been an instance not of a true + Aurora, but of an electric display, with conditions approaching those experienced + by travellers who have found themselves in mountainous districts + surrounded by storm-clouds charged with electricity <span class="footnote">Some curious instances have been recently (January 1879) given in the ‘Times’ of such electric phenomena, comprising, amongst others, gas lighted by the finger in Canada, points of flame seen on the ironwork of Teignmouth Bridge, and similar points seen on the alpenstocks and axes of a party making a mountain ascent in Switzerland.</span>.</p> + + <h4 id="chap-3-17"><i>Prof. Piazzi Smyth’s Typical Auroræ.</i></h4> + + <span class="sidenote">Prof. Piazzi + Smyth’s + typical + Auroræ.</span> + + <p>Prof. Piazzi Smyth was kind enough lately to send me the fourteenth + volume of the ‘Astronomical Observations made at the Royal Observatory, + Edinburgh, during the years 1870-1877.’ This volume, amongst its other + interesting matter, affords some valuable information on the subject of the + Aurora Borealis. The Aurora plates are five in number, three comprising + some well-executed chromo-lithographs of typical Auroræ, from sketches + made by Prof. Smyth, the other two plates being of the Aurora spectrum. + The Auroræ delineated are thus described:—</p> + + + <span class="sidenote">Aug. 6, 1871, + quiescent + arc. August 21, + 1871, + active arc.</span> + + <p>Plate 5. (August 6, 1871.) An example of a mild quiescent kind of + auroral arc, with dark cavernous substratum. (August 21, 1871.) An example + of a bright large active arc darting out rays.</p> + + <span class="sidenote">Sept. 7, 1871, + arc streamers + and + clouds. May 8, 1871, + double arc + (longitudinal).</span> + + <p>Plate 6. (September 7, 1871.) An auroral arc, with streamers and dark + clouds, and maintaining a bright appearance though in proximity to the + moon. (May 8, 1871.) A double-arched auroral arc (the arches are longitudinally + arranged).</p> + + <span class="sidenote">April 28, + 1871, multiple + arc. Oct. 25, + 1870, + coloured + Aurora.</span> + + <p>Plate 7. (April 28, 1871.) A multiple-arched arc of Aurora with moonlight. + (October 25, 1870.) A case of grandest coloured Auroræ, or Aurora + superb and almost universal.</p> + + <p>All the foregoing drawings are very vivid and striking, and form a most + interesting set of typical forms of Auroræ.</p> + + <p>According to my own experience, the Aurora with arches arranged longitudinally, + thus, <img src="images/i_030.jpg" width="60" height="18" alt="Symbols" />, is the rarest of all the forms. I have not met + with it myself, nor do I recollect an illustration of one other than Prof. + Smyth’s.</p> + + </section> + + <!-- Chapitre 4_________________________________________________________--> + <section class="chapter" id="chapter-4"> + <h3 class="titlechapter" id="chap-4">Phenomena simuling auroræ</h3> + <p class="shorter">Phenomena simuling auroræ</p> + + <div id="chap-4-page1" class="chap-4-page"> + <div class="column-fr"></div> + <div class="column-eng"></div> + </div> + <div class="chap-4-page"> + <div class="column-fr"></div> + <div class="column-eng"></div> + </div> + <div class="chap-4-page"> + <div class="column-fr"></div> + <div class="column-eng"></div> + </div> + <div class="chap-4-page"> + <div class="column-fr"></div> + <div class="column-eng"></div> + </div> + <div class="chap-4-page"> + <div class="column-fr"></div> + <div class="column-eng"></div> + </div> + + <div id="chap-4-flow-fr"> + <h4 id="chap-4-1"><i>Auroric Lights (Kinahan).</i></h4> + + + <p>Mr. G. Henry Kinahan writes to ‘Nature,’ from Ovoca, under date + January 27th, 1877, and speaks of two distinct kinds of light so classed—one + brilliant and transparent, of a white yellowish-blue or yellowish-red colour, + while the other is semi-opaque and of a bloody red colour, the latter being + considered in Ireland a forerunner of bad weather. The first kind generally + appears as intermittent pencils of light that suddenly appear and disappear.</p> + + <div class="sidenote">Frequently + not stationary, + but + jumping + about.</div> + + <p>Usually they proceed or radiate from some point near the north of the + horizon; but Mr. Kinahan has frequently seen them break from a point in + the heavens, not stationary, but jumping about within certain limits. Sometimes + these lights occur as suddenly flashing clouds of light of a white colour, + but at other times of blue and reddish yellow.</p> + + <div class="sidenote">In daylight + like sun-rays. Red light + appears in + clouds floating + upwards + or diffused.</div> + + + <div class="sidenote">Frequently + not stationary, + but + jumping + about.</div> + + <p>Usually they proceed or radiate from some point near the north of the + horizon; but Mr. Kinahan has frequently seen them break from a point in + the heavens, not stationary, but jumping about within certain limits. Sometimes + these lights occur as suddenly flashing clouds of light of a white colour, + but at other times of blue and reddish yellow.</p> + + <div class="sidenote">In daylight + like sun-rays. Red light + appears in + clouds floating + upwards + or diffused.</div> + + <p>If this class of lights is watched into daylight, they appear somewhat like + faint rays of a rising sun. One morning, while travelling in West Galway in + the twilight, they were very brilliant, and quite frightened Mr. Kinahan’s + car-driver, who thought the sun was going to rise in the north instead of the + east. The second, or bloody red light, usually occurs in clouds floating in + one direction up into the heavens, but often diffused over a portion of the sky. + Mr. Kinahan has never seen them coming from the east, and on only a few + occasions from the south, but generally from the west, north-west, or north.</p> + + <div class="sidenote">Red light + appears as + dirty misty + clouds in + daylight, + or as a mist + or misty + rays.</div> + + <p>If both kinds of light appear at the same time, the second while passing + over the first dims it. If the second class is watched into daylight, they + appear as dirty misty clouds that suddenly form and disappear without the + spectator being able to say where they come from or where they go to, or as + a hazy mist over a portion of the sky, that suddenly appears and disappears, or + as misty rays proceeding from a point in the horizon. Generally, when + these clouds occur, there is a bank of black clouds to the westward.</p> + + <div class="sidenote">Season since + October + 1876 prolific + in auroric + light.</div> + + <p>Mr. Kinahan then speaks of the season as having been prolific in auroric + light, as there had been few nights since the 1st October then last (1876) in + which they did not appear. On many occasions they were late in the night, + being very common and brilliant during the dark days of December, a few + hours before dawn (about 5 o’clock). Each time there was a fine day they + appeared also, and the weather broke again.</p> + + <div class="sidenote">Mr. J. Allan + Broun questions + nature + of these + lights, as + Aurora is + seldom seen + at 5 <span class="smcapuc">A.M.</span> in + this country. On 77 occasions + seen + only twice + so early. Season was + of marked + infrequency + elsewhere.</div> + + <p>Mr. Jno. Allan Broun refers to this graphic account of Mr. Kinahan’s, + and concludes there must have been some mistake as to the nature of these + “auroric lights,†as the Aurora Borealis is very rarely seen at 5 <span class="smcapuc">A.M.</span> in this + country. In the years 1844 and 1845, during which the Aurora was sought for + at Makerstown every hour of the night, it was observed in 77 nights on an + average of nearly three hours each night; but it was seen only twice so early, + and that with a bright or brilliant Aurora, which remained during five hours + on the first occasion, and from 6 <span class="smcapuc">P.M.</span> to 6 <span class="smcapuc">A.M.</span> on the second. Parts of the + phenomenon seen by Mr. Kinahan, Mr. Broun also could not say he had ever + seen; and if Mr. Kinahan’s observations could have been confirmed it would + have been most important, especially as made so frequently at the epoch of + minimum. The description is in many respects a sufficiently recognizable + one of auroral discharges; but the frequent appearance in early morning is + certainly unusual, and few if any Auroræ seem to have been recorded as + appearing elsewhere in Great Britain during the time which Mr. Kinahan refers + to as so prolific (see, however, Dr. Allnatt’s, <i>antè</i>, p. 24). In fact, the season + in question was one of marked infrequency (see English Arctic Expedition + Report, <i>antè</i>, p. 26). Mr. Buchan furnished Mr. Broun with a note of Auroræ + seen in the stations of the Scottish Meteorological Society during the year + 1876, and they were 42 in number, 26 in the first half, and 16 in the second + half of the year. The greater part were seen in the most northerly stations, + including the Orkney, Shetland, and Faroe Islands, and only 9 south of + the Forth.</p> + + <h4 id="chap-4-2"><i>Luminous Arch.</i></h4> + + <div class="sidenote">Luminous + arch, Sept. + 11, 1814. Height + above horizon + 6 to 9 + miles.</div> + + <p>In the ‘Annals of Philosophy,’ vol. iv. p. 362, there is a minute description + of a luminous arch which appeared in the sky on the night of Sunday, + September 11th, 1814, and was seen in the west of England opposite the + Irish Sea, the west part of the south of Scotland, and part of the west of + Ireland. It was described as a part of either a body of dense greyish-white + light, or a mass of luminous matter in the shape of an arch. Its height above + the horizontal line was estimated at not more than 9 nor less than 6 miles.</p> + + <div class="sidenote">It moved + southward, + and was + assumed to + differ from + the Aurora.</div> + + <p>Its direction when first seen was N. 80° E., and S. 80° W. It moved to the + southward. It was assumed to differ from the Aurora Borealis in wanting + coruscations, and in its having a much paler light.</p> + + </div> + + + + + + + <div id="chap-4-flow-eng"> + + + <p>Mr. G. Henry Kinahan writes to ‘Nature,’ from Ovoca, under date + January 27th, 1877, and speaks of two distinct kinds of light so classed—one + brilliant and transparent, of a white yellowish-blue or yellowish-red colour, + while the other is semi-opaque and of a bloody red colour, the latter being + considered in Ireland a forerunner of bad weather. The first kind generally + appears as intermittent pencils of light that suddenly appear and disappear.</p> + + <div class="sidenote">Frequently + not stationary, + but + jumping + about.</div> + + <p>Usually they proceed or radiate from some point near the north of the + horizon; but Mr. Kinahan has frequently seen them break from a point in + the heavens, not stationary, but jumping about within certain limits. Sometimes + these lights occur as suddenly flashing clouds of light of a white colour, + but at other times of blue and reddish yellow.</p> + + <div class="sidenote">In daylight + like sun-rays. Red light + appears in + clouds floating + upwards + or diffused.</div> + + <p>If this class of lights is watched into daylight, they appear somewhat like + faint rays of a rising sun. One morning, while travelling in West Galway in + the twilight, they were very brilliant, and quite frightened Mr. Kinahan’s + car-driver, who thought the sun was going to rise in the north instead of the + east. The second, or bloody red light, usually occurs in clouds floating in + one direction up into the heavens, but often diffused over a portion of the sky. + Mr. Kinahan has never seen them coming from the east, and on only a few + occasions from the south, but generally from the west, north-west, or north.</p> + + <div class="sidenote">Red light + appears as + dirty misty + clouds in + daylight, + or as a mist + or misty + rays.</div> + + <p>If both kinds of light appear at the same time, the second while passing + over the first dims it. If the second class is watched into daylight, they + appear as dirty misty clouds that suddenly form and disappear without the + spectator being able to say where they come from or where they go to, or as + a hazy mist over a portion of the sky, that suddenly appears and disappears, or + as misty rays proceeding from a point in the horizon. Generally, when + these clouds occur, there is a bank of black clouds to the westward.</p> + + <div class="sidenote">Season since + October + 1876 prolific + in auroric + light.</div> + + <p>Mr. Kinahan then speaks of the season as having been prolific in auroric + light, as there had been few nights since the 1st October then last (1876) in + which they did not appear. On many occasions they were late in the night, + being very common and brilliant during the dark days of December, a few + hours before dawn (about 5 o’clock). Each time there was a fine day they + appeared also, and the weather broke again.</p> + + <div class="sidenote">Mr. J. Allan + Broun questions + nature + of these + lights, as + Aurora is + seldom seen + at 5 <span class="smcapuc">A.M.</span> in + this country. On 77 occasions + seen + only twice + so early. Season was + of marked + infrequency + elsewhere.</div> + + <p>Mr. Jno. Allan Broun refers to this graphic account of Mr. Kinahan’s, + and concludes there must have been some mistake as to the nature of these + “auroric lights,†as the Aurora Borealis is very rarely seen at 5 <span class="smcapuc">A.M.</span> in this + country. In the years 1844 and 1845, during which the Aurora was sought for + at Makerstown every hour of the night, it was observed in 77 nights on an + average of nearly three hours each night; but it was seen only twice so early, + and that with a bright or brilliant Aurora, which remained during five hours + on the first occasion, and from 6 <span class="smcapuc">P.M.</span> to 6 <span class="smcapuc">A.M.</span> on the second. Parts of the + phenomenon seen by Mr. Kinahan, Mr. Broun also could not say he had ever + seen; and if Mr. Kinahan’s observations could have been confirmed it would + have been most important, especially as made so frequently at the epoch of + minimum. The description is in many respects a sufficiently recognizable + one of auroral discharges; but the frequent appearance in early morning is + certainly unusual, and few if any Auroræ seem to have been recorded as + appearing elsewhere in Great Britain during the time which Mr. Kinahan refers + to as so prolific (see, however, Dr. Allnatt’s, <i>antè</i>, p. 24). In fact, the season + in question was one of marked infrequency (see English Arctic Expedition + Report, <i>antè</i>, p. 26). Mr. Buchan furnished Mr. Broun with a note of Auroræ + seen in the stations of the Scottish Meteorological Society during the year + 1876, and they were 42 in number, 26 in the first half, and 16 in the second + half of the year. The greater part were seen in the most northerly stations, + including the Orkney, Shetland, and Faroe Islands, and only 9 south of + the Forth.</p> + + + <div class="sidenote">Luminous + arch, Sept. + 11, 1814. Height + above horizon + 6 to 9 + miles.</div> + + <p>In the ‘Annals of Philosophy,’ vol. iv. p. 362, there is a minute description + of a luminous arch which appeared in the sky on the night of Sunday, + September 11th, 1814, and was seen in the west of England opposite the + Irish Sea, the west part of the south of Scotland, and part of the west of + Ireland. It was described as a part of either a body of dense greyish-white + light, or a mass of luminous matter in the shape of an arch. Its height above + the horizontal line was estimated at not more than 9 nor less than 6 miles.</p> + + <div class="sidenote">It moved + southward, + and was + assumed to + differ from + the Aurora.</div> + + <p>Its direction when first seen was N. 80° E., and S. 80° W. It moved to the + southward. It was assumed to differ from the Aurora Borealis in wanting + coruscations, and in its having a much paler light.</p> + </div> + + </section> + + <!-- Chapitre 5_________________________________________________________--> + <section class="chapter" id="chapter-5"> + <h3 class="titlechapter" id="chap-5">Some qualities of the aurora</h3> + <p class="shorter">Some qualities of the aurora</p> + + + + <h4 id="chap-5-1"><i>Noises attending Auroræ.</i></h4> + + <span class="sidenote">Sir John Franklin negatives them.</span> + + + + <p>In the Edinb. Encyc., Gmelin is stated, in continuation of his description of + an Arctic Aurora, to add:—“For however fine the illumination may be, it is + attended, as I have heard from the relation of many persons, with such a + hissing, cracking, and rushing noise through the air, as if the largest fireworks + were playing off.†To describe what they then heard, the natives are + said to use the expression, “Spolochi chodjatâ€â€”that is, The raging host is passing. + The hunter’s dogs, too, are also described as so much frightened when + the Auroræ overtake the hunters, that they will not move, but lie obstinately + on the ground till the noise has passed. This account of noises seems to be + confirmed by other testimony. They are stated to have been heard at Hudson’s + Bay and in Sweden; and Musschenbroek mentions that the Greenland + whale-fishers assured him they had frequently heard the noise of the Aurora + Borealis, but adds that “no person in Holland had ever experienced this + phenomenon.†Mr. Cavallo declares he “has repeatedly heard a crackling + sound proceeding from the Aurora Borealis†(Elements of Nat. or Exper. + Phil. vol. iii. p. 449). Mr. Nairne mentions that in Northampton, when the + northern lights were very bright, he is confident he perceived a hissing or + whizzing sound. Mr. Belknap of Dover, New Hampshire, North America, + testifies to a similar fact (American Trans. vol. ii. p. 196).</p> + + <div class="sidenote">Noises attending + Auroræ. Gmelin affirms + them. Other testimony + to + them. Musschenbroek. Cavallo. Nairne. Belknap.</div> + + + <p>Sir John Franklin mentions, in his ‘Journey to the Shores of the Polar + Sea’:—“Nor could we distinguish its (the Aurora’s) rustling noise, of which, + however, such strong testimony has been given to us that no doubt can remain + of the fact.â€</p> + + <div class="sidenote">March 11th. + Hissing + noise heard + during Aurora’s + passage. Explained + to arise from + the snow.</div> + + <p>In detail, he mentions he never heard any sound that could be unequivocally + considered as originating in the Aurora, although he had had an opportunity + of observing that phenomenon for upwards of 200 nights (the Aurora + was registered at Bear Lake 343 times without any sound being heard to + attend its motions); but the uniform testimony of the natives and all the + older residents in the country induced him to believe that its motions were + sometimes audible. On the 11th March, at 10 <span class="smcapuc">P.M.</span>, a body of Aurora rose + N.N.W.; and after a mass had passed E. by S., the remainder broke away + in portions, which crossed about 40° of the sky with great rapidity. A hissing + noise, like that of a bullet passing through the air, was heard, which seemed + to proceed from the Aurora; but Mr. Wentzel assured the party the noise + was occasioned by severe cold succeeding mild weather, and acting upon the + surface of the snow previously melted in the sun’s rays. A similar noise was + heard the next morning.</p> + + <div class="sidenote">Capt. Sabine + also negatives + noise.</div> + + <p>In Parry’s first voyage, Captain Sabine describes an Aurora seen at Melville + Island, and adds that the Aurora had the appearance of being <i>very near</i> the + party, but <i>no sound could be heard</i>.</p> + + <div class="sidenote">Article + “Aurora + Polaris,†+ Encyc. Brit., + suggests + noises as + not improbable.</div> + + <p>In the article “Aurora Polaris,†Encyc. Brit, edition ix., the writer admits + the evidence of scientific Arctic voyagers having listened in vain for such + noises; but, referring to the statements of Greenlanders and others on the + subject, concludes there is no <i>à priori</i> improbability of such sounds being + occasionally heard, since a somewhat similar sound accompanies the brush-discharge + of the electric machine.</p> + + <div class="sidenote">Payer negatives + and + discredits + noises.</div> + + <p>Payer, of the Austrian Polar Expedition (1872-1874), states that the + Aurora was never accompanied by noise, and discredits the alleged accounts + of noises in the Shetlands and Siberia.</p> + + <span class="sidenote">As also Weyprecht.</span> + + <p>Lieut. Weyprecht, of the same expedition, says (<i>antè</i>, p. 14):—“Involuntarily + we listen; such a spectacle must, we think, be accompanied with sound, but + unbroken silence prevails, not the least sound strikes on the ear.â€</p> + + <div class="sidenote">Herr Carl + Bock negatives + noises + in the case + of Lapland + Auroræ.</div> + + <p>Herr Carl Bock, who accompanied the Laplanders visiting this country (at the + Westminster Aquarium) in 1877-78, and who witnessed many brilliant auroral + displays in Lapland, assured me he could trace no noise, except on one occasion, + when he heard a sort of rustling, which he attributed to the wind. The + Laplanders themselves did not associate any special noise with the Aurora.</p> + + <div class="sidenote">Auroral + noises in + telephone. Ringing + sound in + vacuum-tube + under influence + of + magnet.</div> + + <p>It has been recently stated, in an article on the Telephone in ‘Nature,’ that + Professor Peirce “has observed the most curious sounds produced from a + telephone in connexion with a telegraph wire during the Aurora Borealis;†+ but no further details are given. In experimenting with a silicic fluoride + vacuum-tube between the poles of an electro-magnet, I found, on the magnet + being excited, that the capillary stream of blue light was decreased in volume + and brightness, and at the same time from within the tube a peculiar whistling + or slightly metallic ringing sound was heard.</p> + + <div class="sidenote">Adverse + conclusion + as to noises + accompanying + Aurora.</div> + + <p>I certainly have never met with an instance of noise accompanying an + Aurora and traced to it. On the whole the balance of evidence seems quite + adverse to any proof of noises proper ordinarily accompanying an Aurora.</p> + + <p></p> + + <h4 id="chap-5-2"><i>Colours of the Aurora.</i></h4> + + <div class="sidenote">Colours of + the Aurora. Sir John + Franklin’s + views. Other observers + have + described all + colours of + spectrum. Violet rare. + Crimson + indicates + coming + Aurora.</div> + + <p>Sir John Franklin considered the colours in the Polar Aurora did not + depend on the presence of any luminary, but were generated by the motion + of the beams, and then only when that motion was rapid and the light brilliant. + The lower extremities, he says, quivered with a fiery red colour, and + the upper with orange. He also saw violet in the former. Other observers + have, in their various descriptions of Auroræ, mentioned the colours of the + rays or beams as red, crimson, green, yellow, &c.; in fact, comprising the + range of the spectrum. Violet seems less frequently mentioned. The red + or crimson colour is frequently the first indication of the coming Aurora, and + is usually seen on or near the horizon. The colours have frequently been + observed to shift or change.</p> + + <div class="sidenote">Prof. Piazzi + Smyth describes + colours + of Aurora + of Feb. + 4, 1872, as + seen at + Edinburgh.</div> + + <p>Prof. Piazzi Smyth, in a letter to ‘Nature,’ describing the Aurora of + February 4th, 1872, as seen at Edinburgh, says that when the maximum development + was reached all the heavens were more or less covered with pink + ascending streamers, except towards the N., which was dark and grey—first by + means of a long low arch of blackness, transparent to large stars, and then by + the streamers which shot up from this arch, which were green and grey only + for several degrees of their height, and only became pink as they neared the + zenith. The red streamers varied from orange to rose-pink, red rose, and + damask rose.</p> + + <p>The Professor pointed out that the spectroscope knew no variety of reds + giving one red line only, and attributed this to the mixing up of rays and + streamers of blackness out of the long low arch. When the Aurora faded + away a true starlight-night sky appeared; so that evidently the dark arch and + streamers were as much part of the Aurora as the green and red lights.</p> + + <div class="sidenote">Dr. Allnatt + at Frant + describes + vivid colours + of same + Aurora.</div> + + <p>Dr. Allnatt, at Frant, found in the case of the same Aurora the south-western + part of the heavens tinged by a bright crimson band. A dark elliptical cloud + extending from S. to S.E. was illuminated at its upper edge with a pale yellow + light, and sent up volumes of carmine radii interspersed with green and the + black alternating matter characteristic of elemental electricity. Almost due + E., and of about 25 degrees elevation, was a bright insulated spot of vivid + emerald-green, which appeared almost sufficiently intense to cast a faint + shadow from intercepting objects. At 7 o’clock the Aurora had passed the + zenith, and the sky presented a weird and wonderful appearance. A dark + rugged cloud, some 8 degrees E. of the zenith, was surrounded by electric + light of all hues—carmine, green, yellow, blood-red, white, and black; and + the bright spot still existed in the south.</p> + + <div class="sidenote">Descriptions + at Blackburn + and + Cambridge. Lapland + Auroræ + yellow.</div> + + <p>At Blackburn, in Lancashire, the rays were described as glowing in the + N.E. from silvery white to deepest crimson; and at Cambridge the same + Aurora was described as of a brilliant carmine tint. The Auroræ seen in + Lapland by Herr Carl Bock, were, he informed me, almost invariably yellow; + he saw only one red one.</p> + + <div class="sidenote">Hydrogen + vacuum-tube + suggestive + of Aurora + colours.</div> + + <p>The behaviour of a hydrogen Geissler vacuum-tube will be subsequently + referred to in the Chapter on the comparison of some tubes with the Aurora + spectrum, and is suggestive as to Aurora colours.</p> + + <div class="sidenote">Variation of + tints in.</div> + + <p>The capillary part of this tube, when lighted by a small coil, was found + to vary in tint—silver-white, bright green, and crimson being each in succession + the dominant colour, according to the working of the break of the + coil. When a spectroscope was used, the red, blue, and violet lines of the + gas were seen to change in intensity in accordance with the light colour seen + in the tube.</p> + + <div class="sidenote">Variation of + colour in nitrogen + tube + under influence + of magnet.</div> + + <p>A Geissler nitrogen vacuum-tube was also so arranged that the capillary part + of it should be vertically between the conical extremities of the armatures of + a large electro-magnet, the armatures just being clear of the outside of the + tube. The tube was then lighted up by a small coil, and the magnet excited + by four large double-plate bichromate cells.</p> + + <div class="sidenote">Change from + rosy to violet + hue.</div> + + <p>The stream of light was steady and brilliant, and, except at the violet pole, + of the rosy tint peculiar to a nitrogen vacuum-tube. On excitation of the + electro-magnet, the discharge was seen to diminish in volume, with an apparent + increase in impetuosity; and not only the capillary part, but in a less + degree the bulbs also of the tube, changed from a rosy to a well-marked violet + hue.</p> + + <div class="sidenote">Photographic + plates + taken. Difference + in.</div> + + <p>We several times connected and disconnected the magnet with its batteries, + but always with the same result. Of the spectrum of the capillary part of + this tube we took photographic plates with quartz prisms and lenses, taking + care that all things should be as equal as possible, the apparatus undisturbed, + and the time of exposure exactly the same. One plate was taken with + the tube in its normal condition, the other while it was under the influence of + the magnet. The spectra were identical, except that the plate of the tube + influenced by the magnet was decidedly the brightest, and was found to + penetrate more into the violet region (the Author’s ‘Photographed Spectra,’ + p. 60, plate xxv.). These plates effectually corroborated the change of colour, + as the violet ray would have more photographic effect than the rosy. The + identity of the spectra of the capillary part proved that the change in colour + could not have proceeded from an extension of the violet glow. (A similar + experiment will be found also detailed in Part III. Chapter XII.)</p> + + <h4 id="chap-5-3"><i>Height of the Aurora.</i></h4> + + <div class="sidenote">Height of + Aurora. Sir John + Franklin + considers it + within the + region of the + clouds. At no great + elevation.</div> + + <p>Sir John Franklin (Narrative of a Journey on the Shores of the Polar Sea + in the years 1819, ’20, ’21, ’22) says:—“My notes upon the appearance of + the Aurora coincide with those of Dr. Richardson in proving that that phenomenon + is frequently seated within the region of the clouds, and that it is + dependent in some degree upon the cloudy state of the atmosphere.†And + further:—“The observations of Dr. Richardson point particularly to the + Aurora being formed at no great elevation, and that it is dependent upon + certain other atmospheric phenomena, such as the formation of one or other + of the various modifications of cirro-stratus.â€</p> + + <p>Sir John Franklin also refers to notes from the Journal of Lieut. Robert + Hood, R.N., on an Aurora:—</p> + + <div class="sidenote">Observations + of + Lieut. Robert + Hood + and Dr. + Richardson. A beam not + more than 7 + miles from + the earth. An arch 7 + miles from + the earth.</div> + + <p>The observations were made at Basquian House, and at the same time by + Dr. Richardson at Cumberland House, quadrants and chronometers having + been prepared for the purpose. On the 2nd April the altitude of a brilliant + beam was 10° 0´ 0″ at 10h 1m 0s at Cumberland House. Fifty-five miles + S.S.W. it was not visible. It was estimated that the beam was not more than + 7 miles from the earth, and 27 from Cumberland House. On the 6th April + the Aurora was for some hours in the zenith at that place, forming a confused + mass of flashes and beams; and in lat. 53° 22´ 48″ N., long. 103° 7´ 17″, it + appeared in the form of an arch, stationary, about 9° high, and bearing + N. by E. It was therefore 7 miles from the earth.</p> + + <div class="sidenote">An arch between + 6 and + 7 miles from + the earth.</div> + + <p>On the 7th April the Aurora was again in the zenith before 10 <span class="smcapuc">P.M.</span> at + Cumberland House, and in lat. 53° 36´ 40″ N., long. 102° 31´ 41″. The + altitude of the highest of two concentric arches at 9h P.M. was 9°, at 9h 30m + it was 11° 30´, and at 10h 0m 0s P.M. 15° 0´ 0″, its centre always bearing + N. by E. During this time it was between 6 and 7 miles from the earth. + [The bearings are true, not magnetic.]</p> + + <div class="sidenote">Sir John + Franklin’s + remarks.</div> + + <p>Sir J. Franklin says this was opposed to the general opinion of meteorologists + of that period: he also noticed he had sometimes seen an attenuated + Aurora flashing across the sky in a single second, with a quickness of motion + inconsistent with the height of 60 or 70 miles, the least that had hitherto been + ascribed to it.</p> + + <p></p> + + <div class="sidenote">Dr. Richardson’s + conclusions.</div> + + <p>The needle was most disturbed, February 13, 1821, <span class="smcapuc">P.M.</span>, at a time when + the Aurora was distinctly seen passing between a stratum of cloud and the + earth; and it was inferred from this and other appearances that the distance + of the Aurora from the earth varied on different nights. Dr. Richardson concludes + that his notes prove, independent of all theory, that the Aurora is + occasionally seated in a region of the air below a species of cloud which is + known to possess no altitude; and is inclined to infer that the Aurora Borealis + is constantly accompanied by, or immediately precedes, the formation of one + or other of the forms of cirro-stratus.</p> + + <div class="sidenote">Captain + Parry observed + Auroræ + near + the Earth’s + surface. Sir W. R. + Grove’s observation + at + Chester. Mr. Ladd’s + observation + at Margate. The author’s + observation + at Kyle + Akin, Skye.</div> + + <p>Captain Parry observed Auroræ near the earth’s surface; and records that + he and two companions saw a bright ray of the Aurora shoot down from the + general mass of light between him and the land, which was distant some + 3000 yards. Sir W. R. Grove (‘Correlation of Physical Forces’) saw an + Aurora at Chester, when the flashes appeared close, so that gleams of light + continuous with the streamers were to be seen between him and the houses—“he + seemed to be in the Aurora.†Mr. Ladd, of Beak Street, Regent Street, + has related to me an appearance he was struck with, and examined carefully. + Standing in the evening in Margate Harbour, he saw a white ray of the + Aurora, which, apparently shooting downwards, was clearly placed between + his eye and the opposite head of the pier, which projected into the sea. Mr. + Ladd also informed me that Prof. Balfour assured him that such an appearance + was not unusual. In the double-arc Aurora seen by me in the Isle of + Skye, September 11, 1874 (described <i>antè</i>, p. 23), I had a strong impression + that the bow was near the earth, and thought that the eastern end, and some + fleecy clouds in which it was involved, were between myself and the peaks of + the distant mountains.</p> + + <div class="sidenote">Dalton’s calculation + of + 100 miles. Backhouse’s + 50 to 100 + miles. Prof. Newton, + mean + 130 miles. Elevation of + Auroræ cannot + exceed a + few miles.</div> + + <p>In the article “Aurora Polaris,†Encyc. Brit., edition ix., Dalton is + instanced as having calculated the height of an Aurora in the north of England + at 100 miles; and Backhouse as having made many calculations, with the + result of an average height of 50 to 100 miles. Prof. Newton, too, is quoted + for the height of 28 Auroræ (calculated by one observation of altitude and + amplitude of an arch) as ranging from 33 to 281 miles, with a mean of + 130 miles. It is, however, pointed out that a height of 62 miles above the + earth’s surface would imply a vacuum attainable with difficulty, even with + the Sprengel pump. This difficulty is then met by a reference to the observed + altitude of some meteors, and to a suggestion of Prof. Herschel’s that electric + repulsion may carry air or other matter up to a great height. Dr. Lardner + (‘Museum of Science and Art,’ vol. x. p. 192) speaks of the height of Auroræ + as not certainly ascertained; but considers them atmospheric phenomena + scarcely above the region of the clouds, and does not think it probable that + their elevation in any case can exceed a few miles.</p> + + <div class="sidenote">M’Clintock’s + observations. Capt. Ross + saw Auroræ + on an ice-cliff, + which + he attributed + to electric + action.</div> + + <p>M’Clintock, after noticing that the beams of the Aurora were most frequently + seen in the direction of open water, says that in some cases patches of light + could be plainly seen a few feet above a small mass of vapour over an opening + in the ice. Captain Ross, in his Antarctic voyage, saw the bright line of the + Aurora forming a range of vertical beams along the top of an ice-cliff; and + suggested this was produced by electrical action taking place between the + vaporous mist thrown upwards by the waves against the berg, and the colder + atmosphere with which the latter was surrounded.</p> + + <div class="sidenote">Bergman + estimates + height as + 468 miles.</div> + + <p>Bergman, from a mean of 30 computations, makes the height of the phenomenon + to be 72 Swedish (about 468 English) miles.</p> + + <div class="sidenote">Boscovich + 825 miles.</div> + + <p>Father Boscovich calculated the height of an Aurora Borealis observed on + the 16th December, 1727, to have been 825 miles.</p> + + <div class="sidenote">Mairan 600 + miles. Euler several + thousand + miles. Dr. Blagden + about 100 + miles.</div> + + <p>Mairan supposed the far greater number of Auroræ to be at least 600 miles + above the surface of the earth. Euler assigned them an elevation of several + thousands of miles. Dr. Blagden, however, limited their height to about + 100 miles, which he supposed to be the region of fireballs—remarking that + instances were upon record in which northern lights had been seen to join + and form luminous balls, darting about with great velocity, and even leaving + a train behind them like common meteors (Phil. Trans. vol. lxxiv. p. 227).</p> + + <div class="sidenote">Dalton 150 + miles.</div> + + <p>Mr. Dalton, from an observation of the luminous arches on a base of + 22 miles, found the altitude of the Aurora to be about 150 miles (Dalton’s + ‘Meteorological Observations and Essays,’ 1793, pp. 54, 153).</p> + + <div class="sidenote">Dr. Thompson + assumes + considerable + height. His table. Average of + 31 observations, + 500 + miles.</div> + + <p>Dr. Thompson, ‘Annals of Philosophy,’ vol. iv. p. 429 (1814), assumes that + the height of the beams above the surface of the earth was much greater than + that of most other meteorological appearances, and gives (p. 430) a table of + Auroræ, mainly taken from Bergman, Opusc. v. p. 291, of 31 Auroræ + observed in the years 1621 to 1793, with heights in English miles. The + lowest is, 23rd February, 1784, London (Cavendish), 62 miles; the highest, + 23rd October, 1751, Fournerius, 1006 miles! The average of the 31 estimated + observations gives a height of about 500 miles. It is not stated + how these observations were obtained, though methods are mentioned how + they might be.</p> + + <div class="sidenote">Prof. Heis’s + instrument + for determining + height of + Auroræ.</div> + + <p>Prof. Heis, of Münster, exhibited at the recent Scientific Loan Collection + at South Kensington (‘Official Catalogue,’ 3rd edit. p. 296, No. 1231) an + instrument for the determination of the position of the point of convergence + of the rays of the Aurora, and for determining the height of the Aurora. A + ball resting in a pan was to be brought into position, so that several diverging + pencils of Aurora, when properly viewed, were covered by the rod which + passed through the centre of the ball. The point of the rod (which could be + moved up and down in the ball), when the instrument was set to the astronomical + meridian, showed the azimuth and altitude of the converging point of + the pencils of light. This point of convergence does not coincide with the + point to which the inclination-needle directs. From the deviation of the two + points, the height of the Aurora could be calculated.</p> + + <div class="sidenote">Professor + Newton’s + method of + calculating + height.</div> + + <p>Professor H. A. Newton (Sil. Journ. of Science, 2nd ser. vol. xxix. p. 286) + has proposed a method of calculating the height of Auroræ by one observation + of altitude and amplitude of an arch. It assumes that the auroral arches + are arcs of circles, of which the centre is the magnetic axis of the earth, or at + least that they are nearly parallel to the earth’s surface, and probably also to + the narrow belt or ring surrounding the magnetic and astronomical poles. + Professor Newton finds that, <i>d</i> being the distance from the observer to the + centre of curvature of the nearest part of this belt (for England, situated about + 75° N. lat., 50° W. long.), <i>h</i> the apparent altitude of the arch, 2<i>a</i> its amplitude + on the horizon, <i>x</i> its height, R the earth’s radius, and <i>c</i> the distance of the + observer from the ends of the arch:—</p> + + <table summary="Equations"> + <tr> + <td>sin φ = sin <i>d</i> cos <i>a</i> cosec(<i>d</i> + <i>h</i>)</td> + <td class="tdr">(1)</td> + </tr> + <tr> + <td>tan <i>c</i> = <i>z</i> sin <i>h</i> sin φ sec ²φ</td> + <td class="tdr">(2)</td> + </tr> + <tr> + <td><i>x</i> = R - (sec <i>c</i> - 1)</td> + <td class="tdr">(3)</td> + </tr> + </table> + + <div class="sidenote">Gave a + height from + 33 to 281 + miles, and a + mean of 130 + miles.</div> + + <p class="noindent">This method with 28 Auroræ gave a height from 33 to 281 miles and a mean + of 130 miles.</p> + + <p>Galle has suggested (Pogg. Ann. cxlvi. p. 133) that the height of Auroræ + might be calculated from the amount of divergence between the apparent + altitude of the auroral corona and that indicated by the dipping-needle, a + principle which has been adopted in Prof. Heis’s apparatus before described. + The results do not differ materially from Professor Newton’s.</p> + + <p>The conclusions to be arrived at from the foregoing instances and opinions + are certainly very puzzling. The terrestrial character of some Auroræ seems + well established. The height to which these phenomena <i>may</i> ascend is left + almost a matter of conjecture, and further observations are very desirable.</p> + + <p></p> + + <h4 id="chap-5-4"><i>Phosphorescence.</i></h4> + + + <p><span class="sidenote">Phosphorescence. Phosphorescent bands. Storm-clouds\which threw out cirri. Shone with a sort of phosphorescence. Storm-cloud surrounded by glories of a phosphorescent whiteness.</span> In the voyage of the ‘Hansa’ (‘Recent Polar Voyages,’ p. 420), on the 9th + September, 1869, at 10 <span class="smcapuc">P.M.</span>, Aurora gleams appeared in the west, shooting + towards the south. “Radiant sheaves and phosphorescent bands mounted + towards the zenith,†but the phantasmagoria quickly vanished. M. Silbermann + (‘Comptes Rendus,’ lxviii. p. 1120) mentions storm-clouds which threw out + tufts of cirri from their tops, which extended over the sky, and resolved into, + first, fine, and afterwards more abundant rain. (I saw a fine day example of this + on the Lago di Guarda, ending in a copious discharge of rain attended with + loud thunder and vivid lightning.) Usually the fibres were sinuous; but in + much rarer cases they became perfectly rectilinear and surrounded the cloud + like a glory, and occasionally shone <i>with a sort of phosphorescence</i>. On the + night of 6th September, 1865, at 11 <span class="smcapuc">P.M.</span>, a stormy cloud was observed in the + N.N.W., and lightning was seen in the dark cumulous mass. Around this mass + extended <i>glories of a phosphorescent whiteness</i>, which melted away into the + darkness of the starry sky. Round the cloud was a corona, and outside this + two fainter coronæ. After the cloud had sunk below the horizon the glories + were still visible.</p> + + <div class="sidenote">Sabine’s + luminous + cloud at + Loch Scavaig, + Skye. Other observations + of + luminous + clouds.</div> + + <p>Sabine mentions a cloud frequently enveloping Loch Scavaig, in Skye, as + being at night perfectly self-luminous, and that he saw rays, similar to those + of the Aurora, but produced in the cloud itself. Sabine also refers to + luminous clouds mentioned in Gilbert’s Annals, and to observations by + Beccaria, Deluc, the Abbé Rozier, Nicholson, and Colla; and to luminous + mists as observed by Dr. Verdeil at Lausanne in 1753, and by Dr. Robinson + in Ireland.</p> + + <div class="sidenote">Aurora at + Melville + Island.</div> + + <p>He also describes (Parry’s First Voyage) an Aurora seen at Melville + Island, and says the light was estimated as equal to that of the moon when a + week old. Besides the pale light, <i>which resembled the combustion of phosphorus</i>, + a slight tinge of red was noticed when the Aurora was most vivid; + but no other colours. This Aurora was repeatedly seen <i>on the following day</i>.</p> + + <div class="sidenote">Procter + suspects + Aurora is + formed in a + mist. M’Clintock: + Aurora is + never visible + in a perfectly + clear + atmosphere.</div> + + <p>Mr Procter, in a letter to me, suspects that the Aurora is generally formed + in a sort of “mist or imperfect vapour;†and this mist or imperfect vapour + seems in many instances to form part of the Aurora, and to partake of its + self-luminous character. M’Clintock does not imagine that the Aurora is + ever visible in a perfectly clear atmosphere. He has often observed it just + silvering or rendering luminous the upper edge of low fog or cloud-banks, + and with a few vertical rays feebly vibrating.</p> + + <p></p> + + <div class="sidenote">Aurora of + Feb. 4, 1874. Illuminated + fog-cloud. Capt. Oliver’s + meteor-cloud. Auroral display, + 24th + Oct., 1870. Streamers + of phosphorescent + cloud.</div> + + <p>An instance of apparent phosphorescence is supplied by the Aurora of the + 4th February, 1874 (<i>antè</i>), when a bright cloud of light was seen which gave + the impression of an “<i>illuminated fog-cloud</i>.†Captain S. P. Oliver saw at + Buncrana, Co. Donegal, on February 4, 1874, what he describes as a meteor-cloud, + viz. “a broad band of silvery white and luminous cloud.†This + appearance, as described by another correspondent, was evidently an imperfectly + formed (perhaps actually forming) Auroral arc. The great Auroral + display of the 24th of October, 1870, as seen by me, included, according to + my notes made at the time, “streamers of opaque white phosphorescent + cloud, very different from the more common transparent Auroral diverging + streams of light.â€</p> + + <div class="sidenote">Aurora of + Feb. 4, 1872, + at Frant. Radii of + phosphorescent + light.</div> + + <p>Describing the Aurora of February 4, 1872, at Frant, Dr. Allnatt says:—“At + a later hour of the night the canopy of cirro-stratus had separated, and + was transformed into luminous masses of radiant cumulus. At 10.40 the + Aurora reappeared in the N., and sent luminous radii of white <i>phosphorescent</i> + light from the periphery of a segment of a perfectly circular arch†<span class="footnote">On the occasion of the Aurora of September 24, 1870, Dr. Allnatt says, “the air seemed literally alive with the unwonted phosphorescence.â€</span>.</p> + + <div class="sidenote">The author’s + description + of same + Aurora. Masses of + phosphorescent + vapour.</div> + + <p>Again, February 4th, 1872, as described by me, the first signs of the + Aurora were (in dull daylight) a lurid tinge upon the clouds, which suggested + the reflection of a distant fire; while scattered among these, “torn and broken + masses of white vapour having a phosphorescent appearance†reminded me + of a similar observation in October 1870.</p> + + <div class="sidenote">Day Auroræ + must have a + phosphorescent + glow. Ã…ngström + considers + yellow-green + line + due to fluorescence + or + phosphorescence. Oxygen and + some of its + compounds + phosphorescent.</div> + + <p>The day Auroræ, which are elsewhere described, and are not very uncommon, + could, we may presume, hardly be seen without the presence of + some phosphorescent glow. Professor Ã…ngström, in his Aurora Memoir + (discussed elsewhere), in discussing the yellow-green line, considers the only + probable explanation to be that it owes its origin to fluorescence or phosphorescence. + He says that some fluorescence is produced by the ultra-violet + rays; and adds, “an electric discharge may easily be imagined, which, though + in itself of feeble light, may be rich in ultra-violet light, and therefore in a + condition to cause a sufficiently strong fluorescent light.†And he refers to + the fact that oxygen and some of its compounds are phosphorescent.</p> + + <div class="sidenote">A phosphoretted + hydrogen + spectrum-band + is close + to yellow-green + auroral line. Phosphorescent + or fluorescent + after-glow + of electric + discharge.</div> + + <p>In the examination of certain spectra connected with the Aurora, detailed + in Part II., I have shown that the bright edge of one of the phosphoretted + hydrogen bands is in close proximity to the yellow-green Auroral line. I + have also referred to the peculiar brightening by reduction of temperature of + one of the bands in the red end of the spectrum of phosphoretted hydrogen, + so that from almost invisible it became bright, and to the peculiar brightening + of a line in the yellow-green in certain “Aurora†and phosphorescent tubes. + It has also been observed that the electric discharge has a phosphorescent or + fluorescent after-glow (isolated, I believe, by Faraday). It seems difficult to + avoid in some way connecting all these circumstances with the yellow-green + line of the Aurora, if not also with the line in the red.</p> + + <div class="sidenote">Sorby’s experiments + on fluorescence + and + absorption. Bonelleine, + spectrum of. Coloured + layer of + fungi. Spectrum of + <i>Oscillatoriæ</i>.</div> + + <p>Mr. Sorby, in his experiments on the connexion between fluorescence and + absorption (‘Monthly Microscopical Journal’), found in the spectrum of a + solution in alcohol of a strongly fluorescent substance called bonelleine (the + green colouring-matter found in the <i>Aurelia Bonellia-viridis</i>) two bright + bands, the one red and the other green, with centres respectively at 6430 + and 5880, and their limits towards the blue end at 6320 and 5820. On + adding an acid the red band changed its place to 6140. The superficial + membranous coloured layer of the fungi <i>Russula nitida</i> and <i>vesca</i> in alcohol + gave an absorption band with centre at 5540, while the spectrum of fluorescence + extended to 4400. A solution of <i>Oscillatoriæ</i> in water gave a + spectrum of absorption with bands at 6200 and 5690; while the spectrum of + fluorescence showed two bright bands having their centres at 6470 and 5800, + and their limits towards the blue end at 6320 and 5710.</p> + + <div class="sidenote">Sea phosphorescence, + a continuous + spectrum.</div> + + <p>These instances of course cannot be connected with the Aurora except as + showing the spectrum region and lines of fluorescence. The sea phosphorescence, + according to Professor Piazzi Smyth, has a continuous spectrum + extending from somewhat below E to near F (Plate V. fig. 3).</p> + + <div class="sidenote">Ã…ngström + finds the + sky almost + phosphorescent.</div> + + <p>Ã…ngström, on the occasion of the starry night when he found traces of the + green line in all parts of the heavens, speaks of the sky as being “almost + phosphorescent.â€</p> + + <div class="sidenote">Author of + article in + Encyc. Brit. + suggests + that the + phosphorescent + or fluorescent + light + may be due + to chemical + action. Herschel’s + observation + of phosphorescence + in + Geissler and + “garland†+ tubes.</div> + + <p>The author of the Aurora article in the Encyc. Brit. suggests that the + phosphorescent or fluorescent light attributed to the Aurora may be due to + chemical action. He also questions Ã…ngström’s assumption that water-vapour + is absent in the higher atmosphere, and thinks that it and other + bodies may, by electric repulsion, be carried above the level they would + attain by gravity. He then continues that if discharges take place between + the small sensible particles of water or ice in the form of cirri (as Silbermann + has shown to be likely) surface decomposition would ensue, and it is + highly probable the nascent gases would combine with emission of light. + He adds “that it has been almost proved that in the case of hydrogen + phosphide the very characteristic spectrum (light?) produced by its combustion + is due neither to the elements nor to the products of combustion, but + to some peculiar action at the instant of combination; and it is quite possible + that under such circumstances as above described water might also give + an entirely new spectrum.†Professor Herschel has referred to the phosphorescent + light which remains glowing in Geissler tubes after the spark has + passed, and to the fact that one of the globes of a “garland†tube which + was heated did not shine after the spark had passed, apparently because of + the action of heat on the ozone to which the phosphorescence might be due. + (See experiments on Mr. Browning’s bulbed tube, Part III. Chap. XV.)</p> + + <h4 id="chap-5-5"><i>Aurora and Ozone.</i></h4> + + <div class="sidenote">Aurora and + Ozone. Smells of + sulphur + during + Auroræ attributed + to + ozone.</div> + + <p>Accounts are given by travellers in Norway of their being enveloped in the + Aurora, and perceiving a strong smell of sulphur, which was attributed to the + presence of ozone. M. Paul Rollier, the aëronaut, descended on a mountain + in Norway 1300 metres high, and saw brilliant rays of the Aurora across a + thin mist which glowed with a remarkable light. To his astonishment, an + incomprehensible muttering caught his ear; when this ceased he perceived a + very strong smell of sulphur, almost suffocating him (‘Arctic Manual,’ p. 726).</p> + + <div class="sidenote">Question + whether the + oxygen of + the air may + be changed + into ozone.</div> + + <p>In the case of the Aurora, the question naturally arises whether the + oxygen of the air may be changed into ozone, perhaps also whether the + nitrogen may not be modified in some similar manner.</p> + + <div class="sidenote">Ozone destroyed + by + heat.</div> + + <p>The absorption spectra of oxygen, and of the same gas in its form of ozone, + may possibly differ; but this can hardly happen in the case of incandescent + oxygen, for ozone is at once destroyed by heat at 300°, and slowly at 100°, + and must be partially at least destroyed by the heat of the discharge. If + any lines were due to ozone in such a spectrum, we should expect they would + be weakened by heat and brightened by cold.</p> + + <div class="sidenote">Ozone in a + large bell-receiver + not + manifested + in spectrum.</div> + + <p>In the case of a continued discharge in a large exhausted bell-receiver, the + presence of ozone in considerable quantities was manifested to us by its + odour when the receiver was removed from the pump; but the spectrum of + the stream of light did not appear to differ from that in Geissler tubes.</p> + + <div class="sidenote">Professor + Dewar demonstrates + that ozone + is condensed + oxygen.</div> + + <p>In a course of lectures at the Royal Institution in March 1878, on the + Chemistry of the Organic World, Prof. Dewar appears to have demonstrated, + by Prof. Andrews’ apparatus, that ozone is really condensed oxygen, and, + further, that during this condensation heat is absorbed, which is evolved + during the decomposition or re-expansion.</p> + + <div class="sidenote">Refers to the + silent discharge + between + the atmosphere + and + the earth.</div> + + <p>He also exhibited the oxidizing power of ozone in its action on mercury, + and commented on its similar action upon organic matter in forming nitrates, + and on its remarkable bleaching properties, but added there was as yet no + proof of its combining with free nitrogen. That peroxide of hydrogen + accompanies the formation of ozone by the slow combustion of phosphorus, + and that this peroxide acts with ozone in decomposing organic bodies, though + in an inexplicable manner, the Professor considered to be proved. He also + referred to the silent discharge probably perpetually going on between the + upper and lower strata of the atmosphere, and also between these and the + earth, accounting, as the Professor considered, for some of the chemical + actions whereby nitrogenous compounds are formed in the soil.</p> + + <div class="sidenote">No spectrum + of + ozone obtained.</div> + + <p>As far as I am aware, no information as to a possible spectrum of ozone, + or a modification of the oxygen or other spectra by its presence, has, up to + the present time, been obtained <span class="footnote">See, however, Dr. Schuster’s article “On the Spectra of Lightning,†Phil. Mag. May 1879, p. 316.</span>.</p> + + <div class="sidenote">Suggestion + to subject + electric discharge + to + influence of + cold.</div> + + <p>It has been suggested by Mr. Procter and myself that the electric discharge + in an exhausted moist tube, if subjected to a considerable degree of cold, + might produce a modification of the air-spectrum, perhaps even a spectrum + analogous to that of the Aurora.</p> + + <p>For some further notes on this subject see Appendix D (Aurora and Ozone).</p> + + <h4 id="chap-5-6"><i>Polarization of the Aurora Light.</i></h4> + + <div class="sidenote">Polarization + of the Aurora + light. Mr. Ranyard + found none.</div> + + <p>In ‘Nature,’ vol. vii. p. 201, is contained an account of observations of the + polarization of the zodiacal light and of the Aurora, by Mr. A. Cowper + Ranyard, who, using both a double-image prism and a Savart on the great + Aurora of February 4th, 1872, detected no trace of polarization. He also + examined a smaller one of 10th November, 1871, with a like result.</p> + + <div class="sidenote">Prof. Alexander + found + strong polarization + in + latitude 60°.</div> + + <p>Mr. Fleming (who refers to these observations) remarks that the only other + account he had met with was contained in Prof. Stephen Alexander’s Report + on his Expedition to Labrador, given in Appendix 21 of the U.S. Coast Survey + Report for 1860, p. 30. Professor Alexander found strong polarization with + a Savart’s polariscope, and thought that the dark parts of the Aurora gave + the strongest polarization. This was in latitude about 60°, at the beginning + of July, and near midnight. It is not stated whether there was twilight or + air-polarization at the time, nor is the plane of polarization given.</p> + + <div class="sidenote">Mr. Shroeder + found + no polarization.</div> + + <p>The question naturally arises, especially as the darkest parts of the Aurora + are usually situated low down near the horizon, whether the polarization in + the latter case did not proceed from the atmosphere and not from the Aurora + itself. Mr. Shroeder found no traces of polarization in the Aurora of + February 4th, 1872. Further examinations of the Aurora with some delicate + form of polariscope would seem very desirable.</p> + + <div class="sidenote">Polarization + not found in + the zodiacal + light; except + faint + traces by + Mr. Burton.</div> + + <p>The evidence of polarization in the case of the zodiacal light seems also + almost entirely negative—Mr. Ranyard pointing out observations of his own, + of Captain Tupman, and of Mr. Lockyer with this result. Mr. Burton, + using a Savart set so as to give a black centre when the bands were parallel + to the plane of polarization, believed he detected faint traces of polarization + in the brightest parts of the zodiacal light (as seen in Sicily), the bands being + black-centred when their direction coincided with the axis of the cone of + light. Mr. Burton saw no trace of bands when examining the slight remaining + twilight apart from the zodiacal light. Mr. Ranyard was not able to + confirm Mr. Burton’s observations on the same evening and with the same + instrument.</p> + + <h4 id="chap-5-7"><i>Number of Auroræ.</i></h4> + + <div class="sidenote">Number of + Auroræ. Sir John + Franklin’s + observations.</div> + + <p>Sir John Franklin saw in the Arctic Regions, in the years 1819, 1820, + 1821, 1822:—In the month of September two Auroræ, in October three, in + November three, in December two, in January five, in February seven, in + March sixteen, in April fifteen, and in May eleven.</p> + + <div class="sidenote">Periodicity + as to days + not established.</div> + + <p>Periodicity as to days seems to have no certain law; and though certain + days in February and March are marked as those of fine returning displays, + they must be looked on as accidental.</p> + + <div class="sidenote">Maxima and + minima.</div> + + <p>Two well-marked annual maxima seem to occur in March and October (the + latter the greater), and two minima in June and January, the greater in + June (Encyc. Brit.). The 4th of February, 1872, and same day 1874, are, + however, curious instances of a recurring remarkable display.</p> + + <div class="sidenote">Kæmtz’s + table.</div> + + <p>A table by Kæmtz, showing the number of Auroras in each month of + the year, with the maxima and minima as above stated, will be found on + Plate V. fig. 5.</p> + + <div class="sidenote">Dr. Hayes’s + observations + in winter of + 1860-61.</div> + + <p>Dr. Hayes has observed that in the winter of 1860-61 (when the ten or + eleven years’ inequality was at its maximum) only three Auroræ were seen and + recorded, and they were feeble and short in duration.</p> + + <div class="sidenote">Captain + Maguire’s + observations + at Point + Barrow as + to number + and time of + appearances.</div> + + <p>Captain Maguire, at Point Barrow (1852-54), reports that the Aurora was + seen six days out of seven, and on 1079 occasions, being nearly one third of + the hourly observations. It was seldom seen between 9 <span class="smcapuc">A.M.</span> and 5 <span class="smcapuc">P.M.</span>, not + at all between 10 <span class="smcapuc">A.M.</span> and 4 <span class="smcapuc">P.M.</span> It increased regularly and rapidly from + 5 <span class="smcapuc">P.M.</span> until 1 <span class="smcapuc">A.M.</span>, and then diminished in the same way until 9 <span class="smcapuc">A.M.</span></p> + + <p>The winters of 1877 and 1878 and the springs of 1878 and 1879 have been + singularly deficient in Auroræ. I have seen none at Guildown.</p> + + <p></p> + + <h4 id="chap-5-8"><i>Duration of Aurora.</i></h4> + + <div class="sidenote">Duration of + Aurora. Sometimes a + few minutes; + at other + times the + whole night + or even days.</div> + + <p>In the article in the ‘Edinb. Encyc.’ before referred to some remarks are + made on the duration of the Aurora. Sometimes it is formed and disappears + in the course of a few minutes. At other times it lasts for hours or during + the whole night, or even for two or three days together. Musschenbroek + observed one in 1734 which he considered to have lasted ten days and nights + successively, and another in 1735 which lasted from the 22nd to the 31st + March.</p> + + <div class="sidenote">Auroræ may + run on into + the day + without + being + noticed.</div> + + <p>With respect to Captain Maguire’s observations (<i>antè</i>) it may be remarked + that Auroræ may doubtless frequently run on into and through the day + without their being noticed (instances, however, are known of Auroræ seen + in daylight); and hence it is difficult to judge of the limit of duration of a + particular Aurora unless indications are sought for during the day (by the + shapes of clouds, action of the magnet, &c.) as well as during the night. + Probably Auroræ seen during successive nights may be parts of a continuous + discharge.</p> + + <h4 id="chap-5-9"><i>The Travelling of Auroræ.</i></h4> + + <div class="sidenote">Travelling + of Auroræ. Donati’s investigations.</div> + + <p>Donati undertook to study the Aurora with reference to the mode of its + extension; and he arrived at the result that the Aurora of February 4, 1872, + was not observed in different regions of the earth in the same physical + moment; <i>but everywhere at the same local hour</i>, as in the case of celestial + phenomena, which do not share in the earth’s rotation.</p> + + <div class="sidenote">Questions + sent to + Italian Consuls.</div> + + <p>The Minister of Foreign Affairs sent a circular to all Italian Consuls, + asking them the necessary questions; and in reply received reports from + forty-two places in our hemisphere and from four in the southern, the + places embracing in one latitude the considerable extent of 240 degrees of + longitude.</p> + + <p>An epitome of the tables (in which the results are divided into three zones) + is as follows:—</p> + + <div class="sidenote">Table of + results.</div> + + <table summary="Results" class="borders"> + <tr> + <th>Zone.</th> + <th>Mean longitude<br />of zone.</th> + <th>No. of<br />stations.</th> + <th>Mean hour<br />of maximum.</th> + <th>Mean hour<br />of end.</th> + </tr> + <tr> + <td class="bl">Eastern</td> + <td class="nw">2 hrs. 5 mins. E.</td> + <td class="tdr">9</td> + <td class="tdr">9½ hrs.</td> + <td class="tdr">12¼ hrs.</td> + </tr> + <tr> + <td class="bl">Middle</td> + <td class="nw">0 hr. 20 mins. E.</td> + <td class="tdr">17</td> + <td class="tdr">8½ hrs.</td> + <td class="tdr">11½ hrs.</td> + </tr> + <tr> + <td class="bb bl">Western</td> + <td class="bb nw">5 hrs. 38 mins. W.</td> + <td class="bb tdr">13</td> + <td class="bb tdr">8¾ hrs.</td> + <td class="bb tdr">9¾ hrs.</td> + </tr> + </table> + + <p></p> + + <div class="sidenote">Extensions + of the + Aurora. The Aurora + passed + through + four periods. + First period + of origin, + light weak. + Second + period, increase + of intensity. + Third period, + continuous + brightness. + Fourth + period, decrease.</div> + + <p>Donati summed up the facts:—That the light phenomena of this Aurora + began to show themselves in the extreme east of the southern hemisphere in + Eden and Melbourne; shortly after, they were observed in the east of our + hemisphere in China (but not in Japan); from China the Aurora passed + over the whole of Asia and Europe, and crossed the Atlantic and the + American Continent as far as California. It was invisible in Central and + South America. During these immense extensions it passed through four + periods. In the first (called by Donati the period of origin) the light of the + Aurora was pretty weak, and spread from Shanghai to Bombay; in the + second period, during which it passed on from Bombay to Taganrog, it + acquired a sudden increase of intensity; in the third period (called by Donati + the normal) the Aurora passed over Europe from east to west with regularity + and a continuous brightness; the fourth period, that of decrease, was observed + in America. The Aurora had a tendency to end earlier in reference + to the local hour in the western stations than in the eastern. The acceleration + on an average of the end of the phenomenon was twenty minutes for + every hour of longitude.</p> + + <div class="sidenote">Donati’s + conclusions. Explanation + of mode of + propagation + of same + Aurora.</div> + + <p>Donati concluded that these facts were not reconcilable with the theory of + the Aurora depending on meteorological and electro-magnetic phenomena of + the globe. Since, too, we have not a yearly, but a ten-yearly period of the + Aurora, which coincides with that of sun-spots and terrestrial magnetism, + Donati supposed that the cosmic causes of the polar lights were electro-magnetic + currents between the sun and the earth. This would explain the + mode of propagation of the Aurora of 4th February. Conceive an electric + current going from the earth to the sun, or <i>vice versâ</i>; certain phenomena + of the Aurora could only be observed in those parts of the atmosphere which + have a determinate position or direction with reference to this current; and + consequently these phenomena would be successively visible on the different + meridians, as these meridians, by reason of the earth’s rotation, assume the + same position to the current. For the Aurora to be visible certain meteorological + and telluric circumstances must, however, doubtless work together + with the cosmical cause.</p> + + <h4 id="chap-5-10"><i>Geographical Distribution of Auroræ (Fritz and Loomis).</i></h4> + + <div class="sidenote">Geographical + Distribution + of + Auroræ. Prof. Fritz’s + and Prof. + Loomis’s + line of frequency.</div> + + <p>Professors Fritz and Loomis have investigated this subject; and Petermann’s + ‘Mittheilungen,’ vol. xx. (1874), contains a paper by the former, + from which it appears that the northern limit of Auroræ chosen by Professor + Loomis nearly coincided, except in England, with a line of frequency in + Professor Fritz’s paper. This line nearly passes through Toronto, Manchester, + and St. Petersburg. Professor Loomis places it as far north as + Edinburgh. On a line across Behring’s Straits, and coming down below + 60° N. in America and the Atlantic, and just north of the Hebrides, to + Dröntheim, and including the most northern points of Siberia, the frequency + is represented by 100.</p> + + <div class="sidenote">Within this + another zone + of greatest + frequency + and intensity.</div> + + <p>Within this is another zone of greatest frequency and intensity, which + passes just south of Point Barrow, in lat. 72° N., on the northern coast of + America, and by the Great Bear Lake to Hudson’s Bay, where it reaches a + latitude of 60°, then on to Nain, on the coast of Labrador, and to the south + of Cape Farewell; then bending sharper to the northward, it passes between + Iceland and the Faroe Islands, near to the North Cape, on by the northern + ice-sea to Nova-Zembla and Cape Tschejuskin, and on just to the north of + the Siberian coast to the south of Kellett Land, thence returning to Point + Barrow.</p> + + <div class="sidenote">Lines on + which annually + nearly + the same + number of + Auroræ are + seen.</div> + + <p>More or less parallel with this line are the lines on which annually nearly + the same number of Auroræ are seen. The line for one Aurora annually + went from Bordeaux, through Switzerland, past Krakau, south of Moscow + and Tobolsk, to the northern end of Lake Baikal, on to the Sea of Ochotsk + and to the Southern Aleutes, thence through Northern California to the + mouth of the Mississippi and to Bordeaux. The line for five Auroræ + annually went from Brest through Belgium, Stettin, Wologda, between + Tobolsk and Beresow, parallel to the previous line to Ochotsk, and on to + Brest, &c. Almost exactly with the line of greatest frequency coincides + the line forming the boundary of the direction of visibility of the Northern + Light towards the Pole or towards the Equator; while northwards of this + line the Polar Light is seen in the direction towards the Equator; and from + all stations the Northern Lights are seen in directions which are pretty much + normal to that curve and the entire system of isochasms.</p> + + <div class="sidenote">Assumed + connexion + between + Aurora + and ice-formation.</div> + + <p>Professor Fritz has remarked that the curves of greater frequency tend + towards the region of atmospheric pressure, and also that they bear some + relation to the limit of perpetual ice—tending most southward where, as in + North America, the ice limit comes further south. He also endeavours to + show a connexion between the periods of maximum of Auroræ and those of + ice-formation, and considers ice to be an important local cause influencing + their distribution. These being most frequently seen over open water in + the Arctic regions, has been referred to as noticed by Franklin and others.</p> + + <p></p> + + <h4 id="chap-5-11"><i>Extent and principal Zone of the Aurora.</i></h4> + + <div class="sidenote">Extent and + principal + zone of + Aurora. M. Moberg’s + Finland observations + (1846-55) + compared by + Prof. Fritz + with those + in other regions.</div> + + <p>The Finland observations, published by M. Moberg in his ‘Polarlichter + Katalogue’ of Northern Lights in the years 1846-55, numbering 1100, have + been compared by Prof. Fritz, in his paper in the ‘Wochenschrift für Astronomie,’ + with the auroral phenomena of the same period in all other regions. + The Table shows that of 2035 days of the months August to April on + which Northern Lights were seen, 1107 days were those of Northern Lights + for Finland. On 794 they were visible simultaneously in America, and + mostly also in Europe; on 101 days in Europe only, and on 212 days in Finland + only. On 958 days Northern Lights were visible in Europe and America + which were not visible in Finland. All these numbers refer only to the + months August to April, as in the remaining months the brightness of the + night in Finland makes such observations impossible.</p> + + <p>The conclusion is arrived at that a large portion of Auroræ have no very + great extension, or that the causes producing the phenomena must often be + of a very local character; while in another portion of the phenomena the + extent, or the regions of simultaneous appearance are very considerable.</p> + + <div class="sidenote">Number + limited to + Finland + only small.</div> + + <p>The number limited to Finland, for which hitherto corresponding observations + from other lands are wanting, is very small—212, or 19 per cent. of the + whole number seen in Finland. With the increase of frequency of the + phenomena at the time of maximum, the number observed in Finland and + America on the same day increases; while those observed in Finland and + Europe only, or in Finland only, decreased, in accordance with the known + law that with the frequency the intensity and extent also increase.</p> + + <div class="sidenote">One third of + Auroræ seen + in America + and Europe + simultaneously.</div> + + <p>Between 1826 and 1855, of 2878 days on which, in America, the Northern + Lights were seen, there were 1065 on which they were also visible in Europe; + so that at least every third day of Auroræ was common to both these portions + of the globe. In the years 1846 to 1855, and 1868 to 1872, there were in + the first period 657 Northern-Light days common to America and Europe out + of 1691, and in the second 397 out of 715.</p> + + <div class="sidenote">Local occurrence + of + the Aurora + not in favour + of its assumed + cosmical + nature.</div> + + <p>The comparison by Prof. Fritz of M. Moberg’s Finland observations has + been lately reviewed in ‘Nature’ (March 8, 1878) and the result arrived at + that, “After ten years, in spite of the vastly accumulated material of careful + observations, there appears no necessity to change Herr Fritz’s system of + curves in any essential detail; indeed certain parts of the same, which were + at first only based on probability and supposition (the part of the principal + zone between the north of Norway and Nishen Kolynisk as an instance), we + now know with perfect certainty to be correct.†It has been remarked that + the local occurrence of Auroræ is not in accordance with the hypothesis of + the phenomenon being one of a cosmical nature.</p> + + <p>The winter of 1870 was remarkable for brilliant displays; and the displays + of October 24th and 25th, 1870, were remarkably brilliant in England and + in America also, and the Aurora Australis was seen on the same days at + Madras. These displays were seen in England and America in the daytime + as patches or coronæ of white light, with streamers stretching upward + from them.</p> + + </section> + + <!-- Chapitre 6_________________________________________________________--> + <section class="chapter" id="chapter-6"> + <h3 class="titlechapter" id="chap-6">The Aurora in connexion with other Phenomena</h3> + <p class="shorter">The Aurora in connexion with other Phenomena</p> + + <h4 id="chap-6-1"><i>Auroræ and Clouds.</i></h4> + + <div class="sidenote">Auroræ and + clouds. Dr. Richardson’s + observations. Aurora constantly + accompanied + by or immediately + precedes + the + formation + of cirro-stratus.</div> + + <p>Dr. Richardson (‘Sir John Franklin’s Narrative’), so long ago as the years + 1819-1822, made many recorded observations on the connexion of clouds + with the Aurora Borealis in the Polar regions. Some of these are alluded + to in Chapter V., section “Height of the Aurora,†for the purpose of showing + the moderate distance he found it to be above the earth; and his inference is + there mentioned, “that the Aurora Borealis is constantly accompanied by or + immediately precedes the formation of one or other of the various kinds of + cirro-stratus.†On the 13th November and 18th December, 1820, the connexion + of an Aurora with a cloud intermediate between cirrus and cirro-stratus + is mentioned. It is, however, also mentioned that the most vivid + coruscations of the Aurora were observed when there were only a few + attenuated shoots of cirro-stratus floating in the air, or when that cloud was + so rare that its existence was only known by the production of a halo round + the moon. (An instance of attenuated streaks of cirro-stratus in connexion + with an auroral arc will be found in the Aurora seen at Guildown on the 4th + February 1874, a sketch of which is reproduced on Plate VI. fig. 1.)</p> + + <div class="sidenote">Polarity discerned + in + cirro-stratus + clouds.</div> + + <p>Dr. Richardson goes on to express his opinion that he, on some occasions, + discerned a polarity in the masses of clouds belonging to a certain kind of + cirro-stratus (approaching cirrus), by which their long diameters, having all + the same direction, were made to cross the magnetic meridian nearly at right + angles.</p> + + <div class="sidenote">Apparent + polarity of + Aurora + might perhaps + be + ascribed to + the clouds + themselves.</div> + + <p>Dr. Richardson further suggests that if it should be thereafter proved that + the Aurora depends upon the existence of certain clouds, its apparent polarity + might perhaps be ascribed to the clouds themselves which emit the light; or, + in other words, the clouds might assume their peculiar arrangement through + the operation of one cause (magnetism, for instance), while the emission of + light might be produced by another—a change in their internal constitution + perhaps connected with a motion of the electric fluid.</p> + + <p>Dr. Richardson further remarks that, generally speaking, the Aurora + appeared in small detached masses for some time before it assumed that convergency + towards the opposite parts of the horizon which produced the arched + form.</p> + + <div class="sidenote">Sir John + Franklin’s + observations.</div> + + <p>Sir John Franklin says in his Polar expeditions he often perceived the clouds + in the daytime disposed in streams and arches such as the Aurora assumes.</p> + + <span class="sidenote">Dr. Low’s.</span> + + <p>Dr. Low (‘Nature,’ iv. p. 121) considers he witnessed a complete display of + auroral motions in cirrus cloud, and considers all clouds subject to magnetic + or diamagnetic polarization; he states that when the lines converge towards + the magnetic pole fine weather follows, and when at right angles to it wet and + stormy.</p> + + <div class="sidenote">M. Silbermann’s + observations, + 15th April, + 1869. Cirrus + clouds took + the place of + the Aurora.</div> + + <p>In the Encyc. Brit. edition 9, article “Aurora Polaris,†after referring to + the evidence of Franklin, Richardson, and Low, M. Silbermann (‘Comptes + Rendus,’ lxviii. p. 1051) is quoted in detail for observed connexion between + the Aurora and cirrus cloud. 15th April, 1869, at 11h 16m, an Aurora + appeared and disappeared; but it seemed as if the columns were still visible, + and it soon became obvious that fan-like cirrus clouds, with their point of + divergence in the north, had taken the place of the Aurora. Between 1 and + 2 <span class="smcapuc">A.M.</span> the clouds had passed the zenith, and let fall a little fine frozen rain. + At 4 <span class="smcapuc">A.M.</span> the cirrus of the false Aurora was still visible, but deformed towards + the top, and presenting a flaky aspect. The cirrus never appeared to replace + the Aurora either from right or left, but to substitute itself for it like the + changes of a dioramic view.</p> + + <div class="sidenote">Payer + thinks the + transition of + Aurora into + clouds not + proved.</div> + + <p>Payer, in his ‘Austrian Arctic Voyages,’ thinks that the occurrence of the + Aurora during the day (i. e. <i>light clouds with its characteristic movement</i>) had + been rather imagined than actually observed, and that the transition of white + clouds into auroral forms at night has never been satisfactorily proved. He, + however, mentions the mist-like appearance of the Aurora.</p> + + <div class="sidenote">Dr. Allnatt’s + observations, + 4th + February, + 1872, at + Frant. Aurora + passed into + cirro-stratus.</div> + + <p>Dr. Allnatt observed the splendid Aurora of 4th February, 1872, at Frant, + and noticed the weird and wonderful appearance of the phenomena. At 6 <span class="smcapuc">P.M.</span> + the Aurora commenced by the S.W. portion of the heavens being tinged with + a bright carmine hue, and in a short time the whole visible hemisphere was + lighted up. A dark elliptical cloud extending from S. to S.E. and S.W. sent + up volumes of coloured radii. At 7 the Aurora had passed the zenith, and a + dark, broken, rugged cloud some 8° E. of zenith was surrounded by electric + light of all hues. At 7.40 the Aurora began to wane, and passed into a + homogeneous cirro-stratus of sufficient density to obscure the stars, disappearing + at 7.45.</p> + + <div class="sidenote">Later, cirro-stratus + was transformed + into luminous + cumulus.</div> + + <p>At a later hour of the night the canopy of cirro-stratus had separated and was + transformed into luminous masses of radiant cumulus; so that, as Dr. Allnatt + observes, there were called in requisition almost all the most prominent cloud-modifications + during the progress of the phenomena. The succession of + formation, transformation, and reformation from Aurora to cloud and from + cloud to Aurora was, Dr. Allnatt concluded, conclusive of the theory before + advanced of the electric origin of the recurrent rayed cloud-modifications in + the place of the magnetic meridian, over which so much mystery had been + cast.</p> + + <h4 id="chap-6-2"><i>Aurora and Thunder-storms.</i></h4> + + <div class="sidenote">Aurora and + thunder-storms. + Silbermann’s + theory.</div> + + <p>Silbermann asserts that Auroræ are produced by the same general phenomena + as thunder-storms, and concludes that the Auroræ of 1859 and 1869 assumed + the character of thunder-storms which, instead of bursting in thunder, had + been drawn into the upper parts of the atmosphere, and their vapour being + crystallized in tiny prisms by the intense cold, the electricity became luminous + in flowing over these icy particles.</p> + + <div class="sidenote">Prof. Piazzi + Smyth on + monthly + frequency of + Auroræ and + storms.</div> + + <p>Professor Piazzi Smyth has observed that the monthly frequency of Auroræ + varies inversely with that of thunder-storms. His Table of comparisons is as + follows:—</p> + + <div class="sidenote">His table + of observations.</div> + + <table summary="Piazzi Smyth's observations"> + <tr> + <th class="smaller">Month.</th> + <th class="smaller">Lightning.</th> + <th class="smaller">Auroræ.</th> + </tr> + <tr> + <td>January</td> + <td class="tdr">24·0</td> + <td class="tdr">29·7</td> + </tr> + <tr> + <td>February</td> + <td class="tdr">14·4</td> + <td class="tdr">42·5</td> + </tr> + <tr> + <td>March</td> + <td class="tdr">7·0</td> + <td class="tdr">35·0</td> + </tr> + <tr> + <td>April</td> + <td class="tdr">15·4</td> + <td class="tdr">27·5</td> + </tr> + <tr> + <td>May</td> + <td class="tdr">37·4</td> + <td class="tdr">4·8</td> + </tr> + <tr> + <td>June</td> + <td class="tdr">48·0</td> + <td class="tdr">0·0</td> + </tr> + <tr> + <td>July</td> + <td class="tdr">55·2</td> + <td class="tdr">0·5</td> + </tr> + <tr> + <td>August</td> + <td class="tdr">38·4</td> + <td class="tdr">12·6</td> + </tr> + <tr> + <td>September</td> + <td class="tdr">22·4</td> + <td class="tdr">36·6</td> + </tr> + <tr> + <td>October</td> + <td class="tdr">20·8</td> + <td class="tdr">49·4</td> + </tr> + <tr> + <td>November</td> + <td class="tdr">15·0</td> + <td class="tdr">32·4</td> + </tr> + <tr> + <td>December</td> + <td class="tdr">15·0</td> + <td class="tdr">28·8</td> + </tr> + <tr> + <td>Mean of whole year</td> + <td class="tdr bt">24·0</td> + <td class="tdr bt">20·1</td> + </tr> + </table> + + <div class="sidenote">Silbermann’s + observations + 15th April, + 1869. + 30th April, + 1865.</div> + + <p>Silbermann, on 15th April, 1869, observed a fall of rain (tiny crystals of ice) + on the disappearance of an Aurora and its change into cloud forms (see section, + “Auroræ and Clouds,†p. 53). He also observed a rain of little sparkling ice-prisms + on 30th April, 1865, at Paris, the city being then enveloped in a cirrus + of vertical fibres similar to that which frequently accompanies the Aurora.</p> + + <p></p> + + <p>On the occasion of the Aurora seen by me at Guildown, 4th February, + 1872, rain fell immediately succeeding the formation of the corona.</p> + + <p>The falling of rain as an immediate sequence of an Aurora seems, however, + to be rather the exception than the rule; but possibly this may vary with the + character of the Aurora itself—whether it be of the crimson class, passing + into cloud and accompanied with much electric disturbance, or of the more + quiescent white.</p> + + <div class="sidenote">A falling + barometer + observed to + follow + Auroræ.</div> + + <p>A falling barometer following a display of Auroræ has been noticed by Sir + John Franklin and others; and in some cases (notably one in Sicily before + referred to) storms and floods have accompanied this.</p> + + <div class="sidenote">Professor + Christison’s + observations.</div> + + <p>In a paper read before the Royal Society of Edinburgh in 1868, Prof. + Christison mentioned, as a fact of importance to agriculturists, that the first + great Aurora after autumn is well advanced, and following a period of fine + weather, is a sign of a great storm of rain and wind in the forenoon of the + second day afterwards.</p> + + <p>Mr. C. L. Prince, in his ‘Climate of Uckfield,’ p. 218, remarks that displays + of Auroræ are almost invariably followed by very stormy weather, after an + interval of from 10 to 14 days.</p> + + <h4 id="chap-6-3"><i>Aurora and the Magnetic Needle.</i></h4> + + <div class="sidenote">Aurora and + the magnetic + needle. Sir John + Franklin’s + observations. + Motion communicated + to the needle + was neither + sudden nor + vibratory. + Return of + needle to its + former position + very + gradual. Different + positions of + the Aurora + had considerable + influence + on + the direction + of the + needle. Needle disturbed + when + Aurora not + visible. Quiescent + yellow + Aurora + produced no + perceptible + effect on + needle. Return of + needle more + speedy after + formation + of a second + arch. Slow when + disturbance + was considerable.</div> + + <p>Sir John Franklin, in his ‘Narrative’ (before referred to), gives Lieutenant + Robert Hood, R.N., the credit of being “the first who satisfactorily proved, by + his observations at Cumberland House (before mentioned), the important fact + of the action of the Aurora upon the compass-needle,†and also “to have + proved the Aurora to be an electrical phenomenon, or at least that it induces + a certain unusual state of electricity in the atmosphere.†Sir John Franklin + then mentions that the motion communicated to the needle was neither sudden + nor vibratory. Sometimes it was simultaneous with the formation of arches, + prolongation of beams, or certain other changes of form or of activity of the + Aurora. But generally the effect of these phenomena upon the needle was + not visible immediately; but in about half an hour or an hour the needle had + obtained its maximum of deviation. From this its return to its former position + was very gradual, seldom regaining it before the following morning, and frequently + not until the afternoon, unless it was expedited by another arch of + the Aurora operating in a direction different from the former one. The magnetic + needle in the open air was disturbed by the Aurora whenever it approached + the zenith. Its motion was not vibratory (as observed by Mr. Dalton), perhaps + owing to the weight of the card. It moved slowly to the E. or W. of the + magnetic meridian, and seldom recovered its original direction in less than + eight or nine hours. The greatest extent of its aberration was 45´. The + arches of the Aurora were remarked commonly to traverse the sky nearly at + right angles to the magnetic meridian; but deviation was not rare, and it was + considered that the different positions of the Aurora had considerable influence + on the direction of the needle. When an arch was nearly at right angles to + the magnetic meridian, the motion of the needle was towards the W. This + motion was greater when the extremity of the arch approached from the west + towards the magnetic north. A westerly motion also took place when the + extremity of an arch was in the true north, or about 36° to the west of the + magnetic north. The motion of the needle was towards the east when the + same end of an arch originated to the southward of the magnetic west, and + when of course its opposite extremity approached nearer to the magnetic + north. In one case only a complete arch was formed in the magnetic meridian. + In another the beam shot up from the magnetic north to the zenith. In both + these cases the needle moved towards the west. The needle was most + disturbed on February 13, 1821, at a time when an Aurora was distinctly + seen passing between a stratum of clouds and the earth. Sometimes the + needle deviated though no Aurora was visible; but it was uncertain whether + there might not have been a concealed Aurora at the time. Clouds were + sometimes observed during the day to assume the form of the Aurora, and + deviations of the needle were occasionally remarked at such times. An + Aurora sometimes approached the zenith without producing any change of + position of the needle; while at other times a considerable alteration took + place, though the beams or arches did not come near the zenith. The Aurora + was frequently seen without producing a perceptible effect on the needle. At + such times it was generally an arch or a horizontal stream of dense yellowish + light with little or no internal motion. The disturbance of the needle was + not always proportionate to the agitation of the Aurora, but was always + greater when the quick motion and vivid light were observed to take place + in a hazy atmosphere. In a few instances the needle commenced at the instant + a beam started from the horizon upwards; and its return was according to + circumstances. If an arch formed immediately afterwards, having its extremities + placed on opposite sides of the magnetic north and south to the former one, + the return of the needle was more speedy, and it generally went beyond the + point from which it first started. When the disturbance was considerable, it + seldom regained its usual position before 3 or 4 <span class="smcapuc">P.M.</span> on the following day. + On one occasion only the needle had a quick vibratory motion (between + 343° 50´ and 344° 40´). The disturbance produced by the Aurora was so great + that no accurate deductions as to diurnal variation could be made.</p> + + <div class="sidenote">Magnetic + observations + on board the + ‘Tegetchoff.’</div> + + <p>Payer, in his ‘New Lands within the Arctic Circle’ (vol. i. pp. 327, 328), + gives the result of the magnetic observations on board the Austrian ship + ‘Tegetchoff’ in the years 1872-74, made by means of a magnetic theodolite, + a dipping-needle, and three variation instruments. The extraordinary disturbances + of the needle rendered the determination of exact mean values for the + magnetic constants impossible. The following were the principal results of + these observations:—</p> + + <div class="sidenote">Disturbances + great.</div> + + <p>(1) The magnetic disturbances were of extraordinary magnitude and + frequency.</p> + + <div class="sidenote">Greater + as the rays + were rapid. Quiescent + arches exercised + no + influence.</div> + + <p>(2) They were closely connected with the Aurora, and they were greater as + the motion of the rays was more rapid and fitful and the prismatic colours + more intense. Quiescent and regular arches, without changing rays or + streamers, exercised mostly no influence on the needle.</p> + + <div class="sidenote">Declination-needle, + effects on.</div> + + <p>(3) In all the disturbances the declination-needle moved towards the east, + and the horizontal intensity decreased while the inclination increased.</p> + + <p>Sir John Franklin sums up his information as to the needle to much + the same effect, viz. that brilliant and active coruscations cause a deflection + almost invariably if they appear through a hazy atmosphere and if + the prismatic colours are exhibited in the beams or arches. On the contrary, + when the air is clear and the Aurora presents a steady dense light of a + yellow colour and without motion, the needle is often unaffected by its + appearance.</p> + + <span class="sidenote">Parry’s experience.</span> + + <p>Parry (Third Voyage) found his variation-needle (extremely light and + delicately suspended) in no instance affected by the Auroræ; but he seems to + have principally met with the quiescent form of that phenomenon.</p> + + <p>M. Lottin, the French savant (whose description of an Auroral display has + been given in Chapter II.), observed in the North Sea, between September + 1838 and April 1839, while the sun was below the horizon, 150 Auroræ. + During this period 64 were visible, “besides many which a cloudy sky + concealed, but the presence of which was indicated by the disturbances they + produced upon the magnetic needle†(Lardner’s ‘Museum of Science and Art,’ + vol. x. p. 189).</p> + + <div class="sidenote">Grand displays + accompanied + by motion + of needle to + the west.</div> + + <p>It has been remarked by some observers that grand displays of the Aurora + are frequently preceded or accompanied by an extraordinary motion of the + needle to the westward.</p> + + <p>Captain Maguire found at Point Barrow (1852-54) that the appearance of + the Aurora in the south was connected with the motion of the magnet to the + east of the magnetic north, and if in the north to the west of the same.</p> + + <div class="sidenote">Solar disturbances + and Aurora.</div> + + <p>On an occasion in 1859 great solar disturbances were observed, the + Greenwich magnets were much disturbed, and a fine Aurora was visible.</p> + + <div class="sidenote">Cipoletti’s + observation.</div> + + <p>Cipoletti, of Florence, remarks on the strong magnetic disturbances at + Vienna and Munich during the Auroræ of 4th February, 1872, and 4th + February, 1874.</p> + + <div class="sidenote">Dr. Thompson + concludes + that + cylinders of + Aurora + cannot be + doubted to + be magnets.</div> + + <p>Dr. Thompson, in his ‘Annals of Philosophy,’ vol. iv. p. 431 (1814), mentions + as an authenticated fact that during the prevalence of the Aurora the magnetic + needle was frequently observed to become unsteady, and (p. 432) concludes + that cylinders of Aurora cannot be doubted to be magnets. The only three + bodies capable of assuming magnetic properties are iron, nickel, and cobalt. + When meteors are considered, it is not altogether extravagant to conjecture + that bodies similar in their nature to some of the solid bodies which constitute + our globe may exist in some unknown state in the atmosphere.</p> + + <p>During the Aurora of 13th May, 1869, the declination at Greenwich varied + 1° 25´, while the vertical force experienced four successive maxima, and + the greatest oscillation amounted to 0·04 of the total mean value. The horizontal + force varied only 0·014 of its mean value.</p> + + <p>During the Aurora of 15th April, 1869, the declination at Stonyhurst varied + 2° 23´ 14″ in nine minutes.</p> + + <figure class="plate" id="plate9"> + <!-- <img src="images/plate9.jpg" /> --> + <figcaption></figcaption> + </figure> + + <h4 id="chap-6-4"><i>Auroræ, Magnetic Disturbances, and Sun-spots.</i></h4> + + <div class="sidenote">Auroræ, + magnetic + disturbances, + and + sun-spots + in Italy.</div> + + <p>Auroræ were frequent in Italy in April 1871. On the 10th a remarkable + one was seen, with declinometer deflected towards the east, and 63 sun-spots + were counted. On the morning of the 10th the deflection continued, and at + midday 97 sun-spots were counted.</p> + + <p>On the 18th a brilliant Aurora lasted to 10 o’clock at night. From this + time till the 23rd the Aurora appeared constantly, giving a reddish tinge + in the north and north-west. A brilliant display took place on the evening + of the 23rd. On the evenings when the Aurora appeared the magnetometers + were disturbed throughout Italy, and ended by a violent agitation + during the whole of the 24th. Sun-spots were observed at Rome, Palermo, + and Moncalieri, but the greater number on the days of the Auroræ. A + brilliant display at Moncalieri on June 18 was accompanied by very violent + magnetic disturbance.</p> + + <div class="sidenote">Proctor’s + sun-spots + and Aurora.</div> + + <p>September 25, 1870, Mr. Proctor counted 102 spots on the solar disk; and + on the night of the 24th and morning of the 25th an Aurora of unwonted + magnificence was visible at various stations in England, France, and Germany.</p> + + <div class="sidenote">Sun-spots + and the + magnet. + 11 years’ + period. + Schwabe’s + sun-spot + period.</div> + + <p>With respect to sun-spots and the magnet, the frequency of magnetic + storms, causing oscillation of the needle, gradually increased from a minimum + in 1843 to a maximum in 1848, giving a variation of something near 11 + years altogether. Schwabe observed the sun-spots for 24 years, and found + they had a regular maximum and minimum every five years, and that the + years 1843 and 1848 were minimum and maximum years coinciding with the + magnetic variation at those periods.</p> + + <div class="sidenote">Prof. + Loomis + considers + connexion + established + between + magnetic + declination, + auroral displays, + and + sun-spots.</div> + + <p>Professor Loomis (‘American Journal of Science,’ vol. v. April 1873) + considers that a comparison between the mean daily range of the magnetic + declination and the number of Auroras observed in each year, and also with + the extent of the black spots on the surface of the sun, establishes a connexion + between these phenomena, and indicates that auroral displays (at + least in the middle latitudes of Europe and America) are subject to a law + of periodicity, that their grandest displays are repeated at intervals of + about 60 years, and that there are also other fluctuations, less distinctly + marked, which succeed each other at an average interval of about 10 or 11 + years, the times of maxima corresponding quite remarkably with the maxima + of solar spots.</p> + + <div class="sidenote">Illustrative + table of coincidences.</div> + + <p>An illustration of the result of these observations is given on Plate IX. + fig. 2. The curves are in close correspondence, and the coincidence at the + times of maximum and minimum is remarkable. The auroral maximum + generally occurs a little later than the magnetic maximum; and the connexion + between the auroral and magnetic curves appears somewhat more + intimate than between the auroral and sun-spot curves.</p> + + <div class="sidenote">Prof. + Loomis + considers + a sun-spot + a solar disturbance + affecting the + earth’s magnetism.</div> + + <p>Professor Loomis contends “that the black spot is a result of a disturbance + of the sun’s surface, which is accompanied by an emanation of some + influence from the sun, which is almost instantly felt upon the earth in an + unusual disturbance of the earth’s magnetism, and a flow of electricity, developing + the auroral light in the upper regions of the earth’s atmosphere.â€</p> + + <div class="sidenote">Carrington + and Hodgson’s + observations + of + bright spots + on the sun, + accompanied + by + magnetic + disturbance + at Kew, and + followed by + wide-spread + Auroræ.</div> + + <p>This connexion between the sun’s spots and the earth’s magnetism has + been considered as proved; and one instance at least of an intense disturbance + and outbreak of the sun’s surface having been observed simultaneously with + the occurrence of a terrestrial magnetic storm is a matter of record. This + will be found detailed in the ‘Monthly Notices of the Royal Astronomical + Society,’ vol. xx. pp. 13 and 15, and is so interesting in its character that it + may be briefly referred to here. Mr. R. C. Carrington, September 1, 1859, + 11h 18m, while observing and drawing a group of solar spots, saw suddenly + two patches of intense bright light break out in the middle of the group. + The brilliancy was fully equal to that of direct sunlight. Seeing the outbreak + was on the increase, Mr. Carrington left the telescope, to call some one to + witness it. On his return within sixty seconds it was nearly concluded. The + spots travelled from their first position, and vanished as two rapidly fading + dots of white light. In five minutes the two spots traversed a space of about + 35,000 miles. Mr. Carrington found no change in the group itself. His + impression was that the phenomena took place at an elevation considerably + above the general surface of the sun, and above and over the great group of + spots on which it was seen projected. It broke out at 11h 18m, and + vanished at 11h 23m. Mr. R. Hodgson independently on the same day, and at + close upon the same time, saw a very brilliant star of light, much brighter + than the sun’s surface, most dazzling to the protected eye, illuminating the + upper edges of the adjacent spots and streaks. The rays extended in all + directions, and the centre might be compared to α Lyræ when seen in a large + telescope. It lasted for some five minutes.</p> + + <p>At the very moment of this solar disturbance the instruments at Kew indicated + a <i>magnetic storm</i>; and Proctor, in his volume on the Sun, page 206, + details how this magnetic storm was accompanied by very widely-spread + indications of electrical disturbance in many parts of the globe. Vivid + Auroræ were seen not only in both hemispheres, but in latitudes and places + where they are seldom witnessed. Rome, Cuba, and the West Indies, the + tropics within 18° of the equator, and even South America and Australia, are + thus referred to for displays. At Melbourne, on the night of September 2nd, + the greatest Aurora ever seen there made its appearance.</p> + + <p>It was observed, too, that magnetic communication was at the same time + disturbed all over the earth. Strong currents, continually changing their + direction, swept along the telegraphic wires. At Washington and Philadelphia + the signal-clerks received severe shocks, and the wires had to give up + work. At a station in Norway the transmitting apparatus was set fire to; + and at Boston, in North America, a flame of fire followed the pen of Baine’s + electric telegraph.</p> + + <div class="sidenote">Mr. John + Allan + Broun’s + magnetic + oscillation-curves; + showing + that the sun’s magnetic + action + has lately + become more + constant. In diagram, + curves gradually + flatten.</div> + + <p>In an interesting communication to ‘Nature’ (January 3rd, 1878), entitled + “The Sun’s Magnetic Action at the Present Time,†Mr. John Allan Broun + has contributed some magnetic oscillation-curves, deduced from observations + made in the Trevandrum Observatory (nearly on the magnetic equator), + by which, if confirmed by other observations, it would appear that the sun’s + magnetic action has lately become gradually more constant. The curves are + three in number,—no. 1 for the years 1855-58, no. 2 for the years 1865-68, + no. 3 for the years 1874-77. In no. 1 curve the minimum is very clearly + marked by two points corresponding to April 1 and May 1, 1856, and there + is little difference in the rapidity with which the curve descends to and + ascends from the minimum. In no. 2 curve the epoch of minimum is by no + means so well marked; it occurs between the points for April 1 and September + 1, 1866. There is also a considerable difference in the rapidity of + variation in the descending and ascending branches of the curve. The + descent is nearly as rapid as in curve no. 1; but the ascent is very much + slower. In curve no. 3 the lowest point is that for December 1, 1875; but + it is even now, with points a year and a half later, difficult to say whether + this is the minimum or not, the point for January 1, 1877, being only 0·02 + (two hundredths of a minute of arc) higher. In this curve the change of + range in diurnal oscillation is quite insignificant from November 1, 1874, to + April 1, 1877, an interval of three years and five months. In the diagram + given by Mr. Broun the curves show themselves gradually flattening, no. 3 + being almost a straight line.</p> + + <div class="sidenote">Mr. Broun + never found + an Aurora + without a + corresponding + irregularity + in the + declination-needle.</div> + + <p>Mr. Broun remarks upon the report of Sir George Nares as to the insignificant + nature of the Auroræ seen in the Arctic Expedition in the winter of + 1875-76, and the accompanying statement that, as far could be discovered, + they were totally unconnected with any magnetic or electric disturbance; and + states, as the result of his own experience in the south of Scotland, that several + of the Auroræ observed by him were of the very faintest kind, “were traces†+ which he could never have remarked had he not been warned by very slight + magnetic irregularities to examine the sky with the greatest attention. + Again, in no case had he seen the faintest trace of an Aurora without finding + at the same time a corresponding irregularity in the movement of the force or + declination-magnet.</p> + + <div class="sidenote">Prof. Piazzi + Smyth comments + on + variance in + the cycles.</div> + + <p>Prof. Piazzi Smyth, commenting on this article, makes the inquiry how the + sun-spot cycle and the terrestrial magnetic oscillation cycle can be considered + as agreeing, the sun-spot cycle, according to Prof. Wolf, being 11·111 years, + and the magnetic cycle 10·5 years according to Mr. Broun.</p> + + <div class="sidenote">M. Faye’s + remarks to + a similar + effect.</div> + + <p>Another correspondent writes and quotes M. Faye, in ‘La Météorologie + Cosmique,’ for the remark, “La période des taches portée à 11 ans ·1 par M. + Wolf n’étant pas égale à celle des variations magnétiques (10 ans ·45), ces + deux phénomènes n’ont aucun rapport entre eux.â€</p> + + <div class="sidenote">Mr. Broun’s + rejoinder + and explanation.</div> + + <p>Mr. Broun, in a further letter, rejoins that if we could accept Dr. Wolf’s + view we should find that the mean duration of a cycle for <i>both</i> phenomena + since 1787 would be 11·94 years, while the sun-spot results for eight cycles + determined by Dr. Wolf during eighty years before 1787 give 10·23 or, if we + take nine cycles, 10·43 years for the mean duration. It is by mixing these + two very different means that the Zurich philosopher finds 11·1 years, a mean + which Mr. Broun considers can evidently have no weight given to it. On + the other hand, if Dr. Wolf is in error (as Mr. Broun believes he is) as to + the existence of a maximum in 1797, the mean durations for the eighty years + after and for the eighty years before 1787 agree as nearly as the accuracy of + the determinations for the beginning of the eighteenth century will permit. + Mr. Broun then repeats his conviction that the sun-spot maxima and minima + are really synchronous with those of the magnetic diurnal observations.</p> + + <div class="sidenote">Mr. Jenkins’s + explanation + of + Prof. + Loomis’s + chart.</div> + + <p>Mr. B. G. Jenkins, in a letter to ‘Nature,’ refers Prof. Smyth to Prof. + Loomis’s chart of magnetic oscillations given in Prof. Balfour Stewart’s paper + in ‘Nature’ (vol. xvi. p. 10), for the purpose of showing that there are exactly + seven minimum periods from 1787 to 1871, the mean of which is twelve + years, the mean of the seven corresponding maximum periods being 11·8 + years. The true magnetic declination-period is, then, the mean of these, viz. + 11·9 years. In exactly the same manner he finds that the mean period + of sun-spots is 11·9 years.</p> + + <div class="sidenote">Jupiter’s + suspected + connexion + with sun-spots.</div> + + <p>The auroral displays also have the same period. Mr. Jenkins also refers + to Wolf, De La Rue, Stewart, and Loewy, as having stated their belief that + Jupiter is the chief cause in the production of sun-spots, and draws attention + to the period of 11·9 years as being Jupiter’s anomalistic year, or the time + which elapses between two perihelion passages.</p> + + <div class="sidenote">Infrequency + of + Auroræ and + absence of + sun-spots in + 1876-78.</div> + + <p>The infrequency of Auroræ during the years 1876-78, and a corresponding + comparative absence of sun-spots, may be added to the evidence on the + subject. I have seen no account of important Auroræ during the years + mentioned, and day after day has recently (1878) passed with a perfectly + clean sun-disk.</p> + + <h4 id="chap-6-5"><i>Aurora and Electricity.</i></h4> + + <div class="sidenote">Aurora and + electricity. Sir John + Franklin’s + experience + with electrometer.</div> + + <p>Sir John Franklin failed to get indications of electricity connected with the + Aurora with a pith-ball electrometer; but with another form of electrometer + specially constructed for the purpose he seems to have got some, though not + very strong or regular, indications of repulsion between the needle of the + instrument and the conductor when Auroræ were seen. He does not decide + whether the electricity was received from or summoned into action by the + Aurora.</p> + + <div class="sidenote">Parry’s + experience.</div> + + <p>Parry, at Fort Bowen, with a gold leaf electroscope connected with a chain + attached by glass rods to the skysail mast-head, 115 feet above sea-level, found + no effect.</p> + + <div class="sidenote">Dr. Allnatt’s + experience, + February 4, + 1872.</div> + + <p>Dr. Allnatt, at Frant, during the display of 4th February, 1872, found the + earth’s electricity so powerful that the gold leaves of the electrometer remained + divergent for a considerable time.</p> + + <div class="sidenote">M’Clintock + found electroscope + affected in + Baffin’s Bay + and Port + Kennedy.</div> + + <p>M’Clintock observes that on six occasions of Aurora in Baffin’s Bay, the + electroscope was strongly affected, and on three occasions of Aurora at Port + Kennedy. The electricity was always positive.</p> + + <p>Dec. 18.—Dr. Walker called him to see the electroscope. The charge was + at first weak, but afterwards strong enough to keep the leaves diverged. + Dr. Walker found two periods of minimum electrical disturbance about 9 <span class="smcapuc">P.M.</span> + and noon.</p> + + <div class="sidenote">Electric + currents in + telegraphic + wires during + Auroræ.</div> + + <p>Electric currents have been reported as produced in telegraph wires during + Auroræ. Though transient they are said to be often very powerful, and to + interrupt the ordinary signals. Loomis (Sillim. Journ. vol. xxxii.) mentions + cases where wires have been ignited, brilliant flashes produced, and combustible + materials kindled by their discharge.</p> + + <p>Here, too, we may note the account of electric phenomena in the case of the + Aurora Australis described (<i>antè</i>, p. 28) by Mr. Proctor.</p> + + <div class="sidenote">Mr. George + Draper’s + report as to + disturbed + condition of + the Indian + Submarine + and other + cables + during + Aurora of + February 4, + 1872.</div> + + <p>Mr. George Draper, of the British-Indian Submarine Telegraph Company, + speaking of the Aurora of February 4, 1872 (and writing to the ‘Times’ + under date February 5th), states that the Aurora visible in London was also + visible at Bombay, Suez, and Malta, and that the Company’s electrician at + Suez reported that the earth-currents there were equal to 170 cells (Daniell’s + battery), and that sparks came from the cable. The electrical disturbances + lasted until midnight, and interrupted the working of both sections of the + British Indian Cable between Suez and Aden, and Aden and Bombay. For + some days previously the signals on the British Indian cables had been much + interfered with by electrical and atmospheric disturbances.</p> + + <p>At Malta there was a severe storm on the morning of the 4th, so that it + was necessary to join the cable to earth for some hours, and the Aurora was + very large and brilliant there.</p> + + <p>The electrical disturbances on the cables in the Mediterranean and on those + between Lisbon and Gibraltar, and Gibraltar and the Guadiana, were also + very great. The signals on the land line between London and the Land’s End + were interrupted for several hours on the night of the 4th by atmospheric + currents. Similar effects accompanied the displays of Oct. 24 and 25, 1870.</p> + + <h4 id="chap-6-6"><i>Aurora and Meteoric Dust.</i></h4> + + <div class="sidenote">Aurora and + meteoric + dust. Theories of + Dr. Zeyfuss + and M. + Gröneman.</div> + + <p>A theory has been propounded independently by Dr. Zeyfuss and by + M. Gröneman, of Gröningen, according to which the light of the Aurora is + caused by clouds of ferruginous meteoric dust ignited by friction with the + atmosphere. Gröneman shows that these might be arranged along the magnetic + curves by the action of the earth’s magnetic force during their descent, + and that their influence might produce the observed magnetic disturbances.</p> + + <div class="sidenote">Ferruginous + dust in the + Polar + Regions.</div> + + <p>The arches might be accounted for by the effects of perspective; and the + iron spectrum shows correspondence with some of the lines of the Aurora. + Ferruginous particles have been found in the dust of the Polar regions according + to Professor Nordenskiöld, but whether derived from stellar space or from + volcanic eruption is uncertain. A difficulty has been suggested that while + meteors are more frequent in the morning, or on the face of the earth which + is directed forward on its orbit, the reverse prevails in the case of Auroræ. + Gröneman meets this by supposing that in the first case the velocity may be + too great to allow of arrangement by the earth’s magnetic force. He accounts + for the infrequency of the Aurora in equatorial regions by the weakness of the + earth’s magnetic force, and the fact that when it does occur the columns must + be parallel to the earth’s surface.</p> + + <div class="sidenote">Baumhauer’s + proposition.</div> + + <p>Baumhauer (Compt. Rend. vol. lxxiv. p. 678) advances, as regards Polar + Auroræ, the proposition, that not only solid masses large and small, but clouds + of “uncondensed†(meteoric) matter probably enter our atmosphere.</p> + + <p>If from our knowledge of the meteoric stones which fall to the earth’s + surface we may draw any conclusion respecting the chemical constitution of + these clouds of matter, it would appear that they may contain a considerable + portion of the magnetic minerals iron and nickel. Let such a cloud approach + our earth, regarded as a great magnet, it would be attracted towards the + Pole, and, penetrating our atmosphere, the particles which have not been + oxidized, and are in a state of extremely fine division, would by their oxidation + generate light and heat, producing the polar Auroræ. Baumhauer suggests + it would be interesting in support of this theory to detect in the soil of polar + areas the presence of nickel. The presence of iron and nickel in meteoric + masses in considerable quantities is frequent; and cases are also on record by + Eversmann of hailstones containing crystals of a compound of iron and sulphur, + by Pictet of hailstones containing nuclei which proved to be iron, and by + Cozari of hailstones containing nuclei of an ashy-grey colour, the larger ones + of which were attracted by the magnet, and found to contain iron and nickel. + Nickel was found by Reichenbach in parts of Austria on hills consisting of + beds of sandstone and limestone, and quite free from metallic veins.</p> + + <div class="sidenote">Mr. Lefroy’s + description + of a phenomenon + ascribed by + him to + streams of + cosmic dust.</div> + + <p>Mr. J. W. N. Lefroy, in ‘Nature,’ describes a phenomenon seen by him at + Fremantle, West Australia, in the month of May, which he designates + “A Lunar Rainbow, or an Intra-lunar convergence of Streams of slightly + illuminated Cosmic Dust?â€</p> + + <p>It lasted about three quarters of an hour, and consisted of one grand central + feather, of very bright white cloud, springing out of the horizon at W.N.W., + and crossing the meridian at about 20° north of the zenith, with a width of + 7° to 8°.</p> + + <p>On either side of this was a system of seven or eight minor beams of light, + extending from the W. to the E. horizon, subtending a chord common to themselves + and to the main stream, and converging towards the axis of the central + stream so as to intersect it at a point about 30° or 40° below the western horizon, + at which the whole system subtended an azimuth of about 20°. Near the zenith, + where its transverse section was a maximum, that section subtended an angle + of about 40°.</p> + + <p>The idea strongly suggested itself to Mr. Lefroy of converging streams of + infinitely minute particles of matter passing through space at a distance from + the earth at which its aerial envelope may have still a density sufficient by + its resistance to give cosmic dust passing through it that illumination which + it possessed. In about twenty minutes the streams of light had attained their + maximum brightness. Their apparent figure was that of a nearly circular + (slightly flattened) arc of an amplitude of 15° or 20°, as viewed from the middle + point of its chord.</p> + + <p>The brightness and the convergence of the streams were both more marked + towards the western horizon than the eastern. This same phenomenon was + described in the ‘South-Australian Register’ as a beautiful lunar rainbow + visible in the western heavens.</p> + + <p>Mr. Lefroy and other observers concurred in the impression that the minor + lateral streams on the N. side of the main one intervened between the earth + and the moon, and that one or more of them in their slow vibrations swept the + surface of the moon and sensibly obscured its light. There can be hardly any + question that the phenomenon observed was in fact an Aurora.</p> + + <div class="sidenote">Suggestion + as to collecting iron and + nickel particles + from the + atmosphere.</div> + + <p>It may be a question whether iron and nickel particles of meteoric origin + do not ordinarily exist in the atmosphere in a greater degree than we suspect, + and might be detected if special means, such as magnets, plates of glass + covered with glycerine, &c., were adopted for the purpose of collecting and + examining the cosmic dust. Larger gatherings than usual of iron and nickel + particles during the presence of Auroræ would be in support of Mr. Lefroy’s + theory.</p> + + <h4 id="chap-6-7"><i>The Aurora and the Planets Venus and Jupiter.</i></h4> + + <div class="sidenote">The Aurora + and planets + Venus and + Jupiter. The planet + Venus’s halo + during + Aurora.</div> + + <p>During a brilliant Aurora seen at Sunderland, February 8, 1817 (‘Annals + of Philosophy,’ p. 250), about 8 o’clock, Venus was about 8° above the horizon, + and displayed a very peculiar appearance. Her rays passed through a thin + mist or cloud, probably electric, of a deep yellow tint. Her apparent magnitude + seemed increased, and a halo was formed round her as sometimes + appears round the moon in moist weather; but the stars that were in that + part of the heavens shone with their accustomed brilliancy.</p> + + <div class="sidenote">Dr. Miles’s + observation + of Venus + during an + Aurora.</div> + + <p>The Rev. T. W. Webb, in his ‘Celestial Objects’ (1859), p. 43, quoting + from the Philosophical Transactions, mentions that, “January 23rd, 1749-50, + there was a splendid Aurora Borealis about 6 <span class="smcapuc">P.M.</span> The Rev. Dr. Miles, at + Tooting, had been showing Jupiter and Venus to some friends with one of + Short’s reflectors, greatest power 200, when a small red cloud of the Aurora + appeared, rising up from the S.W. (as one of a deeper red had done before), + which proceeded in a line with the planets and soon surrounded both. Venus + appearing still in full lustre, he viewed her again with the telescope without + altering the focus, and saw her much more distinctly than ever he had done + upon any occasion. His friends were of the same opinion. They all saw her + spots plain (resembling those in the moon), which he had never seen before, + and this while the cloud seemed to surround it as much as ever.â€</p> + + <p>I think this effect might perhaps have arisen from the Aurora acting as a + screen, and removing the glare with which so bright an object as Venus is + always accompanied; but the case is a singular one, and one would be glad of + further experience. I suggested observations on this head during Sir Geo. + Nares’s Arctic Expedition; but the suggestion, for some reason of which I am + not aware, was not included in the official instructions issued.</p> + + <div class="sidenote">Brightness + of stars + during + Auroræ.</div> + + <p>Remarks are frequent of the brightness of stars as seen through Auroræ. + Payer, of the Austrian Expedition, remarks that falling stars passed through + the Aurora without producing any perceptible effect or undergoing any change.</p> + + <div class="sidenote">Aurora of + Oct. 24, + 1870, and + Jupiter.</div> + + <p>A grand display of the Aurora took place 24th October, 1870. About this + time the belts of Jupiter were observed to be highly coloured. As observed + by me on the night of November 2, 1870, at 9 <span class="smcapuc">P.M.</span>, with an 8¼-in. Browning + reflector, achromatic eyepieces 144, 305, and 450, the equatorial zone was of + a distinctly dark ochre colour, deepening to red-brown as it approached the + lower (N.) edge. Two thin belts above were slate-purple, and a darker belt + below was of a deep purple colour.</p> + + <div class="sidenote">According + to Lassell + and others, + Jupiter’s + belts exhibit + the brightest + colours at + period of + Auroræ.</div> + + <p>Lassell, Proctor, and others have reported Jupiter’s belts to exhibit the + brightest colours at the period of Auroræ. Mr. Browning gives a drawing of + Jupiter as seen on January 31, 1870 (a year noted for Auroræ), with the belts + brightly coloured. The finest view of Jupiter I ever had was on the + 8th February, 1872 (a fine Aurora was on the 4th), when, with the 8¼-inch + Browning reflector, I saw the whole surface of the planet (by glimpses) cloud-mottled. + The equatorial belt was, however, then slightly tinted only. In + Dr. Miles’s observation (p. 66) he does not seem to have noticed the colouring + of Jupiter’s belts.</p> + + <div class="sidenote">Infrequency + of Auroræ + and lightness + in tint + of Jupiter’s + belts.</div> + + <p>The three past years, 1876, 1877, and 1878, have been distinguished by the + infrequency of Auroræ; and Jupiter’s equatorial zone and belts have been + mainly reported of light tints.</p> + + <p>The subject apparently deserves more attention than it has hitherto received.</p> + + <h4 id="chap-6-8"><i>The Aurora and the Zodiacal Light.</i></h4> + + <div class="sidenote">The Aurora + and the + Zodiacal + Light. Ã…ngström’s + observation + on spectrum.</div> + + <p>Ã…ngström in 1867 found the spectrum of the Zodiacal Light to be monochromatic, + consisting of a single line in the green, to which he assigned + approximately the position 1259 on Kirchhoff’s scale, the same that he had + determined for the green line of the Aurora Borealis; and Respighi, on the + Red Sea, on the evening of the 11th and the morning of the 12th January + 1872, perceived in the Zodiacal Light not only this green line, but near it, + towards the blue, a band or zone of apparently continuous spectrum.</p> + + <div class="sidenote">Respighi’s + at Campidoglio.</div> + + <p>At the Observatory of the Royal University of Campidoglio, February 5th, + 1872, Respighi, at 7 <span class="smcapuc">P.M.</span>, was able to discern the same spectrum; and on + directing the spectroscope to other points he found that this spectrum showed + itself in all parts of the heavens from the horizon to the zenith, more or less + defined in different parts, but everywhere as bright as in the Zodiacal Light. + The Observatory Assistant, Dr. di Legge, likewise observed this spectrum + distinctly in various parts of the heavens. Respighi’s observations corroborating + Ã…ngström’s in 1867, appeared to him to demonstrate the identity + of the Zodiacal Light with the Aurora, and to establish the identity of their + origin.</p> + + <div class="sidenote">Pringle + thinks the + Aurora may + be considered + as + allied to the + Zodiacal + Light.</div> + + <p>Pringle, in a letter to ‘Nature’ from South Canara, October 3, 1871, + alludes to the Aurora as being considered by many allied to the Zodiacal + Light, and does not think the evidence then hitherto adduced against the + theory at all conclusive. He says:—“Assume the auroral light to consist of + solid particles of matter, planet dust, shining by reflected light, and it is not + difficult to imagine the Aurora playing amongst these tiny worlds, each of + which would have its own small magnetic system swayed like our own by the + monster magnet the sun.â€</p> + + <div class="sidenote">Phosphorescence + of sky + when Zodiacal + Light + has been + seen bright.</div> + + <p>He notices he has never found it to have a decided outline, nor traced it + east or west to 180° from the sun. He also refers to others having noticed that + when the Zodiacal Light has been seen unusually bright, a “phosphorescence†+ of the sky was everywhere visible.</p> + + <div class="sidenote">Pringle + failed to + find bright + lines or + bands in the + Zodiacal + Light.</div> + + <p>He does not seem at that time to have examined the matter spectroscopically; + and on June 23, 1872, he writes again, pointing out the peculiarity + in Respighi’s observation that the green line was seen everywhere as bright + as in the Zodiacal Light, and suggesting that it was due to a concealed Aurora + present at the time of Ã…ngström’s and Respighi’s observations. He further + states he had examined the Zodiacal Light with a Browning 5-prism spectroscope + (I presume a compound direct-vision form is meant) since the last + December, and, brilliant as the phenomenon had frequently been, failed to + detect the slightest appearance of bright lines or bands. A faint diffuse + spectrum about as intense as that of a bright portion of the Milky Way was + all he had obtained.</p> + + <div class="sidenote">Prof. Piazzi + Smyth + confirms + this.</div> + + <p>Professor Piazzi Smyth, in the clear sky of Italy, and with an instrument + specially designed for showing faint spectra, found no lines or bands, but only + a faint continuous spectrum extending from about midway between D and E + in the solar spectrum to nearly F (see Plate V. fig. 3, in which the continuous + spectrum is graphically shown, white on a black ground).</p> + + <div class="sidenote">Colour of + the Zodiacal + Light.</div> + + <p>It may here be mentioned that the Zodiacal Light is usually described as, + in these latitudes, of a golden yellow or pale lemon tinge.</p> + + <div class="sidenote">Rev. Mr. + Webb’s observation, + February 2, + 1862. He found no + green line of + the Aurora.</div> + + <p>On one occasion, however, it has been described as not having this tinge, + but rather resembling the light of the Milky Way, but brighter. On another + occasion I saw the whole cone of a crimson hue without any mixture of yellow. + The Rev. Mr. Webb thought that a display seen at Hardwick Vicarage, + February 2nd, 1862, showed a ruddy tinge not unlike the commencement of + a crimson Aurora—“it was certainly redder or yellower than the galaxy.†He + examined it with a pocket spectroscope which would show distinctly the green + line of the Aurora (probably Browning’s miniature), but nothing of the kind + was visible, nor could any thing be traced beyond a slight increase of general + light, which, on closing the slit, was extinguished long before the auroral band + would have become imperceptible.</p> + + <div class="sidenote">A. W. + Wright’s + observations + and conclusions.</div> + + <p>A. W. Wright examined the Zodiacal Light with a Duboscq single-prism + spectroscope, the telescope and collimator having a clear aperture of 2·4 centimetres, + magnifying-power of telescope 9 diameters. Special precautions + were taken about the observations, and the conclusions arrived at were:—</p> + + <p>(1) The spectrum of the Zodiacal Light is continuous, and is sensibly the + same as that of faint sunlight or twilight.</p> + + <p>(2) No bright line or band can be recognized as belonging to this spectrum.</p> + + <p>(3) There is no evidence of any connexion between the Zodiacal Light and + the Polar Aurora.</p> + + <div class="sidenote">Polarization + of Zodiacal + Light. Burton’s + observation + confirmed + by Wright + and + Tacchini.</div> + + <p>The Polarization of the Zodiacal Light has been already referred to under + the head of “Polarization of the Aurora:†but it may be here noted that + Mr. Burton’s observation of polarization of the light there mentioned has + been confirmed by Wright and Tacchini, and the presence of reflected sunlight + established. In this respect it differs from the Aurora, in which no + trace of polarization has hitherto been detected; and looking at this, and at + the weight of evidence in the spectroscopic observations, the theory of a connexion + between the Aurora and the Zodiacal Light must, as the matter stands, + be given up.</p> + + </section> + + <!-- Chapitre 7_________________________________________________________--> + <section class="chapter" id="chapter-7"> + <h3 class="titlechapter" id="chap-7">Aurora-like patches on the partially-eclipsed Moon</h3> + <p class="shorter">Aurora-like patches on the partially-eclipsed Moon</p> + + <div class="sidenote">Aurora-like + patches on + the partially-eclipsed + moon, + Feb. 27, + 1877.</div> + + <p>In anticipation of the total eclipse of the Moon on the 27th February, 1877, + several articles appeared in the leading journals of the day describing, for the + public benefit, the appearances which might be expected during the occurrence + of the phenomenon.</p> + + <div class="sidenote">Formerly it + was thought + the moon + was illuminated + by + auroral light.</div> + + <p>Among these was one by Mr. R. A. Proctor, in which the following passage + occurs:—“That dull, or occasionally glowing red colour, shown by the moon + when she is fully and even deeply immersed in the shadow of the earth, is a + phenomenon whose explanation is not without interest. Formerly it was + thought that the moon possessed an inherent light, or <i>perhaps was illuminated + by auroral light</i>, which only became discernible at the time of total eclipse. + Indeed even Sir W. Herschel fell into the mistake of supposing this the only + available explanation, having miscalculated the efficiency of the true cause.â€</p> + + <div class="sidenote">Author’s + notes of the + eclipse. Colour-tints + described. A crimson-scarlet + tint + reminded + author of an + auroral + glow.</div> + + <p>This passage was only pointed out to me by a friend after the eclipse had + actually taken place, and I had sent him some notes of what I then saw. My + notes on the occasion comprised, amongst others, the following remarks:—“The + tints of colour also during partial eclipse, owing, no doubt, to the + moon’s considerable altitude, were singularly bright and well contrasted. + Silver-grey, dusky copper-red, and the same tint clearer and brighter were + ranged side by side with a lovely jewel effect. <i>We noticed also at times a + crimson-scarlet tint, deeper and less mixed with yellow than the copper colour.</i> + This last tint reminded me much of a <i>crimson glow common to the Aurora</i>, + and which I also once distinctly remarked (of course in a weaker degree) in + the zodiacal light†(<i>antè</i>, p. 68).</p> + + <div class="sidenote">Eclipse, Aug. + 23-24, 1877. Sky clear, + but eclipsed + moon misty + and indistinct + until + total obscuration. Succession + of colours.</div> + + <p>On the occasion of the eclipse of August 23-24, 1877, we were favoured + at Guildown, in common with many other places, by a singularly clear sky + during the progress of the moon’s obscuration and subsequent clearing. In + the early part of the evening, however, the moon, from some cause (possibly + atmospheric vapour), seemed to have, as the earth’s shadow advanced on its + disk, an unexpectedly misty and indistinct appearance, which lasted up to + and including total obscuration. Golden yellow, yellow copper, dull copper, + ruddy copper, and dull red were successively the principal colours observed + at different times and at various portions of the moon’s surface.</p> + + <p></p> + + <div class="sidenote">As shadow + passed off, + indistinctness + gave + way to a + sharpness of + the moon’s + features as + seen through + shadow. Two patches + of crimson + light described.</div> + + <p>After referring to some spectroscopic appearances, my notes then ran on + thus:—“As the shadow began to pass off, and the bright sharp crescent of the + illuminated portion of the moon to appear, the general aspect of the moon’s + disk seemed to me to greatly change. The certain amount of indistinctness + noticeable during approach and continuance of totality, gave way to a considerable + sharpness of the moon’s features as seen through the shadow. The + shadowed part glowed with a richer copper tint, on which were seen dark, + almost black, spots and patches.†Then follows a description of these; and + the notes continue:—“Two features here struck me—the one a continuation + of the upper limb of the illuminated crescent, so that it seemed to form a + bead of light just on the centre of the upper edge of the moon; the other + <i>two patches of crimson light</i>, similar to those I described as having been seen + in the last total eclipse. One of these, quite a small one, was just under the + elongated bead before described; the other, a much larger and more diffused + one, was seen towards the south-west limb of the moon, about midway between + it and the centre. The spots or patches were of a decidedly crimson-red, + in contrast to the ordinary copper-red of the disk, and were noticed by + my friend as well as by myself.â€</p> + + <div class="sidenote">Patches well + seen in field-glass; + lost in + small refractor. They gradually + deepened + in tint.</div> + + <p>These were eye observations. The patches were quite well seen (but not + so brightly as with the eye) with a double achromatic field-glass. With a 3¼-inch + Cooke refractor and low power, they seemed lost in the general moon + tint; but they were then diminishing in brightness. From a comparison of + my two sketches, the patches seem to have gradually deepened in tint, and + we considered them to have disappeared in a like gradual manner.</p> + + <div class="sidenote">Two + sketches + taken.</div> + + <p>My first sketch was taken shortly after end of total phase; the second + about ten minutes later. I have reproduced the original sketches in preference + to any drawing prepared from them (Plate IV. figs. 2 and 3).</p> + + <p>The patches did not last long, but were lost as the shadow swept off + the moon. I saw nothing of the sort during the approach of or pending + totality, nor until a small crescent of the moon began to appear behind the + shadow.</p> + + <p>I have looked for other accounts of these patches, but cannot find any. + Most observers have described the deeper colour of the shadowed moon by + the word “copper.†Some extend this colour to red; but there is probably + much in the state of the atmosphere affecting this.</p> + + <div class="sidenote">Dec. 3, 1703, + moon’s colour + described.</div> + + <p>At Avignon, December 3, 1703, the moon appeared, pending eclipse, + “extraordinarily illuminated and of a very bright red,†while other and + different features were seen at Montpelier.</p> + + <p></p> + + <p>On March 19, 1848, observers in England, Ireland, and Belgium described + the moon’s disk as “intensely bright coppery red.†On the occasion of + August 23-24, 1877, before mentioned, an article in one of the public papers + described the moon’s disk, during totality, as of a “dull copper colour.â€</p> + + <div class="sidenote">Mr. Keye’s + observation.</div> + + <p>Mr. Henry Keye, in the Engadine, at a height of 4500 feet above sea-level, + and with the purest air, saw the partially covered moon (before totality) as a + “dull copper colour.â€</p> + + <div class="sidenote">Prof. Pritchard’s. M. Faye’s. Dr. Allnatt’s + at Frant.</div> + + <p>Prof. Pritchard, writing from the Oxford University Observatory, says that + at 12h 10m (about the time my sketches were taken) there was a good deal of + light on the moon’s following limb, and the colour was “more red than copper,†+ and apparently redder than it had been at a similar distance of time before + totality. Mons. Faye reported to the French Academy of Sciences that “a + striking phenomenon not previously noticed was that the reddish tinge, resembling + that of a fine sunset, was deepest at the margin of the disk, a circumstance + which he could not explain.†Dr. Allnatt, writing from Frant, says:—“At + totality the moon’s disk presented a most extraordinary appearance: the + western limb was comparatively transparent, but the main body appeared as + though enveloped in a semi-opaque clot of coagulated blood, through which + the lunar features were dimly visible.â€</p> + + <div class="sidenote">Observations + as to + the patches.</div> + + <p>The observations of Prof. Pritchard and Mons. Faye point more immediately + to redness; and this is the nearest approach I can find to the patches + I noticed. These patches do not seem to me easy of explanation. They could + not well be colours or details due to the actual surface of the moon itself. The + moon, we are aware, has only a certain portion of the visible disk slightly tinted. + The Mare Serenitatis is certainly of a slight green tinge; and to the Palus + Somni and certain other districts is attributed a pale red or pink; but these + tints could hardly have sufficed to produce the effect seen, as the patches were + conspicuous for a bright and decided colour. The positions, moreover, did + not correspond; while the ease with which other details of the surface were + seen at the time would, if the tints had arisen from the surface itself, probably + have enabled the circumstance to be detected.</p> + + <div class="sidenote">Refraction + of sun’s rays + not a satisfactory + explanation.</div> + + <p>The refraction of the sun’s rays by passage through the earth’s atmosphere + is, too, not a satisfactory explanation. This, as judged by the appearance of + the covered moon immediately before and at totality, gives a disk of shadow + deeper in tone in the centre and lightening towards the edges, but in other + respects fairly uniform, so that the whole disk seems to partake of the same + tint and its graduations; and this is what might have been expected under + the circumstances. The patches, on the other hand, were quite local.</p> + + <p></p> + + <div class="sidenote">Question of + lunar atmosphere.</div> + + <p>The theory of the moon’s possessing no atmosphere whatever is now + very generally, but perhaps too readily, received (mainly upon the evidence + of the spectroscopic observations of occulted stars <span class="footnote">The proof from occulted stars merely goes to the fact that the moon possesses no atmosphere + <i>appreciable in that way</i>. It may still be a question whether there does not exist something + of the kind, lying low and close to the surface, and possibly of a rarefied character, which would + scarcely make itself visible by its effects in occultations. Cloud-vapour might form in an + atmosphere of inconsiderable density.</span>), as there still seems a + reasonable doubt whether our satellite may not possess an atmosphere, possibly + rarefied, but yet sufficiently dense to permit of the formation of cloud or + vapour.</p> + + <div class="sidenote">Instance of + patch of + vapour or + cloud on + moon’s surface.</div> + + <p>A curious case, in which a patch of vapour or cloud was supposed to be + detected on the moon’s surface, is reported by the Rev. J. B. Emmett in a + communication to the ‘Annals of Philosophy’ (New Series, vol. xii. p. 81). + It is dated “Great Ouseburn, near Boroughbridge, July 5, 1826,†the observation + being made with “the greatest care with a very fine telescope.â€</p> + + <p>On the 12th April 8h, while observing the part of the moon called Palus + MÅ“otis by Nevelius, with an excellent Newtonian reflector of 6 inches + aperture, at a particular part of the Palus, which he minutely describes, he + saw, with powers 70 and 130, “a very conspicuous spot wholly enveloped in + black nebulous matter, which, as if carried forward by a current of air, + extended itself in an easterly direction, inclining a little towards the south, + rather beyond the margin of MÅ“otis.†April 13th 8h to 9h, the cloudy appearance + was reduced both in extent and intensity, and the spot from which + it seemed to issue had become more distinctly visible. On April 17th + scarcely a trace of the nebulous matter remained; but so long after as + June 10th 8h “a little blackness†remained about the spot. Mr. Emmett + suggested “smoke of a volcano or cloudy matter.†A copy of the drawing + annexed to the paper is given on Plate X. fig. 10 (black patch on moon). + If this observation was (as it certainly appears to be) critical and exact, there + must have been a disturbance of the moon’s surface, indicating some sort of + cloud- or vapour-supporting atmosphere; and probably, for the purposes of + Auroræ, an atmosphere of a very rarefied condition would suffice <span class="footnote">This observation is not without a certain amount of confirmation by more recent ones, in + which certain lunar objects and regions have been suspected of mist or vapour. Mr. Birt + (‘English Mechanic,’ vol. xxviii. no. 725) mentions two—the cloud-like appearance of the white + patch west of Picard, and the interior of Tycho, which at one time always misty and ill-defined, + is now become perfectly distinct and sharply defined.<br/>December 4, 1878, 4h 45m. I observed Klein’s crater as a dull dark spot, larger than the true + object; and while definition was good and other objects were well defined, “the floor of Klein’s + object, the oval spot near, and also Agrippa (especially), all had <i>an odd misty look as if vapour + were in or about them</i>†(‘English Mechanic,’ vol. xxviii. no. 727). The mystery of different + observers seeing and not seeing Klein’s object on the same night is hardly to be accounted for + by the angle of illumination.</span>.</p> + + <p></p> + + <div class="sidenote">Prof. Alexander’s + evidence + in + favour of a + lunar atmosphere.</div> + + <p>According to the ‘New York Tribune,’ at a recent semi-annual meeting of + the American Academy of Sciences, Professor Alexander “brought forward + a variety of evidence tending to indicate some envelope like an atmosphere + for the moon. The evidence was principally drawn from observations during + eclipses. The explanations usually offered for the bright band seen around + the moon at such times was fully considered, and shown to be inadequate, + though good as far as they would apply. The ruddy band of light is much + too broad to be the sun’s chromosphere. It was most apparent in those + instances where the moon was nearest the earth. It would best be accounted + for by supposing an atmosphere to the moon, a thin remnant of ancient + nebulosity, comparable to that which accompanies the earth and gives rise to + the appearance of the Aurora Borealis.†Is it not, however, possible that + the appearance might have arisen from Auroræ in action within the region + of the earth’s own atmosphere during the passage of the sun’s rays through + it at the time of the eclipse? The whole subject is difficult of explanation, + and should be one of the points for attention on the occasion of the next + total Lunar eclipse. It seemed to me appropriate for introduction into the + present history of the Aurora, whatever its solution may ultimately be.</p> + + <div class="sidenote">Mars and + Jupiter.</div> + + <p>In the case of Mars and Jupiter, whose atmospheres are sufficiently recognized, + red- and scarlet-tinted patches are frequently noticed. In Mars this is + generally attributed to the geological character of the surface of the planet + itself; but I have observed on Mars’s surface during the recent opposition a + local rosy tint of a more diffused and indefinite character; and in the case of + Jupiter the appearances seem almost always connected with the clouds’ belts, + as distinguished from the regions lying nearer to the planet’s surface.</p> + + <div class="sidenote">Prof. + Dorna’s + “Lunar + Aurora.â€</div> + + <p>Professor Dorna, of Turin, ascribed a flickering light seen on the reddened + disk of the moon during the Lunar eclipse of February 1877 to the action of + a <i>Lunar Aurora</i>, holding that the refraction of the sun’s rays within the + cone of the earth’s shadow was not an adequate explanation (‘L’Opinione + Nazionale,’ March 3, 1877).</p> + + <div class="sidenote">Spectroscopic + observations + bearing on + the subject. Mr. Christie’s + observations + at + Greenwich.</div> + + <p>The spectroscope might have afforded some information on the question; + but my own telescopes (8¼ and 3¼ in.) were not of sufficient aperture to + give a sensible spectrum of a portion of the moon’s eclipsed surface, and my + observations were chiefly made on the entire disk with hand-spectroscopes + without a slit. Mr. Christie, at the Royal Observatory, Greenwich, made a + set of observations during totality, and also during subsequent partial phase, + with a single-prism spectroscope. During totality a strong absorption band + was seen in the yellow, and the red and blue ends of the spectrum were + completely cut off, while the orange was greatly reduced in intensity. The + yellow and green were comparatively bright, and seemed to constitute the + whole visible spectrum. The absorption band became narrowed as the end + of the total phase approached, and during partial phase was reduced to a + mere line. The red end of the spectrum was cut off by a dark band commencing + about halfway from D to C, in which a black line was suspected. + The bands observed were characteristic of the spectrum of light which has + passed through a thick stratum of air. In the description of the spectrum + of the Aurora in Part II., it will be seen that the conspicuous red and green + lines of the Aurora are either coincident with, or very close to, some of these + atmospheric lines. It does not appear that Mr. Christie examined the + crimson patches specifically, nor that he saw bright lines on any part of the + moon’s eclipsed disk.</p> + + <div class="sidenote">Mr. Pratt’s + notes of + Lunar + Eclipse, + August 23, + 1877.</div> + + <p>Mr. Henry Pratt has also kindly handed me for use his notes of the Lunar + eclipse of August 23, 1877, as seen at Brighton on a splendid night. They + were made as the phenomenon progressed, are 58 in number, and in many + instances only a few minutes, or even seconds, apart. A selection of them is + here given:—9h 13m 50s, first contact of shadow. 9h 30m, shadow very dark; + no details of disk easily seen. 9h 40m, first appearance of red. 9h 50m, <i>red</i> + all over disk, except margin bluish and S. part green tint. 10h 2m, <i>a sudden + brightening of whole disk</i>, in strong contrast to two minutes previously. + 10h 15m, <i>E. limb much darker</i>. 10h 35m, <i>south pole decidedly brightest</i>. 10h 44m, + <i>S.E. limb much brighter</i>. 10h 48m, <i>whole disk much darker</i>. 10h 51m, <i>S.E. + limb brightening again</i>. 11h 1m, <i>N.E. limb brightening</i>. 11h 3m, <i>N.E. limb + has darkened and brightened three times during last two minutes</i>. 11h 20m, + N. pole has <i>darkened</i>. 11h 21m, N. pole has <i>brightened</i>. 11h 24m 30s, N. pole + darker <i>red</i>. 11h 35m, N. pole <i>bright</i>. 11h 35m 30s, same <i>dark</i> and <i>red</i>. + 11h 42m, N.E. limb especially bright for a few seconds, and then <i>reddened</i> + and shaded again. 11h 49m, <i>S. pole reddened</i>. 12h 1m, <i>S.W. limb reddest + part; S. pole red; N. pole paler red</i>. 12h 3m 50s, first appearance of E. limb + (my first sketch was made shortly after this, and my second about ten minutes + later). 12h 21m, a bright patch on N.N.W. separated from N. pole. 12h 24m, + <i>S.W. region is reddest part of eclipse</i>. 12h 40m, <i>redness</i> of shadow fading out.</p> + + <p>With a small Browning star-spectroscope Mr. Pratt saw the red and blue + ends of the spectrum cut off, but nothing else. Mr. Pratt adds that the + <i>red</i> colour was not an effect of contrast or an optical delusion in any way, as + was proved by using at times a limited field containing only the red portion + under examination. In reference to the curious brightening and darkening + of the disk, and the change from time to time of local colour, he says that + with much experience he has seen nothing of the same marked character on + other occasions, and that “the whole matter was at the time astonishing to + me, but none the less real.†The local red patches seen by me seem also to + have been observed by Mr. Pratt.</p> + + <div class="sidenote">Mr. Pratt’s + observation + on the floor + of Plato.</div> + + <p>As an addition to the instances of Tycho, Picard, &c., mentioned in the + note on p. 73, Mr. Pratt has also sent me his notes of some observations by + him, of “local obscuration of the floor of Plato.†As somewhat condensed, + they are as follows:—1872, July 16. While in other parts of the floor spots + and streaks were well visible, “the N.W. portion was in such a hazy condition + that nothing could be defined upon it.†1873, Nov. 1. 27 light + streaks seen (7 new): the brightness of the streaks was in excess of their + usual character, as compared with the craterlets; “an <i>obliteration</i> or <i>invisibility</i> + of <i>all</i> the light streaks in the neighbourhood of craterlet no. 1 was very + noticeable;†and also “a similar obliteration of the N. end of the streak + called the Sector, near craterlet 3.†1874, January 1. 18 light streaks seen, + including 3 new, “some of which outshone other longer known ones. This + was curious; for had they been as bright within the last two years as on this + occasion I must have noticed them.†Mr. Pratt points out, as worthy of + remark, that some months previous to November 1st, 1873, neither craterlets + nor streaks on the floor of Plato “had maintained their previous characteristic + brightness,â€â€”a fact which he thinks ought to be considered together + with the outbreak of brilliancy of both orders on that day, as well as + the apparently sudden existence of new ones.</p> + + <div class="sidenote">Observation + by Mr. Hirst + of a dark + shade on the + moon.</div> + + <p>The ‘Observatory,’ March 1, 1879, p. 375, contains an account, by Mr. + H. C. Russell, of some Astronomical Experiments made on the Blue Mountains, + near Sydney, N. S. W. Among these it is noticed that on 21st October, 1878, at + 9 <span class="smcapuc">A.M.</span>, when looking at the moon, Mr. Hirst found that a large part of it was + covered with a dark shade, quite as dark as the shadow of the earth during + an eclipse of the moon. Its outline was generally circular, and fainter near + the edges. Conspicuous bright lunar objects could be seen through it; but it + quite obliterated the view of about half the moon’s terminator, while those + parts of the terminator not in the shadow were distinctly seen.</p> + + <p>No change in the position of the shade could be detected after three hours’ + watching. The observation is made, “One could hardly resist the conviction + that it was a shadow; yet it could not be the shadow of any known + body. If produced by a comet, it must be one of more than ordinary + density, although dark bodies have been seen crossing the sun which were + doubtless comets.†The diameter of the shadow from the part of it seen on + the moon was estimated at about three quarters that of the moon <span class="footnote">Some doubt has been cast on this observation, on the ground that nothing unusual was + seen, and that the appearances were only those ordinarily presented by the moon at its then + phase. I simply give the account as it appears in the scientific journal in which it was + published.</span>.</p> + + </section> + + <!-- Chapitre 8_________________________________________________________--> + <section class="chapter" id="chapter-8"> + <h3 class="titlechapter" id="chap-8">Aurora and Solar Corona</h3> + <p class="shorter">Aurora and Solar Corona</p> + + <div class="sidenote">Aurora and + the solar + corona. Mr. Norman + Lockyer’s + ‘Solar + Physics.’</div> + + <p>Mr. Norman Lockyer, in his ‘Solar Physics,’ a work of 666 pages, gives but + little space to the Aurora. The index comprises:—“Aurora Borealis, connexion + with sun-spots, pp. 82-102.†“Affirmed coincidence of spectrum + with that of the corona, pp. 244, 256.â€</p> + + <div class="sidenote">Extracts + from as to + Aurora’s + connexion + with sun-spots + and + with solar + corona.</div> + + <p>Page 82. After referring to Gen. Sabine as having shown that there are + occasional disturbances in the magnetic state of the earth, and that these + disturbances have a periodical variation, coinciding in period and epoch with + the variation in frequency and magnitude of the solar spots as observed by + Schwabe, the author proceeds to state, “and the same philosopher has given + us reason to conclude that there is a similar coincidence between the outburst + of solar spots and of the Aurora Borealis.â€</p> + + <p>Page 102. “We have also shown that sun-spots or solar disturbances + appear to be accompanied by disturbances of the earth’s magnetism, and these + again by auroral displays.â€</p> + + <div class="sidenote">Evidence of + American + observers on + nature of the + corona considered.</div> + + <p>Page 243. “What, then, is the evidence furnished by the American + observers on the nature of the corona (solar)? It is bizarre and puzzling to + the last degree. The most definite statement on the subject is that it is + nothing more nor less than a <i>permanent Solar Aurora</i>! the announcement + being founded on the fact that three bright lines remained visible after the + image of a prominence had been moved away from the slit, and that one + (if not all) of these lines is coincident with a line (or lines) noticed in the + spectrum of the Aurora Borealis by Professor Winlock.†Mr. Lockyer then + adds, that amongst the lines he had observed up to that time, some forty in + number, this line was among those which he had most frequently recorded, + and was, in fact, the first iron line which made its appearance in the part of + the spectrum he generally studied, when the iron vapour is thrown into the + chromosphere.</p> + + <div class="sidenote">Mr. Lockyer’s + conclusion + adverse + to the question + being + settled.</div> + + <p>Hence he thought he should always see it if the Aurora were a permanent + solar corona, and gave out this as its brightest line, and on this ground alone + should hesitate to regard the question as settled.</p> + + <div class="sidenote">Prof. + Young’s + communication + to + ‘Nature.’</div> + + <p>Page 256 is an extract from a communication by Prof. Young to ‘Nature,’ + March 24, 1870, in which the Professor refers to the bright line 1474 as + being always visible with proper management. He also thinks it probable + that this line coincides with the Aurora line reported by Prof. Winlock + at 1550 of Dr. Huggins’s scale, though he is by no means sure of it. He had + only himself seen it thrice, and then not long enough to complete a measurement. + He was only sure that its position lay between 1460 and 1490 of + Kirchhoff.</p> + + <div class="sidenote">He does not + abandon his + hypothesis, + it having + other elements + of + probability.</div> + + <p>For this reason he did not abandon the hypothesis, which appeared to have + other elements of probability, in the general appearance of the corona, the + necessity of immense electrical disturbances in the solar atmosphere as the + result of the powerful vertical currents known to exist there, as well as + the curious responsiveness of our terrestrial magnets to solar storms; yet he + did not feel in a position to urge it strongly, but rather awaited developments. + Father Secchi was disposed to think the line hydrogen, while + Mr. Lockyer still believed it to be iron.</p> + + <div class="sidenote">Dr. Schellen + reviews the + subject + in eclipse + of 1869.</div> + + <p>Dr. Schellen, in his ‘Spectrum Analysis,’ treats the matter more in detail. + Referring to the eclipse of 1869 as confirming the previous observations + that the coronal spectrum was free from dark lines, he points out that + Pickering, Harkness, Young, and others were agreed that with the extinction + of the last rays of the sun all the Fraunhofer lines disappeared at once + from the spectrum. He further says:—</p> + + <div class="sidenote">Young observed + three + bright lines + in the spectrum + of the + corona. Coincidence + of these lines + with three + bright lines + observed by + Winlock in + the Aurora. Corona self-luminous, + and probably + of a gaseous + nature. Corona supposed + to be + a permanent + polar light + existing in + the sun. Polar light + in the sun + attributed to + electricity. Dr. Schellen + thinks + nature of the + corona still + a problem.</div> + + <p>“The small instruments employed by Pickering and Harkness, with a large + field of view, exhibited a spectrum obtained at once from the corona, the prominences, + and the sky in the neighbourhood of the sun. These instruments + showed during totality a faint continuous spectrum free from dark lines, but + crossed by two or three bright lines. Young, with a spectroscope of five + prisms, observed the three bright lines in the spectrum of the corona, and + deduced the following positions according to Kirchhoff’s scale:—1250 ± 20, + 1350 ± 20, and 1474. It had been already explained why the last and + brightest of these lines was thought to belong to the corona and not to that + of the prominences, and it seemed probable that the other two lines belonged + also to the light of the corona, from the fact that they were both wanting in + the spectrum of the prominences when observed without an eclipse. But + what invested these three lines with a peculiar interest was the circumstance + that they appeared to coincide exactly with the first three of the five bright + lines observed by Professor Winlock in the spectrum of the Aurora Borealis. + These lines of the Aurora were determined by Winlock according to Huggins’s + scale; and if these be reduced to Kirchhoff’s scale, the positions of the lines + would be 1247, 1351, and 1473, while the lines observed by Young were 1250, + 1350, and 1474.†Dr. Schellen then points out that if it be borne in mind + that Young found the positions of the two fainter lines more by estimation + than by measurement, the coincidence between the bright lines of the corona + and those of the Aurora would be found very remarkable. The brightest of + the lines, 1474, was the reversal of a strongly marked Fraunhofer line, + ascribed by Kirchhoff and Ã…ngström to the vapour of iron. Dr. Schellen + then details Professor Pickering’s observations with the polariscope, showing + that the corona must be self-luminous, and that from the bright lines seen in + its spectrum it is probably of a gaseous nature, and forms a widely diffused + atmosphere round the sun; and then adds, “It has been supposed, from the + coincidence of the three bright lines of the corona with those of the Aurora + Borealis, that the corona is a permanent polar light existing in the sun + analogous to that of our earth.†Dr. Schellen here adds:—“Lockyer, however, + justly urges against this theory the fact that although the brightest of + these three lines, which is due to the vapour of iron, is very often present + among the great number of bright lines occasionally seen in the spectrum of + the prominences, it is by no means constantly visible, which ought to be the + case if the corona were a permanent polar light in the sun.†(Professor + Young’s answer to this, on the ground of line 1474 being always visible, + has been already given.) “A yet bolder theory is the ascription of such a + polar light in the sun to the influence of electricity, which has been proved, + it is well known, by the relation of the magnetic needle, and the disturbance + of the electric current in the telegraph wires, to play an important part in + the phenomenon of the Aurora Borealis;†and Dr. Schellen then concludes with + an opinion that the nature of the corona was still a problem <span class="footnote">The question of a connexion between the waxing and waning of the solar corona and the + prevalence of sun-spots is now being mooted, and may have an important bearing on the subject + of the constitution of the corona. It would seem that when the corona has been examined about + the time of minimum of sun-spots, it has proved fainter though more extended, while the bright + lines of the spectrum have been absent, indicating a change or variance in the gaseous part of it + at those periods.</span>.</p> + + <div class="sidenote">Various + places of + wave-length + assigned to + these lines.</div> + + <p>On reference to the ‘American Journal of Science,’ vol. xlviii. pp. 123 and + 404, it seems that the auroral observations before referred to were made on + 15th April, 1869, by C. S. Pierce, with “an ordinary chemical spectroscope, + with the collimator pointed directly to the heavens,†and were reported by + Winlock. The lines were 1280, 1400, and 1550 of Huggins’s scale, and were + reduced to Kirchhoff’s scale by Young. These lines have had all sorts of + places of wave-length assigned to them by different writers. Proctor gives + 5570, 5400, 5200; Pickering and Alvan Clarke, 5320 (assumed to be 5316, + coronal line); Barker, 5170, 5200, 5020; Backhouse, 5320, 4640, and 4310. + In my ‘Aurora Spectrum,’ Plate XII., I have assigned two, with a?, to 5320 + (Alvan Clarke) and 5020 (Barker). The third might perhaps be placed at + 4640 (Backhouse and Winlock).</p> + + <div class="sidenote">Doubts + raised as to + closeness + of the observations + for the purpose + of + comparison.</div> + + <p>The coincidences relied on in the foregoing observations depend, of course, + upon (1) the accuracy of the observations themselves, and (2) the subsequent + reduction of the lines for comparison. Assuming the correctness of the latter, + what have we as to the former? Two of Professor Young’s positions of + coronal lines, as stated, seem to have far too much of the ± element to make + them sufficiently accurate. Pierce’s auroral observation does not state how + the lines were positioned. As they <i>all</i> end with a cypher, the suspicion + naturally arises that the measurements did not extend beyond the first three + places of the figures, and, if so, could not be used for accurate comparison. + The auroral lines, too, are generally rather wide and nebulous, and not easy + of comparison with sharper ones.</p> + + </section> + + <!-- Chapitre 9_________________________________________________________--> + <section class="chapter" id="chapter-9"> + <h3 class="titlechapter" id="chap-9">Supposed Causes of the Aurora</h3> + <p class="shorter">Supposed Causes of the Aurora</p> + + <div class="sidenote">Supposed + causes of the + Aurora. Sulphurous + vapours. Magnetic + effluvia.</div> + + <p>At first the Aurora was described to be sulphurous vapours issuing from the + earth; and Musschenbroek pointed out that certain chemical mixtures sent + forth a phosphorescent vapour, in some respects resembling the Aurora. Dr. + Halley originally proposed a similar theory, but ultimately concluded that + the Aurora might be occasioned by the circulation of the magnetic effluvia of + the earth from one pole to another.</p> + + <div class="sidenote">Zodiacal + light.</div> + + <p>M. de Mairan, in 1721, in a treatise, ascribed the Aurora to the impulse + of the zodiacal light upon the atmosphere of the earth.</p> + + <div class="sidenote">Luminous + particles of + our atmosphere.</div> + + <p>Euler combated this theory, and ascribed the Aurora to the luminous + particles of our atmosphere driven beyond its limits by the light of the sun, + and sometimes ascending to the height of several thousand miles.</p> + + <div class="sidenote">Electric fluid + <i>in vacuo</i> + resembles + Aurora.</div> + + <p>Mr. Hawksbee very early showed that the electric fluid assumes, <i>in vacuo</i> + or in highly rarefied atmosphere, an appearance resembling the Aurora. Mr. + Canton contrived an imitation of the Aurora by means of electricity transmitted + through the Torricellian vacuum in a long glass tube, and showed + that such a tube would continue to display strong flashes of light for 24 + hours and longer without fresh excitation.</p> + + <div class="sidenote">Experiment + with electrical + machine + and exhausted + receiver.</div> + + <p>In the ‘Edinburgh Encyclopædia,’ date 1830, is mentioned an experiment + in which an electrical machine and air-pump are so disposed that strong sparks + pass from the machine to the receiver of the air-pump.</p> + + <div class="sidenote">Dr. Franklin’s + theory.</div> + + <p>As the exhaustion proceeds the electricity forces itself through the receiver + in a visible stream, at first of a deep purple colour; “but as the exhaustion + advances it changes to blue, and at length to an intense white, <i>with which + the whole receiver becomes completely filled</i>.†[It will be noticed that this + experiment bears a close resemblance to Prof. Ã…ngström’s exhausted flask + referred to later in treating of the spectrum of the Aurora.]</p> + + <p>Dr. Franklin gave a different form to the electric theory of the Aurora, + supposing that the electricity which is concerned in the phenomenon passes + into the Polar regions from the immense quantities of vapour raised into the + atmosphere between the tropics (Exper. and Observ. 1769, p. 43).</p> + + <div class="sidenote">Mr. Kirwan’s + theory.</div> + + <p>Mr. Kirwan (Irish Trans. 1788) supposed that the light of the Aurora + Borealis and Australis was occasioned by the combustion of inflammable air + kindled by electricity.</p> + + <div class="sidenote">Mons. + Monge’s.</div> + + <p>Mons. Monge proposed the theory that the Auroræ were merely clouds + illuminated by the sun’s light falling upon them after numerous reflections + from other clouds placed at different distances in the heavens (Leçons de + Physique par Prejoulz, 1805, p. 237).</p> + + <span class="sidenote">Mons. Libes’.</span> + + <p>Mons. Libes propounded a theory that the electric fluid, passing through a + mixture of azote and oxygen, produced nitric acid, nitrous acid or nitrous + gas, and that these substances, acted upon by the solar rays, would exhibit + those red and volatile vapours which form the Aurora Borealis (Traité de + Physique, ou Dictionnaire de Physique, par Libes; Rozier’s Journal, June + 1790, February 1791, and vol. xxxviii. p. 191).</p> + + <span class="sidenote">Mr. Dalton’s.</span> + + <p>Mr. Dalton considered the Aurora a magnetic phenomenon whose beams + were governed by the magnetism of the earth. He observed that the luminous + arches were always perpendicular to the magnetic meridian (Dalton’s + Meteorological Observations and Essays, 1793, pp. 54, 153).</p> + + <span class="sidenote">Abbé Bertholon’s.</span> + + <p>The Abbé Bertholon ascribed the Aurora Borealis to a phosphorico-electric + light (Encyc. Méthod. art. Auroræ).</p> + + <div class="sidenote">Dr. Thompson + concluded + the + arches to be + an optical + deception.</div> + + <p>Dr. Thompson (Annals of Philosophy, vol. iv. p. 429), from the observations + of Mr. Cavendish and Mr. Dalton, concluded there was no doubt that + the arched appearance of the Aurora was merely an optical deception, and + that in reality it consisted of a great number of straight cylinders parallel + to each other and to the dipping-needle at the place where they were seen.</p> + + <div class="sidenote">Artificial + Auroræ produced + in exhausted + tubes.</div> + + <p>With many of us (at least it was so in my own case) our first viewed Auroræ + have been artificial ones, devised by electricians and having their locus at the + Royal Polytechnic in Regent Street or in some scientific lecture-room. The + effects in these cases are produced in tubes nearly exhausted by means of an + air-pump, and then illuminated by some form of electric or galvanic current.</p> + + <span class="sidenote">Tubes described.</span> + + <p>In one instance the tube is usually of the form shown on Plate X. fig. 9, + supported on a base with a brass ball electrode at the lower end, and a pointed + wire at the upper. In another case the tube is of the form shown on same + Plate, fig. 8. After exhaustion it is permanently closed, the current passing + through it by means of the platinum-wire electrodes introduced into each + end of the tube. The first form of tube is usually excited by a frictional + plate machine; the second by a galvanic current from a Grove or bichromate + battery, which, by the aid of a Ruhmkorff coil, has had its character changed + from quantity to intensity. In each instance, upon connexion with the source + supply of the electric current, a very similar effect is produced.</p> + + <p></p> + + <span class="sidenote">Effects described.</span> + + <p>Brilliant streams of rose-coloured light pass between the electrodes, sometimes + as a single luminous misty band, sometimes in divided vibrating sprays + or streams, and sometimes in a flaky column of striæ.</p> + + <p>All this, before the spectroscope took its part in the investigation, we were + content to accept as a very fair and probable explanation of the Aurora accompanied + by a mimic representation of the phenomenon.</p> + + <p>These appearances may, of course, be produced at will in tubes having + electrodes; but it is, moreover, possible to produce them, though with less + effect, in certain other forms of tube having no such direct communication + with the external electric machine.</p> + + <p>One electrode only may be connected with the coil or electrical machine. + The appearance is then a faint representation of what happens when the + current entirely passes (but see experiments with a single wire detailed in + Part III.).</p> + + <div class="sidenote">Tube without + electrodes.</div> + + <p>In the case of an exhausted tube having no electrodes, the wires from the + coil may be made into a little helix and placed at each end of the tube, and + the induced currents within will show themselves in flashes and streams of + light, varying in colour and tint according to the gaseous or other contents of + the tube.</p> + + <div class="sidenote">Tube excited + by friction.</div> + + <p>In some cases the ordinary forms of galvanic or electrical machine for supplying + the current of electricity may be dispensed with. A long straight tube + exhausted and closed at each end, and without electrodes, Plate X. fig. 6, being + slightly warmed and then excited by friction with the dry hand or a piece of + flannel, silk handkerchief, or the like, is soon filled with the most brilliant + flashes of light playing in the interior, and when once thoroughly charged + needs but little further excitation to keep up the effect.</p> + + <div class="sidenote">Geissler’s + mercury + tube.</div> + + <p>Geissler has introduced a form of tube in which electricity in its form of + flashes and glow of light is produced by the friction of mercury. The outer + tube is strong, and contains within it a smaller tube of uranium glass with + balls blown upon it (Plate X. fig. 7). The tubes are exhausted and a small + quantity of mercury is introduced which has access to both surfaces of the + inner tube, as well as to the inner surface of the outer tube. Upon the tube + being reversed end for end or shaken, the mercury runs up or down the tube + and causes a very considerable display of whitish light.</p> + + <p>The before-described tubes are also referred to, and their spectra described, + in the section “On the comparison of some tube and other Spectra with the + Aurora†(Part II.).</p> + + <p>The aura or brush from the electrical machine has been considered as + resembling the Aurora, while the hissing and crackling accompanying it has + been supposed to corroborate the reports of similar noises having been heard + during an auroral display.</p> + + <div class="sidenote">Prof. Lemström’s + instrument + to + demonstrate + the nature + of Auroræ.</div> + + <p>Prof. Lemström, of the University of Helsingfors, has devised an instrument + for the purpose of demonstrating that Auroræ are produced by electrical + currents passing through the atmosphere. An illustration of this instrument + (for which I am indebted to the Editor of ‘Nature’) is introduced (fig. 1).</p> + + <p>The instrument was exhibited at the recent Scientific Loan Collection at + South Kensington, and a full description of it, together with an essay by + Prof. Lemström, “On the Theory of the Polar Light,†will be found in the + third edition of the Official Catalogue, p. 386. no. 1751. The apparatus is + intended to show that an electric current passing from an insulated body does + not produce light in air of normal pressure; but as it rises to the rarefied air + in the Geissler tubes a phenomenon very like the real Polar Light is produced.</p> + + <div class="figcenter" style="width: 400px;"> + <!-- <img src="images/fig1.jpg" width="400" height="500" alt="" /> --> + <p class="caption">Fig. 1.</p> + </div> + + <p>A is an electrical machine, the negative pole being connected with a copper + sphere and the positive with the earth.</p> + + <p><i>s s´</i> is of ebonite as well as R R <i>d</i>, so that B is quite insulated as the earth + is in space. B is surrounded by the atmosphere. <i>a´ a´ a´ a´ a´ a´</i> are a series of + Geissler tubes with copper ends above and below. All the upper ends are + connected with a wire which goes to the earth; consequently a current runs + in the direction of the arrows through the air, and the Geissler tubes become + luminous when the electrical machine is set into operation.</p> + + <p>The Geissler tubes represent the upper part of the atmosphere which + becomes luminous when the Aurora Borealis is observed in the northern + hemisphere. The phenomena produced by the Lemström apparatus are + considered consistent with the theory advocated by Swedish observers that + electrical currents emanating from the earth and penetrating into the upper + regions produce Auroræ in both hemispheres. The experiment differs from + the apparatus of M. de la Rive, who placed his current <i>in vacuo</i>, and did not + show the property of ordinary atmospheric air, in allowing to pass unobserved, + at the pressure of 760 millims., a stream of electricity which illuminates a + rarefied atmosphere.</p> + + <div class="sidenote">M. de la + Rive’s apparatus + described.</div> + + <p>De la Rive’s apparatus was also exhibited at the same time, and will be + found described at p. 385 of the Catalogue, No. 1749. A large sphere of + wood represented the earth, and iron cylinders the two extremities of the + terrestrial magnetic axis. These penetrated into two globes filled with + rarefied air, simulating the higher regions of the Polar atmosphere. The + electric discharge turned around a point situate in the prolongation of the + axis, in a different direction at either pole, when the two cylinders were + charged by means of a horseshoe electro-magnet, in accordance with observations + on the rotation of the rays of the Aurora.</p> + + <div class="sidenote">De la Rive’s + magnet in + an electric + egg.</div> + + <p>De la Rive placed an electro-magnet in an electric egg. As soon as the + magnet was set in action the discharge which had before filled the egg was + concentrated into a defined band of light, which rotated steadily round the + magnet.</p> + + <div class="sidenote">Gassiot’s + experiment + with 400 + Grove cells + and exhausted + receiver + between + poles of + magnet.</div> + + <p>Gassiot describes an experiment with his great Grove’s battery of 400 cells, + in which an exhausted receiver was placed between the poles of the large + electro-magnet of the Royal Institution.</p> + + <p>“On now exciting the magnet with a battery of 10 cells, effulgent strata + were drawn out from the positive pole, and passed along the under or upper + surface of the receiver according to the direction of the current.</p> + + <p>“On making the circuit of the magnet and breaking it immediately, the + luminous strata rushed from the positive pole and then retreated, cloud following + cloud with a deliberate motion, and appearing as if swallowed up by + the positive electrode.†Mr. Marsh considered this bore a very considerable + resemblance to the conduct of the auroral arches, which almost invariably + drift slowly southward.</p> + + <p></p> + + <div class="sidenote">Mr. Marsh + considered + the Aurora + an electric + discharge + between the + magnetic + poles of the + earth.</div> + + <p>He considered it probable that the Aurora was essentially an electric + discharge between the magnetic poles of the earth, leaving the immediate + vicinity of the north magnetic pole in the form of clouds of electrified matter, + which floated southward, bright streams of electricity suddenly shooting forth + in magnetic curves corresponding to the points from which they originated, + and then bending southward and downward until they reached corresponding + points in the southern magnetic hemisphere, and forming pathways by which + the electric currents passed to their destination; and, further, that the magnetism + of the earth caused these currents and electrified matter composing + the arch to revolve round the magnetic pole of the earth, giving them their + observed motion from east to west or from west to east.</p> + + <div class="sidenote">Varley’s + observation + on a glow-discharge + <i>in vacuo</i>. Spark surrounded + by + an aura + which could + be separated.</div> + + <p>Varley showed that when a glow-discharge in a vacuum tube is brought + within the field of a powerful magnet, the magnetic curves are illuminated + beyond the electrodes between which the discharge is taking place, as well + as in the path of the current, and also thought that this illumination was + caused by moving particles of matter, as it deflected a balanced plate of talc + on which it was caused to infringe. It has also been shown that in electrical + discharges in air at ordinary pressure, while the spark itself was unaffected by + the magnet, it was surrounded by a luminous cloud or aura which was driven + into the magnetic curve, and which might also be separated from the spark + by blowing upon it.</p> + + <p>Most of the foregoing interesting results and experiments will be found + repeated and verified in Part III.</p> + + <h4 id="chap-9-1"><i>Prof. Lemström’s Theory.</i></h4> + + <div class="sidenote">Prof. Lemström’s + theory.</div> + + <p>Prof. Lemström thinks that terrestrial magnetism plays only a comparatively + secondary part in the phenomena of the Polar Light, this part consisting + essentially in a direct action upon the rays.</p> + + <p>That the experiments of M. de la Rive do not all furnish the proof that the + rays of the light are really united under this influence.</p> + + <div class="sidenote">Character + of the Polar + Light.</div> + + <p>That the Polar Light considered as an electrical discharge gives the following + results:—</p> + + <p>(1) An electric current arising from the discharge itself, which takes place + slowly.</p> + + <p>(2) Rays of light consisting of an infinite number of sparks, each spark + giving rise to two induction currents going in opposite directions.</p> + + <p>(3) A galvanic current going in an opposite direction to that of the discharge, + and having its origin in the electromotive force discovered by M. Edlund in + the electric spark. That these currents require a closed circuit; but this is + not necessary in the case of the Aurora, as the earth and rarefied air of the + upper regions are immense reservoirs of electricity producing the same effect + as if the circuit were closed. That permanent moisture in the air, a good + conductor of electricity, is the cause of a slow and continuous discharge + assuming the form of an Aurora, instead of suddenly producing lightning as + in equatorial regions and mean latitudes.</p> + + <div class="sidenote">Polar Light + due to electric + discharges + only.</div> + + <p>He sums up, that the electric discharges which take place in the Polar + regions between the positive electricity of the atmosphere and the negative + electricity of the earth are the essential and unique cause of the formation of + the Polar Light, light the existence of which is independent of terrestrial magnetism, + which contributes only to give to the Polar Light a certain direction, + and in some cases to give it motion.</p> + + <p>This Prof. Lemström maintains contrary to those who believe they see in + terrestrial magnetism, or rather in the induction currents, what is capable of + developing the origin of the Polar Light.</p> + + <h4 id="chap-9-2"><i>Theories of MM. Becquerel and De la Rive.</i></h4> + + <div class="sidenote">Theories of + MM. Becquerel + and + De la Rive.</div> + + <p>M. Becquerel’s theory is that solar spots are cavities by which hydrogen and + other substances escape from the sun’s protosphere. That the hydrogen takes + with it positive electricity which spreads into planetary space, even to the + earth’s atmosphere and the earth itself, always diminishing in intensity because + of the bad conducting-power of the successive layers of air and of the earth’s + crust. That would then only be negative, as being less positive than the air. + The diffusion of electricity through planetary space would be limited by the + diffusion of matter, since it cannot spread in a vacuum. That gaseous matter + extends further than the limits usually assigned to the earth’s atmosphere, is + proved by the observation of Auroræ at heights of 100 and 200 kilometres, + where some gaseous matter must exist. M. de la Rive agrees with + M. Becquerel as to the electric origin of the Aurora, but considers the earth + is charged with negative electricity and is the source of the positive atmospheric + electricity, the atmosphere becoming charged by the aqueous vapour + rising in tropical seas. The action of the sun he considers is an indirect one, + varying with the state of the sun’s surface, as shown by coincidences in the + periods of Aurora and sun-spots.</p> + + <p></p> + + <h4 id="chap-9-3"><i>M. Planté’s Electric Experiments.</i></h4> + + <div class="sidenote">M. Planté’s + experiments. Effects produced + resembling + Auroræ.</div> + + <p>M. Planté has performed some experiments with a very considerable series + of secondary batteries. By inserting the positive electrode after the negative + in a vessel of salt water, luminous and other effects were observed which were + considered to have a strong resemblance to those of Auroræ.</p> + + <p>M. Planté advocates the theory that the imperfect vacuum of the upper + regions, acting like a large conductor, plays the part of the negative electrode + in his experiments, while the positive electricity flows towards the planetary + spaces, and not towards the ground, through the mists and ice-clouds which + float above the Poles.</p> + + <div class="sidenote">M. Planté’s + experiments + producing + a corona, + an arc, or a + sinuous line.</div> + + <p>In an article in ‘Nature,’ March 14, 1878, a further account is given of + M. Planté’s experiments, under the head of “Polar Auroræ;†and it is stated + that, in these experiments, the electric current, in presence of aqueous + vapour, yielded a series of results altogether analogous to the various + phases of Polar Auroræ. If the positive electrode of the secondary battery + was brought into contact with the sides of a vessel of salt water, there was + observed, according to the distance of the film (electrode?) from the liquid, + either a corona formed of luminous particles arranged in a circle round the + electrode (fig. 2, p. 90), an arc bordered with a fringe of brilliant rays (fig. 3), or + a sinuous line which rapidly folded and refolded on itself (fig. 4). This undulatory + movement, in particular, formed a complete analogy with what had been + compared in Auroræ to the undulations of a serpent, or to those of drapery + agitated by the wind. The rustling noise accompanying the experiment was + analogous to that sometimes said to accompany Auroræ, and was caused by the + luminous electric discharge penetrating the moisture. As in Auroræ, magnetic + perturbations were produced by bringing a needle near the circuit, the + deviation increasing with the development of the arch.</p> + + <p>The Auroræ were produced by positive electricity, the negative electrode + producing nothing similar.</p> + + <p>Illustrations of these miniature Auroræ are given in ‘Nature,’ and reproduced + on p. 90. No mention of any spectroscopic observations is made.</p> + + <div class="sidenote">Mr. Holden’s + views.</div> + + <p>In a communication to the Metropolitan Scientific Association (‘Observatory,’ + March 1, 1879, p. 389), Mr. A. P. Holden, after supporting the theory + of a connexion between the waxing and waning of the solar corona and sun-spots, + adopts Mr. F. Pratt’s hypothesis “that the Aurora is simply light filmy + cirrus cloud, first deposited at the base of a vast upper body of highly rarefied + vapour, and illuminated by the free electricity escaping in the condensation + through the very rarefied medium above, towards the north or south. The + Aurora would, according to this theory, have its origin in a vast electrical + storm, resulting from a violent condensation of vapour which causes a flow of + electricity from the pole to restore equilibrium.†The Aurora would thus, in + Mr. Holden’s opinion, “depend on storm phenomena of an intense character; + and the frequency of Auroræ at the sun-spot maxima would indicate the connexion + of the latter with the weather.â€</p> + + <div class="figcenter" style="width: 700px;"> + <!-- <img src="images/fig2-3-4.jpg" width="700" height="375" alt="" /> --> + <p class="caption">Fig. 2. The corona.</p> + <p class="caption">Fig. 3. The arc and rays.</p> + <p class="caption">Fig. 4. The sinuous line.</p> + </div> + + </section> + + + + <!-- PART II_________________________________________________________ --> + <section class="part"> + <h2 class="title-part" id="part-2">The spectrum of the aurora</h2> + </section> + + <!-- Chapitre 10_________________________________________________________--> + <section class="chapter" id="chapter-10"> + <h3 class="titlechapter" id="chap-10">Spectroscope adapted for the Aurora</h3> + <p class="shorter">Spectroscope adapted for the Aurora</p> + + <div class="sidenote">Must be of + moderate + dispersion, + with ready + mode of + measuring + line-positions.</div> + + <p>Any form of spectroscope of moderate dispersion will suffice for observations + of the spectrum of the Aurora; but, for sake of convenience, a hand or + direct-vision spectroscope is to be preferred, and it is desirable also to have + some quick and ready mode of measuring the position of the lines while the + Aurora lasts.</p> + + <div class="sidenote">Mr. Browning’s + instrument + described.</div> + + <p>Mr. John Browning arranged for me a form of instrument which I have + found very convenient for observations by hand of the Aurora-lines, and also, + when fixed on a stand, for tube and chemical investigations. A representation + of this instrument is given on Plate X. fig. 1. A brass tube carries a large + compound (5) direct-vision prism (shown dark in the drawing). An arrangement + is made so that a second prism can at will be slipped into the tube + (shown in outline in the drawing). With one prism and a fine slit the D + lines are widely separated, and the field of view extends at one glance from + near C to near G. When the second prism is inserted and used in combination, + the nickel line can be seen between the two D lines, and the instrument + may be used for solar work. A photograph of the sun’s spectrum, taken with + one prism only, shows a great number of the dark solar lines and many of the + bright ones, ascribed by Prof. Draper to oxygen and nitrogen.</p> + + <figure class="plate" id="plate10"> + <!-- <img src="images/plate10.jpg" /> --> + <figcaption></figcaption> + </figure> + + <p></p> + + <div class="sidenote">Diaphragm + micrometer + described. Mode of use + of the + micrometer.</div> + + <p>The collimator and observing telescope are respectively 6 inches in length, + and carry achromatic lenses of one inch aperture. The telescope traverses + the field so that the extremities of the spectrum may be observed. The + dispersion of the instrument was ascertained by a set of observations of the + principal solar and some metallic lines, made with an excellent filar micrometer. + For the Auroral observations, Dr. Vogel has described an instrument + (see Appendix E) in which the usual spider’s-web wires are replaced by a + needle-point, as being easily seen upon a faint spectrum. Illuminated wires + may also be used; but I was led ultimately to employ, in preference, a diaphragm + micrometer which the spectrum itself illuminates, as being adapted + for speedy, yet fairly accurate, observations. It was made in this manner:—A + card was first of all prepared (Plate X. fig. 2), and within a circle described + on this, a scale was drawn of moderately wide white spaces, with black + divisions between, short and long, so as to read off easily by eye. The upper + half of the circle was then entirely filled in with black; and from the card as + thus prepared a reduced negative photograph was made. In this the spaces + and lower half of the circle were opaque, and the upper half of the circle + and the lines between the spaces were transparent (Plate X. fig. 4). This + photograph was about the size of a shilling (fig. 3, same Plate). It was + mounted carefully in Canada balsam, with a thin glass cover, and then + placed in the focus of the eyepiece. In use, the spectrum is brought upon + the scale so that the upper half shows above the scale without any interruption + at all; while the lower half illuminates the scale and renders the + divisions visible, showing the spectrum-lines falling either upon them or the + spaces between. The photographed scale was next enlarged to a considerable + size and printed upon faintly ruled paper; and the enlargement was so + arranged as to comprise five of the faint ruled lines between each division of + the scale. Each of these faint lines in turn represented a certain portion of + the spectrum as read off with the filar micrometer; so that the scales as constructed + with the filar micrometer and with the photographed micrometer + corresponded for all parts of the spectrum included in the field of the eyepiece.</p> + + <div class="sidenote">Advantage + of the + method.</div> + + <p>One of the photographed enlargements being laid on the table under the + spectroscope, the observed lines were marked off with ease and accuracy upon + it; and as the photograph was an exact copy of the scale, any want of exactitude + in the divisions was of no moment.</p> + + <p>One great advantage of this method was, that all the lines seen could be + recorded at one time and with all in view, and without the risk of slight + shift in the instrument, which frequently happens when lines are read off + seriatim.</p> + + <p>I found this plan most effective for the rapid and correct recording of a + faint and evanescent spectrum, and it gave close results when compared with + traversing-micrometer measured spectra. The records, too, admitted of subsequent + examination at leisure.</p> + + <div class="sidenote">Double-slit + plate arrangement.</div> + + <p>Mr. Browning subsequently constructed for me a double-slit plate (lately in + the Scientific Loan Collection at South Kensington) for the same instrument + (Plate X. fig. 5). The lower half of the plate is fixed. The upper half + traverses the lower by the aid of a micrometer-screw. The slit is widened or + closed at pleasure by loosening the small screws by which the jaw-plates are + attached. A scale is engraved on the fixed lower half of the plate for an + approximate measurement, while the division of the micrometer-screw-head + completes it.</p> + + <p>In use, one half of the spectrum slides along the other, and a bright line + in the upper spectrum is selected as an index. The distances between the + lines of the lower half of the spectrum are read off by means of the bright + line above. This form of micrometer was suggested by Mr. Procter (in + ‘Nature’) many years ago as a substitute for a more complicated apparatus + by Zöllner. Other instruments on a similar principle have been lately introduced, + but for Aurora purposes I prefer a fixed scale.</p> + + <div class="sidenote">Photographed + spectrum + suggested.</div> + + <p>In ‘Photographed Spectra’ I have pointed out that we shall probably + obtain no spectrum of the Aurora to be absolutely depended upon for comparison + with other spectra until we succeed in a photographed one. From + experiments made with a special prism of the Rutherfurd form, constructed + for me by Mr. Browning (with which many gas-spectra have been already + photographed), I see no reason, should an unusually bright Aurora favour us + with a visit, why its spectrum may not be recorded in a permanent form, + and with lines sufficiently well marked to be compared with other spectra. + Rapid dry plates would be especially useful for such a purpose, and some + Auroræ, if wanting in brilliancy, would doubtless compensate by their period + of endurance.</p> + + <div class="sidenote">Mr. Hilger’s + half-prism + spectroscope.</div> + + <p>Mr. Adam Hilger has also made for me one of his “half-prism†spectroscopes, + in which considerable dispersion is obtained with but very little loss + of light. This instrument has a simple and rapid micrometer arrangement, + with a bright line as an index. I have (for want of Auroræ) had no opportunity + of trying it, but I doubt not it is well adapted for such a purpose.</p> + + <p></p> + + <h4 id="chap-10-1"><i>Spectrum of the Aurora described.</i></h4> + + <div class="sidenote">Lines or + bands and + continuous + spectrum.</div> + + <p>The spectrum of the Aurora consists of a set of lines or bands upon a dark + ground at each extremity of the spectrum, but with more or less of faint continuous + spectrum towards the centre. The extreme range of the spectrum, + as observed up to the present time, is from “<i>a</i>†(between C and D) in the + red to “<i>h</i>†(hydrogen) in the violet.</p> + + <div class="sidenote">Lines nine + in number.</div> + + <p>The lines have been classified and arranged by Lemström and others as + nine in number, but I believe not more than seven have ever been seen + simultaneously.</p> + + <p>The author of the article “Aurora Polaris,†in the ‘Encyclopædia Britannica,’ + classes the lines as nine, and gives a table with the following results + (to these I have added Herr Vogel’s lines, for the purpose of identification + and comparison):—</p> + + <div class="sidenote">Table from + Encyc. Brit.</div> + + <table summary="The nine classes of line" class="borders"> + <tr> + <th>No. of<br />line.</th> + <th>Number of<br />observations.</th> + <th>Mean<br />W.L.</th> + <th>Probable<br />error.</th> + <th>Vogel’s<br />lines.</th> + </tr> + <tr> + <td class="bl">1.</td> + <td class="tdr">5</td> + <td class="tdr">6303</td> + <td>± 8·1</td> + <td class="tdr">6297</td> + </tr> + <tr> + <td class="bl">2.</td> + <td class="tdr">10</td> + <td class="tdr">5569</td> + <td>± 2·9</td> + <td class="tdr">5569</td> + </tr> + <tr> + <td class="bl">3.</td> + <td class="tdr">4</td> + <td class="tdr">5342</td> + <td>±16</td> + <td class="tdr">5390</td> + </tr> + <tr> + <td class="bl">4.</td> + <td class="tdr">6</td> + <td class="tdr">5214</td> + <td>± 5·4</td> + <td class="tdr">5233</td> + </tr> + <tr> + <td class="bl">5.</td> + <td class="tdr">4</td> + <td class="tdr">5161</td> + <td>± 9·7</td> + <td class="tdr">5189</td> + </tr> + <tr> + <td class="bl">6.</td> + <td class="tdr">6</td> + <td class="tdr">4984</td> + <td>±11</td> + <td class="tdr">5004</td> + </tr> + <tr> + <td class="bl">7.</td> + <td class="tdr">4</td> + <td class="tdr">4823</td> + <td>± 9·3</td> + <td></td> + </tr> + <tr> + <td class="bl">8.</td> + <td class="tdr">8</td> + <td class="tdr">4667</td> + <td>± 9·8</td> + <td class="tdr">4663</td> + </tr> + <tr> + <td class="bl bb">9.</td> + <td class="tdr bb">8</td> + <td class="tdr bb">4299</td> + <td class="bb">± 9·3</td> + <td class="bb"></td> + </tr> + </table> + + <p>The probable errors are large, and it is a question whether any thing is + gained by thus endeavouring to average the lines.</p> + + <div class="sidenote">Ã…ngström’s + line. Zöllner’s + line in the + red. Other Lines + of the + spectrum.</div> + + <p>The principal and brightest line, in the yellow-green, is generally called + “Ångström’s,†and his (probably the first) measurement of its position at 5567 + adopted. This was in the winter of 1867-68, and he saw in addition, by + widening the slit, traces of three very feeble bands situated near to F. + Zöllner is credited with the first observation of the line in the red. These + two lines are generally described as with similar characteristics, and in + about the same respective positions, by all observers, and have never been + remarked to spread into bands. The other lines in the spectrum are difficult + to position, owing to the many discordant observations of them. They seem + also variable in intensity as well as in number (sometimes even in the same + Aurora), and are not unfrequently observed to have their places supplied by + bands.</p> + + <div class="sidenote">Second + German expedition + observations. Austro-Hungarian.</div> + + <p>The spectroscope was used in the second German expedition, but only the + one brightest line seen—Dr. Börgen stating he had never seen a trace of the + weak lines in the blue and red, which were observed so distinctly with the + same spectroscope on 25th October, 1870, after the return of the expedition. + Lieutenant Weyprecht used a small spectroscope during the Austro-Hungarian + Expedition, and saw only the well-known yellow-green line.</p> + + <div class="sidenote">Swedish expedition, + 1868. Lemström’s + observations.</div> + + <p>In the Swedish Expedition, 1868, Lemström mentions that in the Aurora + spectrum there are nine lines (he does not say he saw them simultaneously), + which he considers to agree with lines belonging to the air-gases. He also + thinks the Aurora could be referred to three distinct types, depending on the + character of the discharge.</p> + + <div class="sidenote">Spectrum + or Aurora + seen at + Tronsa.</div> + + <p>At Tronsa an Aurora was seen October 21st, 1868, which commenced in + the north and became very brilliant. The spectroscope showed:—</p> + + <p>1. A yellow line at 74·9.</p> + + <p>2. A very clear line in the blue at 65·90.</p> + + <p>3. Two lines of hair’s breadth, with very pronounced (horizontal?) striæ on + the side of the yellow, one at 125 and the other about 105.</p> + + <p>[I presume the striæ were really vertical, and that the explanation intended + to convey that these lines shaded off towards the yellow. From a comparison + of the figures they must have been in the red, and are the only instance + recorded of two auroral lines in that region. They are subsequently spoken + of as “shaded rays.â€â€”J. R. C.]</p> + + <div class="sidenote">MM. Wijkander + and + Parent’s observations.</div> + + <p>M. Auguste Wijkander and Lieut. Parent, of the Swedish Expedition in + 1872-73, under Professor Nordenskiöld, used a direct-vision spectroscope, + with a micrometer-screw movement of the prisms, the reading being afterwards + reduced to wave-lengths upon Ã…ngström’s line-values.</p> + + <p>The following Table gives the results, with Dr. Vogel’s lines added for the + sake of comparison:—</p> + + <table summary="Results" class="borders"> + <tr> + <th rowspan="2">Lines.</th> + <th colspan="3">Observations, Wijkander.</th> + <th colspan="3">Observations, Parent.</th> + <th rowspan="2">Mean of<br />both.</th> + <th rowspan="2">Vogel.</th> + </tr> + <tr> + <th>Number.</th> + <th>W.L.</th> + <th>Probable<br />error.</th> + <th>Number.</th> + <th>W.L.</th> + <th>Probable<br />error.</th> + </tr> + <tr> + <td class="bl center">..</td> + <td class="tdr">..</td> + <td class="tdr">..</td> + <td class="tdr">..</td> + <td class="tdr">..</td> + <td class="tdr">..</td> + <td class="tdr">..</td> + <td class="tdr">..</td> + <td class="tdr">6297</td> + </tr> + <tr> + <td class="bl center">..</td> + <td class="tdr">..</td> + <td class="tdr">..</td> + <td class="tdr">..</td> + <td class="tdr">..</td> + <td class="tdr">..</td> + <td class="tdr">..</td> + <td class="tdr">..</td> + <td class="tdr">5569</td> + </tr> + <tr> + <td class="bl center">(1)</td> + <td class="tdr">5</td> + <td class="tdr">5359</td> + <td class="tdr">±3</td> + <td class="tdr">..</td> + <td class="tdr">..</td> + <td class="tdr">..</td> + <td class="tdr">5359</td> + <td class="tdr">5390</td> + </tr> + <tr> + <td class="bl center">(2)</td> + <td class="tdr">6</td> + <td class="tdr">5289</td> + <td class="tdr">±5</td> + <td class="tdr">3</td> + <td class="tdr">5280</td> + <td class="tdr">± 1</td> + <td class="tdr">5286</td> + <td class="tdr">.. </td> + </tr> + <tr> + <td class="bl center">(3)</td> + <td class="tdr">6</td> + <td class="tdr">5239</td> + <td class="tdr">±4</td> + <td class="tdr">2</td> + <td class="tdr">5207</td> + <td class="tdr">±11</td> + <td class="tdr">5231</td> + <td class="tdr">5233</td> + </tr> + <tr> + <td class="bl center">..</td> + <td class="tdr">..</td> + <td class="tdr">..</td> + <td class="tdr">..</td> + <td class="tdr">..</td> + <td class="tdr">..</td> + <td class="tdr">..</td> + <td class="tdr">..</td> + <td class="tdr">5189</td> + </tr> + <tr> + <td class="bl center">(4)</td> + <td class="tdr">5</td> + <td class="tdr">4996</td> + <td class="tdr">±9</td> + <td class="tdr">..</td> + <td class="tdr">..</td> + <td class="tdr">..</td> + <td class="tdr">4996</td> + <td class="tdr">5004</td> + </tr> + <tr> + <td class="bl center">(5)</td> + <td class="tdr">1</td> + <td class="tdr">4871</td> + <td class="tdr">..</td> + <td class="tdr">1</td> + <td class="tdr">4873</td> + <td class="tdr">..</td> + <td class="tdr">4872</td> + <td class="tdr">.. </td> + </tr> + <tr> + <td class="bl center">(6)</td> + <td class="tdr">8</td> + <td class="tdr">4692</td> + <td class="tdr">±2</td> + <td class="tdr">10</td> + <td class="tdr">4708</td> + <td class="tdr">± 5</td> + <td class="tdr">4701</td> + <td class="tdr">4663</td> + </tr> + <tr> + <td class="bl center">(7)</td> + <td class="tdr">1</td> + <td class="tdr">4366</td> + <td class="tdr">..</td> + <td class="tdr">..</td> + <td class="tdr">..</td> + <td class="tdr">..</td> + <td class="tdr">4366</td> + <td class="tdr">.. </td> + </tr> + <tr> + <td class="bl center bb">(8)</td> + <td class="tdr bb">4</td> + <td class="tdr bb">4280</td> + <td class="tdr bb">±3</td> + <td class="tdr bb">3</td> + <td class="tdr bb">4286</td> + <td class="tdr bb">±16</td> + <td class="tdr bb">4284</td> + <td class="tdr bb">..</td> + </tr> + </table> + + <p>The brightest line in all Auroræ, 5567, was intentionally not included in + the Tables. The red line was not seen. Nos. 5 and 7 were only seen once, + and not in the same Aurora.</p> + + <div class="sidenote">Spectrum + of Aurora + of October + 24th, 1870.</div> + + <p>The Aurora of October 24th, 1870, came at a time when spectroscopes of + a direct-vision form were being introduced, and a number of observations were + communicated at the time to ‘Nature.’</p> + + <div class="sidenote">T. F.’s observations. W. B. + Gibbs’s observation. Elger’s observation.</div> + + <p>A correspondent, T. F., writing from Torquay, saw, with a direct-vision spectroscope, + one strong red line near C, one strong pale yellow line near D, one + paler near F, and a still paler one beyond, with a faint continuous spectrum + from about D to beyond F. The C line was very conspicuous and the + brightest of the whole. It was intermediate in position and colour to the red + lines of the lithium and calcium spectra. Plainly there were two spectra + superposed, for while the red portions of the Aurora showed the four lines + with a faint continuous spectrum, the greenish portions showed only one line + near D on a faint ground. W. B. Gibbs saw, in London, only two bright + lines, one a greenish grey, situate about the middle of the spectrum, and the + other a red line very much like C (hydrogen). Thomas G. Elger, at Bedford, + on the 24th and 25th, saw:—(1) a broad and well-defined red band near C; + (2) a bright white band near D (same as Ã…ngström’s W.L. 5567), on 25th + visible in every part of the sky; (3) a faint and rather nebulous line, roughly + estimated to be near F; (4) a very faint line about halfway between 2 and 3. + The red band was absent from the spectrum of the white rays of the Aurora, + but the other lines were seen.</p> + + <div class="sidenote">J. R. + Capron’s + observation.</div> + + <p>With a small Browning direct-vision spectroscope on the 24th, I found no + continuous spectrum, but two bright lines, one in the green (like that from + the nebulæ, but more intense, and considerably flickering), the other in the + red (like the lithium line, but rather duskier: Plate V. fig. 6). The latter + was only well seen when the display was at its height; it could, however, + be faintly traced wherever the rose tint of the Aurora extended. The line in + the green was well seen in all parts of the sky, but was specially bright in + the Auroral patches of white light.</p> + + <div class="sidenote">Mr. Browning’s + observation. Alvan + Clarke’s, + jun., observations.</div> + + <p>Mr. Browning also saw the red line, but found comparison difficult. On + the evening of the 24th October, Mr. Alvan Clarke, jun., at Boston, used a + chemical spectroscope of the ordinary form, with one prism and a photographed + scale illuminated with a lamp. Four Auroral lines were seen at + points of his scale numbered 61, 68, 80, and 98. These were reduced to + wave-lengths by Professor Pickering, with the following results:—</p> + + <table summary="Results" class="borders"> + <tr> + <th>Line.</th> + <th>Reading<br />on scale.</th> + <th>Wave-lengths.</th> + <th>Assumed<br />line.</th> + <th>Comments.</th> + <th>Probable<br />error.</th> + </tr> + <tr> + <td class="bl center">1.</td> + <td class="tdr">61</td> + <td class="tdr">5690</td> + <td class="tdr">5570</td> + <td class="nw">Common Aurora-line.</td> + <td class="tdr">-20</td> + </tr> + <tr> + <td class="bl center">2.</td> + <td class="tdr">68</td> + <td class="tdr">5320</td> + <td class="tdr">5316</td> + <td>Corona line.</td> + <td class="tdr">+ 1</td> + </tr> + <tr> + <td class="bl center">3.</td> + <td class="tdr">80</td> + <td class="tdr">4850</td> + <td class="tdr">4860</td> + <td>F, hydrogen.</td> + <td class="tdr">- 3</td> + </tr> + <tr> + <td class="bl center bb">4.</td> + <td class="tdr bb">98</td> + <td class="tdr bb">4350</td> + <td class="tdr bb">4340</td> + <td class="bb">G, hydrogen.</td> + <td class="tdr bb">+ 6</td> + </tr> + </table> + + <p>[61 is evidently wrong, and was probably a mistake for 63.]</p> + + <div class="sidenote">G. F. Barker’s + observations.</div> + + <p>George F. Barker, observing at New Haven (U.S.A.), saw, on November + 9th, a crimson and white Aurora, which he examined with a single glass-prism + spectroscope, by Duboscq, of Paris. The line positions were obtained + by an illuminated millimetre scale. In the white Aurora were four lines + (the red one being absent); in the red Aurora five. The wave-lengths of the + Aurora-lines were run out as follows:—</p> + + <ul> + <li>(1.) Between C and D, 6230 (Zöllner’s 6270).</li> + <li>(2.) <span class="ditto2">â€</span> D and E, 5620 (Ã…ngström’s 5570).</li> + <li>(3.) <span class="ditto2">â€</span> E and <i>b</i>, 5170 (Winlock’s 5200).</li> + <li>(4.) <span class="ditto2">â€</span> <i>b</i> and F, 5020.</li> + <li>(5.) <span class="ditto2">â€</span> F and G, 4820 (Alvan Clarke’s, jun., 4850).</li> + </ul> + + <p></p> + + <div class="sidenote">Spectrum + of Aurora + of Feb. 4, + 1872. Prof. Piazzi + Smyth’s observations.</div> + + <p>Mr. Procter’s Aurora-lines will be found noticed in connexion with the + spectrum of oxygen; and Lord Lindsay’s lines, with a comparison scale + drawing, are separately described further on in this Chapter. The Aurora of + February 4th, 1872, had many observers; some of whom communicated at + the time spectroscopic notes. Professor Piazzi Smyth minutely describes the + display as seen in Edinburgh, and saw “Ångström’s green Aurora-line perpetually + over citron acetylene <span class="footnote">There seems to be some confusion as to the W.L. here given; 5567 is usually accepted as + Ã…ngström’s line, while Prof. Smyth refers to it as 5579. The position, too, when examined with + a spectroscope of greater dispersion, is not exactly over the citron-line of acetylene, both the above + referred to lines lying somewhat more towards the violet end of the spectrum (see Plate V. fig. 7).</span> at W.L. 5579, and the red Aurora-line + between lithium <i>a</i> and sodium <i>a</i>, but nearer to the latter, say at W.L. 6370.†+ Extremely faint greenish and bluish lines also appeared at W.L. 5300, 5100, + and 4900 nearly.</p> + + <div class="sidenote">Rev. T. W. + Webb’s observations.</div> + + <p>The Rev. T. W. Webb, with a very fine slit, saw the green Auroral line even + in the light reflected from white paper. With a wider slit he saw a crimson + band in the brighter patches of that hue, and beyond an extent of greenish + or bluish light, which he suspected to be composed of contiguous bands.</p> + + <div class="sidenote">R. J. Friswell’s + observations.</div> + + <p>R. J. Friswell, coming up the Channel at 9.40, with a Hoffman’s direct-vision + spectroscope (the observing telescope removed), saw the green line, a + crimson line near C, and faint traces of structure in the blue and violet.</p> + + <div class="sidenote">The Rev. + S. J. Perry’s + observations.</div> + + <p>The Rev. S. J. Perry observed at Stonyhurst four lines, and, on examining + one of the curved streamers, found the red line even more strongly marked + than the green. A magnetic storm was observed to be at its height from 4 + to 9 <span class="smcapuc">P.M.</span> of the same day.</p> + + <div class="sidenote">J. R. Capron’s + observations.</div> + + <p>With a Browning 7-prism direct-vision spectroscope I saw the green line + in all parts of the Aurora, attended with a peculiar flickering movement. I + did not see the other lines.</p> + + <div class="sidenote">His catalogue + of + lines up to + Nov. 9, + 1872.</div> + + <p>In a letter to ‘Nature,’ dated November 9th, 1872, I catalogued the lines + observed up to that date as follows:—</p> + + <p>1. A line in the red between C and D. W.L., Ã…ngström, 6279.</p> + + <p>2. A line (the principal one of the Aurora) in the yellow-green, between + D and E. W.L., Ã…ngström, 5567.</p> + + <p>3. A line in the green, near E (corona line?). W.L., Alvan Clarke, jun., + and Backhouse, 5320.</p> + + <p>4. A faint line in the green, at or near <i>b</i>. W.L., Barker, 5170.</p> + + <p>5. A faint line or band in the green, between <i>b</i> and F. W.L., Barker, + 5020 (chromospheric?).</p> + + <p></p> + + <p>6. A line in the green-blue, at or near F. W.L., Alvan Clarke, jun., + 4850.</p> + + <p>7. A line in the indigo, at or near G. W.L., Alvan Clarke, jun., 4350.</p> + + <p>8. The continuous spectrum from about D to beyond F.</p> + + <div class="sidenote">Dr. H.C. + Vogel’s observations + of Auroral + lines. Spectrum + described.</div> + + <p>Dr. H. C. Vogel, formerly of the Bothkamp Observatory, near Kiel, and + since of the Astrophysical Observatory, Potsdam, made several observations + of the Auroral lines, October 25th, 1870. Besides the bright line between + D and E, he found several other fainter lines stretching towards the blue + end of the spectrum on a dimly-lighted ground. February 11th, 1871, he + observed the same set of lines, and an average of six readings gave 5572 as + the W.L. of the Ã…ngström line. February 12th gave 5576 as Dr. Vogel’s + reading, and 5569 as Dr. Lohse’s. April 9th gave 5569, and April 14th + 5569. The Aurora of April 9th, 1871, was exceedingly brilliant, so that + micrometer measurements of the lines were taken. The spectrum consisted + of one line in the red, five in the green, and a somewhat indistinct broad line + or band in the blue. The lines are thus described:—</p> + + <div class="sidenote">Table of + lines.</div> + + <p class="center">Table of Dr. Vogel’s lines. Aurora, April 9th, 1871.</p> + + <table summary="Dr. Vogel’s lines" class="borders"> + <tr> + <th>W.L.</th> + <th>Probable<br />error.</th> + <th colspan="2">Remarks.</th> + </tr> + <tr> + <td class="bl tdr">6297</td> + <td class="tdr">14</td> + <td>Very bright stripe.</td> + <td rowspan="3" class="vm"> On a faintly lighted ground.</td> + </tr> + <tr> + <td class="bl tdr">5569</td> + <td class="tdr">2</td> + <td>Brightest line of the spectrum, became noticeably fainter at appearance of the red line.</td> + </tr> + <tr> + <td class="bl tdr">5390</td> + <td class="tdr">..</td> + <td>Extremely faint line; unreliable observation.</td> + </tr> + <tr class="spaced"> + <td class="bl tdr">5233</td> + <td class="tdr">4</td> + <td colspan="2">Moderately bright.</td> + </tr> + <tr class="spaced"> + <td class="bl tdr">5189</td> + <td class="tdr">9</td> + <td colspan="2">This line was very bright when the red line appeared at the same time; otherwise equal in brilliancy with the preceding one.</td> + </tr> + <tr class="spaced"> + <td class="bl tdr">5004</td> + <td class="tdr">3</td> + <td colspan="2">Very bright line.</td> + </tr> + <tr class="spaced"> + <td class="bl tdr">4694</td> + <td rowspan="3" class="tdr bb">3</td> + <td rowspan="3" colspan="2" class="bb">Broad band of light, somewhat less brilliant in the middle; very faint in those parts of the Aurora in which the red line appeared.</td> + </tr> + <tr> + <td class="bl tdr">4663</td> + </tr> + <tr> + <td class="bl tdr bb">4629</td> + </tr> + </table> + + <p>A translation of Dr. Vogel’s interesting paper will be found printed <i>in extenso</i> + in Appendix E, and his lithographed drawings of the spectrum in the + green and red portions of the Aurora respectively on Plate VI. figs. 2 and 3. + The observations of April 9th by Dr. Vogel are probably, up to the present + time, the most exact of any one Aurora, and I have therefore in most cases + used them for comparison.</p> + + <div class="sidenote">Mr. Backhouse’s + catalogue of + lines.</div> + + <p>Mr. Backhouse, in a letter to ‘Nature,’ commenting upon my catalogue + of lines, gave the following as the latest determinations from his own + observations:—</p> + + <table summary="Backhouse's observations"> + <tr> + <td class="tdr">No. 1.</td> + <td>Wave-length</td> + <td class="tdr">6060</td> + </tr> + <tr> + <td class="tdr">2.</td> + <td class="center">â€</td> + <td class="tdr">5660</td> + </tr> + <tr> + <td class="tdr">3.</td> + <td class="center">â€</td> + <td class="tdr">5165</td> + </tr> + <tr> + <td class="tdr">4.</td> + <td class="center">â€</td> + <td class="tdr">5015</td> + </tr> + <tr> + <td class="tdr">6.</td> + <td class="center">â€</td> + <td class="tdr">4625</td> + </tr> + <tr> + <td class="tdr">7.</td> + <td class="center">â€</td> + <td class="tdr">4305</td> + </tr> + </table> + + <p class="noindent">(6060 must be a mistake for 6260, and 5660 for 5560.—J. R. C.) Mr. Backhouse + never saw a line at 5320 again. He found the continuous spectrum to + reach from No. 2 to No. 7, being brightest from a little beyond No. 2 to + No. 6. This part of the spectrum did not give him so much the idea of + a true “continuous spectrum†as of a series of bright bands too close to be + distinguished.</p> + + <div class="sidenote">Subsequent + full catalogue + of Auroral + lines.</div> + + <p>I have subsequently, in another section of this Chapter, added a full catalogue + of the Auroral lines, prepared by myself from the foregoing and other + sources and observations; and I also append to it a Plate [Plate XII.], in + which these lines are positioned and the wave-lengths and names of observers + are given. The numbers of the lines on the Plate correspond with those in + the catalogue. The solar spectrum and the spectrum of the blue base of a + candle-flame are added for purposes of comparison. [The telluric bands in + the solar spectrum are shown more distinctly than they actually appear, and + do not profess to give details.]</p> + + <h4 id="chap-10-2"><i>Flickering of the Green Line.</i></h4> + + <div class="sidenote">Flickering of + the green + line. Herschel’s + observation. J. R. Capron’s + observation.</div> + + <p>A. S. Herschel noticed this, April 9th (1871?). He says:—“A remarkable + circumstance connected with the appearance of the single line observed on + this occasion was the flickering and frequent changes with which it rose and + fell in brightness; apparently even more rapidly than the swiftly travelling + waves, or pulsations of light, that repeatedly passed over the streamers, near + the northern horizon, towards which the spectroscope was directed.†In the + spectrum of the Aurora of 20th October, 1870, I saw and noted the green + line as “considerably flickering;†and in the Aurora of 4th February, 1872, + I again saw and noted “the peculiar flickering†I had remarked in 1870. I + have not seen the peculiarity noted by other observers.</p> + + <h4 id="chap-10-3"><i>Mr. Backhouse’s graphical Spectra of four Auroræ.</i></h4> + + <div class="sidenote">Mr. Backhouse’s + graphical + spectra of + Auroræ.</div> + + <p>Mr. Backhouse has been good enough to supply me with some details of + four several Auroræ seen by him at Sunderland, accompanied by drawings, + showing in a graphical way the spectrum of each display as seen with a spectroscope + with rather a wide slit and as drawn by eye. I have reduced the four + drawings to the same scale, and in this way they are extremely interesting for + comparison (Plate V. fig. 4). The line on the left in each spectrum is Ã…ngström’s + bright Auroral line, and is supposed to be considerably prolonged. + The height of the lines denotes intensity.</p> + + <div class="sidenote">April 18, + 1873.</div> + + <p>April 18th, 1873, was a bright Aurora. No. 3 is a faint band, which + Mr. Backhouse had not perceived before. No. 5 had not been visible lately, + and Mr. Backhouse thought it must belong to Auroræ of a different type + from those which had appeared latterly.</p> + + <div class="sidenote">Feb. 4, + 1874.</div> + + <p>February 4th, 1874. In the spectrum of this Aurora Mr. Backhouse saw + seven lines, all that he had ever seen. (The red line, not shown in the diagram, + makes the seventh.)</p> + + <p>The spectrum is represented as seen between 6.50 and 7.5 <span class="smcapuc">P.M.</span> Mr. Backhouse + had only once before seen No. 4, and it became quite invisible between + 7.45 and 7.55, though the other lines were as bright as before and the red + line had appeared.</p> + + <span class="sidenote">Oct. 3, 1874.</span> + + <p>October 3rd, 1874. This spectrum was examined, and diagram made between + 10 and 10.25 <span class="smcapuc">P.M.</span> Five lines only are indicated.</p> + + <p>It is mainly distinguished from the two preceding spectra by the brightness + of the continuous spectrum on which the lines 2, 3, and 4 lie, and by the + weakness of No. 5.</p> + + <span class="sidenote">Oct. 4, 1874.</span> + + <p>October 4th, 1874. Taken between 11.10 and 11.20 <span class="smcapuc">P.M.</span>; distinguished, + like the last, by a considerable amount of continuous spectrum and by a faint + line (No. 3), not seen in the last spectrum, while No. 3 in the last is missing + in this spectrum.</p> + + <div class="sidenote">Mr. Backhouse’s + remarks + as to + comparative + frequency of + some of the + Auroral + lines.</div> + + <p>Mr. Backhouse, as to both these last spectra, remarks that the lines were + very variable in intensity, and sometimes some were visible and sometimes + others. They varied also in relative brightness in different parts of the sky + at the same time. Mr. Backhouse, in a communication to ‘Nature,’ referring + to a statement of Mr. Procter’s, that the bands of the Auroral spectrum are + seldom visible, except the bright line at 5570, says that he always found two + bands, “doubtless Winlock’s 4640 and 4310,†to be invariably visible when + the Aurora was bright enough to show them. Of thirty-four Auroræ examined + by Mr. Backhouse, fourteen showed the lines 4640 and 4310, and + three others at least one of these, while eight showed the red line. (Ã…ngström + only once saw this line.) In five Auroræ, all more or less red, he saw + a faint band, the wave-length of which he placed at 5000 or 5100. He never + saw the line 5320 (also Winlock’s coronal line), unless it were once, probably + from want of instrumental power. With regard to these observations, I may + say that with a Browning’s miniature spectroscope I saw only two lines (the + red and the green) in the grand display of the 24th October, 1870; and with + an instrument of larger aperture the green line only on the 4th February, + 1872; while I saw the green line and three others towards the violet with + the same instrument during the Aurora of 4th February, 1874. (See description + of this Aurora, <i>antè</i> p. 21, and drawing of spectrum, Plate VI. fig. 1 <i>a</i>.)</p> + + <h4 id="chap-10-4"><i>Lord Lindsay’s Aurora-Spectrum, 21st October, 1870.</i></h4> + + <div class="sidenote">Lord Lindsay’s + Aurora + of 21st Oct., + 1870.</div> + + <p>Lord Lindsay observed a fine Aurora at the Observatory at Dun Echt on + the night of the 21st October, 1870. It commenced about 9.30, reached its + maximum about 11, and faded away suddenly about 11.30 <span class="smcapuc">P.M.</span></p> + + <div class="sidenote">Spectrum + described.</div> + + <p>A spectrum obtained in the north-west gave five bright lines with a Browning’s + direct-vision spectroscope—two strong, one medium, two very faint. A + tallow candle was used to obtain a comparison spectrum of sodium and carburetted + hydrogen.</p> + + <p>A drawing of the spectrum obtained is given on Plate XI. fig. 2. No. 1 + is a sharp well-formed line visible with a narrow slit.</p> + + <p>No. 2, a line very slightly more refrangible than F. The side towards D + is sharp and well defined, while on the other side it is nebulous.</p> + + <p>No. 3, slightly less refrangible than G, is a broad ill-defined band, seen only + with a wide slit.</p> + + <p>No. 4, a line near E, woolly at the edges, but rather sharp in the centre. + This, says Lord Lindsay, should be at or near the position of the line 1474 of + the solar corona.</p> + + <p>No. 5, a faint band, coincident with <i>b</i>, extending equally on both sides + of it.</p> + + <p>The lines are numbered in order of intensity. It is questionable, from + observations with instruments carrying a scale, whether the line-positions are + exact; but the description of their characters is valuable.</p> + + <p></p> + + <span class="sidenote">Candle-spectrum.</span> + + <p>As a candle blue-base spectrum is at times a ready and handy mode of + reference in Auroral observations (as was found in this instance), I have, on + Plate XI. fig. 5, given a representation of it as seen with my Auroral spectroscope. + Dr. Watts’s corresponding carbon-spectrum is added on the lower + margin. The numbers on the upper margin refer to my scale.</p> + + <figure class="plate" id="plate11"> + <!-- <img src="images/plate11.jpg" /> --> + <figcaption></figcaption> + </figure> + + <h4 id="chap-10-5"><i>Spectrum of the Aurora Australis.</i></h4> + + <div class="sidenote">Captain + Maclear’s + spectra of + Aurora Australis.</div> + + <p>Captain Maclear, on examining the streamer seen by him Feb. 9th, 1874 + (<i>antè</i>, p. 27), with the spectroscope, found three prominent lines in the yellow-green, + green, and blue or purple, but not the red line. In the Aurora of + March 3rd, 1874 (p. 27), he could trace four lines, three bright and one rather + faint. They must have been exceedingly bright to show so plainly in full-moon + light.</p> + + <div class="sidenote">Instrument + used, and + mode of + registering + lines.</div> + + <p>The spectroscope used was a Grubb single-prism with long collimator. + A needle-point in the eyepiece marked the position of the lines; and a corresponding + needle-point, carried on a frame by a screw movement in concord + with the point of the eyepiece, scratched the lines on a plate of blackened + glass. Two plates were taken. On the first were scratched the auroral + lines and the solar lines as seen in the moonlight; on the second plate were + scratched the auroral lines, the Solar lines from the moon, and the carbon + lines in a spirit-lamp.</p> + + <div class="sidenote">Copies of + the two + spectra obtained. Discrepancy + in the spectra. Remarks on + the spectra.</div> + + <p>The next morning the solar lines were verified in sunlight. I subjoin + (Plate XI. fig. 3) copies of the two spectra as printed in ‘Nature,’ the auroral + lines being marked A, the solar lines by the usual designating letters, and + the carbon by <i>Car</i>. To these spectra I have added for comparison Dr. Vogel’s + spectrum of the Aurora Borealis. Captain Maclear could not account for the + different positions of the auroral lines in the two plates; for the prism, as far + as he was aware, was not moved during the observations. As the solar lines + are indicated in the same place in both spectra, the case would seem one of + actual change of position of the auroral lines during observation. A comparison + of the two spectra gives the impression that the lower one is the same + as the upper, except that the dispersion is greater, the lines remaining relatively + in position. One does not, however, see how the dispersion could have + so varied in a single-prism instrument, and the position of the solar lines is + adverse to such an explanation.</p> + + <p>There is a suspicion that Auroræ are not always identical in position of + some of the lines; but the line in the green (considerably out of place in the + lower Australis spectrum) has always, within small limits, the same position. + It will be noticed how much further the Australis spectrum runs into the + violet than Vogel’s Borealis, the latter having no lines much beyond F.</p> + + <p>The faint line (No. 2) mentioned by Captain Maclear possibly corresponds + with Dr. Vogel’s band. The absence of the four lines of the Aurora Borealis + in the green part of the spectrum of the Australis is peculiar; and in this + respect, too, the two Australis spectra agree.</p> + + <div class="sidenote">Comparison + of the lines.</div> + + <p>The nearest approaches to Captain Maclear’s lines (of the upper spectrum) + which I can find are:—</p> + + <table summary="The nearest approaches to Captain Maclear’s lines (of the upper spectrum)"> + <tr> + <th>Line</th> + <th>Corresponding line.</th> + </tr> + <tr> + <td class="tdr">1.</td> + <td>5567, Ã…ngström.</td> + </tr> + <tr> + <td class="tdr">2.</td> + <td>(The faint line.) Vogel’s band, 4694-4629.</td> + </tr> + <tr> + <td class="tdr">3.</td> + <td>I find no approximately corresponding line.</td> + </tr> + <tr> + <td class="tdr">4.</td> + <td>4350, Alvan Clarke.</td> + </tr> + </table> + + <p class="noindent">But the comparisons are not by any means close. Further observations of the + Australis spectrum are very desirable.</p> + + <h4 id="chap-10-6"><i>Prof. Piazzi Smyth’s Aurora-Spectra.</i></h4> + + <div class="sidenote">Prof. Piazzi + Smyth’s + chemical + and auroral + spectra.</div> + + <p>Prof. Piazzi Smyth, in volume xiv. of the ‘Edinburgh Astronomical Observations,’ + 1870-77, has compared simultaneously the Aurora-spectrum with + the sets of bright lines seen in the blue base of flame—the lines of potassium, + lithium, sodium, thallium, and indium being also introduced for comparison. + The spectra are drawn as seen under small dispersion, and will prove most + useful in cases where an Aurora is not bright enough to admit of the lines + being measured by micrometer, and the eye and comparison spectrum are + obliged to be resorted to.</p> + + <figure class="plate" id="plate12"> + <!-- <img src="images/plate12.jpg" /> --> + <figcaption></figcaption> + </figure> + + <h4 id="chap-10-7"><i>Author’s Catalogue of the Auroral Lines.</i></h4> + + <p class="center">(See Plate XII.)</p> + + <p>1. W.L. 6297, Vogel. Very bright stripe; first noticed by Zöllner. Seen + only in red Auroræ; stands out on a dark ground, without other lines near it. + Character of line sharp and well defined; varies in colour from dusky red to + bright crimson. Intensity, Herschel, 0 to 4 or 8. According to same, position + coincident with atmospheric absorption-group “<i>a</i>†in solar spectrum (between + C and D). I confirm this position according to my scale of solar lines, and a + drawing of the coincidence (in which, and in Plate XII., the absorption-lines + are drawn too dark) is given on Plate XIII. fig. 2. Herschel says this line + coincides with a red band in the negative glow-discharge, but its identity is + doubtful. Its isolation and want of adjacent lines seem to separate it from + the air-spectrum and gas-spectra in general. At the appearance of this line, + 5569 (No. 2) becomes noticeably fainter. When this line is bright, 5189 + (No. 5) is bright also (Vogel).</p> + + <p>If we propose to assign to this line, as well as to 5569, a phosphorescent + origin, it would be strongly confirmatory of such a theory (in connexion with + the phosphoretted-hydrogen spectrum) to find it brighten at low temperatures.</p> + + <p><i>Note.</i>—Sir John Franklin says, in his ‘Polar Expeditions,’ that a low state of + temperature is favourable for the production of brilliant coruscations. It was + seldom witnessed that the Auroræ were much agitated, or that the prismatic + tints were very apparent, when the temperature was above zero.</p> + + <p>2. Line in the yellow-green. Brightest of all lines in the Aurora-spectrum. + W.L. 5567, Ã…ngström; 5569, Vogel. Intensity 25, Herschel. To me more + pale green than yellow, sometimes flickering and changing in brightness + (Herschel and Capron). Seen in all Auroræ usually sharp and bright, but + Procter has once recorded it nebulous. Its character as to width, sharpness, + and intensity, if carefully observed, might indicate height and structure of + Aurora. Becomes noticeably fainter at appearance of red line (Vogel). + Found by me to correspond in position with a faint atmospheric absorption-band + (see Plate XIII. fig. 2). According to Ã…ngström and Herschel, arising + from a phosphorescent and fluorescent light, emitted when air is subjected to + the action of electrical discharge.</p> + + <p>3. Line in green near last. W.L. 5390. An extremely faint and unreliable + observation (Vogel). Seen only by him, unless Alvan Clarke’s 5320 (coronal?) + be the same.</p> + + <p>4. Line in green-blue. W.L. 5233, moderately bright (Vogel); 5200, Winlock. + Intensity, 2 or 0? to 6, Herschel. Coincides with line in the negative + glow according to same. Frequently observed.</p> + + <p>5. Line in green-blue. W.L. 5189. This line is very bright when the red + line appears at the same time; otherwise equal in brilliancy with No. 3 (Vogel); + Winlock, 5200. Not so frequently observed as No. 3. Barker gives a band + extending from 5330 to 5200. Intensity of 5189, 0 to 8, Herschel, who considers + it coincident with a constant strong line in the spark-discharge.</p> + + <p>6. Line in blue. W.L. 5004. Very bright line, Vogel; 5020, Barker + (coronal?). Intensity 2 or 0? to 8, Herschel. Coincides with line of nitrogen + in the nebulæ according to same. Barker gives a band extending from 5050 + to 4990.</p> + + <p>7. Line in the blue not found by Vogel in Aurora, April 9th, 1871. W.L. + 4850, Alvan Clarke; 4820, Backhouse and Barker. Intensity, Herschel, of + 4820-4870, 0 to 4? Herschel suspects this and No. 4 to be seen only in + Auroral streamers of low elevation. Barker gives a band extending from + 4930 to 4850.</p> + + <p>8. 4694, 4663, 4629. Broad band of light, somewhat less bright in the + middle; very faint in those parts of the Aurora in which the red line appears + (Vogel). Intensity 3-6 (Herschel). A double band, consisting of two lines, + the first rather more frequently noted than the second in Auroral spectra, + agrees well in position with the principal band in the negative glow-spectrum + (same). Barker gives a band extending from 4740 to 4670; Backhouse and + Winlock give a line at 4640, situate within the same.</p> + + <p>9. There seems a good deal of confusion about a fairly bright line (intensity + 0-6, Herschel) seen in most Auroræ (not, however, by Vogel, April 9th, 1871), + and situate somewhere near G in the solar spectrum. Alvan Clarke places it + at 4350, on the less refrangible side of G; Backhouse and Barker at or very + near to G; while Lemström and others position it on the more refrangible + side of G. Accurate observations, for which a quartz spectroscope might be + useful, are much wanted. Herschel makes this line, at 4285, correspond with + a strong band in the violet in the negative glow-spectrum.</p> + + <p>Herschel also refers to an apparently additional line near the hydrogen-line, + or between G and Hâ‚, in the solar spectrum, as mentioned once by Lemström + at Helsingfors. I am not aware of any other observation of this line, + which must be considerably beyond that at or near G, and would probably + be difficult to detect, except in instruments specially adapted for examination + of the violet end of the spectrum.</p> + + <h4 id="chap-10-8"><i>Theories in relation to the Aurora and its Spectrum.</i></h4> + + <span class="sidenote">Lemström’s.</span> + + <p>Lemström (1):—That the Polar light is caused by an electric current passing + from the upper rarefied layers of the air to the earth, producing light-phenomena + that do not arise in the denser layers of the air. (2) That there are + nine rays (lines or bands) in the Aurora-spectrum, which in all probability + agree with lines which belong to the gases of the air. (3) That the Aurora-spectrum + can be referred to three distinct types, which depend on the + character of the discharge.</p> + + <p></p> + + <span class="sidenote">Vogel’s.</span> + + <p>Dr. Vogel:—(1) That the Auroræ are electric discharges in rarefied-air strata + of very considerable thickness. (2) That the Aurora-spectrum is a modification + of the air-spectrum, involving the question of alteration of the spectrum + by conditions of temperature and pressure.</p> + + <span class="sidenote">Ã…ngström’s.</span> + + <p>Ã…ngström:—(1) seems to adopt the hypothesis that the Aurora has its final + cause in electrical discharges in the upper strata of the atmosphere, and that + these, whether disruptional or continuous, take place sometimes on the outer + boundary of the atmosphere, and sometimes near the surface of the earth.</p> + + <p>(2) That the Aurora has two different spectra.</p> + + <p>(3) That the green line is due to fluorescence or phosphorescence, and that + there is no need to resort to Dr. Vogel’s variability of gas-spectra according + to circumstances of pressure and temperature.</p> + + <p>(4) That an agreement exists between the lines of the Aurora (except the + red and green before mentioned) and the lines or bands of the violet light + which proceed from the negative pole in dry air.</p> + + <div class="sidenote">Zöllner’s + remark as to + temperature + of Aurora + and character + of spectrum.</div> + + <p>Zöllner has pointed out that the temperature of the incandescent gas of the + Aurora must be exceedingly low, comparatively, and concludes that the + spectrum does not correspond with any known spectrum of the atmospheric + gases—only because, though a spectrum of our atmosphere, it is one of + another order, and one which we cannot produce artificially.</p> + + </section> + + <!-- Chapitre 11_________________________________________________________--> + <section class="chapter" id="chapter-11"> + <h3 class="titlechapter" id="chap-11">The comparison of some Tube and other Spectra with the Spectrum of the Aurora</h3> + <p class="shorter">The comparison of some Tube and other Spectra</p> + + <p class="center">[In part from an Article in the ‘Philosophical Magazine’ for April 1875.]</p> + + <div class="sidenote">Testing + Ã…ngström’s + Aurora + theory. Battery and + spectroscope + described. Vogel’s spectrum + selected + for + comparison.</div> + + <p>In order to test Professor Ã…ngström’s theory of the Aurora, referred to in the + last Chapter, in an experimental way, I examined, in the winter of 1874, some + tube and other spectra, not only for line-positions, but also for general resemblance + to an Aurora-spectrum. It did not seem desirable to use powerful + currents. A ½-inch-spark coil, worked by a quart bichromate-cell, was found + sufficient to illuminate the tubes steadily. The spectroscope used was one + made for me by Mr. Browning specifically for Auroral purposes, and of the + direct-vision form, being the same instrument as is described <i>antè</i>, p. 91, and + figured in Plate X. fig. 1. The micrometer was the diaphragm one, also before + described and figured on same Plate, figs. 2, 3, and 4. I selected Dr. Vogel’s + spectrum for comparison, it being, so far as I am aware, the most accurately + mapped, with regard to wave-length, at one observation, of any Auroral spectrum. + It seemed an unsafe plan to attempt to obtain an average Aurora by + comparison of different observations made at various times by different observers + with all sorts of instruments—the difficulty, too, being increased by + the suspicion that the spectrum itself at times varies in number and position + as well as intensity of its lines.</p> + + <div class="sidenote">Central part + only of spectrum + mapped.</div> + + <p>In most cases the central part of the spectrum only (corresponding to the + central lines of the Aurora) was mapped, the red line in the Aurora not being + found to correspond with any prominent line in the gas-spectra examined, + and the Auroral line near solar G being so indefinitely fixed as to render + comparison almost valueless. (See Plate XIII. fig. 1.)</p> + + <p>Dr. Vogel’s spectrum does not comprise the line near G; but I have added + this (in an approximate place only) in order to complete the set of lines. For + drawing of Dr. Vogel’s spectrum, with its scales attached, see Plate XIII.</p> + + <figure class="plate" id="plate13"> + <!-- <img src="images/plate13.jpg" /> --> + <figcaption></figcaption> + </figure> + + <h4 id="chap-11-1"><i>Hydrogen-tube.</i></h4> + + <div class="sidenote">Hydrogen-tube. Colour of + glow varied + with intensity + of current.</div> + + <p>This tube was one of Geissler’s and of rather small calibre. On illumination + the wide ends were easily lighted with a silver-grey glow, having a + considerable amount of stratification. The capillary part glowed brilliantly + with silver-white, bright green, and crimson light, according to the intensity of + the current. With the commutator slowly working, white running into green + and bright green were the main features of the thread of light; on the + current passing more rapidly, the capillary thread became of an intense + crimson, at the same time apparently increasing in diameter (an effect probably + due to irradiation).</p> + + <p></p> + + <div class="sidenote">Spectrum + described.</div> + + <p>The spectrum was very brilliant, consisting of the three bright lines + usually distinguished as Hα, Hβ, and Hγ, and a number of shaded bands + and fainter lines between these, with a bright continuous spectrum as a background + to the whole.</p> + + <div class="sidenote">Lines α, β, + and γ varied + in intensity + with colour + as seen by + eye. Fainter lines + or bands described.</div> + + <p>The lines Hα, Hβ, and Hγ were found to vary in intensity with the + current, and in accordance with the colour of the light as seen by the eye—a + fact, as I think, not without bearing on the question of the Aurora, the varying + tints of which are so well known. The fainter lines or bands were mostly + stripes of pretty equal intensity throughout, and all about the width of the + Hβ line. I did not trace any marked degrading on either side of the lines, + though the edges were not uniformly so sharp as Hα and Hβ. Some of the + lines were found coincident in position with lines of the air-spectrum.</p> + + <div class="sidenote">Purity of + subsidiary + lines questioned.</div> + + <p>It is a question whether these subsidiary lines are hydrogen, or are due to + some tube impurity. A photograph I have taken of this tube-spectrum + shows 17 lines in the part of the spectrum between F and Hâ‚‚, some of which + are repeated in the hydrocarbon-tube spectra.</p> + + <div class="sidenote">Coincidence + of lines with + Aurora-spectrum.</div> + + <p>No principal line, and one subsidiary line only, actually coincide with the + Aurora-spectrum, this last being that to which Dr. Vogel assigns an identical + wave-length, viz. 5189. Other of the subsidiary lines, however, fall somewhat + near the Aurora-lines 5569, 5390, 5233, and 5004, two faint lines also + falling within the band 4694 to 4629.</p> + + <div class="sidenote">Comparison + of the lines.</div> + + <p>The lines (adopting Dr. Vogel’s wave-lengths for the H lines) were, when + compared, as under:—</p> + + <table summary="Comparison of the lines"> + <tr> + <td>Aurora</td> + <td class="tdr">5569</td> + <td class="tdr">5390</td> + <td class="tdr">5233</td> + <td class="tdr">5189</td> + <td class="tdr">5004</td> + <td class="center">4694<br />to<br />4629</td> + <td>band.</td> + </tr> + <tr> + <td>Hydrogen</td> + <td class="tdr">5555</td> + <td class="tdr">5422</td> + <td class="center">...</td> + <td class="tdr">5189</td> + <td class="tdr">5008</td> + <td class="center">4632</td> + <td></td> + </tr> + </table> + + <p>I remarked that a line (5596) described by Dr. Vogel as “very bright†+ in his H spectrum does not appear in my tube, though in most other respects + our H spectra agree.</p> + + <div class="sidenote">Effect of distance + on the + spectrum.</div> + + <p>I thought this tube afforded a good opportunity for testing the effect of + distance upon the spectrum. The slit was made rather fine. At 6 inches + distance from it the line α in the blue-green (F solar) was very bright. The + lines marked β, γ, δ, ε, and ζ also survived, but were faint. At 12 inches + from the slit α and γ were alone seen, and at 24 inches α stood by itself + upon a dark ground. I also noticed that the red and yellow parts of the + spectrum first lost their light on the tube being withdrawn from the slit; + and this appeared to account for β disappearing while γ survived. For + drawing of the hydrogen-tube spectrum see Plate XIV. spectrum 1.</p> + + <p>The question of effect of distance upon the spectroscopic appearance of a + glowing light, as tested for this and other tubes, seems an important one. It + may possibly account for the generally faint aspect of the lines in the more + refrangible part of the Auroral spectrum.</p> + + <figure class="plate" id="plate14"> + <!-- <img src="images/plate14.jpg" /> --> + <figcaption></figcaption> + </figure> + + <h4 id="chap-11-2"><i>Carbon- and Oxygen-tubes.</i></h4> + + <div class="sidenote">Carbon- and + oxygen-tubes. Tubes described. Carbon-tubes + lighted + up. Spectra of + the carbon-tubes + described.</div> + + <p>The following tube-observations were taken together, because my friend + Mr. Henry R. Procter (to whom I am indebted for many profitable hints and + suggestions in Auroral work) was disposed to regard the spectra found in the + carbon-tubes and in those marked “O†as identical, suggesting that pure O, + with the ordinary non-intensified discharge, gives only a continuous spectrum; + and that the O tubes are in fact generally lighted up by a carbon-spectrum, + as the result of impurity from accidental causes. The tubes examined for the + purpose of comparison were as follows:—A coal-gas tube, a tube marked + “C.A.,†three O tubes (two of, I believe, London make, and the third from + Geissler), and an OHâ‚‚ tube, also from Geissler. The carbon-tubes were both + brilliantly and steadily lighted by the current. The C.A. tube glowed with + a peculiar silvery-grey green light in the capillary part, and with a grey glow, + considerably stratified, in the bulbs. The coal-gas tube illumination was + whiter and still more brilliant than the C.A., and with even finer stratification + in the bulbs. The spectra of both tubes were conspicuous for the same + three well-known principal bright lines or bands in the yellow, green, and + blue (with one fainter in the violet), all shading off towards the violet, and + in both cases with fainter intervening bands or lines. These last bands or + lines only partially coincided when the two tubes were compared.</p> + + <p>The spectra in both cases were rich and glowing, with a certain amount + of continuous spectrum between the lines; and the three principal bands + or lines showed well and distinctly their respective place-colours.</p> + + <p></p> + + <div class="sidenote">Tubes tested + for distance.</div> + + <p><i>Tubes tested for distance.</i>—In the case of the C.A. tube, at 18 inches from + the slit the continuous spectrum and fainter lines disappeared, while the + four principal lines still shone out, that in the green being the strongest. At + 24 inches the same lines were still visible, though somewhat faintly.</p> + + <p>In the case of the coal-gas tube, at 24 inches the whole spectrum was + quite brilliant, the four principal lines being very bright and even preserving + their distinctive colours. The H line, near the line or band in the + blue, was also plainly seen.</p> + + <div class="sidenote">O tubes + lighted up.</div> + + <p>The O tubes, when treated by the same current as the carbon-tubes, were + found to be all three identical in general features. The discharge lighted up + each of the tubes feebly and somewhat intermittently. Grey in the bulbs + and a faint but decidedly pinkish white in the capillary part were the distinguishing + light colours; while nothing could be more marked than the difference + in brilliancy between these and the preceding carbon-tubes.</p> + + <div class="sidenote">OHâ‚‚ tubes + lighted up. O tubes + spectra described.</div> + + <p>The OHâ‚‚ tube presented very much the same character; but the discharge + occasionally varied from a pinkish white to a yellow colour, somewhat like + that which artists call brown-pink, and reminding one of the “golden rays†+ in certain Auroræ. These O spectra presented, in common with the carbon-tubes, + three principal bright lines or bands in the yellow, green, and blue, + with a fainter one in the violet, all shading off towards the violet. The bands, + however, showed but very little trace of local colour, and the whole spectrum + had a faint and washed-out look, very different from the carbon-spectra. (I + certainly, by a little management, subsequently succeeded in getting the + same look to the C.A. spectrum; but it was only by removing the tube to + some distance from the slit, and thus depriving the spectrum of very much of + its brightness.) The hydrogen line (solar F) was bright, more so than any of + the O lines.</p> + + <p>The intensity of the three principal lines seemed to me to run in the + following order:—</p> + + <table summary="Intensity"> + <tr> + <th></th> + <th>Yellow.</th> + <th>Green.</th> + <th>Blue.</th> + </tr> + <tr> + <td>Coal-gas</td> + <td class="center">β</td> + <td class="center">α</td> + <td class="center">γ</td> + </tr> + <tr> + <td>Oxygen</td> + <td class="center">γ</td> + <td class="center">α</td> + <td class="center">β</td> + </tr> + </table> + + <p class="noindent">Between the lines γ and α in the Geissler O tube I found a rather bright + line, which I shall have occasion to refer to hereafter.</p> + + <p>At 12 inches distance from the slit the O spectrum lost nearly all its light; + the H line, and the three lines γ, α, and β, alone faintly remaining, α being + decidedly the brightest. At 24 inches no spectrum at all was to be seen.</p> + + <p></p> + + <div class="sidenote">Comparison + of spectra + of coal-gas + and O tubes.</div> + + <p>I carefully compared together the three principal lines of the two spectra + of coal-gas and O by means of:—</p> + + <p>1st, the photographed micrometer before described;</p> + + <p>2nd, a comparison-prism on the slit plate;</p> + + <p>3rd, a piece of very fine brass foil cut as a pointer and fixed in the focus + of a positive eyepiece.</p> + + <p>The lines or bands in both tubes were found to be slightly nebulous + towards the less-refrangible end (where they were measured), and the O tube + was not bright under a moderately high power (positive eyepiece). Subject + to these remarks, the three principal lines in both tubes were found to correspond + in position within the limits of my instrument. The spectra did not, + however, I am bound to say, <i>look</i> alike.</p> + + <div class="sidenote">Dr. Vogel’s + O spectrum + reduced and + compared.</div> + + <p>Puzzled by these observations, it then occurred to me to reduce Dr. Vogel’s + spectrum of O, given in his memoir, to the same scale with my own. This + I did independently, and I then compared the result with my own spectrum + as mapped out. From the comparison, I judge that if my O tubes, one and + all, showed a carbon-spectrum, the learned Doctor’s tube must have been + subject to a similar infirmity, as the tubes all agreed in main features.</p> + + <p>There is, however, one point to which I desire to draw attention, which is + this, that common to both the Doctor’s and my own Geissler spectrum + I found the before-mentioned rather bright line between γ and α. This + line I found no equivalent for in either of the carbon-tubes. For spectra + of coal-gas and oxygen-tubes, see Plate XIV. spectra 2, 3, & 4.</p> + + <div class="sidenote">Tube- and + flame-spectra + of carbon + do not + correspond.</div> + + <p>In comparing the spectra, it should be remembered that the tube- and + flame-spectra of carbon do not correspond. Compare, for instance, the + spectrum of coal-gas or COâ‚‚ in tube, and the well-known lines or bands in + the blue base of a candle-flame. The sharper edge of the yellow line or + band of the carbon-tubes will be found about midway between the two bright + yellow candle-lines or bands. The first of the very beautiful group of lines + or bands in the green in the candle-flame falls considerably behind the + sharper edge of the green line or band in the tube, while the third bright + band in the tube, alone of the three, corresponds with a very faint band in + the candle-flame. A line or band in the violet in the tube-spectrum finds no + equivalent in the candle-spectrum. For comparison of the carbon-tube and + flame spectra (the principal lines of the tube being alone shown), see Plate + XVI. spectra 6 & 7.</p> + + <div class="sidenote">Prof. Piazzi + Smyth’s + measurements + of + the components + of + the citron-band + in a + coal-gas + flame.</div> + + <p><i>Note.</i>—Prof. Piazzi Smyth has been good enough, at my instance, to + measure the components of the citron band of the carbo-hydrogen spectrum + (near Ã…ngström’s Aurora-line), as seen in a coal-gas blowpipe-flame urged + with common air.</p> + + <p>The spectroscope used had prisms giving 22° of dispersion between A and H, + and the observing telescope magnified 10 times. The following is a table + of the results communicated to me by the Professor:—</p> + + <table summary="Results of the experiment"> + <tr> + <th></th> + <th></th> + <th>Intensity.</th> + <th>Reading of<br />Micrometer.</th> + </tr> + <tr> + <td colspan="2">Reference line, lithium β</td> + <td class="tdr">4</td> + <td class="tdr">16·55</td> + </tr> + <tr> + <td colspan="2"><span class="ditto3">â€</span> sodium, α1</td> + <td class="tdr">10</td> + <td class="tdr">18·45</td> + </tr> + <tr> + <td colspan="2"><span class="ditto3">â€</span> <span class="ditto2">â€</span> α2</td> + <td class="tdr">10</td> + <td class="tdr">18·51</td> + </tr> + <tr> + <td class="center" colspan="4">Citron band. Carbo-hydrogen.</td> + </tr> + <tr> + <td class="tdr">Line 1,</td> + <td>exquisitely clear</td> + <td class="tdr">6</td> + <td class="tdr">21·28</td> + </tr> + <tr> + <td class="tdr">2,</td> + <td><span class="ditto2">â€</span></td> + <td class="tdr">5</td> + <td class="tdr">21·88</td> + </tr> + <tr> + <td class="tdr">3,</td> + <td><span class="ditto2">â€</span></td> + <td class="tdr">3</td> + <td class="tdr">22·44</td> + </tr> + <tr> + <td class="tdr">4,</td> + <td>faint but clear</td> + <td class="tdr">2</td> + <td class="tdr">22·95</td> + </tr> + <tr> + <td class="tdr">5,</td> + <td>faint</td> + <td class="tdr">1</td> + <td class="tdr">23·38</td> + </tr> + <tr> + <td class="tdr">6,</td> + <td>faint and hazy</td> + <td class="tdr">1</td> + <td class="tdr">23·70</td> + </tr> + <tr> + <td class="tdr">7,</td> + <td>doubtful</td> + <td class="tdr">?</td> + <td class="tdr">23·92</td> + </tr> + <tr> + <td colspan="2">Reference line, thallium α</td> + <td class="tdr">10</td> + <td class="tdr">25·08</td> + </tr> + </table> + + <div class="sidenote">Comparison + of Dr. + Vogel’s O + lines and + Dr. Watts’s + carbon-lines.</div> + + <p>From Dr. Watts’s ‘Index of Spectra’ I have extracted the three principal + carbon-tube bands or lines; and they compare with Dr. Vogel’s oxygen-tube + as under:—</p> + + <table summary="Comparison of Vogel's and Watts' lines"> + <tr> + <th></th> + <th>Yellow.</th> + <th>Green.</th> + <th>Blue.</th> + </tr> + <tr> + <td>Dr. Vogel’s oxygen-lines</td> + <td class="tdr">5603</td> + <td class="tdr">5189</td> + <td class="tdr">4829</td> + </tr> + <tr> + <td>Dr. Watts’s carbon-tube bands or lines</td> + <td class="tdr">5602</td> + <td class="tdr">5195</td> + <td class="tdr">4834</td> + </tr> + </table> + + <p>Now these wave-length differences are so small that they raise a presumption + of the possibility of the spectra being identical. On the other hand, + assuming the spectra are not identical, the comparison tells the other way, + viz. that the differences are so minute as to escape detection in instruments + of moderate dispersion. With my own instrument I found the O spectrum + too faint to increase the dispersive power with advantage. Considering the + extremely different character of the two discharges, the identity of all the + O tubes, and the presence of the line found between γ and α in the + O spectrum, I think the two spectra are independent, though I admit there + is room for doubt.</p> + + <div class="sidenote">O and COâ‚‚ + spectra photographed.</div> + + <p><i>Note.</i>—Since this examination I have photographed both spectra side by + side (see ‘Photographed Spectra,’ Plate XXXI., text, pp. 69, 70). The + pictures include, of course, only the blue and violet parts of the spectrum; + but they are widely different in aspect, and show that, photographically at + least, in this part of the spectrum there is a complete want of identity. + Subsequent investigations, however, by Schuster and others (detailed later in + this Chapter), go to establish that the principal lines shown in mine and + Dr. Vogel’s tubes were due to (probably hydrocarbon) impurity. The exception + is the single line common to mine and Dr. Vogel’s tubes, but absent + from the coal-gas spectrum. This line proves to be oxygen. Compare + oxygen-tube spectra (Plate XIV. spectra 3 and 4) with Schuster’s oxygen-tube + spectrum (Plate XVIII. fig. 15). The line in question is found identical in + the three tubes.</p> + + <p>The tube OHâ‚‚ was found to give the principal lines of the O and H spectra + combined on a faint continuous spectrum.</p> + + <h4 id="chap-11-3"><i>Geissler Mercury-tube</i> (Plate X. fig. 7) <i>and Barometer + Mercurial vacuum</i>.</h4> + + <div class="sidenote">Mercury- + and barometer-tubes + examined. Mercury-tube + described. Barometer-tube.</div> + + <p>I next examined two vacuum-tubes of an entirely different character. The + one was a tube from Geissler of stout glass, some fifteen inches long, + without electrodes, and an inch across. Within this tube was a second of + uranium glass, with bulbs blown in it. In contact with both tubes a quantity + of fluid mercury ran loose (Plate X. fig. 7). Upon shaking this tube with + the hand brilliant flashes of blue-white light, like summer lightning, flashed + out. These were discernible (though faintly) even in daylight. The fine + terminal wires of the coil being wrapped round each end of this tube, when + the current passed, a bright and white induced discharge, with a considerable + amount of stratification, was seen in the tube. The other tube was that of a + mercurial siphon-barometer. This being placed in a stand, one terminal + wire was placed in the mercury in the short leg of the siphon, while the other + terminal was made into a little coil and placed on the upper closed extremity + of the barometer-tube. On passing the current, the entire short space above + the mercury was filled with a grey-white light, not stratified, but showing a + conspicuous bright ring just above the level of the mercury.</p> + + <div class="sidenote">Spectrum + of both + these tubes + described.</div> + + <p>Both these tubes, when examined with the spectroscope, showed four + bright rather uniform bands (the central one being the brightest), which I + assigned to the carbon-spectra (see Plate XIV. spectra 5 and 6).</p> + + <p>The Geissler tube was probably filled designedly with coal-gas. In the + case of the barometer-tube the spectrum must be assumed to be the result of + some carbon impurity.</p> + + <p></p> + + <p>No lines of mercury could be detected in either case.</p> + + <p>An effort was made to examine the light of the Geissler mercury-tube as + excited by motion only, but the spectrum could not be kept in the field; + the four lines were, however, seen to flash out as the light passed before + the slit.</p> + + <figure class="plate" id="plate15"> + <!-- <img src="images/plate15.jpg" /> --> + <figcaption></figcaption> + </figure> + + <h4 id="chap-11-4"><i>Air-tubes.</i></h4> + + <div class="sidenote">Air-tube + illuminated.</div> + + <p>The first tube I examined was an ordinary Geissler tube charged with + rarefied air. The bulbs, on passing the discharge, were filled with the well-known + rose-tinged light like to the Aurora-streams. This in the capillary + part was condensed into a brighter and whiter thread, while the platinum + wire of the negative pole was surrounded by its characteristic mauve or + violet glow.</p> + + <div class="sidenote">Spectrum + described.</div> + + <p>The spectrum, even with a weak current, was quite bright, and consisted + mainly of the nitrogen-lines and bands, with the lines Hα, Hβ, and Hγ, and + some of the intermediate lines of the H tube.</p> + + <p>The double line α was undoubtedly the brightest in the spectrum when + taken in the capillary part of the tube. After this followed β, and then γ(H), + δ, and ε. I was, however, uncertain as to the relative brightness of the last + three, and marked their intensities with hesitation. I tested them several + times independently with differing results, and suspected them of variability + with the current.</p> + + <p>The rest of the lines were very much of the same intensity. (For drawing + of spectrum of air-tube in capillary part see Plate XV. spectrum 1.)</p> + + <h4 id="chap-11-5"><i>Violet [negative] Pole, same tube.</i></h4> + + <div class="sidenote">Violet + (negative) + pole: spectrum + described.</div> + + <p>I next turned my attention to the violet or negative-pole glow; and here a + remarkable change took place in the spectrum, not only in the position of + the principal bands or lines, but in their relative intensity (see Plate XV. + spectrum 2).</p> + + <p>The double line α in the capillary part was replaced in the violet glow by + a shaded band of second intensity β, the sharp edge of which was extended + towards the red, and formed (except for some faint indications) the limit of + the spectrum in that direction. The somewhat faint line next α in the + capillary tube had its faint representative in the violet pole; but the next two + lines (capillary) were represented by the bright band γ in the violet pole + lying in a position between them. Next γ in the violet pole came three + faint lines, representing β, γ, and δ in the capillary spectrum; and then the + bright band α, which was the brightest of the violet-pole group, and represented + a medium-intensity band in the capillary spectrum. After this was a + faint band near α, representing two rather bright ones in the capillary + spectrum, this last being succeeded by other bands in the violet. α, β, and γ + in the violet pole were examined carefully for relative brightness, and were, + I believe, correctly marked.</p> + + <h4 id="chap-11-6"><i>Red [positive] Pole.</i></h4> + + <div class="sidenote">Red (positive) + pole: + spectrum + described.</div> + + <p>The red [positive] pole was next examined, but presented no peculiar + features. It appeared as a fainter representation of the capillary air-spectrum, + with some few lines or bands absent, and (as will be seen after) was also a fair + representation of a diffused air-spectrum (see Plate XV. spectrum 3).</p> + + <p>Examined for comparative intensity, at 24 inches from the slit, the whole + capillary air-spectrum showed faintly. The marked lines in the centre of the + spectrum generally retained their prominence; but after α I judged ε next in + brightness. On examining the violet pole at 12 inches from the slit, the + whole spectrum was faint and the bands α and β were alone distinctly seen.</p> + + <h4 id="chap-11-7"><i>Aurora (air)-tube.</i> (Plate XV. spectrum 4.)</h4> + + <div class="sidenote">Aurora-tube: + discharge + described. Spectrum + described.</div> + + <p>Next to the Geissler air-tube I examined an “auroraâ€-tube, about + 15 inches long and 1¼ inch across, with platinum terminals, and of the same + diameter throughout (Plate X. fig. 8). The discharge was of a rosy-red + colour, and the long flickering stream from pole to pole certainly much + reminded one optically of an auroral streamer. Spectroscopically examined, + the discharge presented a faint banded air-spectrum similar to that of the + positive pole (see Plate XV. spectrum 4); but the relative intensity of the + lines was somewhat altered, while a very bright line in the green (seen also in + the tube next described) was characteristic of the spectrum, and in this respect + distinguished it from the ordinary air-spectrum.</p> + + <h4 id="chap-11-8"><i>Phosphorescent tube.</i></h4> + + <div class="sidenote">Phosphorescent + tube + described. Discharge + described. Spectrum + described.</div> + + <p>Following this last tube I examined one purchased as “phosphorescent.†+ It was rather short (6½ inches), of equal calibre, and about the size of the + bulb of a Geissler tube. It was filled with a white powder (probably one of + the Becquerel compounds). On passing the current between the electrodes, + a bright rose-coloured stream appeared; and wherever this was in contact with + the powder, the tube glowed with a brilliant green light. On stopping the + current, the tube still continued to shine, but with a fainter green glow, which + gave only a continuous spectrum. When examined in full glow, the tube-spectrum + was also in the main continuous and of a green tinge; but upon it + were bright lines in the blue and violet portions of the spectrum, while in + the red, yellow, and green a faint but distinct air-spectrum was seen; and + with this was also found the same bright line in the green which distinguished + the “auroraâ€-tube. [Five out of six of the lines in the blue and + violet will be also found in Schuster’s oxygen-tube, violet pole (Plate XVIII. + fig. 15). The air-spectrum probably arose from impurity.]</p> + + <figure class="plate" id="plate16"> + <!-- <img src="images/plate16.jpg" /> --> + <figcaption></figcaption> + </figure> + + <p></p> + + <h4 id="chap-11-9"><i>Spark in Air.</i></h4> + + <div class="sidenote">Spark in air: + spectrum + described.</div> + + <p>I next took a ½-inch spark in air between platinum terminals (see Plate XV. + spectrum 6). The principal lines in this spectrum were the line α (by far the + brightest), corresponding to γ in the violet pole; next was β, a line in the + yellow, not appearing in the tube-spectrum, and then other lines of less + intensity. In the “aurora†and “phosphorescent†tubes was found, as before + mentioned, a line in the green prominent for its brightness, and, indeed, in + the “auroraâ€-tube the only one which survived when it was moved away + from the slit. This line also appeared in the spark-spectrum, but there only + of an average brightness. I examined it carefully for position in the respective + tubes; and on comparing them by means of a pointer in the eyepiece, found + it coincident with the ridge or centre of the wedge-like bright-green broad + band which is so conspicuous in the air-tube spectrum.</p> + + <p>I think this edge-like centre has actually a line coincident with the line I + refer to; but if so, its intensity little exceeds that of the band itself.</p> + + <h4 id="chap-11-10"><i>Spark over Water.</i></h4> + + <div class="sidenote">Spark over + water: + spectrum + described.</div> + + <p>To complete the set of air-experiments, I examined the same spark taken + from the surface of a small meniscus of water, placed in a glass cup upon the + lower platinum wire. In this case the air-spectrum was plainly, but not + brightly, seen at the violet end of the spectrum—the red, yellow, green, and + blue being filled with a continuous spectrum, through which some of the + air-lines faintly showed (see Plate XV. spectrum 7).</p> + + <h4 id="chap-11-11"><i>Phosphoretted-Hydrogen Flame.</i></h4> + + <div class="sidenote">Phosphoretted-hydrogen + flame.</div> + + <p>This was obtained from a hydrogen-bottle fitted with glass tubing, two or + three minute pieces of phosphorus being placed with the zinc. The flame was + of a bright yellow colour, with a cone of vivid green light in its centre.</p> + + <div class="sidenote">Spectrum + described.</div> + + <p>The spectrum was found to consist mainly of three bright bands in the + yellow, green, and green-blue respectively (see Plate XVI. spectrum 3).</p> + + <div class="sidenote">Mons. Lecoq + de Boisbaudran’s + remarks + on the + spectrum + increasing + in brilliancy + when the + flame is + cooled.</div> + + <p>The central band was very striking in its emerald-green colour, while all + the bands were remarkable as being very broad in proportion to the slit + (which, however, was not fine). The yellow band had a rich glow of colour. + My spectrum was mapped out at ordinary temperature, and I found the bands + sufficiently bright; but Mons. Lecoq de Boisbaudran, in his ‘Spectres + Lumineux’ (texte, p. 188), has described how the brilliancy of these bands is + increased when the flame is artificially cooled (<i>refroidie</i>).</p> + + <p>The idea of cooling the flame was due to M. Salet, who effected it either + by a jet of water or by an air-blast.</p> + + <p>The less refrangible bands seem the most susceptible to increase of brilliancy.</p> + + <p>Mons. Boisbaudran also makes the important remark that the relative + intensities of the bands are in such case altered, adding:—“La plus importante + de ces modifications consiste en un renforcement très-considérable de la bande + rouge δ 97·03 (W.L. 5994) qui devient vive de presque invisible qu’elle était + en l’absence du refroidissement artificiel de la flamme.â€</p> + + <p>Full details of the changes are given by M. de Boisbaudran.</p> + + <p>The bearing of these observations as connected with the variable character + of the red line in the Aurora-spectrum seems to me in the highest degree + noteworthy.</p> + + <h4 id="chap-11-12"><i>Iron-Spectrum.</i></h4> + + <span class="sidenote">Iron-spectrum.</span> + + <p>A comparison of this spectrum suggested itself, partly from the suspected + relations between the Aurora and solar corona, and partly from a consideration + of the views expressed by M. Gronemann and others in favour of the Aurora + having its origin in the fall of an incandescent meteoric powder.</p> + + <div class="sidenote">How + obtained. Spectrum + described. Mons. Lecoq + de Boisbaudran’s + spectra also + given.</div> + + <p>The spectrum was obtained from a spark taken over a solution of perchloride + of iron in a small glass cup, and was remarkable for its brightness in and + about the green region. The lines varied considerably in intensity, and with + a fine slit the principal ones were sharp, distinct, and clear. A group of three + lines (α) stood out boldly in the green as the most marked, and next to these + a group of three others more towards the violet end of the spectrum (see + Plate XVI. spectrum 4). By the side of my phosphoretted-hydrogen and + iron spectra I have placed the principal lines of Mons. Lecoq de Boisbaudran’s + same spectra (reduced to my scale), and with figures of wave-lengths for comparison + with the Aurora-spectrum (see Plate XVI. spectra 1 and 2).</p> + + <div class="sidenote">Comparison + of iron- and + Aurora-spectrum.</div> + + <p>A difficulty in comparing the iron-spectrum with that of the Aurora arises + from the large number of fine lines found in the former spectrum. In a photograph + (taken with the same prism as before described) of a small piece of + meteoric iron fused in an electric arc by the aid of 40 Grove cells, about + 154 lines are easily counted in the blue and violet parts of the spectrum. + Double this number at least would be seen with a spectroscope of moderate + dispersion in the region comprising the entire set of auroral lines.</p> + + <p></p> + + <h4 id="chap-11-13"><i>Spectrum of Mercury.</i></h4> + + <div class="sidenote">Mercury-spectrum. How + obtained.</div> + + <p>This spectrum is given as useful for comparison with the bright and + principal Aurora-line. It is easy to obtain with a small coil, the metal + being used as one electrode. The yellow lines are distinct and steady; but + the green, which is very bright, is apt to flicker as the spark moves on the + surface of the metal (see Plate XVI. spectrum 5).</p> + + <h4 id="chap-11-14"><i>The following Table was compiled for the purpose of comparing the + foregoing results with the Aurora-spectrum.</i></h4> + + <span class="sidenote">Table of coincidences.</span> + + <p><span class="smcap">Table</span> showing comparative position of Aurora-lines with the principal lines + in the examined spectra. C. means coincident within the limits of my + instrument and scale, N. near, and VN. very near.</p> + + <table summary="Table of coincidences" class="borders"> + <tr> + <th class="nw">Aurora-lines</th> + <th class="nw">6297 β.</th> + <th class="nw">5569 α.</th> + <th class="nw">5390 ζ.</th> + <th class="nw">5233 δ.</th> + <th class="nw">5180 δ.</th> + <th class="nw">5004 γ.</th> + <th>4694 to<br />4629 ε.</th> + <th class="nw">4350? ε.</th> + </tr> + <tr> + <td class="bl bb">Hydrogen-tube</td> + <td rowspan="11" class="bb">No results in the examined spectra; but see Plate XIII. fig. 2.</td> + <td class="bb">N.</td> + <td class="bb"></td> + <td class="bb">N.</td> + <td class="bb">C., same W.L.</td> + <td class="bb"></td> + <td class="bb">Band includes 2 lines.</td> + <td rowspan="11" class="bb">Too uncertain in position for comparison (see Plate XIII. fig. 1).</td> + </tr> + <tr> + <td class="bl bb">Coal-gas tube</td> + <td class="bb"></td> + <td class="bb"></td> + <td class="bb">N.</td> + <td class="bb">VN.</td> + <td class="bb"></td> + <td class="bb">Band includes 1 line.</td> + </tr> + <tr> + <td class="bl bb">Oxygen-tube</td> + <td class="bb"></td> + <td class="bb"></td> + <td class="bb"></td> + <td class="bb">VN.</td> + <td class="bb"></td> + <td class="bb"></td> + </tr> + <tr> + <td class="bl bb">Air, capillary</td> + <td class="bb">Band includes</td> + <td class="bb">Band includes</td> + <td class="bb"></td> + <td class="bb">N.</td> + <td class="bb"></td> + <td class="bb">Band includes 2 lines.</td> + </tr> + <tr> + <td class="bl bb">Air, violet-pole</td> + <td class="bb"></td> + <td class="bb"></td> + <td class="bb"></td> + <td class="bb">Band includes</td> + <td class="bb">C.</td> + <td class="bb">Band includes 1 line.</td> + </tr> + <tr> + <td class="bl bb">Air, red-pole</td> + <td class="bb" colspan="6">See Air, capillary.</td> + </tr> + <tr> + <td class="bl bb">Aurora-tube and<br />phosphorescent tube</td> + <td class="bb" colspan="6">See Air, capillary; and note bright line.</td> + </tr> + <tr> + <td class="bl bb">Air, spark</td> + <td class="bb">N.</td> + <td class="bb"></td> + <td class="bb"></td> + <td class="bb">N.</td> + <td class="bb">C.</td> + <td class="bb">Band includes 2 lines.</td> + </tr> + <tr> + <td class="bl bb">Air, spark over water</td> + <td class="bb" colspan="5">Continuous spectrum and faint air-lines.</td> + <td class="bb">Band includes 2 lines.</td> + </tr> + <tr> + <td class="bl bb">Phosphoretted hydrogen</td> + <td class="bb">N.</td> + <td class="bb">Faint band.</td> + <td class="bb">Band includes</td> + <td class="bb"></td> + <td class="bb"></td> + <td class="bb"></td> + </tr> + <tr> + <td class="bl bb">Iron</td> + <td class="bb">VN.</td> + <td class="bb">N.</td> + <td class="bb">VN.</td> + <td class="bb">VN.</td> + <td class="bb"></td> + <td class="bb"></td> + </tr> + </table> + + <p></p> + + <p>Tested by coincidence, or close proximity of lines to those of the Aurora, + we arrange the spectra in the following order:—(1) iron, (2) air-spark, + (3) hydrogen, (4) air-tube, (5) phosphoretted hydrogen, (6) carbon and oxygen.</p> + + <p>The air-tube spectrum might perhaps stand higher in the scale but for + its broad bands, which make comparison doubtful. Lines of oxygen possibly + escape detection in the Aurora from the faint character of its spectrum.</p> + + <p>The phosphorus and iron spectra are especially interesting in connexion + with Professor Nordenskiöld’s “metallic and magnetic cosmic dust in the + Polar regions†(see Phil. Mag. ser. 4, vol. xlviii. p. 546).</p> + + <div class="sidenote">Additional + Table of + compared + spectra.</div> + + <p>As an addendum to the foregoing, on Plate IX. fig. 1 will be found a + Table I have prepared, in which a type Aurora and also Vogel’s and + Barker’s Auroræ are compared with eight other spectra, viz.:—</p> + + <table summary="The spectra"> + <tr> + <td>S.</td> + <td>Solar spectrum.</td> + </tr> + <tr> + <td>N.</td> + <td>Nitrogen (air): Watts.</td> + </tr> + <tr> + <td>O.</td> + <td>Oxygen (air): Watts.</td> + </tr> + <tr> + <td>C.H.</td> + <td>Carburetted-hydrogen vacuum-tube: Watts.</td> + </tr> + <tr> + <td>C.I.</td> + <td>Carburetted-hydrogen flame: Watts.</td> + </tr> + <tr> + <td>C.C.</td> + <td>Blue base of candle-flame: Capron.</td> + </tr> + <tr> + <td>O.P.</td> + <td>Oxygen vacuum-tube: Procter.</td> + </tr> + <tr> + <td>I.</td> + <td>Iron: Watts.</td> + </tr> + </table> + + <p>The divisions and vertical lines will guide the eye in making comparison of + the spectra.</p> + + </section> + + <!-- Chapitre 12_________________________________________________________--> + <section class="chapter" id="chapter-12"> + <h3 class="titlechapter" id="chap-12">Notes on Professor Ã…ngström’s Theory of the Auroraspectrum</h3> + <p class="shorter">Notes on Professor Ã…ngström’s Theory</p> + + <p class="smaller">[The substance of these appeared in the ‘Philosophical Magazine’ for April 1875, in conjunction + with the “Comparison of the Tube and other Spectra†(Chapter XI.), but they are now, + for the sake of convenience, made a separate article.]</p> + + <div class="sidenote">Professor + Ã…ngström’s + propositions.</div> + + <p>In a contribution by the late Professor Ã…ngström to a solution of the problem + of the Aurora-spectrum (an abstract of which appeared in ‘Nature’ of + July 16, 1874), the Professor is stated, amongst other things, to have laid + down certain propositions in substance as follows:—</p> + + <div class="sidenote">That the + Aurora has + two spectra.</div> + + <p>1st. That the Aurora has two different spectra—the one comprising the + one bright line in the yellow-green only, and the other the remaining fainter + lines.</p> + + <div class="sidenote">That bright + line does not + coincide + with HCâ‚‚.</div> + + <p>2ndly. That the bright line falls within a group of hydrocarbon lines, but + does not actually coincide with any prominent line of such group, and that + Dr. Vogel’s finding this line to coincide with a not well-marked band in the + air-spectrum must be regarded as a case of accidental coincidence.</p> + + <div class="sidenote">That moisture + is <i>nil</i> + in Aurora + region.</div> + + <p>3rdly. That moisture in the region of the Aurora must be regarded as + <i>nil</i>, and that oxygen and hydrogen must alone there act as conductors of + electricity.</p> + + <div class="sidenote">Ã…ngström’s + flask-experiment + described.</div> + + <p>Professor Ã…ngström then details the examination of an exhausted dry air-flask + filled with a discharge analogous to the glow of the negative pole of a + vacuum air-tube.</p> + + <div class="sidenote">Flask-spectrum + compared + with + Aurora-spectrum.</div> + + <p>The experiment is described as follows:—“Into a flask, the bottom of + which is covered with a layer of phosphoric anhydride, the platinum wires + are introduced, and the air is pumped out to a tension of only a few millimetres. + If the inductive current of a Ruhmkorff coil be sent through the + flask, the whole flask will be filled, as it were, with a violet light, which otherwise + only proceeds from the negative pole, and from both electrodes a spectrum + is obtained composed chiefly of shaded violet bands.†The comparison of + the spectrum of this violet glow with that of the Aurora gives, according to + Ã…ngström, the following results:—</p> + + <table summary="Comparison of violet and aurora"> + <tr> + <td>Aurora-lines, wave-lengths</td> + <td class="tdr">4286</td> + <td class="tdr">4703</td> + <td class="tdr">5226</td> + </tr> + <tr> + <td>Violet light, wave-lengths</td> + <td class="tdr">4272</td> + <td class="tdr">4707</td> + <td class="tdr">5227</td> + </tr> + </table> + + <p></p> + + <p>Two weak light bands, found by Dr. Vogel at 4663 and 4629, are also + compared with other lines in the violet light 4654 and 4601; and the Professor + then concludes that it may be in general assumed that the feeble + bands of the Aurora-spectrum belong to the spectrum of the negative pole, + possibly changed more or less by additions from the banded or the line air-spectrum.</p> + + <div class="sidenote">Bright line + is due to + fluorescence + or phosphorescence.</div> + + <p>4thly. That the only probable explanation of the bright line is, that it + owes its origin to fluorescence or phosphorescence. The Professor remarks on + this point that “an electric discharge may easily be imagined which, though + in itself of feeble light, may be rich in ultra-violet light, and therefore in a + condition to cause a sufficiently strong fluorescence.†He notes also that + oxygen and some of its compounds are fluorescent.</p> + + <div class="sidenote">No need of + Dr. Vogel’s + theory of + variability.</div> + + <p>5thly. That there is no need, in order to account for the spectrum of the + Aurora, to have recourse to the “very great variability of gas-spectra according + to the varying circumstances of pressure and temperature†(Dr. Vogel’s + theory). Professor Ã…ngström does not admit such variability, and does not + admit that the way a gas may be brought to glow or burn can alter the nature + of the spectrum.</p> + + <div class="sidenote">Professor + Ã…ngström’s + conclusions + tested.</div> + + <p>In order to test some of the Professor’s conclusions in an experimental way, + I examined some tube and other spectra not only for line-positions, but also + for general resemblance to an Aurora-spectrum.</p> + + <p>These experiments are detailed in the last Chapter, and the results are + comprised in Plates XIV., XV., and XVI., in which the spectra obtained are + represented in black for white.</p> + + <div class="sidenote">Result of + examination + of the Professor’s + propositions.</div> + + <p>The result of the examination of Professor Ã…ngström’s principal propositions + seems to be this:—</p> + + <p>1st. Two Auroral spectra. I agree in this, but question whether the fainter + lines may not possibly comprise more than one spectrum.</p> + + <p>2nd. I agree also that the bright yellow-green line falls, as Professor Ã…ngström + describes, just behind the second line in the hydrocarbon yellow group + (see Plate V. fig. 7). And I find, in common with the Professor, no well-marked + or prominent line in the air-spectrum with which it accords.</p> + + <p>3rd. This may be conveniently divided into two parts, viz.:—</p> + + <p>A. The proposition that “moisture in the region of the Aurora must be + regarded as <i>nil</i>.â€</p> + + <div class="sidenote">Moisture + probably not + <i>nil</i> in the + Aurora region. Reasons for + this given. Aurora in + vapour or + mist. Frequently + near to + earth’s surface.</div> + + <p>Here I see reason to differ, since (to quote a letter of Mr. Procter’s) “the + vapour-density of OHâ‚‚ is only 9 against 14 for N and 16 for O;†and again, + “electrical or heat-repulsion may carry water-dust up to enormous heights.†+ There are, too, I think, circumstances connected with the Aurora itself which + make the assumption of moisture being <i>nil</i> in the Auroral regions untenable. + The first of these is the fact that the white arc, streamers, and floating + patches of light, found in some Auroræ, have frequently the peculiarly dense + and solid look of vapour-clouds—a circumstance with which I have been + frequently struck. Mr. Procter and others have also remarked that the + Aurora is generally formed in a sort of “mist or imperfect vapour.†The + second, that Auroræ, or portions of them, are frequently near to the earth’s + surface. Instances of this are given in the section on the Height of the + Aurora, notably the experiences of Sir W. Grove and Mr. W. Ladd.</p> + + <div class="sidenote">Coincidence + of Auroral + lines with + telluric solar + lines.</div> + + <p>On this point, too, note the peculiarities of the red line, which (and, as I + find, the green line also) are coincident with, or very close to, telluric bands or + groups of lines in the solar spectrum usually attributed to moisture. (See + Plate XIII. fig. 2.)</p> + + <div class="sidenote">Continuous + spectrum.</div> + + <p>I think we may also claim the continuous spectrum in the Aurora in + further proof of water-vapour (see Plate XV. spectrum 7). The continuous + spectrum of the Aurora is also, to my observation, more local and dense in + the spectroscope than the glow generally seen between the lines or bands + in gas-spectra.</p> + + <div class="sidenote">Violet-pole + spectrum + discussed. Most spectra + have a + general as + well as special + character.</div> + + <p>B. The question of the violet-pole spectrum. Here I make the remark + that in comparing other spectra with that of the Aurora, it is, I think, too + much the practice to trust to the coincidence (more or less perfect) of one + or perhaps two lines out of many; whereas we know by experience that + most spectra have so well-marked a general as well as special character + that, when once seen, they are recognized afterwards with the greatest ease + and without measurements. An experience and proof of this is found in a set + of “Photographed Spectra†which the Autotype Company have reproduced + for me.</p> + + <div class="sidenote">Coincidence + of one or + two lines not + sufficient to + establish + identity.</div> + + <p>Of course no two given spectra can be considered identical unless their + principal lines coincide; but, on the other hand, the coincidence of one or + two lines out of many, without other features, cannot be satisfactorily or conclusively + held to establish identity.</p> + + <div class="sidenote">Ã…ngström’s + compared + spectra.</div> + + <p>In Professor Herschel’s letter (Phil. Mag. ser. 4, vol. xlix. p. 71), Professor + Ã…ngström’s representation of the “spectrum of the glow discharge round the + negative pole of air-vacuum tubes†is given, in comparison with the Aurora-lines + and those of olefiant gas. This illustration is here introduced.</p> + + <p></p> + + <p>Ã…ngström’s representation of the Spectrum of the glow discharge round the negative pole of Air-vacuum + tubes, and its comparison with the Spectrum of the Aurora.</p> + + <div class="figcenter" style="width: 700px;"> + <!-- <img src="images/graph.jpg" width="700" height="200" alt="" /> --> + <p class="caption">Wave-lengths, in hundred-thousandths of a millimetre.</p> + </div> + + <p>It is unfortunate that in this illustration and in Professor Herschel’s paper + the wave-lengths of the Aurora-lines are not given in figures, but must be + roughly calculated from the scale. Professor Herschel speaks of Ã…ngström’s + drawing as representing a <i>normal</i> spectrum, and as derived from authentic + sources, such as Vogel, Barker, and others; but beyond this we are not + certain as to its origin.</p> + + <p>In illustration of the difficulty of constructing any thing like a general + typical Aurora-spectrum I append a Table of eight Auroral spectra taken at + hazard:—</p> + + <div class="sidenote">Table of + compared + Aurora.</div> + + <p class="center">Auroral lines and bands.</p> + + <table summary="8 auroral spectra compared" class="borders"> + <tr> + <th>Observers.</th> + <th>Red.</th> + <th colspan="2">Yellow.</th> + <th>Green.</th> + <th>Blue.</th> + <th colspan="2">Indigo.</th> + <th colspan="2">Violet.</th> + </tr> + <tr> + <td class="bl">Vogel, April 9, 1871</td> + <td>6297</td> + <td>5569</td> + <td>5390</td> + <td>5233</td> + <td>5189</td> + <td>5004</td> + <td>—</td> + <td>4694 to 4629</td> + <td>—</td> + </tr> + <tr> + <td class="bl">Barker, Nov. 9, 1871</td> + <td>6230</td> + <td>5620</td> + <td>—</td> + <td>—</td> + <td>5170</td> + <td>5020</td> + <td>4820</td> + <td>—</td> + <td>—</td> + </tr> + <tr> + <td class="bl">Barker, Oct. 14, 1873</td> + <td>6300</td> + <td>5550</td> + <td>—</td> + <td>5330 to 5200</td> + <td>—</td> + <td>5050 to 4990</td> + <td>4930 to 4850</td> + <td>4740 to 4670</td> + <td>4310</td> + </tr> + <tr> + <td class="bl nw">A. Clarke, junr., Oct. 24, 1870</td> + <td></td> + <td>5690</td> + <td>—</td> + <td>5320</td> + <td>—</td> + <td>—</td> + <td>4850</td> + <td>—</td> + <td>4350</td> + </tr> + <tr> + <td class="bl">Backhouse, 1873</td> + <td>6060</td> + <td>5660</td> + <td>—</td> + <td>—</td> + <td>5165</td> + <td>5015</td> + <td>—</td> + <td>4625</td> + <td>4305</td> + </tr> + <tr> + <td class="bl">Backhouse, Feb. 4, 1874</td> + <td>*</td> + <td>5570</td> + <td>—</td> + <td>—</td> + <td>5180</td> + <td>4980</td> + <td>4830</td> + <td>4640</td> + <td>4320</td> + </tr> + <tr> + <td class="bl">H. R. Procter, 1870</td> + <td>*</td> + <td>*</td> + <td>—</td> + <td>*</td> + <td>—</td> + <td>—</td> + <td>—</td> + <td>*</td> + <td>*</td> + </tr> + <tr> + <td class="bl bb">Lord Lindsay, 1870</td> + <td class="bb">—</td> + <td class="bb">*</td> + <td class="bb">*</td> + <td class="bb">*</td> + <td class="bb">*</td> + <td class="bb">—</td> + <td class="bb">—</td> + <td class="bb">—</td> + <td class="bb">*</td> + </tr> + </table> + + <p class="center smaller">* Mr. Procter’s and Lord Lindsay’s lines had no wave-lengths.</p> + + <div class="sidenote">Ã…ngström’s + drawing + discussed.</div> + + <p>On examining Ã…ngström’s diagram it certainly seems to me that, upon + the showing of the drawing itself, the coincidences are not very exact. All + three of the violet-pole bands appear to be less refrangible than the Aurora-lines + with which they are compared-the middle one (at 47) considerably + so, the one near E (at about 52·30) appreciably so, and the third (at 43) + slightly so.</p> + + <div class="sidenote">Diagram of + Vogel’s + Aurora and + violet-pole + spectrum.</div> + + <p>As it seemed desirable to adopt a specific Aurora-spectrum for comparison, + and to show such comparison on a somewhat larger scale than Ã…ngström’s + drawing, I prepared the diagram shown on Plate XI. fig. 1. The upper + spectrum is Vogel’s, already described and figured on Plate XIII. The lower + spectrum is that of “Air, violet pole,†Plate XV. spectrum 2, graphically + shown. I can only find one absolute coincidence in the two compared spectra + in this diagram.</p> + + <p>It should, too, I think, be borne in mind that there is a great difference + in the character of the compared spectra, whether as shown in Ã…ngström’s + drawing or mine—the bands of the violet-pole spectrum mostly degrading + towards the violet, while the lines or bands of the Aurora in no way possess + that character <span class="footnote">Ã…ngström’s drawing, in giving this character to the two Aurora-bands which are said to + correspond with violet-pole bands about 47 and 43, is incorrect, and calculated to mislead by + giving the Aurora-bands a feature corresponding to the violet-pole bands which they do not + possess. I am not aware of any Aurora-line or band which is described as distinguished by + degrading towards the violet.</span>.</p> + + <div class="sidenote">Dr. Vogel’s + violet-pole + and Aurora-lines.</div> + + <p>To assist in the foregoing violet-pole comparison I add the following Table + derived from Dr. Vogel’s memoir:—</p> + + <table summary="Vogel's table"> + <tr> + <th colspan="2">Violet-pole lines.</th> + <th colspan="2">Aurora-lines.</th> + </tr> + <tr> + <th>W.L.</th> + <th></th> + <th>W.L.</th> + <th></th> + </tr> + <tr> + <td>6100,</td> + <td rowspan="2" class="vm nw"> broad, moderately bright stripe</td> + <td rowspan="2" class="vm">6297,</td> + <td rowspan="2" class="vm">very bright stripe.</td> + </tr> + <tr> + <td>5945,</td> + </tr> + <tr class="spaced"> + <td>5459,</td> + <td rowspan="2" class="vm"> broad, moderately bright stripe </td> + <td>5569,</td> + <td>brightest line of spectrum.</td> + </tr> + <tr> + <td>5289,</td> + <td>5390,</td> + <td>extremely faint line.</td> + </tr> + <tr class="spaced"> + <td>5224,</td> + <td>very bright line</td> + <td>5233,</td> + <td>moderately bright.</td> + </tr> + <tr> + <td>5147,</td> + <td>faint line</td> + <td>5189,</td> + <td>moderately bright.</td> + </tr> + <tr> + <td>5004,</td> + <td>bright line</td> + <td>5004,</td> + <td>very bright line.</td> + </tr> + <tr> + <td>4912,</td> + <td>fainter than last.</td> + <td></td> + <td></td> + </tr> + <tr class="spaced"> + <td>4808,</td> + <td>very faint line.</td> + <td>6694,</td> + <td rowspan="3" class="vm nw">band less brilliant in the middle.</td> + </tr> + <tr> + <td>4704,</td> + <td>very intense line.</td> + <td>4663,</td> + </tr> + <tr> + <td>4646,</td> + <td>very faint line.</td> + <td>4629,</td> + </tr> + <tr class="spaced"> + <td>4569,</td> + <td>moderately bright.</td> + <td></td> + <td></td> + </tr> + <tr> + <td>4486,</td> + <td>moderately bright.</td> + <td></td> + <td></td> + </tr> + <tr> + <td>4417,</td> + <td>quite faint line.</td> + <td></td> + <td></td> + </tr> + <tr> + <td>4346,</td> + <td>moderately bright line.</td> + <td></td> + <td></td> + </tr> + <tr> + <td>4275,</td> + <td>very bright line.</td> + <td></td> + <td></td> + </tr> + </table> + + <p></p> + + <p>On examination of these figures it will be seen that 5224 and 5233 are + fairly close, and that 5004 is coincident. Beyond these there is little to + identify the spectra.</p> + + <div class="sidenote">Conclusions + arrived at + adverse to + the violet-pole + theory.</div> + + <p>As the general result of my observations and a comparison of the foregoing + spectra and tables, I see no reason for giving to the violet-pole glow + any special or distinguished place in a comparison with the Aurora, and certainly + not for assigning to it the nearly absolute monopoly of the spectrum. + It is true that the line γ in the violet-pole glow (Plate XV. spectrum 2), + which, by the way, degrades towards the red, is in close coincidence with one + of the Aurora-lines; but how are the brighter bands α and β accounted for? + These, as I have before pointed out, alone survive when the tube is placed at + a distance from the slit. It is true they are thus reduced to shaded-off lines + in lieu of bands; but the difficulty still remains, that they are conspicuous + for their absence in the Aurora-spectrum. On the whole, I cannot but + conclude that Professor Ã…ngström’s theory fails. At all events, if the violet-pole + glow-spectrum is to represent the Aurora-spectrum, it must be under + conditions different from those by which it obtains in dry-air vacuum-tubes + or flasks at ordinary temperature.</p> + + <div class="sidenote">Phosphorescence + or + fluorescence + of the yellow-green + line.</div> + + <p>4th. I feel more in accord with Professor Ã…ngström’s memoir upon the + subject of the phosphorescence or fluorescence of the bright yellow-green + Aurora-line.</p> + + <div class="sidenote">External + features of + Auroræ confirmatory + of + this.</div> + + <p>I do not notice that the Professor touches upon the external features of the + Aurora in respect of this question.</p> + + <p>October 20, 1870.—I noted the grand Auroral display of that evening, including + “streamers of opaque-white <i>phosphorescent</i> cloud very different from + the more common transparent Auroral diverging streams of light.â€</p> + + <p>February 4, 1872.—A fine display. The first signs were (in dull daylight) + “a lurid tinge upon the clouds, which suggested the reflection of a distant + fire, while, scattered among these, torn and broken masses of white vapour, + <i>having a phosphorescent appearance</i>, reminded me of a similar appearance + in October 1870.†(Other instances of this effect will be found in the section + Aurora and Phosphorescence.) Day Auroræ, too, we might suppose could + hardly be seen without the presence of some phosphorescent glow.</p> + + <div class="sidenote">Other confirmatory + circumstances. Conclusion + in favour of + the theory.</div> + + <p>Having regard to the near proximity of the phosphoretted-hydrogen band + to the bright Aurora-line, to the circumstance of this band brightening by + reduction of temperature (a phenomenon probably connected with ozone), to + the peculiar brightening of one line in the green in the “Aurora†and “phosphorescent†+ tubes (the phosphorescent tubes probably containing O), and + to the observed circumstance that the electric discharge has a phosphorescent + or fluorescent after-glow (isolated, I believe, by Faraday), I feel there is strong + evidence in favour of such an origin to the principal Aurora-line, if not to the + red line as well.</p> + + <div class="sidenote">Invariability + of gas-spectra + questioned.</div> + + <p>5th. Professor Ã…ngström opens a wide door to discussion in his proposition + of the invariability of gas-spectra, and I do not now attempt to follow in + detail this interesting part of the present subject. Suffice it to say, that if the + Professor lays down this proposition in its strictest sense (I can hardly suppose + he so meant it), there is, so far as I am aware, no one spectrum that can + at all claim comparison with the Aurora-spectrum. Giving greater latitude + to the Professor’s words, I reply, upon competent authority, that lines vary + in number and brilliancy with temperature, and in breadth with pressure. + Kirchhoff, too, in speaking of vapour-films as increasing the intensity of lines, + states “it may happen that the spectrum appears to be totally changed when + the mass of vapour is altered.†We may, too, now add magnetism as capable + of effecting a change in certain spectra, not only as to brilliancy, but even as + to position of lines. (Chautard’s Researches, ‘Philosophical Magazine,’ 4th + series, vol. 1. p. 77, and experiments detailed in Chap. III. of this work.)</p> + + </section> + + <!-- Chapitre 13_________________________________________________________--> + <section class="chapter" id="chapter-13"> + <h3 class="titlechapter" id="chap-13">The Oxygen-spectrum in relation to the Aurora (Procter and Schuster)</h3> + <p class="shorter">The Oxygen-spectrum in relation to the Aurora</p> + + <div class="sidenote">Procter’s + oxygen-spectrum.</div> + + <p>In a communication to ‘Nature,’ Mr. H. R. Procter has pointed out an + apparent coincidence in position of several of the Auroral lines with those of + a spectrum occasionally obtained from air at low pressure with a feeble + discharge. It is, he says, sometimes exhibited in lumière (phosphorescent?) + tubes, and he believed it, in part at least, to be the spectrum described by + Wüllner (Philosophical Magazine, June 1869) as a new spectrum of oxygen.</p> + + <span class="sidenote">How obtained.</span> + + <p>He had obtained it very vividly in pure electrolyzed oxygen with a + feeble discharge, but some perplexing observations made him doubtful of + its origin.</p> + + <p>Plate XI. fig. 4 gives a representation of this spectrum as shown by + Mr. Procter, except that my drawing is in black for white.</p> + + <div class="sidenote">Compared + spectra described.</div> + + <p>The upper spectrum is that above mentioned, the centre one that of the + Aurora, the lower one the lines of Na and H for comparison. The Auroral + yellow-green line, in January 1870, was found by Mr. Procter coincident with + a bright line or band in the tube (with a spectroscope of a 60° bisulphide + prism, and magnifying-power about six). The third and fifth lines in the + Aurora seemed also to correspond with tube-lines. As to these Mr. Procter + says they were not bright enough to be compared with the same accuracy as + the yellow-green line, but that the positions could not be far wrong.</p> + + <div class="sidenote">Mr. Procter’s + subsequent + views. Yellow-green + line + traced to + some form + of hydrocarbon.</div> + + <p>Mr. Procter subsequently (‘Edinburgh Encyclopædia,’ art. “Auroraâ€) + considered he traced the yellow-green tube-line to some form of hydrocarbon. + On examination with instruments of greater dispersion, it was found that, + though more refrangible than the first band of citron acetylene (candle-flame), + it was less so than the Aurora-line. The tube-band, too, was shaded towards + the violet, which was not the case with the Aurora-line.</p> + + <p>The question as between hydrocarbon and oxygen I did not then consider + as disposed of. With the lumière tubes the question might be open, but I did + not see how it could be in the case of the electrolyzed oxygen-spectrum.</p> + + <p>From a comparison of the tube-spectra, I have shown that although the + spectra of the carbon and oxygen tubes are proved to be, photographically, + as a whole, distinct, they have, as to position of some of the principal lines + in the central part of the spectrum, a very close resemblance.</p> + + <div class="sidenote">Probability + that O may + play a part + in the + Aurora-spectrum.</div> + + <p>That oxygen may in some form play a part in the Aurora seems highly + probable; how far it is spectroscopically detected seems a different question.</p> + + <div class="sidenote">Difference + between air-spark + and + tube-spectra.</div> + + <p>Ã…ngström and Herschel suggest its presence in the Aurora in connexion + with phosphorescence or fluorescence. With a spark-discharge in air at ordinary + pressure, a mixed spectrum of bright lines of N and O is found; while + in the case of Geissler vacuum-tubes (representing a glow-discharge in a + much more rarefied atmosphere) the N lines appear mainly to usurp the + spectrum.</p> + + <div class="sidenote">Hâ‚‚O tube + referred to.</div> + + <p>It must, however, be borne in mind that a Geissler tube, as to temperature + at least, in no way represents the conditions of the Aurora; and when we + remember the association of oxygen and ozone, and the way in which the + latter is affected by heat, it may well be that temperature plays an important + part in the matter. In proof of this conduct of oxygen, it may be cited that, + in the case of a Hâ‚‚O tube, the H lines come out sharp and brilliant in the + spectrum, while what is seen of the O lines is comparatively weak, misty, and + ill-defined. Vogel, it will be remembered, makes 5189 of the Aurora coincident + with an O line.</p> + + <div class="sidenote">Residual + phosphorescence + in + Geissler + tubes. Garland + tube.</div> + + <p>Professor Herschel has pointed out, and I have confirmed, that the residual + phosphorescence in Geissler tubes, after the spark has passed, is probably + associated with oxygen. He also alludes to the fact that when one of the + globes of a “Garland†tube was heated, it did not shine after the spark had + passed, apparently because of the destruction of the ozone by heat.</p> + + <p>[Some experiments with a tube of this description will be found detailed + in Part III. Oxygen was not, I think, the gas it was filled with.]</p> + + <div class="sidenote">Dr. Schuster’s + tubes + described.</div> + + <p>Subsequently to my examination and comparison of the O and COâ‚‚ spectra + before detailed, Dr. Arthur Schuster was good enough to send me three + vacuum-tubes of his own preparation, showing an oxygen-spectrum.</p> + + <p>One, with large disk-shaped brass electrodes, was unfortunately broken in + transit. Dr. Schuster informed me it showed the carbonic-oxide spectrum as + well as that of oxygen. The other two tubes had aluminium electrodes. They + were similar in shape to ordinary Geissler tubes, but had attached to each a + supplemental bulb containing dry oxide of manganese. Illuminated by the + larger coil, one of these tubes (which had a slight crack in the manganese + bulb) lighted up faintly; the other was fairly bright, and the glow had a + somewhat reddish tint.</p> + + <p>Plate XVIII. fig. 15 represents as the upper spectrum Vogel’s Aurora, + with W.L. numbers, as the middle spectrum the capillary part of Dr. + Schuster’s O tube, and as the lower spectrum the negative (violet) pole of the + same tube.</p> + + <span class="sidenote">Spectra described.</span> + + <p>The tube-spectra were mapped out with the aid of the diaphragm micrometer + before described.</p> + + <span class="sidenote">Capillary.</span> + + <p>The capillary spectrum was mainly distinguished by four bright sharp + lines—one in the red, between the red Aurora-line and D, two in the green, + but considerably more refrangible than the yellow-green Aurora-line, while + the fourth was found to be hydrogen F. The other lines in the spectrum + were considerably fainter, and misty and band-like. The red line, though + not brilliant, was fairly bright and sharp.</p> + + <p>The place of the less refrangible of the two bright bands in the violet-pole + spectrum was occupied in the capillary spectrum by a faint glow only.</p> + + <span class="sidenote">Violet-pole.</span> + + <p>The violet-pole spectrum was recognized by two very bright broad bands + of light in the green, each including within its limits one of the Aurora-lines. + The bright red line in the capillary had a faint representative in the violet-pole + spectrum, as also had the two bright lines in the green. Other fainter + lines appeared in the blue, and three fairly bright ones towards the violet.</p> + + <div class="sidenote">Dr. Schuster’s + remarks + on + the spectra.</div> + + <p>Dr. Schuster remarks that one of these O bright bands is closely coincident + with a band in the CO spectrum, but that the CO band is bright towards + one edge and fades off gradually thence, while the O band is of pretty + uniform strength throughout. Dr. Schuster finds the wave-lengths of the + violet-pole O bands to be as follows:—</p> + + <table summary="Schuster's results"> + <tr> + <td>5205·0</td> + <td rowspan="2" class="vm"><span class="x2">}</span> Brightest part 5255.</td> + </tr> + <tr> + <td>5292·5</td> + </tr> + <tr> + <td>5552·8</td> + <td rowspan="2" class="vm"><span class="x2">}</span> Brightest part 5586.</td> + </tr> + <tr> + <td>5629·6</td> + </tr> + </table> + + <div class="sidenote">His tubes + free from + impurity.</div> + + <p>He also gives as weak bands 5840-5900 and 5969-6010. Dr. Schuster + comes to the conclusion that the green line of the Aurora is not due to + oxygen, as, under considerable dispersion and with good definition, the + oxygen-bands can be broken up into a series of lines, when the brightest part + is found to lie at 5586, which is too much towards the red to compare with + the Aurora-line. He notices that the more refrangible of the O bands + corresponds with a line sometimes seen in the Aurora (Vogel’s 5233). The + same remark will, however, apply to this last as to the other coincidence, + viz., that a broad band can hardly represent a line—at least, the line can + only be said to coincide in a loose and indefinite way. It is evident that + Dr. Schuster’s tubes were free from what must now be considered an impurity + in those examined by me and by Dr. Vogel, and that Mr. Procter’s suspicions + of carbon impurities in these, and the ordinary oxygen-tubes, are thereby quite + confirmed.</p> + + <div class="sidenote">Experiments + with + an open + Geissler + tube.</div> + + <p>In some experiments which we made (after receiving Dr. Schuster’s tubes) + with an open Geissler tube, so arranged as to connect with an air-pump and + gas-receiver, and thus from time to time to wash out the tube and vary its + contents, we found the same impure spectrum as in the case of the sealed O + tubes; and it seems to require a very large amount of precaution to avoid + these impurities.</p> + + <div class="sidenote">Spectra of + Dr. Schuster’s + O tube + examined.</div> + + <p>Dr. Schuster was kind enough to examine the spectra I mapped out, and + which are shown in Plate XVIII. fig. 15, with the following results:—The + lines Oα, Oβ, Oγ are those he has referred to under that designation in his + communications to ‘Nature,’ and undoubtedly belong to oxygen. The bands + A, B, and C are the bands characteristic of the negative pole. He finds A + divided into two parts by a dark space. The spectrum of the negative pole, + under good exhaustion, stretches into the capillary part; hence B appears in + the capillary as a faint band. A similar thing happens with nitrogen. I., II., + III., and possibly 8 and 9, he thinks, are due to the spark-spectrum of oxygen, + obtained when the jar and a break are interposed, the brighter lines of the + line-spectrum being always present at the negative pole. These last-mentioned + lines I have already referred to, as having been found by me in a tube + showing phosphorescence after the spark has passed. (Compare Plate XVIII. + fig. 15, O violet pole, with Plate XV. spectrum 5.) Nos. 1 and 2, he thinks, + are due to some foreign matter, as they are not in all his tubes.</p> + + <p>Dr. Schuster often finds that a spectrum due to the aluminium electrodes + is seen in tubes under great exhaustion; and this he considers is the spectrum + of aluminium oxide. A drawing of this spectrum is found in Watts’s ‘Index + of Spectra,’ plate iii., “Aluminium first Spectrum.†To this, he thinks, are + also due the bands, or sets of lines in my aluminium-arc spectrum (‘Photographed + Spectra,’ plate ii.), and he believes lines 3, 4, 5, 6, and 7 in the + mapped-out spectra are due to it. It would thus appear that the lines due + to O are few in number, and do not well compare with the Aurora-spectrum.</p> + + <p></p> + + <hr class="chap" /> + + <p></p> + + </section> + + <!-- PART III_________________________________________________________ --> + <section class="part"> + <h2 class="title-part" id="part-3">Magneto-electric experiments in connexion with the aurora</h2> + <p class="shorter">Magneto-electric experiments in connexion with the aurora</p> + + <h3>Introduction</h3> + + <div class="sidenote">Object of + experiments. Description + of apparatus + employed. Electro-magnet. Battery.</div> + + <p>The set of experiments detailed in Chapters XIV. to XIX. was mainly conducted + for the purpose of testing, in connexion with the Aurora, the action of + a magnet upon the electric glow <i>in vacuo</i> and on the spark at ordinary pressure. + It also includes some observations on the glow from the violet pole with and + without the magnet, and on the glow obtained from one wire only. The + apparatus employed was a Ladd’s electro-magnet, with poles 10¼ inches high + by 2 inches across, each pole being surrounded by a movable helix, composed + of two sets of stout copper wire wound together, so that they could + be used either in one length or as independent coils excited at the same time. + The latter form of arrangement was employed by us. In most of the experiments + conical armatures were employed for the purpose of bringing the action + of the poles to bear upon the subjects examined. A contact-maker was + added to the magnet, so that it could be put rapidly in or out of action + without disturbing the wires. The battery used to excite the magnet was of + the form known as that of Dr. Huggins, and consisted of four vulcanite cells + in a frame, each holding seven pints of bichromate solution, and containing + two carbon and one zinc plate, each 13½ by 6 inches.</p> + + <div class="sidenote">Small coils. Larger coil. Magnetic + curves obtained.</div> + + <p>A winch and pulley enabled the whole set of plates to be lowered into the + liquid and withdrawn at pleasure, and the large quantity of solution gave the + battery a considerable amount of constancy. We found it could be used + for two evenings’ work, of four hours each, without any material dropping in + power. For obtaining the glow in the Geissler and other small tubes, a + Ruhmkorff coil, giving a ½-inch spark, excited by one plate of a ½-gallon + bichromate (bottle form), was used. For the glow in the larger tubes and + the spark in air a larger coil, giving a two-to three-inch spark, and worked by + two ½-gallon double-plate bichromates, was employed. Notes were taken + of the experiments, and drawings of the effects at the time; and these + are reproduced almost literally in the text and Plates comprised in + this Part. To ascertain the direction and extent of the magnetic curves, + we covered large sheets of cardboard, placed over the poles, with iron + filings; excited the magnet so as to obtain the curves, and then obtained + permanent prints from the filings by spraying the cardboard with tannin + solution. The magnetic effects were thus found to extend to a radius of + at least ten inches (see diagram, Plate XVII. fig. 1, showing magnet-poles + and curves on a ¼ scale).</p> + + <div class="sidenote">Chautard’s + investigations + kept + in view. Evidence + obtained of + change in + colour, form, + &c. of + Aurora. Ã…ngström’s + flask-experiment + tried.</div> + + <p>In the vacuum-tube experiments we held Mons. J. Chautard’s investigations + (on the action of magnets on rarefied gases in capillary tubes rendered + luminous by the induced current, Phil. Mag. 4th series, vol. 1. p. 77) in view. + We obtained in our experiments plenty of evidence of a change of colour and + form in the discharge under the magnetic influence; and both simple and + compound spectra were found to be much varied by the exaltation or suppression + of some parts of the spectrum, so that apparently new lines sprang + up; but we failed to trace actual change of position or wave-length in any + given line, though we carefully looked for it. A portion of our researches + was directed to the subject of Ã…ngström’s experiment of filling a dry flask + with a violet glow, analogous to that from the negative pole. We entirely + failed in obtaining the same result while two wires and an uninterrupted + circuit were employed. When, however, we attached a negative wire only + (the other wire being left free) to an exhausted globular receiver, we obtained + an effect very similar to that referred to in Prof. Ã…ngström’s memoir.</p> + + <div class="sidenote">General + results of + experiments. Bulb effects + noticed as a + mode of + analysis of + gases.</div> + + <p>The general result of the experiments was to prove, assuming the Aurora + to be an electric discharge, the great influence the magnetic forces may + exercise on the colours, form, motions, and probably the spectrum also + of that phenomenon. It is easy to conceive that the variation in number, and + intensity of the lines which has been remarked in Auroral spectra may have + its origin in such a cause. The influence of the magnet on the capillary + stream was mainly in colour and intensity; but in the bulbs the effects were + still more marked and striking, and, in a greater or less degree, different in + the case of each gas which we examined. A careful and extended study of + these effects, conjointly with the changes in the spectrum, might possibly + form a new and valuable mode of analysis of compound gases. This is well + illustrated in the case of the iodine and sulphur tubes which we examined.</p> + + <p></p> + + <figure class="plate" id="plate17"> + <!-- <img src="images/plate17.jpg" /> --> + <figcaption></figcaption> + </figure> + + </section> + + <!-- Chapitre 14_________________________________________________________ --> + <section class="chapter" id="chapter-14"> + <h3 class="titlechapter" id="chap-14">Examination of Geissler-tubes under action of the Magnet</h3> + <p class="shorter">Examination of Geissler-tubes under action of the Magnet</p> + + <h4 id="chap-14-1"><i>Nitrogen-tubes.</i></h4> + + <div class="sidenote">Nitrogen-tube + No. 1. Discharge + described. Spectrum + described. Capillary + stream. Positive + bulb. Violet-pole + glow.</div> + + <p>(1) A small Geissler tube (No. 1) was lighted up by the small coil. The capillary + part showed a very bright, slightly rosy-tinted stream. Negative bulb was + filled with rosy-purple light, the violet-pole glow being confined to the extent of + the electrode. Positive bulb of the same rosy-purple colour, but stream slightly + contracted in volume. Glow throughout quiescent, and no stratification in + the tube. A compound-prism spectroscope, taking in the whole of the spectrum, + showed in the capillary stream, from yellow to red, a fairly bright wedge, + having a dark band in the centre, and six bright columns, with dark lines at + intervals, shading off on either side. On the more refrangible side of the + yellow, the spectrum was composed of a set of bright bands and lines in the + green, blue, and purple, one line only (in the green) standing out very bright. + In the yellow and red no bright line stood out alone. The positive bulb gave + a fainter spectrum of the same character, mainly confined to the centre, the + violet, yellow, and red not being well seen. When the violet-pole glow was + examined, the general character of the spectrum was quite changed: a brilliant + broad band in the violet, a bright narrower one in the blue, and two + bright lines in the green, with intermediate fainter lines throughout, were the + main features. The yellow and red part of the spectrum was also changed. + The yellow was fairly and evenly distinct up to the dark band; then came a + somewhat brighter orange band, and after that the red, but rather obscure + and cut off. No absolutely bright line could be traced in the red.</p> + + <div class="sidenote">Nitrogen-tube + No. 2. Glow described. Difference + of spectra of + capillary + stream and + violet-pole + glow. Junction of + the violet-pole + glow + and capillary + stream.</div> + + <p>(2) To compare the capillary stream and the violet-glow, a second nitrogen-tube + (No. 2) was used. This tube was larger in bulk and bore than No. 1. + The glow in the bulbs was considerably fainter and more salmon-coloured; + and there was much stratification in both, extending to the capillary bore. + (This stratification was considered due to H, as the three principal lines of + that gas came out very brightly in the spectrum.) The difference of the + spectra of the capillary stream and of the violet-pole glow was extremely well + marked—the former consisting of a set of bright lines and bands of fairly + uniform intensity, while the latter was split up into a few bright bands with + fainter lines between. The yellow and red of the violet-glow were very weak + as compared with the same region of the capillary spectrum. No bright line + appeared in the red. The tube being properly adjusted for the purpose, the + junction of the violet-pole glow and the capillary red-glow was easily observed. + The bright bands of the violet-pole were seen to run into the + capillary line-spectrum, and then, gradually getting finer and more pointed, + to fade out.</p> + + <div class="sidenote">Tube No. 1 + between the + poles of the + magnet. Change of + colour in + capillary + stream. “Tailing-over†+ of + capillary + stream.</div> + + <p>(3) The capillary part of tube No. 1 was arranged between the poles of + Ladd’s electro-magnet, the conical ends of the armatures almost touching the + tube (Plate XVII. fig. 1). With the magnet not excited, the capillary stream + was bright and of a slightly rosy-yellow tinge. It varied a little in apparent + diameter with the current. As soon as the magnet was excited the capillary + stream, as also (in a less degree) that in the bulbs, were seen to contract, and + to change from a <i>rosy</i> tint to a distinctly <i>blue-violet</i>. The polished armatures, + acting as reflectors, showed this change of tint in a most marked manner each + time the magnet was excited. At the same time the capillary stream was + seen to run into the negative bulb, as if overflowing, and with an effect resembling + the “tailing-over†of a gas-flame. This effect took place each time the + magnet was excited, and was not found at the positive-bulb end.</p> + + <div class="sidenote">Spectrum + examined.</div> + + <p>Occasionally, when the magnet was excited, flashes of light were discharged + in the negative bulb from the capillary towards the violet-pole. The + spectrum was then carefully examined. No change was seen in the actual + position of any of the lines or bands when the tube was influenced by the + magnet, but those towards the violet end of the spectrum were conspicuously + brightened.</p> + + <div class="sidenote">Negative + bulb between + poles + of the magnet. Positive + bulb within + action of + the magnet.</div> + + <p>(4) The extremity of the negative bulb was now placed between the poles + of the magnet. A bright violet-coloured arc, following the magnetic curve, + was at once formed, as in the case of the large Plücker tubes; and at the + same time a straight stream of not very bright light ran along the bulb. The + positive bulb was next placed within the action of the magnet; and immediately + a brilliant spiral of flickering light appeared in the bulb, lighting it + up, and reminding one in shape of the spiral which water forms on being + poured from a lipped jug (see Plate XVII. fig. 9).</p> + + <div class="sidenote">Spiral + formed.</div> + + <p>This was repeated each time the magnet was excited. The spiral, though + flickering in character, was permanent in form, and inclined to the side of the + tube which was in contact with the N pole of the magnet.</p> + + <p></p> + + <h4 id="chap-14-2"><i>Oxygen-tubes.</i></h4> + + <div class="sidenote">O tube No. + 1; spectrum + described.</div> + + <p>A tube (No. 1) was lighted up and examined with the spectroscope, and + found to give the spectrum shown on Plate XIV. spectrum 3, but with a + strong set of H lines in addition.</p> + + <div class="sidenote">O tube No. + 2; spectrum + described.</div> + + <p>A second tube (No. 2) was then lighted up. The spectrum was a bright + one, similar to the foregoing, the principal H lines being present, but not + strong.</p> + + <div class="sidenote">Tube-glow + described. Effect upon + glow when + magnet + excited. Bulbs between + poles + of the magnet. Effect of + magnet on + spectrum.</div> + + <p>The red region was indistinct, and showed no prominently bright line. The + bulbs were mainly of a slightly blue-grey tint, with a steady glow. Capillary + stream quite pale white, with a very slight tinge of red. Violet-glow small + and confined to the electrode. Upon the magnet being excited, the capillary + stream became intensely brighter, and the glow in both bulbs contracted into + a single bright stream, which curved towards the sides of the bulbs at right + angles to the magnetic poles, and changed from side to side with the current. + This effect was very marked, and was more apparent in the positive than the + negative pole. A faint stratification was seen in both bulbs. Upon either + bulb being placed between the armatures, the glow left the electrode point + and condensed into one bright stream, running along the side of the tube and + curving at each end (Plate XVII. fig. 10). No trace whatever of tendency + to form a spiral was seen. The spectrum with the magnet on was very conspicuously + brightened up throughout. A set of fluted bands with a bright + line among them appeared in the red, and several lines or bands appeared + in the violet which could not be seen before. The bright red line, upon + measurement, proved to be the hydrogen-line C. It thus seemed brighter in + proportion than the F line, although, with the magnet off, the latter was well + seen, while the C was not. No actual change in position of the spectrum-lines + could be detected.</p> + + <p>[It is to be noticed that the O tubes employed were those used by me in + former experiments, and had the bright lines now attributed to hydrocarbon + impurity. Their bulb-effects differed, however, entirely from those of the COâ‚‚ + tube. (Compare figs. 10 and 11, Plate XVII.)]</p> + + <h4 id="chap-14-3"><i>Hydrogen-tubes.</i></h4> + + <div class="sidenote">H tube, No. + 1; glow described.</div> + + <p>A small H Geissler tube (No. 1) was selected, and lighted up by the small + coil. The capillary was a bright white-pink stream, with a tendency to redden + at times. The bulbs were both of a faint blue-grey tint, with coarse lenticular + stratification. The violet-pole glow was pale and white as compared with + that of N.</p> + + <div class="sidenote">When the + magnet was + excited, + whole character + of + tube + changed. Unexcited + spectrum + described. Effect when + magnet was + excited.</div> + + <p>When the magnet was excited, the whole character of the tube changed. + The capillary stream diminished in brightness and in apparent volume, and + changed to a deep amber-yellow. The bulbs lost some of their light, and their + coarse stratification; being, in lieu, filled with a vertical condensed stream of + moderate light, in which a fine stratification only was seen. The stream in + the positive bulb had a tendency to the spiral form. The capillary, each time + the magnet was excited, “tailed over†into the negative bulb, as in the case + of N, looking as if it were squeezed out of the capillary bore. The unexcited + spectrum was found to consist of the usual principal lines of H on a continuous + glow, with the intermediate bands and finer lines, which are usually suspected + to be due to impurity. The sodium-line was also seen. When the magnet + was excited, the spectrum grew much fainter—the continuous glow in the red + and blue, and the red and blue lines, nearly disappearing, and the line in the + green alone shining out conspicuously. No change of place in the lines could + be noticed.</p> + + <div class="sidenote">No. 2 H + tube; effects + described.</div> + + <p>A longer H tube (No. 2) was then tried, with similar effects, except that + the diminution in brightness was not so conspicuous. When the negative bulb + of the tube No. 1 was placed between the poles of the magnet, a stream of + light was formed, and the stratification became finer. The same effect took + place with the positive bulb, with a tendency to the spiral form.</p> + + <h4 id="chap-14-4"><i>Water-Gas (Hâ‚‚O) tube.</i></h4> + + + <p><span class="sidenote">Water-gas (Hâ‚‚O) tube; effects produced described.</span>A faint purple glow was seen in each bulb, the tube not lighting-up brightly. + The capillary showed a slightly rosy-tinted, grey stream of brighter light. + With the magnet on, the glow in the bulbs was condensed into a single bright + stream. The capillary brightened up, and assumed a yellow tint—this effect + being principally confined to that portion which was between the conical ends + of the armatures, and gradually diminishing as the distance increased from + these. Without the magnet, the principal H lines showed brightly in the + spectrum, the O lines being misty and indistinct. With the magnet on, the + O lines and spectrum generally brightened up.</p> + + <h4 id="chap-14-5"><i>Ammonia-tube.</i></h4> + + <div class="sidenote">Ammonia-tube; + lighting-up + described. Spectrum + described.</div> + + <p>This tube was difficult to light up. Hardly any light was seen in the bulbs, + except a very faint purple glow at the electrodes. In the capillary part a + fairly bright stream of purple-white light appeared. The spectrum was a + faintly shown one of N and H. The effect of the magnet was to reduce the + brightness of the glow in the capillary, but with little marked action on the + bulbs, except to condense the faint glow into a slightly bright stream running + along the side of the tube.</p> + + <p>On a subsequent examination the tube and spectrum both brightened up + under the influence of the magnet. The N lines, which were faint without + the magnet, shone out under its influence distinctly—the red and yellow + parts of the spectrum specially showing this effect. The H lines also + brightened up, but hardly so much in proportion as the N.</p> + + <h4 id="chap-14-6"><i>Carbonic-Acid tube.</i></h4> + + <div class="sidenote">Tube + marked + C A; lighting-up + described.</div> + + <p>A Geissler tube marked C A was examined. Capillary stream a brilliant + bluish white; bulbs grey-blue, with a slight tint of green; slight stratification + in positive bulb; stream diffuse, not quite filling the bulbs, and changing in + volume as the coil-break was touched; glow round the violet-pole considerable, + but markedly white in tint, rather than violet; stratification strong in + capillary. With magnet excited, the capillary stream diminished in volume, + but greatly increased in brightness. It “tailed over†into the negative bulb, + and the stream through both bulbs curved towards the sides. A slight + pattering noise was heard in the tube. In the positive bulb bright, imperfectly + formed, saddle-shaped rings of light, with a tendency to spiral formation, + were seen, somewhat similar to the effects in the Plücker tube after described + (see Plate XVII. fig. 11).</p> + + <div class="sidenote">Effects + when magnet + was + excited.</div> + + <p>The whole spectrum, under influence of the magnet, became much brightened + up. Faint bands in the red came out bright, as also did some in the violet. + The violet-glow was examined (without the magnet), and the light was found + condensed into four prominent shaded bands, one red, one yellow-green, one + green, and one blue, with fainter bands seen between.</p> + + <h4 id="chap-14-7"><i>Chlorine-tubes.</i></h4> + + <div class="sidenote">Chlorine-tube + No. 1 + lighted-up. Action of + magnet + upon the + tube and + spectrum.</div> + + <p>A chlorine-tube (No. 1) was lighted-up with the small-coil. Capillary stream + of a pale green tint. Bulbs with very little glow in them; spectrum pale, and + not very distinct. Under action of the magnet this tube brightened up + throughout, and the glow became more condensed, and ran to the sides of the + tube. The spectrum also brightened, the faint lines becoming stronger, but + the general character was preserved.</p> + + <div class="sidenote">Chlorine-tube + No. 2 + lighted-up. Effect on + glow when + magnet was + put on.</div> + + <p>A second chlorine-tube (No. 2) was then tried. Both bulbs were completely + filled with a dense white (very slightly rosy-tinted) opaque light, and capillary + the same, but brighter. A very slight violet tinge was seen at the negative + pole. When the magnet was put on, both bulbs were at once filled with + flickering bright streams of light, running towards the side of the tube, + according to the direction of the current.</p> + + <p>The capillary stream at the same time changed from white to an intense + bright green. The spectrum without the magnet consisted of sets of lines, + with two well-marked absorption-spaces between, all seen somewhat faintly, + as if through a mist.</p> + + <div class="sidenote">Changes in + spectrum + when magnet + was + excited.</div> + + <p>When the magnet was put on, the marked character of the absorption + spaces was lost. The sets of lines in the yellow-green and green started up + intensely bright, while those in the blue only slightly brightened.</p> + + <p>The misty appearance was altogether lost, and the bright lines all shone up + upon a perfectly dark background, with a strikingly metallic look; we could + not, however, trace change of position or actually new lines. It seemed as if + lines which had been faint in the yellow-green and green region suddenly + increased in intensity, the other parts of the spectrum not being similarly + influenced. They quite flashed up when sudden contact was made with the + magnet commutator.</p> + + <h4 id="chap-14-8"><i>Iodine-tubes.</i></h4> + + <div class="sidenote">Iodine-tube + No. 1.</div> + + <p>This tube (No. 1) had been used for photographic purposes, and the bulbs + were partly obscured by a white deposit.</p> + + <div class="sidenote">Lighting-up + described. Effect of + touching + one wire + with the + finger.</div> + + <p>On lighting it up, both bulbs were filled with a violet-grey diffused light, + with much coarse well-marked lenticular stratification. This stratification was + mainly lost on changing the direction of the current, but made its reappearance + when one conducting-wire was touched with a finger. This effect was + still more marked when one finger of each hand was applied to the wire. + The capillary stream was of a pale lemon-yellow. On putting on the magnet + the light in the whole tube was nearly extinguished, a faint thin stream of + condensed light running through the centre of the tube alone remaining.</p> + + <div class="sidenote">Effect of the + magnet.</div> + + <p>On placing the bulbs between the magnet-poles, effects were produced + similar to those in the case of the tube, after described (p. 144, and marked + Si Fl₆), but in a less marked degree.</p> + + <div class="sidenote">Tube again + tested.</div> + + <p>The iodine-tube was subsequently again tested, and it lighted-up better + than on the last occasion, showing nearly the same effects in bulbs and + capillary, the former having somewhat of a rosy tint and the latter an amber.</p> + + <div class="sidenote">Magnet + effects. The spectrum + described. Change + when magnet + was + excited.</div> + + <p>On exciting the magnet, the capillary part of the tube changed from amber + to a decided light green. The spectrum, without the magnet, gave one very + bright line, and several less bright ones near, in the blue-green. The rest of + the spectrum, with the exception of the absorption-spaces, was misty and continuous, + with lines showing faintly through. The red and yellow portions of + the spectrum were quite bright. When the magnet was excited, the + spectrum entirely changed. The red and yellow portions of the spectrum, + and the misty continuous light, all quite disappeared; while a set of + sharp lines on the yellow-green and green flashed up bright and clear, and + stood out alone upon a dark background, in which the absorption-spaces + were lost. The effect was very strongly marked, and gave a totally different + character to the appearance of the spectrum. The change seemed to arise + from the suppression of one part of the spectrum, and the increase in intensity + of the lines in the other part.</p> + + <div class="sidenote">No change + in line-position.</div> + + <p>The principal lines could not be traced to change in actual position.</p> + + <p>This tube differing somewhat from a second one we examined (No. 2) in + tint of glow and spectrum, it suggested itself to us that there might be a + partial mixture of N or H (or both) with the iodine vapour, giving rise to + some of the brighter parts of the spectrum which were extinguished under + the action of the magnet.</p> + + <div class="sidenote">Comparison + of iodine-tubes + No. 1 + and No. 2. Comparison + of the + spectra.</div> + + <p>We therefore compared these two tubes, viz. the old one (No. 1) and the + new one (No. 2), and also their spectra, by means of a comparison-prism on + the slit of the spectroscope. To the eye, the tubes differed much in appearance. + No. 1 had a distinct transparent rosy tint throughout, with considerable + coarse flickering stratification; and this contrasted strongly with the + dense whitish light of tube No. 2, which showed neither movement nor + stratification. The spectra were also found different in general look. That + of tube No. 1 was strongly tinged in the red and yellow, and showed a bright + continuous spectrum, crossed by many sharp lines, with little trace of absorption-spaces. + The spectrum of No. 2 was much whiter in tint, showed very + little of the red and yellow, and the absorption-spaces were very dark. A + few bright lines, mainly in the yellow-green and green, were faintly seen.</p> + + <div class="sidenote">The two + tubes examined + in + detail. + No. 2.</div> + + <p>The two tubes were then examined separately in detail. No. 2, excited by + the magnet, showed curious effects. The glow was rendered weak and intermittent, + and the rosy tint almost disappeared. The capillary changed to a + decided green colour, and the positive electrode was surrounded by a yellow + glow. The changes in the spectrum were no less decided. Without the + magnet, the spectrum was found to be a bright continuous one of H (with a full + set of principal and intermediate lines) and N—the N spectrum being rather + faint and misty, with very slight, if any, traces of the iodine-spectrum. On + the magnet being excited, the spectrum changed as if by magic; the H and N + spectra disappeared (except hydrogen F, which still faintly remained), and the + iodine lines, mostly in the yellow-green and green, shone out wonderfully + sharp and bright on quite a dark ground. No. 1, upon examination, showed + between the magnet-poles only the same changes as on last occasion. The + spectrum seemed to be one of iodine, with the addition of slight traces of the + H spectrum.</p> + + <div class="sidenote">Effects + discussed.</div> + + <p>On excitation of the magnet, the misty continuous part of the spectrum + nearly disappeared, and the bright lines shone up sharply upon the dark + background as before. The effects in the case of both tubes were strongly + marked. The impression as to tube No. 2 was that, without the magnet, the + slight iodine-spectrum was overpowered and masked by the N and H spectra; + while under the influence of the magnet the N and H spectra were almost + altogether suppressed, the iodine-spectrum being at the same time intensified. + The disappearance of the continuous spectrum under the action of the magnet + in No. 1 (with the supposition it was mainly H) would be accounted for in the + same way.</p> + + <h4 id="chap-14-9"><i>Bromine-tubes.</i></h4> + + <div class="sidenote">Bromine-tube + No. 1. Lighting-up + described. Effect of the + magnet. Bromine-tube + No. 2. Effect of + magnet.</div> + + <p>This tube (No. 1) had been previously worked for photographic purposes. + Excited by the small coil, the whole tube was filled with a faint flickering + light. The positive bulb contained a faint purple glow, with a yellow-green + tinge at the electrode, a curious flickering stream of light flashing from the + electrode to the side of the tube. The negative pole showed pretty much + the same effect as the positive. The capillary stream expanded at the opening + into the positive bulb, but ran in a condensed stream into the negative + bulb. In colour it was of a rather bright lilac. Upon putting the magnet + on, the light-glow in the tube was at once and permanently extinguished, + the coil still working as if the current passed. The same effect happened + repeatedly; but now and then the tube lighted-up for a second, showing + spiral arrangement in the bulb. We tried another bromine-tube (No. 2): + it lighted-up easily; both bulbs were filled with a purple stream of light; + capillary stream bright grey. The glass of the tube was strongly fluorescent + and of a yellow tinge. When the magnet was excited the stream of light was + somewhat condensed in the bulbs, and flew to the side of the tube; while + the capillary stream at the same time brightened. The spectrum without + the magnet was fairly bright; it increased in brightness under the influence + of the magnet, and additional lines appeared; but we considered them to be + only faint existing ones brightened up. No change in the position of the + principal lines was traced.</p> + + <h4 id="chap-14-10"><i>Silicic-Fluoride tubes.</i></h4> + + <div class="sidenote">Si Fl₆ tube. Lighting-up + described. Effect of + magnet.</div> + + <p>(1) A tube marked Si Fl₆ had been worked for photographic purposes; it + lighted-up easily. Both bulbs were filled with a brown-pink diffused light, + inclined to condense into a stream in the positive bulb. The violet glow was + very bright, and nearly filled the space round the electrode. The capillary + stream was of a bright violet tint. The effect of the magnet was to decrease + the intensity of the light throughout the whole tube.</p> + + <p>In the positive bulb the stream broke up into a number of vibrating + streamlets, with little bright threads of light intermixed, which flew towards + the side of the tube at right angles to the magnetic poles. There was an + inclination to spiral arrangement in the streamlets. This stream changed from + side to side of the tube coincidently with change in the magnetic poles. At the + negative pole the violet glow formed an arc in the direction of the magnetic + curves, while a spiral of fainter (positive?) light was formed in the upper + part of the bulb. A slight ringing sound was heard in the tube.</p> + + <div class="sidenote">Comparison + of Si Fâ‚„ and + Si Fl₆ tubes.</div> + + <p>(2) We compared two tubes (Si Fâ‚„ and the one marked Si Fl₆). The Si Fl₆ + tube in general effect, and in its spectrum, when lighted-up, resembled Si Fâ‚„. + We compared the one tube under the influence of the magnet with the other + not so, by means of a comparison-prism on the slit. As the spectroscope and + second tube were necessarily removed some distance from the magnet, the + spectrum of the tube between the poles was not bright. We could not trace + a change of position in any of the principal lines. The tube between the + poles was brightened up when the magnet was in action <span class="footnote">The tubes generally seem marked Si Fl instead of the ordinary notation Si F. Si Fl₆ is probably, in fact, Si Fâ‚„.</span>.</p> + + <h4 id="chap-14-11"><i>Sulphuric-Acid (SO₃) tubes.</i></h4> + + <div class="sidenote">SO₃ tube + No. 1; + lighting-up + described. Effect of the + magnet. Changes in + the spectrum.</div> + + <p>(1) Excited by the small coil, both bulbs of this tube (No. 1) lighted-up + brightly, with a misty light-blue tinted stream of opaque light, a yellow glow + appearing at the negative pole. The capillary stream partook of the same blue + tint, but was whiter and brighter. Under the magnet’s influence, the glow + in the bulbs flew to the side of the tube in flickering streams of light, the + capillary at the same time changing to a distinctly green tint. The spectrum + without the magnet consisted of four fairly bright bands of light in the yellow, + green, blue, and violet, connected by a faint misty continuous spectrum (O or + possibly the hydrocarbon spectrum found in O tubes by way of impurity).</p> + + <p>When the magnet was excited, this spectrum entirely disappeared; and a set + of bright metallic-looking lines upon a dark background (line-spectrum of S) + took its place. This effect was produced whenever the magnet was excited, + and we tried it several times, to make sure of the complete change. After a + time, when the magnet, battery, and the coil-power were all weaker, with the + magnet on, we obtained a compound of both spectra, the bright lines being + seen upon the continuous spectrum in which the bands appeared. When the + magnet was taken off, the bright lines disappeared, and the O spectrum alone + remained.</p> + + <div class="sidenote">SO₃ tube + No. 2 examined.</div> + + <p>(2) We also tried another SO₃ tube (No. 2) which had been worked for + photographic purposes, and was suspected of a carbon impurity. Without + the magnet, the spectrum was very like that of the first tube; but when the + magnet was excited, the spectrum only brightened, and no bright metallic-looking + lines appeared.</p> + + <h4 id="chap-14-12"><i>Sulphur-tube.</i></h4> + + <div class="sidenote">Sulphur-tube. Lighting-up + (without + heating) described.</div> + + <p>(1) A small bent vacuum-tube containing some solid sulphur, excited by + the smaller coil, and without being heated, gave a narrow stream of bright + blue-green light running straightly through it. With the magnet on, this + stream was deflected in the bulbs, and the capillary changed from a blue-green + to a distinct rosy tint.</p> + + <div class="sidenote">Effect of + magnet. Changes in + the spectrum.</div> + + <p>Without the magnet, the spectrum consisted of four bright bands, with a + continuous spectrum between, resembling that of SO₃ tube No. 1. With the + magnet on, the spectrum brightened, especially in the yellow and red, which + were dull before; and a set of lines appeared upon it (a line or band in the + yellow especially showing) which were not seen before. The lines were distinct, + but not very bright. The action on the capillary was noticed to be + strongest just between the conical points of the armatures; and, in accordance + with this, the central part of the spectrum-band in the red and yellow + showed an increased brightness.</p> + + <div class="sidenote">Effects when + one of the + bulbs of the + tube was + heated. Changes in + the spectrum + under + influence of + magnet.</div> + + <p>(2) One of the bulbs of the tube was then gradually heated with a small + gas-flame. The single stream in the heated bulb became somewhat deflected + and broken up into a number of smaller streams; and these, when placed + under the magnetic influence, had small spark-like threads of light running + among them. The capillary, as the tube was heated, and the sulphur rose + in it, changed somewhat in tint, and, under the magnetic influence, became of + yellow-rose hue. As the heat was applied to the bulb the bands of sulphur + gradually appeared in the field of the spectroscope, until at last the band-spectrum + of sulphur entirely took the place of the spectrum seen in the cool + tube. The magnet being excited, the spectrum changed at once, a set of + bright sharp lines (line-spectrum of S) appearing upon a faint and dull image + of the band-spectrum.</p> + + <p>This effect was constantly repeated upon the magnet being excited. The + magnet being taken off, the band-spectrum alone was to be seen.</p> + + </section> + + <!-- Chapitre 15_________________________________________________________ --> + <section class="chapter" id="chapter-15"> + <h3 class="titlechapter" id="chap-15">Effect of Magnet on a capillary Glass Tube</h3> + <p class="shorter">Effect of Magnet on a capillary Glass Tube</p> + + <div class="sidenote">Capillary + portion of a + Geissler + tube tested + in three + ways.</div> + + <p>The capillary portion of a Geissler tube was cut away from the bulbs, + cleaned, and connected by a small vulcanite tube with the gas-pipe in the + room conveying coal-gas at ordinary pressure. The flame was small and oval + in shape, 8 millims. high, by 4 millims. wide, and burnt quite steadily. (Plate + XVII. fig. 13.)</p> + + <div class="sidenote">No effect on + flame.</div> + + <p>(1) The capillary tube was placed between the poles of the excited + magnet, almost, but not quite, touching them; no effect at all was produced + on the flame.</p> + + <p>(2) The tube was placed so that the conical ends of the armatures were + allowed to compress the centre of it between them; still no effect was produced + on the flame.</p> + + <p>(3) The tube was placed so that the straight sides of the armatures compressed + it between them; still no effect took place on the flame.</p> + + <div class="sidenote">Flame between + poles + of magnet.</div> + + <p>(4) The flame itself was placed between the poles of the magnet. It was + slightly drawn towards one pole with an inclination to form the magnetic + curve.</p> + + <div class="sidenote">Quill glass + tubing + tested. No effect on + the flame.</div> + + <p>(5) A piece of quill glass tubing was selected, 5 millims. in diameter and + 1 millim. thick, and drawn out to a point, the end of which was snapped off + and the tubing connected as before. The flame was 20 millims. high, and + 5 millims. across, and somewhat lambent. On being placed (1) between the + conical ends and (2) between the flat ends of the armatures, no effect could + be seen on the flame.</p> + + <div class="sidenote">Effect on + taper and + spirit-lamp + flames.</div> + + <p>(6) A small taper-flame was placed between the poles of the magnet: no + effect was produced, except that the flame gave a slight “jump†each time + the magnet was excited. A spirit-lamp flame was tried with a similar result.</p> + + <h4 id="chap-15-1"><i>Action of Magnet on a bar of heavy glass.</i></h4> + + <div class="sidenote">Heavy glass + bar and + mounting + described.</div> + + <p>A piece of heavy yellow-tinted glass was selected, being a bar 10 centimetres + in length, and 8 millimetres square. This was mounted in a frame + with a Nicol prism at one end, and a double-image prism (next the eye) at + the other.</p> + + <p></p> + + <div class="sidenote">Placed along + poles of + magnet. Effect of + magnet on + candle-images.</div> + + <p>(1) The glass bar and mounting were placed upon and along the poles of + the magnet (in the direction of the magnetic curves), and the double-image + prism and Nicol were so adjusted that two images of a candle were seen—the + one below bright and normal, the one above, by rotation of the prism, as + nearly as possible extinguished (Plate XVII. fig. 4). On exciting the magnet + the faint image at once conspicuously brightened, at the same time assuming + a slightly green tinge. To get full effect of brightening, it seemed necessary + to have good pressure-contact between the battery-wires and the binding-screws.</p> + + <div class="sidenote">Effect on + using a tourmaline + as + analyzer.</div> + + <p>(2) Using a tourmaline as analyzer in lieu of the double-image prism, the + candle-flame was seen alternately brightened and darkened, as the tourmaline + was rotated; and when the image was obscured by rotation, excitation of the + magnet caused it to brighten strongly. This effect was accompanied by the + apparent removal of a dusky red patch or spot, which occupied the centre of + the field when the flame was obscured.</p> + + <div class="sidenote">Bar placed + at right + angles to the + poles: no + effect produced.</div> + + <p>(3) The bar of glass and double-image prism being placed between the + conical ends of the armatures, but at right angles to, instead of along, the + poles, upon excitation of the magnet no effect at all was produced.</p> + + <p>(4) The bar and prism being placed in the same position between the flat + ends of the armatures, no effect at all was produced.</p> + + <div class="sidenote">Slight effect + on second + experiment.</div> + + <p>(4<i>a</i>) Experiment No. 4 was repeated. It was thought that on excitation + of the magnet the secondary image slightly brightened; but there was a + doubt about it, and the effect (if any) was slight.</p> + + <div class="sidenote">Effects produced + when + a biquartz + was introduced.</div> + + <p>(5) The apparatus was now changed for one of the following arrangement:—1, + a rotating Nicol prism next the eye; 2, the glass bar; 3, a biquartz + with the halves horizontal; 4, another Nicol prism. The neutral-passage + tint of the biquartz was found to be rather green (from mixture with the + yellow of the glass).</p> + + <div class="sidenote">Change in + colour of the + halves.</div> + + <p>(i.) Placed <i>along</i> the poles of the magnet and the magnet excited, a change + of tint was seen in both halves of the biquartz, the slightly purple-reddish + tint of the upper half passing into a full purple. Effect not so marked as + with the double-image prism.</p> + + <p>(ii.) Placed <i>across</i> flat ends of the armatures (as in experiment No. 4) no + effect was seen.</p> + + </section> + + <!-- Chapitre 16_________________________________________________________ --> + <section class="chapter" id="chapter-16"> + <h3 class="titlechapter" id="chap-16">Effect of Magnet on wide Air (Aurora) tube</h3> + <p class="shorter">Effect of Magnet on wide Air (Aurora) tube</p> + + <div class="sidenote">Wide air-tube + described.</div> + + <p>A large, wide air-tube was tried; it was 14½ inches long by 1 inch in diameter, + of the same bore throughout, and with straight platinum electrodes.</p> + + <div class="sidenote">Magnet + effect when + tube placed + vertically + between + conical armatures.</div> + + <p>(1) To excite it the larger coil was used. The tube was filled with bright, + steady, rosy light, and beautiful stratification, which, as it flickered, seemed + to incline to a continuous spiral (Plate X. fig. 8). This stratification was + very close and fine, and extended nearly throughout the tube. On excitation + of the magnet (the tube having been placed <i>vertically</i> between the conical + armatures), the glow was condensed into a bright solid line or stream of light + at the point which lay directly between the poles. This line or stream expanded + into an elongated funnel-shape as it retreated from this centre towards + the extremities of the tube, the stratification showing itself more distinctly + as the glow of light became less dense (Plate XVIII. fig. 3). The stream of + light was driven away at right angles to the poles, and changed from side to + side of the tube with the direction of the current.</p> + + <p>[With the small coil this tube showed only a flickering stream of light, + with very slight indications of stratification.]</p> + + <div class="sidenote">Effect when + tube placed + horizontally + between the + armatures.</div> + + <p>(2) The tube was placed <i>horizontally</i> between the conical ends of the + armatures. The condensed stratified stream of light flew upwards and downwards + (according to direction of current) instead of to the respective sides of + the tube.</p> + + <div class="sidenote">Tube placed + along the + poles of the + magnet.</div> + + <p>(3) The tube was placed along the poles of the magnet. In the interval + between these the stream was driven upwards, but at either end sideways, + right or left according to whether the pole was N. or S. (Plate XVIII. + fig. 4). The result gave a complete spiral of stratified condensed light within + the tube.</p> + + <h4 id="chap-16-1"><i>Note on Stratification.</i></h4> + + <div class="sidenote">Stratification + in + small tubes + arranged in + series.</div> + + <p>The current from the large coil was sent through a set of five small French + vacuum-tubes, of equal calibre, containing salts of strontium and calcium, + and showing phosphorescent effects. These tubes were arranged in single + series; and, from the colour of the glow-discharge, were presumed to contain + rarefied air in contact with the salts.</p> + + <p></p> + + <p>A strong coarse stratification was seen in the central (No. 3) tube. Tubes + Nos. 2 and 4 also showed stratification, but in a less degree; while the outside + tubes, Nos. 1 and 5, showed no stratification at all. The current was + steady, and these effects did not fluctuate.</p> + + <h4 id="chap-16-2"><i>Effect of Magnet on Plücker (Air-) Tube.</i></h4> + + <div class="sidenote">Plücker + air-tube. Lighting-up + described. Effect of + magnet on + the positive-pole + stream.</div> + + <p>(1) A Plücker air-tube was selected of the form shown on Plate V. fig. 1, + and was excited by the small coil. The ring was used for the positive pole, + the straight electrode for the negative. When lighted up, the tube glowed + with a perfectly steady and quiescent light. The negative electrode was surrounded + by the usual bright violet glow, extending itself and being gradually + lost at a short distance from the wire, while the ring let fall a faint, tubular, + salmon-coloured, diffused stream of light, which met the violet glow as it + approached the negative pole. The tube was then placed vertically between + the poles of the electro-magnet, the armatures being almost in contact with + the sides of the tube around the negative pole. On excitation of the magnet, + an instantaneous change took place. The stream of light from the positive + pole contracted itself, so that it became of a long funnel-shape (the ring + forming the mouth of the funnel), while it tapered almost to a point where + it met the violet glow.</p> + + <div class="sidenote">Effect on + negative + violet glow.</div> + + <p>The stream also became very brilliant (the sides of the tube being left proportionately + free from light), and crossing it were a set of bands, or striæ, + having a waving or vibratory motion. The whole of the negative violet glow + was simultaneously gathered into a brilliant narrow arc, which stretched + across between the poles of the magnet. These effects are shown on Plate V. + fig. 1. The edges of the arc were remarkably sharp and well defined, and + with no surrounding aura or shading off.</p> + + <div class="sidenote">Arc of light + followed the + magnetic + curves.</div> + + <p>By moving the tube between the armatures it was seen that the arc of + light followed the magnetic curves. If the tube was moved upwards, the arc + curved towards the zenith, if downwards, contrariwise; and a middle position + could be selected, in which the edges of the arc were nearly parallel. Moving + the tube a short distance from the pole had the effect of rendering the arc + more diffuse, but not of otherwise altering its character.</p> + + <div class="sidenote">Direction of + the current + changed. Effects on + glow described.</div> + + <p>(2) The direction of the current in the tube was then changed; and, without + the magnet, the ring electrode was surrounded by a diffused violet glow; + while the straight wire gave forth a faint salmon-coloured stream of light, + spreading up to the ring.</p> + + + <div class="sidenote">Magnet + effects described. On negative + pole. Rings from + positive + pole described. Effects on + rings of + making + and breaking + contact + with + magnet. Shape of + rings described.</div> + + <p>On excitation by the magnet (the positive pole being now placed between + the armatures), the violet glow of the negative pole contracted into a compact + mass round the ring electrode. At the same time from the positive pole + sprang a set of bright saddle-shaped rings, which increased in size as they + advanced; and spreading upwards with a rapid but smooth motion towards + the negative pole, closely approached to, but never actually came in contact + with, the violet glow. The positive end of the tube was otherwise but + slightly lighted, and the sudden appearance of this brilliant stream of rings + of light was very striking. A single bright ray was also seen running from + the positive wire, in a somewhat transverse course, along one side of the tube. + When wire-contact with the magnet ceased, so that it was not excited, the + rings ran back in succession to the positive pole and disappeared, and by + making and breaking contact they were caused to advance and retire at will. + They were accompanied by a waving or vibratory motion, and were evidently + of the same character as the smaller striæ or bands mentioned as seen when + the ring formed the positive pole. The general appearance was that of a + hollow cone of light (the base towards the negative pole), composed of brilliant + rings with dark spaces between, which appeared and expanded under + the magnetic influence, and contracted and disappeared on its removal. The + rings did not appear to be flat disks, but were somewhat curved or saddle-shaped. + They reminded one much of the diatom <i>Campylodiscus spiralis</i>; + that is to say, they were apparently flat if looked at from above, but like a + figure of 8 when viewed sideways, the peak of the saddle forming a kind of + brilliant point or apex.</p> + + <p>All this is difficult to describe; but an illustration from a sketch made of + the tube is given on Plate XVII. fig. 2.</p> + + <div class="sidenote">Negative + pole placed + vertically + on the + magnet.</div> + + <p>(3) The negative pole (straight electrode) was then placed vertically on + one of the poles of the electro-magnet. On excitation, the violet glow was + contracted into a small upright brush or column of bright light, with a slight + inclination to curvature.</p> + + <div class="sidenote">Tube laid + horizontally + across poles + of magnet.</div> + + <p>(4) The same Plücker tube was laid horizontally across the poles of the + electro-magnet (without armatures), the respective electrodes being above + each pole.</p> + + <span class="sidenote">Effects produced.</span> + + <p>From the negative (straight electrode) pole sprang a dense and compact + arc of violet light, in the direction of the magnetic curves, which terminated + at the upper circumference of the tube, but which, if prolonged, would have + followed the curves to the opposite pole. The stream from the positive pole + was very considerably brightened, as in the other experiments, but did not + appear in the form of rings or waves. It assumed that of a bright steady + continuous glow, which formed round the tube a not perfectly continuous, + but distinct and well-marked, spiral. This form of discharge seems connected + with the peculiar contour of the rings mentioned in experiment 2. One + might, indeed, conjecture the spiral-shaped glow to be a ring of light extended + or drawn out towards the negative pole.</p> + + <div class="sidenote">Effects like + those obtained + by + Gassiot.</div> + + <p>Experiment No. 2 seems in result very like that of Gassiot’s with his grand + battery and the Royal Institution magnet, the effects (though of course upon + a smaller scale) being similar to those obtained by him.</p> + + <h4 id="chap-16-3"><i>Effect of Magnet on Plücker Tube (Tin Chloride).</i></h4> + + <div class="sidenote">Plücker + tube (tin + chloride). + Lighting-up + described.</div> + + <p>A large Plücker tube was examined, which had a bulb attached at each + end, communicating with the central portion by a narrow neck or constriction. + On connexion with the small coil, a narrow stream of pale diffused + cobalt-blue light ran along the whole tube, from point to point of the electrodes, + the positive wire at the same time glowing with an aura of amber-yellow + light. (See Plate XVII. fig. 3, where the narrow stream of light is + shown by dotted lines.) At the two necks or constrictions the stream of + light was perceptibly brightened.</p> + + <div class="sidenote">Effects of + magnet + upon the + stream.</div> + + <p>When the magnet was connected, the stream in the positive bulb was not + much changed, but only slightly bent. In the central partition of the tube + and in the negative bulb, the stream of light was broken and split into a + number of smaller streams, and at the same time bent or forced against the + sides of the tube. (See Plate XVII. fig. 3.)</p> + + <div class="sidenote">Peculiar + noise within + the tube.</div> + + <p>In the central partition, the blue streamlets were accompanied by a number + of spark-like threads of golden light, which shone out among them as the + whole vibrated against the side of the tube; at the same time a peculiar + pattering, as of a miniature hail-storm within the tube, made it ring with a + slightly metallic tinkle.</p> + + <p>The direction of the bending or deflection of the stream was at right angles + to the axis of the poles of the magnet, and changed from side to side of the + tube as the direction of the current from the coil was varied.</p> + + <div class="sidenote">Spectrum + described. + Without + magnet. With the + magnet + excited.</div> + + <p>In the positive bulb the stream, instead of joining the point of the electrode, + left this and ran along one side of the whole length of the wire. (See effect, + Plate XVII. fig. 3.) The spectroscope was applied to the neck of one of the + bulbs where the stream was bright. Without the magnet a faint continuous + spectrum, mainly of the blue and green, with very slight traces of the yellow + and red, was seen. Upon this, five or six faint but sharp and metallic-looking + lines were seen. On the magnet being excited, the continuous spectrum was + not changed; but the sharp lines shone out brighter and clearer, one in the + blue being especially conspicuous. These lines were measured with a micrometer; + and their places being compared with Lecoq de Boisbaudran’s + “Spectres lumineux,†they were easily recognized to be those of tin. On + each excitation of the magnet the same brightening of the lines took place.</p> + + <h4 id="chap-16-4"><i>Effect of Magnet on Tin-Chloride Geissler Tube.</i></h4> + + <div class="sidenote">Geissler + tube, Sn Clâ‚„, + examined. + Glow described. Effect of + the magnet.</div> + + <p>We then examined a Geissler tube, marked Sn Clâ‚„. When first excited + by the small coil, the spark passed freely. The glow in the bulbs was of a + diffused, light purple tint; the positive electrode had a bright yellow glow + around it. The capillary stream was of a sharp green-yellow, at times + brightening up to a metallic-looking green. When the magnet was first + employed, the tube distinctly and permanently brightened up throughout.</p> + + <div class="sidenote">Spiral + formed in + positive + bulb. Glow in + tube extinguished.</div> + + <p>The negative bulb was not much changed in appearance; but in the + positive bulb a curious permanent and steady cloud-like spiral, of a purple + colour, made its appearance, and lasted while the tube was under the magnetic + influence. (See Plate XVII. fig. 12.) After a short time the tube seemed to + lose a great deal of its conducting-power, and to light up in a feeble and + intermittent manner, brightening only when the coil was made to work its + best. While in this condition, the magnet (which had been previously disconnected) + was excited, and at once what moderate glow was still shining in + the tube was totally extinguished. At first it was thought some accident + might have happened to the conducting-coil wires; but repeated trials satisfied + us that the effect was due to the magnetic influence alone. Efforts were + made, by looking to the coil and battery, to brighten up the tube as at first, + but they quite failed; and it was evident some change had taken place in its + conducting qualities. This tube was accidentally broken, so that we had no + opportunity to renew the experiments.</p> + + <div class="sidenote">Another tin-chloride + tube tried. + Glow described.</div> + + <p>We subsequently tried another tin-chloride tube, purchased of Mr. Browning. + This lighted up like the former tube, but brighter. There was an + amber glow at the junction of the negative bulb which adjoined the capillary + part. This was lost on putting on the magnet. At the same time a perceptible + pattering ringing noise was heard in the tube, and metallic-looking + threads of light ran through the bulbs.</p> + + <div class="sidenote">Spectrum + described.</div> + + <p>Without the magnet, the spectrum was a continuous faint misty one, with + bright lines of tin occasionally flashing up. With the magnet, the tin lines + at once shone out bright, strong, and clear upon a black background, the + change in effect being very marked.</p> + + </section> + + <!-- Chapitre 17_________________________________________________________ --> + <section class="chapter" id="chapter-17"> + <h3 class="titlechapter" id="chap-17">Effect of Magnet on bulbed Phosphorescent Tube</h3> + <p class="shorter">Effect of Magnet on bulbed Phosphorescent Tube</p> + + <div class="sidenote">Large phosphorescent + bulbed tube. Lighting-up + described. Spectrum + described. Glow when + discharge + stopped, described.</div> + + <p>Mr. John Browning kindly lent me a large phosphorescent tube with five + bulbs, said to be filled with anhydrous sulphurous-acid gas (SOâ‚‚). (See + Plate XVIII. fig. 1.) This tube lighted up beautifully with the large coil. + The connecting tubular parts of it were filled with a bright, beaded, transparent, + rosy light; while the bulbs glowed with a more opaque blue-tinted effect. The + spectrum of the tubular part was found to agree exactly with the principal + bright band seen in a SO₃ Geissler tube. The spectrum of the bulb-glow + was a faint green-blue continuous one, with bright bands or lines faintly flashing + up at times. When the discharge was stopped, the tube still glowed with + a moderately bright, opaque, grey-green light. This glow gradually faded out, + always commencing with the bulb forming the negative or violet pole, and so + dying out, bulb by bulb, towards the positive pole. The negative-pole bulb + at times was, on suddenly stopping the current, hardly lighted at all, the other + bulbs being luminous.</p> + + <div class="sidenote">Comparison + with SO₃ + Geissler + tube.</div> + + <p>(1) We compared the large tube with a SO₃ Geissler tube, by means of a + comparison-prism on the slit, with the result before detailed. The Geissler + tube, however, showed no after-glow.</p> + + <div class="sidenote">Effects in + bulbs on + lighting-up + the tube + described. Effects of + reversal of + the current. After-glow + restored by + passing of + current.</div> + + <p>(2) We lighted up the Browning tube with the large coil. The negative + bulb was always the least filled with the blue opaque vapour, and the other + bulbs increased in vapour-density in the order they approached towards the + positive bulb. When the current was reversed, so that the negative and positive + glow changed places, the negative bulb still remained transparent, + although the positive opaque glow had (presumably) been thrown into it. + When the after-glow had quite disappeared in the bulbs, it was again + strongly restored, by the passing of the current for a few seconds only through + the tube.</p> + + <div class="sidenote">Effect of + reversal of + current on + positive-pole + glow.</div> + + <p>(3) The tube was well excited, and the four bulbs (other than the negative + one), upon stopping the current, glowed strongly. The current was then sent + through reversed, so as to throw the negative glow for a few seconds into the + positive bulb. The after-glow in the positive bulb was at once extinguished. + On once more reversing the current, it was only restored after a certain + amount of continuance of the positive stream.</p> + + <figure class="plate" id="plate18"> + <!-- <img src="images/plate18.jpg" /> --> + <figcaption></figcaption> + </figure> + + <p></p> + + <div class="sidenote">Effect of + change of + current on + the three + central + bulbs.</div> + + <p>The time during which the negative glow was thrown into the positive bulb + did not appear sufficient to have heated it. After rapidly changing the + direction of the current several times and then stopping it, the three central + bulbs alone had an after-glow, the two extreme ones having none, being both + equally transparent.</p> + + <div class="sidenote">Effect of + heat on the + bulbs. Effect of + cooling by + ether-spray.</div> + + <p>(4) A moderate heat from a spirit-lamp was applied to the centre bulb (<i>a</i>) + while the current was on; and also (<i>b</i>) when this was stopped, and the bulb + glowed. In the first case the bulb was found to get more transparent; and in + the second case the after-glow disappeared in a proportionately shorter time + in the heated bulb than in the others. To test the result of cooling the bulbs, + the negative-pole bulb and also the central one were each subjected to the + action of ether-spray, and also of ether and water-spray mixed. This was + done, (<i>a</i>) when the current was passing, and (<i>b</i>) when it was stopped and the + glow only was in the bulb. The bulbs were cooled until a marked cold effect + to the touch was produced. We did not notice any difference in the behaviour + of the bulbs so treated as compared with the others, either when the current + was passing or in the case of the after-glow.</p> + + <div class="sidenote">Negative-pole + bulb + between the + armatures + of magnet. Effects on + negative + and positive + glow.</div> + + <p>(5) We placed the negative-pole bulb between the conical points of the + armatures, and excited the magnet. The negative glow contracted itself into + a condensed violet-tinted crescent, in accord with the magnetic curves. The + positive glow of the same bulb lost its beaded (stratified) character, and was + condensed into a bright stream of light, which latter protruded from the small + inner tube and formed a spreading spiral set of cloud-rings within the bulb + (see Plate XVIII. fig. 2). The action of the magnet seemed to be exercised + in subduing the stratification, condensing the glow into a bright stream of + light, and forcing the latter to “tail over†at each extremity of the tubular + joints into the bulbs—this effect extending even so far as the second bulb.</p> + + <p>When the positive bulb was placed between the poles of the magnet, the + glow was simply condensed into a bright stratified stream, which flew to either + side of the bulb.</p> + + <div class="sidenote">Effect of + magnet on + glow in bulb + No. 4.</div> + + <p>(6) <i>a.</i> Bulb No. 4 (see Plate XVIII. fig. 1) was placed between the poles + of the excited magnet, and the current was passed and then stopped. The + glow in that bulb faded away out of its order, and earlier than in ordinary + cases (nearly as soon as No. 2).</p> + + <div class="sidenote">Other bulbs + tested in + similar + manner.</div> + + <p><i>b.</i> The same and other bulbs were tested in a similar manner. In all cases + the bulb influenced by the magnet, when the current was stopped, was found + perceptibly fainter in after-glow.</p> + + <div class="sidenote">Effect of + magnet + upon the + after-glow + itself.</div> + + <p><i>c.</i> The tube was arranged with one of the bulbs between the poles of the + unexcited magnet; the current was passed and stopped, and the after-glow + obtained. The magnet being then quickly excited, the after-glow in the bulb, + under its influence, faded out; and the bulb became transparent, perceptibly + sooner than under ordinary circumstances. We tried this several times, with + the same result in each case.</p> + + <div class="sidenote">Mr. Thompson’s + experiments + on + action of + magnets + upon liquid + rings.</div> + + <p><i>Note.</i>—In relation to these experiments, it may be mentioned that Mr. S. + P. Thompson, of Bristol, is reported to have studied the action of magnetism + upon rings of coloured liquid projected through water, and to have observed + their retardation and partial destruction in passing through a powerful magnetic + field.</p> + + <div class="sidenote">Mr. Ladd’s + explanation + of some of + the phenomena + observed.</div> + + <p>Mr. Ladd has suggested to me that some of the phenomena produced indicate + a driving of the gas in the direction from the negative to the positive + pole—a theory which is supported by the action of the magnet on the bulbs, + if this be considered a repulsive one as regards the gas influenced.</p> + + <h4 id="chap-17-1"><i>Effect of Magnet on small Phosphorescent (powder) Tubes.</i></h4> + + <div class="sidenote">Tubes containing + phosphorescent + powders + described.</div> + + <p>We examined six vacuum-tubes containing phosphorescent powders, which, + upon exposure to sunlight and removal to the dark, or after passing of the + electric current over them, continued to glow in the tubes after the exciting + cause had ceased. They were of thin glass, and of equal calibre + throughout.</p> + + <p>One was 6½ inches long and â… inch in diameter, and had no label; + the other five were 7½ inches long and ½ inch in diameter, and were labelled + respectively:—</p> + + <ul> + <li>Strontium vert,</li> + <li><span class="ditto2">â€</span> jaune,</li> + <li>Calcium violet,</li> + <li><span class="ditto2">â€</span> orange,</li> + <li><span class="ditto2">â€</span> vert-bleuâtre.</li> + </ul> + + <div class="sidenote">Lighting-up + of the tubes + described. Effect of + magnet on + â…-diameter + tube. Spectrum + without + magnet.</div> + + <p>The powders in tubes of this description are said to contain either sulphide + of strontium, or calcium, or sulphate of quinine. The first-mentioned tube + shone with a white and bright light, and probably contained the latter substance. + The general effect of the current on the tubes was similar in all + cases. Under a sufficiently strong current, they lighted up with a brilliant, + slightly green-white glow; in which, however, by looking sideways, it was + possible to detect a delicate rosy tint. Any colours beyond these in the tubes + seemed to depend on the powders enclosed in them. When the current was + stopped, the powders alone glowed in accordance with the colours mentioned + on the labels, the rarefied gas or air in the tubes not giving any after-glow, as + in the case of the sulphurous-acid tube. When the â…-diameter tube was + excited by the small coil, the effect of the magnet was to entirely suppress + and extinguish the glow. When this and the other tubes were worked with + the larger coil, the spectrum, without the magnet, was bright and continuous, + either showing no lines or else very faint traces of them, and, extending through + the whole range of colours was brightest in and about the green.</p> + + <div class="sidenote">Magnet + effect on + glow. Same on + spectrum.</div> + + <p>With the magnet excited, a bright line of pink light was condensed against + the upper side of the tube; while the glow in the tube generally became very + decidedly fainter, except at the electrodes, which still preserved a certain + amount of brilliancy. The spectrum also was much changed. The bright + continuous glow became much fainter, and many sharp and fairly bright lines + were seen upon it. These lines were, as to character, not easy to recognize. + Hydrogen (F) was, however, plainly distinguished; and other lines, which we + considered to be N, were common to all the tubes. Some lines were also + remarked as being, without the magnet, not so constant.</p> + + <div class="sidenote">Tubes examined + and + compared + for spectra.</div> + + <p>Calcium orange and calcium violet, compared for spectra, were identical; + the two strontium tubes hardly so, but with strontium vert a bright continuous + spectrum mainly hid the lines.</p> + + <p>Strontium jaune and calcium orange were not alike; strontium vert and + calcium violet differed. Calcium orange and calcium vert-bleuâtre were + considered alike; but the comparison was not easy, as the calcium vert + was bright, and the lines were only seen faintly upon the continuous + spectrum.</p> + + <p>In order not to shift the powders, the tubes were laid horizontally, and two + spectra simultaneously examined across the tubes.</p> + + <h4 id="chap-17-2"><i>Lighting-up Tubes with One Wire only (Marquis of Salisbury’s Observations).</i></h4> + + <div class="sidenote">One wire + only connected + with + an electrode.</div> + + <p>The vacuum-tubes employed were examined in the usual way, but one wire + only was connected with an electrode. The other wire was attached to the + end of a glass rod, and circuit was from time to time completed while the + tube was before the spectroscope.</p> + + <p>The large coil was used. In all cases, with the one wire, the glow was very + faint as compared with that of the closed circuit.</p> + + <span class="sidenote">Ether vapour.</span> + + <p>(1) <i>Ether Vapour.</i>—With both wires, in company with the usual bright + bands of the carbon spectrum, shading-off towards the violet, the H lines were + very sharp and brilliant. With the one wire only, the carbon bands were left + faintly shining, with both sides nebulous alike, and with no shading-off towards + the violet. (We were not quite sure whether this was not the effect of the + reduction of the light.) The H lines, though originally stronger than the + carbon bands, quite disappeared from the spectrum.</p> + + <span class="sidenote">Coal-gas.</span> + + <p>(2) <i>Coal-gas.</i>—The same effects were produced; but we thought we could + detect very faint traces of the H lines.</p> + + <span class="sidenote">Nitrogen.</span> + + <p>(3) <i>Nitrogen.</i>—The N lines, as well as those of H (also seen in the + tube), were much fainter with one wire, but the H lines more so in proportion.</p> + + <span class="sidenote">Hydrogen.</span> + + <p>(4) <i>Hydrogen.</i>—Only a marked reduction in brilliancy of the whole + spectrum.</p> + + <div class="sidenote">Oxygen, N + and H.</div> + + <p>(5) <i>Oxygen.</i>—An impure tube, showing O (some of the lines hydrocarbon?), + N, and H spectra simultaneously. With one wire the O lines still remained + fairly bright, the N and H being only faintly seen.</p> + + <span class="sidenote">Water-gas.</span> + + <p>(6) <i>Water-gas.</i>—Same effect.</p> + + <div class="sidenote">Turpentine + vapour.</div> + + <p>(7) <i>Turpentine Vapour.</i>—Same effect as ether, but the H lines could be + faintly seen.</p> + + </section> + + <!-- Chapitre 18_________________________________________________________ --> + <section class="chapter" id="chapter-18"> + <h3 class="titlechapter" id="chap-18">Action of the Magnet on the Electric Spark</h3> + <p class="shorter">Action of the Magnet on the Electric Spark</p> + + <div class="sidenote">Apparatus + employed.</div> + + <p>The magnet was excited with two plates of the large battery, and the larger + coil with the other two plates, the action in both cases being strong.</p> + + <p>1. A spark from the coil was passed between two platinum wire electrodes, + about three centimetres apart.</p> + + <div class="sidenote">Spark + and aura + described.</div> + + <p>It consisted centrally of a thin stream of bluish-white light, vividly bright, + around which was seen a narrow, uniform, diffuse, yellow-tinted aura, which + accompanied the spark in all its movements. The spark always struck + across from the extreme points of the electrodes (see Plate XVII. fig. 5).</p> + + <div class="sidenote">Effect of + magnet + upon the + aura.</div> + + <p>2. On being placed between the conical poles of the excited magnet the + bright thread of the spark did not change; but instead of the inconsiderable + yellow-tinted aura which accompanied the unmagnetized spark, there now + struck out, at right angles to the magnet-poles, a thin rosy-tinted half-disk + of aura-like flame. This extended aura ran considerably along each electrode, + though the spark proper still struck from the points.</p> + + <div class="sidenote">Extended + aura described.</div> + + <p>The aura was somewhat larger in extent upon one electrode than on the + other. In the first case, it sprang from a considerable number of minute + illuminated points; on the other electrode, these illuminated points were + fewer in number, and the flame was more purple in tint. Reversing the + current these effects were reversed. The aura was uniformly thin and disk-like, + and the curved edge remarkably true in shape (see Plate XVII. fig. 6).</p> + + <p>The lateral direction of the aura was changed when the current was + reversed.</p> + + <div class="sidenote">Aura not + proportionate + to + length of + spark.</div> + + <p>3. The aura was found not proportionate to the length of the spark. + When the electrodes were approached, so as to very much shorten the spark, + the aura still sprang out to a distance and extent quite out of proportion to + the length of the spark. Even when the electrodes were approached so + close that the spark was very short indeed, still, under the magnetic influence, + a very considerable aura made its appearance.</p> + + <div class="sidenote">Effect of + working coil-break + upon + the aura.</div> + + <p>4. Upon working the coil-break, it was found that in proportion as the + contact screw was drawn apart from the break, so the aura gradually + diminished in extent, until at last, by continuing to increase the distance + between the screw and the break, a point was reached when thin bright + sparks, without any aura, passed. Upon the screw being worked up closer, + thicker sparks passed, and the aura again made its appearance. As the + aura diminished in size it gradually changed in tint from yellowish rose-pink + to purple.</p> + + <div class="sidenote">Spark taken + in glass + bulb.</div> + + <p>5. The spark was taken in a glass bulb, the tube in which it was blown + being open at both ends, with the same effect as in the open air.</p> + + <p>6. A plate of glass was laid on the poles of the magnet, and the spark was + passed <i>along</i> the poles (in the same direction as the heavy glass was laid in + the Faraday experiment). No aura was formed. The points were then + moved round, so as to carry the spark at right angles to the poles, and the + aura was formed as before.</p> + + <div class="sidenote">Aura could + be blown + away from + the spark.</div> + + <p>7. The aura, it was found, could be blown away at right angles to the + spark. When strongly urged, it assumed the shape of a flickering tongued + curtain of flame, flying away in the contrary direction to that from which the + current of air proceeded, and again returning to its original shape as the + impulse was removed. The spark proper was not influenced (see Plate XVII. + fig. 8).</p> + + <div class="sidenote">Effect of + withdrawing + spark from + central position + between + the poles.</div> + + <p>8. As the spark was withdrawn from its central position between the + poles of the magnet, the convex edge of the aura became gradually less + perfect, and assumed a ragged and broken-up appearance, the inequality at + times amounting almost to jets or flickering sprays of light. The spark was + also slightly curved away from the electrodes (see Plate XVII. fig. 7).</p> + + <div class="sidenote">Magnet had + no effect + upon condensed + spark.</div> + + <p>9. A condenser of four coated plates was introduced into the circuit, causing + a sharp brilliant blue-white spark, apparently divided into streams and with + no aura. The magnet had no effect whatever upon this form of spark.</p> + + </section> + + <!-- Chapitre 19_________________________________________________________ --> + <section class="chapter" id="chapter-19"> + <h3 class="titlechapter" id="chap-19">The Discharge <i>in vacuo</i> in Larger Vessels, and Magnetic Effects thereon</h3> + <p class="shorter">The Discharge <i>in vacuo</i> in Larger Vessels</p> + + <p>A Tate’s air-pump was used, and the spark from the larger coil. The + exhaustion could not be carried very far.</p> + + <div class="sidenote">Globular + receiver + described. Discharge + described.</div> + + <p>(1) A globular receiver was used, having brass caps for exhaustion, and + platinum wires passing through the opposite sides for electrodes (see Plate + XVIII. fig. 6). With partial exhaustion, from the positive electrode proceeded + long, sharp, bright, rosy sparks, striking in zigzags across the receiver. + From the negative terminal sprang a larger number of bluer and more diffuse + streams of light, like spiders’ webs; and these were enveloped, for a short + distance from the terminal, in a slight misty aura. Both sets played round + the sides of the glass as well as across.</p> + + <div class="sidenote">Bell-shaped + receiver + described. Discharge + described.</div> + + <p>(2) A bell-shaped receiver, with terminals inserted at the sides and one + also at the top, was next used (see Plate XVIII. fig. 9). When the side + terminals were employed, the effect was much the same as in the last case. + When the top terminal was used for one wire (the other wire being connected + with the pump-plate) a single stream of bright rosy light ran from the upper + terminal to the plate. First striking the central part of the plate, the stream + then glided towards one of the lateral terminals, and so to the edge of the + receiver. After partly discharging itself by contact with the terminal, the + stream as rapidly retreated to the centre of the plate again—this effect being + from time to time repeated while the current was passing. The current + being reversed, a number of bright, but weaker and more diffused, streams of + light had the appearance of shooting from the upper electrode, and of striking + upon the plate below; with a tendency to fly off from where they struck, in + a similar manner to the single stream before described. Where each stream + touched the plate a brilliant point of light appeared, and a strong pattering + noise was heard in the receiver.</p> + + <div class="sidenote">Bell-shaped + receiver + without + electrodes. Induction + discharge + described.</div> + + <p>(3) Another bell-shaped receiver of similar shape was used. This had no + electrodes forming a direct communication with the interior; but, in lieu of + these, two wafers of thin sheet brass were cemented, one inside and one outside + the glass, opposite to one another. On connexion being made with the + outside wafer, the effects produced by induction were similar to, and very + nearly as strong as, those in the cases where direct communication with the + interior of the receiver was made.</p> + + <div class="sidenote">Long large + tube exhausted + and + illuminated. Spiral form + of discharge.</div> + + <p>(4) A large tube, 24 inches long and 2 inches in diameter, with ball and + point electrodes respectively, was exhausted, and the current passed through + it. The effects were similar in most respects to those produced in the + globular and bell receivers, but the streams of light assumed a distinctly + spiral form in their passage (see Plate XVIII. fig. 5). This tube when placed + between the poles of the magnet showed no effect, except a slight condensation + of the streams of light towards the sides of the glass.</p> + + <div class="sidenote">Globular + receiver + again used.</div> + + <p>(5) The globular receiver first described was again used (the Tate pump + having been cleaned and working easier).</p> + + <div class="sidenote">Phosphorescent + after-glow + succeeding + the + spark.</div> + + <p>(<i>a</i>) When exhaustion was as good as it could be got, the spark struck + across in a single, slightly expanded, stream of rosy light, having a tendency + to curve upwards (see Plate XVIII. fig. 6). The electrodes had but little + glow round them, only just enough to distinguish the poles apart. When + the flow of the stream was interrupted by breaking contact with one terminal, + so that sparks passed in succession, we thought we detected a faint blue + phosphorescent after-glow succeeding each spark.</p> + + <div class="sidenote">Positive + wire only + attached.</div> + + <p>(<i>b</i>) The positive wire only was attached to one electrode, the negative + being unconnected. A set of faint whity-blue cobweb-looking streams of + light spread from the electrode all over the receiver, having a vibratory + motion. The spaces between these were dark, and there was no aura—the + effect being similar, but not quite so bright and pronounced, as when both + wires were attached (see Plate XVIII. fig. 7).</p> + + <div class="sidenote">Negative + wire only + attached.</div> + + <p>(<i>c</i>) The negative wire only was attached. The cobweb streams were + absent, or only shot out very occasionally. The main effect was a straight + nebulous stream of violet light, which commenced at the electrode and spread + out in a fan-shape towards the lower brass cap of the receiver; while, at the + same time, an aura or glow of similar light, but fainter in quality, spread + from the electrode over at least one half of the receiver. This aura would + no doubt have filled a small flask (see Plate XVIII. fig. 8).</p> + + <div class="sidenote">Effect of + gradual + exhaustion + on the + discharge.</div> + + <p>(<i>d</i>) When exhaustion was first commenced, both electrodes of the receiver + (both wires being connected) threw out spider-web-like streams, as in Experiment + 1, pale blue from the one pole and somewhat rosy from the other.</p> + + <p>As the exhaustion progressed the pale-blue streams disappeared, while the + rosy flickering ones diminished in quantity and extent until ultimately a + single rosy stream of light crossed the receiver as in Experiment 5<i>a</i>. Upon + admitting the air, these effects took place in an inverse order—the single + stream being gradually broken up, and the spider-webs taking its place.</p> + + <div class="sidenote">Globular + receiver + placed on + poles of the + magnet. Magnet + effect.</div> + + <p>(<i>e</i>) The exhausted globular receiver was placed upon the poles of the + excited magnet, with the stream at right angles to them. Looking across the + S. pole of the magnet, the negative electrode was on the left hand, and the + positive on the right. The effect of the magnet on the stream was apparently + to split it up into several; but this appearance must have been due to vibration + only, as a revolving mirror showed the stream as single. When the + current was reversed, the stream which, without the magnet, was somewhat + flickering and vibrating, slightly straightened at the positive pole, and the + whole stream became steadier.</p> + + <div class="sidenote">Single wires + attached.</div> + + <p>(<i>f</i>) Single wires were successively attached to the negative and positive + poles, and the cobweb streamers and glow before described obtained. The + magnet was found to have no decided effect on either of these.</p> + + <div class="sidenote">Plücker tube + placed between + poles + of magnet + with negative + wire + only attached.</div> + + <p>(6) The Plücker air-tube (Plate XVII. fig. 2) was placed between the + poles of the magnet, and the negative wire only was connected with the + straight electrode. A pale violet glow was seen round this electrode, and + another, but rather fainter, glow of a similar description at the ring electrode, + the intermediate space being filled with a salmon-coloured light. This violet + glow was condensed into an arc by the action of the magnet. Reversing the + current, the violet glow still remained at each electrode, and that between + the poles of the magnet was still influenced into an arc.</p> + + <div class="sidenote">Geissler + tube substituted, + with + similar + results.</div> + + <p>(7) An air Geissler tube was substituted for the Plücker tube, with very + much the same result. Whichever wire was attached, a violet glow appeared + at the connected electrode, and a fainter one of the same character at the + other; and the magnet influenced both. The connecting salmon-coloured + glow was faint.</p> + + <div class="sidenote">Globular + receiver + treated with + phosphoric + anhydride.</div> + + <p>(8<i>a</i>) The globular receiver had some phosphoric anhydride shaken into + it; and it was then exhausted. The cobweb streamers and violet glow each + appeared according to which wire was connected. There was no marked + difference between the receiver with the anhydride and without; except that in + the former case the streamers and glow were reduced in extent and strength, + and were comparatively faint.</p> + + <div class="sidenote">Discharge + in water-vapour + described.</div> + + <p>(<i>b</i>) The anhydride having been washed out, first with plain and afterwards + with distilled water, some drops of the latter were allowed to remain in the + receiver. On exhaustion a vapour-cloud was formed, and the discharge passed + (both terminals being connected with the coil) through this. The rosy stream + of light was formed as usual, but was more flickering and unsteady. As the + exhaustion was lessened, the rosy stream disappeared, and the cobweb streams + began to fill the receiver. These were, however, not so bright and sharp as + in a dry receiver, but were faint and broad; while some diffused and nebulous + streams of light, running (slightly bent) from pole to pole, and from ¼ to â…œ of + an inch broad, were intermixed with them. When one wire only was connected, + the glow and streamers from the electrode were very faint.</p> + + <div class="sidenote">Large bell-receiver + and + plate + described. Receiver + exhausted + and stream + of light + formed.</div> + + <p>(9) A large bell-shaped receiver, 11 × 8 inches, was next used. It was + open at the bottom, which was ground as usual; and had a small opening at + the top, also carrying a ground edge. A solid brass plate was prepared, + ground only round the edge (in order to take the receiver), and in the centre + of this brass plate were inserted two disks of soft iron, corresponding in + position and size with the poles of the Ladd electro-magnet (see Plate XVIII. + fig. 11). When this plate was placed on the magnet, the poles and disks were + in contact; and the disks became N. and S. poles within the receiver. A + small brass plate carrying a tap and exhaust-tube, and a binding-screw for + attaching an electrode within, closed the receiver at top. The receiver and + plate being placed on the magnet-poles, the former was exhausted until the + discharge became a rosy slightly-diffused stream of light; with a small unilluminated + space between it and the negative pole, where the usual violet + glow appeared round the wire.</p> + + <p>This stream of light was used for the experiments after detailed. In some + cases the conical armatures were placed within the receiver, in others the + disks alone were used as the magnetic poles.</p> + + <div class="sidenote">Effect on + same when + magnet + excited.</div> + + <p>(<i>a</i>) With the apparatus arranged as shown on Plate XVIII. fig. 10, and + the magnet excited, a violet glow appeared round the end of the wire + which was negative. A small unilluminated space then intervening, the + stream ran in a curve between the wire and the armature, which latter was + positive. The stream was not steady and had a tendency to rotate; but as + this was better observed with the disks only, it is described further on.</p> + + <div class="sidenote">Experiments + with + the conical + armature + removed. Vibrating + stream.</div> + + <p>(<i>b</i>) The conical armature within the receiver was removed, and the stream + allowed to connect with the centre of the pump-plate. When the magnet + was excited, the stream was violently projected at right angles to the poles, + with a vibrating movement to either side according to the direction of the + current. When the wire was positive the movement was towards the left, + with a slight inclination towards the N. pole. When the wire was negative + the movement was to the right, but in a rather strong curve towards the + N. pole. The vibrating motion was very distinct, and gave the appearance + of six or seven streams running off at regular intervals (see Plate XVIII. + fig. 12).</p> + + <div class="sidenote">Rotating + wire over + S. pole.</div> + + <p>(<i>c</i>) The wire was next placed over the centre of the disk forming the S. + pole. With the wire negative and the pole positive, rotation of the stream + was decidedly, but not very strongly, from right to left from the centre of the + plate (as the hands of a watch). With the wire positive and the pole + negative, rotation was strongly left to right, with a disposition to spiral twist + in the stream (see Plate XVIII. fig. 13).</p> + + <div class="sidenote">Same over + N. pole.</div> + + <p>(<i>d</i>) The wire was placed over the disk forming the N. pole. With the + wire negative and the pole positive, rotation of the stream was left to right. + With the wire positive and the pole negative, rotation was right to left (see + Plate XVIII. fig. 14).</p> + + <div class="sidenote">Stream + thrown + across the + receiver + above the + magnet-poles.</div> + + <p>(<i>e</i>) The stream was thrown across the receiver from the lateral binding-screws + above, and at right angles to, the disks, and afterwards in the opposite + direction, <i>i. e.</i> along them. In neither case was there any marked change + when the magnet was excited.</p> + + <p>(<i>f</i>) The conical armatures were placed with the pointed ends upon the + disks in the receiver, and the stream thrown above and along them. It + diverged—one part running straight across between the electrodes, whilst + another stream and some cobwebs ran from each electrode to its nearest pole. + The streams and cobwebs flickered a good deal. There was no marked + change when the magnet was excited.</p> + + <h4 id="chap-19-1"><i>Some of Baron Reichenbach’s Magnetic Researches tested.</i></h4> + + <div class="sidenote">Baron Reichenbach’s + researches.</div> + + <p>In 1846 Dr. W. Gregory published an abstract of Baron Reichenbach’s + ‘Researches on Magnetism and on certain allied subjects, including a supposed + new Imponderable.’</p> + + <div class="sidenote">Auroræ considered + to be + magnetic + lights. Flames + seen by + “sensitive†+ persons.</div> + + <p>From a paragraph in this work, it would seem that the Baron considered + his observations as tending to an explanation of the Aurora Borealis; and, + since it was generally admitted that these phenomena occur within our + atmosphere, that there appeared a great probability of Auroræ being visible + magnetic lights. The Baron, in the original work, fully describes the Aurora + Borealis; and concludes it must be similar in its nature to the flames of light + seen streaming from the magnet-poles by Mdlle. Reichel and other sensitive + patients of the Baron’s. It is unfortunate that these flames were only seen + by certain “sensitive†persons. The drawings given of them, too, show no + analogy to the magnetic curves.</p> + + <p></p> + + <div class="sidenote">Magnet + tested for + such flames.</div> + + <p>Having the opportunity of a powerful magnet in that used during our + tube-experiments, we made an attempt to detect the Baron’s magnetic flames, + on or around the poles of our magnet, in a perfectly dark room. Arrangements + were made to silently connect and disconnect the battery with the + magnet, without the knowledge of any one except the operator. The experiment + proved a complete failure; no flames or discharges of light of any kind + were to be seen. The observers were five in number, two gentlemen and + three ladies, but not one of the party proved “sensitive.â€</p> + + <div class="sidenote">Mr. Brooks’s + experiments + on action of + the magnet + on a sensitive + photographic + plate.</div> + + <p>Some experiments made by Mr. W. Brooks, and detailed in a paper read + by him before the South London Photographic Society, seem to corroborate + (to a certain extent) the statements made by the Baron in regard to the + influence of the magnet on a sensitive photographic plate.</p> + + <p>Remembering, however, how it has been demonstrated that light may be + “bottled up†as an actinic source for a considerable period of time, it seems + a question whether the images obtained were not due to some such source + rather than to any magnetic aura.</p> + + <p></p> + + <h4 id="chap-19-2">SUMMARY OF THE FOREGOING EXPERIMENTS AND THEIR RESULTS.</h4> + + <div class="sidenote">Summary of + the experiments.</div> + + <p>Chapter XIV. Action of magnet on glow and spectrum of Geissler gas + vacuum-tubes demonstrated.</p> + + <p>Chapter XV. Action of magnet on glass capillary tube negatived. + Faraday’s experiment with heavy-glass bar repeated.</p> + + <p>Chapter XVI. Action of magnet on glow in wide air-tube demonstrated. + Note on stratification. In Plücker tube, action of magnet on negative pole + (arc formed) and positive pole (Gassiot’s rings produced) demonstrated. + Effects of magnet upon glow and spectrum of tin-chloride vacuum-tubes + demonstrated.</p> + + <p>Chapter XVII. Effect of magnet upon after-glow in a bulbed phosphorescent + tube demonstrated. Effect of magnet upon glow in small phosphorescent + (powder) tubes examined. Marquis of Salisbury’s experiments + (lighting-up with one wire only) tested, and confirmatory results arrived at.</p> + + <p>Chapter XVIII. Action of magnet on aura of electric spark demonstrated.</p> + + <p>Chapter XIX. Effects of magnet on discharges <i>in vacuo</i> in larger vessels + demonstrated. Ã…ngström’s flask experiment tested; same results not obtained + unless one wire only was connected. Experiments demonstrating the action + of a magnet on an electric stream, viz. vibration between, and rotation round, + poles. Baron Reichenbach’s magnetic flames tested without result.</p> + + </section> + + <!-- Chapitre 20_________________________________________________________ --> + <section class="chapter" id="chapter-20"> + <h3 class="titlechapter" id="chap-20">Some concluding Remarks</h3> + <p class="shorter">Some concluding Remarks</p> + + + <p>It is usual, in concluding a work on a special subject, to sum up its contents, + and to examine the general results arrived at. This, however, it is not easy + to do in the present case. The contents of our volume comprise a short + history of the Aurora, its qualities and spectrum; and a statement has been + given of the several conclusions at which various observers have arrived as to + its character and causes. In the present state of our knowledge of the subject, + to add an opinion to these might seem to savour of presumption; and the + questions involved may perhaps be better treated as still <i>sub judice</i>, and as + requiring further and fuller evidence before arriving at a verdict. The + following observations must therefore be taken rather as further notes and + memoranda, than as conclusions. Apart from the spectroscopic questions + involved, the oldest and most received theory of the Aurora—that of its being + some form of electric discharge in the more rarefied regions of the atmosphere,—seems + to hold its own: and if, as is probable, some form of phosphorescence + is involved in the discharge, M. Lecoq de Boisbaudran’s observations + on the brightening of the red line under the influence of cold, and the falling + of the yellow-green line within a band of phosphoretted hydrogen, come into + play; and a connexion, though slight and imperfect, may be in this respect + traced between the discharge and its spectrum. The experiments detailed in + Part II. seem to have an important bearing, as showing the very marked + effect of the magnet on the rarefied glow, as well as on the spark in air at + ordinary pressure. The well-defined arc formed by the aura of the spark, the + flickering jets which replace the even edge of the arc when partially withdrawn + from the magnetic influence, and the streamers formed when the aura + is blown away from the spark (Plate XVII. figs. 6, 7, and 8), are certainly + highly suggestive of frequent forms of Auroral discharge; and, but for trial + and failure, might lead one to expect results from a comparison of the line + air-spectrum with that of the Aurora. The experiments with a wire attached + to one electrode only, show how the glow may be affected and varied in colour + and character when the discharge is interrupted and incomplete. Differences + in electric tension may also considerably vary the character of the discharge.</p> + + <p></p> + + <p>The influence of the magnet in exciting and brightening the glow and + spectrum of one gas, while it depresses and extinguishes the glow and spectrum + of another gas in the same tube, suggests an explanation of the observed + variation in intensity, and difference in number, of the Aurora-lines. + Intensity of lines depending on temperature, and this again on resistance, + and it appearing that resistance is influenced by the magnetic action, the + same effects of brightening or depressing of the spectrum are probably produced + in the Aurora, as in the vacuum-tubes placed between the magnet-poles.</p> + + <p>In the Marquis of Salisbury’s observations, paraffin-vapour gave C and H + lines when connected with both poles of the battery, but C lines only when + connected with one pole; and in that case the lines were equally sharp on + both sides. These observations (repeated in our experiments) may afford an + explanation why the hydrogen-lines are not seen in the Aurora-spectrum; + although there can be hardly any doubt that the phenomenon usually takes + place in air more or less moist. Professor Ã…ngström’s researches on the violet-pole + glow are not entirely corroborated by our experiments; and it seems + doubtful whether his results in the exhausted flask were not obtained from + the negative pole only. One great difficulty in the comparison of the Aurora-spectrum + with the violet pole of air-tubes and some other spectra (including + oxygen), arises from the presence in the latter of broad bands; and it is difficult + to understand how these bands can be aptly compared with the definite, + though faint, lines observed by Dr. Vogel and others in the Aurora-spectrum. + It must, too, be borne in mind that the conditions under which we may consider + the Aurora to obtain, are such as can be only very imperfectly imitated + in the laboratory. Auroræ also no doubt differ in density and thickness of + layer; and Kirchhoff’s observation must be remembered:—“That if thickness + of a film of vapour be increased, the lines are increased in intensity, the + bright lines more slowly than the fainter; and it may happen that the spectrum + appears to be totally changed when the mass of the vapour is altered.†+ Were it possible to test with the spectroscope a cloud or film of gaseous + vapour corresponding in some degree in density and thickness with an + Auroral discharge, we might perhaps get nearer the truth. Mr. Procter also + remarks (as we proved in our magnet experiments):—“That frequently very + small traces appropriate to themselves the whole of electrical discharges at + low pressures, and completely mask the spectra of any other gases present.†+ The oxygen-spectrum, with its possible variation by the conversion of that + gas into the allotropic condition termed ozone, seemed at first to afford a + prospect of close relation to the Aurora-spectrum; which, however, disappeared + on closer examination. If nitrogen could be modified in some such + way as oxygen is converted into ozone, it might perhaps afford another opportunity + for investigation; but we have no evidence at present of such a change. + The spectrum of nitrogen is usually found singularly distinct and persistent; + and, except as varied from band to line by intensity of the discharge, not + liable to alteration <span class="footnote">Dr. Schuster has found that while the line-spectrum of lightning is attributable to N, it has + also a band-spectrum, which he considers due to O and a slight trace of COâ‚‚ (Phil. Mag. 5th ser. + vol. vii. p. 321).</span>.</p> + + <p>Colours of lines are functions of wave-length, subject, however, to the + observation that in a weak spectrum the colours lose their intensity. The + red line in the Aurora has sometimes been found brighter than the green. + It has been suggested that the red and green may be independent spectra; + but the variations of tint observed in the capillary of hydrogen and other + tubes according to resistance of the current, demonstrate that the varying + colours of the Aurora may be connected with the lighting-up of particular + parts of the spectrum, and do not necessarily indicate that different gases and + spectra are excited.</p> + + <p>Absorption may also play an important part in the nature of the Aurora-spectrum + (Zöllner’s theory that the lines are really spaces between absorption + bands). Most gases will give a continuous spectrum under certain circumstances, + even at a low pressure.</p> + + <p>The question of cosmic dust is inviting, but the facts collated hardly + warrant at present its probable connexion with the Aurora.</p> + + <p>If Auroræ were composed of incandescent glowing meteors, it would be + reasonable to expect to find in the spectrum the lines of iron, a metal constituting + so prominently the composition of meteorites. No connexion between + the iron and the Aurora-spectra is, however, proved; though it may be + suspected. The iron-spectrum, as remarked elsewhere, contains so many lines + that some may, as a mere accidental circumstance, closely agree with the + Aurora-lines.</p> + + <p>The iron-lines are, it may be remarked, as a rule, sharper and finer than + the Auroral lines, though it is possible that these characteristics might vary + if the spectrum were obtained in a rarefied medium. Tubes with iron terminals + are said to evolve a compound gas of H and Fe. I have not had an + opportunity to verify this.</p> + + <p></p> + + <p>It may be added that the comparative faintness of the more refrangible + lines of the Aurora-spectrum suggests a feeble resistance to the exciting current, + and a low temperature inconsistent with a meteoric theory; and this is + not contradicted by the brightness of the red and green lines, if these are due + to a phosphorescent origin. Expansion of a line is recognized to be dependent + on pressure, and consequently the breadth of the green or red lines might + indicate the height of the Aurora; while their brightness or otherwise might + also give some idea as to its density. No observations in this direction have, + as far as I am aware, been recorded.</p> + + <p>As the general result of spectrum work on the Aurora up to the present + time, we seem to have quite failed in finding any spectrum which, as to position, + intensity, and general character of lines, well coincides with that of the + Aurora. Indeed, we may say we do not find any spectrum so nearly allied to + portions even of the Aurora-spectrum, as to lead us to conclude that we have + discovered the true nature of one spectrum of the Aurora (supposing it to + comprise, as some consider, two or more). The whole subject may be characterized + as still a scientific mystery—which, however, we may hope some future + observers, armed with spectroscopes of large aperture and low dispersion, but + with sufficient means of measurement of line positions, and possibly aided by + photography, may help to solve. The singular absence of Auroræ has, for + some time past, given no opportunity in that direction. May some of my + readers be more fortunate in obtaining opportunities of viewing the glorious + sky-fires, and assist to unravel so interesting a paradox!</p> + + </section> + + + <section id="appendices"> + <h2 id="part-app">Appendices</h2> + + <!-- Appendix A_________________________________________________________ --> + + + <section class="appendix" id="appendix-a"> + + <h3 class="titleapp" id="app-a">References to some works and essays on the aurora</h3> + <p class="shorter">References to some works and essays on the aurora</p> + + + + <p class="note-titre">(Most of these are cited in the ‘Edinburgh Encyclopædia’ and the ‘Encyclopædia Britannica.’)</p> + + <div class="hanging"> + + <p>Musschenbroek, Instit. Phys. c. 41.</p> + + <p>‘Trai. Phys. et Hist. de l’Aurore Boréale,’ par M. de Mairan. Paris, 1754.</p> + + <p>Beccaria, ‘Dell’Elettricismo Artif. e Nat.’ p. 221.</p> + + <p>Smith’s ‘Optics,’ p. 69.</p> + + <p>D’Alembert’s ‘Opuscules Mathématiques,’ vol. vi. p. 334.</p> + + <p>‘Philosophical Transactions’ as under:—</p> + + <div></div> + + <table summary="References in Philosophical Transactions" id="table-appa-01"> + <thead> + <tr> + <th>Vol.</th> + <th>Pages</th> + </tr> + </thead> + <tr> + <td>1716</td> + <td>406</td> + </tr> + <tr> + <td>1717</td> + <td>584, 586</td> + </tr> + <tr> + <td>1719</td> + <td>1099, 1101, 1104, 1107</td> + </tr> + <tr> + <td>1720</td> + <td>21</td> + </tr> + <tr> + <td>1721</td> + <td>180, 186</td> + </tr> + <tr> + <td>1723</td> + <td>300</td> + </tr> + <tr> + <td>1724</td> + <td>175</td> + </tr> + <tr> + <td>1726</td> + <td>128, 132, 150</td> + </tr> + <tr> + <td>1727</td> + <td>245, 301</td> + </tr> + <tr> + <td>1728</td> + <td>453</td> + </tr> + <tr> + <td>1729</td> + <td>137</td> + </tr> + <tr> + <td>1730</td> + <td>279</td> + </tr> + <tr> + <td>1731</td> + <td>53-55</td> + </tr> + <tr> + <td>1734</td> + <td>243, 291</td> + </tr> + <tr> + <td>1736</td> + <td>241</td> + </tr> + <tr> + <td>1740</td> + <td>368</td> + </tr> + <tr> + <td>1741</td> + <td>744, 839, 840, 843</td> + </tr> + <tr> + <td>1750</td> + <td>319, 345, 346, 499</td> + </tr> + <tr> + <td>1751</td> + <td>39, 126</td> + </tr> + <tr> + <td>1752</td> + <td>169</td> + </tr> + <tr> + <td>1753</td> + <td>85</td> + </tr> + <tr> + <td>1762</td> + <td>474, 479</td> + </tr> + <tr> + <td>1764</td> + <td>326, 332</td> + </tr> + <tr> + <td>1767</td> + <td>108</td> + </tr> + <tr> + <td>1769</td> + <td>86, 307</td> + </tr> + <tr> + <td>1770</td> + <td>532</td> + </tr> + <tr> + <td>1774</td> + <td>128</td> + </tr> + <tr> + <td>1781</td> + <td>228</td> + </tr> + <tr> + <td>1790</td> + <td>32, 47, 101</td> + </tr> + </table> + + <p></p> + + <p>‘Miscell. Berolinens.’ 1710, vol. i. p. 131.</p> + + <p>‘Comment. Petrop.’ tom. i. p. 351, tom. iv. p. 121.</p> + + <p>‘Acta Petrop.’ 1780, vol. iv. p. 1.</p> + + <p>‘Mem. Acad. Paris,’ 1747, pp. 363, 423; 1731; 1751.</p> + + <p>‘Mem. Acad. Berl.’ 1710, vol. i. p. 131; 1747, p. 117.</p> + + <p>Schwed. ‘Abhandlungen,’ 1752, p. 169; 1753, p. 85; 1764, pp. 200, 251.</p> + + <p>Bergman, ‘Opusc.’ vol. v. p. 272.</p> + + <p>‘Americ. Trans.’ vol. i. p. 404.</p> + + <p>‘Mém. de Mathémat. et Phys.’ tom. viii. p. 180.</p> + + <p>Rozier, vol. xiii. p. 409; vol. xv. p. 128; vol. xxxiii. p. 153.</p> + + <p>Franklin’s Works, vol. ii.</p> + + <p>Weidler, ‘De Aurora Boreale.’ 4to.</p> + + <p>Nocetus, ‘De Iride et Aurora Boreale, cum Notis Boscovisch.’ Rome, 1747.</p> + + <p>Chiminello, ‘Mem. Soc. Ital.’ vol. vii. p. 153.</p> + + <p>Gilbert’s ‘Journal,’ vol. xv. p. 206; and (particularly) Dr. T. Young’s ‘Nat. + Phil.’ vol. i. pp. 687, 716, and vol. ii. p. 488.</p> + + <p>Wiedeburg, ‘Ueber die Nordlichter.’ Jena, 1771.</p> + + <p>Hüpsch, ‘Untersuchung des Nordlichts.’ Cologne, 1778.</p> + + <p>Van Swinden, ‘Recueil de Mémoires.’ Hague, 1784.</p> + + <p>Wilke, ‘Von den neuesten Erklärungen des Nordlichts,’ Schwed. Mus. + Wismar, 1783.</p> + + <p>Dalton’s ‘Meteor. Observ.’ 1793, pp. 54, 153.</p> + + <p>Loomis, ‘Sill. Journal,’ 2nd series, xxxii. p. 324; xxxiv. p. 34. The same, + 3rd series, v. p. 245; B. V. Marsh, 3rd series, xxxi. p. 311.</p> + + <p>Oettingen and Vogel, Pogg. Ann. cxlvi. pp. 284, 569.</p> + + <p>Galle and Sirks, <i>ibid.</i> cxlvi. p. 133; cxlix. p. 112.</p> + + <p>Silbermann, ‘Comptes Rendus,’ lxviii. pp. 1049, 1120, 1140, 1164.</p> + + <p>Prof. Fritz, “Geog. Distrib.,†Petermann’s Mitth., Oct. 1874.</p> + + <p>Zehfuss, ‘Physikalische Theorie.’ Adelman, Frankfort.</p> + + <p>‘Nature,’ iii. pp. 6, 7, 28, 104, 126, 346, 348, 510; iv. pp. 209, 213, 345, 497, + 505; x. 211 (Ã…ngström).</p> + + <p>‘Edinburgh Astronomical Observations,’ vol. xiv. 1870-1877.</p> + + <p>‘English Mechanic,’ No. 461 (January 23, 1874), pp. 445-447; and No. 462, + pp. 475, 476.</p> + + </div> + + </section> + + <!-- Appendix B_________________________________________________________ --> + <section class="appendix" id="appendix-b"> + + <h3 class="titleapp" id="app-b">Extracts from the manual and instructions for the (english) arctic expedition, 1875</h3> + <p class="shorter">Extracts from the manual and instructions for the (english) arctic expedition, 1875</p> + + + + + <h4><i>Note on Auroral Observations. By Prof. <span class="smcap">Stokes</span>, Sec. R.S.</i></h4> + + <p>The frequency of the Aurora in Arctic regions affords peculiar facilities for + the study of the general features of the phenomenon, as in case the observer + thinks he has perceived any law he will probably soon, and repeatedly, have + opportunities of confronting it with observation. The following points are + worthy of attention:—</p> + + <p><i>Streamers.</i>—It is well known that, at least as a rule, the streamers are + parallel to the dipping-needle, as is inferred from the observation that they + form arcs of great circles passing through the magnetic zenith. It has been + stated, however, that they have sometimes been seen curved. Should any thing + of this kind be noticed, the observer ought to note the circumstances most + carefully. He should notice particularly whether it is one and the same + streamer that is curved, or whether the curvature is apparent only, and arises + from the circumstance that a number of short, straight streamers start from + bases so arranged that the luminosity as a whole presents the form of a curved + band.</p> + + <p>Have the streamers any lateral motion? and if so, is it from right to left or + left to right, or sometimes one and sometimes the other, according to the + quarter of the heavens in which the streamer is seen, or other circumstances? + Again, if there be lateral motion, is it that the individual streamers move + sideways, or that fresh streamers arise to one side of the former, or partly the + one and partly the other? Do streamers, or does some portion of a system of + streamers, appear to have any uniform relation to clouds, as if they sprang + from them? Can stars be seen immediately under the base of streamers? Do + streamers appear to have any definite relation to mountains? Are they ever + seen between the observer and a mountain, so as to appear to be projected on + it? This or any other indication of a low origin ought to be most carefully + described.</p> + + <p>When streamers form a corona, the character of it should be described.</p> + + <p><i>Auroral Arches.</i>—Are arches always perpendicular to the magnetic meridian? + If incomplete, do they grow laterally? and if so, in what manner, and + towards which side? Do they always move from north (magnetic) to south? + and if so, is it by a southerly motion of the individual streamers, or by new + streamers springing up to the south of the old ones? What (by estimation, + or by reference to known stars) may be the breadth of the arch in different + positions in its progress? Do arches appear to be nothing but congeries of + streamers, or to have an independent existence? What relations, if any, have + they to clouds? and if related, to what kind of clouds are they related?</p> + + <p><i>Pulsations.</i>—Do pulsations travel in any invariable direction? What time + do they take to get from one part of the heavens to another? Are they running + sheets of continuous light, or fixed patches which become luminous, or + more luminous, in rapid succession? and if patches, do these appear to be + foreshortened streamers? Are the same patches luminous in successive + pulsations?</p> + + <p><i>Sounds</i> (?).—As some have suspected the Aurora to be accompanied by + sound, the observer’s attention should be directed to this question when an + Aurora is seen during a calm. If sound be suspected, the observer should + endeavour, by changing his position, brushing off spicules of ice from the + neighbourhood of the ears, his whiskers, &c., to ascertain whether it can be + referred to the action of such wind as there is on some part of his dress or + person. If it should clearly appear that it is not referable to the wind, then + the circumstance of its occurrence, its character, its relation (if any) to bursts + of light, should be most carefully noted.</p> + + <p>These questions are prepared merely to lead the observer to direct his + attention to various features of the phenomenon. Answers are not demanded, + except in such cases as definite answers can be given; and the observer should + keep his attention alive to observe and regard any other features which may + appear to be of interest. It is desirable that drawings should be made of + remarkable displays.</p> + + <p>Observations with Sir William Thomson’s electrometer would be very + interesting in connexion with the Aurora, especially a comparison of the + readings before, during, and after a passage of the Aurora across the zenith.</p> + + <p></p> + + <h4><i>Spectroscopic Observations. By Prof. <span class="smcap">G. G. Stokes</span>, Sec. R.S. <br/>Spectrum of the Aurora.</i></h4> + + + <p>The spectrum of the Aurora contains a well-known conspicuous bright line + in the yellowish green, which has been accurately observed. There are also + other bright lines of greater refrangibility, the determination of the positions + of which is more difficult on account of their faintness, and there are also one + or more lines in the red, in red auroras.</p> + + <p>Advantage should be taken of an unusually bright display to determine the + positions of the fainter lines. That of the brightest lines, though well known, + should be measured at the same time to control the observations. The character + of the lines (<i>i. e.</i> whether they are strictly lines, showing images of the + apparent breadth of the slit, or narrow bands, sharply defined or shaded-off) + should also be stated.</p> + + <p>Sometimes a faint gleam of light is seen at night in the sky, the origin of + which (supposed from the presence of clouds) is doubtful. A spectroscope of + the roughest description may in such cases be usefully employed to determine + whether the light is auroral or not, as in the former case the auroral + origin is detected by the chief bright line. The observer may thus be led + to be on the look-out for a display which otherwise might have been + missed.</p> + + <p>It has been said, however, that the auroral light does not in all cases exhibit + bright lines, but sometimes, at least in the eastern and western arch of the + Aurora, shows a continuous spectrum. This statement should be confronted + with observation, special care being taken that the auroral light be not confounded + with light which, though seen in the same direction, is of a different + origin, such, for example, as light from a bank of haze illuminated by the + moon.</p> + + <p>Sir Edward Sabine once observed an auroral arch to one side (say north) of + the ship, which was in darkness. Presently the arch could no longer be seen, + but there was a general diffuse light, so that a man at the mast-head could be + seen. Later still, the ship was again in darkness, and an auroral arch was + seen to the south.</p> + + <p>Should any thing of the kind be observed, the whole of the circumstances + ought to be carefully noted, and the spectroscope applied to the diffuse + light.</p> + + <p></p> + + <h4><i>Polarization of Light. By <span class="smcap">W. Spottiswoode</span>, M.A., LL.D., Treas. R.S.</i></h4> + + <p>It has been suggested that the Aurora, inasmuch as it presents a structural + character, may afford traces of polarization. Having reference to the fact that + the striæ of the electric discharge in vacuum-tubes present no such feature, the + probability of the suggestion may be doubted. But it will still be worth while + to put the question to an experimental test.</p> + + <p>If traces of polarization be detected, it must not at once be concluded that + the light of the Aurora is polarized; for the Aurora may be seen on the background + of a sky illuminated by the moon, or by the sun, if not too far below + the horizon, and the light from either of these sources is, in general, more or + less polarized; therefore, if the light of the Aurora is suspected to be polarized, + the polariscope should be directed to an adjacent portion of clear sky, free + from Aurora, but illuminated by the moon or sun as nearly as possible + similar, and similarly situated to the former portion; and the observer must + then judge whether the polarization first observed be merely due to the illumination + of the sky.</p> + + <p>The presence of polarization is to be determined:—</p> + + <p>(1) With a Nicol’s prism, by observing the light through it by turning the + prism round on its axis, and by examining whether the light appears brightest + in some positions and least bright in others. If such be the case, the positions + will be found to be at right angles to one another. The direction of + “the plane of polarization†will be determined by that of the Nicol at either + of these critical positions. The plane of polarization of the light transmitted + by a Nicol, is parallel to the longer diagonal of the face; and, accordingly, the + plane of polarization, or partial polarization, of the observed light is parallel + to the longer diameter of the Nicol when the transmitted light is at its greatest + intensity, or to the shorter when it is at its least.</p> + + <p>(2) The observation with a double-image prism is similar to that with a + Nicol. This instrument, as its name implies, gives the images which would + be seen through the Nicol in two rectangular positions, both at once, so that + they can be directly compared; and when in observing polarized light the + instrument is turned so that one image is at a maximum, the other is + simultaneously at a minimum. Both these methods of observation, (1) and + (2), are especially suitable for faint light; because in such a case the eye is + better able to appreciate differences of intensity than differences of colour.</p> + + <p>(3) The observation with a biquartz differs from (1) only by holding a biquartz + (a right-handed and a left-handed quartz cemented side by side) at a + convenient distance beyond the Nicol, and by observing whether colour is or + is not produced. If the Nicol be so turned that the two parts of the biquartz + give the same colour (choose the neutral tint, <i>teint de passage</i>, rather than the + yellow), we can detect a change in the position of the plane of polarization by + a change in colour, one half verging towards red, the other towards blue. This + observation is obviously applicable to a change in the plane, either at different + parts of the phenomenon at the same time, or at the same parts at different + times.</p> + + <p>(4) We may use a Savart’s polariscope, which shows a series of coloured + bands in the field of view. For two positions at right angles to one another + corresponding to the two critical positions of a Nicol, these bands are most + strongly developed; for two positions midway between the former the bands + vanish. In the instruments here furnished, the plane of polarization of the + observed light will be parallel to the bands when the central one is light, perpendicular + to them when the central band is dark.</p> + + <h4><i>Instructions in the use of the Spectroscopes supplied to the Arctic Expedition.</i> + <i>By <span class="smcap">J. Norman Lockyer</span>, F.R.S.</i><br/><i>Spectroscopic Work.</i></h4> + + <p>Scales prepared on Mr. Capron’s plan, together with forms for recording + positions, also accompany the instrument.</p> + + <p>In using these, carefully insert the principal solar lines in their places + on the forms, as taken from a fine slit, and keep copies of this scale for use. + If the slit opens <i>only on one</i> side, note on scale in which direction the lines + widen out, whether towards red or violet. Also fill up some of these forms + with gas and other spectra, as taken at leisure <i>with the same instrument</i> and + scale.</p> + + <p>When observing, close the slit (after first wide opening it) as much as + light will permit, and then with pen or pencil record the lines as seen upon + the micrometer-scale on the corresponding part of the form, and note <i>at once + relative intensities</i> with Greek letters, α, β, &c. (or numbers).</p> + + <p>Reduce at leisure line-places on scale to wave-lengths, and note as to each + line the <i>probable limits of instrumental error</i>.</p> + + <p>In case the auroral spectrum is so faint that the needle-point or micrometer-scale + is invisible, half of the field of view may be covered with tinfoil, + with a perfectly straight smooth edge running along the diameter of the field, + in perfect focus, and parallel to the lines of the spectra. The reading-screw + being set to 10, the bending-screw should then be adjusted so that the green + line of the Aurora is just eclipsed behind the blackened edge of the tinfoil. A + similar eclipse of other lines will give their positions.</p> + + <p>In this instrument the reference-prism is brought into action by turning the + slipping piece to which is fixed the two terminals. Care should be taken that + the prism itself is adjusted before commencing observations, as it may be shaken + out of position on the voyage. The tubes provided for the reference-spectra + may be either fastened to the terminals or arranged in some other manner. + The air-spectrum may also be used as a reference-spectrum. To get this, + two wires should be screwed into the insulators, their ends being at such + a distance apart and in such a position that the spectrum is well seen.</p> + + <h4><i>General Observations regarding the Spectrum of the Aurora</i> <span class="footnote">In these observations some suggestions made by Mr. Capron have been incorporated.</i><br/>[This was Mr. Lockyer’s note. In point of fact, the Author was responsible for the verbatim + paragraphs comprised between the letters A and B, and C and D, in the instructions as now + reprinted.]</span></h4> + + <p>Note appearance, colour, &c. of <i>arc</i>, <i>streamers</i>, <i>corona</i>, and <i>patches</i> of light.</p> + + <p>Get compass positions of principal features, and <i>note any change of magnetic + intensity</i>. If corona forms, take its position and apparent height.</p> + + <p>Look out for <i>phosphorescence</i> of Aurora and adjacent clouds. Listen for + reported sounds. Note any peculiarity of cloud scenery, prior to or pending + the Aurora.</p> + + <p>Sketch principal features of the display, and indicate on this sketch the + parts spectroscopically examined.</p> + + <p>Examine line in <i>red</i> specially in reference to its assumed connexion with + <i>telluric</i> lines (little <b>a</b> group), and note <i>as to its brightening in sympathy with + any of the other lines</i>.</p> + + <p>Examine line in yellow-green (Ã…ngström’s) as to <i>brightness</i>, <i>width</i>, and + <i>sharpness</i> (<i>or nebulosity</i>) at the edges. Notice as to a peculiar <i>flickering</i> in this + line sometimes seen; note also whether this line is <i>brighter</i> (or the reverse) + <i>with a fall of temperature</i>. Note <i>ozone</i> papers at the time of Aurora.</p> + + <p>Note whether the Auroræ can by their spectra be classed into distinct types + or forms, and examine for <i>different spectra</i> as under:—</p> + + + <p>α. The auroral <i>glow</i>, pure and simple.</p> + + <p>β. The white arc.</p> + + <p>γ. The streamers and corona.</p> + + <p>δ. Any phosphorescent or other patches of light, or light cloud in or + near the Auroræ.</p> + + + <p>The information collected together in the ‘Manual’ should be carefully + consulted, and the line of observations suggested by Ã…ngström’s later work + followed out. To do this, not only record the positions of any features you + may observe in the spectrum, but endeavour to determine, if any, and if so + which, of the features vary together. Compare, for instance, the two spectra + of nitrogen in the Geissler tube supplied, by observing first the narrow and + then the wider parts of the tube. It will be seen that the difference in colour + and spectrum results simply from an addition to the spectrum in the shape of + a series of channelled spaces in the more refrangible end in the case of the + spectrum of the narrow portion.</p> + + <p>Try to determine whether the difference between red and green Auroras + may arise from such a cause as this, and which class has the simpler + spectrum.</p> + + <p>See whether indications of great auroral activity are associated with the + widening or increased brilliancy of any of the auroral lines.</p> + + <p>Remember that if auroral displays are due to gaseous particles thrown into + vibration of electric disturbance, increased electric tension may either (1) dissociate + those particles and thus give rise to a new spectrum, the one previously + observed becoming dimmer; or (2) throw the particles into more intense + vibration without dissociation, and thus give rise to new lines, those previously + observed becoming brighter.</p> + + <p>Careful records of auroral phenomena from both ships may enable the + height of some, observed from both, to be determined. It will be very important + that those the heights of which are determined by such means should be + carefully observed by the spectroscope, in order to observe whether certain + characteristics of the spectrum can be associated with the height of the + Aurora.</p> + + </section> + + <!-- Appendix C_________________________________________________________ --> + <section class="appendix" id="appendix-c"> + + <h3 class="titleapp" id="app-c"> + Extracts from parliamentary blue book, containing the “Results derived from the arctic expedition 1875-76†(Eyre and Spottiswoode, 1878) + </h3> + <p class="shorter">Extracts from parliamentary blue book</p> + + + + + <h4><i>Auroras observed 1875-1876, at Floebery Beach and Discovery Bay. By Lieutenant <span class="smcap">A. C. Parr</span>, R.N.</i></h4> + + + <p>Though the auroral glow was often present, and served in some degree + to lighten the darkness of the sky during the long winter, when the moon + was absent, the actual appearances of the Aurora itself were few, and the + nimbus worthy of any particular remark extremely small. Those which + were stationary assumed the form of low arches, with streamers flashing + up to them from the horizon, and usually to the eastward. But the more + common form was for an arch to appear low down in some part of the sky + where the glow was brightest; at first it was very faint and narrow, but as it + rose gradually in the heavens it would increase both in size and intensity, till + on arriving near the zenith, with its ends extending nearly to the horizon, it + would be about the breadth of three or four rainbows, and its colour that of + white fleecy clouds lit up by the rays of the full moon. On reaching this + point, however, its course was nearly run; for after appearing to remain + stationary, as little white gaps would suddenly rend the arch asunder, the + portions thus detached seemed to roll together and concentrate all their + brightness in the smaller space, and then gradually fade away and become + extinct. Sometimes a very pale green would show itself in the more luminous + patches, and once or twice there was a slight suspicion of red; but never was + the whole sky illuminated by streams running in all directions, and forming + coronæ, while these colours varied every moment.</p> + + <p>When instead of the arch rising up from the horizon a streamer appeared, + its origin was in the north. From the northern horizon it would stretch out + towards the zenith, passing nearly overhead, and reaching to within a few + degrees of the land to the south. In appearance they would be the same as + the arches, but sometimes a second would grow out of the first, and on one + occasion three were visible at the same time. They had lateral motion either + from east to west, or west to east, but there was no flashing to brighten them, + and they gradually faded away.</p> + + <p>The time at which Auroras usually occurred was between 9 <span class="smcapuc">P.M.</span> and midnight, + the last display being on February 19th, commencing at 11 <span class="smcapuc">P.M.</span> It + was a beautifully clear night, without mist or haze of any description, and + small stars visible close down to the horizon. At the above-named hour two + arches made their appearance, and remained stationary; the lower one was + the brighter, being of a pale green colour, its centre bearing E.S.E. (true), + and having an altitude of about 5°, with a breadth of about twice that of a + rainbow. The second arch was concentric with the first, and about 7° above + it, but rather broader and fainter. These arches maintained their altitude, + the upper one at about the same intensity, but that of the lower one varied + considerably. It would gradually lighten up, then send flashes to the upper + one, then break up and fade away; before, however, it had quite disappeared, + flashes would come up to it from the horizon which seemed to endue it with + new life, for the arch would be reformed, brighten up, and the same performance + would be again repeated. This occurred three or four times in the + course of three quarters of an hour; but the flashes from the horizon never + extended beyond the lower arch, and those from the lower never went beyond + the upper. During this display the citron-line was obtained very clearly + with the spectroscope, but no other lines were visible.</p> + + <p>On six or seven occasions Auroras were visible at the same time on board + both the ‘Alert’ and ‘Discovery;’ but the absence of characteristic features + makes it impossible to determine whether they were the same display, or + merely two distinct ones which happened to occur at the same time. But as + by far the larger number of those recorded in the one ship were not visible + at the other, it was certainly only under exceptional conditions that they + could be simultaneously observed at both stations, if, indeed, they ever were. + Auroras seemed to appear indifferently both when there was wind and when + it was calm, with either a high or low barometer, and seemed quite unconnected + with the temperature, although on an occasion the thermometer was + observed to fall 3° during the display, and to rise 2° almost immediately afterwards. + But it was never seen illuminating the edges of clouds, as we saw it + on the passage home, nor playing about the outline of the land, and never + was there the slightest suspicion of sound being produced by it.</p> + + <p></p> + + <p>The opportunities for observing the spectrum of the Aurora in this position + have been most unsatisfactory, as the displays were small in number and + deficient in brilliancy.</p> + + <p>The form they generally assumed was to rise like an arch from a portion + of the horizon where there was a luminous glow, at first very faint, but gradually + increasing in brilliancy till near the zenith, where it would remain + stationary for a short time and then break up and disappear. Sometimes + they would rise up as streamers, but only occasionally was more than one + visible at a time, and they lasted for such a short time, that even if they had + been bright it would have been very difficult to make satisfactory observations.</p> + + <p>Very few showed any signs of colour, and those only the slightest tinge. + Nearly all that were observed gave the citron-line with the small pocket + spectroscope with more or less distinctness, though no signs of any other + lines were ever seen; but on only two occasions was it bright enough to get + the line with Nury’s spectroscope, and then only for such a short time that + a satisfactory measure could not be obtained.</p> + + <p class="separator"></p> + + <p>Then follows a descriptive list of the Auroræ seen, from which I have + selected three of the finest, viz. January 2nd, February 14th, and February + 19th, 1876.</p> + + <p>January 2nd, 1876. Lieut. Parr. <i>Floeberg Beach.</i>—9 <span class="smcapuc">P.M.</span> Streams of + Aurora. Stars shining brightly.</p> + + <p>Register. <i>Discovery Bay.</i>—9 <span class="smcapuc">P.M.</span> Observed an Aurora like a pale band + of light in the form of an arch whose centre was on the true meridian and + 15° from the zenith. It shortly afterwards broke up into feathered edges, + their direction being a little to the eastward of the zenith. The arch grew + fainter, and shifted to the eastward of the meridian four points; the left + extremity of the arch faded away, and the right assumed the shape of the + folds of a curtain doubled over. The weather was clear and calm. The display + lasted upwards of 30 minutes.</p> + + <p>A spectroscope, one of Browning’s 8-in. direct-vision, was directed towards + the Aurora, but the light was not sufficient to give any spectrum.</p> + + <p>The temperature was -39°. Barometer 29·56 inches. No wind. Clouds + stratus 2. Eight meteors were observed during the time the Aurora was + visible.</p> + + <p>February 14th. Register. <i>Discovery Bay.</i>—At 2 <span class="smcapuc">A.M.</span> a faint Aurora + passing across the heavens from S.E. to S.W. was observed, like an arch of + a pale colour. It lasted only a short time, and was very indistinct. Temperature + -47°. Barometer 30·44 inches. No wind or clouds.</p> + + <p>Lieut. Aldrich. <i>Floeberg Beach.</i>—2 <span class="smcapuc">A.M.</span> A faint Aurora towards the + S.W. Weather calm. Cumulus-stratus clouds 3. Temperature -46°. + 8 <span class="smcapuc">P.M.</span> Faint flashes of Aurora in the E. and S.W.</p> + + <p>Lieut. Aldrich and Lieut. Parr. <i>Floeberg Beach.</i>—11.50 <span class="smcapuc">P.M.</span> A moderately + bright arch of Aurora extended from due N. to about S.S.W., where + it terminated close down to the horizon in a crook turned to the eastward. + In a few moments a streamer flashed from the end of the crook parallel to + the first and right across the heavens, its edges being quite sharp and parallel + to each other. A third streamer shot up a minute afterwards, but did not + extend more than 80° upwards. The streamers were visible for a very short + time, the first remaining longest. The second-named arch gradually faded + away till within a few degrees of the S.S.W. horizon, and (still being a continuation + of the crook) bent round to the eastward, and towards the horizon, + going on to what was left of the stump of the third arc. A lateral motion + to the eastward now began, the whole body gradually turning round until it + disappeared about due south. Stars were visible through it at its brightest, + but not very distinctly. This is the most intense and variegated Aurora we + have experienced, but scarcely any colours were to be seen. Temperature + -51°. Barometer 30·43 inches, stationary. Calm weather. Clouds cumulus + 1. Preceded and followed by calm weather.</p> + + <p>Meteorological Register. <i>Discovery Bay.</i>—9.15 <span class="smcapuc">P.M.</span> An Aurora was + observed to the southward, spreading out like a fan in separate ways. It + was faint. A few cirro-stratus clouds were visible, apparently between the + observer and the Aurora. It lasted about 40 minutes, and then gradually + faded away. Temperature -47°. Barometer 30·51 inches, stationary. No + wind. Clouds cirro-stratus 4.</p> + + <p>February 19th. Meteorological Report. <i>Discovery Bay.</i>—9.45 <span class="smcapuc">P.M.</span> An + Aurora like a fluted arch, with rays flashing towards the Pole, was observed + spanning the hills from the south to the east. The direction of the lines of + light from all parts of the arch was towards the zenith. Above the arch a + pale band of colour appeared, like a secondary arch above the other. It + appeared very much as if it was caused by the reflected light of the Aurora. + The Aurora was bright for a few seconds, and then gradually died away. It + lasted altogether about 30 minutes. The centre of the arch bore S.E., having + an altitude of about 30°. The secondary arch was about 15° above the + former. Both arches were of a pale light colour, the upper one very faint. + Temperature -34°. Barometer 29·87 inches, rising rapidly. Weather calm. + Misty. No clouds.</p> + + <p>Lieut. Parr. <i>Floeberg Beach.</i>—An Aurora appeared shortly after 11 P.M., + consisting of bright arch, whose centre bore about E.S.E., and had an altitude + of about 5°, with a second broader and fainter arch about 7° above the + first. These arches maintained their altitudes, the upper one at about the + same intensity, but that of the lower one varied considerably. It would + gradually brighten up, then send streamers up to the second, then break up + into light patches, and gradually fade away. This happened three or four + times during the 40 minutes that the display lasted. At times streamers + would come up from the horizon to the lower arch, for it was a splendidly + clear night, and seemed to brighten it up, but none of them extended beyond + it. Neither did the streamers from the lower arch extend beyond the upper + one. It was slightly green in colour when brightest, and the citron-line was + well defined, but no others were visible. Temperature -46°. Barometer + 29·95 inches, steady. Weather calm. Cumulus clouds 4. Misty.</p> + + + <table class="borders"> + <caption><span class="smcap">Table</span> of <span class="smcap">Dates</span> when <span class="smcap">Auroras</span> were observed by the <span class="smcap">Arctic Expedition</span>, 1875-76</caption> + <thead> + <tr> + <th colspan="3">Date.</th> + <th>H.M.S. ‘Alert,’ Floeberg Beach.</th> + <th>H.M.S. ‘Discovery,’ Discovery Bay.</th> + </tr> + </thead> + <tr> + <td class="bl nobr">1875,</td> + <td class="nobr">October</td> + <td class="tdr">25</td> + <td>11.45 <span class="smcapuc">P.M.</span> Faint.</td> + <td>Cloudy.</td> + </tr> + <tr> + <td class="center bl nobr">â€</td> + <td class="center nobr">â€</td> + <td class="tdr">26</td> + <td>10 <span class="smcapuc">P.M.</span> Very faint.</td> + <td>10 <span class="smcapuc">P.M.</span></td> + </tr> + <tr> + <td class="center bl nobr">â€</td> + <td class="center nobr">â€</td> + <td class="tdr">30</td> + <td>Sky obscured. Faint.</td> + <td>Ditto.</td> + </tr> + <tr> + <td class="center bl nobr">â€</td> + <td class="nobr">November</td> + <td class="tdr">1</td> + <td>Ditto. Faint, but well marked.</td> + <td>Ditto.</td> + </tr> + <tr> + <td class="center bl nobr">â€</td> + <td class="center nobr">â€</td> + <td class="tdr">2</td> + <td>9 to 10 <span class="smcapuc">P.M.</span> Arches and streamers.</td> + <td>A few clouds.</td> + </tr> + <tr> + <td class="center bl nobr">â€</td> + <td class="center nobr">â€</td> + <td class="tdr">21</td> + <td>Ditto. Bright streamer.</td> + <td>9 to 10 <span class="smcapuc">P.M.</span> and 10 to 11 <span class="smcapuc">P.M.</span></td> + </tr> + <tr> + <td class="center bl nobr">â€</td> + <td class="center nobr">â€</td> + <td class="tdr">22</td> + <td>2 <span class="smcapuc">P.M.</span> and 8 <span class="smcapuc">P.M.</span> Slight, red.</td> + <td>Clear sky.</td> + </tr> + <tr> + <td class="center bl nobr">â€</td> + <td class="center nobr">â€</td> + <td class="tdr">25</td> + <td>9.30 <span class="smcapuc">A.M.</span> Character not recorded.</td> + <td>Ditto.</td> + </tr> + <tr> + <td class="center bl nobr">â€</td> + <td class="center nobr">â€</td> + <td class="tdr">26</td> + <td>10 <span class="smcapuc">A.M.</span> Stream of light.</td> + <td rowspan="2"><span class="x2">}</span> A few clouds. 10 <span class="smcapuc">P.M.</span></td> + </tr> + <tr> + <td class="center bl nobr">â€</td> + <td class="center nobr">â€</td> + <td class="tdr">26</td> + <td>Cloudy to 10 <span class="smcapuc">P.M.</span>, bright afterwards.</td> + </tr> + <tr> + <td class="center bl nobr">â€</td> + <td class="center nobr">â€</td> + <td class="tdr">27</td> + <td>Midnight. Slight.</td> + <td>11.40 <span class="smcapuc">P.M.</span></td> + </tr> + <tr> + <td class="center bl nobr">â€</td> + <td class="center nobr">â€</td> + <td class="tdr">28</td> + <td>1 <span class="smcapuc">A.M.</span> Bright streak.</td> + <td>Clear sky.</td> + </tr> + <tr> + <td class="center bl nobr">â€</td> + <td class="center nobr">â€</td> + <td class="tdr">29</td> + <td>Cloudy, brighter at 11 <span class="smcapuc">A.M.</span> Faint glow.</td> + <td>9.30 <span class="smcapuc">A.M.</span></td> + </tr> + <tr> + <td class="center bl nobr">â€</td> + <td class="center nobr">â€</td> + <td class="tdr">30</td> + <td>A few clouds. Very faint.</td> + <td>4.30 <span class="smcapuc">A.M.</span></td> + </tr> + <tr> + <td class="center bl nobr">â€</td> + <td class="center nobr">â€</td> + <td class="tdr">30</td> + <td>5 <span class="smcapuc">P.M.</span>, 8 <span class="smcapuc">P.M.</span>, and 10 <span class="smcapuc">P.M.</span> Flashes.</td> + <td>5 <span class="smcapuc">P.M.</span></td> + </tr> + <tr> + <td class="center bl nobr">â€</td> + <td class="nobr">December</td> + <td class="tdr">2</td> + <td>Evening. Streamers.</td> + <td>Clear sky.</td> + </tr> + <tr> + <td class="center bl nobr">â€</td> + <td class="center nobr">â€</td> + <td class="tdr">3</td> + <td>1 <span class="smcapuc">A.M.</span> Flashes.</td> + <td>Ditto.</td> + </tr> + <tr> + <td class="center bl nobr">â€</td> + <td class="center nobr">â€</td> + <td class="tdr">3</td> + <td>Bright sky. Faint Aurora.</td> + <td>2.30 <span class="smcapuc">P.M.</span></td> + </tr> + <tr> + <td class="center bl nobr">â€</td> + <td class="center nobr">â€</td> + <td class="tdr">16</td> + <td>10 <span class="smcapuc">P.M.</span> Slight; showed citron-line.</td> + <td>11 <span class="smcapuc">P.M.</span></td> + </tr> + <tr> + <td class="center bl nobr">â€</td> + <td class="center nobr">â€</td> + <td class="tdr">19</td> + <td>3 <span class="smcapuc">P.M.</span> to 5 <span class="smcapuc">P.M.</span>, faint; and 9 to 10 <span class="smcapuc">P.M.</span>, moderately bright arc.</td> + <td>Very clear sky.</td> + </tr> + <tr> + <td class="center bl nobr">â€</td> + <td class="center nobr">â€</td> + <td class="tdr">22</td> + <td>10 <span class="smcapuc">P.M.</span> Slight.</td> + <td>Ditto.</td> + </tr> + <tr> + <td class="center bl nobr">â€</td> + <td class="center nobr">â€</td> + <td class="tdr">23</td> + <td>6 <span class="smcapuc">P.M.</span> Ditto.</td> + <td>Ditto.</td> + </tr> + <tr> + <td class="center bl nobr">â€</td> + <td class="center nobr">â€</td> + <td class="tdr">24</td> + <td>Misty, a few stars visible. Arch.</td> + <td>9 <span class="smcapuc">A.M.</span></td> + </tr> + <tr> + <td class="center bl nobr">â€</td> + <td class="center nobr">â€</td> + <td class="tdr">26</td> + <td>Very bright sky. Faint.</td> + <td>6 <span class="smcapuc">P.M.</span></td> + </tr> + <tr> + <td class="center bl nobr">â€</td> + <td class="center nobr">â€</td> + <td class="tdr">29</td> + <td>Ditto. Very faint.</td> + <td>6.15 <span class="smcapuc">P.M.</span></td> + </tr> + <tr> + <td class="center bl nobr">â€</td> + <td class="center nobr">â€</td> + <td class="tdr">31</td> + <td>4 <span class="smcapuc">P.M.</span> Same.</td> + <td>Sky obscured.</td> + </tr> + <tr> + <td class="bl nobr">1876,</td> + <td class="nobr">January</td> + <td class="tdr">1</td> + <td>5 <span class="smcapuc">P.M.</span> and 11 <span class="smcapuc">P.M.</span> Slight.</td> + <td>A few clouds.</td> + </tr> + <tr> + <td class="center bl nobr">â€</td> + <td class="center nobr">â€</td> + <td class="tdr">2</td> + <td>9 <span class="smcapuc">P.M.</span> Described and figured.</td> + <td>9 <span class="smcapuc">P.M.</span></td> + </tr> + <tr> + <td class="center bl nobr">â€</td> + <td class="center nobr">â€</td> + <td class="tdr">17</td> + <td>Very bright sky. Very faint streamers.</td> + <td>9.25 <span class="smcapuc">A.M.</span></td> + </tr> + <tr> + <td class="center bl nobr">â€</td> + <td class="center nobr">â€</td> + <td class="tdr">18</td> + <td>9.45 <span class="smcapuc">P.M.</span> and 10.5 <span class="smcapuc">P.M.</span> Character not recorded.</td> + <td>10.15 <span class="smcapuc">P.M.</span></td> + </tr> + <tr> + <td class="center bl nobr">â€</td> + <td class="center nobr">â€</td> + <td class="tdr">19</td> + <td>Very bright sky. Faint.</td> + <td>9.45 <span class="smcapuc">P.M.</span></td> + </tr> + <tr> + <td class="center bl nobr">â€</td> + <td class="center nobr">â€</td> + <td class="tdr">20</td> + <td>2 <span class="smcapuc">A.M.</span> Slight.</td> + <td>2.30 <span class="smcapuc">A.M.</span></td> + </tr> + <tr> + <td class="center bl nobr">â€</td> + <td class="center nobr">â€</td> + <td class="tdr">23</td> + <td>7.55 <span class="smcapuc">A.M.</span> and 2 <span class="smcapuc">P.M.</span> Slight.</td> + <td>8.45 <span class="smcapuc">P.M.</span></td> + </tr> + <tr> + <td class="center bl nobr">â€</td> + <td class="center nobr">â€</td> + <td class="tdr">24</td> + <td>Bright sky. Slight flash.</td> + <td>2 <span class="smcapuc">A.M.</span></td> + </tr> + <tr> + <td class="center bl nobr">â€</td> + <td class="center nobr">â€</td> + <td class="tdr">24</td> + <td>5 <span class="smcapuc">P.M.</span> and 11.15 <span class="smcapuc">P.M.</span> Faint Aurora.</td> + <td>Very clear sky.</td> + </tr> + <tr> + <td class="center bl nobr">â€</td> + <td class="center nobr">â€</td> + <td class="tdr">27</td> + <td>2 <span class="smcapuc">A.M.</span> to 3.45 <span class="smcapuc">A.M.</span> Faint.</td> + <td>1 <span class="smcapuc">A.M.</span> to 4 <span class="smcapuc">A.M.</span></td> + </tr> + <tr> + <td class="center bl nobr">â€</td> + <td class="center nobr">â€</td> + <td class="tdr">27</td> + <td>Very bright sky. Faint double arch.</td> + <td>8.30 <span class="smcapuc">P.M.</span></td> + </tr> + <tr> + <td class="center bl nobr">â€</td> + <td class="center nobr">â€</td> + <td class="tdr">28</td> + <td>6 <span class="smcapuc">P.M.</span> and 7 to 9 <span class="smcapuc">P.M.</span> Faint flashes.</td> + <td>7.20 <span class="smcapuc">P.M.</span></td> + </tr> + <tr> + <td class="center bl nobr">â€</td> + <td class="center nobr">â€</td> + <td class="tdr">30</td> + <td>8 <span class="smcapuc">P.M.</span> Streak.</td> + <td>7.50 to 9 <span class="smcapuc">P.M.</span></td> + </tr> + <tr> + <td class="center bl nobr">â€</td> + <td class="center nobr">â€</td> + <td class="tdr">31</td> + <td>8.30 <span class="smcapuc">A.M.</span> and 7.30 <span class="smcapuc">P.M.</span> Very faint.</td> + <td>8.25 <span class="smcapuc">A.M.</span>, 5.30 <span class="smcapuc">P.M.</span></td> + </tr> + <tr> + <td class="center bl nobr">â€</td> + <td class="nobr">February</td> + <td class="tdr">3</td> + <td>10 <span class="smcapuc">P.M.</span> Slight flash.</td> + <td>Very clear sky.</td> + </tr> + <tr> + <td class="center bl nobr">â€</td> + <td class="center nobr">â€</td> + <td class="tdr">11</td> + <td>Sky obscured. Very faint.</td> + <td>11 <span class="smcapuc">P.M.</span></td> + </tr> + <tr> + <td class="center bl nobr">â€</td> + <td class="center nobr">â€</td> + <td class="tdr">13</td> + <td>11 <span class="smcapuc">P.M.</span> Flashes.</td> + <td>Clear sky.</td> + </tr> + <tr> + <td class="center bl nobr">â€</td> + <td class="center nobr">â€</td> + <td class="tdr">14</td> + <td>2 <span class="smcapuc">A.M.</span>, 9.15 to 10 <span class="smcapuc">P.M.</span> Described and figured.</td> + <td>2 <span class="smcapuc">A.M.</span> and 11.50 <span class="smcapuc">P.M.</span></td> + </tr> + <tr> + <td class="center bl nobr">â€</td> + <td class="center nobr">â€</td> + <td class="tdr">19</td> + <td>9.45 <span class="smcapuc">P.M.</span></td> + <td>11 <span class="smcapuc">P.M.</span></td> + </tr> + <tr> + <td class="center bl nobr">â€</td> + <td class="center nobr">â€</td> + <td class="tdr">20</td> + <td>2 <span class="smcapuc">A.M.</span> Very faint.</td> + <td>2.30 <span class="smcapuc">A.M.</span></td> + </tr> + <tr> + <td class="center bl nobr">â€</td> + <td class="center nobr">â€</td> + <td class="tdr">22</td> + <td>2 <span class="smcapuc">A.M.</span> Character not recorded.</td> + <td>Very clear sky.</td> + </tr> + <tr> + <td class="center bl nobr">â€</td> + <td class="center nobr">â€</td> + <td class="tdr">24</td> + <td>Bright sky. Very faint.</td> + <td>Midnight.</td> + </tr> + <tr> + <td class="center nobr bl bb">â€</td> + <td class="center nobr bb">â€</td> + <td class="tdr bb">26</td> + <td class="bb">10 <span class="smcapuc">P.M.</span> and 11 <span class="smcapuc">P.M.</span> Faint flashes.</td> + <td class="bb">Sky obscured.</td> + </tr> + </table> + + <p>I have added to the above Table the character of the Aurora in each instance as taken from the fuller + descriptions given.—J. R. C.</p> + + <h4><i>Auroras and Magnetic Disturbances.</i></h4> + + <p>The appearances of Auroras and the synchronous movements of the declinometer-magnet + were subjects of special observation during the stay of the + ‘Alert’ and ‘Discovery’ at their winter-quarters. The Table on page 187 + gives the dates and hours when Auroras were visible. On all occasions they + were observed to be faint, with none of those brilliant manifestations which + are described by our own officers as seen at Point Barrow, and by the Austro-Hungarian + Expedition at Franz-Josef Land, where the magnetical instruments + were so sensibly disturbed.</p> + + <p>These phenomena were not observed either in the ‘Alert’ or the ‘Discovery,’ + especially no connexion between magnetical disturbances and the + appearances of Auroras could be traced.</p> + + <p>This is quite in accordance with the remarks of previous observers within + the region comprehended between the meridians of 60° and 90° west, and + north of the parallel of 73° north. For example:—</p> + + <p>In the Phil. Trans. 1826, Part IV. p. 76, Capt. Parry and Lieut. Foster + remark, in the discussion of their magnetical observations at Port Bowen:—“As + far, however, as our own observations extended, we have reason to believe + that on no occasion were the needles in the slightest degree affected by + Aurora, meteors, or any other perceptible atmospheric phenomenon.â€</p> + + <p>Again, in the Smithsonian Contributions, vol. x., 1858, Mr. A. Schott, in<span class="pagenum"><a name="Page_187" id="Page_187">[187]</a><br /><a name="Page_188" id="Page_188">[188]</a></span> + his discussion of Dr. Kane’s observations at Van Rensselaer Harbour, in + 1854, remarks—“In conformity with the supposed periodicity of this phenomenon + as recognized by Professor Olmstead, no brilliant and complete + Auroras have been seen; with an exception of very few, they may all be + placed in his fourth class, to which the most simple forms of appearances + have been referred.†The following statement is given in the same page + as a footnote:—“The processes have no apparent connexion with the magnetic + dip, and in <i>no</i> case did the needle of our unifilar indicate disturbance.â€</p> + + <p class="separator"></p> + <p>The following description of the Aurora observed on 21st November, 1875, + is given by Commander Markham and Lieut. Giffard, in their abstract of + observations at Floeberg Beach:—</p> + + <p>“Between 10 and 11 <span class="smcapuc">P.M.</span> bright broad streamers of the Aurora appeared + 10° or 15° above the north horizon, stretching through the zenith, and terminating + in an irregular curve about 25° above the south horizon, bearing + S.S.W. During the Aurora’s greatest brilliancy the magnet was observed + during five minutes to be undisturbed.â€</p> + + <div class="smaller"> + + <p>[<i>Note.</i>—I applied for a loan of the lithographic stones to enable me to give copies of the three + diagrams of Auroræ referred to in the Arctic “Results;†but the Lords Commissioners of H.M. + Treasury refused this, except on the terms of my paying one third of the original cost of production + of such diagrams. I did not think it worth while to accept these conditions. Only one of the + drawings has any special interest; and this is a “curtain†Aurora, similar to that figured on + Plate II. of this work.—J. R. C.]</p> + + </div> + + </section> + + <!-- Appendix D_________________________________________________________ --> + <section class="appendix" id="appendix-d"> + + + <h3 class="titleapp" id="app-d"> + The Aurora and Ozone + </h3> + <p class="shorter"> + The Aurora and Ozone + </p> + + + + + + <p><span class="sidenote">Aurora and ozone. Dr. Allnatt’s notes and conclusions deduced therefrom.</span>While Part I. was in the press, Dr. Allnatt, formerly of Frant, and for many + years the well-known meteorological contributor to ‘The Times’ newspaper, + kindly placed at my disposal his large series of notes. Upon an examination + of these we came to the following conclusions:—</p> + + <p>1. That Auroral periods are also periods of comparative abundance of + ozone.</p> + + <p>2. That instances are by no means wanting in which an abnormal development + of ozone appears to be coincident with the manifestation of an + Aurora.</p> + + + + <p>In reference to the first point, it is found, as the result of an examination + of Dr. Allnatt’s notes, that particular years and months are notable at once + for Auroræ and for ozone in abundance. <span class="sidenote">Year 1870 remarkable for sun-spots, auroræ, and ozone. <br/>Particulars of some of the monthly records.</span>1870 was one of these years, and + was specially recorded by Dr. Allnatt, in his ‘Summary for the Year,’ as + remarkable for sun-spots, Auroræ, and ozone.</p> + + + <p>The month of February in that year was marked by intense cold and + brilliant Auroræ. Atmospheric electricity was feeble, but ozone was, + throughout the month, well developed; and there was no tangible period of + antozone.</p> + + <p>In the month of April of the same year, eight days consecutively (19th to + 26th) were marked for ozone 10, the maximum of Dr. Allnatt’s scale.</p> + + <p>In May of the same year there were magnificent Auroræ, and atmospheric + electricity was intense. Ozone was scanty; but this was accounted for by + the wind being generally E.N.E., ozone being mostly developed with a W. + or S.W. wind, and a moist state of the atmosphere.</p> + + + <p>In August 1870 the unusually large number of 22 days were recorded for + a maximum of ozone.</p> + + <p>September 1870 was hardly less remarkable, with 19 days of maximum. + It was recorded that there were splendid Auroræ during this month, and the + solar spots were very large.</p> + + <p>October 1870 had 20 days of maximum ozone, and November had several + fine Auroræ and maxima of ozone noted. In fact, nearly every month in that + year was referred to by Dr. Allnatt for displays of Aurora (of both Arctic and + Antarctic forms) and for a development of ozone very considerably above the + average.</p> + + + + <p><span class="sidenote">Year 1871.</span>The year 1871 had more or less of the same character. In the month of + October of that year, fine Auroræ were prevalent, and ozone was registered as + at its maximum during 22 days.</p> + + <p>There seems reason to conclude that if a systematic comparison of annual + or other periods of Aurora and ozone development were made, it would result + in disclosing a connexion (probably an intimate one) between the two phenomena.</p> + + + + <p><span class="sidenote">Instances showing a connexion between a specific Aurora and an ozone maximum.</span>With reference to the second point, the following (among other) instances + may be quoted, for the purpose of showing a connexion between a specific + Aurora and an ozone maximum.</p> + + <p>The Aurora of 24th September, 1870, was splendid and universal, being + seen in Europe, Asia, Africa, America, and Australia. Ozone reached, on the + morning of the 24th, 8 of the scale (the scale running from 1 to 10), and, on + the morning of the 25th, 10, the maximum.</p> + + <p>In October 1870 there were grand displays on the 14th, 20th, 22nd, 24th, + and 25th, and ozone was correspondingly abundant, as is seen by the following + Table:—</p> + + <table summary="" class="borders"> + <thead> + <tr> + <th colspan="3">Date.</th> + <th>Aurora.</th> + <th>Ozone.</th> + <th></th> + </tr> + </thead> + <tr> + <td class="bl nobr">1870,</td> + <td class="nobr">October</td> + <td>14th.</td> + <td>Aurora.</td> + <td class="tdr">8</td> + <td rowspan="7" class="bb">The display of the 24th was accompanied by the formation of a + corona, and that of the 25th was splendidly seen in Edinburgh.</td> + </tr> + <tr> + <td class="bl nobr center">â€</td> + <td class="nobr center">â€</td> + <td>20th.</td> + <td>Aurora.</td> + <td class="tdr">10</td> + </tr> + <tr> + <td class="bl nobr center">â€</td> + <td class="nobr center">â€</td> + <td>21st.</td> + <td class="nw">None seen.</td> + <td class="tdr">5</td> + </tr> + <tr> + <td class="bl nobr center">â€</td> + <td class="nobr center">â€</td> + <td>22nd.</td> + <td>Aurora.</td> + <td class="tdr">10</td> + </tr> + <tr> + <td class="bl nobr center">â€</td> + <td class="nobr center">â€</td> + <td>23rd.</td> + <td>None seen.</td> + <td class="tdr">8</td> + </tr> + <tr> + <td class="bl nobr center">â€</td> + <td class="nobr center">â€</td> + <td>24th.</td> + <td>Aurora.</td> + <td class="tdr">10</td> + </tr> + <tr> + <td class="bl nobr center bb">â€</td> + <td class="nobr center bb">â€</td> + <td class="bb">25th.</td> + <td class="bb">Aurora.</td> + <td class="tdr bb">8</td> + </tr> + </table> + + <p></p> + + <p>The foregoing figures somewhat point to the conclusion that ozone quantity + rises and falls coincidently with the Aurora displays.</p> + + <p>The following seems, however, a case still more strongly in point.</p> + + <table summary="" class="borders"> + <thead> + <tr> + <th colspan="3">Date.</th> + <th>Wind.</th> + <th>Aurora.</th> + <th>Ozone.</th> + </tr> + </thead> + <tr> + <td class="bl nobr">1871,</td> + <td class="nobr">January</td> + <td>25th.</td> + <td>E.S.E.</td> + <td>None seen.</td> + <td class="tdr">0</td> + </tr> + <tr> + <td class="bl nobr center">â€</td> + <td class="nobr center">â€</td> + <td>26th.</td> + <td>N.N.W.</td> + <td>None seen.</td> + <td class="tdr">2</td> + </tr> + <tr> + <td class="bl nobr center">â€</td> + <td class="nobr center">â€</td> + <td>27th.</td> + <td>E.S.E.</td> + <td>Aurora at night in N. and S. horizons.</td> + <td class="tdr">10</td> + </tr> + <tr> + <td class="bl nobr center">â€</td> + <td class="nobr center">â€</td> + <td>28th.</td> + <td>E.</td> + <td>None seen.</td> + <td class="tdr">8</td> + </tr> + <tr> + <td class="bl nobr center bb">â€</td> + <td class="nobr center bb">â€</td> + <td class="bb">29th.</td> + <td class="bb">S.E.</td> + <td class="bb">None seen.</td> + <td class="tdr bb">2</td> + </tr> + </table> + + <p>It is curious, in examining the above Table, to note how the ozone rose, + notwithstanding an east wind, from 0 on the 25th, and 2 on the 26th, to 10 + on the 27th, when the Aurora appeared, and 8 on the 28th, when it might + have lingered; and how it again descended to 2 on the 29th.</p> + + <p>The case of the Aurora of 6th of October, 1869, when a broad belt of + Aurora was in the north, is also an illustrative one, as will be seen by the + following data:—</p> + + <table summary="" class="borders"> + <thead> + <tr> + <th colspan="3">Date.</th> + <th>Wind.</th> + <th>Ozone.</th> + <th>Aurora.</th> + </tr> + </thead> + <tr> + <td class="bl nobr">1869,</td> + <td class="nobr">October</td> + <td>5th.</td> + <td>S.S.W.</td> + <td class="tdr">1</td> + <td>—</td> + </tr> + <tr> + <td class="bl nobr center">â€</td> + <td class="nobr center">â€</td> + <td>6th.</td> + <td>S.S.E.</td> + <td class="tdr">5</td> + <td>Aurora.</td> + </tr> + <tr> + <td class="bl nobr center">â€</td> + <td class="nobr center">â€</td> + <td>7th.</td> + <td>S.S.W.</td> + <td class="tdr">10</td> + <td>—</td> + </tr> + <tr> + <td class="bl nobr center">â€</td> + <td class="nobr center">â€</td> + <td>8th.</td> + <td>S.</td> + <td class="tdr">10</td> + <td>—</td> + </tr> + <tr> + <td class="bl nobr center bb">â€</td> + <td class="nobr center bb">â€</td> + <td class="bb">9th.</td> + <td class="bb">S.E.</td> + <td class="tdr bb">5</td> + <td class="bb">—</td> + </tr> + </table> + + <p>The Aurora of the night of the 6th was here represented by the ozone-paper + of the morning of the 7th with a maximum of 10, which lasted till + the 8th.</p> + + <p>[It should be borne in mind, in examining these Tables, that the + Aurora is of the night of the given date, while the ozone-papers are taken + and recorded in the morning of the date quoted.]</p> + + + + <p><span class="sidenote">Other instances.</span>We will now take instances where the ozone has not reached its maximum; + but even in these cases a certain amount of rise and fall of the ozone development + towards and from the Aurora is traceable.</p> + + <p></p> + + <table summary="" class="borders"> + <thead> + <tr> + <th colspan="3">Date.</th> + <th>Wind.</th> + <th>Ozone.</th> + <th>Aurora.</th> + </tr> + </thead> + <tr> + <td class="bl nobr">1871,</td> + <td class="nobr">April</td> + <td>8th</td> + <td>S.S.E.</td> + <td class="tdr">5</td> + <td rowspan="3" class="bb">Aurora on 9th, but wind E. and unfavourable to ozone.</td> + </tr> + <tr> + <td class="bl nobr center">â€</td> + <td class="nobr center">â€</td> + <td>9th</td> + <td>S.S.E.</td> + <td class="tdr">8</td> + </tr> + <tr> + <td class="bl nobr center bb">â€</td> + <td class="nobr center bb">â€</td> + <td class="bb">10th</td> + <td class="bb">S.E.</td> + <td class="tdr bb">5</td> + </tr> + <tr> + <td class="bl nobr">1871,</td> + <td class="nobr">November</td> + <td>9th</td> + <td>N.</td> + <td class="tdr">5</td> + <td rowspan="3" class="bb">Aurora on all three nights.</td> + </tr> + <tr> + <td class="bl nobr center">â€</td> + <td class="nobr center">â€</td> + <td>10th</td> + <td>N.W.</td> + <td class="tdr">8</td> + </tr> + <tr> + <td class="bl nobr center bb">â€</td> + <td class="nobr center bb">â€</td> + <td class="bb">11th</td> + <td class="bb">N.</td> + <td class="tdr bb">5</td> + </tr> + <tr> + <td class="bl nobr">1872,</td> + <td class="nobr">February</td> + <td>3rd</td> + <td>S.W.</td> + <td class="tdr">4</td> + <td rowspan="4" class="bb">Aurora on night of the 4th represented by ozone-paper of morning of the 5th.</td> + </tr> + <tr> + <td class="bl nobr center">â€</td> + <td class="nobr center">â€</td> + <td>4th</td> + <td>S.S.W.</td> + <td class="tdr">5</td> + </tr> + <tr> + <td class="bl nobr center">â€</td> + <td class="nobr center">â€</td> + <td>5th</td> + <td>S.W.</td> + <td class="tdr">8</td> + </tr> + <tr> + <td class="bl nobr center bb">â€</td> + <td class="nobr center bb">â€</td> + <td class="bb">6th</td> + <td class="bb">S.W.</td> + <td class="tdr bb">5</td> + </tr> + </table> + + <p>Other cases are, we are bound to say, found, in which ozone was either not + remarkable for quantity, or positively fell during the Aurora, as, for instance, + this:—</p> + + <table summary="" class="borders"> + <thead> + <tr> + <th colspan="3">Date.</th> + <th>Wind.</th> + <th>Ozone.</th> + <th>Aurora.</th> + </tr> + </thead> + <tr> + <td class="bl nobr">1874,</td> + <td class="nobr">March</td> + <td>16th</td> + <td>W.N.W.</td> + <td class="tdr">6</td> + <td rowspan="4" class="bb">Aurora on the 18th represented by test-paper + of the 19th with only two degrees of discoloration.</td> + </tr> + <tr> + <td class="bl nobr center">â€</td> + <td class="nobr center">â€</td> + <td>17th</td> + <td>S.W.</td> + <td class="tdr">6</td> + </tr> + <tr> + <td class="bl nobr center">â€</td> + <td class="nobr center">â€</td> + <td>18th</td> + <td>W.</td> + <td class="tdr">5</td> + </tr> + <tr> + <td class="bl nobr center bb">â€</td> + <td class="nobr center bb">â€</td> + <td class="bb">19th</td> + <td class="bb">S.S.W.</td> + <td class="tdr bb">2</td> + </tr> + </table> + + <p>It is, however, possible that such instances may be accounted for, either + by some reaction on the test-papers after they have been coloured, or by + some accidental antagonistic circumstance affecting the tests. The following + is a case well illustrating this:—</p> + + <table summary="" class="borders"> + <thead> + <tr> + <th colspan="3">Date.</th> + <th>Wind.</th> + <th>Ozone.</th> + <th>Aurora.</th> + </tr> + </thead> + <tr> + <td class="bl nobr">1874,</td> + <td class="nobr">January</td> + <td>31st</td> + <td>N.N.W.</td> + <td class="tdr">6</td> + <td rowspan="5" class="bb">There was an Aurora on the night of the 2nd represented by the ozone-paper (4 only) on the morning of the 3rd.</td> + </tr> + <tr> + <td class="bl nobr center">â€</td> + <td class="nobr">February</td> + <td>1st</td> + <td>N.W.</td> + <td class="tdr">8</td> + </tr> + <tr> + <td class="bl nobr center">â€</td> + <td class="nobr center">â€</td> + <td>2nd</td> + <td>N.W.</td> + <td class="tdr">2</td> + </tr> + <tr> + <td class="bl nobr center">â€</td> + <td class="nobr center">â€</td> + <td>3rd</td> + <td>N.N.W.</td> + <td class="tdr">4</td> + </tr> + <tr> + <td class="bl nobr center bb">â€</td> + <td class="nobr center bb">â€</td> + <td class="bb">4th</td> + <td class="bb">E.N.E.</td> + <td class="tdr bb">8</td> + </tr> + </table> + + <p>This instance would seem strongly opposed to the theory of a connexion + between Aurora and ozone but for the fact that on the 2nd, when the Aurora + was seen at night, and on other days in the same month, Dr. Allnatt has + recorded a strong wave of antozone to have swept over the whole of England, + and blanched the ozone-papers, however deep their coloration might have + previously been. Indeed, it is easy to understand that some antozonic + influence may, at times, disturb the evidence of the test-papers, even in so + elevated and apparently pure an atmosphere as that of Frant.</p> + + <p>It may not be considered that the foregoing instances are enough to establish + a case of ozone=Aurora; but there seems, at least, sufficient to base a + requisition for further inquiry upon.</p> + + <p>It would, too, be interesting to investigate whether Auroræ and ozone + development are respectively localized. Mr. Ingall’s fine Aurora, seen at + Champion Hill, S.E., July 18th, 1874 (<i>antè</i>, pp. 22 and 23), was not observed + at Frant, and the ozonoscopes there were described as blanched by antozone.</p> + + </section> + + <!-- Appendix E_________________________________________________________ --> + <section class="appendix" id="appendix-e"> + + <h3 class="titleapp" id="app-e"> + Inquiries into the spectrum of aurora + </h3> + <p class="shorter"> + Inquiries into the spectrum of aurora + </p> + + + <p class="note-titre"><span class="smcap">By H. C. Vogel.</span> <span class="footnote">Communicated by the author to the Royal Saxon Academy of Science, 1871.</span></p> + + <p>The frequent appearance of the Aurora in the past winter, as well as this + spring, has given me opportunity to institute exact inquiries into the spectrum + of the Aurora. It is known that the nature of Auroræ is as yet but little + explored. It has been considered necessary to abandon the former view—that + they are discharges of the electricity collected at the poles—because it + has been hitherto found impossible to bring the chief lines of the Aurora-spectrum + into coincidence with the spectra of the atmospheric gases. Theoretical + considerations, based on the great alterations to which the spectrum + of the same gas is subject under varying conditions of temperature and + density, have very recently led Zöllner to the opinion that probably the + spectrum of the <i>Aurora does not coincide with any known spectrum</i> of + the atmospheric gases, only because it is a spectrum of another form of our + atmosphere hitherto incapable of artificial demonstration <span class="footnote">Reports of the Royal Saxon Academy of Science, Oct. 31, 1871.</span>.</p> + + <p>The following article will show how far I have succeeded, in conjunction + with Dr. Lohse, in supporting this view by exact observations of the Aurora-spectrum + itself, as well as by comparison with the spectra of the gases + constituting the air.</p> + + <p>The star-spectrum apparatus belonging to the 11-inch equatorial of the + Bothkamp Observatory was used for these observations. It consists of a + set of prisms <i>à vision directe</i>, five prisms with refracting angle 90°, slit, + collimator, and observing telescope. The lowest eyepiece (magnifying four + times) of this telescope was employed. The telescope is capable of being + moved in such a way, by the aid of a micrometer-screw, that different + portions of the spectrum can be brought into the centre of the field of + vision. As fractions of the rotation of this screw are marked, the distances + of the spectral lines can be readily found.</p> + + <p>Repeated measurements of 100 lines of the solar spectrum have enabled + me, upon the basis of Ã…ngström’s Atlas (‘Spectre normal de Soleil’), to express + the indications of the screw directly in wave-lengths.</p> + + <p>In place of the cross wires originally introduced into the focus of the + observing telescope, I have inserted a tiny polished steel cone, the very fine + point of which reaches to the centre of the field of vision. The axis of this + cone stands perpendicular to the length of the spectrum, therefore parallel + with the spectral lines, and the setting of the point of the cone on the latter + is accomplished with great sharpness. If the spectrum is very faint, or + consists only of bright lines, the cone is lighted by a small lamp. For this + purpose, opposite to the point of the cone, there is an opening in the + telescope, through which, regulated by a blind, light can be thrown on the + point. As the latter is polished, a fine line of light thus appears, which + extends to the centre of the field of vision, and the brilliancy of which can + be altered by withdrawing the lamp to a greater distance or lowering the + blind, so that even the faintest lines of a spectrum can be brought with + facility and certainty into coincidence with this line of light.</p> + + <p>The head of the micrometer-screw is divided into 100 parts, and each part, + in the neighbourhood of the Fraunhofer line F, answers to about ·00016 + wave-length. The probable error of position on one of the well-marked lines + in the sun’s spectrum amounts to about 0·008 of a turn of the screw with the + lowest eyepiece of the telescope. I have subjected the screw itself to a + thorough examination with reference to such range, as well as to periodical + inequalities in the single worms of the screw, but could discover no error + exceeding 0·01 of a turn of the screw. I have to mention, further, that after + each observation in the position in which the instrument was used, readings + followed on the sodium-lines, or on some of the hydrogen-lines, in order to + eliminate errors which might arise in the unavoidable disturbance of any + particular part of the spectral apparatus.</p> + + <h4 class="h4-appe">Observations of the Aurora</h4> + + <p>1870, Oct. 25th.—A very bright Aurora. In the brightest parts, besides + a very bright line between D and E, several other fainter lines were to be + discerned, situated further towards the blue end of the spectrum. They + appeared on a dimly-lighted ground, and stretched out over the Fraunhofer + lines E and <i>b</i> to about midway between <i>b</i> and F. Towards the red end the + spectrum was terminated by the bright line first mentioned. No measurements + could be taken, as the apparatus had not yet undergone the above-mentioned + alterations, and even the brightest line of the spectrum did not + diffuse sufficient light to be able to perceive the fine cross wires. The red + rays of the Aurora were not examined.</p> + + <p>1871, Feb. 11th.—Towards ten o’clock appeared in the north-west a very + bright light-bow of greenish colour as the edge of a dark segment. Even + with a very narrow slit, the line between D and E could be well recognized + and measured. The average of six readings gave 7·11 turns, equal to 5572 + wave-length. In a small spectroscope of low dispersion which is arranged + on Browning’s plan, a few more lines placed further towards the blue could + be recognized (as in October). Towards the red end of the spectrum no lines + were observable. The greatest development of the Aurora was about + midnight. Magnificent rays rose to about 60° elevation; they had the + same greenish colouring as the bow of light, and the appearance of the + spectrum also was exactly the same. I again obtained two sets of measurements: + the average of six readings in the first set gave 7·10 turns, 5572 + wave-length; in another part of the heavens at the same time 7·10 was the + result of four readings.</p> + + <p>On Feb. 12, towards eight o’clock, the intensity of the Aurora was already + great enough to allow measurements of the brightest line. The average of + six readings gave 7·09 turns, or 5576 wave-length. Dr. Lohse took observations + later, with the same apparatus, and found from six readings 7·12 turns, + or 5569 wave-length.</p> + + <p>Yet the appearance of the spectrum in the spectroscope of low dispersion + was essentially distinct from that of February 11th. The green continuous + spectrum was present; it extended from the bright Aurora-line to the lines + <i>b</i> of the solar spectrum, and was traversed by some bright lines. Between + band <i>b</i> and F, was another line standing alone, out beyond F, in the blue part + of the spectrum, a clear bright stripe; and just before G a very faint broad + band of light was perceived.</p> + + <p>Amongst the rays which, later on, shot upwards, and were coloured red at + their ends, another very intense red line appeared in the spectrum between + C and D, yet placed nearer to C <span class="footnote">This red line was first noticed by Zöllner.</span>.</p> + + <p>April 9th.—An exceedingly brilliant Aurora, of which the greater development + took place in the early morning hours. Magnificent red sheaths rose + up to the zenith. The spectrum was like that observed on February 12th, + only much more intense, so that the lines could be seen and measured with + the larger spectral apparatus. In the brightest part of the Aurora was + the dark segment; the spectrum consisted of five lines in the green, and a + somewhat indistinct broad line or band in the blue.</p> + + <p>The red rays, on the other hand, allowed us to recognize seven lines, whilst + the bright line again appeared in the red part of the spectrum. I could not + again perceive the faint stripe observed on February 12th, in the vicinity of + line G. The mean measurements of four readings on an average, for each + line, gave:—</p> + + <table summary="" class="borders"> + <thead> + <tr> + <th>Turns of<br />screw.</th> + <th>Probable<br />errors.</th> + <th>Wave-length.</th> + <th>Probable<br />errors.</th> + <th colspan="2">Remarks.</th> + </tr> + </thead> + <tr> + <td class="bl tdr">4·62</td> + <td class="tdr">·0037</td> + <td class="tdr">6297</td> + <td class="tdr">·00014</td> + <td>Very bright stripe.</td> + <td rowspan="3">On a faintly lighted ground.</td> + </tr> + <tr> + <td class="bl tdr">7·12</td> + <td class="tdr">9</td> + <td class="tdr">5569</td> + <td class="tdr">2</td> + <td>Brightest line of the spectrum; becomes noticeably fainter at appearance of the red line.</td> + </tr> + <tr> + <td class="bl tdr">7·92</td> + <td class="tdr">—</td> + <td class="tdr">5390</td> + <td class="tdr">—</td> + <td>Extremely faint line; unreliable observation.</td> + </tr> + <tr> + <td class="bl tdr">8·71</td> + <td class="tdr">21</td> + <td class="tdr">5233</td> + <td class="tdr">4</td> + <td colspan="2">Moderately bright.</td> + </tr> + <tr> + <td class="bl tdr">8·95</td> + <td class="tdr">49</td> + <td class="tdr">5189</td> + <td class="tdr">9</td> + <td colspan="2">This line is very bright when the red line appears at the same time, otherwise equal in brilliancy with the preceding one.</td> + </tr> + <tr> + <td class="bl tdr">10·06</td> + <td class="tdr">20</td> + <td class="tdr">5004</td> + <td class="tdr">3</td> + <td colspan="2">Very bright line.</td> + </tr> + <tr class="spaced"> + <td class="bl tdr">12·33</td> + <td class="tdr">—</td> + <td class="tdr">4694</td> + <td class="tdr">—</td> + <td colspan="2" rowspan="2">Broad band of light, somewhat less brilliant in the middle.</td> + </tr> + <tr> + <td class="bl tdr">12·59</td> + <td class="tdr">22</td> + <td class="tdr">4663</td> + <td class="tdr">—</td> + </tr> + <tr class="spaced"> + <td class="bl tdr bb">12·88</td> + <td class="bb">—</td> + <td class="tdr bb">4629</td> + <td class="tdr bb">3</td> + <td class="bb" colspan="2">Very faint in those parts of the Aurora in which the red line appears.</td> + </tr> + </table> + + <p>April 14th.—Faint Aurora; only the bright line in the green could + be recognized in its spectrum. The mean of two readings gave 7·12 turns, or + 5569 wave-length.</p> + + <p>I append a table of the wave-lengths of the brightest line, as exactly + measured on four evenings:—</p> + + <table summary="Wave-lengths observed on four different dates" class="table-noborder"> + <thead> + <tr> + <td>1871,</td> + <td>February</td> + <td class="tdr">11</td> + <td class="tdr">5573</td> + </tr> + </thead> + <tr> + <td></td> + <td class="center">â€</td> + <td class="tdr">12</td> + <td class="tdr">5573</td> + </tr> + <tr> + <td></td> + <td>April</td> + <td class="tdr">9</td> + <td class="tdr">5569</td> + </tr> + <tr> + <td></td> + <td class="center">â€</td> + <td class="tdr">14</td> + <td class="tdr">5569</td> + </tr> + </table> + + <p>Therefore the average result (if only half-weight is allowed to the last + observation, because it only depends upon two readings) gives for the wave-length + of the brightest line 5571·3, with a probable error of ·000·92. + According to Ã…ngström <span class="footnote">Recherches sur le Spectre Solaire, p. 42.</span>, the wave-length of this line is 5567; according to + Winlock <span class="footnote">American Journal of Science, lxviii. 123.</span>, on the other hand, 5570.</p> + + <h4 class="h4-appe">On the Spectra of some Gases in Geissler’s Tubes, as well as on the + Spectrum of the Atmospheric Air.</h4> + + <p>Numerous experiments have been made in order to find out some admitted + connexion between the spectrum of the Aurora and the spectra of the + principal gases composing the atmosphere. I limit myself to noticing some + of the often-repeated observations in Plücker’s tubes, which contained oxygen, + hydrogen, and nitrogen, as well as the observations of the spectrum of the + air under different conditions. The experiments were made with a small + inductive apparatus, in which the length of the spark between platinum + points in ordinary air was 15 millims. at the most. As Zöllner (in the + pamphlet mentioned) comes to the conclusion, that if the development of the + light in the Aurora, according to the analogy of gases brought to glow in + rarefied spaces, is of an electric nature, it must belong to very low temperature—in + order to bring the gases enclosed in the tubes to glow at the + lowest possible temperature, I have always employed such weak currents that + the gas was only just steadily alight.</p> + + <p>The following observations have been repeated often and at various times. + The figures are averages of the indications of the micrometer-screw, so that + the uncertainty of the figures will, in the rarest cases, amount to no more than + 0·015 turn of the screw, and must be reckoned somewhat more highly only + in the case of completely faint misty lines. The spectrum apparatus was that + described above, and the slit was nearly the same in every experiment, and so + narrow that the sodium-lines could be seen separated. The measurements, + for the most part, extend only to the Fraunhofer line G, as I feared lest, + through further turning the telescope by means of the micrometer-screw, too + great a pressure might be exercised on the worms of the latter.</p> + + <p></p> + + <h5>Oxygen</h5> + + + + <table summary="" class="borders"> + <caption>In the narrow part of the Plücker tube</caption> + <thead> + <tr> + <th>Screw.</th> + <th>Wave-length.</th> + <th>Remarks.</th> + </tr> + </thead> + <tr> + <td class="bl tdr">3·97</td> + <td class="tdr">6562</td> + <td>Moderately bright.</td> + </tr> + <tr> + <td class="bl tdr">5·04</td> + <td class="tdr">6146</td> + <td>Very bright.</td> + </tr> + <tr> + <td class="bl tdr">6·98</td> + <td class="tdr">5603</td> + <td>Very bright, misty towards the violet.</td> + </tr> + <tr> + <td class="bl tdr">8·19</td> + <td class="tdr">5332</td> + <td>Faint.</td> + </tr> + <tr> + <td class="bl tdr">8·95</td> + <td class="tdr">5189</td> + <td>Moderately bright.</td> + </tr> + <tr> + <td class="bl tdr">10·97</td> + <td class="tdr">4870</td> + <td><span class="ditto2">â€</span><span class="ditto1">â€</span></td> + </tr> + <tr> + <td class="bl tdr">11·02</td> + <td class="tdr">4863</td> + <td>Faint.</td> + </tr> + <tr> + <td class="bl tdr">11·26</td> + <td class="tdr">4829</td> + <td>Bright; misty towards the red end of the spectrum.</td> + </tr> + <tr> + <td class="bl tdr">13·30</td> + <td class="tdr">4583</td> + <td>Very faint.</td> + </tr> + <tr> + <td class="bl tdr">14·05</td> + <td class="tdr">4506</td> + <td>Moderately bright.</td> + </tr> + <tr> + <td class="bl tdr bb">15·55</td> + <td class="tdr bb">4372</td> + <td class="bb"><span class="ditto2">â€</span><span class="ditto1">â€</span></td> + </tr> + </table> + + + + <table summary="" class="borders"> + <caption>In the wide part of the Plücker tube</caption> + <thead> + <tr> + <th>Screw.</th> + <th>Wave-length.</th> + <th>Remarks.</th> + </tr> + </thead> + <tr> + <td class="bl tdr">6·98</td> + <td class="tdr">5603</td> + <td>Very faint.</td> + </tr> + <tr> + <td class="bl tdr">8·95</td> + <td class="tdr">5189</td> + <td>Very bright.</td> + </tr> + <tr> + <td class="bl tdr bb">11·26</td> + <td class="tdr bb">4829</td> + <td class="bb">Moderately bright.</td> + </tr> + </table> + + <p>The lines near 3·97 and 11·02 belong to hydrogen. Probably traces of + aqueous vapour were present in the tube, which were decomposed by the + galvanic current. These two lines are not to be found in a lower temperature + in the broad part of the tube. It is striking that the red nitrogen-line near + 5·04 is also missing there. In the narrow part of the tube the lines stand out + in the green on a very dimly-lighted ground, whilst in the wider part they + appear on a perfectly dark ground.</p> + + + <h5>Hydrogen.</h5> + + + + <table summary="" class="borders"> + <caption> In the narrow part of the tube.</caption> + <thead> + <tr> + <th>Screw.</th> + <th>Wave-length.</th> + <th colspan="2">Remarks.</th> + </tr> + </thead> + <tr> + <td class="bl tdr">3·98</td> + <td class="tdr">6558</td> + <td colspan="2">Very bright.</td> + </tr> + <tr> + <td class="bl tdr">6·16</td> + <td class="tdr">5813</td> + <td colspan="2">Moderately bright, on both sides very faint lines.</td> + </tr> + <tr class="spaced"> + <td class="bl tdr">7·01</td> + <td class="tdr">5596</td> + <td class="nw nobr">Moderately bright.</td> + <td rowspan="3" class="hanging"><span class="x2">}</span>On a dimly lighted ground, which becomes fainter towards the violet.</td> + </tr> + <tr> + <td class="bl tdr">7·18</td> + <td class="tdr">5555</td> + <td class="nobr">Moderately bright.</td> + </tr> + <tr> + <td class="bl tdr">7·77</td> + <td class="tdr">5422</td> + <td class="nobr">Faint.</td> + </tr> + <tr class="spaced"> + <td class="bl tdr">8·95</td> + <td class="tdr">5189</td> + <td class="nobr">Moderately bright.</td> + <td rowspan="3" class="hanging"><span class="x2">}</span>On a faint steadily bright ground.</td> + </tr> + <tr> + <td class="bl tdr">10·03</td> + <td class="tdr">5008</td> + <td class="nobr">Faint.</td> + </tr> + <tr> + <td class="bl tdr">10·55</td> + <td class="tdr">4929</td> + <td class="nobr">Moderately bright.</td> + </tr> + <tr class="spaced"> + <td class="bl tdr">11·04</td> + <td class="tdr">4861</td> + <td class="nobr">Very bright.</td> + <td rowspan="2" class="hanging"><span class="x2">}</span>From 11·5 to 12·9 a bright ground, which towards the violet becomes very bright.</td> + </tr> + <tr> + <td class="bl tdr">12·86</td> + <td class="tdr">4632</td> + <td class="nobr">Moderately bright.</td> + </tr> + <tr class="spaced"> + <td class="bl tdr">13·32</td> + <td class="tdr">4581</td> + <td class="nobr">Very faint.</td> + <td rowspan="3" class="bb hanging"><span class="x2">}</span> On a dull ground.</td> + </tr> + <tr> + <td class="bl tdr">14·05</td> + <td class="tdr">4506</td> + <td class="nobr"><span class="ditto2">â€</span></td> + </tr> + <tr> + <td class="bl tdr bb">15·90</td> + <td class="tdr bb">4342</td> + <td class="nobr bb">Very bright.</td> + </tr> + </table> + + + + <table summary="" class="borders"> + <caption> In the broad part of the tube.</caption> + <thead> + <tr> + <th>Screw.</th> + <th>Wave-length.</th> + <th>Remarks.</th> + </tr> + </thead> + <tr> + <td class="bl tdr">5·30</td> + <td class="tdr">6063</td> + <td>Faint.</td> + </tr> + <tr> + <td class="bl tdr">7·00</td> + <td class="tdr">5598</td> + <td>Bright.</td> + </tr> + <tr> + <td class="bl tdr">8·96</td> + <td class="tdr">5187</td> + <td>Very bright.</td> + </tr> + <tr> + <td class="bl tdr">11·28</td> + <td class="tdr">4828</td> + <td><span class="ditto2">â€</span></td> + </tr> + <tr> + <td class="bl tdr bb">14·04</td> + <td class="tdr bb">4507</td> + <td class="bb">Moderately bright.</td> + </tr> + </table> + + <p>The lines appeared on a perfectly dark ground.</p> + + <p>The tube shows in the narrow part the hydrogen-spectrum of the first order; + the lines in the green do not coincide with the lines of the nitrogen, though + some lines belonging to nitrogen are found. Here, too, most probably small + particles of aqueous vapour have been enclosed in the tube and are decomposed. + Very striking is the spectrum in the broad part of the tube; nothing + is to be seen of the bright shining lines Hα 3·98, Hβ 11·04, Hγ 15·90; on + the other hand, four very bright lines and one quite faint one are in the red + end of the spectrum, which appear, in opposition to the spectrum of the + narrow part, not on a partially lighted, but on an entirely dark ground. The + appearance is very striking if we bring the tube in front of the slit; and so, + by degrees, at first the light in the narrow part, then the light at the connecting-point + of the narrow and wide parts, and, finally, the light in the + latter fall upon the slit. At the connecting-point of the wide ends of the + tube the three well-known hydrogen-lines decrease in intensity, the continuous + ground of some parts of the spectrum disappears, and a new line + appears near 11·28, which has about the same brilliancy as Hβ.</p> + + <p>A comparison with the spectrum of oxygen shows the bright lines which + are in the spectrum in the wide end of the tube as belonging to that element. + The heat evolved by the current appears insufficient to bring the hydrogen to + glow, whilst by it the oxygen, which is of a more rarefied character, becomes + incandescent. An alteration of the direction of the current has no influence + on the appearance.</p> + + <h5>Nitrogen</h5> + + + + <table summary="" class="borders"> + <caption> In the narrow part of the tube</caption> + <thead> + <tr> + <th>Screw.</th> + <th>Wave-length.</th> + <th colspan="2">Remarks.</th> + </tr> + </thead> + <tr> + <td class="bl tdr">3·84</td> + <td class="tdr">6620</td> + <td rowspan="2" colspan="2">Several faint, broad, close lines, increasing in brilliancy as they approach the violet end.</td> + </tr> + <tr> + <td class="bl tdr">4·85</td> + <td class="tdr">6213</td> + </tr> + <tr class="spaced"> + <td class="bl tdr">5·30</td> + <td class="tdr">6063</td> + <td rowspan="7" colspan="2">Broad bright lines, so close together that the intervening spaces appear like fine dark lines. This part of the spectrum is very bright, but not uniform, being brighter towards the violet end.</td> + </tr> + <tr> + <td class="bl tdr">5·51</td> + <td class="tdr">6000</td> + </tr> + <tr> + <td class="bl tdr">5·69</td> + <td class="tdr">5948</td> + </tr> + <tr> + <td class="bl tdr">5·87</td> + <td class="tdr">5896</td> + </tr> + <tr> + <td class="bl tdr">6·04</td> + <td class="tdr">5846</td> + </tr> + <tr> + <td class="bl tdr">6·20</td> + <td class="tdr">5802</td> + </tr> + <tr> + <td class="bl tdr">6·43</td> + <td class="tdr">5741</td> + </tr> + <tr class="spaced"> + <td class="bl tdr">6·96</td> + <td class="tdr">5607</td> + <td rowspan="3" colspan="2">Group of faint but at the same time very broad lines. The last is the brightest.</td> + </tr> + <tr> + <td class="bl tdr">7·13</td> + <td class="tdr">5567</td> + </tr> + <tr> + <td class="bl tdr">7·28</td> + <td class="tdr">5532</td> + </tr> + <tr class="spaced"> + <td class="bl tdr">7·55</td> + <td class="tdr">5470</td> + <td rowspan="4" colspan="2">The dark intervening spaces are somewhat broader, the bright lines + somewhat more intense than in the preceding group, and all of + almost equal brilliancy.</td> + </tr> + <tr> + <td class="bl tdr">7·74</td> + <td class="tdr">5428</td> + </tr> + <tr> + <td class="bl tdr">7·92</td> + <td class="tdr">5389</td> + </tr> + <tr> + <td class="bl tdr">8·09</td> + <td class="tdr">5353</td> + </tr> + <tr class="spaced"> + <td class="bl tdr">8·32</td> + <td class="tdr">5306</td> + <td colspan="2" rowspan="3">Very faint fine lines.</td> + </tr> + <tr> + <td class="bl tdr">8·50</td> + <td class="tdr">5272</td> + </tr> + <tr> + <td class="bl tdr">8·69</td> + <td class="tdr">5237</td> + </tr> + <tr class="spaced"> + <td class="bl tdr">9·01</td> + <td class="tdr">5178</td> + <td colspan="2">Very bright broad misty line.</td> + </tr> + <tr class="spaced"> + <td class="bl tdr">9·67</td> + <td class="tdr">5066</td> + <td>Very bright line.</td> + <td rowspan="11">The bright lines are sharply defined towards the red end of the + spectrum, fading away towards the other end of the spectrum.</td> + </tr> + <tr> + <td class="bl tdr">10·25</td> + <td class="tdr">4975</td> + <td><span class="ditto2">â€</span><span class="ditto1">â€</span></td> + </tr> + <tr> + <td class="bl tdr">10·66</td> + <td class="tdr">4913</td> + <td><span class="ditto2">â€</span><span class="ditto1">â€</span></td> + </tr> + <tr> + <td class="bl tdr">11·03</td> + <td class="tdr">4862</td> + <td>Very faint line.</td> + </tr> + <tr> + <td class="bl tdr">11·41</td> + <td class="tdr">4811</td> + <td>Bright line.</td> + </tr> + <tr> + <td class="bl tdr">12·11</td> + <td class="tdr">4721</td> + <td><span class="ditto2">â€</span><span class="ditto1">â€</span></td> + </tr> + <tr> + <td class="bl tdr">12·57</td> + <td class="tdr">4666</td> + <td>Faint line.</td> + </tr> + <tr> + <td class="bl tdr">12·57</td> + <td class="tdr">4644</td> + <td class="nw">Bright, broad, misty line.</td> + </tr> + <tr> + <td class="bl tdr">13·42</td> + <td class="tdr">4570</td> + <td>Very bright line.</td> + </tr> + <tr> + <td class="bl tdr">14·24</td> + <td class="tdr">4487</td> + <td><span class="ditto2">â€</span><span class="ditto1">â€</span></td> + </tr> + <tr> + <td class="bl tdr">15·02</td> + <td class="tdr">4417</td> + <td>Bright line.</td> + </tr> + <tr class="spaced"> + <td class="bl tdr">15·66</td> + <td class="tdr">4363</td> + <td class="nobr">Bright lines.</td> + <td rowspan="4" class="bb">Bright lines sharply defined towards red end, indistinct towards other end of spectrum.</td> + </tr> + <tr> + <td class="bl tdr">15·72</td> + <td class="tdr">4357</td> + <td class="nobr"><span class="ditto2">â€</span></td> + </tr> + <tr> + <td class="bl tdr">15·87</td> + <td class="tdr">4345</td> + <td class="nobr">Bright line.</td> + </tr> + <tr> + <td class="bl tdr bb">16·72</td> + <td class="tdr bb">4273</td> + <td class="nobr bb"><span class="ditto2">â€</span></td> + </tr> + </table> + + <p class="center">Here follow several lines.</p> + + + + + <table summary="" class="borders"> + <caption> In the wide part of the tube</caption> + <thead> + <tr> + <th>Screw.</th> + <th>Wave-length.</th> + <th>Remarks.</th> + </tr> + </thead> + <tr> + <td class="bl tdr">6·20</td> + <td class="tdr">5802</td> + <td>Faint, indistinct, broad line.</td> + </tr> + <tr> + <td class="bl tdr">7·72</td> + <td class="tdr">5433</td> + <td>Dull stripe.</td> + </tr> + <tr> + <td class="bl tdr">8·20</td> + <td class="tdr">5330</td> + <td>Faint line.</td> + </tr> + <tr> + <td class="bl tdr">8·94</td> + <td class="tdr">5191</td> + <td>Very faint line.</td> + </tr> + <tr> + <td class="bl tdr">9·03</td> + <td class="tdr">5175</td> + <td>Broad band of light.</td> + </tr> + <tr> + <td class="bl tdr">9·90</td> + <td class="tdr">5029</td> + <td>Dull band of light.</td> + </tr> + <tr> + <td class="bl tdr">10·68</td> + <td class="tdr">4911</td> + <td>Moderately bright line.</td> + </tr> + <tr> + <td class="bl tdr">11·42</td> + <td class="tdr">4809</td> + <td>Faint line.</td> + </tr> + <tr> + <td class="bl tdr">12·59</td> + <td class="tdr">4663</td> + <td>Bright line.</td> + </tr> + <tr> + <td class="bl tdr">13·43</td> + <td class="tdr">4569</td> + <td><span class="ditto2">â€</span></td> + </tr> + <tr> + <td class="bl tdr">14·07</td> + <td class="tdr">4504</td> + <td>Moderately bright line.</td> + </tr> + <tr> + <td class="bl tdr">14·25</td> + <td class="tdr">4486</td> + <td>Very bright line.</td> + </tr> + <tr> + <td class="bl tdr">15·85</td> + <td class="tdr">4347</td> + <td><span class="ditto1">â€</span><span class="ditto1">â€</span></td> + </tr> + <tr> + <td class="bl tdr bb">16·76</td> + <td class="tdr bb">4273</td> + <td class="bb">Moderately bright line.</td> + </tr> + </table> + + + + <table summary="" class="borders"> + <caption>At the aura of the negative pole</caption> + <thead> + <tr> + <th>Screw.</th> + <th>Wave-length.</th> + <th>Remarks.</th> + </tr> + </thead> + <tr> + <td class="bl tdr">5·18</td> + <td class="tdr">6100</td> + <td rowspan="2">Broad, moderately bright stripe, indistinct at the edges.</td> + </tr> + <tr> + <td class="bl tdr">5·70</td> + <td class="tdr">5945</td> + </tr> + <tr class="spaced"> + <td class="bl tdr">7·60</td> + <td class="tdr">5159</td> + <td rowspan="2">Broad, moderately bright stripe.</td> + </tr> + <tr> + <td class="bl tdr">8·41</td> + <td class="tdr">5289</td> + </tr> + <tr class="spaced"> + <td class="bl tdr">8·76</td> + <td class="tdr">5224</td> + <td>Very bright line, somewhat indistinct towards the violet.</td> + </tr> + <tr> + <td class="bl tdr">9·19</td> + <td class="tdr">5147</td> + <td>Faint line.</td> + </tr> + <tr> + <td class="bl tdr">10·00</td> + <td class="tdr">5004</td> + <td>Bright line, indistinct towards the red.</td> + </tr> + <tr> + <td class="bl tdr">10·67</td> + <td class="tdr">4912</td> + <td>Somewhat fainter than the last, indistinct towards the red.</td> + </tr> + <tr> + <td class="bl tdr">11·43</td> + <td class="tdr">4808</td> + <td>Very faint line.</td> + </tr> + <tr> + <td class="bl tdr">12·25</td> + <td class="tdr">4704</td> + <td>Very intense, broad, indistinct towards the violet.</td> + </tr> + <tr> + <td class="bl tdr">12·73</td> + <td class="tdr">4646</td> + <td>Very faint line.</td> + </tr> + <tr> + <td class="bl tdr">13·43</td> + <td class="tdr">4569</td> + <td>Moderately bright, indistinct towards the violet.</td> + </tr> + <tr> + <td class="bl tdr">14·25</td> + <td class="tdr">4486</td> + <td>Like the last.</td> + </tr> + <tr> + <td class="bl tdr">15·03</td> + <td class="tdr">4417</td> + <td>Quite a faint line.</td> + </tr> + <tr> + <td class="bl tdr">15·86</td> + <td class="tdr">4346</td> + <td>Moderately bright line.</td> + </tr> + <tr> + <td class="bl tdr bb">16·76</td> + <td class="tdr bb">4275</td> + <td class="bb">Very bright line.</td> + </tr> + </table> + + <p class="center">Here follow several other lines.</p> + + + <p>The observations in the different parts of the tube show plainly the + dependence of the spectrum on the temperature. The aura of the negative + pole gives the line near 10·07 so characteristic of the air-spectrum. This is + the same line which is met with in the spectra of most of the nebulæ. The + very striking groups of lines in the red and yellow in the spectrum of the + narrow part of the tube disappear entirely in the wide part. If we compare + the spectra with those above quoted, of oxygen and hydrogen, we find line + Hβ very faint in the spectrum of the narrow part of the tube near 11·03; + on the other hand, oxygen-lines appear in the broad part near 8·20, 8·94, and + 14·07. Thence I would conjecture that the tube was not filled with pure + nitrogen, the appearance of which is precise, but with dry rarefied air, since + Wüllner’s researches have proved that dry air yields the same spectrum as + nitrogen gas. Perhaps the air in the tube examined by me had not been + thoroughly dried, and thus the appearance of some lines of the elements + before named is to be explained.</p> + + <p>I must further mention that the electrodes of the tubes consisted of + aluminium; yet a comparison of the spectra observed and the aluminium + spectrum has shown no connexion between them.</p> + + <h5>Atmospheric Air</h5> + + <table summary="" class="borders"> + <caption>Atmospheric Air</caption> + <thead> + <tr> + <th colspan="2">Screw.</th> + <th>Wave-length.</th> + <th>Remarks.</th> + </tr> + </thead> + <tr> + <td class="bl nobr"></td> + <td class="tdr">5·88</td> + <td class="tdr">5892</td> + <td>Very bright double line (Na).</td> + </tr> + <tr> + <td class="bl nobr"></td> + <td class="tdr">6·67</td> + <td class="tdr">5680</td> + <td>Very bright line.</td> + </tr> + <tr> + <td class="bl nobr"></td> + <td class="tdr">7·20</td> + <td class="tdr">5550</td> + <td>Faint line.</td> + </tr> + <tr> + <td class="bl nobr"></td> + <td class="tdr">9·00</td> + <td class="tdr">5180</td> + <td>Very bright line.</td> + </tr> + <tr> + <td class="bl nobr"></td> + <td class="tdr">9·79</td> + <td class="tdr">5047</td> + <td>Fine faint line.</td> + </tr> + <tr class="spaced"> + <td class="bl nobr"></td> + <td class="tdr">10·03</td> + <td class="tdr">5008</td> + <td rowspan="2">Very bright double line.</td> + </tr> + <tr> + <td class="bl nobr"></td> + <td class="tdr">10·07</td> + <td class="tdr">5002</td> + </tr> + <tr class="spaced"> + <td class="bl nobr"></td> + <td class="tdr">11·43</td> + <td class="tdr">4803</td> + <td>Faint confused line.</td> + </tr> + <tr class="spaced"> + <td class="bl nobr"></td> + <td class="tdr">12·69</td> + <td class="tdr">4651</td> + <td rowspan="3">Faint line not sharply defined.</td> + </tr> + <tr> + <td class="bl nobr"></td> + <td class="tdr">12·84</td> + <td class="tdr">4633</td> + </tr> + <tr> + <td class="bl nobr"></td> + <td class="tdr">13·04</td> + <td class="tdr">4612</td> + </tr> + <tr class="spaced"> + <td class="bl nobr">From</td> + <td class="tdr">14·61</td> + <td class="tdr">4453</td> + <td rowspan="2" class="bb">Confused band of light, which ends with a broad washy line.</td> + </tr> + <tr> + <td class="bl nobr bb">to</td> + <td class="tdr bb">15·88</td> + <td class="tdr bb">4444</td> + </tr> + </table> + + <p class="center">Here follow several other lines.</p> + + + + + <table summary="" class="borders"> + <caption>Rarefied air saturated with aqueous vapour.</caption> + <thead> + <tr> + <th colspan="2">Screw.</th> + <th>Wave-length.</th> + <th colspan="2">Remarks.</th> + </tr> + </thead> + <tr> + <td class="bl nobr"></td> + <td class="tdr">3·97 </td> + <td class="tdr">6562</td> + <td colspan="2">Moderately bright line.</td> + </tr> + <tr> + <td class="bl nobr"></td> + <td class="tdr">(5·88)</td> + <td class="tdr"> 5892</td> + <td colspan="2">Bright double line (Na).</td> + </tr> + <tr> + <td class="bl nobr"></td> + <td class="tdr">(6·25)</td> + <td class="tdr">5789</td> + <td colspan="2">Bright line (H).</td> + </tr> + <tr class="spaced"> + <td class="bl nobr">From</td> + <td class="tdr">7·03 </td> + <td class="tdr">5591</td> + <td colspan="2" rowspan="2">Broad dull band of light; near 7·03 a somewhat brighter line.</td> + </tr> + <tr> + <td class="bl nobr">to</td> + <td class="tdr">7·55 </td> + <td class="tdr">5470</td> + </tr> + <tr class="spaced"> + <td class="bl nobr"></td> + <td class="tdr">7·59 </td> + <td class="tdr">5461</td> + <td colspan="2">Bright line (H).</td> + </tr> + <tr> + <td class="bl nobr"></td> + <td class="tdr">8·72 </td> + <td class="tdr">5231</td> + <td colspan="2">Dull stripe.</td> + </tr> + <tr class="spaced"> + <td class="bl nobr"></td> + <td class="tdr">8·96 </td> + <td class="tdr">5187</td> + <td>Broad misty stripe.</td> + <td rowspan="2">On a dull steady ground.</td> + </tr> + <tr> + <td class="bl nobr"></td> + <td class="tdr">10·07 </td> + <td class="tdr">5002</td> + <td>Faint line.</td> + </tr> + <tr class="spaced"> + <td class="bl nobr"></td> + <td class="tdr">11·05 </td> + <td class="tdr">4859</td> + <td colspan="2">Very bright line.</td> + </tr> + <tr class="spaced"> + <td class="bl nobr"></td> + <td class="tdr">12·21 </td> + <td class="tdr">4709</td> + <td>Moderately bright line.</td> + <td rowspan="3">On dimly lighted ground, becoming fainter towards the violet.</td> + </tr> + <tr> + <td class="bl nobr"></td> + <td class="tdr">12·75 </td> + <td class="tdr">4644</td> + <td class="nw">Line fainter than the preceding.</td> + </tr> + <tr> + <td class="bl nobr"></td> + <td class="tdr">13·28 </td> + <td class="tdr">5585</td> + <td>Very faint line (H).</td> + </tr> + <tr class="spaced"> + <td class="bl nobr"></td> + <td class="tdr">(15·71)</td> + <td class="tdr">4358</td> + <td colspan="2">Very bright line (H).</td> + </tr> + <tr> + <td class="bl nobr bb"></td> + <td class="tdr bb">15·90 </td> + <td class="tdr bb">4341</td> + <td colspan="2" class="bb"><span class="ditto1">â€</span> <span class="ditto1">â€</span></td> + </tr> + </table> + + <p class="center">Here follow several more lines.</p> + + <p>In the first observations, the electric spark, about 1 centim. in length, was + allowed to pass between platinum points in ordinary air.</p> + + <p>The sodium-line near 5·88 appeared continually. The bright double line + at 10·03 and 10·07, with a weaker current or longer spark, was no longer to + be recognized as a double line, but appeared as a broad somewhat confused + line, of which the brightest part was near 10·05. No lines belonging to the + platinum spectrum appeared. Ordinary rarefied air, under a pressure of + 25 to 30 millims., and which was enclosed by mercury in a tube 8 millims. + wide, showed exactly the same lines as Plücker’s nitrogen-tube (<i>b</i>), except + that some lines belonging to the spectrum of mercury also appeared.</p> + + <p>This observation may be regarded as a confirmation of the conjecture above + expressed as to the condition of Plücker’s tube III. (nitrogen). In the observations + described under <i>b</i>, the air saturated with aqueous vapour was under + a pressure of 22 millims. Besides the sodium-lines, lines of the mercury-spectrum + appeared at 6·25, 7·59, and 15·71. The spectrum of rarefied air + under similar pressure was found to accord completely with the spectrum of + the light in the broad part of Plücker’s tube.</p> + + <p>III. (Nitrogen <i>b.</i>)—A comparison of the spectrum of rarefied air saturated + with aqueous vapour with the former shows the striking alterations in the + spectrum which are brought about by the presence of the aqueous vapour.</p> + + <p></p> + + <h4 class="h4-appe">Comparison of the Aurora-Spectrum with the Spectra of Atmospheric + Gases and of Inorganic Substances.</h4> + + <p>In the next place, I turn to the comparison of the observed spectra of + different gases and of the air with the spectrum of the Aurora. The first + band of light in the red part of the Aurora-spectrum most probably coincides + with the first system of lines in the spectrum of nitrogen (<i>a</i>). Probably only + the bright part of this group of lines is perceptible, on account of the + extreme faintness of the Aurora; and as in nitrogen the increase of the + brilliancy of the spectrum takes place towards the violet end, the absence of + the intermediate spectrum towards this direction would find its explanation. + The most intense line of the Aurora-spectrum at 7·12 is to be also found in + the spectrum of nitrogen (<i>a</i>)—as a very faint line, however. That this line + appears in the Aurora by itself, and with intensity relatively great, need not + appear strange, considering the great alteration of the gas-spectra under + different conditions of pressure and temperature. The third line of the + Aurora-spectrum, very vaguely defined on account of its great faintness, + coincides in the same way with a nitrogen-line.</p> + + <p>The line at 8·71 is met with in the nitrogen-spectrum (<i>c</i>), as well as in the + air-spectrum (<i>b</i>). The third line of the oxygen-spectrum at 8·95, which + <i>seems to appear under very different conditions</i>, is found again, as the fifth + line in the spectrum of the Aurora. <i>Moreover, the sixth line in the Aurora + at 10·06 coincides very exactly</i> with the known nitrogen-line appearing in the + spectra of some of the nebulæ. Lastly, as to the broad band of light in the + Aurora-spectrum from 12·33 to 12·88, several lines are found in this place in + the spectrum of nitrogen as well as the air-spectrum (<i>a, b</i>); so that here, too, + a coincidence between the spectra may be regarded as probable.</p> + + <p>The observations show with some certainty that at least one line at 10·06 + of the Aurora-spectrum coincides with the maximum brilliancy of the air-spectrum, + and that the other lines appear with great probability in the + spectra of atmospheric gases.</p> + + <p>In the very great difference of the gas-spectra under varying conditions of + pressure and temperature, it would indeed be difficult to succeed in producing + artificially a spectrum which should resemble that of the Aurora in all + parts. Moreover, it must be admitted, under the hypothesis that the Auroræ + are electric discharges in rarefied air-strata, that these strata, qualified for the + transmitting of electricity, will have a very considerable thickness.</p> + + <p></p> + + <p>In this case the conditions of pressure on these air-strata are themselves so + different that, within certain limits, each will yield its own peculiar spectrum; + but we shall see the sum of collective spectra, so to speak, spread out behind + each other; and therefore the impossibility of attaining a perfect agreement + between the Aurora-spectrum and the artificially exhibited spectra of mixed + gases is evident.</p> + + <p>A comparison of the Aurora-spectrum with the spectra of inorganic substances + may be easily worked out by the help of the above-quoted wave-lengths of the + single lines of the former, with due regard to probable errors, and with the + aid of Ã…ngström’s Atlas of the Solar Spectrum. Here the perfect harmony of + the brightest Aurora-line (which was fixed with an exactitude of about one + seventh of the separation of the sodium-lines) with the lines of the iron-spectrum + is especially striking. The wave-lengths in the above-cited observations + of the bright Aurora-line vary between 556·9 and 557·3, whilst, + according to Ã…ngström, two lines of the iron-spectrum are situated at 556·85 + and 557·17.</p> + + <p>Iron-lines corresponding to the other Aurora-lines, within certain limits of + accuracy, are also to be found, as will be seen from the following comparison:—</p> + + <table summary="" class="borders"> + <thead> + <tr> + <th colspan="2">Aurora-lines.</th> + <th>Lines of the<br />iron-spectrum.</th> + <th>Remarks.</th> + </tr> + </thead> + <tr> + <td rowspan="2" class="bl nobr"></td> + <td rowspan="2" class="tdr">629·7</td> + <td class="tdr">630·08</td> + <td colspan="2" rowspan="2">Moderately bright.</td> + </tr> + <tr> + <td class="tdr">629·85</td> + </tr> + <tr class="spaced"> + <td rowspan="4" class="bl nobr"></td> + <td rowspan="4" class="tdr">539·0</td> + <td class="tdr">539·60</td> + <td rowspan="4">Mostly very faint.</td> + </tr> + <tr> + <td class="tdr">539·92</td> + </tr> + <tr> + <td class="tdr">539·05</td> + </tr> + <tr> + <td class="tdr">538·85</td> + </tr> + <tr class="spaced"> + <td rowspan="3" class="bl nobr"></td> + <td rowspan="3" class="tdr">523·3</td> + <td class="tdr">523·43</td> + <td>Very faint.</td> + </tr> + <tr> + <td class="tdr">523·21</td> + <td>Moderately bright.</td> + </tr> + <tr> + <td class="tdr">522·90</td> + <td>Very faint.</td> + </tr> + <tr class="spaced"> + <td rowspan="5" class="bl nobr"></td> + <td rowspan="5" class="tdr">518·9</td> + <td class="tdr">519·79</td> + <td><span class="ditto2">â€</span></td> + </tr> + <tr> + <td class="tdr">519·40</td> + <td><span class="ditto2">â€</span></td> + </tr> + <tr> + <td class="tdr">519·16</td> + <td>Moderately bright.</td> + </tr> + <tr> + <td class="tdr">519·06</td> + <td><span class="ditto2">â€</span> <span class="ditto2">â€</span></td> + </tr> + <tr> + <td class="tdr">518·51</td> + <td>Very faint.</td> + </tr> + <tr class="spaced"> + <td rowspan="5" class="bl nobr"></td> + <td rowspan="5" class="tdr">500·4</td> + <td class="tdr">500·65</td> + <td rowspan="5">Very faint.</td> + </tr> + <tr> + <td class="tdr">500·52</td> + </tr> + <tr> + <td class="tdr">500·49</td> + </tr> + <tr> + <td class="tdr">500·30</td> + </tr> + <tr> + <td class="tdr">500·20</td> + </tr> + <tr class="spaced"> + <td class="bl nobr">From</td> + <td class="tdr">469·4</td> + <td rowspan="2" colspan="2" class="bb">3 stronger and 4 very faint iron-lines.</td> + </tr> + <tr> + <td class="bl nobr bb">to</td> + <td class="tdr bb">462·9</td> + </tr> + </table> + + <p>Yet this agreement, though remarkable, can only be considered as complete + proof of the presence of iron-vapour in the atmosphere when we shall have + succeeded in showing by observation analogous modifications of the relative + conditions of brilliancy in the iron-spectrum by alterations of temperature + and density; and in this way explain the appearance of relatively very faint + iron-lines in the Aurora-spectrum, or, on the other hand, the absence of the + most intense lines.</p> + + <p>It will meanwhile remain far more in accordance with probability to + regard the <i>Aurora-spectrum as a modification of the air-spectrum</i>; since we + are already aware, in the case of gases, of the alteration of the spectra by + conditions of temperature and pressure; and an agreement, at any rate, quite + as certain between the spectrum in question and the spectra of atmospheric + gases has been proved above.</p> + + <div class="smaller"> + + <p>[I am indebted to Miss Annie Ludlam for a translation from the German + of the above Memoir.—J. R. C.]</p> + + </div> + + </section> + + + </section> + + + + + + + +</body> +</html> diff --git a/views/error.jade b/views/error.jade deleted file mode 100644 index 51ec12c6a26323d9f5bc51fb98cb1324a739ea4c..0000000000000000000000000000000000000000 --- a/views/error.jade +++ /dev/null @@ -1,6 +0,0 @@ -extends layout - -block content - h1= message - h2= error.status - pre #{error.stack} diff --git a/views/index.jade b/views/index.jade deleted file mode 100644 index 3d63b9a044a859b59259d5e23dd4e68ec8e1f2be..0000000000000000000000000000000000000000 --- a/views/index.jade +++ /dev/null @@ -1,5 +0,0 @@ -extends layout - -block content - h1= title - p Welcome to #{title} diff --git a/views/layout.jade b/views/layout.jade deleted file mode 100644 index 15af079bf7c34e638ba14844efd979ac9111628b..0000000000000000000000000000000000000000 --- a/views/layout.jade +++ /dev/null @@ -1,7 +0,0 @@ -doctype html -html - head - title= title - link(rel='stylesheet', href='/stylesheets/style.css') - body - block content